@itcase/ui-react-native 1.10.81
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/.storybook-react-native/index.ts +15 -0
- package/.storybook-react-native/main.ts +13 -0
- package/.storybook-react-native/preview.tsx +83 -0
- package/.storybook-react-native/tsconfig.json +5 -0
- package/.storybook-react-native-web/main.ts +49 -0
- package/.storybook-react-native-web/preview.tsx +104 -0
- package/.storybook-react-native-web/tsconfig.json +5 -0
- package/demoApp/.bundle/config +2 -0
- package/demoApp/.watchmanconfig +8 -0
- package/demoApp/App.tsx +61 -0
- package/demoApp/Gemfile +17 -0
- package/demoApp/README.md +97 -0
- package/demoApp/android/app/build.gradle +119 -0
- package/demoApp/android/app/debug.keystore +0 -0
- package/demoApp/android/app/proguard-rules.pro +10 -0
- package/demoApp/android/app/src/main/AndroidManifest.xml +27 -0
- package/demoApp/android/app/src/main/java/com/demoapp/MainActivity.kt +22 -0
- package/demoApp/android/app/src/main/java/com/demoapp/MainApplication.kt +27 -0
- package/demoApp/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
- package/demoApp/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/demoApp/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/demoApp/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/demoApp/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/demoApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/demoApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/demoApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/demoApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/demoApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/demoApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/demoApp/android/app/src/main/res/values/strings.xml +3 -0
- package/demoApp/android/app/src/main/res/values/styles.xml +9 -0
- package/demoApp/android/build.gradle +21 -0
- package/demoApp/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/demoApp/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/demoApp/android/gradle.properties +49 -0
- package/demoApp/android/gradlew +251 -0
- package/demoApp/android/gradlew.bat +99 -0
- package/demoApp/android/settings.gradle +6 -0
- package/demoApp/app.json +4 -0
- package/demoApp/babel.config.js +7 -0
- package/demoApp/index.js +9 -0
- package/demoApp/ios/.xcode.env +11 -0
- package/demoApp/ios/Podfile +34 -0
- package/demoApp/ios/Podfile.lock +2445 -0
- package/demoApp/ios/demoApp/AppDelegate.swift +48 -0
- package/demoApp/ios/demoApp/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- package/demoApp/ios/demoApp/Images.xcassets/Contents.json +6 -0
- package/demoApp/ios/demoApp/Info.plist +60 -0
- package/demoApp/ios/demoApp/LaunchScreen.storyboard +47 -0
- package/demoApp/ios/demoApp/PrivacyInfo.xcprivacy +37 -0
- package/demoApp/ios/demoApp.xcodeproj/project.pbxproj +494 -0
- package/demoApp/ios/demoApp.xcodeproj/xcshareddata/xcschemes/demoApp.xcscheme +88 -0
- package/demoApp/ios/demoApp.xcworkspace/contents.xcworkspacedata +10 -0
- package/demoApp/metro-transformer.js +16 -0
- package/demoApp/metro.config.js +296 -0
- package/demoApp/package-lock.json +41233 -0
- package/demoApp/package.json +56 -0
- package/demoApp/tsconfig.json +8 -0
- package/package.json +58 -0
- package/postcss.config.mjs +1 -0
- package/src/components/Avatar/Avatar.appearance.ts +14 -0
- package/src/components/Avatar/Avatar.interface.ts +99 -0
- package/src/components/Avatar/Avatar.styles.ts +11 -0
- package/src/components/Avatar/Avatar.tsx +181 -0
- package/src/components/Avatar/appearance/avatarShape.ts +24 -0
- package/src/components/Avatar/appearance/avatarSize.ts +66 -0
- package/src/components/Avatar/appearance/avatarStyle.ts +17 -0
- package/src/components/Avatar/appearance/avatarSurface.ts +42 -0
- package/src/components/Avatar/index.ts +36 -0
- package/src/components/Avatar/stories/AvatarCount.stories.tsx +35 -0
- package/src/components/Avatar/stories/AvatarImage.stories.tsx +36 -0
- package/src/components/Avatar/stories/AvatarInteraction.stories.tsx +25 -0
- package/src/components/Avatar/stories/AvatarLetters.stories.tsx +36 -0
- package/src/components/Avatar/stories/AvatarShape.stories.tsx +54 -0
- package/src/components/Avatar/stories/AvatarSize.stories.tsx +78 -0
- package/src/components/Avatar/stories/AvatarStories.config.ts +12 -0
- package/src/components/Avatar/stories/AvatarStyle.stories.tsx +42 -0
- package/src/components/Avatar/styles/avatar.ts +32 -0
- package/src/components/Avatar/styles/avatarShape.ts +34 -0
- package/src/components/Avatar/styles/avatarSize.ts +22 -0
- package/src/components/AvatarStack/AvatarStack.interface.ts +19 -0
- package/src/components/AvatarStack/AvatarStack.styles.ts +11 -0
- package/src/components/AvatarStack/AvatarStack.tsx +82 -0
- package/src/components/AvatarStack/index.ts +7 -0
- package/src/components/AvatarStack/stories/AvatarStack.stories.tsx +56 -0
- package/src/components/AvatarStack/styles/avatarStack.ts +17 -0
- package/src/components/AvatarStack/styles/avatarStackDirection.ts +22 -0
- package/src/components/AvatarStack/styles/avatarStackSize.ts +76 -0
- package/src/components/Badge/Badge.appearance.ts +14 -0
- package/src/components/Badge/Badge.interface.ts +50 -0
- package/src/components/Badge/Badge.styles.ts +13 -0
- package/src/components/Badge/Badge.tsx +93 -0
- package/src/components/Badge/appearance/badgeAccent.ts +10 -0
- package/src/components/Badge/appearance/badgeDanger.ts +10 -0
- package/src/components/Badge/appearance/badgeExtra.ts +10 -0
- package/src/components/Badge/appearance/badgeShape.ts +24 -0
- package/src/components/Badge/index.ts +34 -0
- package/src/components/Badge/stories/BadgeDefault.stories.tsx +39 -0
- package/src/components/Badge/stories/BadgeShape.stories.tsx +57 -0
- package/src/components/Badge/stories/BadgeSize.stories.tsx +33 -0
- package/src/components/Badge/stories/BadgeStatus.stories.tsx +23 -0
- package/src/components/Badge/styles/badge.ts +13 -0
- package/src/components/Badge/styles/badgeShape.ts +34 -0
- package/src/components/Badge/styles/badgeSize.ts +25 -0
- package/src/components/Badge/styles/badgeType.ts +20 -0
- package/src/components/Breadcrumbs/Breadcrumbs.appearance.ts +12 -0
- package/src/components/Breadcrumbs/Breadcrumbs.interface.ts +46 -0
- package/src/components/Breadcrumbs/Breadcrumbs.styles.ts +9 -0
- package/src/components/Breadcrumbs/Breadcrumbs.tsx +94 -0
- package/src/components/Breadcrumbs/appearance/breadcrumbsAccent.ts +10 -0
- package/src/components/Breadcrumbs/appearance/breadcrumbsSize.ts +22 -0
- package/src/components/Breadcrumbs/appearance/breadcrumbsSurface.ts +22 -0
- package/src/components/Breadcrumbs/index.ts +26 -0
- package/src/components/Breadcrumbs/stories/Breadcrumbs.stories.tsx +35 -0
- package/src/components/Breadcrumbs/styles/breadcrumbs.ts +18 -0
- package/src/components/Breadcrumbs/styles/breadcrumbsSize.ts +28 -0
- package/src/components/Button/Button.appearance.ts +16 -0
- package/src/components/Button/Button.interface.ts +76 -0
- package/src/components/Button/Button.styles.ts +11 -0
- package/src/components/Button/Button.tsx +147 -0
- package/src/components/Button/appearance/buttonAccent.ts +24 -0
- package/src/components/Button/appearance/buttonDanger.ts +14 -0
- package/src/components/Button/appearance/buttonExtra.ts +14 -0
- package/src/components/Button/appearance/buttonStyle.ts +17 -0
- package/src/components/Button/appearance/buttonSurface.ts +30 -0
- package/src/components/Button/index.ts +30 -0
- package/src/components/Button/stories/ButtonDefault.stories.tsx +77 -0
- package/src/components/Button/stories/ButtonDisabled.stories.tsx +23 -0
- package/src/components/Button/stories/ButtonSize.stories.tsx +63 -0
- package/src/components/Button/stories/ButtonStories.config.ts +46 -0
- package/src/components/Button/stories/ButtonStyle.stories.tsx +47 -0
- package/src/components/Button/styles/button.ts +26 -0
- package/src/components/Button/styles/buttonSize.ts +42 -0
- package/src/components/Button/styles/buttonText.ts +28 -0
- package/src/components/Cell/Cell.interface.ts +45 -0
- package/src/components/Cell/Cell.styles.ts +13 -0
- package/src/components/Cell/Cell.tsx +96 -0
- package/src/components/Cell/index.ts +17 -0
- package/src/components/Cell/stories/Cell.stories.tsx +35 -0
- package/src/components/Cell/styles/cell.ts +9 -0
- package/src/components/Cell/styles/cellDirection.ts +24 -0
- package/src/components/Cell/styles/cellShape.ts +16 -0
- package/src/components/Cell/styles/cellSize.ts +21 -0
- package/src/components/Checkbox/Checkbox.appearance.ts +22 -0
- package/src/components/Checkbox/Checkbox.interface.ts +99 -0
- package/src/components/Checkbox/Checkbox.styles.ts +13 -0
- package/src/components/Checkbox/Checkbox.tsx +193 -0
- package/src/components/Checkbox/appearance/checkboxDefault.ts +42 -0
- package/src/components/Checkbox/appearance/checkboxDisabled.ts +15 -0
- package/src/components/Checkbox/appearance/checkboxError.ts +15 -0
- package/src/components/Checkbox/appearance/checkboxRequire.ts +15 -0
- package/src/components/Checkbox/appearance/checkboxShape.ts +12 -0
- package/src/components/Checkbox/appearance/checkboxSize.ts +26 -0
- package/src/components/Checkbox/appearance/checkboxStyle.ts +22 -0
- package/src/components/Checkbox/appearance/checkboxSuccess.ts +15 -0
- package/src/components/Checkbox/index.ts +36 -0
- package/src/components/Checkbox/stories/Checkbox.stories.tsx +31 -0
- package/src/components/Checkbox/stories/CheckboxDisabled.stories.tsx +18 -0
- package/src/components/Checkbox/stories/CheckboxError.stories.tsx +53 -0
- package/src/components/Checkbox/stories/CheckboxLabel.stories.tsx +32 -0
- package/src/components/Checkbox/stories/CheckboxLabelDesc.stories.tsx +33 -0
- package/src/components/Checkbox/stories/CheckboxShape.stories.tsx +29 -0
- package/src/components/Checkbox/stories/CheckboxSize.stories.tsx +40 -0
- package/src/components/Checkbox/stories/CheckboxStories.config.tsx +26 -0
- package/src/components/Checkbox/styles/checkbox.ts +35 -0
- package/src/components/Checkbox/styles/checkboxAlign.ts +23 -0
- package/src/components/Checkbox/styles/checkboxShape.ts +37 -0
- package/src/components/Checkbox/styles/checkboxSize.ts +60 -0
- package/src/components/Checkmark/Checkmark.interface.ts +8 -0
- package/src/components/Checkmark/Checkmark.styles.ts +7 -0
- package/src/components/Checkmark/Checkmark.tsx +38 -0
- package/src/components/Checkmark/index.ts +5 -0
- package/src/components/Checkmark/stories/Checkmark.stories.tsx +22 -0
- package/src/components/Checkmark/styles/checkmark.ts +17 -0
- package/src/components/Chips/Chips.appearance.ts +32 -0
- package/src/components/Chips/Chips.interface.ts +103 -0
- package/src/components/Chips/Chips.styles.ts +11 -0
- package/src/components/Chips/Chips.tsx +187 -0
- package/src/components/Chips/appearance/chipsAccent.ts +24 -0
- package/src/components/Chips/appearance/chipsDanger.ts +20 -0
- package/src/components/Chips/appearance/chipsDisabled.ts +14 -0
- package/src/components/Chips/appearance/chipsError.ts +20 -0
- package/src/components/Chips/appearance/chipsExtra.ts +20 -0
- package/src/components/Chips/appearance/chipsInfo.ts +20 -0
- package/src/components/Chips/appearance/chipsShape.ts +24 -0
- package/src/components/Chips/appearance/chipsSize.ts +48 -0
- package/src/components/Chips/appearance/chipsSpecial.ts +20 -0
- package/src/components/Chips/appearance/chipsStyle.ts +17 -0
- package/src/components/Chips/appearance/chipsSuccess.ts +20 -0
- package/src/components/Chips/appearance/chipsSurface.ts +40 -0
- package/src/components/Chips/appearance/chipsWarning.ts +20 -0
- package/src/components/Chips/index.ts +30 -0
- package/src/components/Chips/stories/ChipsCheckLeft.stories.tsx +38 -0
- package/src/components/Chips/stories/ChipsCheckRight.stories.tsx +38 -0
- package/src/components/Chips/stories/ChipsClear.stories.tsx +38 -0
- package/src/components/Chips/stories/ChipsDefault.stories.tsx +90 -0
- package/src/components/Chips/stories/ChipsShape.stories.tsx +51 -0
- package/src/components/Chips/stories/ChipsSize.stories.tsx +57 -0
- package/src/components/Chips/stories/ChipsStyle.stories.tsx +39 -0
- package/src/components/Chips/styles/chips.ts +15 -0
- package/src/components/Chips/styles/chipsShape.ts +34 -0
- package/src/components/Chips/styles/chipsSize.ts +65 -0
- package/src/components/Choice/Choice.appearance.ts +22 -0
- package/src/components/Choice/Choice.interface.ts +119 -0
- package/src/components/Choice/Choice.styles.ts +13 -0
- package/src/components/Choice/Choice.tsx +258 -0
- package/src/components/Choice/appearance/choiceDefault.ts +34 -0
- package/src/components/Choice/appearance/choiceDisabled.ts +19 -0
- package/src/components/Choice/appearance/choiceError.ts +19 -0
- package/src/components/Choice/appearance/choiceRequire.ts +20 -0
- package/src/components/Choice/appearance/choiceShape.ts +24 -0
- package/src/components/Choice/appearance/choiceSize.ts +21 -0
- package/src/components/Choice/appearance/choiceStyle.ts +17 -0
- package/src/components/Choice/appearance/choiceSuccess.ts +20 -0
- package/src/components/Choice/index.ts +31 -0
- package/src/components/Choice/stories/ChoiceIcon.stories.tsx +50 -0
- package/src/components/Choice/stories/ChoiceLabel.stories.tsx +50 -0
- package/src/components/Choice/stories/ChoiceLabelIcon.stories.tsx +50 -0
- package/src/components/Choice/stories/ChoiceSize.stories.tsx +40 -0
- package/src/components/Choice/stories/ChoiceStories.config.tsx +77 -0
- package/src/components/Choice/stories/ChoiceStyle.stories.tsx +46 -0
- package/src/components/Choice/styles/choice.ts +45 -0
- package/src/components/Choice/styles/choiceShape.ts +34 -0
- package/src/components/Choice/styles/choiceSize.ts +58 -0
- package/src/components/Choice/styles/choiceWrap.ts +19 -0
- package/src/components/Code/Code.appearance.ts +20 -0
- package/src/components/Code/Code.interface.ts +43 -0
- package/src/components/Code/Code.styles.ts +11 -0
- package/src/components/Code/Code.tsx +75 -0
- package/src/components/Code/appearance/codeDefault.ts +11 -0
- package/src/components/Code/appearance/codeDisabled.ts +11 -0
- package/src/components/Code/appearance/codeError.ts +11 -0
- package/src/components/Code/appearance/codeShape.ts +15 -0
- package/src/components/Code/appearance/codeSize.ts +18 -0
- package/src/components/Code/appearance/codeStyle.ts +16 -0
- package/src/components/Code/appearance/codeSuccess.ts +11 -0
- package/src/components/Code/index.ts +22 -0
- package/src/components/Code/stories/Code.stories.tsx +41 -0
- package/src/components/Code/styles/code.ts +16 -0
- package/src/components/Code/styles/codeSize.ts +25 -0
- package/src/components/Code/styles/codeVariant.ts +19 -0
- package/src/components/ColorInput/ColorInput.appearance.ts +22 -0
- package/src/components/ColorInput/ColorInput.helpers.ts +7 -0
- package/src/components/ColorInput/ColorInput.interface.ts +48 -0
- package/src/components/ColorInput/ColorInput.styles.ts +9 -0
- package/src/components/ColorInput/ColorInput.tsx +105 -0
- package/src/components/ColorInput/appearance/colorInputDefault.ts +22 -0
- package/src/components/ColorInput/appearance/colorInputDisabled.ts +21 -0
- package/src/components/ColorInput/appearance/colorInputError.ts +21 -0
- package/src/components/ColorInput/appearance/colorInputRequire.ts +21 -0
- package/src/components/ColorInput/appearance/colorInputShape.ts +15 -0
- package/src/components/ColorInput/appearance/colorInputSize.ts +22 -0
- package/src/components/ColorInput/appearance/colorInputStyle.ts +16 -0
- package/src/components/ColorInput/appearance/colorInputSuccess.ts +21 -0
- package/src/components/ColorInput/index.ts +26 -0
- package/src/components/ColorInput/stories/ColorInput.stories.tsx +36 -0
- package/src/components/ColorInput/styles/colorInput.ts +17 -0
- package/src/components/ColorInput/styles/colorInputSize.ts +58 -0
- package/src/components/DatePicker/DatePicker.appearance.ts +12 -0
- package/src/components/DatePicker/DatePicker.constants.ts +3 -0
- package/src/components/DatePicker/DatePicker.helpers.ts +28 -0
- package/src/components/DatePicker/DatePicker.interface.ts +68 -0
- package/src/components/DatePicker/DatePicker.styles.ts +7 -0
- package/src/components/DatePicker/DatePicker.tsx +189 -0
- package/src/components/DatePicker/appearance/datePickerSize.ts +24 -0
- package/src/components/DatePicker/appearance/datePickerStyle.ts +14 -0
- package/src/components/DatePicker/appearance/datePickerSurface.ts +15 -0
- package/src/components/DatePicker/index.ts +22 -0
- package/src/components/DatePicker/stories/DatePicker.stories.tsx +50 -0
- package/src/components/DatePicker/styles/datePicker.ts +45 -0
- package/src/components/Divider/Divider.appearance.ts +22 -0
- package/src/components/Divider/Divider.interface.ts +40 -0
- package/src/components/Divider/Divider.styles.ts +11 -0
- package/src/components/Divider/Divider.tsx +65 -0
- package/src/components/Divider/appearance/dividerAccent.ts +9 -0
- package/src/components/Divider/appearance/dividerError.ts +9 -0
- package/src/components/Divider/appearance/dividerExtra.ts +9 -0
- package/src/components/Divider/appearance/dividerSize.ts +15 -0
- package/src/components/Divider/appearance/dividerSpecial.ts +9 -0
- package/src/components/Divider/appearance/dividerSuccess.ts +9 -0
- package/src/components/Divider/appearance/dividerSurface.ts +18 -0
- package/src/components/Divider/appearance/dividerWarning.ts +9 -0
- package/src/components/Divider/index.ts +28 -0
- package/src/components/Divider/stories/DividerAppearance.stories.tsx +75 -0
- package/src/components/Divider/stories/DividerDirection.stories.tsx +34 -0
- package/src/components/Divider/stories/DividerSize.stories.tsx +33 -0
- package/src/components/Divider/styles/divider.ts +9 -0
- package/src/components/Divider/styles/dividerDirection.ts +25 -0
- package/src/components/Divider/styles/dividerSize.ts +32 -0
- package/src/components/Dot/Dot.interface.ts +18 -0
- package/src/components/Dot/Dot.styles.ts +11 -0
- package/src/components/Dot/Dot.tsx +33 -0
- package/src/components/Dot/index.ts +9 -0
- package/src/components/Dot/stories/Dot.stories.tsx +23 -0
- package/src/components/Dot/styles/dot.ts +9 -0
- package/src/components/Dot/styles/dotShape.ts +22 -0
- package/src/components/Dot/styles/dotSize.ts +25 -0
- package/src/components/Drawer/Drawer.appearance.ts +10 -0
- package/src/components/Drawer/Drawer.interface.ts +67 -0
- package/src/components/Drawer/Drawer.styles.ts +7 -0
- package/src/components/Drawer/Drawer.tsx +132 -0
- package/src/components/Drawer/appearance/drawerSize.ts +36 -0
- package/src/components/Drawer/appearance/drawerSurface.ts +12 -0
- package/src/components/Drawer/index.ts +22 -0
- package/src/components/Drawer/stories/Drawer.stories.tsx +71 -0
- package/src/components/Drawer/styles/drawer.ts +60 -0
- package/src/components/Dropdown/Dropdown.appearance.ts +16 -0
- package/src/components/Dropdown/Dropdown.interface.ts +152 -0
- package/src/components/Dropdown/Dropdown.styles.ts +9 -0
- package/src/components/Dropdown/Dropdown.tsx +134 -0
- package/src/components/Dropdown/DropdownItem.appearance.ts +16 -0
- package/src/components/Dropdown/DropdownItem.tsx +141 -0
- package/src/components/Dropdown/appearance/dropdownAccent.ts +17 -0
- package/src/components/Dropdown/appearance/dropdownShape.ts +24 -0
- package/src/components/Dropdown/appearance/dropdownSize.ts +21 -0
- package/src/components/Dropdown/appearance/dropdownStyle.ts +17 -0
- package/src/components/Dropdown/appearance/dropdownSurface.ts +25 -0
- package/src/components/Dropdown/index.ts +45 -0
- package/src/components/Dropdown/stories/Dropdown.stories.tsx +62 -0
- package/src/components/Dropdown/styles/dropdown.ts +31 -0
- package/src/components/Dropdown/styles/dropdownSize.ts +36 -0
- package/src/components/Group/Group.appearance.ts +8 -0
- package/src/components/Group/Group.interface.ts +53 -0
- package/src/components/Group/Group.styles.ts +15 -0
- package/src/components/Group/Group.tsx +80 -0
- package/src/components/Group/appearance/groupSurface.ts +10 -0
- package/src/components/Group/index.ts +36 -0
- package/src/components/Group/stories/Group.stories.tsx +39 -0
- package/src/components/Group/styles/group.ts +9 -0
- package/src/components/Group/styles/groupAlign.ts +37 -0
- package/src/components/Group/styles/groupDirection.ts +40 -0
- package/src/components/Group/styles/groupJustify.ts +40 -0
- package/src/components/Group/styles/groupWrap.ts +22 -0
- package/src/components/HeroTitle/HeroTitle.appearance.ts +8 -0
- package/src/components/HeroTitle/HeroTitle.interface.ts +51 -0
- package/src/components/HeroTitle/HeroTitle.styles.ts +7 -0
- package/src/components/HeroTitle/HeroTitle.tsx +78 -0
- package/src/components/HeroTitle/appearance/heroTitleSize.ts +24 -0
- package/src/components/HeroTitle/index.ts +16 -0
- package/src/components/HeroTitle/stories/HeroTitle.stories.tsx +22 -0
- package/src/components/HeroTitle/styles/heroTitle.ts +11 -0
- package/src/components/Icon/Icon.interface.ts +42 -0
- package/src/components/Icon/Icon.styles.ts +11 -0
- package/src/components/Icon/Icon.tsx +96 -0
- package/src/components/Icon/index.ts +9 -0
- package/src/components/Icon/stories/Icon.stories.tsx +45 -0
- package/src/components/Icon/styles/icon.ts +12 -0
- package/src/components/Icon/styles/iconShape.ts +19 -0
- package/src/components/Icon/styles/iconSize.ts +61 -0
- package/src/components/Image/Image.interface.ts +31 -0
- package/src/components/Image/Image.styles.ts +7 -0
- package/src/components/Image/Image.tsx +95 -0
- package/src/components/Image/index.ts +5 -0
- package/src/components/Image/stories/Image.stories.tsx +18 -0
- package/src/components/Image/styles/image.ts +17 -0
- package/src/components/Input/Input.appearance.ts +22 -0
- package/src/components/Input/Input.interface.ts +86 -0
- package/src/components/Input/Input.styles.ts +11 -0
- package/src/components/Input/Input.tsx +159 -0
- package/src/components/Input/appearance/inputDefault.ts +20 -0
- package/src/components/Input/appearance/inputDisabled.ts +17 -0
- package/src/components/Input/appearance/inputError.ts +19 -0
- package/src/components/Input/appearance/inputRequire.ts +19 -0
- package/src/components/Input/appearance/inputShape.ts +24 -0
- package/src/components/Input/appearance/inputSize.ts +22 -0
- package/src/components/Input/appearance/inputStyle.ts +17 -0
- package/src/components/Input/appearance/inputSuccess.ts +19 -0
- package/src/components/Input/index.ts +30 -0
- package/src/components/Input/stories/InputDefault.stories.tsx +31 -0
- package/src/components/Input/stories/InputDisabled.stories.tsx +34 -0
- package/src/components/Input/stories/InputError.stories.tsx +30 -0
- package/src/components/Input/stories/InputReadonly.stories.tsx +21 -0
- package/src/components/Input/stories/InputRequire.stories.tsx +30 -0
- package/src/components/Input/stories/InputShape.stories.tsx +52 -0
- package/src/components/Input/stories/InputSize.stories.tsx +40 -0
- package/src/components/Input/stories/InputStyle.stories.tsx +40 -0
- package/src/components/Input/stories/InputSuccess.stories.tsx +30 -0
- package/src/components/Input/styles/input.ts +26 -0
- package/src/components/Input/styles/inputShape.ts +31 -0
- package/src/components/Input/styles/inputSize.ts +33 -0
- package/src/components/InputNumber/InputNumber.appearance.ts +20 -0
- package/src/components/InputNumber/InputNumber.interface.ts +79 -0
- package/src/components/InputNumber/InputNumber.styles.ts +11 -0
- package/src/components/InputNumber/InputNumber.tsx +224 -0
- package/src/components/InputNumber/appearance/inputNumberDefault.ts +14 -0
- package/src/components/InputNumber/appearance/inputNumberError.ts +14 -0
- package/src/components/InputNumber/appearance/inputNumberRequire.ts +14 -0
- package/src/components/InputNumber/appearance/inputNumberShape.ts +24 -0
- package/src/components/InputNumber/appearance/inputNumberSize.ts +30 -0
- package/src/components/InputNumber/appearance/inputNumberStyle.ts +19 -0
- package/src/components/InputNumber/appearance/inputNumberSuccess.ts +14 -0
- package/src/components/InputNumber/index.ts +34 -0
- package/src/components/InputNumber/stories/InputNumber.stories.tsx +93 -0
- package/src/components/InputNumber/styles/inputNumber.ts +25 -0
- package/src/components/InputNumber/styles/inputNumberShape.ts +34 -0
- package/src/components/InputNumber/styles/inputNumberSize.ts +36 -0
- package/src/components/InputPassword/InputPassword.appearance.ts +22 -0
- package/src/components/InputPassword/InputPassword.interface.ts +90 -0
- package/src/components/InputPassword/InputPassword.styles.ts +11 -0
- package/src/components/InputPassword/InputPassword.tsx +202 -0
- package/src/components/InputPassword/appearance/inputPasswordDefault.ts +22 -0
- package/src/components/InputPassword/appearance/inputPasswordDisabled.ts +19 -0
- package/src/components/InputPassword/appearance/inputPasswordError.ts +19 -0
- package/src/components/InputPassword/appearance/inputPasswordRequire.ts +19 -0
- package/src/components/InputPassword/appearance/inputPasswordShape.ts +24 -0
- package/src/components/InputPassword/appearance/inputPasswordSize.ts +26 -0
- package/src/components/InputPassword/appearance/inputPasswordStyle.ts +19 -0
- package/src/components/InputPassword/appearance/inputPasswordSuccess.ts +19 -0
- package/src/components/InputPassword/index.ts +36 -0
- package/src/components/InputPassword/stories/InputPassword.stories.tsx +67 -0
- package/src/components/InputPassword/styles/inputPassword.ts +22 -0
- package/src/components/InputPassword/styles/inputPasswordShape.ts +34 -0
- package/src/components/InputPassword/styles/inputPasswordSize.ts +36 -0
- package/src/components/Label/Label.appearance.ts +20 -0
- package/src/components/Label/Label.interface.ts +59 -0
- package/src/components/Label/Label.styles.ts +11 -0
- package/src/components/Label/Label.tsx +126 -0
- package/src/components/Label/Label.web.tsx +124 -0
- package/src/components/Label/appearance/labelAccent.ts +10 -0
- package/src/components/Label/appearance/labelDanger.ts +10 -0
- package/src/components/Label/appearance/labelExtra.ts +10 -0
- package/src/components/Label/appearance/labelGradient.ts +10 -0
- package/src/components/Label/appearance/labelShape.ts +9 -0
- package/src/components/Label/appearance/labelSize.ts +13 -0
- package/src/components/Label/appearance/labelSurface.ts +22 -0
- package/src/components/Label/index.ts +24 -0
- package/src/components/Label/stories/LabelShape.stories.tsx +33 -0
- package/src/components/Label/stories/LabelSize.stories.tsx +57 -0
- package/src/components/Label/stories/LabelText.stories.tsx +45 -0
- package/src/components/Label/styles/label.ts +13 -0
- package/src/components/Label/styles/labelShape.ts +23 -0
- package/src/components/Label/styles/labelSize.ts +55 -0
- package/src/components/Link/Link.appearance.ts +16 -0
- package/src/components/Link/Link.interface.ts +54 -0
- package/src/components/Link/Link.styles.ts +7 -0
- package/src/components/Link/Link.tsx +119 -0
- package/src/components/Link/appearance/linkAccent.ts +12 -0
- package/src/components/Link/appearance/linkDanger.ts +9 -0
- package/src/components/Link/appearance/linkExtra.ts +9 -0
- package/src/components/Link/appearance/linkStyle.ts +14 -0
- package/src/components/Link/appearance/linkSurface.ts +12 -0
- package/src/components/Link/index.ts +18 -0
- package/src/components/Link/stories/Link.stories.tsx +23 -0
- package/src/components/Link/styles/link.ts +14 -0
- package/src/components/List/List.appearance.ts +28 -0
- package/src/components/List/List.context.ts +7 -0
- package/src/components/List/List.interface.ts +94 -0
- package/src/components/List/List.styles.ts +9 -0
- package/src/components/List/List.tsx +119 -0
- package/src/components/List/ListItem.tsx +68 -0
- package/src/components/List/appearance/listAccent.ts +10 -0
- package/src/components/List/appearance/listDanger.ts +9 -0
- package/src/components/List/appearance/listError.ts +9 -0
- package/src/components/List/appearance/listExtra.ts +9 -0
- package/src/components/List/appearance/listInfo.ts +14 -0
- package/src/components/List/appearance/listSize.ts +27 -0
- package/src/components/List/appearance/listSpecial.ts +9 -0
- package/src/components/List/appearance/listStyle.ts +19 -0
- package/src/components/List/appearance/listSuccess.ts +9 -0
- package/src/components/List/appearance/listSurface.ts +18 -0
- package/src/components/List/appearance/listWarning.ts +9 -0
- package/src/components/List/index.ts +42 -0
- package/src/components/List/stories/List.stories.tsx +48 -0
- package/src/components/List/styles/list.ts +22 -0
- package/src/components/List/styles/listDirection.ts +40 -0
- package/src/components/List/styles/listSize.ts +6 -0
- package/src/components/Loader/Loader.appearance.ts +30 -0
- package/src/components/Loader/Loader.interface.ts +75 -0
- package/src/components/Loader/Loader.styles.ts +11 -0
- package/src/components/Loader/Loader.tsx +135 -0
- package/src/components/Loader/appearance/loaderAccent.ts +16 -0
- package/src/components/Loader/appearance/loaderDanger.ts +11 -0
- package/src/components/Loader/appearance/loaderError.ts +11 -0
- package/src/components/Loader/appearance/loaderExtra.ts +11 -0
- package/src/components/Loader/appearance/loaderInfo.ts +11 -0
- package/src/components/Loader/appearance/loaderShape.ts +24 -0
- package/src/components/Loader/appearance/loaderSize.ts +18 -0
- package/src/components/Loader/appearance/loaderSpecial.ts +11 -0
- package/src/components/Loader/appearance/loaderStyle.ts +17 -0
- package/src/components/Loader/appearance/loaderSuccess.ts +11 -0
- package/src/components/Loader/appearance/loaderSurface.ts +26 -0
- package/src/components/Loader/appearance/loaderWarning.ts +11 -0
- package/src/components/Loader/index.ts +36 -0
- package/src/components/Loader/stories/LoaderDefault.stories.tsx +69 -0
- package/src/components/Loader/stories/LoaderShape.stories.tsx +51 -0
- package/src/components/Loader/stories/LoaderSize.stories.tsx +33 -0
- package/src/components/Loader/stories/LoaderStyle.stories.tsx +39 -0
- package/src/components/Loader/stories/LoaderText.stories.tsx +30 -0
- package/src/components/Loader/styles/loader.ts +14 -0
- package/src/components/Loader/styles/loaderShape.ts +34 -0
- package/src/components/Loader/styles/loaderSize.ts +28 -0
- package/src/components/Logo/Logo.interface.ts +16 -0
- package/src/components/Logo/Logo.styles.ts +11 -0
- package/src/components/Logo/Logo.tsx +53 -0
- package/src/components/Logo/index.ts +9 -0
- package/src/components/Logo/stories/Logo.stories.tsx +31 -0
- package/src/components/Logo/styles/logo.ts +13 -0
- package/src/components/Logo/styles/logoAlign.ts +28 -0
- package/src/components/Logo/styles/logoSize.ts +34 -0
- package/src/components/MenuItem/MenuItem.appearance.ts +18 -0
- package/src/components/MenuItem/MenuItem.interface.ts +100 -0
- package/src/components/MenuItem/MenuItem.styles.ts +13 -0
- package/src/components/MenuItem/MenuItem.tsx +173 -0
- package/src/components/MenuItem/appearance/menuItemAccent.ts +26 -0
- package/src/components/MenuItem/appearance/menuItemError.ts +19 -0
- package/src/components/MenuItem/appearance/menuItemShape.ts +24 -0
- package/src/components/MenuItem/appearance/menuItemSize.ts +48 -0
- package/src/components/MenuItem/appearance/menuItemStyle.ts +17 -0
- package/src/components/MenuItem/appearance/menuItemSurface.ts +38 -0
- package/src/components/MenuItem/index.ts +36 -0
- package/src/components/MenuItem/stories/MenuItem.stories.tsx +52 -0
- package/src/components/MenuItem/styles/menuItem.ts +25 -0
- package/src/components/MenuItem/styles/menuItemJustify.ts +18 -0
- package/src/components/MenuItem/styles/menuItemShape.ts +37 -0
- package/src/components/MenuItem/styles/menuItemSize.ts +65 -0
- package/src/components/Modal/Modal.interface.ts +35 -0
- package/src/components/Modal/Modal.styles.ts +7 -0
- package/src/components/Modal/Modal.tsx +73 -0
- package/src/components/Modal/index.ts +5 -0
- package/src/components/Modal/stories/Modal.stories.tsx +47 -0
- package/src/components/Modal/styles/modal.ts +36 -0
- package/src/components/Overlay/Overlay.appearance.ts +8 -0
- package/src/components/Overlay/Overlay.interface.ts +34 -0
- package/src/components/Overlay/Overlay.styles.ts +7 -0
- package/src/components/Overlay/Overlay.tsx +46 -0
- package/src/components/Overlay/appearance/overlayDefault.ts +12 -0
- package/src/components/Overlay/index.ts +16 -0
- package/src/components/Overlay/stories/Overlay.stories.tsx +24 -0
- package/src/components/Overlay/styles/overlay.ts +18 -0
- package/src/components/Pagination/Pagination.appearance.ts +12 -0
- package/src/components/Pagination/Pagination.interface.ts +46 -0
- package/src/components/Pagination/Pagination.styles.ts +9 -0
- package/src/components/Pagination/Pagination.tsx +107 -0
- package/src/components/Pagination/appearance/paginationAccent.ts +12 -0
- package/src/components/Pagination/appearance/paginationSize.ts +22 -0
- package/src/components/Pagination/appearance/paginationSurface.ts +12 -0
- package/src/components/Pagination/index.ts +24 -0
- package/src/components/Pagination/stories/Pagination.stories.tsx +37 -0
- package/src/components/Pagination/styles/pagination.ts +14 -0
- package/src/components/Pagination/styles/paginationSize.ts +46 -0
- package/src/components/Radio/Radio.appearance.ts +22 -0
- package/src/components/Radio/Radio.interface.ts +83 -0
- package/src/components/Radio/Radio.styles.ts +11 -0
- package/src/components/Radio/Radio.tsx +159 -0
- package/src/components/Radio/appearance/radioDefault.ts +54 -0
- package/src/components/Radio/appearance/radioDisabled.ts +17 -0
- package/src/components/Radio/appearance/radioError.ts +17 -0
- package/src/components/Radio/appearance/radioRequire.ts +17 -0
- package/src/components/Radio/appearance/radioShape.ts +24 -0
- package/src/components/Radio/appearance/radioSize.ts +21 -0
- package/src/components/Radio/appearance/radioStyle.ts +20 -0
- package/src/components/Radio/appearance/radioSuccess.ts +17 -0
- package/src/components/Radio/index.ts +27 -0
- package/src/components/Radio/stories/RadioDefault.stories.tsx +26 -0
- package/src/components/Radio/stories/RadioDisabled.stories.tsx +27 -0
- package/src/components/Radio/stories/RadioError.stories.tsx +26 -0
- package/src/components/Radio/stories/RadioRequire.stories.tsx +26 -0
- package/src/components/Radio/stories/RadioSize.stories.tsx +36 -0
- package/src/components/Radio/stories/RadioStyle.stories.tsx +41 -0
- package/src/components/Radio/stories/RadioSuccess.stories.tsx +26 -0
- package/src/components/Radio/styles/radio.ts +37 -0
- package/src/components/Radio/styles/radioShape.ts +27 -0
- package/src/components/Radio/styles/radioSize.ts +25 -0
- package/src/components/RangeSlider/RangeSlider.interface.ts +35 -0
- package/src/components/RangeSlider/RangeSlider.styles.ts +7 -0
- package/src/components/RangeSlider/RangeSlider.tsx +212 -0
- package/src/components/RangeSlider/index.ts +9 -0
- package/src/components/RangeSlider/stories/RangeSlider.stories.tsx +55 -0
- package/src/components/RangeSlider/styles/rangeSlider.ts +37 -0
- package/src/components/Response/Response.interface.ts +29 -0
- package/src/components/Response/Response.styles.ts +7 -0
- package/src/components/Response/Response.tsx +68 -0
- package/src/components/Response/index.ts +5 -0
- package/src/components/Response/stories/Response.stories.tsx +22 -0
- package/src/components/Response/styles/response.ts +22 -0
- package/src/components/Scrollbar/Scrollbar.interface.ts +19 -0
- package/src/components/Scrollbar/Scrollbar.styles.ts +7 -0
- package/src/components/Scrollbar/Scrollbar.tsx +38 -0
- package/src/components/Scrollbar/index.ts +5 -0
- package/src/components/Scrollbar/stories/Scrollbar.stories.tsx +61 -0
- package/src/components/Scrollbar/styles/scrollbar.ts +12 -0
- package/src/components/Search/Search.interface.ts +23 -0
- package/src/components/Search/Search.styles.ts +7 -0
- package/src/components/Search/Search.tsx +69 -0
- package/src/components/Search/index.ts +5 -0
- package/src/components/Search/stories/Search.stories.tsx +24 -0
- package/src/components/Search/styles/search.ts +28 -0
- package/src/components/Segmented/Segmented.appearance.ts +22 -0
- package/src/components/Segmented/Segmented.interface.ts +101 -0
- package/src/components/Segmented/Segmented.styles.ts +13 -0
- package/src/components/Segmented/Segmented.tsx +219 -0
- package/src/components/Segmented/appearance/segmentedDefault.ts +26 -0
- package/src/components/Segmented/appearance/segmentedDisabled.ts +15 -0
- package/src/components/Segmented/appearance/segmentedError.ts +15 -0
- package/src/components/Segmented/appearance/segmentedRequire.ts +14 -0
- package/src/components/Segmented/appearance/segmentedShape.ts +24 -0
- package/src/components/Segmented/appearance/segmentedSize.ts +31 -0
- package/src/components/Segmented/appearance/segmentedStyle.ts +19 -0
- package/src/components/Segmented/appearance/segmentedSuccess.ts +15 -0
- package/src/components/Segmented/index.ts +38 -0
- package/src/components/Segmented/stories/SegmentedDisabled.stories.tsx +25 -0
- package/src/components/Segmented/stories/SegmentedIcon.stories.tsx +46 -0
- package/src/components/Segmented/stories/SegmentedLabel.stories.tsx +43 -0
- package/src/components/Segmented/stories/SegmentedLabelIcon.stories.tsx +40 -0
- package/src/components/Segmented/stories/SegmentedShape.stories.tsx +54 -0
- package/src/components/Segmented/stories/SegmentedSize.stories.tsx +56 -0
- package/src/components/Segmented/stories/SegmentedStories.config.tsx +89 -0
- package/src/components/Segmented/stories/SegmentedStyle.stories.tsx +42 -0
- package/src/components/Segmented/styles/segmented.ts +27 -0
- package/src/components/Segmented/styles/segmentedShape.ts +37 -0
- package/src/components/Segmented/styles/segmentedSize.ts +65 -0
- package/src/components/Segmented/styles/segmentedWidth.ts +33 -0
- package/src/components/Select/Select.appearance.ts +22 -0
- package/src/components/Select/Select.interface.ts +80 -0
- package/src/components/Select/Select.styles.ts +9 -0
- package/src/components/Select/Select.tsx +178 -0
- package/src/components/Select/appearance/selectDefault.ts +17 -0
- package/src/components/Select/appearance/selectDisabled.ts +13 -0
- package/src/components/Select/appearance/selectError.ts +17 -0
- package/src/components/Select/appearance/selectRequire.ts +17 -0
- package/src/components/Select/appearance/selectShape.ts +21 -0
- package/src/components/Select/appearance/selectSize.ts +30 -0
- package/src/components/Select/appearance/selectStyle.ts +17 -0
- package/src/components/Select/appearance/selectSuccess.ts +17 -0
- package/src/components/Select/index.ts +29 -0
- package/src/components/Select/stories/Select.stories.tsx +67 -0
- package/src/components/Select/styles/select.ts +30 -0
- package/src/components/Select/styles/selectSize.ts +48 -0
- package/src/components/Switch/Switch.appearance.ts +20 -0
- package/src/components/Switch/Switch.interface.ts +70 -0
- package/src/components/Switch/Switch.styles.ts +11 -0
- package/src/components/Switch/Switch.tsx +143 -0
- package/src/components/Switch/appearance/switchDefault.ts +14 -0
- package/src/components/Switch/appearance/switchDisabled.ts +14 -0
- package/src/components/Switch/appearance/switchError.ts +14 -0
- package/src/components/Switch/appearance/switchRequire.ts +14 -0
- package/src/components/Switch/appearance/switchShape.ts +7 -0
- package/src/components/Switch/appearance/switchSize.ts +21 -0
- package/src/components/Switch/appearance/switchStyle.ts +19 -0
- package/src/components/Switch/appearance/switchSuccess.ts +14 -0
- package/src/components/Switch/index.ts +32 -0
- package/src/components/Switch/stories/SwitchDefault.stories.tsx +46 -0
- package/src/components/Switch/stories/SwitchDisabled.stories.tsx +51 -0
- package/src/components/Switch/stories/SwitchError.stories.tsx +46 -0
- package/src/components/Switch/stories/SwitchRequire.stories.tsx +46 -0
- package/src/components/Switch/stories/SwitchSize.stories.tsx +37 -0
- package/src/components/Switch/stories/SwitchStories.config.tsx +28 -0
- package/src/components/Switch/stories/SwitchSuccess.stories.tsx +46 -0
- package/src/components/Switch/stories/SwitchTitleDescSwitch.stories.tsx +50 -0
- package/src/components/Switch/stories/SwitchTitleSwitch.stories.tsx +49 -0
- package/src/components/Switch/styles/switch.ts +43 -0
- package/src/components/Switch/styles/switchAlign.ts +29 -0
- package/src/components/Switch/styles/switchSize.ts +40 -0
- package/src/components/Tab/Tab.interface.ts +21 -0
- package/src/components/Tab/Tab.styles.ts +9 -0
- package/src/components/Tab/Tab.tsx +44 -0
- package/src/components/Tab/index.ts +7 -0
- package/src/components/Tab/stories/Tab.stories.tsx +67 -0
- package/src/components/Tab/styles/tab.ts +19 -0
- package/src/components/Tab/styles/tabSize.ts +41 -0
- package/src/components/Text/Text.interface.ts +32 -0
- package/src/components/Text/Text.styles.ts +7 -0
- package/src/components/Text/Text.tsx +56 -0
- package/src/components/Text/index.ts +5 -0
- package/src/components/Text/stories/Text.stories.tsx +84 -0
- package/src/components/Text/styles/text.ts +7 -0
- package/src/components/Textarea/Textarea.appearance.ts +22 -0
- package/src/components/Textarea/Textarea.interface.ts +81 -0
- package/src/components/Textarea/Textarea.styles.ts +11 -0
- package/src/components/Textarea/Textarea.tsx +158 -0
- package/src/components/Textarea/appearance/textareaDefault.ts +26 -0
- package/src/components/Textarea/appearance/textareaDisabled.ts +17 -0
- package/src/components/Textarea/appearance/textareaError.ts +17 -0
- package/src/components/Textarea/appearance/textareaRequire.ts +17 -0
- package/src/components/Textarea/appearance/textareaShape.ts +24 -0
- package/src/components/Textarea/appearance/textareaSize.ts +22 -0
- package/src/components/Textarea/appearance/textareaStyle.ts +17 -0
- package/src/components/Textarea/appearance/textareaSuccess.ts +17 -0
- package/src/components/Textarea/index.ts +36 -0
- package/src/components/Textarea/stories/Textarea.stories.tsx +61 -0
- package/src/components/Textarea/styles/textarea.ts +17 -0
- package/src/components/Textarea/styles/textareaShape.ts +34 -0
- package/src/components/Textarea/styles/textareaSize.ts +32 -0
- package/src/components/Tile/Tile.appearance.ts +14 -0
- package/src/components/Tile/Tile.interface.ts +97 -0
- package/src/components/Tile/Tile.styles.ts +11 -0
- package/src/components/Tile/Tile.tsx +174 -0
- package/src/components/Tile/appearance/tileShape.ts +24 -0
- package/src/components/Tile/appearance/tileSize.ts +42 -0
- package/src/components/Tile/appearance/tileStyle.ts +17 -0
- package/src/components/Tile/appearance/tileSurface.ts +34 -0
- package/src/components/Tile/index.ts +30 -0
- package/src/components/Tile/stories/TileBadge.stories.tsx +20 -0
- package/src/components/Tile/stories/TileDefault.stories.tsx +40 -0
- package/src/components/Tile/stories/TileIcon.stories.tsx +23 -0
- package/src/components/Tile/stories/TileShape.stories.tsx +52 -0
- package/src/components/Tile/stories/TileSize.stories.tsx +53 -0
- package/src/components/Tile/stories/TileStyle.stories.tsx +40 -0
- package/src/components/Tile/stories/TileSwap.stories.tsx +60 -0
- package/src/components/Tile/styles/tile.ts +27 -0
- package/src/components/Tile/styles/tileShape.ts +34 -0
- package/src/components/Tile/styles/tileSize.ts +62 -0
- package/src/components/Title/Title.interface.ts +26 -0
- package/src/components/Title/Title.styles.ts +7 -0
- package/src/components/Title/Title.tsx +46 -0
- package/src/components/Title/index.ts +5 -0
- package/src/components/Title/stories/Title.stories.tsx +68 -0
- package/src/components/Title/styles/title.ts +7 -0
- package/src/components/Tooltip/Tooltip.appearance.ts +22 -0
- package/src/components/Tooltip/Tooltip.interface.ts +81 -0
- package/src/components/Tooltip/Tooltip.styles.ts +7 -0
- package/src/components/Tooltip/Tooltip.tsx +116 -0
- package/src/components/Tooltip/appearance/tooltipDefault.ts +12 -0
- package/src/components/Tooltip/appearance/tooltipDisabled.ts +11 -0
- package/src/components/Tooltip/appearance/tooltipError.ts +12 -0
- package/src/components/Tooltip/appearance/tooltipRequire.ts +12 -0
- package/src/components/Tooltip/appearance/tooltipShape.ts +24 -0
- package/src/components/Tooltip/appearance/tooltipSize.ts +21 -0
- package/src/components/Tooltip/appearance/tooltipStyle.ts +17 -0
- package/src/components/Tooltip/appearance/tooltipSuccess.ts +12 -0
- package/src/components/Tooltip/index.ts +26 -0
- package/src/components/Tooltip/stories/Tooltip.stories.tsx +61 -0
- package/src/components/Tooltip/styles/tooltip.ts +36 -0
- package/src/components/Warning/Warning.appearance.ts +22 -0
- package/src/components/Warning/Warning.interface.ts +86 -0
- package/src/components/Warning/Warning.styles.ts +11 -0
- package/src/components/Warning/Warning.tsx +116 -0
- package/src/components/Warning/appearance/warningAccent.ts +28 -0
- package/src/components/Warning/appearance/warningError.ts +28 -0
- package/src/components/Warning/appearance/warningInfo.ts +38 -0
- package/src/components/Warning/appearance/warningShape.ts +24 -0
- package/src/components/Warning/appearance/warningSize.ts +20 -0
- package/src/components/Warning/appearance/warningStyle.ts +17 -0
- package/src/components/Warning/appearance/warningSuccess.ts +18 -0
- package/src/components/Warning/appearance/warningWarning.ts +38 -0
- package/src/components/Warning/index.ts +28 -0
- package/src/components/Warning/stories/WarningDefault.stories.tsx +52 -0
- package/src/components/Warning/stories/WarningMuted.stories.tsx +40 -0
- package/src/components/Warning/stories/WarningShape.stories.tsx +52 -0
- package/src/components/Warning/stories/WarningSize.stories.tsx +28 -0
- package/src/components/Warning/stories/WarningStyle.stories.tsx +40 -0
- package/src/components/Warning/styles/warning.ts +13 -0
- package/src/components/Warning/styles/warningShape.ts +38 -0
- package/src/components/Warning/styles/warningSize.ts +31 -0
- package/src/icons/app_logo.svg +56 -0
- package/src/icons/connection.svg +9 -0
- package/src/icons/reject.svg +4 -0
- package/src/images/manager.png +0 -0
- package/src/index.tsx +957 -0
- package/src/module.d.ts +19 -0
- package/src/styles/borderColor/index.ts +35 -0
- package/src/styles/direction/index.ts +30 -0
- package/src/styles/fill/index.ts +58 -0
- package/src/styles/gap/index.ts +19 -0
- package/src/styles/iconFill/index.ts +46 -0
- package/src/styles/shape/index.ts +29 -0
- package/src/styles/textAlign/index.ts +22 -0
- package/src/styles/textColor/index.ts +18 -0
- package/src/styles/textSize/index.ts +55 -0
- package/src/styles/textWeight/index.ts +28 -0
- package/src/styles/titleSize/index.ts +50 -0
- package/src/styles/tokens.ts +31 -0
- package/src/styles/width/index.ts +29 -0
- package/src/utils/colorTokens/colorTokens.interface.ts +3 -0
- package/src/utils/colorTokens/colorTokens.ts +17 -0
- package/src/utils/colorTokens/index.ts +7 -0
- package/src/utils/getVariantsPropsList/getVariantsPropsList.interface.ts +10 -0
- package/src/utils/getVariantsPropsList/getVariantsPropsList.ts +51 -0
- package/src/utils/getVariantsPropsList/index.ts +5 -0
- package/src/utils/index.ts +15 -0
- package/tsconfig.json +14 -0
|
@@ -0,0 +1,494 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 54;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
0C80B921A6F3F58F76C31292 /* libPods-demoApp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-demoApp.a */; };
|
|
11
|
+
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
|
12
|
+
761780ED2CA45674006654EE /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 761780EC2CA45674006654EE /* AppDelegate.swift */; };
|
|
13
|
+
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
|
|
14
|
+
CFFA15AC75FD643A746CE990 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */; };
|
|
15
|
+
/* End PBXBuildFile section */
|
|
16
|
+
|
|
17
|
+
/* Begin PBXFileReference section */
|
|
18
|
+
13B07F961A680F5B00A75B9A /* demoApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = demoApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
19
|
+
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = demoApp/Images.xcassets; sourceTree = "<group>"; };
|
|
20
|
+
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = demoApp/Info.plist; sourceTree = "<group>"; };
|
|
21
|
+
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = demoApp/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
|
|
22
|
+
3B4392A12AC88292D35C810B /* Pods-demoApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-demoApp.debug.xcconfig"; path = "Target Support Files/Pods-demoApp/Pods-demoApp.debug.xcconfig"; sourceTree = "<group>"; };
|
|
23
|
+
5709B34CF0A7D63546082F79 /* Pods-demoApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-demoApp.release.xcconfig"; path = "Target Support Files/Pods-demoApp/Pods-demoApp.release.xcconfig"; sourceTree = "<group>"; };
|
|
24
|
+
5DCACB8F33CDC322A6C60F78 /* libPods-demoApp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-demoApp.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
25
|
+
761780EC2CA45674006654EE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = demoApp/AppDelegate.swift; sourceTree = "<group>"; };
|
|
26
|
+
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = demoApp/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
27
|
+
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
|
28
|
+
/* End PBXFileReference section */
|
|
29
|
+
|
|
30
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
31
|
+
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
|
|
32
|
+
isa = PBXFrameworksBuildPhase;
|
|
33
|
+
buildActionMask = 2147483647;
|
|
34
|
+
files = (
|
|
35
|
+
0C80B921A6F3F58F76C31292 /* libPods-demoApp.a in Frameworks */,
|
|
36
|
+
);
|
|
37
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
38
|
+
};
|
|
39
|
+
/* End PBXFrameworksBuildPhase section */
|
|
40
|
+
|
|
41
|
+
/* Begin PBXGroup section */
|
|
42
|
+
13B07FAE1A68108700A75B9A /* demoApp */ = {
|
|
43
|
+
isa = PBXGroup;
|
|
44
|
+
children = (
|
|
45
|
+
13B07FB51A68108700A75B9A /* Images.xcassets */,
|
|
46
|
+
761780EC2CA45674006654EE /* AppDelegate.swift */,
|
|
47
|
+
13B07FB61A68108700A75B9A /* Info.plist */,
|
|
48
|
+
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
|
|
49
|
+
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
|
|
50
|
+
);
|
|
51
|
+
name = demoApp;
|
|
52
|
+
sourceTree = "<group>";
|
|
53
|
+
};
|
|
54
|
+
2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
|
|
55
|
+
isa = PBXGroup;
|
|
56
|
+
children = (
|
|
57
|
+
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
|
|
58
|
+
5DCACB8F33CDC322A6C60F78 /* libPods-demoApp.a */,
|
|
59
|
+
);
|
|
60
|
+
name = Frameworks;
|
|
61
|
+
sourceTree = "<group>";
|
|
62
|
+
};
|
|
63
|
+
832341AE1AAA6A7D00B99B32 /* Libraries */ = {
|
|
64
|
+
isa = PBXGroup;
|
|
65
|
+
children = (
|
|
66
|
+
);
|
|
67
|
+
name = Libraries;
|
|
68
|
+
sourceTree = "<group>";
|
|
69
|
+
};
|
|
70
|
+
83CBB9F61A601CBA00E9B192 = {
|
|
71
|
+
isa = PBXGroup;
|
|
72
|
+
children = (
|
|
73
|
+
13B07FAE1A68108700A75B9A /* demoApp */,
|
|
74
|
+
832341AE1AAA6A7D00B99B32 /* Libraries */,
|
|
75
|
+
83CBBA001A601CBA00E9B192 /* Products */,
|
|
76
|
+
2D16E6871FA4F8E400B85C8A /* Frameworks */,
|
|
77
|
+
BBD78D7AC51CEA395F1C20DB /* Pods */,
|
|
78
|
+
);
|
|
79
|
+
indentWidth = 2;
|
|
80
|
+
sourceTree = "<group>";
|
|
81
|
+
tabWidth = 2;
|
|
82
|
+
usesTabs = 0;
|
|
83
|
+
};
|
|
84
|
+
83CBBA001A601CBA00E9B192 /* Products */ = {
|
|
85
|
+
isa = PBXGroup;
|
|
86
|
+
children = (
|
|
87
|
+
13B07F961A680F5B00A75B9A /* demoApp.app */,
|
|
88
|
+
);
|
|
89
|
+
name = Products;
|
|
90
|
+
sourceTree = "<group>";
|
|
91
|
+
};
|
|
92
|
+
BBD78D7AC51CEA395F1C20DB /* Pods */ = {
|
|
93
|
+
isa = PBXGroup;
|
|
94
|
+
children = (
|
|
95
|
+
3B4392A12AC88292D35C810B /* Pods-demoApp.debug.xcconfig */,
|
|
96
|
+
5709B34CF0A7D63546082F79 /* Pods-demoApp.release.xcconfig */,
|
|
97
|
+
);
|
|
98
|
+
path = Pods;
|
|
99
|
+
sourceTree = "<group>";
|
|
100
|
+
};
|
|
101
|
+
/* End PBXGroup section */
|
|
102
|
+
|
|
103
|
+
/* Begin PBXNativeTarget section */
|
|
104
|
+
13B07F861A680F5B00A75B9A /* demoApp */ = {
|
|
105
|
+
isa = PBXNativeTarget;
|
|
106
|
+
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "demoApp" */;
|
|
107
|
+
buildPhases = (
|
|
108
|
+
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
|
|
109
|
+
13B07F871A680F5B00A75B9A /* Sources */,
|
|
110
|
+
13B07F8C1A680F5B00A75B9A /* Frameworks */,
|
|
111
|
+
13B07F8E1A680F5B00A75B9A /* Resources */,
|
|
112
|
+
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
|
|
113
|
+
00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
|
|
114
|
+
E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
|
|
115
|
+
);
|
|
116
|
+
buildRules = (
|
|
117
|
+
);
|
|
118
|
+
dependencies = (
|
|
119
|
+
);
|
|
120
|
+
name = demoApp;
|
|
121
|
+
productName = demoApp;
|
|
122
|
+
productReference = 13B07F961A680F5B00A75B9A /* demoApp.app */;
|
|
123
|
+
productType = "com.apple.product-type.application";
|
|
124
|
+
};
|
|
125
|
+
/* End PBXNativeTarget section */
|
|
126
|
+
|
|
127
|
+
/* Begin PBXProject section */
|
|
128
|
+
83CBB9F71A601CBA00E9B192 /* Project object */ = {
|
|
129
|
+
isa = PBXProject;
|
|
130
|
+
attributes = {
|
|
131
|
+
LastUpgradeCheck = 1210;
|
|
132
|
+
TargetAttributes = {
|
|
133
|
+
13B07F861A680F5B00A75B9A = {
|
|
134
|
+
LastSwiftMigration = 1120;
|
|
135
|
+
};
|
|
136
|
+
};
|
|
137
|
+
};
|
|
138
|
+
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "demoApp" */;
|
|
139
|
+
compatibilityVersion = "Xcode 12.0";
|
|
140
|
+
developmentRegion = en;
|
|
141
|
+
hasScannedForEncodings = 0;
|
|
142
|
+
knownRegions = (
|
|
143
|
+
en,
|
|
144
|
+
Base,
|
|
145
|
+
);
|
|
146
|
+
mainGroup = 83CBB9F61A601CBA00E9B192;
|
|
147
|
+
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
|
|
148
|
+
projectDirPath = "";
|
|
149
|
+
projectRoot = "";
|
|
150
|
+
targets = (
|
|
151
|
+
13B07F861A680F5B00A75B9A /* demoApp */,
|
|
152
|
+
);
|
|
153
|
+
};
|
|
154
|
+
/* End PBXProject section */
|
|
155
|
+
|
|
156
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
157
|
+
13B07F8E1A680F5B00A75B9A /* Resources */ = {
|
|
158
|
+
isa = PBXResourcesBuildPhase;
|
|
159
|
+
buildActionMask = 2147483647;
|
|
160
|
+
files = (
|
|
161
|
+
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
|
|
162
|
+
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
|
|
163
|
+
CFFA15AC75FD643A746CE990 /* PrivacyInfo.xcprivacy in Resources */,
|
|
164
|
+
);
|
|
165
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
166
|
+
};
|
|
167
|
+
/* End PBXResourcesBuildPhase section */
|
|
168
|
+
|
|
169
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
170
|
+
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
|
|
171
|
+
isa = PBXShellScriptBuildPhase;
|
|
172
|
+
buildActionMask = 2147483647;
|
|
173
|
+
files = (
|
|
174
|
+
);
|
|
175
|
+
inputPaths = (
|
|
176
|
+
"$(SRCROOT)/.xcode.env.local",
|
|
177
|
+
"$(SRCROOT)/.xcode.env",
|
|
178
|
+
);
|
|
179
|
+
name = "Bundle React Native code and images";
|
|
180
|
+
outputPaths = (
|
|
181
|
+
);
|
|
182
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
183
|
+
shellPath = /bin/sh;
|
|
184
|
+
shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"\\\"$WITH_ENVIRONMENT\\\" \\\"$REACT_NATIVE_XCODE\\\"\"\n";
|
|
185
|
+
};
|
|
186
|
+
00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
|
|
187
|
+
isa = PBXShellScriptBuildPhase;
|
|
188
|
+
buildActionMask = 2147483647;
|
|
189
|
+
files = (
|
|
190
|
+
);
|
|
191
|
+
inputFileListPaths = (
|
|
192
|
+
"${PODS_ROOT}/Target Support Files/Pods-demoApp/Pods-demoApp-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
193
|
+
);
|
|
194
|
+
name = "[CP] Embed Pods Frameworks";
|
|
195
|
+
outputFileListPaths = (
|
|
196
|
+
"${PODS_ROOT}/Target Support Files/Pods-demoApp/Pods-demoApp-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
197
|
+
);
|
|
198
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
199
|
+
shellPath = /bin/sh;
|
|
200
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-demoApp/Pods-demoApp-frameworks.sh\"\n";
|
|
201
|
+
showEnvVarsInLog = 0;
|
|
202
|
+
};
|
|
203
|
+
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
|
|
204
|
+
isa = PBXShellScriptBuildPhase;
|
|
205
|
+
buildActionMask = 2147483647;
|
|
206
|
+
files = (
|
|
207
|
+
);
|
|
208
|
+
inputFileListPaths = (
|
|
209
|
+
);
|
|
210
|
+
inputPaths = (
|
|
211
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
212
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
213
|
+
);
|
|
214
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
215
|
+
outputFileListPaths = (
|
|
216
|
+
);
|
|
217
|
+
outputPaths = (
|
|
218
|
+
"$(DERIVED_FILE_DIR)/Pods-demoApp-checkManifestLockResult.txt",
|
|
219
|
+
);
|
|
220
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
221
|
+
shellPath = /bin/sh;
|
|
222
|
+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
223
|
+
showEnvVarsInLog = 0;
|
|
224
|
+
};
|
|
225
|
+
E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
|
|
226
|
+
isa = PBXShellScriptBuildPhase;
|
|
227
|
+
buildActionMask = 2147483647;
|
|
228
|
+
files = (
|
|
229
|
+
);
|
|
230
|
+
inputFileListPaths = (
|
|
231
|
+
"${PODS_ROOT}/Target Support Files/Pods-demoApp/Pods-demoApp-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
232
|
+
);
|
|
233
|
+
name = "[CP] Copy Pods Resources";
|
|
234
|
+
outputFileListPaths = (
|
|
235
|
+
"${PODS_ROOT}/Target Support Files/Pods-demoApp/Pods-demoApp-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
236
|
+
);
|
|
237
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
238
|
+
shellPath = /bin/sh;
|
|
239
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-demoApp/Pods-demoApp-resources.sh\"\n";
|
|
240
|
+
showEnvVarsInLog = 0;
|
|
241
|
+
};
|
|
242
|
+
/* End PBXShellScriptBuildPhase section */
|
|
243
|
+
|
|
244
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
245
|
+
13B07F871A680F5B00A75B9A /* Sources */ = {
|
|
246
|
+
isa = PBXSourcesBuildPhase;
|
|
247
|
+
buildActionMask = 2147483647;
|
|
248
|
+
files = (
|
|
249
|
+
761780ED2CA45674006654EE /* AppDelegate.swift in Sources */,
|
|
250
|
+
);
|
|
251
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
252
|
+
};
|
|
253
|
+
/* End PBXSourcesBuildPhase section */
|
|
254
|
+
|
|
255
|
+
/* Begin XCBuildConfiguration section */
|
|
256
|
+
13B07F941A680F5B00A75B9A /* Debug */ = {
|
|
257
|
+
isa = XCBuildConfiguration;
|
|
258
|
+
baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-demoApp.debug.xcconfig */;
|
|
259
|
+
buildSettings = {
|
|
260
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
261
|
+
CLANG_ENABLE_MODULES = YES;
|
|
262
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
263
|
+
ENABLE_BITCODE = NO;
|
|
264
|
+
INFOPLIST_FILE = demoApp/Info.plist;
|
|
265
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
266
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
267
|
+
"$(inherited)",
|
|
268
|
+
"@executable_path/Frameworks",
|
|
269
|
+
);
|
|
270
|
+
MARKETING_VERSION = 1.0;
|
|
271
|
+
OTHER_LDFLAGS = (
|
|
272
|
+
"$(inherited)",
|
|
273
|
+
"-ObjC",
|
|
274
|
+
"-lc++",
|
|
275
|
+
);
|
|
276
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
|
277
|
+
PRODUCT_NAME = demoApp;
|
|
278
|
+
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
279
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
280
|
+
SWIFT_VERSION = 5.0;
|
|
281
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
282
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
283
|
+
};
|
|
284
|
+
name = Debug;
|
|
285
|
+
};
|
|
286
|
+
13B07F951A680F5B00A75B9A /* Release */ = {
|
|
287
|
+
isa = XCBuildConfiguration;
|
|
288
|
+
baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-demoApp.release.xcconfig */;
|
|
289
|
+
buildSettings = {
|
|
290
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
291
|
+
CLANG_ENABLE_MODULES = YES;
|
|
292
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
293
|
+
INFOPLIST_FILE = demoApp/Info.plist;
|
|
294
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
295
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
296
|
+
"$(inherited)",
|
|
297
|
+
"@executable_path/Frameworks",
|
|
298
|
+
);
|
|
299
|
+
MARKETING_VERSION = 1.0;
|
|
300
|
+
OTHER_LDFLAGS = (
|
|
301
|
+
"$(inherited)",
|
|
302
|
+
"-ObjC",
|
|
303
|
+
"-lc++",
|
|
304
|
+
);
|
|
305
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
|
306
|
+
PRODUCT_NAME = demoApp;
|
|
307
|
+
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
308
|
+
SWIFT_VERSION = 5.0;
|
|
309
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
310
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
311
|
+
};
|
|
312
|
+
name = Release;
|
|
313
|
+
};
|
|
314
|
+
83CBBA201A601CBA00E9B192 /* Debug */ = {
|
|
315
|
+
isa = XCBuildConfiguration;
|
|
316
|
+
buildSettings = {
|
|
317
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
318
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
319
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
320
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
321
|
+
CLANG_ENABLE_MODULES = YES;
|
|
322
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
323
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
324
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
325
|
+
CLANG_WARN_COMMA = YES;
|
|
326
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
327
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
328
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
329
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
330
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
331
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
332
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
333
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
334
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
335
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
336
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
337
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
338
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
339
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
340
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
341
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
342
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
343
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
344
|
+
COPY_PHASE_STRIP = NO;
|
|
345
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
346
|
+
ENABLE_TESTABILITY = YES;
|
|
347
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
348
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
349
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
350
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
351
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
352
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
353
|
+
"DEBUG=1",
|
|
354
|
+
"$(inherited)",
|
|
355
|
+
);
|
|
356
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
|
357
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
358
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
359
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
360
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
361
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
362
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
363
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
364
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
365
|
+
/usr/lib/swift,
|
|
366
|
+
"$(inherited)",
|
|
367
|
+
);
|
|
368
|
+
LIBRARY_SEARCH_PATHS = (
|
|
369
|
+
"\"$(SDKROOT)/usr/lib/swift\"",
|
|
370
|
+
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
|
371
|
+
"\"$(inherited)\"",
|
|
372
|
+
);
|
|
373
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
374
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
375
|
+
OTHER_CFLAGS = (
|
|
376
|
+
"$(inherited)",
|
|
377
|
+
"-DRCT_REMOVE_LEGACY_ARCH=1",
|
|
378
|
+
);
|
|
379
|
+
OTHER_CPLUSPLUSFLAGS = (
|
|
380
|
+
"$(OTHER_CFLAGS)",
|
|
381
|
+
"-DFOLLY_NO_CONFIG",
|
|
382
|
+
"-DFOLLY_MOBILE=1",
|
|
383
|
+
"-DFOLLY_USE_LIBCPP=1",
|
|
384
|
+
"-DFOLLY_CFG_NO_COROUTINES=1",
|
|
385
|
+
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
|
|
386
|
+
"-DRCT_REMOVE_LEGACY_ARCH=1",
|
|
387
|
+
);
|
|
388
|
+
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
389
|
+
SDKROOT = iphoneos;
|
|
390
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
|
|
391
|
+
SWIFT_ENABLE_EXPLICIT_MODULES = NO;
|
|
392
|
+
USE_HERMES = true;
|
|
393
|
+
};
|
|
394
|
+
name = Debug;
|
|
395
|
+
};
|
|
396
|
+
83CBBA211A601CBA00E9B192 /* Release */ = {
|
|
397
|
+
isa = XCBuildConfiguration;
|
|
398
|
+
buildSettings = {
|
|
399
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
400
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
401
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
402
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
403
|
+
CLANG_ENABLE_MODULES = YES;
|
|
404
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
405
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
406
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
407
|
+
CLANG_WARN_COMMA = YES;
|
|
408
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
409
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
410
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
411
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
412
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
413
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
414
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
415
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
416
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
417
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
418
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
419
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
420
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
421
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
422
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
423
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
424
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
425
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
426
|
+
COPY_PHASE_STRIP = YES;
|
|
427
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
428
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
429
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
430
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
431
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
432
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
433
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
434
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
435
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
436
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
437
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
438
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
439
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
440
|
+
/usr/lib/swift,
|
|
441
|
+
"$(inherited)",
|
|
442
|
+
);
|
|
443
|
+
LIBRARY_SEARCH_PATHS = (
|
|
444
|
+
"\"$(SDKROOT)/usr/lib/swift\"",
|
|
445
|
+
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
|
446
|
+
"\"$(inherited)\"",
|
|
447
|
+
);
|
|
448
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
449
|
+
OTHER_CFLAGS = (
|
|
450
|
+
"$(inherited)",
|
|
451
|
+
"-DRCT_REMOVE_LEGACY_ARCH=1",
|
|
452
|
+
);
|
|
453
|
+
OTHER_CPLUSPLUSFLAGS = (
|
|
454
|
+
"$(OTHER_CFLAGS)",
|
|
455
|
+
"-DFOLLY_NO_CONFIG",
|
|
456
|
+
"-DFOLLY_MOBILE=1",
|
|
457
|
+
"-DFOLLY_USE_LIBCPP=1",
|
|
458
|
+
"-DFOLLY_CFG_NO_COROUTINES=1",
|
|
459
|
+
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
|
|
460
|
+
"-DRCT_REMOVE_LEGACY_ARCH=1",
|
|
461
|
+
);
|
|
462
|
+
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
463
|
+
SDKROOT = iphoneos;
|
|
464
|
+
SWIFT_ENABLE_EXPLICIT_MODULES = NO;
|
|
465
|
+
USE_HERMES = true;
|
|
466
|
+
VALIDATE_PRODUCT = YES;
|
|
467
|
+
};
|
|
468
|
+
name = Release;
|
|
469
|
+
};
|
|
470
|
+
/* End XCBuildConfiguration section */
|
|
471
|
+
|
|
472
|
+
/* Begin XCConfigurationList section */
|
|
473
|
+
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "demoApp" */ = {
|
|
474
|
+
isa = XCConfigurationList;
|
|
475
|
+
buildConfigurations = (
|
|
476
|
+
13B07F941A680F5B00A75B9A /* Debug */,
|
|
477
|
+
13B07F951A680F5B00A75B9A /* Release */,
|
|
478
|
+
);
|
|
479
|
+
defaultConfigurationIsVisible = 0;
|
|
480
|
+
defaultConfigurationName = Release;
|
|
481
|
+
};
|
|
482
|
+
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "demoApp" */ = {
|
|
483
|
+
isa = XCConfigurationList;
|
|
484
|
+
buildConfigurations = (
|
|
485
|
+
83CBBA201A601CBA00E9B192 /* Debug */,
|
|
486
|
+
83CBBA211A601CBA00E9B192 /* Release */,
|
|
487
|
+
);
|
|
488
|
+
defaultConfigurationIsVisible = 0;
|
|
489
|
+
defaultConfigurationName = Release;
|
|
490
|
+
};
|
|
491
|
+
/* End XCConfigurationList section */
|
|
492
|
+
};
|
|
493
|
+
rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
494
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Scheme
|
|
3
|
+
LastUpgradeVersion = "1210"
|
|
4
|
+
version = "1.3">
|
|
5
|
+
<BuildAction
|
|
6
|
+
parallelizeBuildables = "YES"
|
|
7
|
+
buildImplicitDependencies = "YES">
|
|
8
|
+
<BuildActionEntries>
|
|
9
|
+
<BuildActionEntry
|
|
10
|
+
buildForTesting = "YES"
|
|
11
|
+
buildForRunning = "YES"
|
|
12
|
+
buildForProfiling = "YES"
|
|
13
|
+
buildForArchiving = "YES"
|
|
14
|
+
buildForAnalyzing = "YES">
|
|
15
|
+
<BuildableReference
|
|
16
|
+
BuildableIdentifier = "primary"
|
|
17
|
+
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
|
|
18
|
+
BuildableName = "demoApp.app"
|
|
19
|
+
BlueprintName = "demoApp"
|
|
20
|
+
ReferencedContainer = "container:demoApp.xcodeproj">
|
|
21
|
+
</BuildableReference>
|
|
22
|
+
</BuildActionEntry>
|
|
23
|
+
</BuildActionEntries>
|
|
24
|
+
</BuildAction>
|
|
25
|
+
<TestAction
|
|
26
|
+
buildConfiguration = "Debug"
|
|
27
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
28
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
29
|
+
shouldUseLaunchSchemeArgsEnv = "YES">
|
|
30
|
+
<Testables>
|
|
31
|
+
<TestableReference
|
|
32
|
+
skipped = "NO">
|
|
33
|
+
<BuildableReference
|
|
34
|
+
BuildableIdentifier = "primary"
|
|
35
|
+
BlueprintIdentifier = "00E356ED1AD99517003FC87E"
|
|
36
|
+
BuildableName = "demoAppTests.xctest"
|
|
37
|
+
BlueprintName = "demoAppTests"
|
|
38
|
+
ReferencedContainer = "container:demoApp.xcodeproj">
|
|
39
|
+
</BuildableReference>
|
|
40
|
+
</TestableReference>
|
|
41
|
+
</Testables>
|
|
42
|
+
</TestAction>
|
|
43
|
+
<LaunchAction
|
|
44
|
+
buildConfiguration = "Debug"
|
|
45
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
46
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
47
|
+
launchStyle = "0"
|
|
48
|
+
useCustomWorkingDirectory = "NO"
|
|
49
|
+
ignoresPersistentStateOnLaunch = "NO"
|
|
50
|
+
debugDocumentVersioning = "YES"
|
|
51
|
+
debugServiceExtension = "internal"
|
|
52
|
+
allowLocationSimulation = "YES">
|
|
53
|
+
<BuildableProductRunnable
|
|
54
|
+
runnableDebuggingMode = "0">
|
|
55
|
+
<BuildableReference
|
|
56
|
+
BuildableIdentifier = "primary"
|
|
57
|
+
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
|
|
58
|
+
BuildableName = "demoApp.app"
|
|
59
|
+
BlueprintName = "demoApp"
|
|
60
|
+
ReferencedContainer = "container:demoApp.xcodeproj">
|
|
61
|
+
</BuildableReference>
|
|
62
|
+
</BuildableProductRunnable>
|
|
63
|
+
</LaunchAction>
|
|
64
|
+
<ProfileAction
|
|
65
|
+
buildConfiguration = "Release"
|
|
66
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
67
|
+
savedToolIdentifier = ""
|
|
68
|
+
useCustomWorkingDirectory = "NO"
|
|
69
|
+
debugDocumentVersioning = "YES">
|
|
70
|
+
<BuildableProductRunnable
|
|
71
|
+
runnableDebuggingMode = "0">
|
|
72
|
+
<BuildableReference
|
|
73
|
+
BuildableIdentifier = "primary"
|
|
74
|
+
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
|
|
75
|
+
BuildableName = "demoApp.app"
|
|
76
|
+
BlueprintName = "demoApp"
|
|
77
|
+
ReferencedContainer = "container:demoApp.xcodeproj">
|
|
78
|
+
</BuildableReference>
|
|
79
|
+
</BuildableProductRunnable>
|
|
80
|
+
</ProfileAction>
|
|
81
|
+
<AnalyzeAction
|
|
82
|
+
buildConfiguration = "Debug">
|
|
83
|
+
</AnalyzeAction>
|
|
84
|
+
<ArchiveAction
|
|
85
|
+
buildConfiguration = "Release"
|
|
86
|
+
revealArchiveInOrganizer = "YES">
|
|
87
|
+
</ArchiveAction>
|
|
88
|
+
</Scheme>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `metro-react-native-babel-transformer` has recently been migrated to the React Native
|
|
3
|
+
* repository and published under the `@react-native/metro-babel-transformer` name.
|
|
4
|
+
* The new package is default on `react-native` >= 0.73.0, so we need to conditionally load it.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
const upstreamTransformer = require('@react-native/metro-babel-transformer')
|
|
8
|
+
const svgTransformer = require('react-native-svg-transformer')
|
|
9
|
+
|
|
10
|
+
module.exports.transform = function ({ src, filename, options }) {
|
|
11
|
+
if (filename.endsWith('.svg')) {
|
|
12
|
+
return svgTransformer.transform({ src, filename, options })
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
return upstreamTransformer.transform({ src, filename, options })
|
|
16
|
+
}
|