├── .ado ├── fabric-ios-publish-nuget.yml └── xcconfig │ └── publish_overrides.xcconfig ├── .gitignore ├── .npmrc ├── .swiftlint.yml ├── CONTRIBUTING.md ├── LICENSE ├── OfficeUIFabric.Demo ├── OfficeUIFabric.Demo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── Demo.Development.xcscheme │ │ └── Demo.Dogfood.xcscheme ├── OfficeUIFabric.Demo.xcworkspace │ └── contents.xcworkspacedata ├── OfficeUIFabric.Demo │ ├── AppDelegate.swift │ ├── DemoController.swift │ ├── Demos.swift │ ├── Demos │ │ ├── MSActivityIndicatorViewDemoController.swift │ │ ├── MSAvatarViewDemoController.swift │ │ ├── MSBadgeFieldDemoController.swift │ │ ├── MSBadgeViewDemoController.swift │ │ ├── MSButtonDemoController.swift │ │ ├── MSColorDemoController.swift │ │ ├── MSDateTimePickerDemoController.swift │ │ ├── MSDrawerDemoController.swift │ │ ├── MSHUDDemoController.swift │ │ ├── MSLabelDemoController.swift │ │ ├── MSNavigationControllerDemoController.swift │ │ ├── MSNotificationViewDemoController.swift │ │ ├── MSPeoplePickerDemoController.swift │ │ ├── MSPersonaListViewDemoController.swift │ │ ├── MSPillButtonBarDemoController.swift │ │ ├── MSPopupMenuDemoController.swift │ │ ├── MSSegmentedControlDemoController.swift │ │ ├── MSShimmerLinesViewDemoController.swift │ │ ├── MSTabBarViewDemoController.swift │ │ ├── MSTableViewCellDemoController.swift │ │ ├── MSTableViewCellShimmerDemoController.swift │ │ ├── MSTableViewHeaderFooterViewDemoController.swift │ │ ├── MSTooltipDemoController.swift │ │ ├── ObjectiveCDemoController.h │ │ ├── ObjectiveCDemoController.m │ │ └── OtherCellsDemoController.swift │ ├── DetailViewController.swift │ ├── Info.plist │ ├── MSTableViewCellSampleData.swift │ ├── MasterViewController.swift │ ├── OfficeUIFabric.Demo-Bridging-Header.h │ ├── OtherCellsSampleData.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-29@2x.png │ │ │ │ ├── Icon-29@3x.png │ │ │ │ ├── Icon-40@2x.png │ │ │ │ ├── Icon-40@3x.png │ │ │ │ ├── Icon-60@2x.png │ │ │ │ ├── Icon-60@3x.png │ │ │ │ ├── Icon-76@2x.png │ │ │ │ ├── Icon-83_5@2x.png │ │ │ │ └── iTunesArtwork-512@2x.png │ │ │ ├── Avatar │ │ │ │ ├── Contents.json │ │ │ │ ├── avatar_allan_munger.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── avatar_allan_munger.png │ │ │ │ ├── avatar_amanda_brady.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── avatar_amanda_brady.png │ │ │ │ ├── avatar_ashley_mccarthy.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── avatar_ashley_mccarthy.png │ │ │ │ ├── avatar_cecil_folk.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── avatar_cecil_folk.png │ │ │ │ ├── avatar_celeste_burton.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── avatar_celeste_burton.png │ │ │ │ ├── avatar_colin_ballinger.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── avatar_colin_ballinger.png │ │ │ │ ├── avatar_daisy_phillips.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── avatar_daisy_phillips.png │ │ │ │ ├── avatar_elvia_atkins.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── avatar_elvia_atkins.png │ │ │ │ ├── avatar_henry_brill.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── avatar_henry_brill.png │ │ │ │ ├── avatar_isaac_fielder.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── avatar_isaac_fielder.png │ │ │ │ ├── avatar_johnie_mcconnell.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── avatar_johnie_mcconnell.png │ │ │ │ ├── avatar_kat_larsson.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── avatar_kat_larsson.png │ │ │ │ ├── avatar_katri_ahokas.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── avatar_katri_ahokas.png │ │ │ │ ├── avatar_lydia_bauer.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── avatar_lydia_bauer.png │ │ │ │ ├── avatar_mauricio_august.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── avatar_mauricio_august.png │ │ │ │ ├── avatar_miguel_garcia.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── avatar_miguel_garcia.png │ │ │ │ ├── avatar_robert_tolbert.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── avatar_robert_tolbert.png │ │ │ │ ├── avatar_robin_counts.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── avatar_robin_counts.png │ │ │ │ ├── avatar_tim_deboer.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── avatar_tim_deboer.png │ │ │ │ └── site.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── site.png │ │ │ ├── Cities │ │ │ │ ├── Contents.json │ │ │ │ ├── Las Vegas.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Las Vegas@3x.png │ │ │ │ ├── Montreal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Montreal@3x.png │ │ │ │ ├── Phoenix.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Phoenix@3x.png │ │ │ │ ├── San Francisco.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── San Francisco@3x.png │ │ │ │ ├── Seattle.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Seattle@3x.png │ │ │ │ ├── Toronto.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Toronto@3x.jpg │ │ │ │ └── Vancouver.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Vancouver@3x.png │ │ │ ├── Contents.json │ │ │ ├── FabricLogo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── fabricLogo.pdf │ │ │ │ └── fabricLogoLarge.pdf │ │ │ ├── HUD │ │ │ │ ├── Contents.json │ │ │ │ └── flag-40x40.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── flag-40x40.pdf │ │ │ ├── MicrosoftLogo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── msLogo.pdf │ │ │ │ └── msLogoDarkMode.pdf │ │ │ ├── NotificationView │ │ │ │ ├── Contents.json │ │ │ │ └── play-in-circle-24x24.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_fluent_play_in_circle_24_regular.pdf │ │ │ ├── PopupMenu │ │ │ │ ├── 3-day-view-24x24.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_calendar_3_day_24_outlined.pdf │ │ │ │ ├── 3-day-view-28x28.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_calendar_3_day_28_outlined.pdf │ │ │ │ ├── Contents.json │ │ │ │ ├── agenda-24x24.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_calendar_agenda_24_outlined.pdf │ │ │ │ ├── attach-24x24.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_attach_24_outlined.pdf │ │ │ │ ├── day-view-24x24.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_calendar_day_24_outlined.pdf │ │ │ │ ├── flag-24x24.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_flag_24_outlined.pdf │ │ │ │ ├── gleam.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── gleam_single.pdf │ │ │ │ ├── mail-unread-24x24.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_mail_unread_24_outlined.pdf │ │ │ │ └── month-view-24x24.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_calendar_month_24_outlined.pdf │ │ │ ├── TabBarView │ │ │ │ ├── Contents.json │ │ │ │ ├── Home_24.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_home_24_outlined.pdf │ │ │ │ ├── Home_28.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_home_28_outlined.pdf │ │ │ │ ├── Home_Selected_24.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_home_24_filled.pdf │ │ │ │ ├── Home_Selected_28.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_home_28_filled.pdf │ │ │ │ ├── New_24.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_add_to_24_outlined.pdf │ │ │ │ ├── New_28.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_add_to_28_outlined.pdf │ │ │ │ ├── New_Selected_24.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_add_to_24_filled.pdf │ │ │ │ ├── New_Selected_28.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_add_to_28_filled.pdf │ │ │ │ ├── Open_24.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_folder_24_outlined.pdf │ │ │ │ ├── Open_28.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_folder_28_outlined.pdf │ │ │ │ ├── Open_Selected_24.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_folder_24_filled.pdf │ │ │ │ └── Open_Selected_28.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_folder_28_filled.pdf │ │ │ └── TableViewCell │ │ │ │ ├── Contents.json │ │ │ │ ├── Dismiss_24.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_fluent_dismiss_24_regular.pdf │ │ │ │ ├── Dismiss_28.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_fluent_dismiss_28_regular.pdf │ │ │ │ ├── at-12x12.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── at.pdf │ │ │ │ ├── excelIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── excelIcon.pdf │ │ │ │ ├── shared-12x12.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── people.pdf │ │ │ │ └── success-12x12.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── success.pdf │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── ar.lproj │ │ │ └── LaunchScreen.strings │ │ ├── ca.lproj │ │ │ └── LaunchScreen.strings │ │ ├── cs.lproj │ │ │ └── LaunchScreen.strings │ │ ├── da.lproj │ │ │ └── LaunchScreen.strings │ │ ├── de.lproj │ │ │ └── LaunchScreen.strings │ │ ├── el.lproj │ │ │ └── LaunchScreen.strings │ │ ├── en-GB.lproj │ │ │ └── LaunchScreen.strings │ │ ├── en.lproj │ │ │ └── LaunchScreen.strings │ │ ├── es-MX.lproj │ │ │ └── LaunchScreen.strings │ │ ├── es.lproj │ │ │ └── LaunchScreen.strings │ │ ├── fi.lproj │ │ │ └── LaunchScreen.strings │ │ ├── fr.lproj │ │ │ └── LaunchScreen.strings │ │ ├── he.lproj │ │ │ └── LaunchScreen.strings │ │ ├── hi.lproj │ │ │ └── LaunchScreen.strings │ │ ├── hr.lproj │ │ │ └── LaunchScreen.strings │ │ ├── hu.lproj │ │ │ └── LaunchScreen.strings │ │ ├── id.lproj │ │ │ └── LaunchScreen.strings │ │ ├── it.lproj │ │ │ └── LaunchScreen.strings │ │ ├── ja.lproj │ │ │ └── LaunchScreen.strings │ │ ├── ko.lproj │ │ │ └── LaunchScreen.strings │ │ ├── ms.lproj │ │ │ └── LaunchScreen.strings │ │ ├── nb-NO.lproj │ │ │ └── LaunchScreen.strings │ │ ├── nl.lproj │ │ │ └── LaunchScreen.strings │ │ ├── pl.lproj │ │ │ └── LaunchScreen.strings │ │ ├── pt-BR.lproj │ │ │ └── LaunchScreen.strings │ │ ├── pt-PT.lproj │ │ │ └── LaunchScreen.strings │ │ ├── ro.lproj │ │ │ └── LaunchScreen.strings │ │ ├── ru.lproj │ │ │ └── LaunchScreen.strings │ │ ├── sk.lproj │ │ │ └── LaunchScreen.strings │ │ ├── sv.lproj │ │ │ └── LaunchScreen.strings │ │ ├── th.lproj │ │ │ └── LaunchScreen.strings │ │ ├── tr.lproj │ │ │ └── LaunchScreen.strings │ │ ├── uk.lproj │ │ │ └── LaunchScreen.strings │ │ ├── vi.lproj │ │ │ └── LaunchScreen.strings │ │ ├── zh-Hans.lproj │ │ │ └── LaunchScreen.strings │ │ └── zh-Hant.lproj │ │ │ └── LaunchScreen.strings │ ├── TableViewHeaderFooterSampleData.swift │ └── TableViewSampleData.swift ├── Podfile ├── Podfile.lock └── Pods │ ├── AppCenter │ └── AppCenter-SDK-Apple │ │ └── iOS │ │ ├── AppCenter.framework │ │ ├── AppCenter │ │ ├── Headers │ │ │ ├── AppCenter.h │ │ │ ├── MSAbstractLog.h │ │ │ ├── MSAppCenter.h │ │ │ ├── MSAppCenterErrors.h │ │ │ ├── MSChannelGroupProtocol.h │ │ │ ├── MSChannelProtocol.h │ │ │ ├── MSConstants.h │ │ │ ├── MSCustomProperties.h │ │ │ ├── MSDevice.h │ │ │ ├── MSEnable.h │ │ │ ├── MSLog.h │ │ │ ├── MSLogWithProperties.h │ │ │ ├── MSLogger.h │ │ │ ├── MSService.h │ │ │ ├── MSServiceAbstract.h │ │ │ ├── MSWrapperLogger.h │ │ │ └── MSWrapperSdk.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ └── module.modulemap │ │ └── PrivateHeaders │ │ │ ├── MSChannelDelegate.h │ │ │ └── MSConstants+Flags.h │ │ ├── AppCenterAnalytics.framework │ │ ├── AppCenterAnalytics │ │ ├── Headers │ │ │ ├── AppCenterAnalytics.h │ │ │ ├── MSAbstractLog.h │ │ │ ├── MSAnalytics.h │ │ │ ├── MSAnalyticsAuthenticationProvider.h │ │ │ ├── MSAnalyticsAuthenticationProviderDelegate.h │ │ │ ├── MSAnalyticsTransmissionTarget.h │ │ │ ├── MSConstants+Flags.h │ │ │ ├── MSEventLog.h │ │ │ ├── MSEventProperties.h │ │ │ ├── MSLogWithNameAndProperties.h │ │ │ ├── MSLogWithProperties.h │ │ │ ├── MSPropertyConfigurator.h │ │ │ ├── MSService.h │ │ │ └── MSServiceAbstract.h │ │ ├── Info.plist │ │ └── Modules │ │ │ └── module.modulemap │ │ ├── AppCenterCrashes.framework │ │ ├── AppCenterCrashes │ │ ├── Headers │ │ │ ├── AppCenterCrashes.h │ │ │ ├── MSAbstractLog.h │ │ │ ├── MSCrashHandlerSetupDelegate.h │ │ │ ├── MSCrashes.h │ │ │ ├── MSCrashesDelegate.h │ │ │ ├── MSErrorAttachmentLog+Utility.h │ │ │ ├── MSErrorAttachmentLog.h │ │ │ ├── MSErrorReport.h │ │ │ ├── MSService.h │ │ │ ├── MSServiceAbstract.h │ │ │ └── MSWrapperCrashesHelper.h │ │ ├── Info.plist │ │ └── Modules │ │ │ └── module.modulemap │ │ ├── AppCenterDistribute.framework │ │ ├── AppCenterDistribute │ │ ├── Headers │ │ │ ├── AppCenterDistribute.h │ │ │ ├── MSDistribute.h │ │ │ ├── MSDistributeDelegate.h │ │ │ ├── MSReleaseDetails.h │ │ │ ├── MSService.h │ │ │ └── MSServiceAbstract.h │ │ ├── Info.plist │ │ └── Modules │ │ │ └── module.modulemap │ │ ├── AppCenterDistributeResources.bundle │ │ ├── cs.lproj │ │ │ └── AppCenterDistribute.strings │ │ ├── de.lproj │ │ │ └── AppCenterDistribute.strings │ │ ├── en.lproj │ │ │ └── AppCenterDistribute.strings │ │ ├── es.lproj │ │ │ └── AppCenterDistribute.strings │ │ ├── fr.lproj │ │ │ └── AppCenterDistribute.strings │ │ ├── it.lproj │ │ │ └── AppCenterDistribute.strings │ │ ├── ja.lproj │ │ │ └── AppCenterDistribute.strings │ │ ├── ko.lproj │ │ │ └── AppCenterDistribute.strings │ │ ├── pl.lproj │ │ │ └── AppCenterDistribute.strings │ │ ├── pt.lproj │ │ │ └── AppCenterDistribute.strings │ │ ├── ru.lproj │ │ │ └── AppCenterDistribute.strings │ │ ├── tr.lproj │ │ │ └── AppCenterDistribute.strings │ │ ├── zh-Hans.lproj │ │ │ └── AppCenterDistribute.strings │ │ └── zh-Hant.lproj │ │ │ └── AppCenterDistribute.strings │ │ ├── LICENSE │ │ └── README.md │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── AppCenter │ ├── AppCenter.debug.xcconfig │ ├── AppCenter.release.xcconfig │ ├── AppCenter.xcconfig │ └── ResourceBundle-AppCenterDistributeResources-AppCenter-Info.plist │ └── Pods-OfficeUIFabric.Demo │ ├── Info.plist │ ├── Pods-OfficeUIFabric.Demo-Info.plist │ ├── Pods-OfficeUIFabric.Demo-acknowledgements.markdown │ ├── Pods-OfficeUIFabric.Demo-acknowledgements.plist │ ├── Pods-OfficeUIFabric.Demo-dummy.m │ ├── Pods-OfficeUIFabric.Demo-frameworks.sh │ ├── Pods-OfficeUIFabric.Demo-resources-Debug-input-files.xcfilelist │ ├── Pods-OfficeUIFabric.Demo-resources-Debug-output-files.xcfilelist │ ├── Pods-OfficeUIFabric.Demo-resources-Dogfood-input-files.xcfilelist │ ├── Pods-OfficeUIFabric.Demo-resources-Dogfood-output-files.xcfilelist │ ├── Pods-OfficeUIFabric.Demo-resources-Release-input-files.xcfilelist │ ├── Pods-OfficeUIFabric.Demo-resources-Release-output-files.xcfilelist │ ├── Pods-OfficeUIFabric.Demo-resources.sh │ ├── Pods-OfficeUIFabric.Demo-umbrella.h │ ├── Pods-OfficeUIFabric.Demo.debug.xcconfig │ ├── Pods-OfficeUIFabric.Demo.dogfood.xcconfig │ ├── Pods-OfficeUIFabric.Demo.modulemap │ └── Pods-OfficeUIFabric.Demo.release.xcconfig ├── OfficeUIFabric.INT.podspec ├── OfficeUIFabric.Resources └── Info.plist ├── OfficeUIFabric.Tests ├── Info.plist ├── MSDatePickerControllerTests.swift └── OfficeUIFabricTests.swift ├── OfficeUIFabric.nuspec ├── OfficeUIFabric.podspec ├── OfficeUIFabric.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── OfficeUIFabric.xcscheme │ └── OfficeUIFabricLib.xcscheme ├── OfficeUIFabric.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── OfficeUIFabric ├── Badge Field │ ├── MSBadgeField.swift │ ├── MSBadgeStringExtractor.swift │ └── MSBadgeView.swift ├── Calendar │ ├── MSCalendarView.swift │ ├── MSCalendarViewDataSource.swift │ ├── MSCalendarViewLayout.swift │ └── Views │ │ ├── MSCalendarViewDayCell.swift │ │ ├── MSCalendarViewDayMonthCell.swift │ │ ├── MSCalendarViewDayMonthYearCell.swift │ │ ├── MSCalendarViewDayTodayCell.swift │ │ ├── MSCalendarViewMonthBannerView.swift │ │ └── MSCalendarViewWeekdayHeadingView.swift ├── Controls │ ├── MSActivityIndicatorView.swift │ ├── MSBarButtonItems.swift │ ├── MSBlurringView.swift │ ├── MSButton.swift │ ├── MSDimmingView.swift │ ├── MSDotView.swift │ ├── MSEasyTapButton.swift │ ├── MSLabel.swift │ ├── MSResizingHandleView.swift │ ├── MSScrollView.swift │ ├── MSSearchBar.swift │ ├── MSSegmentedControl.swift │ ├── MSSeparator.swift │ ├── MSTouchForwardingView.swift │ └── MSTwoLineTitleView.swift ├── Core │ ├── AccessibleViewDelegate.swift │ ├── Colors.swift │ ├── Fonts.swift │ ├── MSAccessibilityContainerView.swift │ ├── MSCalendarConfiguration.swift │ ├── MSDayOfMonth.swift │ ├── Obscurable.swift │ ├── OfficeUIFabric.swift │ └── Operators.swift ├── Date Time Pickers │ ├── Date Picker │ │ ├── MSDatePickerController.swift │ │ └── MSDatePickerSelectionManager.swift │ ├── Date Time Picker │ │ ├── MSDateTimePickerController.swift │ │ └── Views │ │ │ ├── MSDateTimePickerView.swift │ │ │ ├── MSDateTimePickerViewComponent.swift │ │ │ ├── MSDateTimePickerViewComponentCell.swift │ │ │ ├── MSDateTimePickerViewComponentTableView.swift │ │ │ ├── MSDateTimePickerViewDataSource.swift │ │ │ └── MSDateTimePickerViewLayout.swift │ ├── DateTimePicker.swift │ └── MSDateTimePicker.swift ├── Drawer │ ├── DrawerShadowView.swift │ ├── MSDrawerController.swift │ ├── MSDrawerPresentationController.swift │ └── MSDrawerTransitionAnimator.swift ├── Extensions │ ├── CALayer+Extensions.swift │ ├── Calendar+Extensions.swift │ ├── CharacterSet+Extension.swift │ ├── Date+Extensions.swift │ ├── DateComponents+Extensions.swift │ ├── NSLayoutConstraint+Extensions.swift │ ├── String+Extension.swift │ ├── UIColor+Extensions.swift │ ├── UIFont+Extension.swift │ ├── UIImage+Extensions.swift │ ├── UIResponder+Extensions.swift │ ├── UIScreen+Extension.swift │ ├── UIScrollView+Extensions.swift │ ├── UITableViewCell+Extension.swift │ ├── UIView+Extensions.swift │ └── UIViewController+Extensions.swift ├── HUD │ ├── MSHUD.swift │ └── MSHUDView.swift ├── Info.plist ├── Navigation │ ├── Helpers │ │ ├── MSContentScrollViewTraits.swift │ │ └── MSNavigationAnimator.swift │ ├── MSNavigationBar.swift │ ├── MSNavigationController.swift │ ├── Shy Header │ │ ├── MSShyHeaderController.swift │ │ └── MSShyHeaderView.swift │ ├── UINavigationItem+Navigation.swift │ ├── UIViewController+Navigation.swift │ └── Views │ │ └── MSLargeTitleView.swift ├── Notification │ └── MSNotificationView.swift ├── OfficeUIFabric.h ├── People Picker │ ├── MSAvatar.swift │ ├── MSAvatarView.swift │ ├── MSInitialsView.swift │ ├── MSPeoplePicker.swift │ ├── MSPersona.swift │ ├── MSPersonaBadgeViewDataSource.swift │ ├── MSPersonaCell.swift │ └── MSPersonaListView.swift ├── Pill Button Bar │ ├── MSPillButton.swift │ └── MSPillButtonBar.swift ├── Popup Menu │ ├── MSPopupMenuController.swift │ ├── MSPopupMenuItem.swift │ ├── MSPopupMenuItemCell.swift │ ├── MSPopupMenuSection.swift │ └── MSPopupMenuSectionHeaderView.swift ├── Presenters │ ├── MSCardPresentationController.swift │ ├── MSCardPresenterNavigationController.swift │ ├── MSCardTransitionAnimator.swift │ └── MSPageCardPresenterController.swift ├── Resources │ ├── Assets.xcassets │ │ ├── Contents.json │ │ ├── FluentColors │ │ │ ├── Contents.json │ │ │ ├── blue10.colorset │ │ │ │ └── Contents.json │ │ │ ├── blueMagenta20.colorset │ │ │ │ └── Contents.json │ │ │ ├── blueMagenta30.colorset │ │ │ │ └── Contents.json │ │ │ ├── communicationBlue.colorset │ │ │ │ └── Contents.json │ │ │ ├── communicationBlueShade10.colorset │ │ │ │ └── Contents.json │ │ │ ├── communicationBlueShade20.colorset │ │ │ │ └── Contents.json │ │ │ ├── communicationBlueShade30.colorset │ │ │ │ └── Contents.json │ │ │ ├── communicationBlueTint10.colorset │ │ │ │ └── Contents.json │ │ │ ├── communicationBlueTint20.colorset │ │ │ │ └── Contents.json │ │ │ ├── communicationBlueTint30.colorset │ │ │ │ └── Contents.json │ │ │ ├── communicationBlueTint40.colorset │ │ │ │ └── Contents.json │ │ │ ├── cyan20.colorset │ │ │ │ └── Contents.json │ │ │ ├── cyan30.colorset │ │ │ │ └── Contents.json │ │ │ ├── cyanBlue10.colorset │ │ │ │ └── Contents.json │ │ │ ├── cyanBlue20.colorset │ │ │ │ └── Contents.json │ │ │ ├── dangerPrimary.colorset │ │ │ │ └── Contents.json │ │ │ ├── dangerShade10.colorset │ │ │ │ └── Contents.json │ │ │ ├── dangerShade40.colorset │ │ │ │ └── Contents.json │ │ │ ├── dangerTint10.colorset │ │ │ │ └── Contents.json │ │ │ ├── dangerTint40.colorset │ │ │ │ └── Contents.json │ │ │ ├── gray1.colorset │ │ │ │ └── Contents.json │ │ │ ├── gray10.colorset │ │ │ │ └── Contents.json │ │ │ ├── gray11.colorset │ │ │ │ └── Contents.json │ │ │ ├── gray12.colorset │ │ │ │ └── Contents.json │ │ │ ├── gray2.colorset │ │ │ │ └── Contents.json │ │ │ ├── gray20.colorset │ │ │ │ └── Contents.json │ │ │ ├── gray3.colorset │ │ │ │ └── Contents.json │ │ │ ├── gray30.colorset │ │ │ │ └── Contents.json │ │ │ ├── gray4.colorset │ │ │ │ └── Contents.json │ │ │ ├── gray40.colorset │ │ │ │ └── Contents.json │ │ │ ├── gray5.colorset │ │ │ │ └── Contents.json │ │ │ ├── gray6.colorset │ │ │ │ └── Contents.json │ │ │ ├── gray7.colorset │ │ │ │ └── Contents.json │ │ │ ├── gray8.colorset │ │ │ │ └── Contents.json │ │ │ ├── gray9.colorset │ │ │ │ └── Contents.json │ │ │ ├── green10.colorset │ │ │ │ └── Contents.json │ │ │ ├── green20.colorset │ │ │ │ └── Contents.json │ │ │ ├── magenta10.colorset │ │ │ │ └── Contents.json │ │ │ ├── magenta20.colorset │ │ │ │ └── Contents.json │ │ │ ├── magentaPink10.colorset │ │ │ │ └── Contents.json │ │ │ ├── orange20.colorset │ │ │ │ └── Contents.json │ │ │ ├── orange30.colorset │ │ │ │ └── Contents.json │ │ │ ├── orangeYellow20.colorset │ │ │ │ └── Contents.json │ │ │ ├── pinkRed10.colorset │ │ │ │ └── Contents.json │ │ │ ├── red10.colorset │ │ │ │ └── Contents.json │ │ │ ├── red20.colorset │ │ │ │ └── Contents.json │ │ │ ├── warningPrimary.colorset │ │ │ │ └── Contents.json │ │ │ ├── warningShade30.colorset │ │ │ │ └── Contents.json │ │ │ ├── warningShade40.colorset │ │ │ │ └── Contents.json │ │ │ ├── warningTint10.colorset │ │ │ │ └── Contents.json │ │ │ └── warningTint40.colorset │ │ │ │ └── Contents.json │ │ ├── back-24x24.imageset │ │ │ ├── Contents.json │ │ │ └── ic_ios_arrow_left_24_outlined.pdf │ │ ├── cancel-white-40x40.imageset │ │ │ ├── Contents.json │ │ │ └── cancel-40x40.pdf │ │ ├── checkmark-24x24.imageset │ │ │ ├── Contents.json │ │ │ └── ic_checkmark_24_outlined.pdf │ │ ├── checkmark-thin-20x20.imageset │ │ │ ├── Contents.json │ │ │ └── ic_checkmark_20_outlined.pdf │ │ ├── checkmark-white-40x40.imageset │ │ │ ├── Contents.json │ │ │ └── checkmark-white-40x40.pdf │ │ ├── chevron-down-20x20.imageset │ │ │ ├── Contents.json │ │ │ └── ic_chevron_down_20_outlined.pdf │ │ ├── chevron-right-20x20.imageset │ │ │ ├── Contents.json │ │ │ └── ic_chevron_right_20_outlined.pdf │ │ ├── dismiss-20x20.imageset │ │ │ ├── Contents.json │ │ │ └── ic_fluent_dismiss_20_regular.pdf │ │ ├── iOS-chevron-right-20x20.imageset │ │ │ ├── Contents.json │ │ │ └── ic_fluent_ios_chevron_right_20_filled.pdf │ │ ├── more-24x24.imageset │ │ │ ├── Contents.json │ │ │ └── ic_more_24_outlined.pdf │ │ ├── search-20x20.imageset │ │ │ ├── Contents.json │ │ │ └── ic_search_20_outlined.pdf │ │ ├── search-clear.imageset │ │ │ ├── Contents.json │ │ │ └── search-bar-clear.pdf │ │ ├── selection-off.imageset │ │ │ ├── Contents.json │ │ │ └── unselected.pdf │ │ ├── selection-on.imageset │ │ │ ├── Contents.json │ │ │ └── selected.pdf │ │ └── tooltip-arrow.imageset │ │ │ ├── Contents.json │ │ │ └── tooltip-arrow.pdf │ └── Localization │ │ ├── CultureMapping.json │ │ ├── ar.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── ca.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── cs.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── da.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── de.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── el.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── en-GB.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── en.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── es-MX.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── es.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── fi.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── fr.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── he.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── hi.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── hr.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── hu.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── id.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── it.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── ja.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── ko.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── ms.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── nb-NO.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── nl.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── pl.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── pt-BR.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── pt-PT.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── ro.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── ru.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── sk.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── sv.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── th.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── tr.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── uk.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── vi.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ ├── zh-Hans.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ │ └── zh-Hant.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict ├── Shimmer │ ├── MSShimmerAppearance.swift │ ├── MSShimmerLinesView.swift │ ├── MSShimmerLinesViewAppearance.swift │ ├── MSShimmerView.swift │ └── MSShimmerViewAppearance.swift ├── Tab Bar │ ├── MSTabBarItem.swift │ ├── MSTabBarItemView.swift │ └── MSTabBarView.swift ├── Table View │ ├── MSActionsCell.swift │ ├── MSActivityIndicatorCell.swift │ ├── MSBooleanCell.swift │ ├── MSCenteredLabelCell.swift │ ├── MSTableViewCell.swift │ └── MSTableViewHeaderFooterView.swift ├── Tooltip │ ├── MSTooltip.swift │ ├── MSTooltipPositionController.swift │ └── MSTooltipView.swift └── Utilities │ └── MSAnimationSynchronizer.swift ├── README.md ├── metadata └── repo.json ├── package.json ├── scripts ├── set-xcodeproj-workspacesettings.js └── vsto-collect-nuspec.js └── vsto_publish_nuget.json /.ado/fabric-ios-publish-nuget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/.ado/fabric-ios-publish-nuget.yml -------------------------------------------------------------------------------- /.ado/xcconfig/publish_overrides.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/.ado/xcconfig/publish_overrides.xcconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/.npmrc -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo.xcodeproj/xcshareddata/xcschemes/Demo.Development.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo.xcodeproj/xcshareddata/xcschemes/Demo.Development.xcscheme -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo.xcodeproj/xcshareddata/xcschemes/Demo.Dogfood.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo.xcodeproj/xcshareddata/xcschemes/Demo.Dogfood.xcscheme -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/AppDelegate.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/DemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/DemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSActivityIndicatorViewDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSActivityIndicatorViewDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSAvatarViewDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSAvatarViewDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSBadgeFieldDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSBadgeFieldDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSBadgeViewDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSBadgeViewDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSButtonDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSButtonDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSColorDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSColorDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSDateTimePickerDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSDateTimePickerDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSDrawerDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSDrawerDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSHUDDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSHUDDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSLabelDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSLabelDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSNavigationControllerDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSNavigationControllerDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSNotificationViewDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSNotificationViewDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSPeoplePickerDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSPeoplePickerDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSPersonaListViewDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSPersonaListViewDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSPillButtonBarDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSPillButtonBarDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSPopupMenuDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSPopupMenuDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSSegmentedControlDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSSegmentedControlDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSShimmerLinesViewDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSShimmerLinesViewDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSTabBarViewDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSTabBarViewDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSTableViewCellDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSTableViewCellDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSTableViewCellShimmerDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSTableViewCellShimmerDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSTableViewHeaderFooterViewDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSTableViewHeaderFooterViewDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSTooltipDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/MSTooltipDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/ObjectiveCDemoController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/ObjectiveCDemoController.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/ObjectiveCDemoController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/ObjectiveCDemoController.m -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/OtherCellsDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Demos/OtherCellsDemoController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/DetailViewController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Info.plist -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/MSTableViewCellSampleData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/MSTableViewCellSampleData.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/MasterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/MasterViewController.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/OfficeUIFabric.Demo-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/OfficeUIFabric.Demo-Bridging-Header.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/OtherCellsSampleData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/OtherCellsSampleData.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/AppIcon.appiconset/Icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/AppIcon.appiconset/Icon-29@3x.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/AppIcon.appiconset/Icon-83_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/AppIcon.appiconset/Icon-83_5@2x.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/AppIcon.appiconset/iTunesArtwork-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/AppIcon.appiconset/iTunesArtwork-512@2x.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_allan_munger.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_allan_munger.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_allan_munger.imageset/avatar_allan_munger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_allan_munger.imageset/avatar_allan_munger.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_amanda_brady.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_amanda_brady.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_amanda_brady.imageset/avatar_amanda_brady.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_amanda_brady.imageset/avatar_amanda_brady.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_ashley_mccarthy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_ashley_mccarthy.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_ashley_mccarthy.imageset/avatar_ashley_mccarthy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_ashley_mccarthy.imageset/avatar_ashley_mccarthy.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_cecil_folk.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_cecil_folk.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_cecil_folk.imageset/avatar_cecil_folk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_cecil_folk.imageset/avatar_cecil_folk.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_celeste_burton.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_celeste_burton.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_celeste_burton.imageset/avatar_celeste_burton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_celeste_burton.imageset/avatar_celeste_burton.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_colin_ballinger.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_colin_ballinger.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_colin_ballinger.imageset/avatar_colin_ballinger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_colin_ballinger.imageset/avatar_colin_ballinger.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_daisy_phillips.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_daisy_phillips.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_daisy_phillips.imageset/avatar_daisy_phillips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_daisy_phillips.imageset/avatar_daisy_phillips.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_elvia_atkins.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_elvia_atkins.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_elvia_atkins.imageset/avatar_elvia_atkins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_elvia_atkins.imageset/avatar_elvia_atkins.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_henry_brill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_henry_brill.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_henry_brill.imageset/avatar_henry_brill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_henry_brill.imageset/avatar_henry_brill.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_isaac_fielder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_isaac_fielder.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_isaac_fielder.imageset/avatar_isaac_fielder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_isaac_fielder.imageset/avatar_isaac_fielder.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_johnie_mcconnell.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_johnie_mcconnell.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_johnie_mcconnell.imageset/avatar_johnie_mcconnell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_johnie_mcconnell.imageset/avatar_johnie_mcconnell.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_kat_larsson.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_kat_larsson.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_kat_larsson.imageset/avatar_kat_larsson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_kat_larsson.imageset/avatar_kat_larsson.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_katri_ahokas.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_katri_ahokas.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_katri_ahokas.imageset/avatar_katri_ahokas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_katri_ahokas.imageset/avatar_katri_ahokas.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_lydia_bauer.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_lydia_bauer.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_lydia_bauer.imageset/avatar_lydia_bauer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_lydia_bauer.imageset/avatar_lydia_bauer.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_mauricio_august.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_mauricio_august.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_mauricio_august.imageset/avatar_mauricio_august.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_mauricio_august.imageset/avatar_mauricio_august.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_miguel_garcia.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_miguel_garcia.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_miguel_garcia.imageset/avatar_miguel_garcia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_miguel_garcia.imageset/avatar_miguel_garcia.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_robert_tolbert.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_robert_tolbert.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_robert_tolbert.imageset/avatar_robert_tolbert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_robert_tolbert.imageset/avatar_robert_tolbert.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_robin_counts.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_robin_counts.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_robin_counts.imageset/avatar_robin_counts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_robin_counts.imageset/avatar_robin_counts.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_tim_deboer.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_tim_deboer.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_tim_deboer.imageset/avatar_tim_deboer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/avatar_tim_deboer.imageset/avatar_tim_deboer.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/site.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/site.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/site.imageset/site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Avatar/site.imageset/site.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Las Vegas.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Las Vegas.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Las Vegas.imageset/Las Vegas@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Las Vegas.imageset/Las Vegas@3x.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Montreal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Montreal.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Montreal.imageset/Montreal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Montreal.imageset/Montreal@3x.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Phoenix.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Phoenix.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Phoenix.imageset/Phoenix@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Phoenix.imageset/Phoenix@3x.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/San Francisco.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/San Francisco.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/San Francisco.imageset/San Francisco@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/San Francisco.imageset/San Francisco@3x.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Seattle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Seattle.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Seattle.imageset/Seattle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Seattle.imageset/Seattle@3x.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Toronto.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Toronto.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Toronto.imageset/Toronto@3x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Toronto.imageset/Toronto@3x.jpg -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Vancouver.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Vancouver.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Vancouver.imageset/Vancouver@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Cities/Vancouver.imageset/Vancouver@3x.png -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/FabricLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/FabricLogo.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/FabricLogo.imageset/fabricLogo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/FabricLogo.imageset/fabricLogo.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/FabricLogo.imageset/fabricLogoLarge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/FabricLogo.imageset/fabricLogoLarge.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/HUD/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/HUD/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/HUD/flag-40x40.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/HUD/flag-40x40.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/HUD/flag-40x40.imageset/flag-40x40.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/HUD/flag-40x40.imageset/flag-40x40.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/MicrosoftLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/MicrosoftLogo.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/MicrosoftLogo.imageset/msLogo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/MicrosoftLogo.imageset/msLogo.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/MicrosoftLogo.imageset/msLogoDarkMode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/MicrosoftLogo.imageset/msLogoDarkMode.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/NotificationView/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/NotificationView/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/NotificationView/play-in-circle-24x24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/NotificationView/play-in-circle-24x24.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/NotificationView/play-in-circle-24x24.imageset/ic_fluent_play_in_circle_24_regular.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/NotificationView/play-in-circle-24x24.imageset/ic_fluent_play_in_circle_24_regular.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/3-day-view-24x24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/3-day-view-24x24.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/3-day-view-24x24.imageset/ic_calendar_3_day_24_outlined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/3-day-view-24x24.imageset/ic_calendar_3_day_24_outlined.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/3-day-view-28x28.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/3-day-view-28x28.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/3-day-view-28x28.imageset/ic_calendar_3_day_28_outlined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/3-day-view-28x28.imageset/ic_calendar_3_day_28_outlined.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/agenda-24x24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/agenda-24x24.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/agenda-24x24.imageset/ic_calendar_agenda_24_outlined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/agenda-24x24.imageset/ic_calendar_agenda_24_outlined.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/attach-24x24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/attach-24x24.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/attach-24x24.imageset/ic_attach_24_outlined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/attach-24x24.imageset/ic_attach_24_outlined.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/day-view-24x24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/day-view-24x24.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/day-view-24x24.imageset/ic_calendar_day_24_outlined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/day-view-24x24.imageset/ic_calendar_day_24_outlined.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/flag-24x24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/flag-24x24.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/flag-24x24.imageset/ic_flag_24_outlined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/flag-24x24.imageset/ic_flag_24_outlined.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/gleam.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/gleam.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/gleam.imageset/gleam_single.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/gleam.imageset/gleam_single.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/mail-unread-24x24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/mail-unread-24x24.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/mail-unread-24x24.imageset/ic_mail_unread_24_outlined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/mail-unread-24x24.imageset/ic_mail_unread_24_outlined.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/month-view-24x24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/month-view-24x24.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/month-view-24x24.imageset/ic_calendar_month_24_outlined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/PopupMenu/month-view-24x24.imageset/ic_calendar_month_24_outlined.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Home_24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Home_24.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Home_24.imageset/ic_home_24_outlined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Home_24.imageset/ic_home_24_outlined.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Home_28.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Home_28.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Home_28.imageset/ic_home_28_outlined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Home_28.imageset/ic_home_28_outlined.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Home_Selected_24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Home_Selected_24.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Home_Selected_24.imageset/ic_home_24_filled.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Home_Selected_24.imageset/ic_home_24_filled.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Home_Selected_28.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Home_Selected_28.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Home_Selected_28.imageset/ic_home_28_filled.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Home_Selected_28.imageset/ic_home_28_filled.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/New_24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/New_24.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/New_24.imageset/ic_add_to_24_outlined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/New_24.imageset/ic_add_to_24_outlined.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/New_28.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/New_28.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/New_28.imageset/ic_add_to_28_outlined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/New_28.imageset/ic_add_to_28_outlined.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/New_Selected_24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/New_Selected_24.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/New_Selected_24.imageset/ic_add_to_24_filled.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/New_Selected_24.imageset/ic_add_to_24_filled.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/New_Selected_28.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/New_Selected_28.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/New_Selected_28.imageset/ic_add_to_28_filled.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/New_Selected_28.imageset/ic_add_to_28_filled.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Open_24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Open_24.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Open_24.imageset/ic_folder_24_outlined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Open_24.imageset/ic_folder_24_outlined.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Open_28.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Open_28.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Open_28.imageset/ic_folder_28_outlined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Open_28.imageset/ic_folder_28_outlined.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Open_Selected_24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Open_Selected_24.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Open_Selected_24.imageset/ic_folder_24_filled.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Open_Selected_24.imageset/ic_folder_24_filled.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Open_Selected_28.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Open_Selected_28.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Open_Selected_28.imageset/ic_folder_28_filled.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TabBarView/Open_Selected_28.imageset/ic_folder_28_filled.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/Dismiss_24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/Dismiss_24.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/Dismiss_24.imageset/ic_fluent_dismiss_24_regular.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/Dismiss_24.imageset/ic_fluent_dismiss_24_regular.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/Dismiss_28.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/Dismiss_28.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/Dismiss_28.imageset/ic_fluent_dismiss_28_regular.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/Dismiss_28.imageset/ic_fluent_dismiss_28_regular.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/at-12x12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/at-12x12.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/at-12x12.imageset/at.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/at-12x12.imageset/at.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/excelIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/excelIcon.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/excelIcon.imageset/excelIcon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/excelIcon.imageset/excelIcon.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/shared-12x12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/shared-12x12.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/shared-12x12.imageset/people.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/shared-12x12.imageset/people.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/success-12x12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/success-12x12.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/success-12x12.imageset/success.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Assets.xcassets/TableViewCell/success-12x12.imageset/success.pdf -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/ar.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/ca.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/cs.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/da.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/de.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/el.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/en-GB.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/en.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/es-MX.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/es.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/fi.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/fr.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/he.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/hi.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/hr.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/hu.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/id.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/it.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/ja.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/ko.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/ms.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/nb-NO.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/nl.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/pl.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/pt-BR.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/pt-PT.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/ro.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/ru.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/sk.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/sv.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/th.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/tr.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/uk.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/vi.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/zh-Hans.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/Resources/zh-Hant.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/TableViewHeaderFooterSampleData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/TableViewHeaderFooterSampleData.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/OfficeUIFabric.Demo/TableViewSampleData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/OfficeUIFabric.Demo/TableViewSampleData.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Podfile -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Podfile.lock -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/AppCenter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/AppCenter -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/AppCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/AppCenter.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSAbstractLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSAbstractLog.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSAppCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSAppCenter.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSAppCenterErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSAppCenterErrors.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSChannelGroupProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSChannelGroupProtocol.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSChannelProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSChannelProtocol.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSConstants.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSCustomProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSCustomProperties.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSDevice.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSEnable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSEnable.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSLog.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSLogWithProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSLogWithProperties.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSLogger.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSService.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSServiceAbstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSServiceAbstract.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSWrapperLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSWrapperLogger.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSWrapperSdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Headers/MSWrapperSdk.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Info.plist -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/PrivateHeaders/MSChannelDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/PrivateHeaders/MSChannelDelegate.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/PrivateHeaders/MSConstants+Flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenter.framework/PrivateHeaders/MSConstants+Flags.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/AppCenterAnalytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/AppCenterAnalytics -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/AppCenterAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/AppCenterAnalytics.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSAbstractLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSAbstractLog.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSAnalytics.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSAnalyticsAuthenticationProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSAnalyticsAuthenticationProvider.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSAnalyticsAuthenticationProviderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSAnalyticsAuthenticationProviderDelegate.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSAnalyticsTransmissionTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSAnalyticsTransmissionTarget.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSConstants+Flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSConstants+Flags.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSEventLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSEventLog.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSEventProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSEventProperties.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSLogWithNameAndProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSLogWithNameAndProperties.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSLogWithProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSLogWithProperties.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSPropertyConfigurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSPropertyConfigurator.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSService.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSServiceAbstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Headers/MSServiceAbstract.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Info.plist -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterAnalytics.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/AppCenterCrashes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/AppCenterCrashes -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/AppCenterCrashes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/AppCenterCrashes.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/MSAbstractLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/MSAbstractLog.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/MSCrashHandlerSetupDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/MSCrashHandlerSetupDelegate.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/MSCrashes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/MSCrashes.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/MSCrashesDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/MSCrashesDelegate.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/MSErrorAttachmentLog+Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/MSErrorAttachmentLog+Utility.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/MSErrorAttachmentLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/MSErrorAttachmentLog.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/MSErrorReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/MSErrorReport.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/MSService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/MSService.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/MSServiceAbstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/MSServiceAbstract.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/MSWrapperCrashesHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Headers/MSWrapperCrashesHelper.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Info.plist -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterCrashes.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistribute.framework/AppCenterDistribute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistribute.framework/AppCenterDistribute -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistribute.framework/Headers/AppCenterDistribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistribute.framework/Headers/AppCenterDistribute.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistribute.framework/Headers/MSDistribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistribute.framework/Headers/MSDistribute.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistribute.framework/Headers/MSDistributeDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistribute.framework/Headers/MSDistributeDelegate.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistribute.framework/Headers/MSReleaseDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistribute.framework/Headers/MSReleaseDetails.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistribute.framework/Headers/MSService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistribute.framework/Headers/MSService.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistribute.framework/Headers/MSServiceAbstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistribute.framework/Headers/MSServiceAbstract.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistribute.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistribute.framework/Info.plist -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistribute.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistribute.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/cs.lproj/AppCenterDistribute.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/cs.lproj/AppCenterDistribute.strings -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/de.lproj/AppCenterDistribute.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/de.lproj/AppCenterDistribute.strings -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/en.lproj/AppCenterDistribute.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/en.lproj/AppCenterDistribute.strings -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/es.lproj/AppCenterDistribute.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/es.lproj/AppCenterDistribute.strings -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/fr.lproj/AppCenterDistribute.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/fr.lproj/AppCenterDistribute.strings -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/it.lproj/AppCenterDistribute.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/it.lproj/AppCenterDistribute.strings -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/ja.lproj/AppCenterDistribute.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/ja.lproj/AppCenterDistribute.strings -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/ko.lproj/AppCenterDistribute.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/ko.lproj/AppCenterDistribute.strings -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/pl.lproj/AppCenterDistribute.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/pl.lproj/AppCenterDistribute.strings -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/pt.lproj/AppCenterDistribute.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/pt.lproj/AppCenterDistribute.strings -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/ru.lproj/AppCenterDistribute.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/ru.lproj/AppCenterDistribute.strings -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/tr.lproj/AppCenterDistribute.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/tr.lproj/AppCenterDistribute.strings -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/zh-Hans.lproj/AppCenterDistribute.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/zh-Hans.lproj/AppCenterDistribute.strings -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/zh-Hant.lproj/AppCenterDistribute.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterDistributeResources.bundle/zh-Hant.lproj/AppCenterDistribute.strings -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/LICENSE -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/AppCenter/AppCenter-SDK-Apple/iOS/README.md -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Manifest.lock -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/AppCenter/AppCenter.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/AppCenter/AppCenter.debug.xcconfig -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/AppCenter/AppCenter.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/AppCenter/AppCenter.release.xcconfig -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/AppCenter/AppCenter.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/AppCenter/AppCenter.xcconfig -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/AppCenter/ResourceBundle-AppCenterDistributeResources-AppCenter-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/AppCenter/ResourceBundle-AppCenterDistributeResources-AppCenter-Info.plist -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Info.plist -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-Info.plist -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-acknowledgements.markdown -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-acknowledgements.plist -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-dummy.m -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-frameworks.sh -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-resources-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-resources-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-resources-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-resources-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-resources-Dogfood-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-resources-Dogfood-input-files.xcfilelist -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-resources-Dogfood-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-resources-Dogfood-output-files.xcfilelist -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-resources-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-resources-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-resources-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-resources-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-resources.sh -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo-umbrella.h -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo.debug.xcconfig -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo.dogfood.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo.dogfood.xcconfig -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo.modulemap -------------------------------------------------------------------------------- /OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Demo/Pods/Target Support Files/Pods-OfficeUIFabric.Demo/Pods-OfficeUIFabric.Demo.release.xcconfig -------------------------------------------------------------------------------- /OfficeUIFabric.INT.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.INT.podspec -------------------------------------------------------------------------------- /OfficeUIFabric.Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Resources/Info.plist -------------------------------------------------------------------------------- /OfficeUIFabric.Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Tests/Info.plist -------------------------------------------------------------------------------- /OfficeUIFabric.Tests/MSDatePickerControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Tests/MSDatePickerControllerTests.swift -------------------------------------------------------------------------------- /OfficeUIFabric.Tests/OfficeUIFabricTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.Tests/OfficeUIFabricTests.swift -------------------------------------------------------------------------------- /OfficeUIFabric.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.nuspec -------------------------------------------------------------------------------- /OfficeUIFabric.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.podspec -------------------------------------------------------------------------------- /OfficeUIFabric.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OfficeUIFabric.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /OfficeUIFabric.xcodeproj/xcshareddata/xcschemes/OfficeUIFabric.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.xcodeproj/xcshareddata/xcschemes/OfficeUIFabric.xcscheme -------------------------------------------------------------------------------- /OfficeUIFabric.xcodeproj/xcshareddata/xcschemes/OfficeUIFabricLib.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.xcodeproj/xcshareddata/xcschemes/OfficeUIFabricLib.xcscheme -------------------------------------------------------------------------------- /OfficeUIFabric.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /OfficeUIFabric.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /OfficeUIFabric/Badge Field/MSBadgeField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Badge Field/MSBadgeField.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Badge Field/MSBadgeStringExtractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Badge Field/MSBadgeStringExtractor.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Badge Field/MSBadgeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Badge Field/MSBadgeView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Calendar/MSCalendarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Calendar/MSCalendarView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Calendar/MSCalendarViewDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Calendar/MSCalendarViewDataSource.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Calendar/MSCalendarViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Calendar/MSCalendarViewLayout.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Calendar/Views/MSCalendarViewDayCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Calendar/Views/MSCalendarViewDayCell.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Calendar/Views/MSCalendarViewDayMonthCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Calendar/Views/MSCalendarViewDayMonthCell.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Calendar/Views/MSCalendarViewDayMonthYearCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Calendar/Views/MSCalendarViewDayMonthYearCell.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Calendar/Views/MSCalendarViewDayTodayCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Calendar/Views/MSCalendarViewDayTodayCell.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Calendar/Views/MSCalendarViewMonthBannerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Calendar/Views/MSCalendarViewMonthBannerView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Calendar/Views/MSCalendarViewWeekdayHeadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Calendar/Views/MSCalendarViewWeekdayHeadingView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Controls/MSActivityIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Controls/MSActivityIndicatorView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Controls/MSBarButtonItems.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Controls/MSBarButtonItems.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Controls/MSBlurringView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Controls/MSBlurringView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Controls/MSButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Controls/MSButton.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Controls/MSDimmingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Controls/MSDimmingView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Controls/MSDotView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Controls/MSDotView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Controls/MSEasyTapButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Controls/MSEasyTapButton.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Controls/MSLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Controls/MSLabel.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Controls/MSResizingHandleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Controls/MSResizingHandleView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Controls/MSScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Controls/MSScrollView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Controls/MSSearchBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Controls/MSSearchBar.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Controls/MSSegmentedControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Controls/MSSegmentedControl.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Controls/MSSeparator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Controls/MSSeparator.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Controls/MSTouchForwardingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Controls/MSTouchForwardingView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Controls/MSTwoLineTitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Controls/MSTwoLineTitleView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Core/AccessibleViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Core/AccessibleViewDelegate.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Core/Colors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Core/Colors.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Core/Fonts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Core/Fonts.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Core/MSAccessibilityContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Core/MSAccessibilityContainerView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Core/MSCalendarConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Core/MSCalendarConfiguration.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Core/MSDayOfMonth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Core/MSDayOfMonth.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Core/Obscurable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Core/Obscurable.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Core/OfficeUIFabric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Core/OfficeUIFabric.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Core/Operators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Core/Operators.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Date Time Pickers/Date Picker/MSDatePickerController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Date Time Pickers/Date Picker/MSDatePickerController.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Date Time Pickers/Date Picker/MSDatePickerSelectionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Date Time Pickers/Date Picker/MSDatePickerSelectionManager.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Date Time Pickers/Date Time Picker/MSDateTimePickerController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Date Time Pickers/Date Time Picker/MSDateTimePickerController.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Date Time Pickers/Date Time Picker/Views/MSDateTimePickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Date Time Pickers/Date Time Picker/Views/MSDateTimePickerView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Date Time Pickers/Date Time Picker/Views/MSDateTimePickerViewComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Date Time Pickers/Date Time Picker/Views/MSDateTimePickerViewComponent.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Date Time Pickers/Date Time Picker/Views/MSDateTimePickerViewComponentCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Date Time Pickers/Date Time Picker/Views/MSDateTimePickerViewComponentCell.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Date Time Pickers/Date Time Picker/Views/MSDateTimePickerViewComponentTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Date Time Pickers/Date Time Picker/Views/MSDateTimePickerViewComponentTableView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Date Time Pickers/Date Time Picker/Views/MSDateTimePickerViewDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Date Time Pickers/Date Time Picker/Views/MSDateTimePickerViewDataSource.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Date Time Pickers/Date Time Picker/Views/MSDateTimePickerViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Date Time Pickers/Date Time Picker/Views/MSDateTimePickerViewLayout.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Date Time Pickers/DateTimePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Date Time Pickers/DateTimePicker.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Date Time Pickers/MSDateTimePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Date Time Pickers/MSDateTimePicker.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Drawer/DrawerShadowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Drawer/DrawerShadowView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Drawer/MSDrawerController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Drawer/MSDrawerController.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Drawer/MSDrawerPresentationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Drawer/MSDrawerPresentationController.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Drawer/MSDrawerTransitionAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Drawer/MSDrawerTransitionAnimator.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Extensions/CALayer+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Extensions/CALayer+Extensions.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Extensions/Calendar+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Extensions/Calendar+Extensions.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Extensions/CharacterSet+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Extensions/CharacterSet+Extension.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Extensions/Date+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Extensions/Date+Extensions.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Extensions/DateComponents+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Extensions/DateComponents+Extensions.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Extensions/NSLayoutConstraint+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Extensions/NSLayoutConstraint+Extensions.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Extensions/String+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Extensions/String+Extension.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Extensions/UIColor+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Extensions/UIColor+Extensions.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Extensions/UIFont+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Extensions/UIFont+Extension.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Extensions/UIImage+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Extensions/UIImage+Extensions.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Extensions/UIResponder+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Extensions/UIResponder+Extensions.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Extensions/UIScreen+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Extensions/UIScreen+Extension.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Extensions/UIScrollView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Extensions/UIScrollView+Extensions.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Extensions/UITableViewCell+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Extensions/UITableViewCell+Extension.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Extensions/UIView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Extensions/UIView+Extensions.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Extensions/UIViewController+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Extensions/UIViewController+Extensions.swift -------------------------------------------------------------------------------- /OfficeUIFabric/HUD/MSHUD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/HUD/MSHUD.swift -------------------------------------------------------------------------------- /OfficeUIFabric/HUD/MSHUDView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/HUD/MSHUDView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Info.plist -------------------------------------------------------------------------------- /OfficeUIFabric/Navigation/Helpers/MSContentScrollViewTraits.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Navigation/Helpers/MSContentScrollViewTraits.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Navigation/Helpers/MSNavigationAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Navigation/Helpers/MSNavigationAnimator.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Navigation/MSNavigationBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Navigation/MSNavigationBar.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Navigation/MSNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Navigation/MSNavigationController.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Navigation/Shy Header/MSShyHeaderController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Navigation/Shy Header/MSShyHeaderController.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Navigation/Shy Header/MSShyHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Navigation/Shy Header/MSShyHeaderView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Navigation/UINavigationItem+Navigation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Navigation/UINavigationItem+Navigation.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Navigation/UIViewController+Navigation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Navigation/UIViewController+Navigation.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Navigation/Views/MSLargeTitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Navigation/Views/MSLargeTitleView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Notification/MSNotificationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Notification/MSNotificationView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/OfficeUIFabric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/OfficeUIFabric.h -------------------------------------------------------------------------------- /OfficeUIFabric/People Picker/MSAvatar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/People Picker/MSAvatar.swift -------------------------------------------------------------------------------- /OfficeUIFabric/People Picker/MSAvatarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/People Picker/MSAvatarView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/People Picker/MSInitialsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/People Picker/MSInitialsView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/People Picker/MSPeoplePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/People Picker/MSPeoplePicker.swift -------------------------------------------------------------------------------- /OfficeUIFabric/People Picker/MSPersona.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/People Picker/MSPersona.swift -------------------------------------------------------------------------------- /OfficeUIFabric/People Picker/MSPersonaBadgeViewDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/People Picker/MSPersonaBadgeViewDataSource.swift -------------------------------------------------------------------------------- /OfficeUIFabric/People Picker/MSPersonaCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/People Picker/MSPersonaCell.swift -------------------------------------------------------------------------------- /OfficeUIFabric/People Picker/MSPersonaListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/People Picker/MSPersonaListView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Pill Button Bar/MSPillButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Pill Button Bar/MSPillButton.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Pill Button Bar/MSPillButtonBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Pill Button Bar/MSPillButtonBar.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Popup Menu/MSPopupMenuController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Popup Menu/MSPopupMenuController.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Popup Menu/MSPopupMenuItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Popup Menu/MSPopupMenuItem.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Popup Menu/MSPopupMenuItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Popup Menu/MSPopupMenuItemCell.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Popup Menu/MSPopupMenuSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Popup Menu/MSPopupMenuSection.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Popup Menu/MSPopupMenuSectionHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Popup Menu/MSPopupMenuSectionHeaderView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Presenters/MSCardPresentationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Presenters/MSCardPresentationController.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Presenters/MSCardPresenterNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Presenters/MSCardPresenterNavigationController.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Presenters/MSCardTransitionAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Presenters/MSCardTransitionAnimator.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Presenters/MSPageCardPresenterController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Presenters/MSPageCardPresenterController.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/blue10.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/blue10.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/blueMagenta20.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/blueMagenta20.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/blueMagenta30.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/blueMagenta30.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/communicationBlue.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/communicationBlue.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/communicationBlueShade10.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/communicationBlueShade10.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/communicationBlueShade20.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/communicationBlueShade20.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/communicationBlueShade30.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/communicationBlueShade30.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/communicationBlueTint10.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/communicationBlueTint10.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/communicationBlueTint20.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/communicationBlueTint20.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/communicationBlueTint30.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/communicationBlueTint30.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/communicationBlueTint40.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/communicationBlueTint40.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/cyan20.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/cyan20.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/cyan30.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/cyan30.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/cyanBlue10.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/cyanBlue10.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/cyanBlue20.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/cyanBlue20.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/dangerPrimary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/dangerPrimary.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/dangerShade10.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/dangerShade10.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/dangerShade40.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/dangerShade40.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/dangerTint10.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/dangerTint10.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/dangerTint40.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/dangerTint40.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray1.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray1.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray10.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray10.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray11.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray11.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray12.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray12.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray2.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray2.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray20.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray20.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray3.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray3.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray30.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray30.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray4.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray4.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray40.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray40.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray5.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray5.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray6.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray6.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray7.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray7.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray8.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray8.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray9.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/gray9.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/green10.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/green10.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/green20.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/green20.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/magenta10.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/magenta10.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/magenta20.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/magenta20.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/magentaPink10.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/magentaPink10.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/orange20.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/orange20.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/orange30.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/orange30.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/orangeYellow20.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/orangeYellow20.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/pinkRed10.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/pinkRed10.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/red10.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/red10.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/red20.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/red20.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/warningPrimary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/warningPrimary.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/warningShade30.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/warningShade30.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/warningShade40.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/warningShade40.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/warningTint10.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/warningTint10.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/FluentColors/warningTint40.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/FluentColors/warningTint40.colorset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/back-24x24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/back-24x24.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/back-24x24.imageset/ic_ios_arrow_left_24_outlined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/back-24x24.imageset/ic_ios_arrow_left_24_outlined.pdf -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/cancel-white-40x40.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/cancel-white-40x40.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/cancel-white-40x40.imageset/cancel-40x40.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/cancel-white-40x40.imageset/cancel-40x40.pdf -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/checkmark-24x24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/checkmark-24x24.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/checkmark-24x24.imageset/ic_checkmark_24_outlined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/checkmark-24x24.imageset/ic_checkmark_24_outlined.pdf -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/checkmark-thin-20x20.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/checkmark-thin-20x20.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/checkmark-thin-20x20.imageset/ic_checkmark_20_outlined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/checkmark-thin-20x20.imageset/ic_checkmark_20_outlined.pdf -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/checkmark-white-40x40.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/checkmark-white-40x40.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/checkmark-white-40x40.imageset/checkmark-white-40x40.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/checkmark-white-40x40.imageset/checkmark-white-40x40.pdf -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/chevron-down-20x20.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/chevron-down-20x20.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/chevron-down-20x20.imageset/ic_chevron_down_20_outlined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/chevron-down-20x20.imageset/ic_chevron_down_20_outlined.pdf -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/chevron-right-20x20.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/chevron-right-20x20.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/chevron-right-20x20.imageset/ic_chevron_right_20_outlined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/chevron-right-20x20.imageset/ic_chevron_right_20_outlined.pdf -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/dismiss-20x20.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/dismiss-20x20.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/dismiss-20x20.imageset/ic_fluent_dismiss_20_regular.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/dismiss-20x20.imageset/ic_fluent_dismiss_20_regular.pdf -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/iOS-chevron-right-20x20.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/iOS-chevron-right-20x20.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/iOS-chevron-right-20x20.imageset/ic_fluent_ios_chevron_right_20_filled.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/iOS-chevron-right-20x20.imageset/ic_fluent_ios_chevron_right_20_filled.pdf -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/more-24x24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/more-24x24.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/more-24x24.imageset/ic_more_24_outlined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/more-24x24.imageset/ic_more_24_outlined.pdf -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/search-20x20.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/search-20x20.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/search-20x20.imageset/ic_search_20_outlined.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/search-20x20.imageset/ic_search_20_outlined.pdf -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/search-clear.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/search-clear.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/search-clear.imageset/search-bar-clear.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/search-clear.imageset/search-bar-clear.pdf -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/selection-off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/selection-off.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/selection-off.imageset/unselected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/selection-off.imageset/unselected.pdf -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/selection-on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/selection-on.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/selection-on.imageset/selected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/selection-on.imageset/selected.pdf -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/tooltip-arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/tooltip-arrow.imageset/Contents.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Assets.xcassets/tooltip-arrow.imageset/tooltip-arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Assets.xcassets/tooltip-arrow.imageset/tooltip-arrow.pdf -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/CultureMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/CultureMapping.json -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/ar.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/ar.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/ca.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/ca.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/cs.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/cs.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/da.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/da.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/de.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/de.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/el.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/el.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/en-GB.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/en-GB.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/en-GB.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/en-GB.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/en.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/en.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/es-MX.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/es-MX.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/es-MX.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/es-MX.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/es.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/es.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/fi.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/fi.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/fr.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/fr.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/he.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/he.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/hi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/hi.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/hi.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/hi.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/hr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/hr.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/hr.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/hr.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/hu.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/hu.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/id.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/id.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/it.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/it.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/ja.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/ja.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/ko.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/ko.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/ms.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/ms.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/ms.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/ms.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/nb-NO.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/nb-NO.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/nb-NO.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/nb-NO.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/nl.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/nl.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/pl.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/pl.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/pt-BR.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/pt-BR.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/pt-PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/pt-PT.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/pt-PT.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/pt-PT.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/ro.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/ro.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/ro.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/ru.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/ru.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/sk.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/sk.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/sk.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/sv.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/sv.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/th.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/th.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/tr.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/tr.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/uk.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/uk.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/vi.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/vi.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/zh-Hans.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/zh-Hans.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /OfficeUIFabric/Resources/Localization/zh-Hant.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Resources/Localization/zh-Hant.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /OfficeUIFabric/Shimmer/MSShimmerAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Shimmer/MSShimmerAppearance.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Shimmer/MSShimmerLinesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Shimmer/MSShimmerLinesView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Shimmer/MSShimmerLinesViewAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Shimmer/MSShimmerLinesViewAppearance.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Shimmer/MSShimmerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Shimmer/MSShimmerView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Shimmer/MSShimmerViewAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Shimmer/MSShimmerViewAppearance.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Tab Bar/MSTabBarItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Tab Bar/MSTabBarItem.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Tab Bar/MSTabBarItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Tab Bar/MSTabBarItemView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Tab Bar/MSTabBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Tab Bar/MSTabBarView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Table View/MSActionsCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Table View/MSActionsCell.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Table View/MSActivityIndicatorCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Table View/MSActivityIndicatorCell.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Table View/MSBooleanCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Table View/MSBooleanCell.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Table View/MSCenteredLabelCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Table View/MSCenteredLabelCell.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Table View/MSTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Table View/MSTableViewCell.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Table View/MSTableViewHeaderFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Table View/MSTableViewHeaderFooterView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Tooltip/MSTooltip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Tooltip/MSTooltip.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Tooltip/MSTooltipPositionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Tooltip/MSTooltipPositionController.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Tooltip/MSTooltipView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Tooltip/MSTooltipView.swift -------------------------------------------------------------------------------- /OfficeUIFabric/Utilities/MSAnimationSynchronizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/OfficeUIFabric/Utilities/MSAnimationSynchronizer.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/README.md -------------------------------------------------------------------------------- /metadata/repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/metadata/repo.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/package.json -------------------------------------------------------------------------------- /scripts/set-xcodeproj-workspacesettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/scripts/set-xcodeproj-workspacesettings.js -------------------------------------------------------------------------------- /scripts/vsto-collect-nuspec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/scripts/vsto-collect-nuspec.js -------------------------------------------------------------------------------- /vsto_publish_nuget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/ui-fabric-ios/HEAD/vsto_publish_nuget.json --------------------------------------------------------------------------------