├── .cicd ├── Jenkinsfile └── copy-docs.sh ├── .gitattributes ├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md └── release-drafter.yml ├── .gitignore ├── .jazzy.yaml ├── .swiftlint.yml ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── .typo-ci.yml ├── .versionrc ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Makefile ├── NatDS.podspec ├── NatDS.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── NatDS.xcscheme │ └── NatDSSnapShotTests.xcscheme ├── NatDS.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── NatDSSnapShotTests ├── Alert │ ├── NatAlert+Snapshot+Tests.swift │ └── __Snapshots__ │ │ └── NatAlert+Snapshot+Tests │ │ ├── test_Nat_Alert_default_outlined.1.png │ │ ├── test_Nat_Alert_default_style.1.png │ │ ├── test_Nat_Alert_error_default.1.png │ │ ├── test_Nat_Alert_error_outlined.1.png │ │ ├── test_Nat_Alert_info_default.1.png │ │ ├── test_Nat_Alert_success_default.1.png │ │ ├── test_Nat_Alert_success_outlined.1.png │ │ ├── test_Nat_Alert_warning_outlined.1.png │ │ ├── test_Nat_Alert_warning_style.1.png │ │ ├── test_Nat_Alert_warning_with_no_icon.1.png │ │ ├── test_Nat_Alert_warning_with_no_icon_and_no_title.1.png │ │ ├── test_Nat_Alert_warning_with_no_title.1.png │ │ ├── test_Nat_Alert_warning_with_primary_and_secondary_button.1.png │ │ └── test_Nat_Alert_warning_with_primary_button.1.png ├── AppBar │ ├── AppBar+Snapshot+Tests.swift │ └── __Snapshots__ │ │ └── AppBar+Snapshot+Tests │ │ ├── test_appbar_actionLeft_hasValidSnapshot.1.png │ │ ├── test_appbar_actionRight_hasValidSnapshot.1.png │ │ ├── test_appbar_actionRight_multiple_hasValidSnapshot.1.png │ │ ├── test_appbar_centerTitle_hasValidSnapshot.1.png │ │ ├── test_appbar_color_default_hasValidSnapshot.1.png │ │ ├── test_appbar_color_inverse_hasValidSnapshot.1.png │ │ ├── test_appbar_color_none_hasValidSnapshot.1.png │ │ ├── test_appbar_color_primary_hasValidSnapshot.1.png │ │ ├── test_appbar_elevation_hasValidSnapshot.1.png │ │ └── test_appbar_leftTitle_hasValidSnapshot.1.png ├── Avatar │ ├── NatAvatar+Snapshots+Tests.swift │ └── __Snapshots__ │ │ └── NatAvatar+Snapshots+Tests │ │ ├── test_avatar_icon_hasValidSnapshot.1.png │ │ ├── test_avatar_icon_hasValidSnapshot.2.txt │ │ ├── test_avatar_image_hasValidSnapshot.1.png │ │ ├── test_avatar_image_hasValidSnapshot.2.txt │ │ ├── test_avatar_initials_hasValidSnapsht.1.png │ │ ├── test_avatar_initials_hasValidSnapsht.1.txt │ │ ├── test_avatar_initials_hasValidSnapsht.2.txt │ │ ├── test_avatar_nil_image_hasValidSnapshot.1.png │ │ └── test_avatar_nil_image_hasValidSnapshot.2.txt ├── Badge │ ├── Badgeable+Snapshot+Tests.swift │ ├── NatBadge+Dot+Snapshot+Tests.swift │ ├── NatBadge+Pulse+Snapshot+Tests.swift │ ├── NatBadge+Standard+Snapshot+Tests.swift │ └── __Snapshots__ │ │ ├── Badgeable+Snapshot+Tests │ │ ├── test_badge_style_dot_alert_count_1_hasValidSnapshot.1.png │ │ ├── test_badge_style_standard_alert_count_100_hasValidSnapshot.1.png │ │ ├── test_badge_style_standard_alert_count_1_hasValidSnapshot.1.png │ │ ├── test_badge_style_standard_alert_limit_max99_hasValidSnapshot.1.png │ │ ├── test_badge_style_standard_alert_limit_max9_hasValidSnapshot.1.png │ │ └── test_badge_style_standard_alert_limit_unlimited_hasValidSnapshot.1.png │ │ ├── NatBadge+Dot+Snapshot+Tests │ │ ├── test_badge_style_dot_alert_hasValidSnapshot.1.png │ │ └── test_badge_style_standard_alert_count_100_hasValidSnapshot.1.png │ │ ├── NatBadge+Pulse+Snapshot+Tests │ │ ├── test_badge_style_pulse_alert_hasValidSnapshot.1.png │ │ ├── test_badge_style_pulse_primary_hasValidSnapshot.1.png │ │ ├── test_badge_style_pulse_secondary_hasValidSnapshot.1.png │ │ └── test_badge_style_pulse_success_hasValidSnapshot.1.png │ │ ├── NatBadge+Snapshot+Tests │ │ ├── test_badge_style_standard_alert_count_100_hasValidSnapshot.1.png │ │ ├── test_badge_style_standard_alert_count_1_hasValidSnapshot.1.png │ │ └── test_badge_style_standard_alert_count_50_hasValidSnapshot.1.png │ │ └── NatBadge+Standard+Snapshot+Tests │ │ ├── test_badge_style_standard_alert_count_100_hasValidSnapshot.1.png │ │ ├── test_badge_style_standard_alert_count_1_hasValidSnapshot.1.png │ │ └── test_badge_style_standard_alert_count_50_hasValidSnapshot.1.png ├── Bar │ ├── SearchBar+Snapshot+Tests.swift │ └── __Snapshots__ │ │ └── SearchBar+Snapshot+Tests │ │ ├── test_state_whenHasNoFocus_expectPlaceholderMessageWithoutCleanButton.1.png │ │ └── test_state_whenHasText_expectedCleanButtonIsVisible.1.png ├── Button │ ├── NatButton+SnapShot+Tests.swift │ └── __Snapshots__ │ │ └── NatButton+SnapShot+Tests │ │ ├── test_icon_left_side_hasValidSnapshot.1.png │ │ ├── test_icon_left_side_hasValidSnapshot.2.txt │ │ ├── test_icon_left_side_noWidthConstraint_hasValidSnapshot.1.png │ │ ├── test_icon_left_side_noWidthConstraint_hasValidSnapshot.2.txt │ │ ├── test_icon_right_side_hasValidSnapshot.1.png │ │ ├── test_icon_right_side_hasValidSnapshot.2.txt │ │ ├── test_icon_right_side_noWidthConstraint_hasValidSnapshot.1.png │ │ └── test_icon_right_side_noWidthConstraint_hasValidSnapshot.2.txt ├── Card │ ├── NatCard+Snapshot+Tests.swift │ └── __Snapshots__ │ │ └── NatCard+Snapshot+Tests │ │ ├── test_NatCard_basic_hasValidSnapshot.1.png │ │ ├── test_NatCard_hasValidSnapshot.1.png │ │ ├── test_NatCard_with_border_Radius_hasValidSnapshot.1.png │ │ ├── test_NatCard_with_elevation_and_border_Radius_hasValidSnapshot.1.png │ │ └── test_NatCard_with_elevation_hasValidSnapshot.1.png ├── Checkbox │ ├── Checkbox+Snapshot+Tests.swift │ └── __Snapshots__ │ │ └── Checkbox+Snapshot+Tests │ │ ├── test_checkbox_disable_selected_with_text_hasValidSnapshot.1.png │ │ ├── test_checkbox_disable_selected_without_text_hasValidSnapshot.1.png │ │ ├── test_checkbox_disable_unselected_with_text_hasValidSnapshot.1.png │ │ ├── test_checkbox_disable_unselected_without_text_hasValidSnapshot.1.png │ │ ├── test_checkbox_enable_selected_with_text_hasValidSnapshot.1.png │ │ ├── test_checkbox_enable_selected_without_text_hasValidSnapshot.1.png │ │ ├── test_checkbox_enable_unselected_with_text_hasValidSnapshot.1.png │ │ ├── test_checkbox_enable_unselected_without_text_hasValidSnapshot.1.png │ │ ├── test_checkbox_indeterminate_disable_selected_hasValidSnapshot.1.png │ │ ├── test_checkbox_indeterminate_disable_selected_with_text_hasValidSnapshot.1.png │ │ ├── test_checkbox_indeterminate_disable_unselected_hasValidSnapshot.1.png │ │ ├── test_checkbox_indeterminate_enable_selected_hasValidSnapshot.1.png │ │ ├── test_checkbox_indeterminate_enable_selected_with_text_hasValidSnapshot.1.png │ │ └── test_checkbox_indeterminate_enable_unselected_hasValidSnapshot.1.png ├── Chip │ ├── Chip+Snapshot+Tests.swift │ └── __Snapshots__ │ │ └── Chip+Snapshot+Tests │ │ ├── test_Nat_Chip_custom_color.1.png │ │ ├── test_Nat_Chip_disabled_state.1.png │ │ ├── test_Nat_Chip_focused_state.1.png │ │ ├── test_Nat_Chip_medium_size.1.png │ │ ├── test_Nat_Chip_neutral_color.1.png │ │ ├── test_Nat_Chip_primary_color.1.png │ │ ├── test_Nat_Chip_secondary_color.1.png │ │ ├── test_Nat_Chip_selected_state.1.png │ │ ├── test_Nat_Chip_semiX_size.1.png │ │ ├── test_Nat_Chip_semi_size.1.png │ │ ├── test_Nat_Chip_with_avatar_and_icon.1.png │ │ ├── test_Nat_Chip_with_both_sides_icon.1.png │ │ ├── test_Nat_Chip_with_icon_and_avatar.1.png │ │ ├── test_Nat_Chip_with_left_avatar.1.png │ │ ├── test_Nat_Chip_with_left_icon.1.png │ │ ├── test_Nat_Chip_with_right_avatar.1.png │ │ └── test_Nat_Chip_with_right_icon.1.png ├── Counter │ ├── NatCounter+Snapshot+Tests.swift │ └── __Snapshots__ │ │ └── NatCounter+Snapshot+Tests │ │ ├── test_counter_add_disabled_hasValidSnapshot.1.png │ │ ├── test_counter_all_buttons_disabled_hasValidSnapshot.1.png │ │ ├── test_counter_medium_size_hasValidSnapshot.1.png │ │ ├── test_counter_semi_size_hasValidSnapshot.1.png │ │ ├── test_counter_subtract_disabled_hasValidSnapshot.1.png │ │ └── test_counter_with_label_hasValidSnapshot.1.png ├── Dialog │ ├── NatDialogController+Snapshot+Tests.swift │ └── __Snapshots__ │ │ └── NatDialogController+Snapshot+Tests │ │ ├── test_dialog_minimum_constraints_for_size_hasValidSnapshot.1.png │ │ ├── test_dialog_style_alert_hasValidSnapshot.1.png │ │ ├── test_dialog_style_alert_with_vertical_buttons_hasValidSnapshot.1.png │ │ ├── test_dialog_style_standard_hasValidSnapshot.1.png │ │ ├── test_dialog_style_standard_with_divider_hasValidSnapshot.1.png │ │ ├── test_dialog_style_standard_with_title_hasValidSnapshot.1.png │ │ ├── test_dialog_style_standard_with_vertical_buttons_hasValidSnapshot.1.png │ │ └── test_dialog_style_standard_without_title_hasValidSnapshot.1.png ├── Divider │ ├── Divider+Snapshot+Tests.swift │ └── __Snapshots__ │ │ └── Divider+Snapshot+Tests │ │ ├── test_divider_full_bleed_hasValidSnapshot.1.png │ │ ├── test_divider_full_inset_hasValidSnapshot.1.png │ │ ├── test_divider_full_middle_hasValidSnapshot.1.png │ │ └── test_init_hasValidSnapshot.1.png ├── ExpansionPanel │ ├── ExpansionPanel+Snapshot+Tests.swift │ ├── Helper │ │ ├── ExpansionPanelBuilder.swift │ │ └── ViewAnimatingMock.swift │ └── __Snapshots__ │ │ └── ExpansionPanel+Snapshot+Tests │ │ ├── test_defaultInit_hasValidSnapshot.1.png │ │ ├── test_defaultInit_withLongSubtitle_andLimitedSize_hasValidSnapshot.1.png │ │ ├── test_defaultInit_withLongSubtitle_hasValidSnapshot.1.png │ │ ├── test_initWithViewAnimating_hasValidSnapshot.1.png │ │ ├── test_initWithViewAnimating_withLongSubtitle_andLimitedSize_hasValidSnapshot.1.png │ │ ├── test_initWithViewAnimating_withLongSubtitle_hasValidSnapshot.1.png │ │ ├── test_removeDetailView_AndPanelIsExpanded_showsButtonPointingDown.1.png │ │ ├── test_setDetailView_whenPanelIsExpanded_showsButtonPointingUp_AndDetailView.1.png │ │ ├── test_tapButtonOnce_showsButtonPointingUp.1.png │ │ ├── test_tapButtonOnce_withDetailView_showsButtonPointingUp_AndDetailView.1.png │ │ ├── test_tapButtonThrice_showsButtonPointingUp.1.png │ │ ├── test_tapButtonTwice_showsButtonPointingDown.1.png │ │ ├── test_tapPanelOnce_withDetailView_showsButtonPointingUp_AndDetailView.1.png │ │ └── test_tapPanelToCollapse_whenSetDetailView_AndPanelIsExpanded_showsButtonPointingDown.1.png ├── IconButton │ ├── NatIconButton+Snapshot+Tests.swift │ └── __Snapshots__ │ │ └── NatIconButton+Snapshot+Tests │ │ ├── test_standardStyle_changeStyleAfterInit_hasValidSnapshot.1.png │ │ ├── test_style_standard_color_default_disabled_hasValidSnapshot.1.png │ │ ├── test_style_standard_color_default_hasValidSnapshot.1.png │ │ ├── test_style_standard_color_default_hasValidSnapshot.2.txt │ │ ├── test_style_standard_color_default_pressed_hasValidSnapshot.1.txt │ │ ├── test_style_standard_color_default_tapped_hasValidSnapshot.1.png │ │ ├── test_style_standard_color_default_tapped_hasValidSnapshot.2.txt │ │ ├── test_style_standard_color_default_with_badge_hasValidSnapshot.1.png │ │ ├── test_style_standard_color_default_with_badge_hasValidSnapshot.2.txt │ │ ├── test_style_standard_color_default_with_float_background_hasValidSnapshot.1.png │ │ ├── test_style_standard_color_default_with_overlay_background_hasValidSnapshot.1.png │ │ ├── test_style_standard_color_default_with_size_medium_hasValidSnapshot.1.png │ │ ├── test_style_standard_color_default_with_size_semiX_hasValidSnapshot.1.png │ │ ├── test_style_standard_color_light_disabled_hasValidSnapshot.1.png │ │ ├── test_style_standard_color_light_hasValidSnapshot.1.png │ │ ├── test_style_standard_color_light_hasValidSnapshot.2.txt │ │ ├── test_style_standard_color_light_with_float_background_hasValidSnapshot.1.png │ │ ├── test_style_standard_color_light_with_overlay_background_hasValidSnapshot.1.png │ │ ├── test_style_standard_color_primary_disabled_hasValidSnapshot.1.png │ │ ├── test_style_standard_color_primary_hasValidSnapshot.1.png │ │ ├── test_style_standard_color_primary_hasValidSnapshot.2.txt │ │ ├── test_style_standard_color_primary_pressed_hasValidSnapshot.1.txt │ │ ├── test_style_standard_color_primary_tapped_hasValidSnapshot.1.png │ │ ├── test_style_standard_color_primary_tapped_hasValidSnapshot.2.txt │ │ ├── test_style_standard_color_primary_with_badge_hasValidSnapshot.1.png │ │ ├── test_style_standard_color_primary_with_badge_hasValidSnapshot.2.txt │ │ ├── test_style_standard_color_primary_with_float_background_hasValidSnapshot.1.png │ │ ├── test_style_standard_color_primary_with_overlay_background_hasValidSnapshot.1.png │ │ ├── test_style_standard_color_primary_with_size_medium_hasValidSnapshot.1.png │ │ └── test_style_standard_color_primary_with_size_semiX_hasValidSnapshot.1.png ├── Icons │ ├── IconView+Snapshot+Tests.swift │ └── __Snapshots__ │ │ ├── Icon+Snapshot+Tests │ │ ├── assert-icon.filledActionAdd.png │ │ ├── assert-icon.filledActionCancel.png │ │ ├── assert-icon.filledActionCheck.png │ │ ├── assert-icon.filledActionDelete.png │ │ ├── assert-icon.filledActionLove.png │ │ ├── assert-icon.filledActionNewrequest.png │ │ ├── assert-icon.filledActionRating.png │ │ ├── assert-icon.filledActionSubtract.png │ │ ├── assert-icon.filledBrandFacebook.png │ │ ├── assert-icon.filledBrandGoogle.png │ │ ├── assert-icon.filledBrandInstagram.png │ │ ├── assert-icon.filledBrandLinkedin.png │ │ ├── assert-icon.filledBrandNaturarosacea.png │ │ ├── assert-icon.filledBrandPinterest.png │ │ ├── assert-icon.filledBrandSpotify.png │ │ ├── assert-icon.filledBrandTwitter.png │ │ ├── assert-icon.filledBrandWhatsapp.png │ │ ├── assert-icon.filledBrandYoutube.png │ │ ├── assert-icon.filledContentChannel.png │ │ ├── assert-icon.filledContentDivulgation.png │ │ ├── assert-icon.filledContentQuote.png │ │ ├── assert-icon.filledDefaultMockup.png │ │ ├── assert-icon.filledFinanceCharging.png │ │ ├── assert-icon.filledFinancePaymentlink.png │ │ ├── assert-icon.filledMediaPause.png │ │ ├── assert-icon.filledMediaPlay.png │ │ ├── assert-icon.filledMediaStop.png │ │ ├── assert-icon.filledNavigationArrowbottom.png │ │ ├── assert-icon.filledNavigationArrowleft.png │ │ ├── assert-icon.filledNavigationArrowright.png │ │ ├── assert-icon.filledNavigationArrowtop.png │ │ ├── assert-icon.filledNavigationDirectionleft.png │ │ ├── assert-icon.filledNavigationDirectionright.png │ │ ├── assert-icon.filledNavigationDirectiontbottom.png │ │ ├── assert-icon.filledNavigationDirectiontop.png │ │ ├── assert-icon.filledNavigationMenu.png │ │ ├── assert-icon.filledNavigationMore.png │ │ ├── assert-icon.filledNavigationSetbottom.png │ │ ├── assert-icon.filledNavigationSetleft.png │ │ ├── assert-icon.filledNavigationSetright.png │ │ ├── assert-icon.filledNavigationSettop.png │ │ ├── assert-icon.filledProductBrandsproduct.png │ │ ├── assert-icon.filledSocialMyprofile.png │ │ ├── assert-icon.filledToggleIndeterminatecheckbox.png │ │ ├── assert-icon.outlinedActionAdd.png │ │ ├── assert-icon.outlinedActionAddproduct.png │ │ ├── assert-icon.outlinedActionAttachment.png │ │ ├── assert-icon.outlinedActionAutofilter.png │ │ ├── assert-icon.outlinedActionCalendar.png │ │ ├── assert-icon.outlinedActionCamerachange.png │ │ ├── assert-icon.outlinedActionCancel.png │ │ ├── assert-icon.outlinedActionChange.png │ │ ├── assert-icon.outlinedActionCheck.png │ │ ├── assert-icon.outlinedActionClock.png │ │ ├── assert-icon.outlinedActionClosedbox.png │ │ ├── assert-icon.outlinedActionCopy.png │ │ ├── assert-icon.outlinedActionCopylink.png │ │ ├── assert-icon.outlinedActionCycle.png │ │ ├── assert-icon.outlinedActionDelete.png │ │ ├── assert-icon.outlinedActionDone.png │ │ ├── assert-icon.outlinedActionDownload.png │ │ ├── assert-icon.outlinedActionEdit.png │ │ ├── assert-icon.outlinedActionFavorite.png │ │ ├── assert-icon.outlinedActionFilter.png │ │ ├── assert-icon.outlinedActionFrame.png │ │ ├── assert-icon.outlinedActionGridsquare.png │ │ ├── assert-icon.outlinedActionHelp.png │ │ ├── assert-icon.outlinedActionHistory.png │ │ ├── assert-icon.outlinedActionLightoff.png │ │ ├── assert-icon.outlinedActionLighton.png │ │ ├── assert-icon.outlinedActionLike.png │ │ ├── assert-icon.outlinedActionList.png │ │ ├── assert-icon.outlinedActionLove.png │ │ ├── assert-icon.outlinedActionMic.png │ │ ├── assert-icon.outlinedActionMicrec.png │ │ ├── assert-icon.outlinedActionNewregister.png │ │ ├── assert-icon.outlinedActionNewrequest.png │ │ ├── assert-icon.outlinedActionOrder.png │ │ ├── assert-icon.outlinedActionPhone.png │ │ ├── assert-icon.outlinedActionPrint.png │ │ ├── assert-icon.outlinedActionQr.png │ │ ├── assert-icon.outlinedActionRating.png │ │ ├── assert-icon.outlinedActionRecycle.png │ │ ├── assert-icon.outlinedActionRequest.png │ │ ├── assert-icon.outlinedActionRequestspecial.png │ │ ├── assert-icon.outlinedActionRunningclock.png │ │ ├── assert-icon.outlinedActionSave.png │ │ ├── assert-icon.outlinedActionSchedule.png │ │ ├── assert-icon.outlinedActionSearch.png │ │ ├── assert-icon.outlinedActionSelectedalllines.png │ │ ├── assert-icon.outlinedActionSend.png │ │ ├── assert-icon.outlinedActionSettings.png │ │ ├── assert-icon.outlinedActionShare.png │ │ ├── assert-icon.outlinedActionShareios.png │ │ ├── assert-icon.outlinedActionSubtract.png │ │ ├── assert-icon.outlinedActionText.png │ │ ├── assert-icon.outlinedActionUpdate.png │ │ ├── assert-icon.outlinedActionUpload.png │ │ ├── assert-icon.outlinedActionVisibility.png │ │ ├── assert-icon.outlinedActionVisibilityoff.png │ │ ├── assert-icon.outlinedAlertCancel.png │ │ ├── assert-icon.outlinedAlertCheck.png │ │ ├── assert-icon.outlinedAlertEmpty.png │ │ ├── assert-icon.outlinedAlertIndeterminate.png │ │ ├── assert-icon.outlinedAlertInfo.png │ │ ├── assert-icon.outlinedAlertNotification.png │ │ ├── assert-icon.outlinedAlertWarning.png │ │ ├── assert-icon.outlinedCommunicationChat.png │ │ ├── assert-icon.outlinedCommunicationEmail.png │ │ ├── assert-icon.outlinedCommunicationHelp.png │ │ ├── assert-icon.outlinedCommunicationMessage.png │ │ ├── assert-icon.outlinedCommunicationOccurrence.png │ │ ├── assert-icon.outlinedCommunicationPhoneringing.png │ │ ├── assert-icon.outlinedCommunicationReadEmail.png │ │ ├── assert-icon.outlinedCommunicationSignal.png │ │ ├── assert-icon.outlinedCommunicationSpeaker.png │ │ ├── assert-icon.outlinedCommunicationTreatment.png │ │ ├── assert-icon.outlinedContentAdddocument.png │ │ ├── assert-icon.outlinedContentAgility.png │ │ ├── assert-icon.outlinedContentBellringing.png │ │ ├── assert-icon.outlinedContentBook.png │ │ ├── assert-icon.outlinedContentBrightness.png │ │ ├── assert-icon.outlinedContentChangeview.png │ │ ├── assert-icon.outlinedContentChannel.png │ │ ├── assert-icon.outlinedContentChristmascard.png │ │ ├── assert-icon.outlinedContentConsistency.png │ │ ├── assert-icon.outlinedContentDivulgation.png │ │ ├── assert-icon.outlinedContentEducation.png │ │ ├── assert-icon.outlinedContentExchangereports.png │ │ ├── assert-icon.outlinedContentGallery.png │ │ ├── assert-icon.outlinedContentGift.png │ │ ├── assert-icon.outlinedContentGlobal.png │ │ ├── assert-icon.outlinedContentHandcare.png │ │ ├── assert-icon.outlinedContentHandglobal.png │ │ ├── assert-icon.outlinedContentHands.png │ │ ├── assert-icon.outlinedContentHealth.png │ │ ├── assert-icon.outlinedContentHealthy.png │ │ ├── assert-icon.outlinedContentIndicator.png │ │ ├── assert-icon.outlinedContentItemlist.png │ │ ├── assert-icon.outlinedContentLifebuoy.png │ │ ├── assert-icon.outlinedContentLock.png │ │ ├── assert-icon.outlinedContentMagic.png │ │ ├── assert-icon.outlinedContentMedal.png │ │ ├── assert-icon.outlinedContentMenu.png │ │ ├── assert-icon.outlinedContentMirror.png │ │ ├── assert-icon.outlinedContentPassword.png │ │ ├── assert-icon.outlinedContentPlanb.png │ │ ├── assert-icon.outlinedContentProductshowcase.png │ │ ├── assert-icon.outlinedContentProdutivity.png │ │ ├── assert-icon.outlinedContentReport.png │ │ ├── assert-icon.outlinedContentStore.png │ │ ├── assert-icon.outlinedContentWellness.png │ │ ├── assert-icon.outlinedContentWifi.png │ │ ├── assert-icon.outlinedDefaultMockup.png │ │ ├── assert-icon.outlinedFinanceBag.png │ │ ├── assert-icon.outlinedFinanceBank.png │ │ ├── assert-icon.outlinedFinanceCards.png │ │ ├── assert-icon.outlinedFinanceCharging.png │ │ ├── assert-icon.outlinedFinanceCreditcard.png │ │ ├── assert-icon.outlinedFinanceDebit.png │ │ ├── assert-icon.outlinedFinanceDiscount.png │ │ ├── assert-icon.outlinedFinanceIdcard.png │ │ ├── assert-icon.outlinedFinanceLittlemachine.png │ │ ├── assert-icon.outlinedFinanceMoney.png │ │ ├── assert-icon.outlinedFinanceMoneypaper.png │ │ ├── assert-icon.outlinedFinancePaid.png │ │ ├── assert-icon.outlinedFinancePaymentlink.png │ │ ├── assert-icon.outlinedFinancePayreference.png │ │ ├── assert-icon.outlinedFinancePromotion.png │ │ ├── assert-icon.outlinedFinanceShoppingcart.png │ │ ├── assert-icon.outlinedFinanceShoppingcartproduct.png │ │ ├── assert-icon.outlinedFinanceSuitcase.png │ │ ├── assert-icon.outlinedFinanceTagdiscount.png │ │ ├── assert-icon.outlinedFinanceTransfermoney.png │ │ ├── assert-icon.outlinedMediaApp.png │ │ ├── assert-icon.outlinedMediaCamera.png │ │ ├── assert-icon.outlinedMediaMonitor.png │ │ ├── assert-icon.outlinedMediaPlay.png │ │ ├── assert-icon.outlinedNavigationArrowbottom.png │ │ ├── assert-icon.outlinedNavigationArrowleft.png │ │ ├── assert-icon.outlinedNavigationArrowright.png │ │ ├── assert-icon.outlinedNavigationArrowtop.png │ │ ├── assert-icon.outlinedNavigationClose.png │ │ ├── assert-icon.outlinedNavigationDirectionbottom.png │ │ ├── assert-icon.outlinedNavigationDirectionleft.png │ │ ├── assert-icon.outlinedNavigationDirectionright.png │ │ ├── assert-icon.outlinedNavigationDirectiontop.png │ │ ├── assert-icon.outlinedNavigationExit.png │ │ ├── assert-icon.outlinedNavigationGoback.png │ │ ├── assert-icon.outlinedNavigationGofront.png │ │ ├── assert-icon.outlinedNavigationHome.png │ │ ├── assert-icon.outlinedNavigationMenu.png │ │ ├── assert-icon.outlinedPlaceBus.png │ │ ├── assert-icon.outlinedPlaceForklift.png │ │ ├── assert-icon.outlinedPlaceGps.png │ │ ├── assert-icon.outlinedPlaceLocal.png │ │ ├── assert-icon.outlinedPlaceRocket.png │ │ ├── assert-icon.outlinedPlaceRunningtruck.png │ │ ├── assert-icon.outlinedPlaceTruck.png │ │ ├── assert-icon.outlinedPlaceWaze.png │ │ ├── assert-icon.outlinedProductAccessories.png │ │ ├── assert-icon.outlinedProductBagproduct.png │ │ ├── assert-icon.outlinedProductBeard.png │ │ ├── assert-icon.outlinedProductBrandsproduct.png │ │ ├── assert-icon.outlinedProductChildish.png │ │ ├── assert-icon.outlinedProductDailycare.png │ │ ├── assert-icon.outlinedProductEkos.png │ │ ├── assert-icon.outlinedProductErlenmeyer.png │ │ ├── assert-icon.outlinedProductFace.png │ │ ├── assert-icon.outlinedProductHair.png │ │ ├── assert-icon.outlinedProductMakeup.png │ │ ├── assert-icon.outlinedProductOutlet.png │ │ ├── assert-icon.outlinedProductPerfumery.png │ │ ├── assert-icon.outlinedProductPerfumeryfeminine.png │ │ ├── assert-icon.outlinedProductPerfumerymasculine.png │ │ ├── assert-icon.outlinedProductPerfumerytbs.png │ │ ├── assert-icon.outlinedProductPromotionproduct.png │ │ ├── assert-icon.outlinedProductScent.png │ │ ├── assert-icon.outlinedProductVegan.png │ │ ├── assert-icon.outlinedSocialAddcontact.png │ │ ├── assert-icon.outlinedSocialBirthday.png │ │ ├── assert-icon.outlinedSocialCollaborate.png │ │ ├── assert-icon.outlinedSocialContact.png │ │ ├── assert-icon.outlinedSocialDigitalconsultant.png │ │ ├── assert-icon.outlinedSocialGroupofpeople.png │ │ ├── assert-icon.outlinedSocialManagement.png │ │ ├── assert-icon.outlinedSocialMyprofile.png │ │ ├── assert-icon.outlinedSocialNetwork.png │ │ └── assert-icon.outlinedSocialPerson.png │ │ └── IconView+Snapshot+Tests │ │ ├── test_init_hasValidSnapshot.1.png │ │ └── test_tintColor_hasSnapshotWithCustomColor.1.png ├── Image │ ├── Image+Snapshot+Tests.swift │ └── __Snapshots__ │ │ └── Image+Snapshot+Tests │ │ ├── test_image_added_hasValidSnapshot.1.png │ │ ├── test_image_added_with_borderRadius_and_overlay_hasValidSnapshot.1.png │ │ ├── test_image_added_with_borderRadius_hasValidSnapshot.1.png │ │ ├── test_image_added_with_overlay_hasValidSnapshot.1.png │ │ ├── test_image_defaultImage_fallback_hasValidSnapshot.1.png │ │ ├── test_image_fade_bottom_hasValidSnapshot.1.png │ │ ├── test_image_fade_left_hasValidSnapshot.1.png │ │ ├── test_image_fade_right_hasValidSnapshot.1.png │ │ ├── test_image_fade_top_hasValidSnapshot.1.png │ │ ├── test_image_highlight_hasValidSnapshot.1.png │ │ ├── test_image_radius_circle_hasValidSnapshot.1.png │ │ ├── test_image_radius_medium_hasValidSnapshot.1.png │ │ ├── test_image_radius_none_hasValidSnapshot.1.png │ │ ├── test_image_standard_hasValidSnapshot.1.png │ │ ├── test_image_with_borderRadius_hasValidSnapshot.1.png │ │ ├── test_image_with_overlay_hasValidSnapshot.1.png │ │ ├── test_image_without_borderRadius_hasValidSnapshot.1.png │ │ └── test_image_without_overlay_hasValidSnapshot.1.png ├── Info.plist ├── ListItem │ ├── NatListItemCell+Snapshot+Tests.swift │ └── __Snapshots__ │ │ └── NatListItemCell+Snapshot+Tests │ │ ├── test_listItem_fullbleedDivider_hasValidSnapshot.1.png │ │ ├── test_listItem_insetDivider_hasValidSnapshot.1.png │ │ ├── test_listItem_middleDivider_hasValidSnapshot.1.png │ │ ├── test_listItem_selected_hasValidSnapshot.1.png │ │ └── test_listItem_unselected_hasValidSnapshot.1.png ├── Logo │ ├── Logo+Snapshot+Tests.swift │ └── __Snapshots__ │ │ └── Logo+Snapshot+Tests │ │ ├── test_colorHighlight_hasValidSnapshot.1.png │ │ ├── test_colorPrimary_hasValidSnapshot.1.png │ │ ├── test_colorSecondary_hasValidSnapshot.1.png │ │ ├── test_colorSurface_hasValidSnapshot.1.png │ │ ├── test_init_modelA_colorNeutral_sizeVeryHuge_hasValidSnapshot.1.png │ │ ├── test_modelB_hasValidSnapshot.1.png │ │ ├── test_sizeHugeXXX_hasValidSnapshot.1.png │ │ ├── test_sizeHugeXX_hasValidSnapshot.1.png │ │ ├── test_sizeHugeX_hasValidSnapshot.1.png │ │ ├── test_sizeHuge_hasValidSnapshot.1.png │ │ ├── test_sizeLargeXXX_hasValidSnapshot.1.png │ │ ├── test_sizeLargeXX_hasValidSnapshot.1.png │ │ ├── test_sizeLargeX_hasValidSnapshot.1.png │ │ ├── test_sizeLarge_hasValidSnapshot.1.png │ │ ├── test_sizeMediumX_hasValidSnapshot.1.png │ │ └── test_sizeMedium_hasValidSnapshot.1.png ├── NavigationDrawer │ ├── NavigationDrawer+Snapshot+Tests.swift │ ├── NavigationDrawerItemCell+Snapshot+Tests.swift │ ├── NavigationDrawerSubitemCell+Snapshot+Tests.swift │ └── __Snapshots__ │ │ ├── NavigationDrawer+Snapshot+Tests │ │ ├── test_cellForRowAt_whenItIsACollapsedItem_hasValidSnapshot.1.png │ │ ├── test_cellForRowAt_whenItIsAnExpandedItem_hasValidSnapshot.1.png │ │ ├── test_cellForRowAt_whenItIsAnItem_hasValidSnapshot.1.png │ │ ├── test_componentWithFooterView_hasValidSnapshot.1.png │ │ └── test_componentWithHeaderView_hasValidSnapshot.1.png │ │ ├── NavigationDrawerItemCell+Snapshot+Tests │ │ ├── test_disabledStateWithSubItems_hasDisabledSnapshotWithArrow.1.png │ │ ├── test_disabledStateWithoutSubItems_hasDisabledSnapshotWithoutArrow.1.png │ │ ├── test_largeText_textHasNoLineBreak.1.png │ │ ├── test_lowEmphasisStateWithSubItems_hasSelectedSnapshotWithArrow.1.png │ │ ├── test_lowEmphasisStateWithoutSubItems_hasSelectedSnapshotWithoutArrow.1.png │ │ ├── test_normalStateWithLeftImage_hasNormalSnapshot.1.png │ │ ├── test_normalStateWithRightImage_hasNormalSnapshot.1.png │ │ ├── test_normalStateWithSubItems_hasNormalSnapshotWithArrow.1.png │ │ ├── test_normalStateWithTitle_hasNormalSnapshot.1.png │ │ ├── test_normalStateWithoutSubItems_hasNormalSnapshotWithoutArrow.1.png │ │ ├── test_selectedStateWithSubItems_hasSelectedSnapshotWithArrow.1.png │ │ ├── test_selectedStateWithoutSubItems_hasSelectedSnapshotWithoutArrow.1.png │ │ ├── test_setDot_hasValidSnapshot.1.png │ │ ├── test_setIcon_hasSnapshotWithCustomIcon.1.png │ │ ├── test_setPulse_hasValidSnapshot.1.png │ │ ├── test_setTagTextWithSubItems_hasDisabledSnapshotWithTag.1.png │ │ ├── test_setTagTextWithSubItems_hasSelectedSnapshotWithTag.1.png │ │ ├── test_setTagTextWithSubItems_hasSnapshotWithTag.1.png │ │ ├── test_setTagTextWithSubItems_withLargeTitle_hasSnapshotWithTag.1.png │ │ ├── test_setTagText_hasSnapshotWithTag.1.png │ │ └── test_setTagText_withLargeTitle_hasSnapshotWithTag.1.png │ │ └── NavigationDrawerSubitemCell+Snapshot+Tests │ │ ├── test_disabledState_hasSnapshotWithAlphaText.1.png │ │ ├── test_normalState_hasNormalSnapshot.1.png │ │ └── test_selectedState_hasSnapshotWithHighlightedView.1.png ├── ProgressIndicator │ ├── ProgressIndicatorCircular+Snapshot+Tests.swift │ └── __Snapshots__ │ │ └── ProgressIndicatorCircular+Snapshot+Tests │ │ ├── test_progress_indicator_circular_hasValidSnapshot.1.png │ │ ├── test_progress_indicator_circular_hasValidSnapshot.1.txt │ │ ├── test_progress_indicator_circular_hasValidSnapshot.2.txt │ │ └── test_progress_indicator_circular_useBackgroundLayer_hasValidSnapshot.1.txt ├── Rating │ ├── NatRating+Counter+Snapshot+Tests.swift │ ├── NatRating+Input+Snapshot+Tests.swift │ ├── NatRating+ReadOnly+Snapshot+Tests.swift │ └── __Snapshots__ │ │ ├── NatRating+Counter+Snapshot+Tests │ │ ├── test_rating_counter_hasValidSnapshot.1.png │ │ ├── test_rating_counter_right_hasValidSnapshot.1.png │ │ ├── test_rating_counter_sizeSemiX_hasValidSnapshot.1.png │ │ ├── test_rating_counter_sizeSmall_hasValidSnapshot.1.png │ │ └── test_rating_counter_sizeStandard_hasValidSnapshot.1.png │ │ ├── NatRating+Input+Snapshot+Tests │ │ ├── test_rating_input_filled_Disabled_hasValidSnapshot.1.png │ │ ├── test_rating_input_filled_hasValidSnapshot.1.png │ │ ├── test_rating_input_hasValidSnapshot.1.png │ │ ├── test_rating_input_sizeMedium_hasValidSnapshot.1.png │ │ ├── test_rating_input_sizeSemiX_hasValidSnapshot.1.png │ │ └── test_rating_input_withHint_hasValidSnapshot.1.png │ │ └── NatRating+ReadOnly+Snapshot+Tests │ │ ├── test_rating_counter_filled_hasValidSnapshot.1.png │ │ ├── test_rating_counter_hasValidSnapshot.1.png │ │ ├── test_rating_counter_sizeSemiX_hasValidSnapshot.1.png │ │ ├── test_rating_counter_sizeSmall_hasValidSnapshot.1.png │ │ ├── test_rating_counter_sizeStandard_hasValidSnapshot.1.png │ │ ├── test_rating_readOnly_filled_hasValidSnapshot.1.png │ │ ├── test_rating_readOnly_hasValidSnapshot.1.png │ │ ├── test_rating_readOnly_sizeSemiX_hasValidSnapshot.1.png │ │ ├── test_rating_readOnly_sizeSmall_hasValidSnapshot.1.png │ │ └── test_rating_readOnly_sizeStandard_hasValidSnapshot.1.png ├── SelectionControl │ ├── SelectionControl+Checkbox+Snapshot+Tests.swift │ ├── SelectionControl+RadioButton+Snapshot+Tests.swift │ └── __Snapshots__ │ │ ├── SelectionControl+Checkbox+Snapshot+Tests │ │ ├── test_Selection_control_checkbox_disable_selected_with_text_hasValidSnapshot.1.png │ │ ├── test_Selection_control_checkbox_disable_selected_without_text_hasValidSnapshot.1.png │ │ ├── test_Selection_control_checkbox_disable_unselected_with_text_hasValidSnapshot.1.png │ │ ├── test_Selection_control_checkbox_disable_unselected_without_text_hasValidSnapshot.1.png │ │ ├── test_Selection_control_checkbox_enable_selected_with_text_hasValidSnapshot.1.png │ │ ├── test_Selection_control_checkbox_enable_selected_without_text_hasValidSnapshot.1.png │ │ ├── test_Selection_control_checkbox_enable_unselected_with_text_hasValidSnapshot.1.png │ │ ├── test_Selection_control_checkbox_enable_unselected_without_text_hasValidSnapshot.1.png │ │ └── test_Selection_control_checkbox_enable_without_text_hasValidSnapshot.1.png │ │ └── SelectionControl+RadioButton+Snapshot+Tests │ │ ├── test_Selection_control_checkbox_disable_selected_with_text_hasValidSnapshot.1.png │ │ ├── test_Selection_control_checkbox_disable_selected_without_text_hasValidSnapshot.1.png │ │ ├── test_Selection_control_checkbox_disable_unselected_with_text_hasValidSnapshot.1.png │ │ ├── test_Selection_control_checkbox_disable_unselected_without_text_hasValidSnapshot.1.png │ │ ├── test_Selection_control_checkbox_enable_selected_with_text_hasValidSnapshot.1.png │ │ ├── test_Selection_control_checkbox_enable_selected_without_text_hasValidSnapshot.1.png │ │ ├── test_Selection_control_checkbox_enable_unselected_with_text_hasValidSnapshot.1.png │ │ ├── test_Selection_control_checkbox_enable_unselected_without_text_hasValidSnapshot.1.png │ │ ├── test_Selection_control_radioButton_disable_selected_with_text_hasValidSnapshot.1.png │ │ ├── test_Selection_control_radioButton_disable_selected_without_text_hasValidSnapshot.1.png │ │ ├── test_Selection_control_radioButton_disable_unselected_with_text_hasValidSnapshot.1.png │ │ ├── test_Selection_control_radioButton_disable_unselected_without_text_hasValidSnapshot.1.png │ │ ├── test_Selection_control_radioButton_enable_selected_with_text_hasValidSnapshot.1.png │ │ ├── test_Selection_control_radioButton_enable_selected_without_text_hasValidSnapshot.1.png │ │ ├── test_Selection_control_radioButton_enable_unselected_with_text_hasValidSnapshot.1.png │ │ └── test_Selection_control_radioButton_enable_unselected_without_text_hasValidSnapshot.1.png ├── Shortcut │ ├── NatShortcut+Snapshot+Tests.swift │ └── __Snapshots__ │ │ └── NatShortcut+Snapshot+Tests │ │ ├── test_shortcut_style_contained_neutral_disabled_hasValidSnapshot.1.png │ │ ├── test_shortcut_style_contained_neutral_hasValidSnapshot.1.png │ │ ├── test_shortcut_style_contained_neutral_with_badge_hasValidSnapshot.1.png │ │ ├── test_shortcut_style_contained_neutral_with_ellipsis_hasValidSnapshot.1.png │ │ ├── test_shortcut_style_contained_neutral_with_lineBreak_hasValidSnapshot.1.png │ │ ├── test_shortcut_style_contained_primary_disabled_hasValidSnapshot.1.png │ │ ├── test_shortcut_style_contained_primary_hasValidSnapshot.1.png │ │ ├── test_shortcut_style_contained_primary_with_badge_hasValidSnapshot.1.png │ │ ├── test_shortcut_style_contained_primary_with_ellipsis_hasValidSnapshot.1.png │ │ ├── test_shortcut_style_contained_primary_with_lineBreak_hasValidSnapshot.1.png │ │ ├── test_shortcut_style_outlined_neutral_disabled_hasValidSnapshot.1.png │ │ ├── test_shortcut_style_outlined_neutral_hasValidSnapshot.1.png │ │ ├── test_shortcut_style_outlined_neutral_with_badge_hasValidSnapshot.1.png │ │ ├── test_shortcut_style_outlined_neutral_with_ellipsis_hasValidSnapshot.1.png │ │ ├── test_shortcut_style_outlined_neutral_with_lineBreak_hasValidSnapshot.1.png │ │ ├── test_shortcut_style_outlined_primary_disabled_hasValidSnapshot.1.png │ │ ├── test_shortcut_style_outlined_primary_hasValidSnapshot.1.png │ │ ├── test_shortcut_style_outlined_primary_with_badge_hasValidSnapshot.1.png │ │ ├── test_shortcut_style_outlined_primary_with_ellipsis_hasValidSnapshot.1.png │ │ └── test_shortcut_style_outlined_primary_with_lineBreak_hasValidSnapshot.1.png ├── Switch │ ├── NatSwitch+Snapshot+Tests.swift │ └── __Snapshots__ │ │ └── NatSwitch+Snapshot+Tests │ │ ├── test_Nat_Switch_disabled_is_off_hasValidSnapshot.1.png │ │ ├── test_Nat_Switch_disabled_is_on_hasValidSnapshot.1.png │ │ ├── test_Nat_Switch_focused_is_off_hasValidSnapshot.1.png │ │ ├── test_Nat_Switch_focused_is_on_hasValidSnapshot.1.png │ │ ├── test_Nat_Switch_normal_is_off_hasValidSnapshot.1.png │ │ └── test_Nat_Switch_normal_is_on_hasValidSnapshot.1.png ├── Tab │ ├── Tab+Snapshot+Tests.swift │ ├── TabItem+Snapshot+Tests.swift │ └── __Snapshots__ │ │ ├── Tab+Snapshot+Tests │ │ ├── test_InitWhenHas3TabsreturnsTabWith3TabItemViewsValidSnapshot.1.png │ │ ├── test_WhenPositionIsScrollableAndNoSetElevation.1.png │ │ ├── test_whenHas2TabsAndSelectedTabIs2_returnsTabWith2SelectedValidSnapshot.1.png │ │ ├── test_whenHas3TabsAndSelectedTabIs2_returnsTabWith2SelectedValidSnapshot.1.png │ │ ├── test_whenSetsPositionFixedAndNotSelectIndexValidSnapshot.1.png │ │ ├── test_whenSetsPositionScrollableAndNotSelectIndexValidSnapshot.1.png │ │ ├── test_whenSetsPositionScrollableAndSelected4tTabValidSnapshot.1.png │ │ └── test_whenSetsPositionScrollableAndSelectedFirstTabValidSnapshot.1.png │ │ └── TabItem+Snapshot+Tests │ │ ├── test_state_whenIsNormal_returnsNormalSnapshot.1.png │ │ └── test_state_whenIsSelected_returnsSelectedSnapshot.1.png ├── Tag │ ├── NatTag+Color+Snapshot+Tests.swift │ ├── NatTag+Snapshot+Tests.swift │ └── __Snapshots__ │ │ ├── NatTag+Color+Snapshot+Tests │ │ ├── test_tag_color_alert_hasValidSnapshot.1.png │ │ ├── test_tag_color_custom_hasValidSnapshot.1.png │ │ ├── test_tag_color_link_hasValidSnapshot.1.png │ │ ├── test_tag_color_primary_hasValidSnapshot.1.png │ │ ├── test_tag_color_secondary_hasValidSnapshot.1.png │ │ ├── test_tag_color_success_hasValidSnapshot.1.png │ │ └── test_tag_color_warning_hasValidSnapshot.1.png │ │ └── NatTag+Snapshot+Tests │ │ ├── test_tag_fixed_width_hasValidSnapshot.1.png │ │ ├── test_tag_size_small_hasValidSnapshot.1.png │ │ ├── test_tag_size_standard_hasValidSnapshot.1.png │ │ ├── test_tag_small_withIcon_hasValidSnapshot.1.png │ │ ├── test_tag_standard_withIcon_hasValidSnapshot.1.png │ │ ├── test_tag_style_default_alert_hasValidSnapshot.1.png │ │ ├── test_tag_style_left_alert_hasValidSnapshot.1.png │ │ └── test_tag_style_right_alert_hasValidSnapshot.1.png ├── TextField │ ├── Field+Snapshot+Tests.swift │ ├── TextField+Snapshot+Tests.swift │ └── __Snapshots__ │ │ ├── Field+Snapshot+Tests │ │ ├── test_boderWidth_whenSetBorderWidth_hasSnapshotWithBorderWidthGreater.1.png │ │ ├── test_borderColors_whenSetABorder_hasSnapshotWithCustomValue.1.png │ │ └── test_init_hasNormalSnapshot.1.png │ │ └── TextField+Snapshot+Tests │ │ ├── test_actionIcon_whenHasActionIcon_showsExpectedIconButtonSnapshot.1.png │ │ ├── test_actionIcon_whenRemovesActionIcon_hidesExpectedIconButtonSnapshot.1.png │ │ ├── test_password_whenVisibilityIconIsSet_expectedShowIconOutlinedActionVisibility.1.png │ │ ├── test_password_whenVisibilityIconIsSet_expectedShowIconOutlinedActionVisibilityOff.1.png │ │ ├── test_size_whenHasMediumSize_returnMediumSizeSnapshot.1.png │ │ ├── test_size_whenHasMediumXSize_returnMediumXSizeSnapshot.1.png │ │ ├── test_state_whenHasErrorAndLargeMessageWithSmallWidth_returnMultipleErrorLinesAndNotCutIconSnapshot.1.png │ │ ├── test_state_whenHasErrorAndLargeMessage_returnMultipleErrorLinesStateSnapshot.1.png │ │ ├── test_state_whenHasError_returnErrorStateSnapshot.1.png │ │ ├── test_state_whenHasFocus_returnActiveStateSnapshot.1.png │ │ ├── test_state_whenHasNoFeedback_returnNeutralStateSnapshot.1.png │ │ ├── test_state_whenHasNoFocus_returnEnableStateSnapshot.1.png │ │ ├── test_state_whenHasSuccessAndLargeMessageWithSmallWidth_returnMultipleSuccessLinesAndNotCutIconSnapshot.1.png │ │ ├── test_state_whenHasSuccessAndLargeMessage_returnMultipleSuccessLinesStateSnapshot.1.png │ │ ├── test_state_whenHasSuccess_returnSuccessStateSnapshot.1.png │ │ ├── test_state_whenIsDisabled_returnDisabledStateSnapshot.1.png │ │ ├── test_state_whenIsFilled_returnFilledStateSnapshot.1.png │ │ ├── test_state_whenIsReadOnly_returnReadOnlyStateSnapshot.1.png │ │ ├── test_text_whenTextIsSet_expectedTextFieldIsFilledSnapshot.1.png │ │ └── test_title_whenIsRequired_returnRequiredTitleSnapshot.1.png └── ValueText │ ├── ValueTextHighlight+Snapshot+Tests.swift │ └── __Snapshots__ │ └── ValueTextHighlight+Snapshot+Tests │ └── test_init_hasValidSnapshot.1.png ├── NewSampleApp └── GaYa-NewSample │ ├── GaYa-NewSample.xcodeproj │ └── project.pbxproj │ └── GaYa-NewSample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── Package.swift ├── Podfile ├── README.md ├── SampleApp ├── NatDS-SampleApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── NatDS-SampleApp.xcscheme └── Sources │ ├── AppDelegate.swift │ ├── ChooseBrand │ ├── ChooseBrandCell.swift │ ├── ChooseBrandHeader.swift │ └── ChooseBrandViewController.swift │ ├── CustomSplash │ ├── CustomSplashViewController+GradientBackgroundView.swift │ └── CustomSplashViewController.swift │ ├── Documentation │ ├── GaYaAvatar.md │ ├── GaYaButton.md │ ├── GaYaCheckbox.md │ ├── GaYaChip.md │ ├── GaYaChipFilter.md │ ├── GaYaGrowthPlan.md │ ├── GaYaRadioButton.md │ ├── GaYaTab.md │ ├── GaYaTag.md │ ├── alert.md │ ├── app-bar.md │ ├── avatar.md │ ├── badge.md │ ├── button.md │ ├── card.md │ ├── checkbox.md │ ├── chip.md │ ├── chipfilter.md │ ├── counter.md │ ├── dialog.md │ ├── divider.md │ ├── expansion-panel.md │ ├── icon-button.md │ ├── icons-map.txt │ ├── image.md │ ├── images │ │ ├── alert_1.png │ │ ├── alert_2.png │ │ ├── alert_3.png │ │ ├── alert_4.png │ │ ├── appbar_1.png │ │ ├── appbar_10.png │ │ ├── appbar_11.png │ │ ├── appbar_12.png │ │ ├── appbar_13.png │ │ ├── appbar_14.png │ │ ├── appbar_2.png │ │ ├── appbar_3.png │ │ ├── appbar_4.png │ │ ├── appbar_5.png │ │ ├── appbar_6.png │ │ ├── appbar_7.png │ │ ├── appbar_8.png │ │ ├── appbar_9.png │ │ ├── avatar.png │ │ ├── badge.png │ │ ├── button_icon.png │ │ ├── button_inline.png │ │ ├── button_size.png │ │ ├── button_status.png │ │ ├── button_theme.png │ │ ├── button_variants.png │ │ ├── card.png │ │ ├── checkbox.png │ │ ├── chip.png │ │ ├── chipfilter.png │ │ ├── counter.png │ │ ├── dialog_1.png │ │ ├── dialog_2.png │ │ ├── dialog_3.png │ │ ├── dialog_4.png │ │ ├── dialog_5.png │ │ ├── dialog_6.png │ │ ├── dialog_7.png │ │ ├── dialog_8.png │ │ ├── divider.png │ │ ├── expansionpanel.png │ │ ├── gayaavatar.png │ │ ├── gayaavatar_icon.png │ │ ├── gayaavatar_image.png │ │ ├── gayaavatar_label.png │ │ ├── gayaavatar_themes.png │ │ ├── gayabutton_disabled.png │ │ ├── gayabutton_filled.png │ │ ├── gayabutton_ghost.png │ │ ├── gayabutton_icons.png │ │ ├── gayabutton_outlined.png │ │ ├── gayabutton_sizes.png │ │ ├── gayabutton_tonal.png │ │ ├── gayacheckbox.png │ │ ├── gayachip_avatar.png │ │ ├── gayachip_colors.png │ │ ├── gayachip_disabled.png │ │ ├── gayachip_icons.png │ │ ├── gayachip_sizes.png │ │ ├── gayaradiobutton.png │ │ ├── gayatab.png │ │ ├── gayatag1.png │ │ ├── gayatag2.png │ │ ├── iconbutton.png │ │ ├── iconbutton_backgroundstyle.png │ │ ├── iconbutton_color.png │ │ ├── iconbutton_press.png │ │ ├── iconbutton_size.png │ │ ├── image1.png │ │ ├── image2.png │ │ ├── listitem.png │ │ ├── logo1.png │ │ ├── logo2.png │ │ ├── logo3.png │ │ ├── navigationdrawer1.png │ │ ├── navigationdrawer2.png │ │ ├── progressindicator.png │ │ ├── radiobutton.png │ │ ├── rating.png │ │ ├── select1.png │ │ ├── select2.png │ │ ├── shortcut.png │ │ ├── snackbar1.png │ │ ├── snackbar2.png │ │ ├── snackbar3.png │ │ ├── snackbar4.png │ │ ├── snackbar5.png │ │ ├── snackbar6.png │ │ ├── snackbar7.png │ │ ├── snackbar8.png │ │ ├── switch.png │ │ ├── tab.png │ │ ├── tag.png │ │ ├── textfield1.png │ │ ├── textfield2.png │ │ ├── textfield3.png │ │ └── valuetexthighlight.png │ ├── list-item.md │ ├── logo.md │ ├── navigation-drawer.md │ ├── progress-indicator.md │ ├── radiobutton.md │ ├── rating.md │ ├── select.md │ ├── shortcut.md │ ├── snackbar.md │ ├── switch.md │ ├── tab.md │ ├── tag.md │ ├── textfield.md │ └── value-text-highlight.md │ ├── MainDataSource.swift │ ├── MainViewController.swift │ ├── Sample │ ├── Components │ │ ├── Alert │ │ │ └── AlertViewController.swift │ │ ├── AppBar │ │ │ ├── AppBarDataSource.swift │ │ │ ├── AppBarDetailViewController.swift │ │ │ └── AppBarViewController.swift │ │ ├── Avatar │ │ │ └── AvatarItemViewController.swift │ │ ├── Badge │ │ │ ├── BadgeViewController.swift │ │ │ └── BadgeableView.swift │ │ ├── Bar │ │ │ └── AppSearchBarViewController.swift │ │ ├── Button │ │ │ └── ButtonsItemViewController.swift │ │ ├── Card │ │ │ └── CardViewController.swift │ │ ├── Checkbox │ │ │ └── CheckboxViewController.swift │ │ ├── Chip │ │ │ └── ChipViewController.swift │ │ ├── ChipFilter │ │ │ └── ChipFilterViewController.swift │ │ ├── ComponentsSection.swift │ │ ├── Counter │ │ │ └── CounterViewController.swift │ │ ├── Dialog │ │ │ └── DialogItemViewController.swift │ │ ├── Divider │ │ │ └── DividerViewController.swift │ │ ├── ExpansionPanel │ │ │ └── ExpansionPanelViewController.swift │ │ ├── Field │ │ │ └── TextFieldItemViewController.swift │ │ ├── GaYaAvatar │ │ │ └── GaYaAvatarItemViewController.swift │ │ ├── GaYaBadge │ │ │ └── GaYaBadgeViewController.swift │ │ ├── GaYaButton │ │ │ └── GaYaButtonViewController.swift │ │ ├── GaYaCheckbox │ │ │ └── GaYaCheckboxViewController.swift │ │ ├── GaYaChip │ │ │ └── GaYaChipViewController.swift │ │ ├── GaYaChipFilter │ │ │ └── GaYaChipFilterViewController.swift │ │ ├── GaYaCounter │ │ │ └── GaYaCounterViewController.swift │ │ ├── GaYaIconButton │ │ │ └── GaYaIconButtonViewController.swift │ │ ├── GaYaRadioButton │ │ │ └── GaYaRadioButtonViewController.swift │ │ ├── GaYaSelect │ │ │ └── GaYaSelectItemViewController.swift │ │ ├── GaYaTab │ │ │ └── GaYaTabViewController.swift │ │ ├── GaYaTag │ │ │ └── GaYaTagViewController.swift │ │ ├── GaYaTextField │ │ │ └── GaYaTextFieldItemViewController.swift │ │ ├── IconButton │ │ │ └── IconButtonItemViewController.swift │ │ ├── Iconography │ │ │ ├── Helper │ │ │ │ └── IconCollectionViewCell.swift │ │ │ └── IconographyItemViewController.swift │ │ ├── Image │ │ │ ├── ImageCell.swift │ │ │ └── ImageViewController.swift │ │ ├── ListItem │ │ │ ├── ListItemViewController.swift │ │ │ └── SampleCustomCell.swift │ │ ├── LogoItemViewController.swift │ │ ├── NavigationDrawer │ │ │ └── NavigationDrawerItemViewController.swift │ │ ├── ProgressIndicator │ │ │ └── ProgressIndicatorItemViewController.swift │ │ ├── RadioButton │ │ │ └── RadioButtonViewController.swift │ │ ├── Rating │ │ │ └── RatingItemViewController.swift │ │ ├── Select │ │ │ └── NatSelectController.swift │ │ ├── Shortcut │ │ │ └── ShortcutItemViewController.swift │ │ ├── Switch │ │ │ └── SwitchViewController.swift │ │ ├── Tab │ │ │ └── TabItemViewController.swift │ │ ├── Tag │ │ │ └── TagViewController.swift │ │ └── ValueText │ │ │ └── ValueTextHighlightItemViewController.swift │ ├── Design │ │ ├── BorderRadius │ │ │ ├── BorderRadiusViewController.swift │ │ │ └── Cells │ │ │ │ └── BorderRadiusCell.swift │ │ ├── Colors │ │ │ ├── Cells │ │ │ │ ├── ColorsCell.swift │ │ │ │ └── ColorsHeaderView.swift │ │ │ └── ColorsViewController.swift │ │ ├── DesignSection.swift │ │ ├── Elevation │ │ │ ├── Cells │ │ │ │ └── ElevationCell.swift │ │ │ └── ElevationViewController.swift │ │ ├── Opacity │ │ │ ├── Cells │ │ │ │ └── OpacityCell.swift │ │ │ └── OpacityViewController.swift │ │ ├── Size │ │ │ ├── Cells │ │ │ │ └── SizeCell.swift │ │ │ └── SizeViewController.swift │ │ ├── Spacing │ │ │ ├── Cells │ │ │ │ └── SpacingCell.swift │ │ │ └── SpacingViewController.swift │ │ └── Typography │ │ │ ├── Cells │ │ │ └── TypographyCell.swift │ │ │ └── TypographyViewController.swift │ ├── SampleItem.swift │ └── SampleSection.swift │ ├── Supporting Files │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x-1.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x-1.png │ │ │ ├── Icon-App-29x29@2x-2.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x-1.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── ItunesArtwork@2x.png │ │ ├── Contents.json │ │ ├── ImageAreaLimit.imageset │ │ │ ├── Contents.json │ │ │ └── ImageAreaLimit.pdf │ │ ├── ImageAreaPlaceholder.imageset │ │ │ ├── Contents.json │ │ │ └── ImageAreaPlaceholder.pdf │ │ ├── NATDSBackground.imageset │ │ │ ├── Contents.json │ │ │ └── cover-natds.pdf │ │ ├── SplashLogo.imageset │ │ │ ├── Contents.json │ │ │ └── NaturaCo.pdf │ │ └── brand_selection │ │ │ ├── Contents.json │ │ │ ├── aesop.imageset │ │ │ ├── Contents.json │ │ │ └── brand_selection_aesop.pdf │ │ │ ├── avon.imageset │ │ │ ├── Contents.json │ │ │ └── brand_selection_avon.pdf │ │ │ ├── avonv2.imageset │ │ │ ├── Contents.json │ │ │ └── brand_selection_avon.pdf │ │ │ ├── avonv3.imageset │ │ │ ├── Contents.json │ │ │ └── brand_selection_avon.pdf │ │ │ ├── casa_e_estilo.imageset │ │ │ ├── Casa&Estilo_Official@2x.png │ │ │ └── Contents.json │ │ │ ├── casa_e_estilov2.imageset │ │ │ ├── Casa&Estilo_Official@2x.png │ │ │ └── Contents.json │ │ │ ├── consultoria_de_beleza.imageset │ │ │ ├── Contents.json │ │ │ └── consultoria_de_beleza.png │ │ │ ├── consultoria_de_belezav2.imageset │ │ │ ├── Contents.json │ │ │ └── consultoria_de_belezav2.pdf │ │ │ ├── forca_de_vendas.imageset │ │ │ ├── Contents.json │ │ │ └── forca_de_vendas.pdf │ │ │ ├── forca_de_vendasv2.imageset │ │ │ ├── Contents.json │ │ │ └── forca_de_vendas.pdf │ │ │ ├── natura&co.imageset │ │ │ ├── Contents.json │ │ │ └── brand_selection_natura&co-1.pdf │ │ │ ├── natura.imageset │ │ │ ├── Contents.json │ │ │ └── brand_selection_natura.pdf │ │ │ ├── naturav2.imageset │ │ │ ├── Contents.json │ │ │ └── brand_selection_natura.pdf │ │ │ ├── naturav3.imageset │ │ │ ├── Contents.json │ │ │ └── brand_selection_natura.pdf │ │ │ └── the_body_shop.imageset │ │ │ ├── Contents.json │ │ │ └── brand_selection_logo_the_body_shop.pdf │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ └── ThemeManager │ ├── BrandThemes.swift │ └── ThemeManager.swift ├── Sources ├── Core │ ├── Animations │ │ └── PulseLayer.swift │ ├── DataSource │ │ └── ConfigurationStorage.swift │ ├── DomainFunctions │ │ ├── GetComponentFromTheme.swift │ │ ├── GetOrCreatedCachedColor.swift │ │ ├── GetThemeValidated.swift │ │ ├── GetTokensFromTheme.swift │ │ ├── GetUIColorFromComponent.swift │ │ └── GetUIColorFromTokens.swift │ ├── Errors │ │ └── DesignSystemFatalError.swift │ ├── Extensions │ │ ├── NSMutableAttributedString+Builder.swift │ │ ├── String+Attributed.swift │ │ ├── String+Icon.swift │ │ ├── String+Initials.swift │ │ ├── UIColor+Hex.swift │ │ ├── UIFont+Icon.swift │ │ ├── UIImage+UIColor.swift │ │ ├── UIImage+URL.swift │ │ ├── UIImageView+Clickable.swift │ │ ├── UIImageView+UIColor.swift │ │ ├── UIImageView+URL.swift │ │ └── UIView │ │ │ ├── UIView+CenterBounds.swift │ │ │ └── UIView+Frame.swift │ ├── Helpers │ │ ├── AssetsHelper.swift │ │ ├── AssetsPath.swift │ │ ├── Fonts │ │ │ └── Style │ │ │ │ ├── CustomFontStyle.swift │ │ │ │ ├── FontLoader.swift │ │ │ │ ├── FontStyle.swift │ │ │ │ └── IconFontStyle.swift │ │ └── ReusableView.swift │ ├── IconSource │ │ └── IconsSource.swift │ ├── NotificationCenter │ │ ├── EventNames │ │ │ └── Notification+Name+ThemeHasChanged.swift │ │ ├── NotificationCenterObservable.swift │ │ └── NotificationCenterPostable.swift │ ├── Theme │ │ └── BrandsThemes │ │ │ ├── Avon │ │ │ ├── AvonDarkTheme.swift │ │ │ └── AvonLightTheme.swift │ │ │ ├── AvonV2 │ │ │ ├── Avonv2DarkTheme.swift │ │ │ └── Avonv2LightTheme.swift │ │ │ ├── AvonV3 │ │ │ ├── Avonv3DarkTheme.swift │ │ │ └── Avonv3LightTheme.swift │ │ │ ├── CasaEestilo │ │ │ ├── CasaEestiloDarkTheme.swift │ │ │ └── CasaEestiloLightTheme.swift │ │ │ ├── CasaEestiloV2 │ │ │ ├── CasaEestilov2DarkTheme.swift │ │ │ └── CasaEestilov2LightTheme.swift │ │ │ ├── ConsultoriaDeBeleza │ │ │ ├── ConsultoriaDeBelezaDarkTheme.swift │ │ │ └── ConsultoriaDeBelezaLightTheme.swift │ │ │ ├── ConsultoriaDeBelezaV2 │ │ │ ├── ConsultoriaDeBelezav2DarkTheme.swift │ │ │ └── ConsultoriaDeBelezav2LightTheme.swift │ │ │ ├── ForcaDeVendas │ │ │ ├── ForcaDeVendasDarkTheme.swift │ │ │ └── ForcaDeVendasLightTheme.swift │ │ │ ├── ForcaDeVendasV2 │ │ │ ├── ForcaDeVendasv2DarkTheme.swift │ │ │ └── ForcaDeVendasv2LightTheme.swift │ │ │ ├── Natura │ │ │ ├── NaturaDarkTheme.swift │ │ │ └── NaturaLightTheme.swift │ │ │ ├── NaturaV2 │ │ │ ├── Naturav2DarkTheme.swift │ │ │ └── Naturav2LightTheme.swift │ │ │ ├── NaturaV3 │ │ │ ├── Naturav3DarkTheme.swift │ │ │ └── Naturav3LightTheme.swift │ │ │ ├── TheBodyShop │ │ │ ├── TheBodyShopDarkTheme.swift │ │ │ └── TheBodyShopLightTheme.swift │ │ │ └── ThemeProtocol.swift │ ├── ViewStyling │ │ ├── Button │ │ │ ├── ButtonContainedStyle.swift │ │ │ ├── ButtonOutlineStyle.swift │ │ │ ├── ButtonStyle.swift │ │ │ ├── ButtonTextStyle.swift │ │ │ ├── GaYaButtonFilledStyle.swift │ │ │ ├── GaYaButtonGhostStyle.swift │ │ │ ├── GaYaButtonOutlineStyle.swift │ │ │ ├── GaYaButtonStyle.swift │ │ │ └── GaYaButtonTonalStyle.swift │ │ ├── Dialog │ │ │ ├── DialogBodyView.swift │ │ │ ├── DialogFooterView.swift │ │ │ ├── DialogHeaderView.swift │ │ │ └── DialogStyle.swift │ │ ├── IconButton │ │ │ ├── GaYaIconButtonFilledStyle.swift │ │ │ ├── GaYaIconButtonGhostStyle.swift │ │ │ ├── GaYaIconButtonOutlinedStyle.swift │ │ │ ├── GaYaIconButtonStyle.swift │ │ │ ├── GaYaIconButtonTonalStyle.swift │ │ │ └── IconButtonStandardStyle.swift │ │ ├── Shortcut │ │ │ ├── ShortcutContainedStyle.swift │ │ │ └── ShortcutOutlinedStyle.swift │ │ └── ViewStyle.swift │ └── Wrappers │ │ └── ViewAnimatingWrapper.swift ├── NatDS │ └── Resources │ │ ├── Fonts │ │ ├── Aesop │ │ │ ├── SuisseIntl-Regular.ttf │ │ │ └── ZapfHumanist601BT-Roman.ttf │ │ ├── Avon │ │ │ ├── Montserrat-Bold.ttf │ │ │ ├── Montserrat-Regular.ttf │ │ │ └── Montserrat-SemiBold.ttf │ │ ├── TheBodyShop │ │ │ ├── DrukCy-Bold.ttf │ │ │ ├── Recoleta-SemiBold.ttf │ │ │ ├── WorkSans-Bold.ttf │ │ │ └── WorkSans-Regular.ttf │ │ └── natds-icons-ios.ttf │ │ └── Images.xcassets │ │ ├── Contents.json │ │ ├── IconSemiFilledActionRating.imageset │ │ ├── Contents.json │ │ └── IconSemiFilledActionRating.pdf │ │ ├── Icons │ │ ├── Contents.json │ │ ├── IconFilledActionRating.imageset │ │ │ ├── Contents.json │ │ │ └── IconFilledActionRating.pdf │ │ ├── IconOutlinedActionAdd.imageset │ │ │ ├── Contents.json │ │ │ └── IconOutlinedActionAdd.pdf │ │ ├── IconOutlinedActionCancel.imageset │ │ │ ├── Contents.json │ │ │ └── Icon _ Outlined _ Action _ Cancel.pdf │ │ ├── IconOutlinedActionCheck.imageset │ │ │ ├── Contents.json │ │ │ └── IconOutlinedActionCheck.pdf │ │ ├── IconOutlinedActionRating.imageset │ │ │ ├── Contents.json │ │ │ └── IconOutlinedActionRating.pdf │ │ ├── IconOutlinedActionSubtract.imageset │ │ │ ├── Contents.json │ │ │ └── IconOutlinedActionSubtract.pdf │ │ ├── IconOutlinedActionVisibility.imageset │ │ │ ├── Contents.json │ │ │ └── IconOutlinedActionVisibility.pdf │ │ ├── IconOutlinedActionVisibilityOff.imageset │ │ │ ├── Contents.json │ │ │ └── IconOutlinedActionVisibilityOff.pdf │ │ ├── IconOutlinedDefaultMockup.imageset │ │ │ ├── Contents.json │ │ │ └── IconOutlinedDefaultMockup.pdf │ │ ├── IconOutlinedDefaultMockupBackground.imageset │ │ │ ├── Contents.json │ │ │ └── IconOutlinedDefaultMockupBackground.pdf │ │ ├── IconOutlinedNavigationArrowBottom.imageset │ │ │ ├── Contents.json │ │ │ └── IconOutlinedNavigationArrowBottom.pdf │ │ ├── IconOutlinedNavigationArrowBottomTemplate.imageset │ │ │ ├── Contents.json │ │ │ └── IconOutlinedNavigationArrowBottom.pdf │ │ ├── IconOutlinedNavigationArrowTop.imageset │ │ │ ├── Contents.json │ │ │ └── IconOutlinedNavigationArrowTop.pdf │ │ ├── IconOutlinedProductEmptyBackground.imageset │ │ │ ├── Contents.json │ │ │ └── IconOutlinedProductEmptyBackground.pdf │ │ └── IconOutlinedSocialPerson.imageset │ │ │ ├── Contents.json │ │ │ └── IconOutlinedSocialPerson.pdf │ │ ├── Logo │ │ ├── Contents.json │ │ ├── aesop-a-custom.imageset │ │ │ ├── Contents.json │ │ │ └── aesop-a-custom.pdf │ │ ├── aesop-a-official-dark.imageset │ │ │ ├── Contents.json │ │ │ └── aesop-a-official-dark.pdf │ │ ├── aesop-a-official.imageset │ │ │ ├── Contents.json │ │ │ └── aesop-a-official.pdf │ │ ├── avon-a-custom.imageset │ │ │ ├── Contents.json │ │ │ └── avon-a-custom.pdf │ │ ├── avon-a-official-dark.imageset │ │ │ ├── Contents.json │ │ │ └── avon-a-official-dark.pdf │ │ ├── avon-a-official.imageset │ │ │ ├── Contents.json │ │ │ └── avon-a-official.pdf │ │ ├── avonv2-a-custom.imageset │ │ │ ├── Contents.json │ │ │ └── avon-a-official.png │ │ ├── avonv2-a-official-dark.imageset │ │ │ ├── Contents.json │ │ │ └── avon-a-official-dark.png │ │ ├── avonv2-a-official.imageset │ │ │ ├── Contents.json │ │ │ └── avon-a-official.png │ │ ├── avonv2-b-custom.imageset │ │ │ ├── Contents.json │ │ │ └── avon-b-official-dark.png │ │ ├── avonv2-b-official-dark.imageset │ │ │ ├── Contents.json │ │ │ └── avon-b-official-dark.png │ │ ├── avonv2-b-official.imageset │ │ │ ├── Contents.json │ │ │ └── avon-b-official.png │ │ ├── casaeestilo-a-custom.imageset │ │ │ ├── Casa&Estilo_Official.png │ │ │ └── Contents.json │ │ ├── casaeestilo-a-official-dark.imageset │ │ │ ├── Casa&Estilo_Official.png │ │ │ └── Contents.json │ │ ├── casaeestilo-a-official.imageset │ │ │ ├── Casa&Estilo_Official.png │ │ │ └── Contents.json │ │ ├── casaeestilov2-a-custom.imageset │ │ │ ├── Casa&Estilo_Official.png │ │ │ └── Contents.json │ │ ├── casaeestilov2-a-official-dark.imageset │ │ │ ├── Casa&Estilo_Official.png │ │ │ └── Contents.json │ │ ├── casaeestilov2-a-official.imageset │ │ │ ├── Casa&Estilo_Official.png │ │ │ └── Contents.json │ │ ├── consultoriadebeleza-a-custom.imageset │ │ │ ├── Contents.json │ │ │ └── consultoriadebeleza-a-custom.pdf │ │ ├── consultoriadebeleza-a-official-dark.imageset │ │ │ ├── Contents.json │ │ │ └── consultoriadebeleza-a-official-dark.pdf │ │ ├── consultoriadebeleza-a-official.imageset │ │ │ ├── Contents.json │ │ │ └── consultoriadebeleza-a-official.pdf │ │ ├── consultoriadebeleza-b-custom.imageset │ │ │ ├── Contents.json │ │ │ └── consultoriadebeleza-b-custom.pdf │ │ ├── consultoriadebeleza-b-official-dark.imageset │ │ │ ├── Contents.json │ │ │ └── consultoriadebeleza-b-official-dark.pdf │ │ ├── consultoriadebeleza-b-official.imageset │ │ │ ├── Contents.json │ │ │ └── consultoriadebeleza-b-official.pdf │ │ ├── consultoriadebelezav2-a-custom-es.imageset │ │ │ ├── Contents.json │ │ │ └── consultoriadebeleza-v2-a-custom-es.pdf │ │ ├── consultoriadebelezav2-a-custom-pt-br.imageset │ │ │ ├── Contents.json │ │ │ └── consultoriadebeleza-v2-a-custom-pt-br.pdf │ │ ├── consultoriadebelezav2-a-official-dark-es.imageset │ │ │ ├── Contents.json │ │ │ └── consultoriadebeleza-v2-a-official-dark-es.pdf │ │ ├── consultoriadebelezav2-a-official-dark-pt-br.imageset │ │ │ ├── Contents.json │ │ │ └── consultoriadebeleza-v2-a-official-dark-pt-br.pdf │ │ ├── consultoriadebelezav2-a-official-es.imageset │ │ │ ├── Contents.json │ │ │ └── consultoriadebeleza-v2-a-official-es.pdf │ │ ├── consultoriadebelezav2-a-official-pt-br.imageset │ │ │ ├── Contents.json │ │ │ └── consultoriadebeleza-v2-a-official-pt-br.pdf │ │ ├── consultoriadebelezav2-b-custom-es.imageset │ │ │ ├── Contents.json │ │ │ └── consultoriadebeleza-v2-b-custom-es.pdf │ │ ├── consultoriadebelezav2-b-custom-pt-br.imageset │ │ │ ├── Contents.json │ │ │ └── consultoriadebeleza-v2-b-custom-pt-br.pdf │ │ ├── consultoriadebelezav2-b-official-dark-es.imageset │ │ │ ├── Contents.json │ │ │ └── consultoriadebeleza-v2-b-official-dark-es.pdf │ │ ├── consultoriadebelezav2-b-official-dark-pt-br.imageset │ │ │ ├── Contents.json │ │ │ └── consultoriadebeleza-v2-b-official-dark-pt-br.pdf │ │ ├── consultoriadebelezav2-b-official-es.imageset │ │ │ ├── Contents.json │ │ │ └── consultoriadebeleza-v2-b-official-es.pdf │ │ ├── consultoriadebelezav2-b-official-pt-br.imageset │ │ │ ├── Contents.json │ │ │ └── consultoriadebeleza-v2-b-official-pt-br.pdf │ │ ├── forcadevendas-a-custom.imageset │ │ │ ├── Contents.json │ │ │ └── forcadevendas-a-custom.pdf │ │ ├── forcadevendas-a-official-dark.imageset │ │ │ ├── Contents.json │ │ │ └── forcadevendas-a-official-dark.pdf │ │ ├── forcadevendas-a-official.imageset │ │ │ ├── Contents.json │ │ │ └── forcadevendas-a-official.pdf │ │ ├── forcadevendas-b-custom.imageset │ │ │ ├── Contents.json │ │ │ └── forcadevendas-b-custom.pdf │ │ ├── forcadevendas-b-official-dark.imageset │ │ │ ├── Contents.json │ │ │ └── forcadevendas-b-official-dark.pdf │ │ ├── forcadevendas-b-official.imageset │ │ │ ├── Contents.json │ │ │ └── forcadevendas-b-official.pdf │ │ ├── forcadevendasv2-a-custom-es.imageset │ │ │ ├── Contents.json │ │ │ └── forcadevendasv2-a-custom-es.pdf │ │ ├── forcadevendasv2-a-custom-pt-br.imageset │ │ │ ├── Contents.json │ │ │ └── forcadevendasv2-a-custom-pt-br.pdf │ │ ├── forcadevendasv2-a-official-dark-es.imageset │ │ │ ├── Contents.json │ │ │ └── forcadevendasv2-a-official-dark-es.pdf │ │ ├── forcadevendasv2-a-official-dark-pt-br.imageset │ │ │ ├── Contents.json │ │ │ └── forcadevendasv2-a-official-dark-pt-br.pdf │ │ ├── forcadevendasv2-a-official-es.imageset │ │ │ ├── Contents.json │ │ │ └── forcadevendasv2-a-official-es.pdf │ │ ├── forcadevendasv2-a-official-pt-br.imageset │ │ │ ├── Contents.json │ │ │ └── forcadevendasv2-a-official-pt-br.pdf │ │ ├── forcadevendasv2-b-custom-es.imageset │ │ │ ├── Contents.json │ │ │ └── forcadevendasv2-b-custom-es.pdf │ │ ├── forcadevendasv2-b-custom-pt-br.imageset │ │ │ ├── Contents.json │ │ │ └── forcadevendasv2-b-custom-pt-br.pdf │ │ ├── forcadevendasv2-b-official-dark-es.imageset │ │ │ ├── Contents.json │ │ │ └── forcadevendasv2-b-official-dark-es.pdf │ │ ├── forcadevendasv2-b-official-dark-pt-br.imageset │ │ │ ├── Contents.json │ │ │ └── forcadevendasv2-b-official-dark-pt-br.pdf │ │ ├── forcadevendasv2-b-official-es.imageset │ │ │ ├── Contents.json │ │ │ └── forcadevendasv2-b-official-es.pdf │ │ ├── forcadevendasv2-b-official-pt-br.imageset │ │ │ ├── Contents.json │ │ │ └── forcadevendasv2-b-official-pt-br.pdf │ │ ├── natura-a-custom.imageset │ │ │ ├── Contents.json │ │ │ └── natura-a-custom.pdf │ │ ├── natura-a-official-dark.imageset │ │ │ ├── Contents.json │ │ │ └── natura-a-official-dark.pdf │ │ ├── natura-a-official.imageset │ │ │ ├── Contents.json │ │ │ └── natura-a-official.pdf │ │ ├── natura-b-custom.imageset │ │ │ ├── Contents.json │ │ │ └── natura-b-custom.pdf │ │ ├── natura-b-official-dark.imageset │ │ │ ├── Contents.json │ │ │ └── natura-b-official-dark.pdf │ │ ├── natura-b-official.imageset │ │ │ ├── Contents.json │ │ │ └── natura-b-official.pdf │ │ ├── naturav2-a-custom.imageset │ │ │ ├── Contents.json │ │ │ └── naturav2-a-custom.pdf │ │ ├── naturav2-a-official-dark.imageset │ │ │ ├── Contents.json │ │ │ └── naturav2-a-official-dark.pdf │ │ ├── naturav2-a-official.imageset │ │ │ ├── Contents.json │ │ │ └── naturav2-a-official.pdf │ │ ├── naturav2-b-custom.imageset │ │ │ ├── Contents.json │ │ │ └── naturav2-b-custom.pdf │ │ ├── naturav2-b-official-dark.imageset │ │ │ ├── Contents.json │ │ │ └── naturav2-b-official-dark.pdf │ │ ├── naturav2-b-official.imageset │ │ │ ├── Contents.json │ │ │ └── naturav2-b-official.pdf │ │ ├── thebodyshop-a-custom.imageset │ │ │ ├── Contents.json │ │ │ └── thebodyshop-a-custom.pdf │ │ ├── thebodyshop-a-official-dark.imageset │ │ │ ├── Contents.json │ │ │ └── thebodyshop-a-official-dark.pdf │ │ ├── thebodyshop-a-official.imageset │ │ │ ├── Contents.json │ │ │ └── thebodyshop-a-official.pdf │ │ ├── thebodyshop-b-custom.imageset │ │ │ ├── Contents.json │ │ │ └── thebodyshop-b-custom.pdf │ │ ├── thebodyshop-b-official-dark.imageset │ │ │ ├── Contents.json │ │ │ └── thebodyshop-b-official-dark.pdf │ │ └── thebodyshop-b-official.imageset │ │ │ ├── Contents.json │ │ │ └── thebodyshop-b-official.pdf │ │ ├── filled-action-add.imageset │ │ ├── Contents.json │ │ └── filled-action-add.pdf │ │ ├── filled-action-addproduct.imageset │ │ ├── Contents.json │ │ └── filled-action-addproduct.pdf │ │ ├── filled-action-cancel.imageset │ │ ├── Contents.json │ │ └── filled-action-cancel.pdf │ │ ├── filled-action-check.imageset │ │ ├── Contents.json │ │ └── filled-action-check.pdf │ │ ├── filled-action-clock.imageset │ │ ├── Contents.json │ │ └── filled-action-clock.pdf │ │ ├── filled-action-delete.imageset │ │ ├── Contents.json │ │ └── filled-action-delete.pdf │ │ ├── filled-action-dislike.imageset │ │ ├── Contents.json │ │ └── filled-action-dislike.pdf │ │ ├── filled-action-filepdf.imageset │ │ ├── Contents.json │ │ └── filled-action-filepdf.pdf │ │ ├── filled-action-half-rating.imageset │ │ ├── Contents.json │ │ └── filled-action-half-rating.pdf │ │ ├── filled-action-halfrating.imageset │ │ ├── Contents.json │ │ └── filled-action-halfrating.pdf │ │ ├── filled-action-increase.imageset │ │ ├── Contents.json │ │ └── filled-action-increase.pdf │ │ ├── filled-action-like.imageset │ │ ├── Contents.json │ │ └── filled-action-like.pdf │ │ ├── filled-action-love.imageset │ │ ├── Contents.json │ │ └── filled-action-love.pdf │ │ ├── filled-action-newrequest.imageset │ │ ├── Contents.json │ │ └── filled-action-newrequest.pdf │ │ ├── filled-action-opacity.imageset │ │ ├── Contents.json │ │ └── filled-action-opacity.pdf │ │ ├── filled-action-privacy.imageset │ │ ├── Contents.json │ │ └── filled-action-privacy.pdf │ │ ├── filled-action-rating.imageset │ │ ├── Contents.json │ │ └── filled-action-rating.pdf │ │ ├── filled-action-register.imageset │ │ ├── Contents.json │ │ └── filled-action-register.pdf │ │ ├── filled-action-request.imageset │ │ ├── Contents.json │ │ └── filled-action-request.pdf │ │ ├── filled-action-subtract.imageset │ │ ├── Contents.json │ │ └── filled-action-subtract.pdf │ │ ├── filled-action-transparent.imageset │ │ ├── Contents.json │ │ └── filled-action-transparent.pdf │ │ ├── filled-action-zoomin.imageset │ │ ├── Contents.json │ │ └── filled-action-zoomin.pdf │ │ ├── filled-action-zoomout.imageset │ │ ├── Contents.json │ │ └── filled-action-zoomout.pdf │ │ ├── filled-alert-cancel.imageset │ │ ├── Contents.json │ │ └── filled-alert-cancel.pdf │ │ ├── filled-alert-check.imageset │ │ ├── Contents.json │ │ └── filled-alert-check.pdf │ │ ├── filled-alert-empty.imageset │ │ ├── Contents.json │ │ └── filled-alert-empty.pdf │ │ ├── filled-alert-indeterminate.imageset │ │ ├── Contents.json │ │ └── filled-alert-indeterminate.pdf │ │ ├── filled-alert-info.imageset │ │ ├── Contents.json │ │ └── filled-alert-info.pdf │ │ ├── filled-alert-notification.imageset │ │ ├── Contents.json │ │ └── filled-alert-notification.pdf │ │ ├── filled-alert-notificationbadge.imageset │ │ ├── Contents.json │ │ └── filled-alert-notificationbadge.pdf │ │ ├── filled-alert-notificationunavailable.imageset │ │ ├── Contents.json │ │ └── filled-alert-notificationunavailable.pdf │ │ ├── filled-alert-warning.imageset │ │ ├── Contents.json │ │ └── filled-alert-warning.pdf │ │ ├── filled-brand-avonshorthand.imageset │ │ ├── Contents.json │ │ └── filled-brand-avonshorthand.pdf │ │ ├── filled-brand-facebook.imageset │ │ ├── Contents.json │ │ └── filled-brand-facebook.pdf │ │ ├── filled-brand-google.imageset │ │ ├── Contents.json │ │ └── filled-brand-google.pdf │ │ ├── filled-brand-instagram.imageset │ │ ├── Contents.json │ │ └── filled-brand-instagram.pdf │ │ ├── filled-brand-linkedin.imageset │ │ ├── Contents.json │ │ └── filled-brand-linkedin.pdf │ │ ├── filled-brand-messenger.imageset │ │ ├── Contents.json │ │ └── filled-brand-messenger.pdf │ │ ├── filled-brand-naturarosacea.imageset │ │ ├── Contents.json │ │ └── filled-brand-naturarosacea.pdf │ │ ├── filled-brand-pinterest.imageset │ │ ├── Contents.json │ │ └── filled-brand-pinterest.pdf │ │ ├── filled-brand-spotify.imageset │ │ ├── Contents.json │ │ └── filled-brand-spotify.pdf │ │ ├── filled-brand-thebodyshop.imageset │ │ ├── Contents.json │ │ └── filled-brand-thebodyshop.pdf │ │ ├── filled-brand-tiktok.imageset │ │ ├── Contents.json │ │ └── filled-brand-tiktok.pdf │ │ ├── filled-brand-twitter.imageset │ │ ├── Contents.json │ │ └── filled-brand-twitter.pdf │ │ ├── filled-brand-whatsapp.imageset │ │ ├── Contents.json │ │ └── filled-brand-whatsapp.pdf │ │ ├── filled-brand-x.imageset │ │ ├── Contents.json │ │ └── filled-brand-x.pdf │ │ ├── filled-brand-youtube.imageset │ │ ├── Contents.json │ │ └── filled-brand-youtube.pdf │ │ ├── filled-communication-digital-service.imageset │ │ ├── Contents.json │ │ └── filled-communication-digital-service.pdf │ │ ├── filled-communication-noconnection.imageset │ │ ├── Contents.json │ │ └── filled-communication-noconnection.pdf │ │ ├── filled-content-bathtub.imageset │ │ ├── Contents.json │ │ └── filled-content-bathtub.pdf │ │ ├── filled-content-carbondioxide.imageset │ │ ├── Contents.json │ │ └── filled-content-carbondioxide.pdf │ │ ├── filled-content-channel.imageset │ │ ├── Contents.json │ │ └── filled-content-channel.pdf │ │ ├── filled-content-childfriendly.imageset │ │ ├── Contents.json │ │ └── filled-content-childfriendly.pdf │ │ ├── filled-content-christmasstocking.imageset │ │ ├── Contents.json │ │ └── filled-content-christmasstocking.pdf │ │ ├── filled-content-christmastree.imageset │ │ ├── Contents.json │ │ └── filled-content-christmastree.pdf │ │ ├── filled-content-crueltyfreebunny.imageset │ │ ├── Contents.json │ │ └── filled-content-crueltyfreebunny.pdf │ │ ├── filled-content-daynight.imageset │ │ ├── Contents.json │ │ └── filled-content-daynight.pdf │ │ ├── filled-content-design.imageset │ │ ├── Contents.json │ │ └── filled-content-design.pdf │ │ ├── filled-content-divulgation.imageset │ │ ├── Contents.json │ │ └── filled-content-divulgation.pdf │ │ ├── filled-content-dropper.imageset │ │ ├── Contents.json │ │ └── filled-product-dropper.pdf │ │ ├── filled-content-energy.imageset │ │ ├── Contents.json │ │ └── filled-content-energy.pdf │ │ ├── filled-content-exfoliator.imageset │ │ ├── Contents.json │ │ └── filled-content-exfoliator.pdf │ │ ├── filled-content-farmrows.imageset │ │ ├── Contents.json │ │ └── filled-content-farmrows.pdf │ │ ├── filled-content-gauge.imageset │ │ ├── Contents.json │ │ └── filled-content-gauge.pdf │ │ ├── filled-content-generativeai.imageset │ │ ├── Contents.json │ │ └── filled-content-generativeai.pdf │ │ ├── filled-content-giftpricefair.imageset │ │ ├── Contents.json │ │ └── filled-content-giftpricefair.pdf │ │ ├── filled-content-giftpricegreat.imageset │ │ ├── Contents.json │ │ └── filled-content-giftpricegreat.pdf │ │ ├── filled-content-giftpricehigh.imageset │ │ ├── Contents.json │ │ └── filled-content-giftpricehigh.pdf │ │ ├── filled-content-giftpricespecial.imageset │ │ ├── Contents.json │ │ └── filled-content-giftpricespecial.pdf │ │ ├── filled-content-gymdumbbell.imageset │ │ ├── Contents.json │ │ └── filled-content-gymdumbbell.pdf │ │ ├── filled-content-hairbeard.imageset │ │ ├── Contents.json │ │ └── filled-content-hairbeard.pdf │ │ ├── filled-content-handsoap.imageset │ │ ├── Contents.json │ │ └── filled-content-handsoap.pdf │ │ ├── filled-content-handwater.imageset │ │ ├── Contents.json │ │ └── filled-content-handwater.pdf │ │ ├── filled-content-healthy.imageset │ │ ├── Contents.json │ │ └── filled-content-healthy.pdf │ │ ├── filled-content-house.imageset │ │ ├── Contents.json │ │ └── filled-content-house.pdf │ │ ├── filled-content-maintenance.imageset │ │ ├── Contents.json │ │ └── filled-content-maintenance.pdf │ │ ├── filled-content-microscope.imageset │ │ ├── Contents.json │ │ └── filled-content-microscope.pdf │ │ ├── filled-content-moonstars.imageset │ │ ├── Contents.json │ │ └── filled-content-moonstars.pdf │ │ ├── filled-content-mortar.imageset │ │ ├── Contents.json │ │ └── filled-content-mortar.pdf │ │ ├── filled-content-oil.imageset │ │ ├── Contents.json │ │ └── filled-content-oil.pdf │ │ ├── filled-content-oilunavailable.imageset │ │ ├── Contents.json │ │ └── filled-content-oilunavailable.pdf │ │ ├── filled-content-palette.imageset │ │ ├── Contents.json │ │ └── filled-content-palette.pdf │ │ ├── filled-content-plasticfree.imageset │ │ ├── Contents.json │ │ └── filled-content-plasticfree.pdf │ │ ├── filled-content-quote.imageset │ │ ├── Contents.json │ │ └── filled-content-quote.pdf │ │ ├── filled-content-sensitive.imageset │ │ ├── Contents.json │ │ └── filled-content-sensitive.pdf │ │ ├── filled-content-shower.imageset │ │ ├── Contents.json │ │ └── filled-content-shower.pdf │ │ ├── filled-content-snorkelmask.imageset │ │ ├── Contents.json │ │ └── filled-content-snorkelmask.pdf │ │ ├── filled-content-soap.imageset │ │ ├── Contents.json │ │ └── filled-content-soap.pdf │ │ ├── filled-content-soapbubble.imageset │ │ ├── Contents.json │ │ └── filled-content-soapbubble.pdf │ │ ├── filled-content-strawberry.imageset │ │ ├── Contents.json │ │ └── filled-content-strawberry.pdf │ │ ├── filled-content-teddybear.imageset │ │ ├── Contents.json │ │ └── filled-content-teddybear.pdf │ │ ├── filled-content-ticketdiscount.imageset │ │ ├── Contents.json │ │ └── filled-content-ticketdiscount.pdf │ │ ├── filled-content-ticketstar.imageset │ │ ├── Contents.json │ │ └── filled-content-ticketstar.pdf │ │ ├── filled-content-trophystar.imageset │ │ ├── Contents.json │ │ └── filled-content-trophystar.pdf │ │ ├── filled-content-violence.imageset │ │ ├── Contents.json │ │ └── filled-content-violence.pdf │ │ ├── filled-content-wetwipe.imageset │ │ ├── Contents.json │ │ └── filled-content-wetwipe.pdf │ │ ├── filled-content-wifi.imageset │ │ ├── Contents.json │ │ └── filled-content-wifi.pdf │ │ ├── filled-content-world.imageset │ │ ├── Contents.json │ │ └── filled-content-world.pdf │ │ ├── filled-default-mockup.imageset │ │ ├── Contents.json │ │ └── filled-default-mockup.pdf │ │ ├── filled-finance-bag.imageset │ │ ├── Contents.json │ │ └── filled-finance-bag.pdf │ │ ├── filled-finance-bagcheck.imageset │ │ ├── Contents.json │ │ └── filled-finance-bagcheck.pdf │ │ ├── filled-finance-bagshield.imageset │ │ ├── Contents.json │ │ └── filled-finance-bagshield.pdf │ │ ├── filled-finance-cashback.imageset │ │ ├── Contents.json │ │ └── filled-finance-cashback.pdf │ │ ├── filled-finance-charging.imageset │ │ ├── Contents.json │ │ └── filled-finance-charging.pdf │ │ ├── filled-finance-intensityhigh.imageset │ │ ├── Contents.json │ │ └── filled-finance-intensityhigh.pdf │ │ ├── filled-finance-intensitylow.imageset │ │ ├── Contents.json │ │ └── filled-finance-intensitylow.pdf │ │ ├── filled-finance-intensitymedium.imageset │ │ ├── Contents.json │ │ └── filled-finance-intensitymedium.pdf │ │ ├── filled-finance-invoice.imageset │ │ ├── Contents.json │ │ └── filled-finance-invoice.pdf │ │ ├── filled-finance-money.imageset │ │ ├── Contents.json │ │ └── filled-finance-money.pdf │ │ ├── filled-finance-paymentlink.imageset │ │ ├── Contents.json │ │ └── filled-finance-paymentlink.pdf │ │ ├── filled-finance-paymentnotapproved.imageset │ │ ├── Contents.json │ │ └── filled-finance-paymentnotapproved.pdf │ │ ├── filled-finance-pix.imageset │ │ ├── Contents.json │ │ └── filled-finance-pix.pdf │ │ ├── filled-finance-shield.imageset │ │ ├── Contents.json │ │ └── filled-finance-shield.pdf │ │ ├── filled-finance-shieldcheck.imageset │ │ ├── Contents.json │ │ └── filled-finance-shieldcheck.pdf │ │ ├── filled-finance-shieldplus.imageset │ │ ├── Contents.json │ │ └── filled-finance-shieldplus.pdf │ │ ├── filled-growthplan-flowertulip.imageset │ │ ├── Contents.json │ │ └── filled-growthplan-flowertulip.pdf │ │ ├── filled-growthplan-graphic.imageset │ │ ├── Contents.json │ │ └── filled-growthplan-graphic.pdf │ │ ├── filled-growthplan-laurelwreath.imageset │ │ ├── Contents.json │ │ └── filled-growthplan-laurelwreath.pdf │ │ ├── filled-growthplan-trophy.imageset │ │ ├── Contents.json │ │ └── filled-growthplan-trophy.pdf │ │ ├── filled-growthplan-trophyaward.imageset │ │ ├── Contents.json │ │ └── filled-growthplan-trophyaward.pdf │ │ ├── filled-growthplan-trophydiamond.imageset │ │ ├── Contents.json │ │ └── filled-growthplan-trophydiamond.pdf │ │ ├── filled-growthplan-trophysapphire.imageset │ │ ├── Contents.json │ │ └── filled-growthplan-trophysapphire.pdf │ │ ├── filled-makeup-antiacne.imageset │ │ ├── Contents.json │ │ └── filled-makeup-antiacne.pdf │ │ ├── filled-makeup-haircoily.imageset │ │ ├── Contents.json │ │ └── filled-makeup-haircoily.pdf │ │ ├── filled-makeup-haircurly.imageset │ │ ├── Contents.json │ │ └── filled-makeup-haircurly.pdf │ │ ├── filled-makeup-hairdamaged.imageset │ │ ├── Contents.json │ │ └── filled-makeup-hairdamaged.pdf │ │ ├── filled-makeup-hairdandruff.imageset │ │ ├── Contents.json │ │ └── filled-makeup-hairdandruff.pdf │ │ ├── filled-makeup-hairreconstruction.imageset │ │ ├── Contents.json │ │ └── filled-makeup-hairreconstruction.pdf │ │ ├── filled-makeup-hairtowel.imageset │ │ ├── Contents.json │ │ └── filled-makeup-hairtowel.pdf │ │ ├── filled-makeup-hairwavy.imageset │ │ ├── Contents.json │ │ └── filled-makeup-hairwavy.pdf │ │ ├── filled-makeup-hairwoman.imageset │ │ ├── Contents.json │ │ └── filled-makeup-hairwoman.pdf │ │ ├── filled-media-pause.imageset │ │ ├── Contents.json │ │ └── filled-media-pause.pdf │ │ ├── filled-media-play.imageset │ │ ├── Contents.json │ │ └── filled-media-play.pdf │ │ ├── filled-media-stop.imageset │ │ ├── Contents.json │ │ └── filled-media-stop.pdf │ │ ├── filled-media-volumeoff.imageset │ │ ├── Contents.json │ │ └── filled-media-volumeoff.pdf │ │ ├── filled-media-volumeon.imageset │ │ ├── Contents.json │ │ └── filled-media-volumeon.pdf │ │ ├── filled-navigation-arrowbottom.imageset │ │ ├── Contents.json │ │ └── filled-navigation-arrowbottom.pdf │ │ ├── filled-navigation-arrowctrlcompactbottom.imageset │ │ ├── Contents.json │ │ └── filled-navigation-arrowctrlcompactbottom.pdf │ │ ├── filled-navigation-arrowctrlcompactleft.imageset │ │ ├── Contents.json │ │ └── filled-navigation-arrowctrlcompactleft.pdf │ │ ├── filled-navigation-arrowctrlcompactright.imageset │ │ ├── Contents.json │ │ └── filled-navigation-arrowctrlcompactright.pdf │ │ ├── filled-navigation-arrowctrlcompacttop.imageset │ │ ├── Contents.json │ │ └── filled-navigation-arrowctrlcompacttop.pdf │ │ ├── filled-navigation-arrowctrlregularbottom.imageset │ │ ├── Contents.json │ │ └── filled-navigation-arrowctrlregularbottom.pdf │ │ ├── filled-navigation-arrowctrlregularleft.imageset │ │ ├── Contents.json │ │ └── filled-navigation-arrowctrlregularleft.pdf │ │ ├── filled-navigation-arrowctrlregularright.imageset │ │ ├── Contents.json │ │ └── filled-navigation-arrowctrlregularright.pdf │ │ ├── filled-navigation-arrowctrlregulartop.imageset │ │ ├── Contents.json │ │ └── filled-navigation-arrowctrlregulartop.pdf │ │ ├── filled-navigation-arrowleft.imageset │ │ ├── Contents.json │ │ └── filled-navigation-arrowleft.pdf │ │ ├── filled-navigation-arrowright.imageset │ │ ├── Contents.json │ │ └── filled-navigation-arrowright.pdf │ │ ├── filled-navigation-arrowrunbottom.imageset │ │ ├── Contents.json │ │ └── filled-navigation-arrowrunbottom.pdf │ │ ├── filled-navigation-arrowrunleft.imageset │ │ ├── Contents.json │ │ └── filled-navigation-arrowrunleft.pdf │ │ ├── filled-navigation-arrowrunright.imageset │ │ ├── Contents.json │ │ └── filled-navigation-arrowrunright.pdf │ │ ├── filled-navigation-arrowruntop.imageset │ │ ├── Contents.json │ │ └── filled-navigation-arrowruntop.pdf │ │ ├── filled-navigation-arrowtop.imageset │ │ ├── Contents.json │ │ └── filled-navigation-arrowtop.pdf │ │ ├── filled-navigation-arrowtrianglebottom.imageset │ │ ├── Contents.json │ │ └── filled-navigation-arrowtrianglebottom.pdf │ │ ├── filled-navigation-arrowtriangleleft.imageset │ │ ├── Contents.json │ │ └── filled-navigation-arrowtriangleleft.pdf │ │ ├── filled-navigation-arrowtriangleright.imageset │ │ ├── Contents.json │ │ └── filled-navigation-arrowtriangleright.pdf │ │ ├── filled-navigation-arrowtriangletop.imageset │ │ ├── Contents.json │ │ └── filled-navigation-arrowtriangletop.pdf │ │ ├── filled-navigation-directionleft.imageset │ │ ├── Contents.json │ │ └── filled-navigation-directionleft.pdf │ │ ├── filled-navigation-directionright.imageset │ │ ├── Contents.json │ │ └── filled-navigation-directionright.pdf │ │ ├── filled-navigation-directiontbottom.imageset │ │ ├── Contents.json │ │ └── filled-navigation-directiontbottom.pdf │ │ ├── filled-navigation-directiontop.imageset │ │ ├── Contents.json │ │ └── filled-navigation-directiontop.pdf │ │ ├── filled-navigation-home.imageset │ │ ├── Contents.json │ │ └── filled-navigation-home.pdf │ │ ├── filled-navigation-maximize.imageset │ │ ├── Contents.json │ │ └── filled-navigation-maximize.pdf │ │ ├── filled-navigation-menu.imageset │ │ ├── Contents.json │ │ └── filled-navigation-menu.pdf │ │ ├── filled-navigation-minimize.imageset │ │ ├── Contents.json │ │ └── filled-navigation-minimize.pdf │ │ ├── filled-navigation-more.imageset │ │ ├── Contents.json │ │ └── filled-navigation-more.pdf │ │ ├── filled-navigation-opennew.imageset │ │ ├── Contents.json │ │ └── filled-navigation-opennew.pdf │ │ ├── filled-navigation-setbottom.imageset │ │ ├── Contents.json │ │ └── filled-navigation-setbottom.pdf │ │ ├── filled-navigation-setleft.imageset │ │ ├── Contents.json │ │ └── filled-navigation-setleft.pdf │ │ ├── filled-navigation-setright.imageset │ │ ├── Contents.json │ │ └── filled-navigation-setright.pdf │ │ ├── filled-navigation-settop.imageset │ │ ├── Contents.json │ │ └── filled-navigation-settop.pdf │ │ ├── filled-navigation-shuffle.imageset │ │ ├── Contents.json │ │ └── filled-navigation-shuffle.pdf │ │ ├── filled-place-local.imageset │ │ ├── Contents.json │ │ └── filled-place-local.pdf │ │ ├── filled-place-rocket.imageset │ │ ├── Contents.json │ │ └── filled-place-rocket.pdf │ │ ├── filled-place-target.imageset │ │ ├── Contents.json │ │ └── filled-place-target.pdf │ │ ├── filled-place-truck.imageset │ │ ├── Contents.json │ │ └── filled-place-truck.pdf │ │ ├── filled-product-ambientspray.imageset │ │ ├── Contents.json │ │ └── filled-product-ambientspray.pdf │ │ ├── filled-product-backpack.imageset │ │ ├── Contents.json │ │ └── filled-product-backpack.pdf │ │ ├── filled-product-blush.imageset │ │ ├── Contents.json │ │ └── filled-product-blush.pdf │ │ ├── filled-product-bodycream.imageset │ │ ├── Contents.json │ │ └── filled-product-bodycream.pdf │ │ ├── filled-product-bodysplash.imageset │ │ ├── Contents.json │ │ └── filled-product-bodysplash.pdf │ │ ├── filled-product-brandsproduct.imageset │ │ ├── Contents.json │ │ └── filled-product-brandsproduct.pdf │ │ ├── filled-product-candlearomatic.imageset │ │ ├── Contents.json │ │ └── filled-product-candlearomatic.pdf │ │ ├── filled-product-candlescented.imageset │ │ ├── Contents.json │ │ └── filled-product-candlescented.pdf │ │ ├── filled-product-combcream.imageset │ │ ├── Contents.json │ │ └── filled-product-combcream.pdf │ │ ├── filled-product-conditioner.imageset │ │ ├── Contents.json │ │ └── filled-product-conditioner.pdf │ │ ├── filled-product-cube.imageset │ │ ├── Contents.json │ │ └── filled-product-cube.pdf │ │ ├── filled-product-deodorantrollon.imageset │ │ ├── Contents.json │ │ └── filled-product-deodorantrollon.pdf │ │ ├── filled-product-eyeshadow.imageset │ │ ├── Contents.json │ │ └── filled-product-eyeshadow.pdf │ │ ├── filled-product-fashion.imageset │ │ ├── Contents.json │ │ └── filled-product-fashion.pdf │ │ ├── filled-product-haircream.imageset │ │ ├── Contents.json │ │ └── filled-product-haircream.pdf │ │ ├── filled-product-hairdetox.imageset │ │ ├── Contents.json │ │ └── filled-product-hairdetox.pdf │ │ ├── filled-product-hairdresser.imageset │ │ ├── Contents.json │ │ └── filled-product-hairdresser.pdf │ │ ├── filled-product-hairgel.imageset │ │ ├── Contents.json │ │ └── filled-product-hairgel.pdf │ │ ├── filled-product-makeconcealer.imageset │ │ ├── Contents.json │ │ └── filled-product-makeconcealer.pdf │ │ ├── filled-product-makeeyeliner.imageset │ │ ├── Contents.json │ │ └── filled-product-makeeyeliner.pdf │ │ ├── filled-product-makefoundation.imageset │ │ ├── Contents.json │ │ └── filled-product-makefoundation.pdf │ │ ├── filled-product-makemask.imageset │ │ ├── Contents.json │ │ └── filled-product-makemask.pdf │ │ ├── filled-product-mirrorwoman.imageset │ │ ├── Contents.json │ │ └── filled-product-mirrorwoman.pdf │ │ ├── filled-product-nailpolish.imageset │ │ ├── Contents.json │ │ └── filled-product-nailpolish.pdf │ │ ├── filled-product-organicalcohol.imageset │ │ ├── Contents.json │ │ └── filled-product-organicalcohol.pdf │ │ ├── filled-product-pencilblush.imageset │ │ ├── Contents.json │ │ └── filled-product-pencilblush.pdf │ │ ├── filled-product-recyclablepackaging.imageset │ │ ├── Contents.json │ │ └── filled-product-recyclablepackaging.pdf │ │ ├── filled-product-refill.imageset │ │ ├── Contents.json │ │ └── filled-product-refill.pdf │ │ ├── filled-product-shampoo.imageset │ │ ├── Contents.json │ │ └── filled-product-shampoo.pdf │ │ ├── filled-product-shampooconditioner.imageset │ │ ├── Contents.json │ │ └── filled-product-shampooconditioner.pdf │ │ ├── filled-product-shoewoman.imageset │ │ ├── Contents.json │ │ └── filled-product-shoewoman.pdf │ │ ├── filled-product-soapliquid.imageset │ │ ├── Contents.json │ │ └── filled-product-soapliquid.pdf │ │ ├── filled-product-spray.imageset │ │ ├── Contents.json │ │ └── filled-product-spray.pdf │ │ ├── filled-social-fireworks.imageset │ │ ├── Contents.json │ │ └── filled-social-fireworks.pdf │ │ ├── filled-social-myprofile.imageset │ │ ├── Contents.json │ │ └── filled-social-myprofile.pdf │ │ ├── filled-social-nightlife.imageset │ │ ├── Contents.json │ │ └── filled-social-nightlife.pdf │ │ ├── filled-social-pregnant.imageset │ │ ├── Contents.json │ │ └── filled-social-pregnant.pdf │ │ ├── filled-social-sparks.imageset │ │ ├── Contents.json │ │ └── filled-social-sparks.pdf │ │ ├── filled-social-userlock.imageset │ │ ├── Contents.json │ │ └── filled-social-userlock.pdf │ │ ├── outlined-action-add.imageset │ │ ├── Contents.json │ │ └── outlined-action-add.pdf │ │ ├── outlined-action-addproduct.imageset │ │ ├── Contents.json │ │ └── outlined-action-addproduct.pdf │ │ ├── outlined-action-attachment.imageset │ │ ├── Contents.json │ │ └── outlined-action-attachment.pdf │ │ ├── outlined-action-autofilter.imageset │ │ ├── Contents.json │ │ └── outlined-action-autofilter.pdf │ │ ├── outlined-action-calendar.imageset │ │ ├── Contents.json │ │ └── outlined-action-calendar.pdf │ │ ├── outlined-action-camerachange.imageset │ │ ├── Contents.json │ │ └── outlined-action-camerachange.pdf │ │ ├── outlined-action-cancel.imageset │ │ ├── Contents.json │ │ └── outlined-action-cancel.pdf │ │ ├── outlined-action-change.imageset │ │ ├── Contents.json │ │ └── outlined-action-change.pdf │ │ ├── outlined-action-check.imageset │ │ ├── Contents.json │ │ └── outlined-action-check.pdf │ │ ├── outlined-action-clock.imageset │ │ ├── Contents.json │ │ └── outlined-action-clock.pdf │ │ ├── outlined-action-closedbox.imageset │ │ ├── Contents.json │ │ └── outlined-action-closedbox.pdf │ │ ├── outlined-action-copy.imageset │ │ ├── Contents.json │ │ └── outlined-action-copy.pdf │ │ ├── outlined-action-copylink.imageset │ │ ├── Contents.json │ │ └── outlined-action-copylink.pdf │ │ ├── outlined-action-cycle.imageset │ │ ├── Contents.json │ │ └── outlined-action-cycle.pdf │ │ ├── outlined-action-delete.imageset │ │ ├── Contents.json │ │ └── outlined-action-delete.pdf │ │ ├── outlined-action-dislike.imageset │ │ ├── Contents.json │ │ └── outlined-action-dislike.pdf │ │ ├── outlined-action-done.imageset │ │ ├── Contents.json │ │ └── outlined-action-done.pdf │ │ ├── outlined-action-download.imageset │ │ ├── Contents.json │ │ └── outlined-action-download.pdf │ │ ├── outlined-action-edit.imageset │ │ ├── Contents.json │ │ └── outlined-action-edit.pdf │ │ ├── outlined-action-favorite.imageset │ │ ├── Contents.json │ │ └── outlined-action-favorite.pdf │ │ ├── outlined-action-filepdf.imageset │ │ ├── Contents.json │ │ └── outlined-action-filepdf.pdf │ │ ├── outlined-action-filter.imageset │ │ ├── Contents.json │ │ └── outlined-action-filter.pdf │ │ ├── outlined-action-frame.imageset │ │ ├── Contents.json │ │ └── outlined-action-frame.pdf │ │ ├── outlined-action-gridsquare.imageset │ │ ├── Contents.json │ │ └── outlined-action-gridsquare.pdf │ │ ├── outlined-action-half-rating.imageset │ │ ├── Contents.json │ │ └── outlined-action-half-rating.pdf │ │ ├── outlined-action-help.imageset │ │ ├── Contents.json │ │ └── outlined-action-help.pdf │ │ ├── outlined-action-history.imageset │ │ ├── Contents.json │ │ └── outlined-action-history.pdf │ │ ├── outlined-action-increase.imageset │ │ ├── Contents.json │ │ └── outlined-action-increase.pdf │ │ ├── outlined-action-lightoff.imageset │ │ ├── Contents.json │ │ └── outlined-action-lightoff.pdf │ │ ├── outlined-action-lighton.imageset │ │ ├── Contents.json │ │ └── outlined-action-lighton.pdf │ │ ├── outlined-action-like.imageset │ │ ├── Contents.json │ │ └── outlined-action-like.pdf │ │ ├── outlined-action-list.imageset │ │ ├── Contents.json │ │ └── outlined-action-list.pdf │ │ ├── outlined-action-love.imageset │ │ ├── Contents.json │ │ └── outlined-action-love.pdf │ │ ├── outlined-action-mic.imageset │ │ ├── Contents.json │ │ └── outlined-action-mic.pdf │ │ ├── outlined-action-micrec.imageset │ │ ├── Contents.json │ │ └── outlined-action-micrec.pdf │ │ ├── outlined-action-newregister.imageset │ │ ├── Contents.json │ │ └── outlined-action-newregister.pdf │ │ ├── outlined-action-newrequest.imageset │ │ ├── Contents.json │ │ └── outlined-action-newrequest.pdf │ │ ├── outlined-action-opacity.imageset │ │ ├── Contents.json │ │ └── outlined-action-opacity.pdf │ │ ├── outlined-action-order.imageset │ │ ├── Contents.json │ │ └── outlined-action-order.pdf │ │ ├── outlined-action-phone.imageset │ │ ├── Contents.json │ │ └── outlined-action-phone.pdf │ │ ├── outlined-action-print.imageset │ │ ├── Contents.json │ │ └── outlined-action-print.pdf │ │ ├── outlined-action-privacy.imageset │ │ ├── Contents.json │ │ └── outlined-action-privacy.pdf │ │ ├── outlined-action-qr.imageset │ │ ├── Contents.json │ │ └── outlined-action-qr.pdf │ │ ├── outlined-action-rating.imageset │ │ ├── Contents.json │ │ └── outlined-action-rating.pdf │ │ ├── outlined-action-recycle.imageset │ │ ├── Contents.json │ │ └── outlined-action-recycle.pdf │ │ ├── outlined-action-register.imageset │ │ ├── Contents.json │ │ └── outlined-action-register.pdf │ │ ├── outlined-action-request.imageset │ │ ├── Contents.json │ │ └── outlined-action-request.pdf │ │ ├── outlined-action-requestspecial.imageset │ │ ├── Contents.json │ │ └── outlined-action-requestspecial.pdf │ │ ├── outlined-action-runningclock.imageset │ │ ├── Contents.json │ │ └── outlined-action-runningclock.pdf │ │ ├── outlined-action-save.imageset │ │ ├── Contents.json │ │ └── outlined-action-save.pdf │ │ ├── outlined-action-schedule.imageset │ │ ├── Contents.json │ │ └── outlined-action-schedule.pdf │ │ ├── outlined-action-search.imageset │ │ ├── Contents.json │ │ └── outlined-action-search.pdf │ │ ├── outlined-action-selectedalllines.imageset │ │ ├── Contents.json │ │ └── outlined-action-selectedalllines.pdf │ │ ├── outlined-action-send.imageset │ │ ├── Contents.json │ │ └── outlined-action-send.pdf │ │ ├── outlined-action-settings.imageset │ │ ├── Contents.json │ │ └── outlined-action-settings.pdf │ │ ├── outlined-action-share.imageset │ │ ├── Contents.json │ │ └── outlined-action-share.pdf │ │ ├── outlined-action-shareios.imageset │ │ ├── Contents.json │ │ └── outlined-action-shareios.pdf │ │ ├── outlined-action-subtract.imageset │ │ ├── Contents.json │ │ └── outlined-action-subtract.pdf │ │ ├── outlined-action-text.imageset │ │ ├── Contents.json │ │ └── outlined-action-text.pdf │ │ ├── outlined-action-transparent.imageset │ │ ├── Contents.json │ │ └── outlined-action-transparent.pdf │ │ ├── outlined-action-update.imageset │ │ ├── Contents.json │ │ └── outlined-action-update.pdf │ │ ├── outlined-action-upload.imageset │ │ ├── Contents.json │ │ └── outlined-action-upload.pdf │ │ ├── outlined-action-visibility.imageset │ │ ├── Contents.json │ │ └── outlined-action-visibility.pdf │ │ ├── outlined-action-visibilityoff.imageset │ │ ├── Contents.json │ │ └── outlined-action-visibilityoff.pdf │ │ ├── outlined-action-visibilitysleeping.imageset │ │ ├── Contents.json │ │ └── outlined-action-visibilitysleeping.pdf │ │ ├── outlined-action-zoomin.imageset │ │ ├── Contents.json │ │ └── outlined-action-zoomin.pdf │ │ ├── outlined-action-zoomout.imageset │ │ ├── Contents.json │ │ └── outlined-action-zoomout.pdf │ │ ├── outlined-alert-cancel.imageset │ │ ├── Contents.json │ │ └── outlined-alert-cancel.pdf │ │ ├── outlined-alert-check.imageset │ │ ├── Contents.json │ │ └── outlined-alert-check.pdf │ │ ├── outlined-alert-empty.imageset │ │ ├── Contents.json │ │ └── outlined-alert-empty.pdf │ │ ├── outlined-alert-indeterminate.imageset │ │ ├── Contents.json │ │ └── outlined-alert-indeterminate.pdf │ │ ├── outlined-alert-info.imageset │ │ ├── Contents.json │ │ └── outlined-alert-info.pdf │ │ ├── outlined-alert-notification.imageset │ │ ├── Contents.json │ │ └── outlined-alert-notification.pdf │ │ ├── outlined-alert-notificationsbadge.imageset │ │ ├── Contents.json │ │ └── outlined-alert-notificationsbadge.pdf │ │ ├── outlined-alert-notificationunavailable.imageset │ │ ├── Contents.json │ │ └── outlined-alert-notificationunavailable.pdf │ │ ├── outlined-alert-warning.imageset │ │ ├── Contents.json │ │ └── outlined-alert-warning.pdf │ │ ├── outlined-brand-avondesenvolve.imageset │ │ ├── Contents.json │ │ └── outlined-brand-avondesenvolve.pdf │ │ ├── outlined-brand-avonshorthand.imageset │ │ ├── Contents.json │ │ └── outlined-brand-avonshorthand.pdf │ │ ├── outlined-brand-messenger.imageset │ │ ├── Contents.json │ │ └── outlined-brand-messenger.pdf │ │ ├── outlined-brand-thebodyshop.imageset │ │ ├── Contents.json │ │ └── outlined-brand-thebodyshop.pdf │ │ ├── outlined-brand-tiktok.imageset │ │ ├── Contents.json │ │ └── outlined-brand-tiktok.pdf │ │ ├── outlined-brand-x.imageset │ │ ├── Contents.json │ │ └── outlined-brand-x.pdf │ │ ├── outlined-communication-chat.imageset │ │ ├── Contents.json │ │ └── outlined-communication-chat.pdf │ │ ├── outlined-communication-digital-service.imageset │ │ ├── Contents.json │ │ └── outlined-communication-digital-service.pdf │ │ ├── outlined-communication-email.imageset │ │ ├── Contents.json │ │ └── outlined-communication-email.pdf │ │ ├── outlined-communication-help.imageset │ │ ├── Contents.json │ │ └── outlined-communication-help.pdf │ │ ├── outlined-communication-message.imageset │ │ ├── Contents.json │ │ └── outlined-communication-message.pdf │ │ ├── outlined-communication-noconnection.imageset │ │ ├── Contents.json │ │ └── outlined-communication-noconnection.pdf │ │ ├── outlined-communication-occurrence.imageset │ │ ├── Contents.json │ │ └── outlined-communication-occurrence.pdf │ │ ├── outlined-communication-phoneringing.imageset │ │ ├── Contents.json │ │ └── outlined-communication-phoneringing.pdf │ │ ├── outlined-communication-readEmail.imageset │ │ ├── Contents.json │ │ └── outlined-communication-readEmail.pdf │ │ ├── outlined-communication-signal.imageset │ │ ├── Contents.json │ │ └── outlined-communication-signal.pdf │ │ ├── outlined-communication-speaker.imageset │ │ ├── Contents.json │ │ └── outlined-communication-speaker.pdf │ │ ├── outlined-communication-treatment.imageset │ │ ├── Contents.json │ │ └── outlined-communication-treatment.pdf │ │ ├── outlined-content-adddocument.imageset │ │ ├── Contents.json │ │ └── outlined-content-adddocument.pdf │ │ ├── outlined-content-agility.imageset │ │ ├── Contents.json │ │ └── outlined-content-agility.pdf │ │ ├── outlined-content-asleep.imageset │ │ ├── Contents.json │ │ └── outlined-content-asleep.pdf │ │ ├── outlined-content-bathtub.imageset │ │ ├── Contents.json │ │ └── outlined-content-bathtub.pdf │ │ ├── outlined-content-bellringing.imageset │ │ ├── Contents.json │ │ └── outlined-content-bellringing.pdf │ │ ├── outlined-content-book.imageset │ │ ├── Contents.json │ │ └── outlined-content-book.pdf │ │ ├── outlined-content-brightness.imageset │ │ ├── Contents.json │ │ └── outlined-content-brightness.pdf │ │ ├── outlined-content-carbondioxide.imageset │ │ ├── Contents.json │ │ └── outlined-content-carbondioxide.pdf │ │ ├── outlined-content-changeview.imageset │ │ ├── Contents.json │ │ └── outlined-content-changeview.pdf │ │ ├── outlined-content-channel.imageset │ │ ├── Contents.json │ │ └── outlined-content-channel.pdf │ │ ├── outlined-content-childfriendly.imageset │ │ ├── Contents.json │ │ └── outlined-content-childfriendly.pdf │ │ ├── outlined-content-christmascard.imageset │ │ ├── Contents.json │ │ └── outlined-content-christmascard.pdf │ │ ├── outlined-content-christmasstocking.imageset │ │ ├── Contents.json │ │ └── outlined-content-christmasstocking.pdf │ │ ├── outlined-content-christmastree.imageset │ │ ├── Contents.json │ │ └── outlined-content-christmastree.pdf │ │ ├── outlined-content-cloud.imageset │ │ ├── Contents.json │ │ └── outlined-content-cloud.pdf │ │ ├── outlined-content-consistency.imageset │ │ ├── Contents.json │ │ └── outlined-content-consistency.pdf │ │ ├── outlined-content-crueltyfreebunny.imageset │ │ ├── Contents.json │ │ └── outlined-content-crueltyfreebunny.pdf │ │ ├── outlined-content-daynight.imageset │ │ ├── Contents.json │ │ └── outlined-content-daynight.pdf │ │ ├── outlined-content-design.imageset │ │ ├── Contents.json │ │ └── outlined-content-design.pdf │ │ ├── outlined-content-divulgation.imageset │ │ ├── Contents.json │ │ └── outlined-content-divulgation.pdf │ │ ├── outlined-content-dropper.imageset │ │ ├── Contents.json │ │ └── outlined-product-dropper.pdf │ │ ├── outlined-content-education.imageset │ │ ├── Contents.json │ │ └── outlined-content-education.pdf │ │ ├── outlined-content-emptybag.imageset │ │ ├── Contents.json │ │ └── outlined-content-emptybag.pdf │ │ ├── outlined-content-energy.imageset │ │ ├── Contents.json │ │ └── outlined-content-energy.pdf │ │ ├── outlined-content-exchangereports.imageset │ │ ├── Contents.json │ │ └── outlined-content-exchangereports.pdf │ │ ├── outlined-content-exfoliator.imageset │ │ ├── Contents.json │ │ └── outlined-content-exfoliator.pdf │ │ ├── outlined-content-farmrows.imageset │ │ ├── Contents.json │ │ └── outlined-content-farmrows.pdf │ │ ├── outlined-content-flower.imageset │ │ ├── Contents.json │ │ └── outlined-content-flower.pdf │ │ ├── outlined-content-fragrance.imageset │ │ ├── Contents.json │ │ └── outlined-content-fragrance.pdf │ │ ├── outlined-content-gallery.imageset │ │ ├── Contents.json │ │ └── outlined-content-gallery.pdf │ │ ├── outlined-content-gauge.imageset │ │ ├── Contents.json │ │ └── outlined-content-gauge.pdf │ │ ├── outlined-content-generativeai.imageset │ │ ├── Contents.json │ │ └── outlined-content-generativeai.pdf │ │ ├── outlined-content-gift.imageset │ │ ├── Contents.json │ │ └── outlined-content-gift.pdf │ │ ├── outlined-content-giftpricefair.imageset │ │ ├── Contents.json │ │ └── outlined-content-giftpricefair.pdf │ │ ├── outlined-content-giftpricegreat.imageset │ │ ├── Contents.json │ │ └── outlined-content-giftpricegreat.pdf │ │ ├── outlined-content-giftpricehigh.imageset │ │ ├── Contents.json │ │ └── outlined-content-giftpricehigh.pdf │ │ ├── outlined-content-giftpricespecial.imageset │ │ ├── Contents.json │ │ └── outlined-content-giftpricespecial.pdf │ │ ├── outlined-content-global.imageset │ │ ├── Contents.json │ │ └── outlined-content-global.pdf │ │ ├── outlined-content-gymdumbbell.imageset │ │ ├── Contents.json │ │ └── outlined-content-gymdumbbell.pdf │ │ ├── outlined-content-hairbeard.imageset │ │ ├── Contents.json │ │ └── outlined-content-hairbeard.pdf │ │ ├── outlined-content-handbag.imageset │ │ ├── Contents.json │ │ └── outlined-content-handbag.pdf │ │ ├── outlined-content-handcare.imageset │ │ ├── Contents.json │ │ └── outlined-content-handcare.pdf │ │ ├── outlined-content-handglobal.imageset │ │ ├── Contents.json │ │ └── outlined-content-handglobal.pdf │ │ ├── outlined-content-hands.imageset │ │ ├── Contents.json │ │ └── outlined-content-hands.pdf │ │ ├── outlined-content-handsoap.imageset │ │ ├── Contents.json │ │ └── outlined-content-handsoap.pdf │ │ ├── outlined-content-handwater.imageset │ │ ├── Contents.json │ │ └── outlined-content-handwater.pdf │ │ ├── outlined-content-health.imageset │ │ ├── Contents.json │ │ └── outlined-content-health.pdf │ │ ├── outlined-content-healthy.imageset │ │ ├── Contents.json │ │ └── outlined-content-healthy.pdf │ │ ├── outlined-content-house.imageset │ │ ├── Contents.json │ │ └── outlined-content-house.pdf │ │ ├── outlined-content-indicator.imageset │ │ ├── Contents.json │ │ └── outlined-content-indicator.pdf │ │ ├── outlined-content-itemlist.imageset │ │ ├── Contents.json │ │ └── outlined-content-itemlist.pdf │ │ ├── outlined-content-leafs.imageset │ │ ├── Contents.json │ │ └── outlined-content-leafs.pdf │ │ ├── outlined-content-lifebuoy.imageset │ │ ├── Contents.json │ │ └── outlined-content-lifebuoy.pdf │ │ ├── outlined-content-lock.imageset │ │ ├── Contents.json │ │ └── outlined-content-lock.pdf │ │ ├── outlined-content-magic.imageset │ │ ├── Contents.json │ │ └── outlined-content-magic.pdf │ │ ├── outlined-content-maintenance.imageset │ │ ├── Contents.json │ │ └── outlined-content-maintenance.pdf │ │ ├── outlined-content-medal.imageset │ │ ├── Contents.json │ │ └── outlined-content-medal.pdf │ │ ├── outlined-content-menu.imageset │ │ ├── Contents.json │ │ └── outlined-content-menu.pdf │ │ ├── outlined-content-microscope.imageset │ │ ├── Contents.json │ │ └── outlined-content-microscope.pdf │ │ ├── outlined-content-mirror.imageset │ │ ├── Contents.json │ │ └── outlined-content-mirror.pdf │ │ ├── outlined-content-moonstars.imageset │ │ ├── Contents.json │ │ └── outlined-content-moonstars.pdf │ │ ├── outlined-content-mortar.imageset │ │ ├── Contents.json │ │ └── outlined-content-mortar.pdf │ │ ├── outlined-content-oil.imageset │ │ ├── Contents.json │ │ └── outlined-content-oil.pdf │ │ ├── outlined-content-oilunavailable.imageset │ │ ├── Contents.json │ │ └── outlined-content-oilunavailable.pdf │ │ ├── outlined-content-palette.imageset │ │ ├── Contents.json │ │ └── outlined-content-palette.pdf │ │ ├── outlined-content-password.imageset │ │ ├── Contents.json │ │ └── outlined-content-password.pdf │ │ ├── outlined-content-planb.imageset │ │ ├── Contents.json │ │ └── outlined-content-planb.pdf │ │ ├── outlined-content-plasticfree.imageset │ │ ├── Contents.json │ │ └── outlined-content-plasticfree.pdf │ │ ├── outlined-content-productshowcase.imageset │ │ ├── Contents.json │ │ └── outlined-content-productshowcase.pdf │ │ ├── outlined-content-produtivity.imageset │ │ ├── Contents.json │ │ └── outlined-content-produtivity.pdf │ │ ├── outlined-content-rainycloud.imageset │ │ ├── Contents.json │ │ └── outlined-content-rainycloud.pdf │ │ ├── outlined-content-report.imageset │ │ ├── Contents.json │ │ └── outlined-content-report.pdf │ │ ├── outlined-content-saleinsight.imageset │ │ ├── Contents.json │ │ └── outlined-content-saleinsight.pdf │ │ ├── outlined-content-sensitive.imageset │ │ ├── Contents.json │ │ └── outlined-content-sensitive.pdf │ │ ├── outlined-content-shower.imageset │ │ ├── Contents.json │ │ └── outlined-content-shower.pdf │ │ ├── outlined-content-snorkelmask.imageset │ │ ├── Contents.json │ │ └── outlined-content-snorkelmask.pdf │ │ ├── outlined-content-snow.imageset │ │ ├── Contents.json │ │ └── outlined-content-snow.pdf │ │ ├── outlined-content-soap.imageset │ │ ├── Contents.json │ │ └── outlined-content-soap.pdf │ │ ├── outlined-content-soapbubble.imageset │ │ ├── Contents.json │ │ └── outlined-content-soapbubble.pdf │ │ ├── outlined-content-store.imageset │ │ ├── Contents.json │ │ └── outlined-content-store.pdf │ │ ├── outlined-content-strawberry.imageset │ │ ├── Contents.json │ │ └── outlined-content-strawberry.pdf │ │ ├── outlined-content-sun.imageset │ │ ├── Contents.json │ │ └── outlined-content-sun.pdf │ │ ├── outlined-content-sunandcloud.imageset │ │ ├── Contents.json │ │ └── outlined-content-sunandcloud.pdf │ │ ├── outlined-content-teddybear.imageset │ │ ├── Contents.json │ │ └── outlined-content-teddybear.pdf │ │ ├── outlined-content-ticketdiscount.imageset │ │ ├── Contents.json │ │ └── outlined-content-ticketdiscount.pdf │ │ ├── outlined-content-ticketstar.imageset │ │ ├── Contents.json │ │ └── outlined-content-ticketstar.pdf │ │ ├── outlined-content-trophystar.imageset │ │ ├── Contents.json │ │ └── outlined-content-trophystar.pdf │ │ ├── outlined-content-unavailable.imageset │ │ ├── Contents.json │ │ └── outlined-content-unavailable.pdf │ │ ├── outlined-content-violence.imageset │ │ ├── Contents.json │ │ └── outlined-content-violence.pdf │ │ ├── outlined-content-virtualmirror.imageset │ │ ├── Contents.json │ │ └── outlined-content-virtualmirror.pdf │ │ ├── outlined-content-wellness.imageset │ │ ├── Contents.json │ │ └── outlined-content-wellness.pdf │ │ ├── outlined-content-wetwipe.imageset │ │ ├── Contents.json │ │ └── outlined-content-wetwipe.pdf │ │ ├── outlined-content-wifi.imageset │ │ ├── Contents.json │ │ └── outlined-content-wifi.pdf │ │ ├── outlined-content-world.imageset │ │ ├── Contents.json │ │ └── outlined-content-world.pdf │ │ ├── outlined-default-mockup.imageset │ │ ├── Contents.json │ │ └── outlined-default-mockup.pdf │ │ ├── outlined-finance-addbag.imageset │ │ ├── Contents.json │ │ └── outlined-finance-addbag.pdf │ │ ├── outlined-finance-bag.imageset │ │ ├── Contents.json │ │ └── outlined-finance-bag.pdf │ │ ├── outlined-finance-bagcheck.imageset │ │ ├── Contents.json │ │ └── outlined-finance-bagcheck.pdf │ │ ├── outlined-finance-bagshield.imageset │ │ ├── Contents.json │ │ └── outlined-finance-bagshield.pdf │ │ ├── outlined-finance-bank.imageset │ │ ├── Contents.json │ │ └── outlined-finance-bank.pdf │ │ ├── outlined-finance-cards.imageset │ │ ├── Contents.json │ │ └── outlined-finance-cards.pdf │ │ ├── outlined-finance-cashback.imageset │ │ ├── Contents.json │ │ └── outlined-finance-cashback.pdf │ │ ├── outlined-finance-charging.imageset │ │ ├── Contents.json │ │ └── outlined-finance-charging.pdf │ │ ├── outlined-finance-creditcard.imageset │ │ ├── Contents.json │ │ └── outlined-finance-creditcard.pdf │ │ ├── outlined-finance-debit.imageset │ │ ├── Contents.json │ │ └── outlined-finance-debit.pdf │ │ ├── outlined-finance-discount.imageset │ │ ├── Contents.json │ │ └── outlined-finance-discount.pdf │ │ ├── outlined-finance-idcard.imageset │ │ ├── Contents.json │ │ └── outlined-finance-idcard.pdf │ │ ├── outlined-finance-intensityhigh.imageset │ │ ├── Contents.json │ │ └── outlined-finance-intensityhigh.pdf │ │ ├── outlined-finance-intensitylow.imageset │ │ ├── Contents.json │ │ └── outlined-finance-intensitylow.pdf │ │ ├── outlined-finance-intensitymedium.imageset │ │ ├── Contents.json │ │ └── outlined-finance-intensitymedium.pdf │ │ ├── outlined-finance-invoice.imageset │ │ ├── Contents.json │ │ └── outlined-finance-invoice.pdf │ │ ├── outlined-finance-littlemachine.imageset │ │ ├── Contents.json │ │ └── outlined-finance-littlemachine.pdf │ │ ├── outlined-finance-money.imageset │ │ ├── Contents.json │ │ └── outlined-finance-money.pdf │ │ ├── outlined-finance-moneypaper.imageset │ │ ├── Contents.json │ │ └── outlined-finance-moneypaper.pdf │ │ ├── outlined-finance-paid.imageset │ │ ├── Contents.json │ │ └── outlined-finance-paid.pdf │ │ ├── outlined-finance-paymentlink.imageset │ │ ├── Contents.json │ │ └── outlined-finance-paymentlink.pdf │ │ ├── outlined-finance-paymentnotapproved.imageset │ │ ├── Contents.json │ │ └── outlined-finance-paymentnotapproved.pdf │ │ ├── outlined-finance-payreference.imageset │ │ ├── Contents.json │ │ └── outlined-finance-payreference.pdf │ │ ├── outlined-finance-pix.imageset │ │ ├── Contents.json │ │ └── outlined-finance-pix.pdf │ │ ├── outlined-finance-promotion.imageset │ │ ├── Contents.json │ │ └── outlined-finance-promotion.pdf │ │ ├── outlined-finance-scancard.imageset │ │ ├── Contents.json │ │ └── outlined-finance-scancard.pdf │ │ ├── outlined-finance-shield.imageset │ │ ├── Contents.json │ │ └── outlined-finance-shield.pdf │ │ ├── outlined-finance-shieldcheck.imageset │ │ ├── Contents.json │ │ └── outlined-finance-shieldcheck.pdf │ │ ├── outlined-finance-shieldplus.imageset │ │ ├── Contents.json │ │ └── outlined-finance-shieldplus.pdf │ │ ├── outlined-finance-shoppingcart.imageset │ │ ├── Contents.json │ │ └── outlined-finance-shoppingcart.pdf │ │ ├── outlined-finance-shoppingcartproduct.imageset │ │ ├── Contents.json │ │ └── outlined-finance-shoppingcartproduct.pdf │ │ ├── outlined-finance-suitcase.imageset │ │ ├── Contents.json │ │ └── outlined-finance-suitcase.pdf │ │ ├── outlined-finance-tagdiscount.imageset │ │ ├── Contents.json │ │ └── outlined-finance-tagdiscount.pdf │ │ ├── outlined-finance-transfermoney.imageset │ │ ├── Contents.json │ │ └── outlined-finance-transfermoney.pdf │ │ ├── outlined-growthplan-flowertulip.imageset │ │ ├── Contents.json │ │ └── outlined-growthplan-flowertulip.pdf │ │ ├── outlined-growthplan-graphic.imageset │ │ ├── Contents.json │ │ └── outlined-growthplan-graphic.pdf │ │ ├── outlined-growthplan-laurelwreath.imageset │ │ ├── Contents.json │ │ └── outlined-growthplan-laurelwreath.pdf │ │ ├── outlined-growthplan-trophy.imageset │ │ ├── Contents.json │ │ └── outlined-growthplan-trophy.pdf │ │ ├── outlined-growthplan-trophyaward.imageset │ │ ├── Contents.json │ │ └── outlined-growthplan-trophyaward.pdf │ │ ├── outlined-growthplan-trophydiamond.imageset │ │ ├── Contents.json │ │ └── outlined-growthplan-trophydiamond.pdf │ │ ├── outlined-growthplan-trophysapphire.imageset │ │ ├── Contents.json │ │ └── outlined-growthplan-trophysapphire.pdf │ │ ├── outlined-makeup-age.imageset │ │ ├── Contents.json │ │ └── outlined-makeup-age.pdf │ │ ├── outlined-makeup-antiacne.imageset │ │ ├── Contents.json │ │ └── outlined-makeup-antiacne.pdf │ │ ├── outlined-makeup-eyebrow.imageset │ │ ├── Contents.json │ │ └── outlined-makeup-eyebrow.pdf │ │ ├── outlined-makeup-eyelashes.imageset │ │ ├── Contents.json │ │ └── outlined-makeup-eyelashes.pdf │ │ ├── outlined-makeup-eyeliner.imageset │ │ ├── Contents.json │ │ └── outlined-makeup-eyeliner.pdf │ │ ├── outlined-makeup-face.imageset │ │ ├── Contents.json │ │ └── outlined-makeup-face.pdf │ │ ├── outlined-makeup-haircoily.imageset │ │ ├── Contents.json │ │ └── outlined-makeup-haircoily.pdf │ │ ├── outlined-makeup-haircurly.imageset │ │ ├── Contents.json │ │ └── outlined-makeup-haircurly.pdf │ │ ├── outlined-makeup-hairdamaged.imageset │ │ ├── Contents.json │ │ └── outlined-makeup-hairdamaged.pdf │ │ ├── outlined-makeup-hairdandruff.imageset │ │ ├── Contents.json │ │ └── outlined-makeup-hairdandruff.pdf │ │ ├── outlined-makeup-hairreconstruction.imageset │ │ ├── Contents.json │ │ └── outlined-makeup-hairreconstruction.pdf │ │ ├── outlined-makeup-hairtowel.imageset │ │ ├── Contents.json │ │ └── outlined-makeup-hairtowel.pdf │ │ ├── outlined-makeup-hairwavy.imageset │ │ ├── Contents.json │ │ └── outlined-makeup-hairwavy.pdf │ │ ├── outlined-makeup-hairwoman.imageset │ │ ├── Contents.json │ │ └── outlined-makeup-hairwoman.pdf │ │ ├── outlined-makeup-mixedskin.imageset │ │ ├── Contents.json │ │ └── outlined-makeup-mixedskin.pdf │ │ ├── outlined-makeup-mouth.imageset │ │ ├── Contents.json │ │ └── outlined-makeup-mouth.pdf │ │ ├── outlined-makeup-typeacneic.imageset │ │ ├── Contents.json │ │ └── outlined-makeup-typeacneic.pdf │ │ ├── outlined-media-app.imageset │ │ ├── Contents.json │ │ └── outlined-media-app.pdf │ │ ├── outlined-media-camera.imageset │ │ ├── Contents.json │ │ └── outlined-media-camera.pdf │ │ ├── outlined-media-cameraunavailable.imageset │ │ ├── Contents.json │ │ └── outlined-media-cameraunavailable.pdf │ │ ├── outlined-media-monitor.imageset │ │ ├── Contents.json │ │ └── outlined-media-monitor.pdf │ │ ├── outlined-media-play.imageset │ │ ├── Contents.json │ │ └── outlined-media-play.pdf │ │ ├── outlined-media-volumeoff.imageset │ │ ├── Contents.json │ │ └── outlined-media-volumeoff.pdf │ │ ├── outlined-media-volumeon.imageset │ │ ├── Contents.json │ │ └── outlined-media-volumeon.pdf │ │ ├── outlined-navigation-arrowbottom.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-arrowbottom.pdf │ │ ├── outlined-navigation-arrowctrlcompactbottom.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-arrowctrlcompactbottom.pdf │ │ ├── outlined-navigation-arrowctrlcompactleft.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-arrowctrlcompactleft.pdf │ │ ├── outlined-navigation-arrowctrlcompactright.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-arrowctrlcompactright.pdf │ │ ├── outlined-navigation-arrowctrlcompacttop.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-arrowctrlcompacttop.pdf │ │ ├── outlined-navigation-arrowctrlregularbottom.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-arrowctrlregularbottom.pdf │ │ ├── outlined-navigation-arrowctrlregularleft.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-arrowctrlregularleft.pdf │ │ ├── outlined-navigation-arrowctrlregularright.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-arrowctrlregularright.pdf │ │ ├── outlined-navigation-arrowctrlregulartop.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-arrowctrlregulartop.pdf │ │ ├── outlined-navigation-arrowleft-alt.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-arrowleft-alt.pdf │ │ ├── outlined-navigation-arrowleft.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-arrowleft.pdf │ │ ├── outlined-navigation-arrowright-alt.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-arrowright-alt.pdf │ │ ├── outlined-navigation-arrowright.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-arrowright.pdf │ │ ├── outlined-navigation-arrowrunbottom.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-arrowrunbottom.pdf │ │ ├── outlined-navigation-arrowrunleft.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-arrowrunleft.pdf │ │ ├── outlined-navigation-arrowrunright.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-arrowrunright.pdf │ │ ├── outlined-navigation-arrowruntop.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-arrowruntop.pdf │ │ ├── outlined-navigation-arrowtop.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-arrowtop.pdf │ │ ├── outlined-navigation-close.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-close.pdf │ │ ├── outlined-navigation-directionbottom.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-directionbottom.pdf │ │ ├── outlined-navigation-directionleft-alt.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-directionleft-alt.pdf │ │ ├── outlined-navigation-directionleft.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-directionleft.pdf │ │ ├── outlined-navigation-directionright-alt.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-directionright-alt.pdf │ │ ├── outlined-navigation-directionright.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-directionright.pdf │ │ ├── outlined-navigation-directiontop.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-directiontop.pdf │ │ ├── outlined-navigation-exit.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-exit.pdf │ │ ├── outlined-navigation-goback.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-goback.pdf │ │ ├── outlined-navigation-gofront.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-gofront.pdf │ │ ├── outlined-navigation-home.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-home.pdf │ │ ├── outlined-navigation-maximize.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-maximize.pdf │ │ ├── outlined-navigation-menu.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-menu.pdf │ │ ├── outlined-navigation-minimize.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-minimize.pdf │ │ ├── outlined-navigation-opennew.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-opennew.pdf │ │ ├── outlined-navigation-shuffle.imageset │ │ ├── Contents.json │ │ └── outlined-navigation-shuffle.pdf │ │ ├── outlined-place-bus.imageset │ │ ├── Contents.json │ │ └── outlined-place-bus.pdf │ │ ├── outlined-place-forklift.imageset │ │ ├── Contents.json │ │ └── outlined-place-forklift.pdf │ │ ├── outlined-place-gps.imageset │ │ ├── Contents.json │ │ └── outlined-place-gps.pdf │ │ ├── outlined-place-local.imageset │ │ ├── Contents.json │ │ └── outlined-place-local.pdf │ │ ├── outlined-place-rocket.imageset │ │ ├── Contents.json │ │ └── outlined-place-rocket.pdf │ │ ├── outlined-place-runningtruck.imageset │ │ ├── Contents.json │ │ └── outlined-place-runningtruck.pdf │ │ ├── outlined-place-target.imageset │ │ ├── Contents.json │ │ └── outlined-place-target.pdf │ │ ├── outlined-place-truck.imageset │ │ ├── Contents.json │ │ └── outlined-place-truck.pdf │ │ ├── outlined-place-waze.imageset │ │ ├── Contents.json │ │ └── outlined-place-waze.pdf │ │ ├── outlined-product-abandonedbag.imageset │ │ ├── Contents.json │ │ └── outlined-product-abandonedbag.pdf │ │ ├── outlined-product-accessories.imageset │ │ ├── Contents.json │ │ └── outlined-product-accessories.pdf │ │ ├── outlined-product-ambientspray.imageset │ │ ├── Contents.json │ │ └── outlined-product-ambientspray.pdf │ │ ├── outlined-product-backpack.imageset │ │ ├── Contents.json │ │ └── outlined-product-backpack.pdf │ │ ├── outlined-product-bagproduct.imageset │ │ ├── Contents.json │ │ └── outlined-product-bagproduct.pdf │ │ ├── outlined-product-beard.imageset │ │ ├── Contents.json │ │ └── outlined-product-beard.pdf │ │ ├── outlined-product-blush.imageset │ │ ├── Contents.json │ │ └── outlined-product-blush.pdf │ │ ├── outlined-product-bodycream.imageset │ │ ├── Contents.json │ │ └── outlined-product-bodycream.pdf │ │ ├── outlined-product-bodysplash.imageset │ │ ├── Contents.json │ │ └── outlined-product-bodysplash.pdf │ │ ├── outlined-product-brandsproduct.imageset │ │ ├── Contents.json │ │ └── outlined-product-brandsproduct.pdf │ │ ├── outlined-product-candlearomatic.imageset │ │ ├── Contents.json │ │ └── outlined-product-candlearomatic.pdf │ │ ├── outlined-product-candlescented.imageset │ │ ├── Contents.json │ │ └── outlined-product-candlescented.pdf │ │ ├── outlined-product-childish.imageset │ │ ├── Contents.json │ │ └── outlined-product-childish.pdf │ │ ├── outlined-product-combcream.imageset │ │ ├── Contents.json │ │ └── outlined-product-combcream.pdf │ │ ├── outlined-product-conditioner.imageset │ │ ├── Contents.json │ │ └── outlined-product-conditioner.pdf │ │ ├── outlined-product-cube.imageset │ │ ├── Contents.json │ │ └── outlined-product-cube.pdf │ │ ├── outlined-product-dailycare.imageset │ │ ├── Contents.json │ │ └── outlined-product-dailycare.pdf │ │ ├── outlined-product-deodorantrollon.imageset │ │ ├── Contents.json │ │ └── outlined-product-deodorantrollon.pdf │ │ ├── outlined-product-ekos.imageset │ │ ├── Contents.json │ │ └── outlined-product-ekos.pdf │ │ ├── outlined-product-erlenmeyer.imageset │ │ ├── Contents.json │ │ └── outlined-product-erlenmeyer.pdf │ │ ├── outlined-product-eyeshadow.imageset │ │ ├── Contents.json │ │ └── outlined-product-eyeshadow.pdf │ │ ├── outlined-product-face.imageset │ │ ├── Contents.json │ │ └── outlined-product-face.pdf │ │ ├── outlined-product-fashion.imageset │ │ ├── Contents.json │ │ └── outlined-product-fashion.pdf │ │ ├── outlined-product-hair.imageset │ │ ├── Contents.json │ │ └── outlined-product-hair.pdf │ │ ├── outlined-product-haircream.imageset │ │ ├── Contents.json │ │ └── outlined-product-haircream.pdf │ │ ├── outlined-product-hairdetox.imageset │ │ ├── Contents.json │ │ └── outlined-product-hairdetox.pdf │ │ ├── outlined-product-hairdresser.imageset │ │ ├── Contents.json │ │ └── outlined-product-hairdresser.pdf │ │ ├── outlined-product-hairgel.imageset │ │ ├── Contents.json │ │ └── outlined-product-hairgel.pdf │ │ ├── outlined-product-lashes.imageset │ │ ├── Contents.json │ │ └── outlined-product-lashes.pdf │ │ ├── outlined-product-liner.imageset │ │ ├── Contents.json │ │ └── outlined-product-liner.pdf │ │ ├── outlined-product-lipgloss.imageset │ │ ├── Contents.json │ │ └── outlined-product-lipgloss.pdf │ │ ├── outlined-product-makeconcealer.imageset │ │ ├── Contents.json │ │ └── outlined-product-makeconcealer.pdf │ │ ├── outlined-product-makeeyeliner.imageset │ │ ├── Contents.json │ │ └── outlined-product-makeeyeliner.pdf │ │ ├── outlined-product-makefoundation.imageset │ │ ├── Contents.json │ │ └── outlined-product-makefoundation.pdf │ │ ├── outlined-product-makemask.imageset │ │ ├── Contents.json │ │ └── outlined-product-makemask.pdf │ │ ├── outlined-product-makeup.imageset │ │ ├── Contents.json │ │ └── outlined-product-makeup.pdf │ │ ├── outlined-product-mirrorwoman.imageset │ │ ├── Contents.json │ │ └── outlined-product-mirrorwoman.pdf │ │ ├── outlined-product-nailpolish.imageset │ │ ├── Contents.json │ │ └── outlined-product-nailpolish.pdf │ │ ├── outlined-product-organicalcohol.imageset │ │ ├── Contents.json │ │ └── outlined-product-organicalcohol.pdf │ │ ├── outlined-product-outlet.imageset │ │ ├── Contents.json │ │ └── outlined-product-outlet.pdf │ │ ├── outlined-product-pencil.imageset │ │ ├── Contents.json │ │ └── outlined-product-pencil.pdf │ │ ├── outlined-product-pencilblush.imageset │ │ ├── Contents.json │ │ └── outlined-product-pencilblush.pdf │ │ ├── outlined-product-perfumery.imageset │ │ ├── Contents.json │ │ └── outlined-product-perfumery.pdf │ │ ├── outlined-product-perfumeryfeminine.imageset │ │ ├── Contents.json │ │ └── outlined-product-perfumeryfeminine.pdf │ │ ├── outlined-product-perfumerymasculine.imageset │ │ ├── Contents.json │ │ └── outlined-product-perfumerymasculine.pdf │ │ ├── outlined-product-perfumerytbs.imageset │ │ ├── Contents.json │ │ └── outlined-product-perfumerytbs.pdf │ │ ├── outlined-product-powder.imageset │ │ ├── Contents.json │ │ └── outlined-product-powder.pdf │ │ ├── outlined-product-primer.imageset │ │ ├── Contents.json │ │ └── outlined-product-primer.pdf │ │ ├── outlined-product-promotionproduct.imageset │ │ ├── Contents.json │ │ └── outlined-product-promotionproduct.pdf │ │ ├── outlined-product-recyclablepackaging.imageset │ │ ├── Contents.json │ │ └── outlined-product-recyclablepackaging.pdf │ │ ├── outlined-product-refill.imageset │ │ ├── Contents.json │ │ └── outlined-product-refill.pdf │ │ ├── outlined-product-relatedproducts.imageset │ │ ├── Contents.json │ │ └── outlined-product-relatedproducts.pdf │ │ ├── outlined-product-repurchase.imageset │ │ ├── Contents.json │ │ └── outlined-product-repurchase.pdf │ │ ├── outlined-product-scent.imageset │ │ ├── Contents.json │ │ └── outlined-product-scent.pdf │ │ ├── outlined-product-shampoo.imageset │ │ ├── Contents.json │ │ └── outlined-product-shampoo.pdf │ │ ├── outlined-product-shampooconditioner.imageset │ │ ├── Contents.json │ │ └── outlined-product-shampooconditioner.pdf │ │ ├── outlined-product-shoewoman.imageset │ │ ├── Contents.json │ │ └── outlined-product-shoewoman.pdf │ │ ├── outlined-product-soapliquid.imageset │ │ ├── Contents.json │ │ └── outlined-product-soapliquid.pdf │ │ ├── outlined-product-spray.imageset │ │ ├── Contents.json │ │ └── outlined-product-spray.pdf │ │ ├── outlined-product-vegan.imageset │ │ ├── Contents.json │ │ └── outlined-product-vegan.pdf │ │ ├── outlined-social-addcontact.imageset │ │ ├── Contents.json │ │ └── outlined-social-addcontact.pdf │ │ ├── outlined-social-birthday.imageset │ │ ├── Contents.json │ │ └── outlined-social-birthday.pdf │ │ ├── outlined-social-collaborate.imageset │ │ ├── Contents.json │ │ └── outlined-social-collaborate.pdf │ │ ├── outlined-social-contact.imageset │ │ ├── Contents.json │ │ └── outlined-social-contact.pdf │ │ ├── outlined-social-digitalconsultant.imageset │ │ ├── Contents.json │ │ └── outlined-social-digitalconsultant.pdf │ │ ├── outlined-social-fireworks.imageset │ │ ├── Contents.json │ │ └── outlined-social-fireworks.pdf │ │ ├── outlined-social-groupofpeople.imageset │ │ ├── Contents.json │ │ └── outlined-social-groupofpeople.pdf │ │ ├── outlined-social-management.imageset │ │ ├── Contents.json │ │ └── outlined-social-management.pdf │ │ ├── outlined-social-myprofile.imageset │ │ ├── Contents.json │ │ └── outlined-social-myprofile.pdf │ │ ├── outlined-social-network.imageset │ │ ├── Contents.json │ │ └── outlined-social-network.pdf │ │ ├── outlined-social-nightlife.imageset │ │ ├── Contents.json │ │ └── outlined-social-nightlife.pdf │ │ ├── outlined-social-person.imageset │ │ ├── Contents.json │ │ └── outlined-social-person.pdf │ │ ├── outlined-social-pregnant.imageset │ │ ├── Contents.json │ │ └── outlined-social-pregnant.pdf │ │ ├── outlined-social-sparks.imageset │ │ ├── Contents.json │ │ └── outlined-social-sparks.pdf │ │ └── outlined-social-userlock.imageset │ │ ├── Contents.json │ │ └── outlined-social-userlock.pdf ├── Public │ ├── Animations │ │ └── Pulsable.swift │ ├── AvailableTheme.swift │ ├── Components │ │ ├── Alert │ │ │ ├── NatAlert+Style.swift │ │ │ └── NatAlert.swift │ │ ├── AppBar │ │ │ ├── AppBarColor.swift │ │ │ ├── AppBarContentType.swift │ │ │ ├── UIBarButtonItem+Icon.swift │ │ │ ├── UINavigationController+Configure.swift │ │ │ └── UIViewController+Configure.swift │ │ ├── Avatar │ │ │ ├── GaYaAvatar+Size.swift │ │ │ ├── GaYaAvatar+Type.swift │ │ │ ├── GaYaAvatar.swift │ │ │ ├── NatAvatar+Size.swift │ │ │ ├── NatAvatar+Type.swift │ │ │ └── NatAvatar.swift │ │ ├── Badge │ │ │ ├── NatBadge+Animation.swift │ │ │ ├── NatBadge+Color.swift │ │ │ ├── NatBadge+Limit.swift │ │ │ ├── NatBadge+Style.swift │ │ │ ├── NatBadge.swift │ │ │ └── Protocol │ │ │ │ └── Badgeable.swift │ │ ├── Bar │ │ │ └── SearchBar.swift │ │ ├── Button │ │ │ ├── GaYaButton+Color.swift │ │ │ ├── GaYaButton+EdgeInsets.swift │ │ │ ├── GaYaButton+Height.swift │ │ │ ├── GaYaButton+Icon.swift │ │ │ ├── GaYaButton+Style.swift │ │ │ ├── GaYaButton.swift │ │ │ ├── NatButton+Color.swift │ │ │ ├── NatButton+EdgeInsets.swift │ │ │ ├── NatButton+Height.swift │ │ │ ├── NatButton+Icon.swift │ │ │ ├── NatButton+Style.swift │ │ │ └── NatButton.swift │ │ ├── Card │ │ │ └── NatCard.swift │ │ ├── Chip │ │ │ ├── GaYaChip+Color.swift │ │ │ ├── GaYaChip+Position.swift │ │ │ ├── GaYaChip+Size.swift │ │ │ ├── GaYaChip.swift │ │ │ ├── NatChip+Color.swift │ │ │ ├── NatChip+Position.swift │ │ │ ├── NatChip+Size.swift │ │ │ └── NatChip.swift │ │ ├── ChipFilter │ │ │ ├── GaYaChipFilter+Color.swift │ │ │ ├── GaYaChipFilter+Position.swift │ │ │ ├── GaYaChipFilter+Size.swift │ │ │ ├── GaYaChipFilter.swift │ │ │ ├── NatChipFilter+Color.swift │ │ │ ├── NatChipFilter+Position.swift │ │ │ ├── NatChipFilter+Size.swift │ │ │ └── NatChipFilter.swift │ │ ├── Counter │ │ │ ├── NatCounter+CounterButtonType.swift │ │ │ ├── NatCounter+Size.swift │ │ │ ├── NatCounter+State.swift │ │ │ ├── NatCounter.swift │ │ │ └── NatCounterButton.swift │ │ ├── Dialog │ │ │ ├── Builders │ │ │ │ ├── NatDialogController+AlertStyleBuilder.swift │ │ │ │ ├── NatDialogController+StandardStyleBuilder.swift │ │ │ │ └── Protocols │ │ │ │ │ ├── NatDialogBodyConfigurable.swift │ │ │ │ │ ├── NatDialogBuilder.swift │ │ │ │ │ ├── NatDialogCompletionHandlerConfigurable.swift │ │ │ │ │ ├── NatDialogCustomBodyConfigurable.swift │ │ │ │ │ ├── NatDialogDismissableConfigurable.swift │ │ │ │ │ ├── NatDialogDividerConfigurable.swift │ │ │ │ │ └── NatDialogTitleConfigurable.swift │ │ │ ├── DialogButtonConfiguration.swift │ │ │ ├── DialogViewModel.swift │ │ │ └── NatDialogController.swift │ │ ├── Divider │ │ │ ├── Divider+Style.swift │ │ │ └── Divider.swift │ │ ├── ExpansionPanel │ │ │ ├── ExpansionPanel+Margin.swift │ │ │ └── ExpansionPanel.swift │ │ ├── Field │ │ │ ├── NatField.swift │ │ │ ├── TextField+FeedbackState.swift │ │ │ ├── TextField+InteractionState.swift │ │ │ ├── TextField+Size.swift │ │ │ ├── TextField.swift │ │ │ └── TextFieldType.swift │ │ ├── GaYaBadge │ │ │ ├── GaYaBadge+Animation.swift │ │ │ ├── GaYaBadge+Color.swift │ │ │ ├── GaYaBadge+Limit.swift │ │ │ ├── GaYaBadge+Style.swift │ │ │ ├── GaYaBadge.swift │ │ │ └── Protocol │ │ │ │ └── GaYaBadgeable.swift │ │ ├── GaYaCheckbox │ │ │ ├── GaYaCheckbox.swift │ │ │ ├── GaYaCheckboxContainer.swift │ │ │ ├── GaYaCheckboxControl+Style.swift │ │ │ └── GaYaCheckboxControl.swift │ │ ├── GaYaCounter │ │ │ ├── GaYaCounter+CounterButtonType.swift │ │ │ ├── GaYaCounter+Size.swift │ │ │ ├── GaYaCounter+State.swift │ │ │ ├── GaYaCounter.swift │ │ │ └── GaYaCounterButton.swift │ │ ├── GaYaRadioButton │ │ │ ├── GaYaRadioButton.swift │ │ │ ├── GaYaRadioButtonContainer.swift │ │ │ ├── GaYaRadioButtonControl+Style.swift │ │ │ ├── GaYaRadioButtonControl.swift │ │ │ └── GaYaRadioButtonGroup.swift │ │ ├── GaYaSelect │ │ │ └── GaYaSelect.swift │ │ ├── GaYaSelector │ │ │ ├── GaYaSelectionControl+State.swift │ │ │ ├── GaYaSelectionControl+Style.swift │ │ │ ├── GaYaSelectionControl.swift │ │ │ └── GaYaSelectorProtocol.swift │ │ ├── GaYaTab │ │ │ ├── GaYaTab.swift │ │ │ └── GaYaTabItemView.swift │ │ ├── GaYaTextField │ │ │ ├── GaYaField.swift │ │ │ ├── GaYaTextField+FeedbackState.swift │ │ │ ├── GaYaTextField+InteractionState.swift │ │ │ ├── GaYaTextField+Size.swift │ │ │ ├── GaYaTextField.swift │ │ │ └── GaYaTextFieldType.swift │ │ ├── Icon.swift │ │ ├── IconButton │ │ │ ├── GaYaIconButton+Color.swift │ │ │ ├── GaYaIconButton+Sizes.swift │ │ │ ├── GaYaIconButton+Styles.swift │ │ │ ├── GaYaIconButton.swift │ │ │ ├── NatIconButton+Backgrounds.swift │ │ │ ├── NatIconButton+Sizes.swift │ │ │ ├── NatIconButton+Styles.swift │ │ │ └── NatIconButton.swift │ │ ├── Icons │ │ │ ├── IconView.swift │ │ │ └── NatLogoImages.swift │ │ ├── Image │ │ │ ├── NatGradientImageView.swift │ │ │ ├── NatImage+Fade.swift │ │ │ ├── NatImage+Radius.swift │ │ │ ├── NatImage+Type.swift │ │ │ └── NatImage.swift │ │ ├── ListItem │ │ │ ├── NatListItem+Feedback.swift │ │ │ └── NatListItem.swift │ │ ├── Logo │ │ │ ├── NatLogo+Color.swift │ │ │ ├── NatLogo+Model.swift │ │ │ ├── NatLogo+Size.swift │ │ │ └── NatLogo.swift │ │ ├── NavigationDrawer │ │ │ ├── NavigationDrawer+IndexMenu.swift │ │ │ ├── NavigationDrawer.swift │ │ │ ├── NavigationDrawerItemCell.swift │ │ │ └── NavigationDrawerSubitemCell.swift │ │ ├── ProgressIndicator │ │ │ ├── NatProgressIndicatorCircular+Animation.swift │ │ │ ├── NatProgressIndicatorCircular+Constants.swift │ │ │ ├── NatProgressIndicatorCircular+Size.swift │ │ │ └── NatProgressIndicatorCircular.swift │ │ ├── Rating │ │ │ ├── NatRating+Alignment.swift │ │ │ ├── NatRating+Size.swift │ │ │ ├── NatRating+State.swift │ │ │ ├── NatRating+Style.swift │ │ │ └── NatRating.swift │ │ ├── Select │ │ │ └── NatSelect.swift │ │ ├── SelectionControl │ │ │ ├── NatCheckbox │ │ │ │ ├── NatCheckbox.swift │ │ │ │ ├── NatCheckboxContainer.swift │ │ │ │ ├── NatCheckboxControl+Style.swift │ │ │ │ └── NatCheckboxControl.swift │ │ │ ├── NatRadioButton │ │ │ │ ├── NatRadioButton.swift │ │ │ │ ├── NatRadioButtonContainer.swift │ │ │ │ ├── NatRadioButtonControl+Style.swift │ │ │ │ └── NatRadioButtonControl.swift │ │ │ ├── NatRadioButtonGroup │ │ │ │ └── NatRadioButtonGroup.swift │ │ │ ├── NatSelectionControl+State.swift │ │ │ ├── NatSelectionControl+Style.swift │ │ │ ├── NatSelectionControl.swift │ │ │ └── NatSelectorProtocol.swift │ │ ├── Shortcut │ │ │ ├── HelperView.swift │ │ │ ├── NatShortcut+Style.swift │ │ │ ├── NatShortcut.swift │ │ │ └── ShortcutView.swift │ │ ├── Snackbar │ │ │ └── NatSnackbar.swift │ │ ├── Switch │ │ │ └── NatSwitch.swift │ │ ├── Tab │ │ │ ├── Tab.swift │ │ │ └── TabItemView.swift │ │ ├── Tag │ │ │ ├── GaYaTag+Color.swift │ │ │ ├── GaYaTag+Size.swift │ │ │ ├── GaYaTag+Style.swift │ │ │ ├── GaYaTag.swift │ │ │ ├── NatTag+Color.swift │ │ │ ├── NatTag+Size.swift │ │ │ ├── NatTag+Style.swift │ │ │ └── NatTag.swift │ │ └── ValueText │ │ │ └── ValueTextHighlight.swift │ ├── DesignSystem.swift │ ├── DesignTokens │ │ ├── GaYaColors.swift │ │ ├── GaYaDimensions.swift │ │ ├── GaYaElevation │ │ │ ├── GaYaElevation+ElevationAttributes.swift │ │ │ └── GaYaElevation.swift │ │ ├── GaYaFonts │ │ │ ├── GaYaFonts+TextStyle.swift │ │ │ └── GaYaFonts.swift │ │ ├── GaYaGrowthPlan.swift │ │ ├── GaYaOpacity.swift │ │ ├── GaYaSizes.swift │ │ ├── NatBorderRadius.swift │ │ ├── NatColors.swift │ │ ├── NatElevation │ │ │ ├── ElevationAttributes.swift │ │ │ └── NatElevation.swift │ │ ├── NatFonts │ │ │ ├── NatFonts+TextStyle.swift │ │ │ └── NatFonts.swift │ │ ├── NatOpacities.swift │ │ ├── NatSizes.swift │ │ └── NatSpacing.swift │ ├── Extensions │ │ ├── UICollectionView+Reusable.swift │ │ └── UITableView+Reusable.swift │ └── NatDSIcons.swift └── Supporting Files │ ├── Export.swift │ ├── Info.plist │ └── NatDS.h ├── TestHelpers ├── Badge │ └── BadgeableStub.swift ├── NavigationDrawer │ └── NavigationDrawerDelegateMock.swift ├── NotificationCenter │ └── NotificationCenterSpy.swift ├── Tab │ ├── TabDelegateMock.swift │ └── TabItemViewDelegateMock.swift └── TextField │ └── TextFieldDelegateMock.swift ├── Tests ├── .swiftlint.yml ├── Core │ ├── DomainFunctions │ │ ├── GetOrCreatedCachedColor+Spec.swift │ │ └── GetThemeValidated+Spec.swift │ ├── Extensions │ │ ├── NSMutableAttributedString+BuilderTests.swift │ │ ├── String+IconTests.swift │ │ ├── UICollectionView+ReusableTests.swift │ │ ├── UIColor+HexTests.swift │ │ ├── UITableView+ReusableTests.swift │ │ └── UIVIew │ │ │ ├── UIView+CenterBounds+Specs.swift │ │ │ └── UIView+FrameTests.swift │ ├── NotificationCenter │ │ └── EventNames │ │ │ └── Notification+Name+ThemeHasChanged+Spec.swift │ ├── Theme │ │ └── SingleSourceOfTruth │ │ │ └── BrandsThemes │ │ │ ├── AesopDark │ │ │ ├── AesopDarkTheme+Spec.swift │ │ │ ├── Components │ │ │ │ └── AesopDarkComponents+Logo+Spec.swift │ │ │ └── Tokens │ │ │ │ ├── AesopDarkTokens+BorderRadius+Spec.swift │ │ │ │ ├── AesopDarkTokens+Color+Spec.swift │ │ │ │ ├── AesopDarkTokens+Elevation+Spec.swift │ │ │ │ ├── AesopDarkTokens+Opacity+Spec.swift │ │ │ │ ├── AesopDarkTokens+Size+Spec.swift │ │ │ │ ├── AesopDarkTokens+Spacing+Spec.swift │ │ │ │ └── AesopDarkTokens+Typography+Spec.swift │ │ │ ├── AesopLight │ │ │ ├── AesopLightTheme+Spec.swift │ │ │ ├── Components │ │ │ │ └── AesopLightComponents+Logo+Spec.swift │ │ │ └── Tokens │ │ │ │ ├── AesopLightTokens+BorderRadius+Spec.swift │ │ │ │ ├── AesopLightTokens+Color+Spec.swift │ │ │ │ ├── AesopLightTokens+Elevation+Spec.swift │ │ │ │ ├── AesopLightTokens+Opacity+Spec.swift │ │ │ │ ├── AesopLightTokens+Size+Spec.swift │ │ │ │ ├── AesopLightTokens+Spacing+Spec.swift │ │ │ │ └── AesopLightTokens+Typography+Spec.swift │ │ │ ├── AvonDark │ │ │ ├── AvonDarkTheme+Spec.swift │ │ │ ├── Components │ │ │ │ └── AvonDarkComponents+Logo+Spec.swift │ │ │ └── Tokens │ │ │ │ ├── AvonDarkTokens+BorderRadius+Spec.swift │ │ │ │ ├── AvonDarkTokens+Color+Spec.swift │ │ │ │ ├── AvonDarkTokens+Elevation+Spec.swift │ │ │ │ ├── AvonDarkTokens+Opacity+Spec.swift │ │ │ │ ├── AvonDarkTokens+Size+Spec.swift │ │ │ │ ├── AvonDarkTokens+Spacing+Spec.swift │ │ │ │ └── AvonDarkTokens+Typography+Spec.swift │ │ │ ├── AvonLight │ │ │ ├── AvonLightTheme+Spec.swift │ │ │ ├── Components │ │ │ │ └── AvonLightComponents+Logo+Spec.swift │ │ │ └── Tokens │ │ │ │ ├── AvonLightTokens+BorderRadius+Spec.swift │ │ │ │ ├── AvonLightTokens+Color+Spec.swift │ │ │ │ ├── AvonLightTokens+Elevation+Spec.swift │ │ │ │ ├── AvonLightTokens+Opacity+Spec.swift │ │ │ │ ├── AvonLightTokens+Size+Spec.swift │ │ │ │ ├── AvonLightTokens+Spacing+Spec.swift │ │ │ │ └── AvonLightTokens+Typography+Spec.swift │ │ │ ├── NaturaDark │ │ │ ├── NaturaDarkComponents+Logo+Spec.swift │ │ │ ├── NaturaDarkTheme+Spec.swift │ │ │ └── Tokens │ │ │ │ ├── NaturaDarkTokens+BorderRadius+Spec.swift │ │ │ │ ├── NaturaDarkTokens+Color+Spec.swift │ │ │ │ ├── NaturaDarkTokens+Elevation+Spec.swift │ │ │ │ ├── NaturaDarkTokens+Opacity+Spec.swift │ │ │ │ ├── NaturaDarkTokens+Size+Spec.swift │ │ │ │ ├── NaturaDarkTokens+Spacing+Spec.swift │ │ │ │ └── NaturaDarkTokens+Typography+Spec.swift │ │ │ ├── NaturaLight │ │ │ ├── Components │ │ │ │ └── NaturaLightComponents+Logo+Spec.swift │ │ │ ├── NaturaLightTheme+Spec.swift │ │ │ └── Tokens │ │ │ │ ├── NaturaLightTokens+BorderRadius+Spec.swift │ │ │ │ ├── NaturaLightTokens+Color+Spec.swift │ │ │ │ ├── NaturaLightTokens+Elevation+Spec.swift │ │ │ │ ├── NaturaLightTokens+Opacity+Spec.swift │ │ │ │ ├── NaturaLightTokens+Size+Spec.swift │ │ │ │ ├── NaturaLightTokens+Spacing+Spec.swift │ │ │ │ └── NaturaLightTokens+Typography+Spec.swift │ │ │ ├── TheBodyShopDark │ │ │ ├── Components │ │ │ │ └── TheBodyShopDarkComponents+Logo+Spec.swift │ │ │ ├── TheBodyShopDarkTheme+Spec.swift │ │ │ └── Tokens │ │ │ │ ├── TheBodyShopDarkTokens+BorderRadius+Spec.swift │ │ │ │ ├── TheBodyShopDarkTokens+Color+Spec.swift │ │ │ │ ├── TheBodyShopDarkTokens+Elevation+Spec.swift │ │ │ │ ├── TheBodyShopDarkTokens+Opacity+Spec.swift │ │ │ │ ├── TheBodyShopDarkTokens+Size+Spec.swift │ │ │ │ ├── TheBodyShopDarkTokens+Spacing+Spec.swift │ │ │ │ └── TheBodyShopDarkTokens+Typography+Spec.swift │ │ │ └── TheBodyShopLight │ │ │ ├── Components │ │ │ └── TheBodyShopLightComponents+Logo+Spec.swift │ │ │ ├── TheBodyShopLightTheme+Spec.swift │ │ │ └── Tokens │ │ │ ├── TheBodyShopLightTokens+BorderRadius+Spec.swift │ │ │ ├── TheBodyShopLightTokens+Color+Spec.swift │ │ │ ├── TheBodyShopLightTokens+Elevation+Spec.swift │ │ │ ├── TheBodyShopLightTokens+Opacity+Spec.swift │ │ │ ├── TheBodyShopLightTokens+Size+Spec.swift │ │ │ ├── TheBodyShopLightTokens+Spacing+Spec.swift │ │ │ └── TheBodyShopLightTokens+Typography+Spec.swift │ └── ViewStyle │ │ ├── Button │ │ ├── ButtonContainedStyle+Spec.swift │ │ ├── ButtonOutlinedStyle+Spec.swift │ │ ├── ButtonStyle+Spec.swift │ │ └── ButtonTextStyle+Spec.swift │ │ ├── Dialog │ │ ├── DialogFooterView+Spec.swift │ │ └── DialogStyle+Spec.swift │ │ ├── IconButton │ │ └── IconButtonStandardStyle+Spec.swift │ │ ├── Shortcut │ │ ├── ShortcutContainedStyle+Spec.swift │ │ └── ShortcutOutlinedStyle+Spec.swift │ │ └── ViewStyle+Spec.swift ├── Helpers │ ├── AssetsHelperTests.swift │ └── ReusableViewTests.swift ├── Public │ ├── AvailableTheme+Spec.swift │ ├── Components │ │ ├── Alert │ │ │ └── NatAlert+Spec.swift │ │ ├── AppBar │ │ │ ├── Stub │ │ │ │ └── StubSelector.swift │ │ │ ├── UIBarButtonItem+Icon+Spec.swift │ │ │ ├── UINavigationController+Configure+Spec.swift │ │ │ └── UIViewController+Configure+Spec.swift │ │ ├── Avatar │ │ │ ├── NatAvatar+Sizes+Spec.swift │ │ │ ├── NatAvatar+Spec.swift │ │ │ └── NatAvatar+Styles+Spec.swift │ │ ├── Badge │ │ │ ├── NatBadge+Color+Spec.swift │ │ │ ├── NatBadge+Dot+Spec.swift │ │ │ ├── NatBadge+Pulse.swift │ │ │ ├── NatBadge+Standard+Spec.swift │ │ │ └── Protocol │ │ │ │ └── Badgeable+Spec.swift │ │ ├── Button │ │ │ ├── NatButton+EdgeInsets+Spec.swift │ │ │ ├── NatButton+Height+Spec.swift │ │ │ ├── NatButton+Specs.swift │ │ │ ├── PulseLayerTests.swift │ │ │ └── Pusable │ │ │ │ ├── Pulsable+Spec.swift │ │ │ │ └── PulseLayer+Spec.swift │ │ ├── Card │ │ │ └── NatCard+Spec.swift │ │ ├── Checkbox │ │ │ └── Checkbox+Spec.swift │ │ ├── Chip │ │ │ └── Chip+Spec.swift │ │ ├── Counter │ │ │ ├── NatCounter+Size+Spec.swift │ │ │ └── NatCounter+Spec.swift │ │ ├── Dialog │ │ │ ├── Builders │ │ │ │ ├── NatDialogController+AlertStyleBuilder+Spec.swift │ │ │ │ ├── NatDialogController+StandardStyleBuilder+Spec.swift │ │ │ │ ├── NatDialogController+ViewModel+Spec.swift │ │ │ │ └── Protocols │ │ │ │ │ ├── NatDialogBodyConfigurable+Spec.swift │ │ │ │ │ ├── NatDialogCustomBodyConfigurable+Spec.swift │ │ │ │ │ ├── NatDialogDismissableConfigurable+Spec.swift │ │ │ │ │ ├── NatDialogDividerConfigurable+Spec.swift │ │ │ │ │ └── NatDialogTitleConfigurable+Spec.swift │ │ │ └── NatDialogController+Spec.swift │ │ ├── Divider │ │ │ ├── Divider+Spec.swift │ │ │ └── Divider+Styles+Spec.swift │ │ ├── ExpansionPanel │ │ │ ├── ExpansionPanel+MarginTests.swift │ │ │ └── ExpansionPanel+Spec.swift │ │ ├── Field │ │ │ ├── TextField+InteractionStates+Spec.swift │ │ │ ├── TextField+Sizes+Spec.swift │ │ │ ├── TextField+Spec.swift │ │ │ ├── TextField+States+Spec.swift │ │ │ ├── TextField+Types+Spec.swift │ │ │ └── TextFieldDelegateTests.swift │ │ ├── IconButton │ │ │ ├── NatIconButton+Sizes+Specs.swift │ │ │ └── NatIconButton+Spec.swift │ │ ├── Icons │ │ │ └── IconViewSpec.swift │ │ ├── Image │ │ │ └── NatImage+Spec.swift │ │ ├── List │ │ │ └── NatListItem+Spec.swift │ │ ├── Logo │ │ │ └── NatLogo+Spec.swift │ │ ├── NavigationDrawer │ │ │ ├── NavigationDrawer+IndexMenuTests.swift │ │ │ ├── NavigationDrawerItemCellTests.swift │ │ │ ├── NavigationDrawerSubitemCellTests.swift │ │ │ └── NavigationDrawerTests.swift │ │ ├── ProgressIndicator │ │ │ ├── ProgressIndicatorCircular+Size+Spec.swift │ │ │ └── ProgressIndicatorCircular+Spec.swift │ │ ├── RadioButton │ │ │ └── RadioButton+Spec.swift │ │ ├── Rating │ │ │ ├── NatRating+Counter+Spec.swift │ │ │ ├── NatRating+Input+Spec.swift │ │ │ └── NatRating+ReadOnly+Spec.swift │ │ ├── SelectionControl │ │ │ ├── SelectionControl+Checkbox+Spec.swift │ │ │ └── SelectionControl+RadioButton+Spec.swift │ │ ├── Shortcut │ │ │ └── NatShortcut+Spec.swift │ │ ├── Switch │ │ │ └── Switch+Spec.swift │ │ ├── Tab │ │ │ ├── TabItemViewTests.swift │ │ │ └── TabTests.swift │ │ └── Tag │ │ │ └── NatTag+Spec.swift │ ├── DesignSystem+Spec.swift │ ├── DesignTokens │ │ ├── Fonts │ │ │ └── Style │ │ │ │ └── FontIconStyleTests.swift │ │ ├── NatBorderRadius+Spec.swift │ │ ├── NatColorsSpec │ │ │ └── NatColors+Spec.swift │ │ ├── NatElevations+Spec.swift │ │ ├── NatFonts │ │ │ └── NatFonts+Spec.swift │ │ ├── NatOpacities+Spec.swift │ │ ├── NatSizes+Spec.swift │ │ └── NatSpacing+Spec.swift │ └── Icon │ │ └── NatLogoImages │ │ ├── Aesop │ │ ├── NatLogoImages+AesopDark+Spec.swift │ │ └── NatLogoImages+AesopLight+Spec.swift │ │ ├── Avon │ │ ├── NatLogoImages+AvonDark+Spec.swift │ │ └── NatLogoImages+AvonLight+Spec.swift │ │ ├── Natura │ │ ├── NatLogoImages+NaturaDark+Spec.swift │ │ └── NatLogoImages+NaturaLight+Spec.swift │ │ └── TheBodyShop │ │ ├── NatLogoImages+TheBodyShopDark+Spec.swift │ │ └── NatLogoImages+TheBodyShopLight+Spec.swift └── Supporting Files │ ├── Info.plist │ └── TestingHelpers │ ├── ElevationAttributes+Equitable.swift │ ├── IconMock.swift │ ├── Theme │ └── StubTheme.swift │ ├── UIColor+AsHexString.swift │ ├── UIFont+GetWeight.swift │ └── UIGestureRecognizer+SendGesturesEvent.swift ├── components.json ├── docs ├── Getting started.md ├── How to contribute.md ├── How to use icons.md ├── Setup.md └── documentation │ ├── Classes.html │ ├── Classes │ ├── DesignSystem.html │ ├── Divider.html │ ├── Divider │ │ └── Styles.html │ ├── ExpansionPanel.html │ ├── ExpansionPanel │ │ ├── ExpansionAction.html │ │ └── Margin.html │ ├── IconView.html │ ├── NatAlert.html │ ├── NatAlert │ │ ├── AlertStyle.html │ │ └── AlertType.html │ ├── NatAvatar.html │ ├── NatAvatar │ │ ├── Size.html │ │ └── Types.html │ ├── NatBadge.html │ ├── NatBadge │ │ ├── Color.html │ │ ├── Limit.html │ │ └── Style.html │ ├── NatButton.html │ ├── NatButton │ │ ├── ButtonHeight.html │ │ ├── EdgeInsets.html │ │ ├── Height.html │ │ ├── Position.html │ │ └── Style.html │ ├── NatCard.html │ ├── NatCheckbox.html │ ├── NatChip.html │ ├── NatChip │ │ ├── Color.html │ │ ├── Position.html │ │ ├── Size.html │ │ └── ThemeColor.html │ ├── NatChipFilter.html │ ├── NatChipFilter │ │ ├── Color.html │ │ ├── Position.html │ │ ├── Size.html │ │ └── ThemeColor.html │ ├── NatCounter.html │ ├── NatCounter │ │ ├── CounterButtonType.html │ │ ├── MinValue.html │ │ ├── Size.html │ │ └── State.html │ ├── NatDialogController.html │ ├── NatDialogController │ │ ├── AlertStyleBuilder.html │ │ └── StandardStyleBuilder.html │ ├── NatField.html │ ├── NatIconButton.html │ ├── NatIconButton │ │ ├── Background.html │ │ ├── Sizes.html │ │ ├── State.html │ │ └── Style.html │ ├── NatImage.html │ ├── NatImage │ │ ├── ImageFadeDirection.html │ │ ├── ImageRadius.html │ │ └── ImageType.html │ ├── NatListItemCell.html │ ├── NatListItemCell │ │ └── FeedbackStyle.html │ ├── NatLogo.html │ ├── NatLogo │ │ ├── Color.html │ │ ├── Language.html │ │ ├── Model.html │ │ └── Size.html │ ├── NatProgressIndicatorCircular.html │ ├── NatProgressIndicatorCircular │ │ ├── Action.html │ │ └── Size.html │ ├── NatRadioButton.html │ ├── NatRadioButtonGroup.html │ ├── NatRating.html │ ├── NatRating │ │ ├── Alignment.html │ │ ├── Size.html │ │ ├── State.html │ │ └── Style.html │ ├── NatSelect.html │ ├── NatSelectionControl.html │ ├── NatSelectionControl │ │ └── Style.html │ ├── NatShortcut.html │ ├── NatShortcut │ │ ├── Color.html │ │ ├── State.html │ │ └── Style.html │ ├── NatSnackbar.html │ ├── NatSnackbar │ │ ├── SnackbarColor.html │ │ ├── SnackbarDuration.html │ │ └── SnackbarPosition.html │ ├── NatSwitch.html │ ├── NatTag.html │ ├── NatTag │ │ ├── Color.html │ │ ├── Size.html │ │ ├── Style.html │ │ └── ThemeColor.html │ ├── NavigationDrawer.html │ ├── NavigationDrawer │ │ └── IndexMenu.html │ ├── NavigationDrawerItemCell.html │ ├── NavigationDrawerItemCell │ │ ├── NavigationAction.html │ │ ├── NavigationAdd.html │ │ ├── NavigationItemType.html │ │ └── State.html │ ├── NavigationDrawerSubitemCell.html │ ├── NavigationDrawerSubitemCell │ │ └── State.html │ ├── SearchBar.html │ ├── ShortcutView.html │ ├── Tab.html │ ├── Tab │ │ └── Position.html │ ├── TextField.html │ ├── TextField │ │ ├── FeedbackState.html │ │ ├── InteractionState.html │ │ ├── Size.html │ │ └── ThemeColor.html │ └── ValueTextHighlight.html │ ├── Enums.html │ ├── Enums │ ├── AppBarColor.html │ ├── AppBarContentType.html │ ├── AvailableTheme.html │ ├── CustomFontStyle.html │ ├── Icon.html │ ├── NatBorderRadius.html │ ├── NatOpacities.html │ ├── NatSizes.html │ ├── NatSpacing.html │ └── TextFieldType.html │ ├── Extensions.html │ ├── Extensions │ ├── UIBarButtonItem.html │ ├── UICollectionView.html │ ├── UINavigationController.html │ ├── UINavigationController │ │ └── Style.html │ ├── UITableView.html │ ├── UIViewController.html │ └── UIViewController │ │ └── TitleStyle.html │ ├── Guides.html │ ├── Protocols.html │ ├── Protocols │ ├── Badgeable.html │ ├── NatDialogBodyConfigurable.html │ ├── NatDialogBuilder.html │ ├── NatDialogCompletionHandlerConfigurable.html │ ├── NatDialogCustomBodyConfigurable.html │ ├── NatDialogDismissableConfigurable.html │ ├── NatDialogDividerConfigurable.html │ ├── NatDialogTitleConfigurable.html │ ├── NavigationDrawerDelegate.html │ ├── Pulsable.html │ ├── ReusableView.html │ ├── TabDelegate.html │ └── TextFieldDelegate.html │ ├── Structs.html │ ├── Structs │ ├── IllustrationIcons.html │ ├── IllustrationIcons │ │ └── Lined.html │ ├── NatColors.html │ ├── NatElevation.html │ ├── NatElevation │ │ └── Elevation.html │ ├── NatFonts.html │ ├── NatFonts │ │ ├── Size.html │ │ └── Weight.html │ └── NatLogoImages.html │ ├── Typealiases.html │ ├── badge.svg │ ├── css │ ├── highlight.css │ └── jazzy.css │ ├── docsets │ ├── NatDS.docset │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── Documents │ │ │ ├── Classes.html │ │ │ ├── Classes │ │ │ │ ├── DesignSystem.html │ │ │ │ ├── Divider.html │ │ │ │ ├── Divider │ │ │ │ │ └── Styles.html │ │ │ │ ├── ExpansionPanel.html │ │ │ │ ├── ExpansionPanel │ │ │ │ │ ├── ExpansionAction.html │ │ │ │ │ └── Margin.html │ │ │ │ ├── IconView.html │ │ │ │ ├── NatAlert.html │ │ │ │ ├── NatAlert │ │ │ │ │ ├── AlertStyle.html │ │ │ │ │ └── AlertType.html │ │ │ │ ├── NatAvatar.html │ │ │ │ ├── NatAvatar │ │ │ │ │ ├── Size.html │ │ │ │ │ └── Types.html │ │ │ │ ├── NatBadge.html │ │ │ │ ├── NatBadge │ │ │ │ │ ├── Color.html │ │ │ │ │ ├── Limit.html │ │ │ │ │ └── Style.html │ │ │ │ ├── NatButton.html │ │ │ │ ├── NatButton │ │ │ │ │ ├── ButtonHeight.html │ │ │ │ │ ├── EdgeInsets.html │ │ │ │ │ ├── Height.html │ │ │ │ │ ├── Position.html │ │ │ │ │ └── Style.html │ │ │ │ ├── NatCard.html │ │ │ │ ├── NatCheckbox.html │ │ │ │ ├── NatChip.html │ │ │ │ ├── NatChip │ │ │ │ │ ├── Color.html │ │ │ │ │ ├── Position.html │ │ │ │ │ ├── Size.html │ │ │ │ │ └── ThemeColor.html │ │ │ │ ├── NatChipFilter.html │ │ │ │ ├── NatChipFilter │ │ │ │ │ ├── Color.html │ │ │ │ │ ├── Position.html │ │ │ │ │ ├── Size.html │ │ │ │ │ └── ThemeColor.html │ │ │ │ ├── NatCounter.html │ │ │ │ ├── NatCounter │ │ │ │ │ ├── CounterButtonType.html │ │ │ │ │ ├── MinValue.html │ │ │ │ │ ├── Size.html │ │ │ │ │ └── State.html │ │ │ │ ├── NatDialogController.html │ │ │ │ ├── NatDialogController │ │ │ │ │ ├── AlertStyleBuilder.html │ │ │ │ │ └── StandardStyleBuilder.html │ │ │ │ ├── NatField.html │ │ │ │ ├── NatIconButton.html │ │ │ │ ├── NatIconButton │ │ │ │ │ ├── Background.html │ │ │ │ │ ├── Sizes.html │ │ │ │ │ ├── State.html │ │ │ │ │ └── Style.html │ │ │ │ ├── NatImage.html │ │ │ │ ├── NatImage │ │ │ │ │ ├── ImageFadeDirection.html │ │ │ │ │ ├── ImageRadius.html │ │ │ │ │ └── ImageType.html │ │ │ │ ├── NatListItemCell.html │ │ │ │ ├── NatListItemCell │ │ │ │ │ └── FeedbackStyle.html │ │ │ │ ├── NatLogo.html │ │ │ │ ├── NatLogo │ │ │ │ │ ├── Color.html │ │ │ │ │ ├── Language.html │ │ │ │ │ ├── Model.html │ │ │ │ │ └── Size.html │ │ │ │ ├── NatProgressIndicatorCircular.html │ │ │ │ ├── NatProgressIndicatorCircular │ │ │ │ │ ├── Action.html │ │ │ │ │ └── Size.html │ │ │ │ ├── NatRadioButton.html │ │ │ │ ├── NatRadioButtonGroup.html │ │ │ │ ├── NatRating.html │ │ │ │ ├── NatRating │ │ │ │ │ ├── Alignment.html │ │ │ │ │ ├── Size.html │ │ │ │ │ ├── State.html │ │ │ │ │ └── Style.html │ │ │ │ ├── NatSelect.html │ │ │ │ ├── NatSelectionControl.html │ │ │ │ ├── NatSelectionControl │ │ │ │ │ └── Style.html │ │ │ │ ├── NatShortcut.html │ │ │ │ ├── NatShortcut │ │ │ │ │ ├── Color.html │ │ │ │ │ ├── State.html │ │ │ │ │ └── Style.html │ │ │ │ ├── NatSnackbar.html │ │ │ │ ├── NatSnackbar │ │ │ │ │ ├── SnackbarColor.html │ │ │ │ │ ├── SnackbarDuration.html │ │ │ │ │ └── SnackbarPosition.html │ │ │ │ ├── NatSwitch.html │ │ │ │ ├── NatTag.html │ │ │ │ ├── NatTag │ │ │ │ │ ├── Color.html │ │ │ │ │ ├── Size.html │ │ │ │ │ ├── Style.html │ │ │ │ │ └── ThemeColor.html │ │ │ │ ├── NavigationDrawer.html │ │ │ │ ├── NavigationDrawer │ │ │ │ │ └── IndexMenu.html │ │ │ │ ├── NavigationDrawerItemCell.html │ │ │ │ ├── NavigationDrawerItemCell │ │ │ │ │ ├── NavigationAction.html │ │ │ │ │ ├── NavigationAdd.html │ │ │ │ │ ├── NavigationItemType.html │ │ │ │ │ └── State.html │ │ │ │ ├── NavigationDrawerSubitemCell.html │ │ │ │ ├── NavigationDrawerSubitemCell │ │ │ │ │ └── State.html │ │ │ │ ├── SearchBar.html │ │ │ │ ├── ShortcutView.html │ │ │ │ ├── Tab.html │ │ │ │ ├── Tab │ │ │ │ │ └── Position.html │ │ │ │ ├── TextField.html │ │ │ │ ├── TextField │ │ │ │ │ ├── FeedbackState.html │ │ │ │ │ ├── InteractionState.html │ │ │ │ │ ├── Size.html │ │ │ │ │ └── ThemeColor.html │ │ │ │ └── ValueTextHighlight.html │ │ │ ├── Enums.html │ │ │ ├── Enums │ │ │ │ ├── AppBarColor.html │ │ │ │ ├── AppBarContentType.html │ │ │ │ ├── AvailableTheme.html │ │ │ │ ├── CustomFontStyle.html │ │ │ │ ├── Icon.html │ │ │ │ ├── NatBorderRadius.html │ │ │ │ ├── NatOpacities.html │ │ │ │ ├── NatSizes.html │ │ │ │ ├── NatSpacing.html │ │ │ │ └── TextFieldType.html │ │ │ ├── Extensions.html │ │ │ ├── Extensions │ │ │ │ ├── UIBarButtonItem.html │ │ │ │ ├── UICollectionView.html │ │ │ │ ├── UINavigationController.html │ │ │ │ ├── UINavigationController │ │ │ │ │ └── Style.html │ │ │ │ ├── UITableView.html │ │ │ │ ├── UIViewController.html │ │ │ │ └── UIViewController │ │ │ │ │ └── TitleStyle.html │ │ │ ├── Guides.html │ │ │ ├── Protocols.html │ │ │ ├── Protocols │ │ │ │ ├── Badgeable.html │ │ │ │ ├── NatDialogBodyConfigurable.html │ │ │ │ ├── NatDialogBuilder.html │ │ │ │ ├── NatDialogCompletionHandlerConfigurable.html │ │ │ │ ├── NatDialogCustomBodyConfigurable.html │ │ │ │ ├── NatDialogDismissableConfigurable.html │ │ │ │ ├── NatDialogDividerConfigurable.html │ │ │ │ ├── NatDialogTitleConfigurable.html │ │ │ │ ├── NavigationDrawerDelegate.html │ │ │ │ ├── Pulsable.html │ │ │ │ ├── ReusableView.html │ │ │ │ ├── TabDelegate.html │ │ │ │ └── TextFieldDelegate.html │ │ │ ├── Structs.html │ │ │ ├── Structs │ │ │ │ ├── IllustrationIcons.html │ │ │ │ ├── IllustrationIcons │ │ │ │ │ └── Lined.html │ │ │ │ ├── NatColors.html │ │ │ │ ├── NatElevation.html │ │ │ │ ├── NatElevation │ │ │ │ │ └── Elevation.html │ │ │ │ ├── NatFonts.html │ │ │ │ ├── NatFonts │ │ │ │ │ ├── Size.html │ │ │ │ │ └── Weight.html │ │ │ │ └── NatLogoImages.html │ │ │ ├── Typealiases.html │ │ │ ├── badge.svg │ │ │ ├── css │ │ │ │ ├── highlight.css │ │ │ │ └── jazzy.css │ │ │ ├── getting-started.html │ │ │ ├── getting-started.html-e │ │ │ ├── how-to-contribute.html │ │ │ ├── how-to-contribute.html-e │ │ │ ├── how-to-use-icons.html │ │ │ ├── img │ │ │ │ ├── carat.png │ │ │ │ ├── dash.png │ │ │ │ ├── gh.png │ │ │ │ └── spinner.gif │ │ │ ├── index.html │ │ │ ├── index.html-e │ │ │ ├── js │ │ │ │ ├── jazzy.js │ │ │ │ ├── jazzy.search.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── lunr.min.js │ │ │ │ └── typeahead.jquery.js │ │ │ ├── search.json │ │ │ ├── setup.html │ │ │ └── undocumented.json │ │ │ └── docSet.dsidx │ └── NatDS.tgz │ ├── getting-started.html │ ├── getting-started.html-e │ ├── how-to-contribute.html │ ├── how-to-contribute.html-e │ ├── how-to-use-icons.html │ ├── img │ ├── carat.png │ ├── dash.png │ ├── gh.png │ └── spinner.gif │ ├── index.html │ ├── index.html-e │ ├── js │ ├── jazzy.js │ ├── jazzy.search.js │ ├── jquery.min.js │ ├── lunr.min.js │ └── typeahead.jquery.js │ ├── search.json │ ├── setup.html │ └── undocumented.json ├── fastlane ├── Appfile ├── Fastfile ├── Matchfile └── README.md ├── scripts ├── CHANGELOG.md ├── brew.sh ├── bump_version.sh ├── message_teams.json ├── message_teams.sh ├── setup.sh ├── update_docs.sh ├── update_icons.sh └── update_themes.sh ├── version-theme.txt └── version.txt /.cicd/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/.cicd/Jenkinsfile -------------------------------------------------------------------------------- /.cicd/copy-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/.cicd/copy-docs.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.jazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/.jazzy.yaml -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.typo-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/.typo-ci.yml -------------------------------------------------------------------------------- /.versionrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/.versionrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Makefile -------------------------------------------------------------------------------- /NatDS.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDS.podspec -------------------------------------------------------------------------------- /NatDS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NatDS.xcodeproj/xcshareddata/xcschemes/NatDS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDS.xcodeproj/xcshareddata/xcschemes/NatDS.xcscheme -------------------------------------------------------------------------------- /NatDS.xcodeproj/xcshareddata/xcschemes/NatDSSnapShotTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDS.xcodeproj/xcshareddata/xcschemes/NatDSSnapShotTests.xcscheme -------------------------------------------------------------------------------- /NatDS.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDS.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NatDS.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDS.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /NatDSSnapShotTests/Alert/NatAlert+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Alert/NatAlert+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/AppBar/AppBar+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/AppBar/AppBar+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Avatar/NatAvatar+Snapshots+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Avatar/NatAvatar+Snapshots+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Badge/Badgeable+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Badge/Badgeable+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Badge/NatBadge+Dot+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Badge/NatBadge+Dot+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Badge/NatBadge+Pulse+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Badge/NatBadge+Pulse+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Badge/NatBadge+Standard+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Badge/NatBadge+Standard+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Bar/SearchBar+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Bar/SearchBar+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Button/NatButton+SnapShot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Button/NatButton+SnapShot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Card/NatCard+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Card/NatCard+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Checkbox/Checkbox+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Checkbox/Checkbox+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Chip/Chip+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Chip/Chip+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Counter/NatCounter+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Counter/NatCounter+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Dialog/NatDialogController+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Dialog/NatDialogController+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Divider/Divider+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Divider/Divider+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/ExpansionPanel/Helper/ViewAnimatingMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/ExpansionPanel/Helper/ViewAnimatingMock.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/IconButton/NatIconButton+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/IconButton/NatIconButton+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Icons/IconView+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Icons/IconView+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Image/Image+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Image/Image+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Info.plist -------------------------------------------------------------------------------- /NatDSSnapShotTests/ListItem/NatListItemCell+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/ListItem/NatListItemCell+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Logo/Logo+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Logo/Logo+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Rating/NatRating+Counter+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Rating/NatRating+Counter+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Rating/NatRating+Input+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Rating/NatRating+Input+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Rating/NatRating+ReadOnly+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Rating/NatRating+ReadOnly+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Shortcut/NatShortcut+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Shortcut/NatShortcut+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Switch/NatSwitch+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Switch/NatSwitch+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Tab/Tab+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Tab/Tab+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Tab/TabItem+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Tab/TabItem+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Tag/NatTag+Color+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Tag/NatTag+Color+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/Tag/NatTag+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/Tag/NatTag+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/TextField/Field+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/TextField/Field+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NatDSSnapShotTests/TextField/TextField+Snapshot+Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NatDSSnapShotTests/TextField/TextField+Snapshot+Tests.swift -------------------------------------------------------------------------------- /NewSampleApp/GaYa-NewSample/GaYa-NewSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NewSampleApp/GaYa-NewSample/GaYa-NewSample/AppDelegate.swift -------------------------------------------------------------------------------- /NewSampleApp/GaYa-NewSample/GaYa-NewSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NewSampleApp/GaYa-NewSample/GaYa-NewSample/Info.plist -------------------------------------------------------------------------------- /NewSampleApp/GaYa-NewSample/GaYa-NewSample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NewSampleApp/GaYa-NewSample/GaYa-NewSample/SceneDelegate.swift -------------------------------------------------------------------------------- /NewSampleApp/GaYa-NewSample/GaYa-NewSample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/NewSampleApp/GaYa-NewSample/GaYa-NewSample/ViewController.swift -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Package.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/README.md -------------------------------------------------------------------------------- /SampleApp/NatDS-SampleApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/NatDS-SampleApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SampleApp/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /SampleApp/Sources/ChooseBrand/ChooseBrandCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/ChooseBrand/ChooseBrandCell.swift -------------------------------------------------------------------------------- /SampleApp/Sources/ChooseBrand/ChooseBrandHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/ChooseBrand/ChooseBrandHeader.swift -------------------------------------------------------------------------------- /SampleApp/Sources/ChooseBrand/ChooseBrandViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/ChooseBrand/ChooseBrandViewController.swift -------------------------------------------------------------------------------- /SampleApp/Sources/CustomSplash/CustomSplashViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/CustomSplash/CustomSplashViewController.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/GaYaAvatar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/GaYaAvatar.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/GaYaButton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/GaYaButton.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/GaYaCheckbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/GaYaCheckbox.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/GaYaChip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/GaYaChip.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/GaYaChipFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/GaYaChipFilter.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/GaYaGrowthPlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/GaYaGrowthPlan.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/GaYaRadioButton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/GaYaRadioButton.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/GaYaTab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/GaYaTab.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/GaYaTag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/GaYaTag.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/alert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/alert.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/app-bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/app-bar.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/avatar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/avatar.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/badge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/badge.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/button.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/card.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/checkbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/checkbox.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/chip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/chip.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/chipfilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/chipfilter.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/counter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/counter.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/dialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/dialog.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/divider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/divider.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/expansion-panel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/expansion-panel.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/icon-button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/icon-button.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/icons-map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/icons-map.txt -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/image.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/alert_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/alert_1.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/alert_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/alert_2.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/alert_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/alert_3.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/alert_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/alert_4.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/appbar_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/appbar_1.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/appbar_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/appbar_10.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/appbar_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/appbar_11.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/appbar_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/appbar_12.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/appbar_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/appbar_13.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/appbar_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/appbar_14.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/appbar_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/appbar_2.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/appbar_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/appbar_3.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/appbar_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/appbar_4.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/appbar_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/appbar_5.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/appbar_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/appbar_6.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/appbar_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/appbar_7.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/appbar_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/appbar_8.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/appbar_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/appbar_9.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/avatar.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/badge.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/button_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/button_icon.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/button_inline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/button_inline.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/button_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/button_size.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/button_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/button_status.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/button_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/button_theme.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/button_variants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/button_variants.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/card.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/checkbox.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/chip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/chip.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/chipfilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/chipfilter.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/counter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/counter.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/dialog_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/dialog_1.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/dialog_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/dialog_2.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/dialog_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/dialog_3.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/dialog_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/dialog_4.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/dialog_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/dialog_5.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/dialog_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/dialog_6.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/dialog_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/dialog_7.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/dialog_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/dialog_8.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/divider.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/expansionpanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/expansionpanel.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayaavatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayaavatar.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayaavatar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayaavatar_icon.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayaavatar_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayaavatar_image.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayaavatar_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayaavatar_label.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayaavatar_themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayaavatar_themes.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayabutton_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayabutton_disabled.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayabutton_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayabutton_filled.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayabutton_ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayabutton_ghost.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayabutton_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayabutton_icons.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayabutton_outlined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayabutton_outlined.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayabutton_sizes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayabutton_sizes.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayabutton_tonal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayabutton_tonal.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayacheckbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayacheckbox.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayachip_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayachip_avatar.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayachip_colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayachip_colors.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayachip_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayachip_disabled.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayachip_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayachip_icons.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayachip_sizes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayachip_sizes.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayaradiobutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayaradiobutton.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayatab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayatab.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayatag1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayatag1.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/gayatag2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/gayatag2.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/iconbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/iconbutton.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/iconbutton_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/iconbutton_color.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/iconbutton_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/iconbutton_press.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/iconbutton_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/iconbutton_size.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/image1.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/image2.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/listitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/listitem.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/logo1.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/logo2.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/logo3.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/navigationdrawer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/navigationdrawer1.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/navigationdrawer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/navigationdrawer2.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/progressindicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/progressindicator.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/radiobutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/radiobutton.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/rating.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/select1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/select1.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/select2.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/shortcut.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/snackbar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/snackbar1.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/snackbar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/snackbar2.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/snackbar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/snackbar3.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/snackbar4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/snackbar4.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/snackbar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/snackbar5.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/snackbar6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/snackbar6.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/snackbar7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/snackbar7.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/snackbar8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/snackbar8.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/switch.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/tab.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/tag.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/textfield1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/textfield1.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/textfield2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/textfield2.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/textfield3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/textfield3.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/images/valuetexthighlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/images/valuetexthighlight.png -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/list-item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/list-item.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/logo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/logo.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/navigation-drawer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/navigation-drawer.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/progress-indicator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/progress-indicator.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/radiobutton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/radiobutton.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/rating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/rating.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/select.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/shortcut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/shortcut.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/snackbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/snackbar.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/switch.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/tab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/tab.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/tag.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/textfield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/textfield.md -------------------------------------------------------------------------------- /SampleApp/Sources/Documentation/value-text-highlight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Documentation/value-text-highlight.md -------------------------------------------------------------------------------- /SampleApp/Sources/MainDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/MainDataSource.swift -------------------------------------------------------------------------------- /SampleApp/Sources/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/MainViewController.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Components/Alert/AlertViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Components/Alert/AlertViewController.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Components/AppBar/AppBarDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Components/AppBar/AppBarDataSource.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Components/Badge/BadgeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Components/Badge/BadgeViewController.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Components/Badge/BadgeableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Components/Badge/BadgeableView.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Components/Card/CardViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Components/Card/CardViewController.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Components/Chip/ChipViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Components/Chip/ChipViewController.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Components/ComponentsSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Components/ComponentsSection.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Components/Image/ImageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Components/Image/ImageCell.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Components/Image/ImageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Components/Image/ImageViewController.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Components/ListItem/SampleCustomCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Components/ListItem/SampleCustomCell.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Components/LogoItemViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Components/LogoItemViewController.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Components/Tab/TabItemViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Components/Tab/TabItemViewController.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Components/Tag/TagViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Components/Tag/TagViewController.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Design/Colors/Cells/ColorsCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Design/Colors/Cells/ColorsCell.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Design/Colors/Cells/ColorsHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Design/Colors/Cells/ColorsHeaderView.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Design/Colors/ColorsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Design/Colors/ColorsViewController.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Design/DesignSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Design/DesignSection.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Design/Elevation/Cells/ElevationCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Design/Elevation/Cells/ElevationCell.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Design/Opacity/Cells/OpacityCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Design/Opacity/Cells/OpacityCell.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Design/Opacity/OpacityViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Design/Opacity/OpacityViewController.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Design/Size/Cells/SizeCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Design/Size/Cells/SizeCell.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Design/Size/SizeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Design/Size/SizeViewController.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Design/Spacing/Cells/SpacingCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Design/Spacing/Cells/SpacingCell.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/Design/Spacing/SpacingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/Design/Spacing/SpacingViewController.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/SampleItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/SampleItem.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Sample/SampleSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Sample/SampleSection.swift -------------------------------------------------------------------------------- /SampleApp/Sources/Supporting Files/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Supporting Files/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SampleApp/Sources/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/Supporting Files/Info.plist -------------------------------------------------------------------------------- /SampleApp/Sources/ThemeManager/BrandThemes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/ThemeManager/BrandThemes.swift -------------------------------------------------------------------------------- /SampleApp/Sources/ThemeManager/ThemeManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/SampleApp/Sources/ThemeManager/ThemeManager.swift -------------------------------------------------------------------------------- /Sources/Core/Animations/PulseLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Animations/PulseLayer.swift -------------------------------------------------------------------------------- /Sources/Core/DataSource/ConfigurationStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/DataSource/ConfigurationStorage.swift -------------------------------------------------------------------------------- /Sources/Core/DomainFunctions/GetComponentFromTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/DomainFunctions/GetComponentFromTheme.swift -------------------------------------------------------------------------------- /Sources/Core/DomainFunctions/GetOrCreatedCachedColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/DomainFunctions/GetOrCreatedCachedColor.swift -------------------------------------------------------------------------------- /Sources/Core/DomainFunctions/GetThemeValidated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/DomainFunctions/GetThemeValidated.swift -------------------------------------------------------------------------------- /Sources/Core/DomainFunctions/GetTokensFromTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/DomainFunctions/GetTokensFromTheme.swift -------------------------------------------------------------------------------- /Sources/Core/DomainFunctions/GetUIColorFromComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/DomainFunctions/GetUIColorFromComponent.swift -------------------------------------------------------------------------------- /Sources/Core/DomainFunctions/GetUIColorFromTokens.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/DomainFunctions/GetUIColorFromTokens.swift -------------------------------------------------------------------------------- /Sources/Core/Errors/DesignSystemFatalError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Errors/DesignSystemFatalError.swift -------------------------------------------------------------------------------- /Sources/Core/Extensions/NSMutableAttributedString+Builder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Extensions/NSMutableAttributedString+Builder.swift -------------------------------------------------------------------------------- /Sources/Core/Extensions/String+Attributed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Extensions/String+Attributed.swift -------------------------------------------------------------------------------- /Sources/Core/Extensions/String+Icon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Extensions/String+Icon.swift -------------------------------------------------------------------------------- /Sources/Core/Extensions/String+Initials.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Extensions/String+Initials.swift -------------------------------------------------------------------------------- /Sources/Core/Extensions/UIColor+Hex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Extensions/UIColor+Hex.swift -------------------------------------------------------------------------------- /Sources/Core/Extensions/UIFont+Icon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Extensions/UIFont+Icon.swift -------------------------------------------------------------------------------- /Sources/Core/Extensions/UIImage+UIColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Extensions/UIImage+UIColor.swift -------------------------------------------------------------------------------- /Sources/Core/Extensions/UIImage+URL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Extensions/UIImage+URL.swift -------------------------------------------------------------------------------- /Sources/Core/Extensions/UIImageView+Clickable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Extensions/UIImageView+Clickable.swift -------------------------------------------------------------------------------- /Sources/Core/Extensions/UIImageView+UIColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Extensions/UIImageView+UIColor.swift -------------------------------------------------------------------------------- /Sources/Core/Extensions/UIImageView+URL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Extensions/UIImageView+URL.swift -------------------------------------------------------------------------------- /Sources/Core/Extensions/UIView/UIView+CenterBounds.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Extensions/UIView/UIView+CenterBounds.swift -------------------------------------------------------------------------------- /Sources/Core/Extensions/UIView/UIView+Frame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Extensions/UIView/UIView+Frame.swift -------------------------------------------------------------------------------- /Sources/Core/Helpers/AssetsHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Helpers/AssetsHelper.swift -------------------------------------------------------------------------------- /Sources/Core/Helpers/AssetsPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Helpers/AssetsPath.swift -------------------------------------------------------------------------------- /Sources/Core/Helpers/Fonts/Style/CustomFontStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Helpers/Fonts/Style/CustomFontStyle.swift -------------------------------------------------------------------------------- /Sources/Core/Helpers/Fonts/Style/FontLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Helpers/Fonts/Style/FontLoader.swift -------------------------------------------------------------------------------- /Sources/Core/Helpers/Fonts/Style/FontStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Helpers/Fonts/Style/FontStyle.swift -------------------------------------------------------------------------------- /Sources/Core/Helpers/Fonts/Style/IconFontStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Helpers/Fonts/Style/IconFontStyle.swift -------------------------------------------------------------------------------- /Sources/Core/Helpers/ReusableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Helpers/ReusableView.swift -------------------------------------------------------------------------------- /Sources/Core/IconSource/IconsSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/IconSource/IconsSource.swift -------------------------------------------------------------------------------- /Sources/Core/NotificationCenter/NotificationCenterObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/NotificationCenter/NotificationCenterObservable.swift -------------------------------------------------------------------------------- /Sources/Core/NotificationCenter/NotificationCenterPostable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/NotificationCenter/NotificationCenterPostable.swift -------------------------------------------------------------------------------- /Sources/Core/Theme/BrandsThemes/Avon/AvonDarkTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Theme/BrandsThemes/Avon/AvonDarkTheme.swift -------------------------------------------------------------------------------- /Sources/Core/Theme/BrandsThemes/Avon/AvonLightTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Theme/BrandsThemes/Avon/AvonLightTheme.swift -------------------------------------------------------------------------------- /Sources/Core/Theme/BrandsThemes/AvonV2/Avonv2DarkTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Theme/BrandsThemes/AvonV2/Avonv2DarkTheme.swift -------------------------------------------------------------------------------- /Sources/Core/Theme/BrandsThemes/AvonV2/Avonv2LightTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Theme/BrandsThemes/AvonV2/Avonv2LightTheme.swift -------------------------------------------------------------------------------- /Sources/Core/Theme/BrandsThemes/AvonV3/Avonv3DarkTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Theme/BrandsThemes/AvonV3/Avonv3DarkTheme.swift -------------------------------------------------------------------------------- /Sources/Core/Theme/BrandsThemes/AvonV3/Avonv3LightTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Theme/BrandsThemes/AvonV3/Avonv3LightTheme.swift -------------------------------------------------------------------------------- /Sources/Core/Theme/BrandsThemes/Natura/NaturaDarkTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Theme/BrandsThemes/Natura/NaturaDarkTheme.swift -------------------------------------------------------------------------------- /Sources/Core/Theme/BrandsThemes/Natura/NaturaLightTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Theme/BrandsThemes/Natura/NaturaLightTheme.swift -------------------------------------------------------------------------------- /Sources/Core/Theme/BrandsThemes/NaturaV2/Naturav2DarkTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Theme/BrandsThemes/NaturaV2/Naturav2DarkTheme.swift -------------------------------------------------------------------------------- /Sources/Core/Theme/BrandsThemes/NaturaV2/Naturav2LightTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Theme/BrandsThemes/NaturaV2/Naturav2LightTheme.swift -------------------------------------------------------------------------------- /Sources/Core/Theme/BrandsThemes/NaturaV3/Naturav3DarkTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Theme/BrandsThemes/NaturaV3/Naturav3DarkTheme.swift -------------------------------------------------------------------------------- /Sources/Core/Theme/BrandsThemes/NaturaV3/Naturav3LightTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Theme/BrandsThemes/NaturaV3/Naturav3LightTheme.swift -------------------------------------------------------------------------------- /Sources/Core/Theme/BrandsThemes/ThemeProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Theme/BrandsThemes/ThemeProtocol.swift -------------------------------------------------------------------------------- /Sources/Core/ViewStyling/Button/ButtonContainedStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/ViewStyling/Button/ButtonContainedStyle.swift -------------------------------------------------------------------------------- /Sources/Core/ViewStyling/Button/ButtonOutlineStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/ViewStyling/Button/ButtonOutlineStyle.swift -------------------------------------------------------------------------------- /Sources/Core/ViewStyling/Button/ButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/ViewStyling/Button/ButtonStyle.swift -------------------------------------------------------------------------------- /Sources/Core/ViewStyling/Button/ButtonTextStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/ViewStyling/Button/ButtonTextStyle.swift -------------------------------------------------------------------------------- /Sources/Core/ViewStyling/Button/GaYaButtonFilledStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/ViewStyling/Button/GaYaButtonFilledStyle.swift -------------------------------------------------------------------------------- /Sources/Core/ViewStyling/Button/GaYaButtonGhostStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/ViewStyling/Button/GaYaButtonGhostStyle.swift -------------------------------------------------------------------------------- /Sources/Core/ViewStyling/Button/GaYaButtonOutlineStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/ViewStyling/Button/GaYaButtonOutlineStyle.swift -------------------------------------------------------------------------------- /Sources/Core/ViewStyling/Button/GaYaButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/ViewStyling/Button/GaYaButtonStyle.swift -------------------------------------------------------------------------------- /Sources/Core/ViewStyling/Button/GaYaButtonTonalStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/ViewStyling/Button/GaYaButtonTonalStyle.swift -------------------------------------------------------------------------------- /Sources/Core/ViewStyling/Dialog/DialogBodyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/ViewStyling/Dialog/DialogBodyView.swift -------------------------------------------------------------------------------- /Sources/Core/ViewStyling/Dialog/DialogFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/ViewStyling/Dialog/DialogFooterView.swift -------------------------------------------------------------------------------- /Sources/Core/ViewStyling/Dialog/DialogHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/ViewStyling/Dialog/DialogHeaderView.swift -------------------------------------------------------------------------------- /Sources/Core/ViewStyling/Dialog/DialogStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/ViewStyling/Dialog/DialogStyle.swift -------------------------------------------------------------------------------- /Sources/Core/ViewStyling/IconButton/GaYaIconButtonFilledStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/ViewStyling/IconButton/GaYaIconButtonFilledStyle.swift -------------------------------------------------------------------------------- /Sources/Core/ViewStyling/IconButton/GaYaIconButtonGhostStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/ViewStyling/IconButton/GaYaIconButtonGhostStyle.swift -------------------------------------------------------------------------------- /Sources/Core/ViewStyling/IconButton/GaYaIconButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/ViewStyling/IconButton/GaYaIconButtonStyle.swift -------------------------------------------------------------------------------- /Sources/Core/ViewStyling/IconButton/GaYaIconButtonTonalStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/ViewStyling/IconButton/GaYaIconButtonTonalStyle.swift -------------------------------------------------------------------------------- /Sources/Core/ViewStyling/IconButton/IconButtonStandardStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/ViewStyling/IconButton/IconButtonStandardStyle.swift -------------------------------------------------------------------------------- /Sources/Core/ViewStyling/Shortcut/ShortcutContainedStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/ViewStyling/Shortcut/ShortcutContainedStyle.swift -------------------------------------------------------------------------------- /Sources/Core/ViewStyling/Shortcut/ShortcutOutlinedStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/ViewStyling/Shortcut/ShortcutOutlinedStyle.swift -------------------------------------------------------------------------------- /Sources/Core/ViewStyling/ViewStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/ViewStyling/ViewStyle.swift -------------------------------------------------------------------------------- /Sources/Core/Wrappers/ViewAnimatingWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Core/Wrappers/ViewAnimatingWrapper.swift -------------------------------------------------------------------------------- /Sources/NatDS/Resources/Fonts/Aesop/SuisseIntl-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/NatDS/Resources/Fonts/Aesop/SuisseIntl-Regular.ttf -------------------------------------------------------------------------------- /Sources/NatDS/Resources/Fonts/Aesop/ZapfHumanist601BT-Roman.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/NatDS/Resources/Fonts/Aesop/ZapfHumanist601BT-Roman.ttf -------------------------------------------------------------------------------- /Sources/NatDS/Resources/Fonts/Avon/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/NatDS/Resources/Fonts/Avon/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /Sources/NatDS/Resources/Fonts/Avon/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/NatDS/Resources/Fonts/Avon/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /Sources/NatDS/Resources/Fonts/Avon/Montserrat-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/NatDS/Resources/Fonts/Avon/Montserrat-SemiBold.ttf -------------------------------------------------------------------------------- /Sources/NatDS/Resources/Fonts/TheBodyShop/DrukCy-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/NatDS/Resources/Fonts/TheBodyShop/DrukCy-Bold.ttf -------------------------------------------------------------------------------- /Sources/NatDS/Resources/Fonts/TheBodyShop/Recoleta-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/NatDS/Resources/Fonts/TheBodyShop/Recoleta-SemiBold.ttf -------------------------------------------------------------------------------- /Sources/NatDS/Resources/Fonts/TheBodyShop/WorkSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/NatDS/Resources/Fonts/TheBodyShop/WorkSans-Bold.ttf -------------------------------------------------------------------------------- /Sources/NatDS/Resources/Fonts/TheBodyShop/WorkSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/NatDS/Resources/Fonts/TheBodyShop/WorkSans-Regular.ttf -------------------------------------------------------------------------------- /Sources/NatDS/Resources/Fonts/natds-icons-ios.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/NatDS/Resources/Fonts/natds-icons-ios.ttf -------------------------------------------------------------------------------- /Sources/NatDS/Resources/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/NatDS/Resources/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Sources/NatDS/Resources/Images.xcassets/Icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/NatDS/Resources/Images.xcassets/Icons/Contents.json -------------------------------------------------------------------------------- /Sources/NatDS/Resources/Images.xcassets/Logo/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/NatDS/Resources/Images.xcassets/Logo/Contents.json -------------------------------------------------------------------------------- /Sources/Public/Animations/Pulsable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Animations/Pulsable.swift -------------------------------------------------------------------------------- /Sources/Public/AvailableTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/AvailableTheme.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Alert/NatAlert+Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Alert/NatAlert+Style.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Alert/NatAlert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Alert/NatAlert.swift -------------------------------------------------------------------------------- /Sources/Public/Components/AppBar/AppBarColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/AppBar/AppBarColor.swift -------------------------------------------------------------------------------- /Sources/Public/Components/AppBar/AppBarContentType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/AppBar/AppBarContentType.swift -------------------------------------------------------------------------------- /Sources/Public/Components/AppBar/UIBarButtonItem+Icon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/AppBar/UIBarButtonItem+Icon.swift -------------------------------------------------------------------------------- /Sources/Public/Components/AppBar/UIViewController+Configure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/AppBar/UIViewController+Configure.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Avatar/GaYaAvatar+Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Avatar/GaYaAvatar+Size.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Avatar/GaYaAvatar+Type.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Avatar/GaYaAvatar+Type.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Avatar/GaYaAvatar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Avatar/GaYaAvatar.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Avatar/NatAvatar+Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Avatar/NatAvatar+Size.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Avatar/NatAvatar+Type.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Avatar/NatAvatar+Type.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Avatar/NatAvatar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Avatar/NatAvatar.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Badge/NatBadge+Animation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Badge/NatBadge+Animation.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Badge/NatBadge+Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Badge/NatBadge+Color.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Badge/NatBadge+Limit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Badge/NatBadge+Limit.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Badge/NatBadge+Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Badge/NatBadge+Style.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Badge/NatBadge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Badge/NatBadge.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Badge/Protocol/Badgeable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Badge/Protocol/Badgeable.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Bar/SearchBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Bar/SearchBar.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Button/GaYaButton+Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Button/GaYaButton+Color.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Button/GaYaButton+EdgeInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Button/GaYaButton+EdgeInsets.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Button/GaYaButton+Height.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Button/GaYaButton+Height.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Button/GaYaButton+Icon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Button/GaYaButton+Icon.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Button/GaYaButton+Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Button/GaYaButton+Style.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Button/GaYaButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Button/GaYaButton.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Button/NatButton+Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Button/NatButton+Color.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Button/NatButton+EdgeInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Button/NatButton+EdgeInsets.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Button/NatButton+Height.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Button/NatButton+Height.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Button/NatButton+Icon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Button/NatButton+Icon.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Button/NatButton+Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Button/NatButton+Style.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Button/NatButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Button/NatButton.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Card/NatCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Card/NatCard.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Chip/GaYaChip+Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Chip/GaYaChip+Color.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Chip/GaYaChip+Position.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Chip/GaYaChip+Position.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Chip/GaYaChip+Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Chip/GaYaChip+Size.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Chip/GaYaChip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Chip/GaYaChip.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Chip/NatChip+Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Chip/NatChip+Color.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Chip/NatChip+Position.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Chip/NatChip+Position.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Chip/NatChip+Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Chip/NatChip+Size.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Chip/NatChip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Chip/NatChip.swift -------------------------------------------------------------------------------- /Sources/Public/Components/ChipFilter/GaYaChipFilter+Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/ChipFilter/GaYaChipFilter+Color.swift -------------------------------------------------------------------------------- /Sources/Public/Components/ChipFilter/GaYaChipFilter+Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/ChipFilter/GaYaChipFilter+Size.swift -------------------------------------------------------------------------------- /Sources/Public/Components/ChipFilter/GaYaChipFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/ChipFilter/GaYaChipFilter.swift -------------------------------------------------------------------------------- /Sources/Public/Components/ChipFilter/NatChipFilter+Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/ChipFilter/NatChipFilter+Color.swift -------------------------------------------------------------------------------- /Sources/Public/Components/ChipFilter/NatChipFilter+Position.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/ChipFilter/NatChipFilter+Position.swift -------------------------------------------------------------------------------- /Sources/Public/Components/ChipFilter/NatChipFilter+Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/ChipFilter/NatChipFilter+Size.swift -------------------------------------------------------------------------------- /Sources/Public/Components/ChipFilter/NatChipFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/ChipFilter/NatChipFilter.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Counter/NatCounter+Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Counter/NatCounter+Size.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Counter/NatCounter+State.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Counter/NatCounter+State.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Counter/NatCounter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Counter/NatCounter.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Counter/NatCounterButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Counter/NatCounterButton.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Dialog/DialogButtonConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Dialog/DialogButtonConfiguration.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Dialog/DialogViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Dialog/DialogViewModel.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Dialog/NatDialogController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Dialog/NatDialogController.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Divider/Divider+Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Divider/Divider+Style.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Divider/Divider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Divider/Divider.swift -------------------------------------------------------------------------------- /Sources/Public/Components/ExpansionPanel/ExpansionPanel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/ExpansionPanel/ExpansionPanel.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Field/NatField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Field/NatField.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Field/TextField+FeedbackState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Field/TextField+FeedbackState.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Field/TextField+InteractionState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Field/TextField+InteractionState.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Field/TextField+Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Field/TextField+Size.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Field/TextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Field/TextField.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Field/TextFieldType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Field/TextFieldType.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaBadge/GaYaBadge+Animation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaBadge/GaYaBadge+Animation.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaBadge/GaYaBadge+Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaBadge/GaYaBadge+Color.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaBadge/GaYaBadge+Limit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaBadge/GaYaBadge+Limit.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaBadge/GaYaBadge+Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaBadge/GaYaBadge+Style.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaBadge/GaYaBadge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaBadge/GaYaBadge.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaBadge/Protocol/GaYaBadgeable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaBadge/Protocol/GaYaBadgeable.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaCheckbox/GaYaCheckbox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaCheckbox/GaYaCheckbox.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaCheckbox/GaYaCheckboxControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaCheckbox/GaYaCheckboxControl.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaCounter/GaYaCounter+Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaCounter/GaYaCounter+Size.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaCounter/GaYaCounter+State.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaCounter/GaYaCounter+State.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaCounter/GaYaCounter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaCounter/GaYaCounter.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaCounter/GaYaCounterButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaCounter/GaYaCounterButton.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaRadioButton/GaYaRadioButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaRadioButton/GaYaRadioButton.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaSelect/GaYaSelect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaSelect/GaYaSelect.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaSelector/GaYaSelectionControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaSelector/GaYaSelectionControl.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaSelector/GaYaSelectorProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaSelector/GaYaSelectorProtocol.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaTab/GaYaTab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaTab/GaYaTab.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaTab/GaYaTabItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaTab/GaYaTabItemView.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaTextField/GaYaField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaTextField/GaYaField.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaTextField/GaYaTextField+Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaTextField/GaYaTextField+Size.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaTextField/GaYaTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaTextField/GaYaTextField.swift -------------------------------------------------------------------------------- /Sources/Public/Components/GaYaTextField/GaYaTextFieldType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/GaYaTextField/GaYaTextFieldType.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Icon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Icon.swift -------------------------------------------------------------------------------- /Sources/Public/Components/IconButton/GaYaIconButton+Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/IconButton/GaYaIconButton+Color.swift -------------------------------------------------------------------------------- /Sources/Public/Components/IconButton/GaYaIconButton+Sizes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/IconButton/GaYaIconButton+Sizes.swift -------------------------------------------------------------------------------- /Sources/Public/Components/IconButton/GaYaIconButton+Styles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/IconButton/GaYaIconButton+Styles.swift -------------------------------------------------------------------------------- /Sources/Public/Components/IconButton/GaYaIconButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/IconButton/GaYaIconButton.swift -------------------------------------------------------------------------------- /Sources/Public/Components/IconButton/NatIconButton+Sizes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/IconButton/NatIconButton+Sizes.swift -------------------------------------------------------------------------------- /Sources/Public/Components/IconButton/NatIconButton+Styles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/IconButton/NatIconButton+Styles.swift -------------------------------------------------------------------------------- /Sources/Public/Components/IconButton/NatIconButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/IconButton/NatIconButton.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Icons/IconView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Icons/IconView.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Icons/NatLogoImages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Icons/NatLogoImages.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Image/NatGradientImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Image/NatGradientImageView.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Image/NatImage+Fade.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Image/NatImage+Fade.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Image/NatImage+Radius.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Image/NatImage+Radius.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Image/NatImage+Type.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Image/NatImage+Type.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Image/NatImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Image/NatImage.swift -------------------------------------------------------------------------------- /Sources/Public/Components/ListItem/NatListItem+Feedback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/ListItem/NatListItem+Feedback.swift -------------------------------------------------------------------------------- /Sources/Public/Components/ListItem/NatListItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/ListItem/NatListItem.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Logo/NatLogo+Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Logo/NatLogo+Color.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Logo/NatLogo+Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Logo/NatLogo+Model.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Logo/NatLogo+Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Logo/NatLogo+Size.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Logo/NatLogo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Logo/NatLogo.swift -------------------------------------------------------------------------------- /Sources/Public/Components/NavigationDrawer/NavigationDrawer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/NavigationDrawer/NavigationDrawer.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Rating/NatRating+Alignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Rating/NatRating+Alignment.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Rating/NatRating+Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Rating/NatRating+Size.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Rating/NatRating+State.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Rating/NatRating+State.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Rating/NatRating+Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Rating/NatRating+Style.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Rating/NatRating.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Rating/NatRating.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Select/NatSelect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Select/NatSelect.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Shortcut/HelperView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Shortcut/HelperView.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Shortcut/NatShortcut+Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Shortcut/NatShortcut+Style.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Shortcut/NatShortcut.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Shortcut/NatShortcut.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Shortcut/ShortcutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Shortcut/ShortcutView.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Snackbar/NatSnackbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Snackbar/NatSnackbar.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Switch/NatSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Switch/NatSwitch.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Tab/Tab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Tab/Tab.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Tab/TabItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Tab/TabItemView.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Tag/GaYaTag+Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Tag/GaYaTag+Color.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Tag/GaYaTag+Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Tag/GaYaTag+Size.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Tag/GaYaTag+Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Tag/GaYaTag+Style.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Tag/GaYaTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Tag/GaYaTag.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Tag/NatTag+Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Tag/NatTag+Color.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Tag/NatTag+Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Tag/NatTag+Size.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Tag/NatTag+Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Tag/NatTag+Style.swift -------------------------------------------------------------------------------- /Sources/Public/Components/Tag/NatTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/Tag/NatTag.swift -------------------------------------------------------------------------------- /Sources/Public/Components/ValueText/ValueTextHighlight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Components/ValueText/ValueTextHighlight.swift -------------------------------------------------------------------------------- /Sources/Public/DesignSystem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/DesignSystem.swift -------------------------------------------------------------------------------- /Sources/Public/DesignTokens/GaYaColors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/DesignTokens/GaYaColors.swift -------------------------------------------------------------------------------- /Sources/Public/DesignTokens/GaYaDimensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/DesignTokens/GaYaDimensions.swift -------------------------------------------------------------------------------- /Sources/Public/DesignTokens/GaYaElevation/GaYaElevation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/DesignTokens/GaYaElevation/GaYaElevation.swift -------------------------------------------------------------------------------- /Sources/Public/DesignTokens/GaYaFonts/GaYaFonts+TextStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/DesignTokens/GaYaFonts/GaYaFonts+TextStyle.swift -------------------------------------------------------------------------------- /Sources/Public/DesignTokens/GaYaFonts/GaYaFonts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/DesignTokens/GaYaFonts/GaYaFonts.swift -------------------------------------------------------------------------------- /Sources/Public/DesignTokens/GaYaGrowthPlan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/DesignTokens/GaYaGrowthPlan.swift -------------------------------------------------------------------------------- /Sources/Public/DesignTokens/GaYaOpacity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/DesignTokens/GaYaOpacity.swift -------------------------------------------------------------------------------- /Sources/Public/DesignTokens/GaYaSizes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/DesignTokens/GaYaSizes.swift -------------------------------------------------------------------------------- /Sources/Public/DesignTokens/NatBorderRadius.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/DesignTokens/NatBorderRadius.swift -------------------------------------------------------------------------------- /Sources/Public/DesignTokens/NatColors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/DesignTokens/NatColors.swift -------------------------------------------------------------------------------- /Sources/Public/DesignTokens/NatElevation/NatElevation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/DesignTokens/NatElevation/NatElevation.swift -------------------------------------------------------------------------------- /Sources/Public/DesignTokens/NatFonts/NatFonts+TextStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/DesignTokens/NatFonts/NatFonts+TextStyle.swift -------------------------------------------------------------------------------- /Sources/Public/DesignTokens/NatFonts/NatFonts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/DesignTokens/NatFonts/NatFonts.swift -------------------------------------------------------------------------------- /Sources/Public/DesignTokens/NatOpacities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/DesignTokens/NatOpacities.swift -------------------------------------------------------------------------------- /Sources/Public/DesignTokens/NatSizes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/DesignTokens/NatSizes.swift -------------------------------------------------------------------------------- /Sources/Public/DesignTokens/NatSpacing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/DesignTokens/NatSpacing.swift -------------------------------------------------------------------------------- /Sources/Public/Extensions/UICollectionView+Reusable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Extensions/UICollectionView+Reusable.swift -------------------------------------------------------------------------------- /Sources/Public/Extensions/UITableView+Reusable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/Extensions/UITableView+Reusable.swift -------------------------------------------------------------------------------- /Sources/Public/NatDSIcons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Public/NatDSIcons.swift -------------------------------------------------------------------------------- /Sources/Supporting Files/Export.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Supporting Files/Export.swift -------------------------------------------------------------------------------- /Sources/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Sources/Supporting Files/NatDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Sources/Supporting Files/NatDS.h -------------------------------------------------------------------------------- /TestHelpers/Badge/BadgeableStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/TestHelpers/Badge/BadgeableStub.swift -------------------------------------------------------------------------------- /TestHelpers/NavigationDrawer/NavigationDrawerDelegateMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/TestHelpers/NavigationDrawer/NavigationDrawerDelegateMock.swift -------------------------------------------------------------------------------- /TestHelpers/NotificationCenter/NotificationCenterSpy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/TestHelpers/NotificationCenter/NotificationCenterSpy.swift -------------------------------------------------------------------------------- /TestHelpers/Tab/TabDelegateMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/TestHelpers/Tab/TabDelegateMock.swift -------------------------------------------------------------------------------- /TestHelpers/Tab/TabItemViewDelegateMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/TestHelpers/Tab/TabItemViewDelegateMock.swift -------------------------------------------------------------------------------- /TestHelpers/TextField/TextFieldDelegateMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/TestHelpers/TextField/TextFieldDelegateMock.swift -------------------------------------------------------------------------------- /Tests/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/.swiftlint.yml -------------------------------------------------------------------------------- /Tests/Core/DomainFunctions/GetOrCreatedCachedColor+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Core/DomainFunctions/GetOrCreatedCachedColor+Spec.swift -------------------------------------------------------------------------------- /Tests/Core/DomainFunctions/GetThemeValidated+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Core/DomainFunctions/GetThemeValidated+Spec.swift -------------------------------------------------------------------------------- /Tests/Core/Extensions/String+IconTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Core/Extensions/String+IconTests.swift -------------------------------------------------------------------------------- /Tests/Core/Extensions/UICollectionView+ReusableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Core/Extensions/UICollectionView+ReusableTests.swift -------------------------------------------------------------------------------- /Tests/Core/Extensions/UIColor+HexTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Core/Extensions/UIColor+HexTests.swift -------------------------------------------------------------------------------- /Tests/Core/Extensions/UITableView+ReusableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Core/Extensions/UITableView+ReusableTests.swift -------------------------------------------------------------------------------- /Tests/Core/Extensions/UIVIew/UIView+CenterBounds+Specs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Core/Extensions/UIVIew/UIView+CenterBounds+Specs.swift -------------------------------------------------------------------------------- /Tests/Core/Extensions/UIVIew/UIView+FrameTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Core/Extensions/UIVIew/UIView+FrameTests.swift -------------------------------------------------------------------------------- /Tests/Core/ViewStyle/Button/ButtonContainedStyle+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Core/ViewStyle/Button/ButtonContainedStyle+Spec.swift -------------------------------------------------------------------------------- /Tests/Core/ViewStyle/Button/ButtonOutlinedStyle+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Core/ViewStyle/Button/ButtonOutlinedStyle+Spec.swift -------------------------------------------------------------------------------- /Tests/Core/ViewStyle/Button/ButtonStyle+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Core/ViewStyle/Button/ButtonStyle+Spec.swift -------------------------------------------------------------------------------- /Tests/Core/ViewStyle/Button/ButtonTextStyle+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Core/ViewStyle/Button/ButtonTextStyle+Spec.swift -------------------------------------------------------------------------------- /Tests/Core/ViewStyle/Dialog/DialogFooterView+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Core/ViewStyle/Dialog/DialogFooterView+Spec.swift -------------------------------------------------------------------------------- /Tests/Core/ViewStyle/Dialog/DialogStyle+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Core/ViewStyle/Dialog/DialogStyle+Spec.swift -------------------------------------------------------------------------------- /Tests/Core/ViewStyle/Shortcut/ShortcutContainedStyle+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Core/ViewStyle/Shortcut/ShortcutContainedStyle+Spec.swift -------------------------------------------------------------------------------- /Tests/Core/ViewStyle/Shortcut/ShortcutOutlinedStyle+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Core/ViewStyle/Shortcut/ShortcutOutlinedStyle+Spec.swift -------------------------------------------------------------------------------- /Tests/Core/ViewStyle/ViewStyle+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Core/ViewStyle/ViewStyle+Spec.swift -------------------------------------------------------------------------------- /Tests/Helpers/AssetsHelperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Helpers/AssetsHelperTests.swift -------------------------------------------------------------------------------- /Tests/Helpers/ReusableViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Helpers/ReusableViewTests.swift -------------------------------------------------------------------------------- /Tests/Public/AvailableTheme+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/AvailableTheme+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Alert/NatAlert+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Alert/NatAlert+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/AppBar/Stub/StubSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/AppBar/Stub/StubSelector.swift -------------------------------------------------------------------------------- /Tests/Public/Components/AppBar/UIBarButtonItem+Icon+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/AppBar/UIBarButtonItem+Icon+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Avatar/NatAvatar+Sizes+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Avatar/NatAvatar+Sizes+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Avatar/NatAvatar+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Avatar/NatAvatar+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Avatar/NatAvatar+Styles+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Avatar/NatAvatar+Styles+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Badge/NatBadge+Color+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Badge/NatBadge+Color+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Badge/NatBadge+Dot+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Badge/NatBadge+Dot+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Badge/NatBadge+Pulse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Badge/NatBadge+Pulse.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Badge/NatBadge+Standard+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Badge/NatBadge+Standard+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Badge/Protocol/Badgeable+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Badge/Protocol/Badgeable+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Button/NatButton+EdgeInsets+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Button/NatButton+EdgeInsets+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Button/NatButton+Height+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Button/NatButton+Height+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Button/NatButton+Specs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Button/NatButton+Specs.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Button/PulseLayerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Button/PulseLayerTests.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Button/Pusable/Pulsable+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Button/Pusable/Pulsable+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Button/Pusable/PulseLayer+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Button/Pusable/PulseLayer+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Card/NatCard+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Card/NatCard+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Checkbox/Checkbox+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Checkbox/Checkbox+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Chip/Chip+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Chip/Chip+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Counter/NatCounter+Size+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Counter/NatCounter+Size+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Counter/NatCounter+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Counter/NatCounter+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Dialog/NatDialogController+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Dialog/NatDialogController+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Divider/Divider+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Divider/Divider+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Divider/Divider+Styles+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Divider/Divider+Styles+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/ExpansionPanel/ExpansionPanel+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/ExpansionPanel/ExpansionPanel+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Field/TextField+Sizes+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Field/TextField+Sizes+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Field/TextField+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Field/TextField+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Field/TextField+States+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Field/TextField+States+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Field/TextField+Types+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Field/TextField+Types+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Field/TextFieldDelegateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Field/TextFieldDelegateTests.swift -------------------------------------------------------------------------------- /Tests/Public/Components/IconButton/NatIconButton+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/IconButton/NatIconButton+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Icons/IconViewSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Icons/IconViewSpec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Image/NatImage+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Image/NatImage+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/List/NatListItem+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/List/NatListItem+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Logo/NatLogo+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Logo/NatLogo+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/RadioButton/RadioButton+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/RadioButton/RadioButton+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Rating/NatRating+Counter+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Rating/NatRating+Counter+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Rating/NatRating+Input+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Rating/NatRating+Input+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Rating/NatRating+ReadOnly+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Rating/NatRating+ReadOnly+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Shortcut/NatShortcut+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Shortcut/NatShortcut+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Switch/Switch+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Switch/Switch+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Tab/TabItemViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Tab/TabItemViewTests.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Tab/TabTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Tab/TabTests.swift -------------------------------------------------------------------------------- /Tests/Public/Components/Tag/NatTag+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/Components/Tag/NatTag+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/DesignSystem+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/DesignSystem+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/DesignTokens/Fonts/Style/FontIconStyleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/DesignTokens/Fonts/Style/FontIconStyleTests.swift -------------------------------------------------------------------------------- /Tests/Public/DesignTokens/NatBorderRadius+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/DesignTokens/NatBorderRadius+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/DesignTokens/NatColorsSpec/NatColors+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/DesignTokens/NatColorsSpec/NatColors+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/DesignTokens/NatElevations+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/DesignTokens/NatElevations+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/DesignTokens/NatFonts/NatFonts+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/DesignTokens/NatFonts/NatFonts+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/DesignTokens/NatOpacities+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/DesignTokens/NatOpacities+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/DesignTokens/NatSizes+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/DesignTokens/NatSizes+Spec.swift -------------------------------------------------------------------------------- /Tests/Public/DesignTokens/NatSpacing+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Public/DesignTokens/NatSpacing+Spec.swift -------------------------------------------------------------------------------- /Tests/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Tests/Supporting Files/TestingHelpers/IconMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Supporting Files/TestingHelpers/IconMock.swift -------------------------------------------------------------------------------- /Tests/Supporting Files/TestingHelpers/Theme/StubTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Supporting Files/TestingHelpers/Theme/StubTheme.swift -------------------------------------------------------------------------------- /Tests/Supporting Files/TestingHelpers/UIColor+AsHexString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Supporting Files/TestingHelpers/UIColor+AsHexString.swift -------------------------------------------------------------------------------- /Tests/Supporting Files/TestingHelpers/UIFont+GetWeight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/Tests/Supporting Files/TestingHelpers/UIFont+GetWeight.swift -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/components.json -------------------------------------------------------------------------------- /docs/Getting started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/Getting started.md -------------------------------------------------------------------------------- /docs/How to contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/How to contribute.md -------------------------------------------------------------------------------- /docs/How to use icons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/How to use icons.md -------------------------------------------------------------------------------- /docs/Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/Setup.md -------------------------------------------------------------------------------- /docs/documentation/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes.html -------------------------------------------------------------------------------- /docs/documentation/Classes/DesignSystem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/DesignSystem.html -------------------------------------------------------------------------------- /docs/documentation/Classes/Divider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/Divider.html -------------------------------------------------------------------------------- /docs/documentation/Classes/Divider/Styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/Divider/Styles.html -------------------------------------------------------------------------------- /docs/documentation/Classes/ExpansionPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/ExpansionPanel.html -------------------------------------------------------------------------------- /docs/documentation/Classes/ExpansionPanel/ExpansionAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/ExpansionPanel/ExpansionAction.html -------------------------------------------------------------------------------- /docs/documentation/Classes/ExpansionPanel/Margin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/ExpansionPanel/Margin.html -------------------------------------------------------------------------------- /docs/documentation/Classes/IconView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/IconView.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatAlert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatAlert.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatAlert/AlertStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatAlert/AlertStyle.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatAlert/AlertType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatAlert/AlertType.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatAvatar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatAvatar.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatAvatar/Size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatAvatar/Size.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatAvatar/Types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatAvatar/Types.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatBadge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatBadge.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatBadge/Color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatBadge/Color.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatBadge/Limit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatBadge/Limit.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatBadge/Style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatBadge/Style.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatButton.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatButton/ButtonHeight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatButton/ButtonHeight.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatButton/EdgeInsets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatButton/EdgeInsets.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatButton/Height.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatButton/Height.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatButton/Position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatButton/Position.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatButton/Style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatButton/Style.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatCard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatCard.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatCheckbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatCheckbox.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatChip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatChip.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatChip/Color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatChip/Color.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatChip/Position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatChip/Position.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatChip/Size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatChip/Size.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatChip/ThemeColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatChip/ThemeColor.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatChipFilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatChipFilter.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatChipFilter/Color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatChipFilter/Color.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatChipFilter/Position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatChipFilter/Position.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatChipFilter/Size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatChipFilter/Size.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatChipFilter/ThemeColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatChipFilter/ThemeColor.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatCounter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatCounter.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatCounter/CounterButtonType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatCounter/CounterButtonType.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatCounter/MinValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatCounter/MinValue.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatCounter/Size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatCounter/Size.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatCounter/State.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatCounter/State.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatDialogController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatDialogController.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatField.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatIconButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatIconButton.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatIconButton/Background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatIconButton/Background.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatIconButton/Sizes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatIconButton/Sizes.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatIconButton/State.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatIconButton/State.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatIconButton/Style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatIconButton/Style.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatImage.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatImage/ImageFadeDirection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatImage/ImageFadeDirection.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatImage/ImageRadius.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatImage/ImageRadius.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatImage/ImageType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatImage/ImageType.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatListItemCell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatListItemCell.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatListItemCell/FeedbackStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatListItemCell/FeedbackStyle.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatLogo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatLogo.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatLogo/Color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatLogo/Color.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatLogo/Language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatLogo/Language.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatLogo/Model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatLogo/Model.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatLogo/Size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatLogo/Size.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatProgressIndicatorCircular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatProgressIndicatorCircular.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatProgressIndicatorCircular/Size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatProgressIndicatorCircular/Size.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatRadioButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatRadioButton.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatRadioButtonGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatRadioButtonGroup.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatRating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatRating.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatRating/Alignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatRating/Alignment.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatRating/Size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatRating/Size.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatRating/State.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatRating/State.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatRating/Style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatRating/Style.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatSelect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatSelect.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatSelectionControl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatSelectionControl.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatSelectionControl/Style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatSelectionControl/Style.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatShortcut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatShortcut.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatShortcut/Color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatShortcut/Color.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatShortcut/State.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatShortcut/State.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatShortcut/Style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatShortcut/Style.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatSnackbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatSnackbar.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatSnackbar/SnackbarColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatSnackbar/SnackbarColor.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatSnackbar/SnackbarDuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatSnackbar/SnackbarDuration.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatSnackbar/SnackbarPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatSnackbar/SnackbarPosition.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatSwitch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatSwitch.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatTag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatTag.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatTag/Color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatTag/Color.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatTag/Size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatTag/Size.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatTag/Style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatTag/Style.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NatTag/ThemeColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NatTag/ThemeColor.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NavigationDrawer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NavigationDrawer.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NavigationDrawer/IndexMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NavigationDrawer/IndexMenu.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NavigationDrawerItemCell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NavigationDrawerItemCell.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NavigationDrawerItemCell/State.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NavigationDrawerItemCell/State.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NavigationDrawerSubitemCell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NavigationDrawerSubitemCell.html -------------------------------------------------------------------------------- /docs/documentation/Classes/NavigationDrawerSubitemCell/State.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/NavigationDrawerSubitemCell/State.html -------------------------------------------------------------------------------- /docs/documentation/Classes/SearchBar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/SearchBar.html -------------------------------------------------------------------------------- /docs/documentation/Classes/ShortcutView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/ShortcutView.html -------------------------------------------------------------------------------- /docs/documentation/Classes/Tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/Tab.html -------------------------------------------------------------------------------- /docs/documentation/Classes/Tab/Position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/Tab/Position.html -------------------------------------------------------------------------------- /docs/documentation/Classes/TextField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/TextField.html -------------------------------------------------------------------------------- /docs/documentation/Classes/TextField/FeedbackState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/TextField/FeedbackState.html -------------------------------------------------------------------------------- /docs/documentation/Classes/TextField/InteractionState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/TextField/InteractionState.html -------------------------------------------------------------------------------- /docs/documentation/Classes/TextField/Size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/TextField/Size.html -------------------------------------------------------------------------------- /docs/documentation/Classes/TextField/ThemeColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/TextField/ThemeColor.html -------------------------------------------------------------------------------- /docs/documentation/Classes/ValueTextHighlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Classes/ValueTextHighlight.html -------------------------------------------------------------------------------- /docs/documentation/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Enums.html -------------------------------------------------------------------------------- /docs/documentation/Enums/AppBarColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Enums/AppBarColor.html -------------------------------------------------------------------------------- /docs/documentation/Enums/AppBarContentType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Enums/AppBarContentType.html -------------------------------------------------------------------------------- /docs/documentation/Enums/AvailableTheme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Enums/AvailableTheme.html -------------------------------------------------------------------------------- /docs/documentation/Enums/CustomFontStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Enums/CustomFontStyle.html -------------------------------------------------------------------------------- /docs/documentation/Enums/Icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Enums/Icon.html -------------------------------------------------------------------------------- /docs/documentation/Enums/NatBorderRadius.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Enums/NatBorderRadius.html -------------------------------------------------------------------------------- /docs/documentation/Enums/NatOpacities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Enums/NatOpacities.html -------------------------------------------------------------------------------- /docs/documentation/Enums/NatSizes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Enums/NatSizes.html -------------------------------------------------------------------------------- /docs/documentation/Enums/NatSpacing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Enums/NatSpacing.html -------------------------------------------------------------------------------- /docs/documentation/Enums/TextFieldType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Enums/TextFieldType.html -------------------------------------------------------------------------------- /docs/documentation/Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Extensions.html -------------------------------------------------------------------------------- /docs/documentation/Extensions/UIBarButtonItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Extensions/UIBarButtonItem.html -------------------------------------------------------------------------------- /docs/documentation/Extensions/UICollectionView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Extensions/UICollectionView.html -------------------------------------------------------------------------------- /docs/documentation/Extensions/UINavigationController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Extensions/UINavigationController.html -------------------------------------------------------------------------------- /docs/documentation/Extensions/UINavigationController/Style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Extensions/UINavigationController/Style.html -------------------------------------------------------------------------------- /docs/documentation/Extensions/UITableView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Extensions/UITableView.html -------------------------------------------------------------------------------- /docs/documentation/Extensions/UIViewController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Extensions/UIViewController.html -------------------------------------------------------------------------------- /docs/documentation/Extensions/UIViewController/TitleStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Extensions/UIViewController/TitleStyle.html -------------------------------------------------------------------------------- /docs/documentation/Guides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Guides.html -------------------------------------------------------------------------------- /docs/documentation/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Protocols.html -------------------------------------------------------------------------------- /docs/documentation/Protocols/Badgeable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Protocols/Badgeable.html -------------------------------------------------------------------------------- /docs/documentation/Protocols/NatDialogBodyConfigurable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Protocols/NatDialogBodyConfigurable.html -------------------------------------------------------------------------------- /docs/documentation/Protocols/NatDialogBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Protocols/NatDialogBuilder.html -------------------------------------------------------------------------------- /docs/documentation/Protocols/NatDialogCustomBodyConfigurable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Protocols/NatDialogCustomBodyConfigurable.html -------------------------------------------------------------------------------- /docs/documentation/Protocols/NatDialogDividerConfigurable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Protocols/NatDialogDividerConfigurable.html -------------------------------------------------------------------------------- /docs/documentation/Protocols/NatDialogTitleConfigurable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Protocols/NatDialogTitleConfigurable.html -------------------------------------------------------------------------------- /docs/documentation/Protocols/NavigationDrawerDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Protocols/NavigationDrawerDelegate.html -------------------------------------------------------------------------------- /docs/documentation/Protocols/Pulsable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Protocols/Pulsable.html -------------------------------------------------------------------------------- /docs/documentation/Protocols/ReusableView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Protocols/ReusableView.html -------------------------------------------------------------------------------- /docs/documentation/Protocols/TabDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Protocols/TabDelegate.html -------------------------------------------------------------------------------- /docs/documentation/Protocols/TextFieldDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Protocols/TextFieldDelegate.html -------------------------------------------------------------------------------- /docs/documentation/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Structs.html -------------------------------------------------------------------------------- /docs/documentation/Structs/IllustrationIcons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Structs/IllustrationIcons.html -------------------------------------------------------------------------------- /docs/documentation/Structs/IllustrationIcons/Lined.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Structs/IllustrationIcons/Lined.html -------------------------------------------------------------------------------- /docs/documentation/Structs/NatColors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Structs/NatColors.html -------------------------------------------------------------------------------- /docs/documentation/Structs/NatElevation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Structs/NatElevation.html -------------------------------------------------------------------------------- /docs/documentation/Structs/NatElevation/Elevation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Structs/NatElevation/Elevation.html -------------------------------------------------------------------------------- /docs/documentation/Structs/NatFonts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Structs/NatFonts.html -------------------------------------------------------------------------------- /docs/documentation/Structs/NatFonts/Size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Structs/NatFonts/Size.html -------------------------------------------------------------------------------- /docs/documentation/Structs/NatFonts/Weight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Structs/NatFonts/Weight.html -------------------------------------------------------------------------------- /docs/documentation/Structs/NatLogoImages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Structs/NatLogoImages.html -------------------------------------------------------------------------------- /docs/documentation/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/Typealiases.html -------------------------------------------------------------------------------- /docs/documentation/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/badge.svg -------------------------------------------------------------------------------- /docs/documentation/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/css/highlight.css -------------------------------------------------------------------------------- /docs/documentation/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/css/jazzy.css -------------------------------------------------------------------------------- /docs/documentation/docsets/NatDS.docset/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/docsets/NatDS.docset/Contents/Info.plist -------------------------------------------------------------------------------- /docs/documentation/docsets/NatDS.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/docsets/NatDS.tgz -------------------------------------------------------------------------------- /docs/documentation/getting-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/getting-started.html -------------------------------------------------------------------------------- /docs/documentation/getting-started.html-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/getting-started.html-e -------------------------------------------------------------------------------- /docs/documentation/how-to-contribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/how-to-contribute.html -------------------------------------------------------------------------------- /docs/documentation/how-to-contribute.html-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/how-to-contribute.html-e -------------------------------------------------------------------------------- /docs/documentation/how-to-use-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/how-to-use-icons.html -------------------------------------------------------------------------------- /docs/documentation/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/img/carat.png -------------------------------------------------------------------------------- /docs/documentation/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/img/dash.png -------------------------------------------------------------------------------- /docs/documentation/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/img/gh.png -------------------------------------------------------------------------------- /docs/documentation/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/img/spinner.gif -------------------------------------------------------------------------------- /docs/documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/index.html -------------------------------------------------------------------------------- /docs/documentation/index.html-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/index.html-e -------------------------------------------------------------------------------- /docs/documentation/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/js/jazzy.js -------------------------------------------------------------------------------- /docs/documentation/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/documentation/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/js/jquery.min.js -------------------------------------------------------------------------------- /docs/documentation/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/js/lunr.min.js -------------------------------------------------------------------------------- /docs/documentation/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/documentation/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/search.json -------------------------------------------------------------------------------- /docs/documentation/setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/setup.html -------------------------------------------------------------------------------- /docs/documentation/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/docs/documentation/undocumented.json -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/fastlane/Matchfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /scripts/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/scripts/CHANGELOG.md -------------------------------------------------------------------------------- /scripts/brew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/scripts/brew.sh -------------------------------------------------------------------------------- /scripts/bump_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/scripts/bump_version.sh -------------------------------------------------------------------------------- /scripts/message_teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/scripts/message_teams.json -------------------------------------------------------------------------------- /scripts/message_teams.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/scripts/setup.sh -------------------------------------------------------------------------------- /scripts/update_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/scripts/update_docs.sh -------------------------------------------------------------------------------- /scripts/update_icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/scripts/update_icons.sh -------------------------------------------------------------------------------- /scripts/update_themes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natura-cosmeticos/natds-ios/HEAD/scripts/update_themes.sh -------------------------------------------------------------------------------- /version-theme.txt: -------------------------------------------------------------------------------- 1 | natds-themes@0.82.1 2 | -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 8.7.10 --------------------------------------------------------------------------------