@umituz/react-native-design-system 1.3.1 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/domains/icons/domain/config/IconLibraryConfig.d.ts +91 -0
- package/lib/domains/icons/domain/config/IconLibraryConfig.d.ts.map +1 -0
- package/lib/domains/icons/domain/config/IconLibraryConfig.js +85 -0
- package/lib/domains/icons/domain/config/IconLibraryConfig.js.map +1 -0
- package/lib/domains/icons/domain/entities/Icon.d.ts +111 -0
- package/lib/domains/icons/domain/entities/Icon.d.ts.map +1 -0
- package/lib/domains/icons/domain/entities/Icon.js +87 -0
- package/lib/domains/icons/domain/entities/Icon.js.map +1 -0
- package/lib/domains/icons/domain/interfaces/IIconAdapter.d.ts +114 -0
- package/lib/domains/icons/domain/interfaces/IIconAdapter.d.ts.map +1 -0
- package/lib/domains/icons/domain/interfaces/IIconAdapter.js +17 -0
- package/lib/domains/icons/domain/interfaces/IIconAdapter.js.map +1 -0
- package/lib/domains/icons/index.d.ts +84 -0
- package/lib/domains/icons/index.d.ts.map +1 -0
- package/lib/domains/icons/index.js +89 -0
- package/lib/domains/icons/index.js.map +1 -0
- package/lib/domains/icons/infrastructure/adapters/LucideAdapter.d.ts +24 -0
- package/lib/domains/icons/infrastructure/adapters/LucideAdapter.d.ts.map +1 -0
- package/lib/domains/icons/infrastructure/adapters/LucideAdapter.js +85 -0
- package/lib/domains/icons/infrastructure/adapters/LucideAdapter.js.map +1 -0
- package/lib/domains/icons/infrastructure/registries/ExpoIconRegistry.d.ts +23 -0
- package/lib/domains/icons/infrastructure/registries/ExpoIconRegistry.d.ts.map +1 -0
- package/lib/domains/icons/infrastructure/registries/ExpoIconRegistry.js +178 -0
- package/lib/domains/icons/infrastructure/registries/ExpoIconRegistry.js.map +1 -0
- package/lib/domains/icons/presentation/components/Icon.d.ts +42 -0
- package/lib/domains/icons/presentation/components/Icon.d.ts.map +1 -0
- package/lib/domains/icons/presentation/components/Icon.js +86 -0
- package/lib/domains/icons/presentation/components/Icon.js.map +1 -0
- package/lib/domains/icons/presentation/hooks/useIconLibrary.d.ts +38 -0
- package/lib/domains/icons/presentation/hooks/useIconLibrary.d.ts.map +1 -0
- package/lib/domains/icons/presentation/hooks/useIconLibrary.js +114 -0
- package/lib/domains/icons/presentation/hooks/useIconLibrary.js.map +1 -0
- package/lib/index.d.ts +66 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +106 -0
- package/lib/index.js.map +1 -0
- package/lib/infrastructure/theme/globalThemeStore.d.ts +42 -0
- package/lib/infrastructure/theme/globalThemeStore.d.ts.map +1 -0
- package/lib/infrastructure/theme/globalThemeStore.js +38 -0
- package/lib/infrastructure/theme/globalThemeStore.js.map +1 -0
- package/lib/presentation/atoms/AtomicAvatar.d.ts +48 -0
- package/lib/presentation/atoms/AtomicAvatar.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicAvatar.js +85 -0
- package/lib/presentation/atoms/AtomicAvatar.js.map +1 -0
- package/lib/presentation/atoms/AtomicAvatarGroup.d.ts +56 -0
- package/lib/presentation/atoms/AtomicAvatarGroup.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicAvatarGroup.js +83 -0
- package/lib/presentation/atoms/AtomicAvatarGroup.js.map +1 -0
- package/lib/presentation/atoms/AtomicBadge.d.ts +42 -0
- package/lib/presentation/atoms/AtomicBadge.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicBadge.js +168 -0
- package/lib/presentation/atoms/AtomicBadge.js.map +1 -0
- package/lib/presentation/atoms/AtomicButton.d.ts +22 -0
- package/lib/presentation/atoms/AtomicButton.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicButton.js +193 -0
- package/lib/presentation/atoms/AtomicButton.js.map +1 -0
- package/lib/presentation/atoms/AtomicCard.d.ts +15 -0
- package/lib/presentation/atoms/AtomicCard.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicCard.js +89 -0
- package/lib/presentation/atoms/AtomicCard.js.map +1 -0
- package/lib/presentation/atoms/AtomicChip.d.ts +53 -0
- package/lib/presentation/atoms/AtomicChip.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicChip.js +131 -0
- package/lib/presentation/atoms/AtomicChip.js.map +1 -0
- package/lib/presentation/atoms/AtomicDatePicker.d.ts +75 -0
- package/lib/presentation/atoms/AtomicDatePicker.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicDatePicker.js +246 -0
- package/lib/presentation/atoms/AtomicDatePicker.js.map +1 -0
- package/lib/presentation/atoms/AtomicDivider.d.ts +45 -0
- package/lib/presentation/atoms/AtomicDivider.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicDivider.js +58 -0
- package/lib/presentation/atoms/AtomicDivider.js.map +1 -0
- package/lib/presentation/atoms/AtomicFab.d.ts +38 -0
- package/lib/presentation/atoms/AtomicFab.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicFab.js +69 -0
- package/lib/presentation/atoms/AtomicFab.js.map +1 -0
- package/lib/presentation/atoms/AtomicFilter.d.ts +37 -0
- package/lib/presentation/atoms/AtomicFilter.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicFilter.js +104 -0
- package/lib/presentation/atoms/AtomicFilter.js.map +1 -0
- package/lib/presentation/atoms/AtomicFormError.d.ts +30 -0
- package/lib/presentation/atoms/AtomicFormError.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicFormError.js +64 -0
- package/lib/presentation/atoms/AtomicFormError.js.map +1 -0
- package/lib/presentation/atoms/AtomicIcon.d.ts +36 -0
- package/lib/presentation/atoms/AtomicIcon.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicIcon.js +30 -0
- package/lib/presentation/atoms/AtomicIcon.js.map +1 -0
- package/lib/presentation/atoms/AtomicImage.d.ts +40 -0
- package/lib/presentation/atoms/AtomicImage.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicImage.js +92 -0
- package/lib/presentation/atoms/AtomicImage.js.map +1 -0
- package/lib/presentation/atoms/AtomicInput.d.ts +71 -0
- package/lib/presentation/atoms/AtomicInput.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicInput.js +196 -0
- package/lib/presentation/atoms/AtomicInput.js.map +1 -0
- package/lib/presentation/atoms/AtomicNumberInput.d.ts +69 -0
- package/lib/presentation/atoms/AtomicNumberInput.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicNumberInput.js +125 -0
- package/lib/presentation/atoms/AtomicNumberInput.js.map +1 -0
- package/lib/presentation/atoms/AtomicPicker.d.ts +52 -0
- package/lib/presentation/atoms/AtomicPicker.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicPicker.js +299 -0
- package/lib/presentation/atoms/AtomicPicker.js.map +1 -0
- package/lib/presentation/atoms/AtomicProgress.d.ts +47 -0
- package/lib/presentation/atoms/AtomicProgress.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicProgress.js +81 -0
- package/lib/presentation/atoms/AtomicProgress.js.map +1 -0
- package/lib/presentation/atoms/AtomicSearchBar.d.ts +19 -0
- package/lib/presentation/atoms/AtomicSearchBar.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicSearchBar.js +46 -0
- package/lib/presentation/atoms/AtomicSearchBar.js.map +1 -0
- package/lib/presentation/atoms/AtomicSkeleton.d.ts +43 -0
- package/lib/presentation/atoms/AtomicSkeleton.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicSkeleton.js +84 -0
- package/lib/presentation/atoms/AtomicSkeleton.js.map +1 -0
- package/lib/presentation/atoms/AtomicSort.d.ts +72 -0
- package/lib/presentation/atoms/AtomicSort.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicSort.js +77 -0
- package/lib/presentation/atoms/AtomicSort.js.map +1 -0
- package/lib/presentation/atoms/AtomicSwitch.d.ts +43 -0
- package/lib/presentation/atoms/AtomicSwitch.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicSwitch.js +104 -0
- package/lib/presentation/atoms/AtomicSwitch.js.map +1 -0
- package/lib/presentation/atoms/AtomicText.d.ts +14 -0
- package/lib/presentation/atoms/AtomicText.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicText.js +36 -0
- package/lib/presentation/atoms/AtomicText.js.map +1 -0
- package/lib/presentation/atoms/AtomicTextArea.d.ts +85 -0
- package/lib/presentation/atoms/AtomicTextArea.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicTextArea.js +196 -0
- package/lib/presentation/atoms/AtomicTextArea.js.map +1 -0
- package/lib/presentation/atoms/AtomicTouchable.d.ts +87 -0
- package/lib/presentation/atoms/AtomicTouchable.d.ts.map +1 -0
- package/lib/presentation/atoms/AtomicTouchable.js +151 -0
- package/lib/presentation/atoms/AtomicTouchable.js.map +1 -0
- package/lib/presentation/atoms/fab/styles/fabStyles.d.ts +23 -0
- package/lib/presentation/atoms/fab/styles/fabStyles.d.ts.map +1 -0
- package/lib/presentation/atoms/fab/styles/fabStyles.js +63 -0
- package/lib/presentation/atoms/fab/styles/fabStyles.js.map +1 -0
- package/lib/presentation/atoms/fab/types/index.d.ts +76 -0
- package/lib/presentation/atoms/fab/types/index.d.ts.map +1 -0
- package/lib/presentation/atoms/fab/types/index.js +2 -0
- package/lib/presentation/atoms/fab/types/index.js.map +1 -0
- package/lib/presentation/atoms/filter/styles/filterStyles.d.ts +15 -0
- package/lib/presentation/atoms/filter/styles/filterStyles.d.ts.map +1 -0
- package/lib/presentation/atoms/filter/styles/filterStyles.js +29 -0
- package/lib/presentation/atoms/filter/styles/filterStyles.js.map +1 -0
- package/lib/presentation/atoms/filter/types/index.d.ts +76 -0
- package/lib/presentation/atoms/filter/types/index.d.ts.map +1 -0
- package/lib/presentation/atoms/filter/types/index.js +2 -0
- package/lib/presentation/atoms/filter/types/index.js.map +1 -0
- package/lib/presentation/atoms/index.d.ts +276 -0
- package/lib/presentation/atoms/index.d.ts.map +1 -0
- package/lib/presentation/atoms/index.js +149 -0
- package/lib/presentation/atoms/index.js.map +1 -0
- package/lib/presentation/atoms/input/hooks/useInputState.d.ts +7 -0
- package/lib/presentation/atoms/input/hooks/useInputState.d.ts.map +1 -0
- package/lib/presentation/atoms/input/hooks/useInputState.js +13 -0
- package/lib/presentation/atoms/input/hooks/useInputState.js.map +1 -0
- package/lib/presentation/atoms/input/styles/inputStyles.d.ts +13 -0
- package/lib/presentation/atoms/input/styles/inputStyles.d.ts.map +1 -0
- package/lib/presentation/atoms/input/styles/inputStyles.js +59 -0
- package/lib/presentation/atoms/input/styles/inputStyles.js.map +1 -0
- package/lib/presentation/atoms/input/types/index.d.ts +24 -0
- package/lib/presentation/atoms/input/types/index.d.ts.map +1 -0
- package/lib/presentation/atoms/input/types/index.js +2 -0
- package/lib/presentation/atoms/input/types/index.js.map +1 -0
- package/lib/presentation/atoms/picker/styles/pickerStyles.d.ts +96 -0
- package/lib/presentation/atoms/picker/styles/pickerStyles.d.ts.map +1 -0
- package/lib/presentation/atoms/picker/styles/pickerStyles.js +177 -0
- package/lib/presentation/atoms/picker/styles/pickerStyles.js.map +1 -0
- package/lib/presentation/atoms/picker/types/index.d.ts +38 -0
- package/lib/presentation/atoms/picker/types/index.d.ts.map +1 -0
- package/lib/presentation/atoms/picker/types/index.js +2 -0
- package/lib/presentation/atoms/picker/types/index.js.map +1 -0
- package/lib/presentation/atoms/touchable/styles/touchableStyles.d.ts +36 -0
- package/lib/presentation/atoms/touchable/styles/touchableStyles.d.ts.map +1 -0
- package/lib/presentation/atoms/touchable/styles/touchableStyles.js +62 -0
- package/lib/presentation/atoms/touchable/styles/touchableStyles.js.map +1 -0
- package/lib/presentation/atoms/touchable/types/index.d.ts +140 -0
- package/lib/presentation/atoms/touchable/types/index.d.ts.map +1 -0
- package/lib/presentation/atoms/touchable/types/index.js +2 -0
- package/lib/presentation/atoms/touchable/types/index.js.map +1 -0
- package/lib/presentation/hooks/useAppDesignTokens.d.ts +34 -0
- package/lib/presentation/hooks/useAppDesignTokens.d.ts.map +1 -0
- package/lib/presentation/hooks/useAppDesignTokens.js +39 -0
- package/lib/presentation/hooks/useAppDesignTokens.js.map +1 -0
- package/lib/presentation/hooks/useResponsive.d.ts +80 -0
- package/lib/presentation/hooks/useResponsive.d.ts.map +1 -0
- package/lib/presentation/hooks/useResponsive.js +82 -0
- package/lib/presentation/hooks/useResponsive.js.map +1 -0
- package/lib/presentation/loading/index.d.ts +23 -0
- package/lib/presentation/loading/index.d.ts.map +1 -0
- package/lib/presentation/loading/index.js +26 -0
- package/lib/presentation/loading/index.js.map +1 -0
- package/lib/presentation/loading/presentation/components/LoadingSpinner.d.ts +28 -0
- package/lib/presentation/loading/presentation/components/LoadingSpinner.d.ts.map +1 -0
- package/lib/presentation/loading/presentation/components/LoadingSpinner.js +77 -0
- package/lib/presentation/loading/presentation/components/LoadingSpinner.js.map +1 -0
- package/lib/presentation/loading/presentation/components/LoadingState.d.ts +39 -0
- package/lib/presentation/loading/presentation/components/LoadingState.d.ts.map +1 -0
- package/lib/presentation/loading/presentation/components/LoadingState.js +123 -0
- package/lib/presentation/loading/presentation/components/LoadingState.js.map +1 -0
- package/lib/presentation/loading/presentation/hooks/useLoading.d.ts +50 -0
- package/lib/presentation/loading/presentation/hooks/useLoading.d.ts.map +1 -0
- package/lib/presentation/loading/presentation/hooks/useLoading.js +49 -0
- package/lib/presentation/loading/presentation/hooks/useLoading.js.map +1 -0
- package/lib/presentation/molecules/AtomicConfirmationModal.d.ts +73 -0
- package/lib/presentation/molecules/AtomicConfirmationModal.d.ts.map +1 -0
- package/lib/presentation/molecules/AtomicConfirmationModal.js +172 -0
- package/lib/presentation/molecules/AtomicConfirmationModal.js.map +1 -0
- package/lib/presentation/molecules/EmptyState.d.ts +41 -0
- package/lib/presentation/molecules/EmptyState.d.ts.map +1 -0
- package/lib/presentation/molecules/EmptyState.js +68 -0
- package/lib/presentation/molecules/EmptyState.js.map +1 -0
- package/lib/presentation/molecules/FormField.d.ts +22 -0
- package/lib/presentation/molecules/FormField.d.ts.map +1 -0
- package/lib/presentation/molecules/FormField.js +76 -0
- package/lib/presentation/molecules/FormField.js.map +1 -0
- package/lib/presentation/molecules/GridContainer.d.ts +40 -0
- package/lib/presentation/molecules/GridContainer.d.ts.map +1 -0
- package/lib/presentation/molecules/GridContainer.js +77 -0
- package/lib/presentation/molecules/GridContainer.js.map +1 -0
- package/lib/presentation/molecules/IconContainer.d.ts +29 -0
- package/lib/presentation/molecules/IconContainer.d.ts.map +1 -0
- package/lib/presentation/molecules/IconContainer.js +60 -0
- package/lib/presentation/molecules/IconContainer.js.map +1 -0
- package/lib/presentation/molecules/LanguageSwitcher.d.ts +10 -0
- package/lib/presentation/molecules/LanguageSwitcher.d.ts.map +1 -0
- package/lib/presentation/molecules/LanguageSwitcher.js +24 -0
- package/lib/presentation/molecules/LanguageSwitcher.js.map +1 -0
- package/lib/presentation/molecules/ListItem.d.ts +5 -0
- package/lib/presentation/molecules/ListItem.d.ts.map +1 -0
- package/lib/presentation/molecules/ListItem.js +24 -0
- package/lib/presentation/molecules/ListItem.js.map +1 -0
- package/lib/presentation/molecules/ScreenHeader.d.ts +55 -0
- package/lib/presentation/molecules/ScreenHeader.d.ts.map +1 -0
- package/lib/presentation/molecules/ScreenHeader.js +94 -0
- package/lib/presentation/molecules/ScreenHeader.js.map +1 -0
- package/lib/presentation/molecules/SearchBar.d.ts +18 -0
- package/lib/presentation/molecules/SearchBar.d.ts.map +1 -0
- package/lib/presentation/molecules/SearchBar.js +47 -0
- package/lib/presentation/molecules/SearchBar.js.map +1 -0
- package/lib/presentation/molecules/SectionCard.d.ts +25 -0
- package/lib/presentation/molecules/SectionCard.d.ts.map +1 -0
- package/lib/presentation/molecules/SectionCard.js +47 -0
- package/lib/presentation/molecules/SectionCard.js.map +1 -0
- package/lib/presentation/molecules/SectionContainer.d.ts +33 -0
- package/lib/presentation/molecules/SectionContainer.d.ts.map +1 -0
- package/lib/presentation/molecules/SectionContainer.js +64 -0
- package/lib/presentation/molecules/SectionContainer.js.map +1 -0
- package/lib/presentation/molecules/SectionHeader.d.ts +37 -0
- package/lib/presentation/molecules/SectionHeader.d.ts.map +1 -0
- package/lib/presentation/molecules/SectionHeader.js +73 -0
- package/lib/presentation/molecules/SectionHeader.js.map +1 -0
- package/lib/presentation/molecules/confirmation-modal/styles/confirmationModalStyles.d.ts +50 -0
- package/lib/presentation/molecules/confirmation-modal/styles/confirmationModalStyles.d.ts.map +1 -0
- package/lib/presentation/molecules/confirmation-modal/styles/confirmationModalStyles.js +115 -0
- package/lib/presentation/molecules/confirmation-modal/styles/confirmationModalStyles.js.map +1 -0
- package/lib/presentation/molecules/confirmation-modal/types/index.d.ts +88 -0
- package/lib/presentation/molecules/confirmation-modal/types/index.d.ts.map +1 -0
- package/lib/presentation/molecules/confirmation-modal/types/index.js +7 -0
- package/lib/presentation/molecules/confirmation-modal/types/index.js.map +1 -0
- package/lib/presentation/molecules/index.d.ts +28 -0
- package/lib/presentation/molecules/index.d.ts.map +1 -0
- package/lib/presentation/molecules/index.js +18 -0
- package/lib/presentation/molecules/index.js.map +1 -0
- package/lib/presentation/molecules/languageswitcher/config/languageSwitcherConfig.d.ts +11 -0
- package/lib/presentation/molecules/languageswitcher/config/languageSwitcherConfig.d.ts.map +1 -0
- package/lib/presentation/molecules/languageswitcher/config/languageSwitcherConfig.js +6 -0
- package/lib/presentation/molecules/languageswitcher/config/languageSwitcherConfig.js.map +1 -0
- package/lib/presentation/molecules/languageswitcher/hooks/useLanguageNavigation.d.ts +5 -0
- package/lib/presentation/molecules/languageswitcher/hooks/useLanguageNavigation.d.ts.map +1 -0
- package/lib/presentation/molecules/languageswitcher/hooks/useLanguageNavigation.js +12 -0
- package/lib/presentation/molecules/languageswitcher/hooks/useLanguageNavigation.js.map +1 -0
- package/lib/presentation/molecules/listitem/styles/listItemStyles.d.ts +12 -0
- package/lib/presentation/molecules/listitem/styles/listItemStyles.d.ts.map +1 -0
- package/lib/presentation/molecules/listitem/styles/listItemStyles.js +15 -0
- package/lib/presentation/molecules/listitem/styles/listItemStyles.js.map +1 -0
- package/lib/presentation/molecules/listitem/types/index.d.ts +17 -0
- package/lib/presentation/molecules/listitem/types/index.d.ts.map +1 -0
- package/lib/presentation/molecules/listitem/types/index.js +2 -0
- package/lib/presentation/molecules/listitem/types/index.js.map +1 -0
- package/lib/presentation/organisms/AppHeader.d.ts +30 -0
- package/lib/presentation/organisms/AppHeader.d.ts.map +1 -0
- package/lib/presentation/organisms/AppHeader.js +78 -0
- package/lib/presentation/organisms/AppHeader.js.map +1 -0
- package/lib/presentation/organisms/FormContainer.d.ts +76 -0
- package/lib/presentation/organisms/FormContainer.d.ts.map +1 -0
- package/lib/presentation/organisms/FormContainer.js +127 -0
- package/lib/presentation/organisms/FormContainer.js.map +1 -0
- package/lib/presentation/organisms/ScreenLayout.d.ts +99 -0
- package/lib/presentation/organisms/ScreenLayout.d.ts.map +1 -0
- package/lib/presentation/organisms/ScreenLayout.js +78 -0
- package/lib/presentation/organisms/ScreenLayout.js.map +1 -0
- package/lib/presentation/organisms/index.d.ts +16 -0
- package/lib/presentation/organisms/index.d.ts.map +1 -0
- package/lib/presentation/organisms/index.js +14 -0
- package/lib/presentation/organisms/index.js.map +1 -0
- package/lib/presentation/tokens/AppDesignTokens.d.ts +14 -0
- package/lib/presentation/tokens/AppDesignTokens.d.ts.map +1 -0
- package/lib/presentation/tokens/AppDesignTokens.js +23 -0
- package/lib/presentation/tokens/AppDesignTokens.js.map +1 -0
- package/lib/presentation/tokens/commonStyles.d.ts +122 -0
- package/lib/presentation/tokens/commonStyles.d.ts.map +1 -0
- package/lib/presentation/tokens/commonStyles.js +220 -0
- package/lib/presentation/tokens/commonStyles.js.map +1 -0
- package/lib/presentation/tokens/core/BaseTokens.d.ts +337 -0
- package/lib/presentation/tokens/core/BaseTokens.d.ts.map +1 -0
- package/lib/presentation/tokens/core/BaseTokens.js +322 -0
- package/lib/presentation/tokens/core/BaseTokens.js.map +1 -0
- package/lib/presentation/tokens/core/ColorPalette.d.ts +216 -0
- package/lib/presentation/tokens/core/ColorPalette.d.ts.map +1 -0
- package/lib/presentation/tokens/core/ColorPalette.js +330 -0
- package/lib/presentation/tokens/core/ColorPalette.js.map +1 -0
- package/lib/presentation/tokens/core/TokenFactory.d.ts +229 -0
- package/lib/presentation/tokens/core/TokenFactory.d.ts.map +1 -0
- package/lib/presentation/tokens/core/TokenFactory.js +87 -0
- package/lib/presentation/tokens/core/TokenFactory.js.map +1 -0
- package/lib/presentation/utils/platformConstants.d.ts +100 -0
- package/lib/presentation/utils/platformConstants.d.ts.map +1 -0
- package/lib/presentation/utils/platformConstants.js +114 -0
- package/lib/presentation/utils/platformConstants.js.map +1 -0
- package/lib/presentation/utils/responsive.d.ts +218 -0
- package/lib/presentation/utils/responsive.d.ts.map +1 -0
- package/lib/presentation/utils/responsive.js +452 -0
- package/lib/presentation/utils/responsive.js.map +1 -0
- package/lib/presentation/utils/variants/compound.d.ts +10 -0
- package/lib/presentation/utils/variants/compound.d.ts.map +1 -0
- package/lib/presentation/utils/variants/compound.js +16 -0
- package/lib/presentation/utils/variants/compound.js.map +1 -0
- package/lib/presentation/utils/variants/core.d.ts +15 -0
- package/lib/presentation/utils/variants/core.d.ts.map +1 -0
- package/lib/presentation/utils/variants/core.js +23 -0
- package/lib/presentation/utils/variants/core.js.map +1 -0
- package/lib/presentation/utils/variants/helpers.d.ts +5 -0
- package/lib/presentation/utils/variants/helpers.d.ts.map +1 -0
- package/lib/presentation/utils/variants/helpers.js +10 -0
- package/lib/presentation/utils/variants/helpers.js.map +1 -0
- package/lib/presentation/utils/variants.d.ts +4 -0
- package/lib/presentation/utils/variants.d.ts.map +1 -0
- package/lib/presentation/utils/variants.js +4 -0
- package/lib/presentation/utils/variants.js.map +1 -0
- package/package.json +38 -4
- package/src/domains/icons/domain/interfaces/IIconAdapter.ts +5 -3
- package/src/domains/icons/infrastructure/adapters/LucideAdapter.ts +1 -1
- package/src/presentation/molecules/AtomicConfirmationModal.tsx +1 -1
- package/src/presentation/molecules/languageswitcher/hooks/useLanguageNavigation.ts +1 -2
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Organism Components Export Index
|
|
3
|
+
*
|
|
4
|
+
* Organisms are complex components composed of molecules and atoms
|
|
5
|
+
* Theme: {{THEME_NAME}} ({{CATEGORY}} category)
|
|
6
|
+
*
|
|
7
|
+
* Atomic Design Level: ORGANISMS
|
|
8
|
+
*/
|
|
9
|
+
export { AppHeader } from './AppHeader';
|
|
10
|
+
export { ScreenLayout } from './ScreenLayout';
|
|
11
|
+
export type { AppHeaderProps } from './AppHeader';
|
|
12
|
+
export type { ScreenLayoutProps } from './ScreenLayout';
|
|
13
|
+
import type { AppHeaderProps } from './AppHeader';
|
|
14
|
+
import type { ScreenLayoutProps } from './ScreenLayout';
|
|
15
|
+
export type OrganismComponentProps = AppHeaderProps | ScreenLayoutProps;
|
|
16
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/presentation/organisms/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAIH,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAGxC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAG9C,YAAY,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAClD,YAAY,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAGxD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAClD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAExD,MAAM,MAAM,sBAAsB,GAAG,cAAc,GAAG,iBAAiB,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Organism Components Export Index
|
|
3
|
+
*
|
|
4
|
+
* Organisms are complex components composed of molecules and atoms
|
|
5
|
+
* Theme: {{THEME_NAME}} ({{CATEGORY}} category)
|
|
6
|
+
*
|
|
7
|
+
* Atomic Design Level: ORGANISMS
|
|
8
|
+
*/
|
|
9
|
+
// Component exports
|
|
10
|
+
// AppHeader - Main application header with navigation
|
|
11
|
+
export { AppHeader } from './AppHeader';
|
|
12
|
+
// ScreenLayout - Universal screen container with consistent layout
|
|
13
|
+
export { ScreenLayout } from './ScreenLayout';
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/presentation/organisms/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,oBAAoB;AACpB,sDAAsD;AACtD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAExC,mEAAmE;AACnE,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DESIGN TOKENS - PUBLIC API
|
|
3
|
+
*
|
|
4
|
+
* ✅ CLEAN BARREL EXPORT - Single source of truth
|
|
5
|
+
* ✅ ZERO DUPLICATION - All tokens from TokenFactory
|
|
6
|
+
* ✅ TYPE-SAFE - Full TypeScript support
|
|
7
|
+
* ✅ FACTORY-FIRST - Benefits all 100+ generated apps
|
|
8
|
+
*
|
|
9
|
+
* @module AppDesignTokens
|
|
10
|
+
*/
|
|
11
|
+
export { createDesignTokens, STATIC_DESIGN_TOKENS, STATIC_TOKENS, withAlpha, type DesignTokens, type ThemeMode, type ColorPalette, } from './core/TokenFactory';
|
|
12
|
+
export { BASE_TOKENS, spacing, typography, animations, borders, iconSizes, opacity, avatarSizes, type Spacing, type Typography, type Animations, type Borders, type IconSizes, type Opacity, type AvatarSizes, type BaseTokens, } from './core/BaseTokens';
|
|
13
|
+
export { lightColors, darkColors, getColorPalette, } from './core/ColorPalette';
|
|
14
|
+
//# sourceMappingURL=AppDesignTokens.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AppDesignTokens.d.ts","sourceRoot":"","sources":["../../../src/presentation/tokens/AppDesignTokens.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAMH,OAAO,EACL,kBAAkB,EAClB,oBAAoB,EACpB,aAAa,EACb,SAAS,EACT,KAAK,YAAY,EACjB,KAAK,SAAS,EACd,KAAK,YAAY,GAClB,MAAM,qBAAqB,CAAC;AAM7B,OAAO,EACL,WAAW,EACX,OAAO,EACP,UAAU,EACV,UAAU,EACV,OAAO,EACP,SAAS,EACT,OAAO,EACP,WAAW,EACX,KAAK,OAAO,EACZ,KAAK,UAAU,EACf,KAAK,UAAU,EACf,KAAK,OAAO,EACZ,KAAK,SAAS,EACd,KAAK,OAAO,EACZ,KAAK,WAAW,EAChB,KAAK,UAAU,GAChB,MAAM,mBAAmB,CAAC;AAM3B,OAAO,EACL,WAAW,EACX,UAAU,EACV,eAAe,GAChB,MAAM,qBAAqB,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DESIGN TOKENS - PUBLIC API
|
|
3
|
+
*
|
|
4
|
+
* ✅ CLEAN BARREL EXPORT - Single source of truth
|
|
5
|
+
* ✅ ZERO DUPLICATION - All tokens from TokenFactory
|
|
6
|
+
* ✅ TYPE-SAFE - Full TypeScript support
|
|
7
|
+
* ✅ FACTORY-FIRST - Benefits all 100+ generated apps
|
|
8
|
+
*
|
|
9
|
+
* @module AppDesignTokens
|
|
10
|
+
*/
|
|
11
|
+
// =============================================================================
|
|
12
|
+
// CORE EXPORTS (from TokenFactory)
|
|
13
|
+
// =============================================================================
|
|
14
|
+
export { createDesignTokens, STATIC_DESIGN_TOKENS, STATIC_TOKENS, withAlpha, } from './core/TokenFactory';
|
|
15
|
+
// =============================================================================
|
|
16
|
+
// BASE TOKEN EXPORTS
|
|
17
|
+
// =============================================================================
|
|
18
|
+
export { BASE_TOKENS, spacing, typography, animations, borders, iconSizes, opacity, avatarSizes, } from './core/BaseTokens';
|
|
19
|
+
// =============================================================================
|
|
20
|
+
// COLOR PALETTE EXPORTS
|
|
21
|
+
// =============================================================================
|
|
22
|
+
export { lightColors, darkColors, getColorPalette, } from './core/ColorPalette';
|
|
23
|
+
//# sourceMappingURL=AppDesignTokens.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AppDesignTokens.js","sourceRoot":"","sources":["../../../src/presentation/tokens/AppDesignTokens.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,gFAAgF;AAChF,mCAAmC;AACnC,gFAAgF;AAEhF,OAAO,EACL,kBAAkB,EAClB,oBAAoB,EACpB,aAAa,EACb,SAAS,GAIV,MAAM,qBAAqB,CAAC;AAE7B,gFAAgF;AAChF,qBAAqB;AACrB,gFAAgF;AAEhF,OAAO,EACL,WAAW,EACX,OAAO,EACP,UAAU,EACV,UAAU,EACV,OAAO,EACP,SAAS,EACT,OAAO,EACP,WAAW,GASZ,MAAM,mBAAmB,CAAC;AAE3B,gFAAgF;AAChF,wBAAwB;AACxB,gFAAgF;AAEhF,OAAO,EACL,WAAW,EACX,UAAU,EACV,eAAe,GAChB,MAAM,qBAAqB,CAAC"}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Common Styles - Reusable Style Patterns
|
|
3
|
+
*
|
|
4
|
+
* Centralized style utilities to reduce duplication across screens.
|
|
5
|
+
* These styles are composable and follow DRY principles.
|
|
6
|
+
*
|
|
7
|
+
* Usage:
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import { useCommonStyles } from '@domains/design-system/commonStyles';
|
|
10
|
+
*
|
|
11
|
+
* const MyComponent = () => {
|
|
12
|
+
* const commonStyles = useCommonStyles();
|
|
13
|
+
* return <View style={commonStyles.screenContainer}>...</View>;
|
|
14
|
+
* };
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
import { ViewStyle, TextStyle } from 'react-native';
|
|
18
|
+
/**
|
|
19
|
+
* Hook to get common styles with dynamic theme support
|
|
20
|
+
*/
|
|
21
|
+
export declare const useCommonStyles: () => {
|
|
22
|
+
/**
|
|
23
|
+
* Standard full-screen container
|
|
24
|
+
* Most common pattern: flex: 1 with background color
|
|
25
|
+
*/
|
|
26
|
+
screenContainer: ViewStyle;
|
|
27
|
+
/**
|
|
28
|
+
* Basic flex container without background
|
|
29
|
+
* Use when background is set elsewhere or not needed
|
|
30
|
+
*/
|
|
31
|
+
flexContainer: ViewStyle;
|
|
32
|
+
/**
|
|
33
|
+
* Screen container with secondary background
|
|
34
|
+
*/
|
|
35
|
+
screenContainerSecondary: ViewStyle;
|
|
36
|
+
/**
|
|
37
|
+
* Standard ScrollView wrapper
|
|
38
|
+
*/
|
|
39
|
+
scrollView: ViewStyle;
|
|
40
|
+
/**
|
|
41
|
+
* ScrollView content container with standard padding
|
|
42
|
+
*/
|
|
43
|
+
scrollContent: ViewStyle;
|
|
44
|
+
/**
|
|
45
|
+
* ScrollView content that grows to fill available space
|
|
46
|
+
*/
|
|
47
|
+
scrollContentGrow: ViewStyle;
|
|
48
|
+
/**
|
|
49
|
+
* Centered scroll content (for forms, onboarding screens)
|
|
50
|
+
*/
|
|
51
|
+
scrollContentCentered: ViewStyle;
|
|
52
|
+
/**
|
|
53
|
+
* Centered container - both horizontal and vertical
|
|
54
|
+
* Perfect for empty states, loading screens, splash screens
|
|
55
|
+
*/
|
|
56
|
+
centerContainer: ViewStyle;
|
|
57
|
+
/**
|
|
58
|
+
* Centered container with padding
|
|
59
|
+
*/
|
|
60
|
+
centerContainerPadded: ViewStyle;
|
|
61
|
+
/**
|
|
62
|
+
* Horizontal row layout
|
|
63
|
+
*/
|
|
64
|
+
row: ViewStyle;
|
|
65
|
+
/**
|
|
66
|
+
* Horizontal row with space between
|
|
67
|
+
*/
|
|
68
|
+
rowBetween: ViewStyle;
|
|
69
|
+
/**
|
|
70
|
+
* Horizontal row centered
|
|
71
|
+
*/
|
|
72
|
+
rowCenter: ViewStyle;
|
|
73
|
+
/**
|
|
74
|
+
* Standard horizontal padding
|
|
75
|
+
*/
|
|
76
|
+
paddedHorizontal: ViewStyle;
|
|
77
|
+
/**
|
|
78
|
+
* Standard vertical padding
|
|
79
|
+
*/
|
|
80
|
+
paddedVertical: ViewStyle;
|
|
81
|
+
/**
|
|
82
|
+
* Standard padding all sides
|
|
83
|
+
*/
|
|
84
|
+
padded: ViewStyle;
|
|
85
|
+
/**
|
|
86
|
+
* Standard section container
|
|
87
|
+
*/
|
|
88
|
+
section: ViewStyle;
|
|
89
|
+
/**
|
|
90
|
+
* Section with padding
|
|
91
|
+
*/
|
|
92
|
+
sectionPadded: ViewStyle;
|
|
93
|
+
/**
|
|
94
|
+
* Screen title - primary heading
|
|
95
|
+
*/
|
|
96
|
+
screenTitle: TextStyle;
|
|
97
|
+
/**
|
|
98
|
+
* Section title
|
|
99
|
+
*/
|
|
100
|
+
sectionTitle: TextStyle;
|
|
101
|
+
/**
|
|
102
|
+
* Subtitle/description text
|
|
103
|
+
*/
|
|
104
|
+
subtitle: TextStyle;
|
|
105
|
+
/**
|
|
106
|
+
* Body text
|
|
107
|
+
*/
|
|
108
|
+
bodyText: TextStyle;
|
|
109
|
+
/**
|
|
110
|
+
* Secondary text (muted)
|
|
111
|
+
*/
|
|
112
|
+
secondaryText: TextStyle;
|
|
113
|
+
/**
|
|
114
|
+
* Form container
|
|
115
|
+
*/
|
|
116
|
+
form: ViewStyle;
|
|
117
|
+
/**
|
|
118
|
+
* Form header section
|
|
119
|
+
*/
|
|
120
|
+
formHeader: ViewStyle;
|
|
121
|
+
};
|
|
122
|
+
//# sourceMappingURL=commonStyles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"commonStyles.d.ts","sourceRoot":"","sources":["../../../src/presentation/tokens/commonStyles.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAEH,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAGpD;;GAEG;AACH,eAAO,MAAM,eAAe;IAQxB;;;OAGG;qBAIE,SAAS;IAEd;;;OAGG;mBAGE,SAAS;IAEd;;OAEG;8BAIE,SAAS;IAMd;;OAEG;gBAGE,SAAS;IAEd;;OAEG;mBAIE,SAAS;IAEd;;OAEG;uBAIE,SAAS;IAEd;;OAEG;2BAKE,SAAS;IAMd;;;OAGG;qBAKE,SAAS;IAEd;;OAEG;2BAME,SAAS;IAEd;;OAEG;SAIE,SAAS;IAEd;;OAEG;gBAKE,SAAS;IAEd;;OAEG;eAKE,SAAS;IAMd;;OAEG;sBAGE,SAAS;IAEd;;OAEG;oBAGE,SAAS;IAEd;;OAEG;YAGE,SAAS;IAMd;;OAEG;aAGE,SAAS;IAEd;;OAEG;mBAIE,SAAS;IAMd;;OAEG;iBAKE,SAAS;IAEd;;OAEG;kBAKE,SAAS;IAEd;;OAEG;cAKE,SAAS;IAEd;;OAEG;cAIE,SAAS;IAEd;;OAEG;mBAIE,SAAS;IAMd;;OAEG;UAGE,SAAS;IAEd;;OAEG;gBAIE,SAAS;CAEjB,CAAC"}
|
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Common Styles - Reusable Style Patterns
|
|
3
|
+
*
|
|
4
|
+
* Centralized style utilities to reduce duplication across screens.
|
|
5
|
+
* These styles are composable and follow DRY principles.
|
|
6
|
+
*
|
|
7
|
+
* Usage:
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import { useCommonStyles } from '@domains/design-system/commonStyles';
|
|
10
|
+
*
|
|
11
|
+
* const MyComponent = () => {
|
|
12
|
+
* const commonStyles = useCommonStyles();
|
|
13
|
+
* return <View style={commonStyles.screenContainer}>...</View>;
|
|
14
|
+
* };
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
import { useAppDesignTokens } from '../hooks/useAppDesignTokens';
|
|
18
|
+
/**
|
|
19
|
+
* Hook to get common styles with dynamic theme support
|
|
20
|
+
*/
|
|
21
|
+
export const useCommonStyles = () => {
|
|
22
|
+
const tokens = useAppDesignTokens();
|
|
23
|
+
return {
|
|
24
|
+
// ========================================================================
|
|
25
|
+
// SCREEN CONTAINERS
|
|
26
|
+
// ========================================================================
|
|
27
|
+
/**
|
|
28
|
+
* Standard full-screen container
|
|
29
|
+
* Most common pattern: flex: 1 with background color
|
|
30
|
+
*/
|
|
31
|
+
screenContainer: {
|
|
32
|
+
flex: 1,
|
|
33
|
+
backgroundColor: tokens.colors.backgroundPrimary,
|
|
34
|
+
},
|
|
35
|
+
/**
|
|
36
|
+
* Basic flex container without background
|
|
37
|
+
* Use when background is set elsewhere or not needed
|
|
38
|
+
*/
|
|
39
|
+
flexContainer: {
|
|
40
|
+
flex: 1,
|
|
41
|
+
},
|
|
42
|
+
/**
|
|
43
|
+
* Screen container with secondary background
|
|
44
|
+
*/
|
|
45
|
+
screenContainerSecondary: {
|
|
46
|
+
flex: 1,
|
|
47
|
+
backgroundColor: tokens.colors.backgroundSecondary,
|
|
48
|
+
},
|
|
49
|
+
// ========================================================================
|
|
50
|
+
// SCROLL CONTAINERS
|
|
51
|
+
// ========================================================================
|
|
52
|
+
/**
|
|
53
|
+
* Standard ScrollView wrapper
|
|
54
|
+
*/
|
|
55
|
+
scrollView: {
|
|
56
|
+
flex: 1,
|
|
57
|
+
},
|
|
58
|
+
/**
|
|
59
|
+
* ScrollView content container with standard padding
|
|
60
|
+
*/
|
|
61
|
+
scrollContent: {
|
|
62
|
+
paddingHorizontal: tokens.spacing.lg,
|
|
63
|
+
paddingBottom: tokens.spacing.xl,
|
|
64
|
+
},
|
|
65
|
+
/**
|
|
66
|
+
* ScrollView content that grows to fill available space
|
|
67
|
+
*/
|
|
68
|
+
scrollContentGrow: {
|
|
69
|
+
flexGrow: 1,
|
|
70
|
+
padding: tokens.spacing.lg,
|
|
71
|
+
},
|
|
72
|
+
/**
|
|
73
|
+
* Centered scroll content (for forms, onboarding screens)
|
|
74
|
+
*/
|
|
75
|
+
scrollContentCentered: {
|
|
76
|
+
flexGrow: 1,
|
|
77
|
+
padding: tokens.spacing.lg,
|
|
78
|
+
justifyContent: 'center',
|
|
79
|
+
},
|
|
80
|
+
// ========================================================================
|
|
81
|
+
// LAYOUT UTILITIES
|
|
82
|
+
// ========================================================================
|
|
83
|
+
/**
|
|
84
|
+
* Centered container - both horizontal and vertical
|
|
85
|
+
* Perfect for empty states, loading screens, splash screens
|
|
86
|
+
*/
|
|
87
|
+
centerContainer: {
|
|
88
|
+
flex: 1,
|
|
89
|
+
justifyContent: 'center',
|
|
90
|
+
alignItems: 'center',
|
|
91
|
+
},
|
|
92
|
+
/**
|
|
93
|
+
* Centered container with padding
|
|
94
|
+
*/
|
|
95
|
+
centerContainerPadded: {
|
|
96
|
+
flex: 1,
|
|
97
|
+
justifyContent: 'center',
|
|
98
|
+
alignItems: 'center',
|
|
99
|
+
paddingHorizontal: tokens.spacing.xl,
|
|
100
|
+
},
|
|
101
|
+
/**
|
|
102
|
+
* Horizontal row layout
|
|
103
|
+
*/
|
|
104
|
+
row: {
|
|
105
|
+
flexDirection: 'row',
|
|
106
|
+
alignItems: 'center',
|
|
107
|
+
},
|
|
108
|
+
/**
|
|
109
|
+
* Horizontal row with space between
|
|
110
|
+
*/
|
|
111
|
+
rowBetween: {
|
|
112
|
+
flexDirection: 'row',
|
|
113
|
+
alignItems: 'center',
|
|
114
|
+
justifyContent: 'space-between',
|
|
115
|
+
},
|
|
116
|
+
/**
|
|
117
|
+
* Horizontal row centered
|
|
118
|
+
*/
|
|
119
|
+
rowCenter: {
|
|
120
|
+
flexDirection: 'row',
|
|
121
|
+
alignItems: 'center',
|
|
122
|
+
justifyContent: 'center',
|
|
123
|
+
},
|
|
124
|
+
// ========================================================================
|
|
125
|
+
// PADDING UTILITIES
|
|
126
|
+
// ========================================================================
|
|
127
|
+
/**
|
|
128
|
+
* Standard horizontal padding
|
|
129
|
+
*/
|
|
130
|
+
paddedHorizontal: {
|
|
131
|
+
paddingHorizontal: tokens.spacing.lg,
|
|
132
|
+
},
|
|
133
|
+
/**
|
|
134
|
+
* Standard vertical padding
|
|
135
|
+
*/
|
|
136
|
+
paddedVertical: {
|
|
137
|
+
paddingVertical: tokens.spacing.lg,
|
|
138
|
+
},
|
|
139
|
+
/**
|
|
140
|
+
* Standard padding all sides
|
|
141
|
+
*/
|
|
142
|
+
padded: {
|
|
143
|
+
padding: tokens.spacing.lg,
|
|
144
|
+
},
|
|
145
|
+
// ========================================================================
|
|
146
|
+
// SECTION STYLES
|
|
147
|
+
// ========================================================================
|
|
148
|
+
/**
|
|
149
|
+
* Standard section container
|
|
150
|
+
*/
|
|
151
|
+
section: {
|
|
152
|
+
marginBottom: tokens.spacing.xl,
|
|
153
|
+
},
|
|
154
|
+
/**
|
|
155
|
+
* Section with padding
|
|
156
|
+
*/
|
|
157
|
+
sectionPadded: {
|
|
158
|
+
marginBottom: tokens.spacing.xl,
|
|
159
|
+
paddingHorizontal: tokens.spacing.lg,
|
|
160
|
+
},
|
|
161
|
+
// ========================================================================
|
|
162
|
+
// TEXT STYLES
|
|
163
|
+
// ========================================================================
|
|
164
|
+
/**
|
|
165
|
+
* Screen title - primary heading
|
|
166
|
+
*/
|
|
167
|
+
screenTitle: {
|
|
168
|
+
...tokens.typography.headingLarge,
|
|
169
|
+
color: tokens.colors.textPrimary,
|
|
170
|
+
marginBottom: tokens.spacing.sm,
|
|
171
|
+
},
|
|
172
|
+
/**
|
|
173
|
+
* Section title
|
|
174
|
+
*/
|
|
175
|
+
sectionTitle: {
|
|
176
|
+
...tokens.typography.headingMedium,
|
|
177
|
+
color: tokens.colors.textPrimary,
|
|
178
|
+
marginBottom: tokens.spacing.md,
|
|
179
|
+
},
|
|
180
|
+
/**
|
|
181
|
+
* Subtitle/description text
|
|
182
|
+
*/
|
|
183
|
+
subtitle: {
|
|
184
|
+
...tokens.typography.bodyMedium,
|
|
185
|
+
color: tokens.colors.textSecondary,
|
|
186
|
+
textAlign: 'center',
|
|
187
|
+
},
|
|
188
|
+
/**
|
|
189
|
+
* Body text
|
|
190
|
+
*/
|
|
191
|
+
bodyText: {
|
|
192
|
+
...tokens.typography.bodyMedium,
|
|
193
|
+
color: tokens.colors.textPrimary,
|
|
194
|
+
},
|
|
195
|
+
/**
|
|
196
|
+
* Secondary text (muted)
|
|
197
|
+
*/
|
|
198
|
+
secondaryText: {
|
|
199
|
+
...tokens.typography.bodySmall,
|
|
200
|
+
color: tokens.colors.textSecondary,
|
|
201
|
+
},
|
|
202
|
+
// ========================================================================
|
|
203
|
+
// FORM STYLES
|
|
204
|
+
// ========================================================================
|
|
205
|
+
/**
|
|
206
|
+
* Form container
|
|
207
|
+
*/
|
|
208
|
+
form: {
|
|
209
|
+
width: '100%',
|
|
210
|
+
},
|
|
211
|
+
/**
|
|
212
|
+
* Form header section
|
|
213
|
+
*/
|
|
214
|
+
formHeader: {
|
|
215
|
+
alignItems: 'center',
|
|
216
|
+
marginBottom: tokens.spacing.xl,
|
|
217
|
+
},
|
|
218
|
+
};
|
|
219
|
+
};
|
|
220
|
+
//# sourceMappingURL=commonStyles.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"commonStyles.js","sourceRoot":"","sources":["../../../src/presentation/tokens/commonStyles.ts"],"names":[],"mappings":"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"}
|