@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
package/src/index.tsx
ADDED
|
@@ -0,0 +1,957 @@
|
|
|
1
|
+
import {
|
|
2
|
+
UIProviderApp,
|
|
3
|
+
useUserDeviceContext,
|
|
4
|
+
} from '@itcase/ui-core/context/UIProviderApp'
|
|
5
|
+
import type {
|
|
6
|
+
DeviceType,
|
|
7
|
+
UIProviderAppProps,
|
|
8
|
+
UserDeviceState,
|
|
9
|
+
} from '@itcase/ui-core/context/UIProviderApp'
|
|
10
|
+
|
|
11
|
+
import {
|
|
12
|
+
Avatar,
|
|
13
|
+
avatarAppearance,
|
|
14
|
+
avatarConfig,
|
|
15
|
+
avatarShapeList,
|
|
16
|
+
avatarSizesList,
|
|
17
|
+
} from './components/Avatar'
|
|
18
|
+
import type {
|
|
19
|
+
AvatarAppearance,
|
|
20
|
+
AvatarAppearanceKey,
|
|
21
|
+
AvatarConfig,
|
|
22
|
+
AvatarProps,
|
|
23
|
+
avatarShapePropsType,
|
|
24
|
+
avatarSizesPropsType,
|
|
25
|
+
} from './components/Avatar'
|
|
26
|
+
import { AvatarStack, avatarStackDirectionList } from './components/AvatarStack'
|
|
27
|
+
import type {
|
|
28
|
+
avatarStackDirectionPropsType,
|
|
29
|
+
AvatarStackItem,
|
|
30
|
+
AvatarStackProps,
|
|
31
|
+
} from './components/AvatarStack'
|
|
32
|
+
import {
|
|
33
|
+
Badge,
|
|
34
|
+
badgeAppearance,
|
|
35
|
+
badgeConfig,
|
|
36
|
+
badgeShapeList,
|
|
37
|
+
badgeSizeList,
|
|
38
|
+
badgeTypeList,
|
|
39
|
+
} from './components/Badge'
|
|
40
|
+
import type {
|
|
41
|
+
BadgeAppearance,
|
|
42
|
+
BadgeAppearanceKey,
|
|
43
|
+
BadgeConfig,
|
|
44
|
+
BadgeProps,
|
|
45
|
+
badgeShapePropsType,
|
|
46
|
+
badgeSizePropsType,
|
|
47
|
+
badgeTypePropsType,
|
|
48
|
+
} from './components/Badge'
|
|
49
|
+
import {
|
|
50
|
+
Breadcrumbs,
|
|
51
|
+
breadcrumbsAppearance,
|
|
52
|
+
breadcrumbsConfig,
|
|
53
|
+
breadcrumbsSizeList,
|
|
54
|
+
} from './components/Breadcrumbs'
|
|
55
|
+
import type {
|
|
56
|
+
BreadcrumbsAppearance,
|
|
57
|
+
BreadcrumbsAppearanceKey,
|
|
58
|
+
BreadcrumbsConfig,
|
|
59
|
+
BreadcrumbsItem,
|
|
60
|
+
BreadcrumbsProps,
|
|
61
|
+
breadcrumbsSizePropsType,
|
|
62
|
+
} from './components/Breadcrumbs'
|
|
63
|
+
import {
|
|
64
|
+
Button,
|
|
65
|
+
buttonAppearance,
|
|
66
|
+
buttonConfig,
|
|
67
|
+
buttonSizeList,
|
|
68
|
+
buttonTextSizeList,
|
|
69
|
+
} from './components/Button'
|
|
70
|
+
import type {
|
|
71
|
+
ButtonAppearance,
|
|
72
|
+
ButtonAppearanceKey,
|
|
73
|
+
ButtonAppearanceStyle,
|
|
74
|
+
ButtonConfig,
|
|
75
|
+
ButtonProps,
|
|
76
|
+
buttonSizePropsType,
|
|
77
|
+
buttonTextSizePropsType,
|
|
78
|
+
} from './components/Button'
|
|
79
|
+
import {
|
|
80
|
+
Cell,
|
|
81
|
+
cellDirectionList,
|
|
82
|
+
cellShapeList,
|
|
83
|
+
cellSizeList,
|
|
84
|
+
} from './components/Cell'
|
|
85
|
+
import type {
|
|
86
|
+
cellDirectionPropsType,
|
|
87
|
+
CellProps,
|
|
88
|
+
cellShapePropsType,
|
|
89
|
+
cellSizePropsType,
|
|
90
|
+
URLTextProps,
|
|
91
|
+
} from './components/Cell'
|
|
92
|
+
import {
|
|
93
|
+
Checkbox,
|
|
94
|
+
checkboxAlignList,
|
|
95
|
+
checkboxAppearance,
|
|
96
|
+
checkboxConfig,
|
|
97
|
+
checkboxSizeList,
|
|
98
|
+
} from './components/Checkbox'
|
|
99
|
+
import type {
|
|
100
|
+
checkboxAlignPropsType,
|
|
101
|
+
CheckboxAppearance,
|
|
102
|
+
CheckboxAppearanceKey,
|
|
103
|
+
CheckboxConfig,
|
|
104
|
+
CheckboxProps,
|
|
105
|
+
checkboxSizePropsType,
|
|
106
|
+
} from './components/Checkbox'
|
|
107
|
+
import { Checkmark } from './components/Checkmark'
|
|
108
|
+
import type { CheckmarkProps } from './components/Checkmark'
|
|
109
|
+
import {
|
|
110
|
+
Chips,
|
|
111
|
+
chipsAppearance,
|
|
112
|
+
chipsConfig,
|
|
113
|
+
chipsShapeList,
|
|
114
|
+
chipsSizeList,
|
|
115
|
+
} from './components/Chips'
|
|
116
|
+
import type {
|
|
117
|
+
ChipsAppearance,
|
|
118
|
+
ChipsAppearanceKey,
|
|
119
|
+
ChipsConfig,
|
|
120
|
+
ChipsProps,
|
|
121
|
+
chipsShapePropsType,
|
|
122
|
+
chipsSizePropsType,
|
|
123
|
+
} from './components/Chips'
|
|
124
|
+
import {
|
|
125
|
+
Choice,
|
|
126
|
+
choiceAppearance,
|
|
127
|
+
choiceConfig,
|
|
128
|
+
choiceSizeList,
|
|
129
|
+
} from './components/Choice'
|
|
130
|
+
import type {
|
|
131
|
+
ChoiceActive,
|
|
132
|
+
ChoiceAppearance,
|
|
133
|
+
ChoiceAppearanceKey,
|
|
134
|
+
ChoiceConfig,
|
|
135
|
+
ChoiceOptionsItem,
|
|
136
|
+
ChoiceProps,
|
|
137
|
+
choiceSizePropsType,
|
|
138
|
+
} from './components/Choice'
|
|
139
|
+
import {
|
|
140
|
+
Code,
|
|
141
|
+
codeAppearance,
|
|
142
|
+
codeConfig,
|
|
143
|
+
codeSizeList,
|
|
144
|
+
codeVariantList,
|
|
145
|
+
} from './components/Code'
|
|
146
|
+
import type {
|
|
147
|
+
CodeAppearance,
|
|
148
|
+
CodeAppearanceKey,
|
|
149
|
+
CodeConfig,
|
|
150
|
+
CodeProps,
|
|
151
|
+
codeSizePropsType,
|
|
152
|
+
codeVariantPropsType,
|
|
153
|
+
} from './components/Code'
|
|
154
|
+
import {
|
|
155
|
+
ColorInput,
|
|
156
|
+
colorInputAppearance,
|
|
157
|
+
colorInputConfig,
|
|
158
|
+
colorInputSizeList,
|
|
159
|
+
isValidColor,
|
|
160
|
+
} from './components/ColorInput'
|
|
161
|
+
import type {
|
|
162
|
+
ColorInputAppearance,
|
|
163
|
+
ColorInputAppearanceKey,
|
|
164
|
+
ColorInputConfig,
|
|
165
|
+
ColorInputProps,
|
|
166
|
+
colorInputSizePropsType,
|
|
167
|
+
} from './components/ColorInput'
|
|
168
|
+
import {
|
|
169
|
+
DatePicker,
|
|
170
|
+
datePickerAppearance,
|
|
171
|
+
datePickerConfig,
|
|
172
|
+
} from './components/DatePicker'
|
|
173
|
+
import type {
|
|
174
|
+
DatePickerAppearance,
|
|
175
|
+
DatePickerAppearanceKey,
|
|
176
|
+
DatePickerConfig,
|
|
177
|
+
DatePickerProps,
|
|
178
|
+
} from './components/DatePicker'
|
|
179
|
+
import {
|
|
180
|
+
Divider,
|
|
181
|
+
dividerAppearance,
|
|
182
|
+
dividerConfig,
|
|
183
|
+
dividerDirectionList,
|
|
184
|
+
dividerSizeList,
|
|
185
|
+
} from './components/Divider'
|
|
186
|
+
import type {
|
|
187
|
+
DividerAppearance,
|
|
188
|
+
DividerAppearanceKey,
|
|
189
|
+
DividerConfig,
|
|
190
|
+
dividerDirectionPropsType,
|
|
191
|
+
DividerProps,
|
|
192
|
+
dividerSizePropsType,
|
|
193
|
+
} from './components/Divider'
|
|
194
|
+
import { Dot, dotShapeList, dotSizeList } from './components/Dot'
|
|
195
|
+
import type {
|
|
196
|
+
DotProps,
|
|
197
|
+
dotShapePropsType,
|
|
198
|
+
dotSizePropsType,
|
|
199
|
+
} from './components/Dot'
|
|
200
|
+
import { Drawer, drawerAppearance, drawerConfig } from './components/Drawer'
|
|
201
|
+
import type {
|
|
202
|
+
DrawerAppearance,
|
|
203
|
+
DrawerAppearanceKey,
|
|
204
|
+
DrawerConfig,
|
|
205
|
+
DrawerPosition,
|
|
206
|
+
DrawerProps,
|
|
207
|
+
} from './components/Drawer'
|
|
208
|
+
import {
|
|
209
|
+
Dropdown,
|
|
210
|
+
dropdownAppearance,
|
|
211
|
+
dropdownConfig,
|
|
212
|
+
DropdownItem,
|
|
213
|
+
dropdownItemAppearance,
|
|
214
|
+
dropdownItemConfig,
|
|
215
|
+
dropdownSizeList,
|
|
216
|
+
} from './components/Dropdown'
|
|
217
|
+
import type {
|
|
218
|
+
DropdownAppearance,
|
|
219
|
+
DropdownAppearanceKey,
|
|
220
|
+
DropdownConfig,
|
|
221
|
+
DropdownItemProps,
|
|
222
|
+
DropdownListItem,
|
|
223
|
+
DropdownProps,
|
|
224
|
+
dropdownSizePropsType,
|
|
225
|
+
} from './components/Dropdown'
|
|
226
|
+
import {
|
|
227
|
+
Group,
|
|
228
|
+
groupAlignItemsList,
|
|
229
|
+
groupAppearance,
|
|
230
|
+
groupConfig,
|
|
231
|
+
groupDirectionList,
|
|
232
|
+
groupJustifyContentList,
|
|
233
|
+
groupWrapList,
|
|
234
|
+
} from './components/Group'
|
|
235
|
+
import type {
|
|
236
|
+
groupAlignItemsPropsType,
|
|
237
|
+
GroupAppearance,
|
|
238
|
+
GroupAppearanceKey,
|
|
239
|
+
GroupConfig,
|
|
240
|
+
groupDirectionPropsType,
|
|
241
|
+
groupJustifyContentPropsType,
|
|
242
|
+
GroupProps,
|
|
243
|
+
groupWrapPropsType,
|
|
244
|
+
} from './components/Group'
|
|
245
|
+
import {
|
|
246
|
+
HeroTitle,
|
|
247
|
+
heroTitleAppearance,
|
|
248
|
+
heroTitleConfig,
|
|
249
|
+
} from './components/HeroTitle'
|
|
250
|
+
import type {
|
|
251
|
+
HeroTitleAppearance,
|
|
252
|
+
HeroTitleAppearanceKey,
|
|
253
|
+
HeroTitleConfig,
|
|
254
|
+
HeroTitleProps,
|
|
255
|
+
} from './components/HeroTitle'
|
|
256
|
+
import { Icon, iconShapeList, iconSizeList } from './components/Icon'
|
|
257
|
+
import type {
|
|
258
|
+
IconProps,
|
|
259
|
+
iconShapePropsType,
|
|
260
|
+
iconSizePropsType,
|
|
261
|
+
} from './components/Icon'
|
|
262
|
+
import { Image } from './components/Image'
|
|
263
|
+
import type { ImageProps } from './components/Image'
|
|
264
|
+
import {
|
|
265
|
+
Input,
|
|
266
|
+
inputAppearance,
|
|
267
|
+
inputConfig,
|
|
268
|
+
inputShapeList,
|
|
269
|
+
inputSizeList,
|
|
270
|
+
} from './components/Input'
|
|
271
|
+
import type {
|
|
272
|
+
InputAppearance,
|
|
273
|
+
InputAppearanceKey,
|
|
274
|
+
InputConfig,
|
|
275
|
+
InputProps,
|
|
276
|
+
inputShapePropsType,
|
|
277
|
+
inputSizePropsType,
|
|
278
|
+
} from './components/Input'
|
|
279
|
+
import {
|
|
280
|
+
InputNumber,
|
|
281
|
+
inputNumberAppearance,
|
|
282
|
+
inputNumberConfig,
|
|
283
|
+
inputNumberShapeList,
|
|
284
|
+
inputNumberSizeList,
|
|
285
|
+
} from './components/InputNumber'
|
|
286
|
+
import type {
|
|
287
|
+
InputNumberAppearance,
|
|
288
|
+
InputNumberAppearanceKey,
|
|
289
|
+
InputNumberConfig,
|
|
290
|
+
InputNumberProps,
|
|
291
|
+
inputNumberShapePropsType,
|
|
292
|
+
inputNumberSizePropsType,
|
|
293
|
+
} from './components/InputNumber'
|
|
294
|
+
import {
|
|
295
|
+
InputPassword,
|
|
296
|
+
inputPasswordAppearance,
|
|
297
|
+
inputPasswordConfig,
|
|
298
|
+
inputPasswordShapeList,
|
|
299
|
+
inputPasswordSizeList,
|
|
300
|
+
} from './components/InputPassword'
|
|
301
|
+
import type {
|
|
302
|
+
InputPasswordAppearance,
|
|
303
|
+
InputPasswordAppearanceKey,
|
|
304
|
+
InputPasswordConfig,
|
|
305
|
+
InputPasswordProps,
|
|
306
|
+
inputPasswordShapePropsType,
|
|
307
|
+
inputPasswordSizePropsType,
|
|
308
|
+
} from './components/InputPassword'
|
|
309
|
+
import {
|
|
310
|
+
Label,
|
|
311
|
+
labelAppearance,
|
|
312
|
+
labelShapeList,
|
|
313
|
+
labelSizeList,
|
|
314
|
+
} from './components/Label'
|
|
315
|
+
import type {
|
|
316
|
+
LabelAppearance,
|
|
317
|
+
LabelAppearanceKey,
|
|
318
|
+
LabelConfig,
|
|
319
|
+
LabelProps,
|
|
320
|
+
labelShapePropsType,
|
|
321
|
+
} from './components/Label'
|
|
322
|
+
import { Link, linkAppearance, linkConfig } from './components/Link'
|
|
323
|
+
import type {
|
|
324
|
+
LinkAppearance,
|
|
325
|
+
LinkAppearanceKey,
|
|
326
|
+
LinkConfig,
|
|
327
|
+
LinkProps,
|
|
328
|
+
} from './components/Link'
|
|
329
|
+
import {
|
|
330
|
+
List,
|
|
331
|
+
listAppearance,
|
|
332
|
+
listConfig,
|
|
333
|
+
listDirectionList,
|
|
334
|
+
ListItem,
|
|
335
|
+
listSizeList,
|
|
336
|
+
} from './components/List'
|
|
337
|
+
import type {
|
|
338
|
+
ListAppearance,
|
|
339
|
+
ListAppearanceKey,
|
|
340
|
+
ListConfig,
|
|
341
|
+
listDirectionPropsType,
|
|
342
|
+
ListItemProps,
|
|
343
|
+
ListProps,
|
|
344
|
+
listSizePropsType,
|
|
345
|
+
ListStyle,
|
|
346
|
+
} from './components/List'
|
|
347
|
+
import {
|
|
348
|
+
Loader,
|
|
349
|
+
loaderAppearance,
|
|
350
|
+
loaderConfig,
|
|
351
|
+
loaderShapeList,
|
|
352
|
+
loaderSizeList,
|
|
353
|
+
} from './components/Loader'
|
|
354
|
+
import type {
|
|
355
|
+
LoaderAppearance,
|
|
356
|
+
LoaderAppearanceKey,
|
|
357
|
+
LoaderConfig,
|
|
358
|
+
LoaderProps,
|
|
359
|
+
loaderShapePropsType,
|
|
360
|
+
loaderSizePropsType,
|
|
361
|
+
} from './components/Loader'
|
|
362
|
+
import { Logo, logoAlignItemsList, logoSizeList } from './components/Logo'
|
|
363
|
+
import type {
|
|
364
|
+
logoAlignItemsPropsType,
|
|
365
|
+
LogoProps,
|
|
366
|
+
logoSizePropsType,
|
|
367
|
+
} from './components/Logo'
|
|
368
|
+
import {
|
|
369
|
+
MenuItem,
|
|
370
|
+
menuItemAppearance,
|
|
371
|
+
menuItemConfig,
|
|
372
|
+
menuItemShapeList,
|
|
373
|
+
menuItemSizeList,
|
|
374
|
+
} from './components/MenuItem'
|
|
375
|
+
import type {
|
|
376
|
+
MenuItemAppearance,
|
|
377
|
+
MenuItemAppearanceKey,
|
|
378
|
+
MenuItemConfig,
|
|
379
|
+
MenuItemProps,
|
|
380
|
+
menuItemShapePropsType,
|
|
381
|
+
menuItemSizePropsType,
|
|
382
|
+
} from './components/MenuItem'
|
|
383
|
+
import { Modal } from './components/Modal'
|
|
384
|
+
import type { ModalProps } from './components/Modal'
|
|
385
|
+
import { Overlay, overlayAppearance, overlayConfig } from './components/Overlay'
|
|
386
|
+
import type {
|
|
387
|
+
OverlayAppearance,
|
|
388
|
+
OverlayAppearanceKey,
|
|
389
|
+
OverlayConfig,
|
|
390
|
+
OverlayProps,
|
|
391
|
+
} from './components/Overlay'
|
|
392
|
+
import {
|
|
393
|
+
Pagination,
|
|
394
|
+
paginationAppearance,
|
|
395
|
+
paginationConfig,
|
|
396
|
+
paginationSizeList,
|
|
397
|
+
} from './components/Pagination'
|
|
398
|
+
import type {
|
|
399
|
+
PaginationAppearance,
|
|
400
|
+
PaginationAppearanceKey,
|
|
401
|
+
PaginationConfig,
|
|
402
|
+
PaginationProps,
|
|
403
|
+
paginationSizePropsType,
|
|
404
|
+
} from './components/Pagination'
|
|
405
|
+
import {
|
|
406
|
+
Radio,
|
|
407
|
+
radioAppearance,
|
|
408
|
+
radioConfig,
|
|
409
|
+
radioSizeList,
|
|
410
|
+
} from './components/Radio'
|
|
411
|
+
import type {
|
|
412
|
+
RadioAppearance,
|
|
413
|
+
RadioAppearanceKey,
|
|
414
|
+
RadioConfig,
|
|
415
|
+
RadioProps,
|
|
416
|
+
radioSizePropsType,
|
|
417
|
+
} from './components/Radio'
|
|
418
|
+
import { RangeSlider, THUMB_SIZE } from './components/RangeSlider'
|
|
419
|
+
import type {
|
|
420
|
+
RangeSliderProps,
|
|
421
|
+
RangeSliderValue,
|
|
422
|
+
} from './components/RangeSlider'
|
|
423
|
+
import { Response } from './components/Response'
|
|
424
|
+
import type { ResponseProps } from './components/Response'
|
|
425
|
+
import { Scrollbar } from './components/Scrollbar'
|
|
426
|
+
import type { ScrollbarProps } from './components/Scrollbar'
|
|
427
|
+
import { Search } from './components/Search'
|
|
428
|
+
import type { SearchProps } from './components/Search'
|
|
429
|
+
import {
|
|
430
|
+
Segmented,
|
|
431
|
+
segmentedAppearance,
|
|
432
|
+
segmentedConfig,
|
|
433
|
+
segmentedShapeList,
|
|
434
|
+
segmentedSizeList,
|
|
435
|
+
} from './components/Segmented'
|
|
436
|
+
import type {
|
|
437
|
+
Segment,
|
|
438
|
+
SegmentedAppearance,
|
|
439
|
+
SegmentedAppearanceKey,
|
|
440
|
+
SegmentedConfig,
|
|
441
|
+
SegmentedProps,
|
|
442
|
+
segmentedShapePropsType,
|
|
443
|
+
segmentedSizePropsType,
|
|
444
|
+
} from './components/Segmented'
|
|
445
|
+
import {
|
|
446
|
+
Select,
|
|
447
|
+
selectAppearance,
|
|
448
|
+
selectConfig,
|
|
449
|
+
selectSizeList,
|
|
450
|
+
} from './components/Select'
|
|
451
|
+
import type {
|
|
452
|
+
SelectAppearance,
|
|
453
|
+
SelectAppearanceKey,
|
|
454
|
+
SelectConfig,
|
|
455
|
+
SelectOptionItem,
|
|
456
|
+
SelectProps,
|
|
457
|
+
selectSizePropsType,
|
|
458
|
+
} from './components/Select'
|
|
459
|
+
import {
|
|
460
|
+
Switch,
|
|
461
|
+
switchAlignList,
|
|
462
|
+
switchAppearance,
|
|
463
|
+
switchConfig,
|
|
464
|
+
switchSizeList,
|
|
465
|
+
} from './components/Switch'
|
|
466
|
+
import type {
|
|
467
|
+
switchAlignPropsType,
|
|
468
|
+
SwitchAppearance,
|
|
469
|
+
SwitchAppearanceKey,
|
|
470
|
+
SwitchConfig,
|
|
471
|
+
SwitchProps,
|
|
472
|
+
switchSizePropsType,
|
|
473
|
+
} from './components/Switch'
|
|
474
|
+
import { Tab, tabSizeList } from './components/Tab'
|
|
475
|
+
import type { TabProps, tabSizePropsType } from './components/Tab'
|
|
476
|
+
import { Text } from './components/Text'
|
|
477
|
+
import type { TextProps } from './components/Text'
|
|
478
|
+
import {
|
|
479
|
+
Textarea,
|
|
480
|
+
textareaAppearance,
|
|
481
|
+
textareaConfig,
|
|
482
|
+
textareaShapeList,
|
|
483
|
+
textareaSizeList,
|
|
484
|
+
} from './components/Textarea'
|
|
485
|
+
import type {
|
|
486
|
+
TextareaAppearance,
|
|
487
|
+
TextareaAppearanceKey,
|
|
488
|
+
TextareaConfig,
|
|
489
|
+
TextareaProps,
|
|
490
|
+
textareaShapePropsType,
|
|
491
|
+
textareaSizePropsType,
|
|
492
|
+
} from './components/Textarea'
|
|
493
|
+
import {
|
|
494
|
+
Tile,
|
|
495
|
+
tileAppearance,
|
|
496
|
+
tileConfig,
|
|
497
|
+
tileShapeList,
|
|
498
|
+
tileSizeList,
|
|
499
|
+
} from './components/Tile'
|
|
500
|
+
import type {
|
|
501
|
+
TileAppearance,
|
|
502
|
+
TileAppearanceKey,
|
|
503
|
+
TileConfig,
|
|
504
|
+
TileProps,
|
|
505
|
+
tileShapePropsType,
|
|
506
|
+
tileSizePropsType,
|
|
507
|
+
} from './components/Tile'
|
|
508
|
+
import { Title } from './components/Title'
|
|
509
|
+
import type { TitleProps } from './components/Title'
|
|
510
|
+
import { Tooltip, tooltipAppearance, tooltipConfig } from './components/Tooltip'
|
|
511
|
+
import type {
|
|
512
|
+
TooltipAppearance,
|
|
513
|
+
TooltipAppearanceKey,
|
|
514
|
+
TooltipConfig,
|
|
515
|
+
TooltipPosition,
|
|
516
|
+
TooltipProps,
|
|
517
|
+
} from './components/Tooltip'
|
|
518
|
+
import {
|
|
519
|
+
Warning,
|
|
520
|
+
warningAppearance,
|
|
521
|
+
warningConfig,
|
|
522
|
+
warningSizeList,
|
|
523
|
+
} from './components/Warning'
|
|
524
|
+
import type {
|
|
525
|
+
WarningAppearance,
|
|
526
|
+
WarningAppearanceKey,
|
|
527
|
+
WarningConfig,
|
|
528
|
+
WarningProps,
|
|
529
|
+
warningSizePropsType,
|
|
530
|
+
} from './components/Warning'
|
|
531
|
+
import { gapList } from './styles/gap'
|
|
532
|
+
import type { GapProps } from './styles/gap'
|
|
533
|
+
import { textAlignList } from './styles/textAlign'
|
|
534
|
+
import { textSizeList } from './styles/textSize'
|
|
535
|
+
import { textWeightList } from './styles/textWeight'
|
|
536
|
+
import { titleSizeList } from './styles/titleSize'
|
|
537
|
+
import { tokens } from './styles/tokens'
|
|
538
|
+
import { widthList } from './styles/width'
|
|
539
|
+
|
|
540
|
+
export {
|
|
541
|
+
Avatar,
|
|
542
|
+
avatarAppearance,
|
|
543
|
+
avatarConfig,
|
|
544
|
+
avatarShapeList,
|
|
545
|
+
avatarSizesList,
|
|
546
|
+
AvatarStack,
|
|
547
|
+
avatarStackDirectionList,
|
|
548
|
+
Badge,
|
|
549
|
+
badgeAppearance,
|
|
550
|
+
badgeConfig,
|
|
551
|
+
badgeShapeList,
|
|
552
|
+
badgeSizeList,
|
|
553
|
+
badgeTypeList,
|
|
554
|
+
Breadcrumbs,
|
|
555
|
+
breadcrumbsAppearance,
|
|
556
|
+
breadcrumbsConfig,
|
|
557
|
+
breadcrumbsSizeList,
|
|
558
|
+
Button,
|
|
559
|
+
buttonAppearance,
|
|
560
|
+
buttonConfig,
|
|
561
|
+
buttonSizeList,
|
|
562
|
+
buttonTextSizeList,
|
|
563
|
+
Cell,
|
|
564
|
+
cellDirectionList,
|
|
565
|
+
cellShapeList,
|
|
566
|
+
cellSizeList,
|
|
567
|
+
Checkbox,
|
|
568
|
+
checkboxAlignList,
|
|
569
|
+
checkboxAppearance,
|
|
570
|
+
checkboxConfig,
|
|
571
|
+
checkboxSizeList,
|
|
572
|
+
Checkmark,
|
|
573
|
+
Chips,
|
|
574
|
+
chipsAppearance,
|
|
575
|
+
chipsConfig,
|
|
576
|
+
chipsShapeList,
|
|
577
|
+
chipsSizeList,
|
|
578
|
+
Choice,
|
|
579
|
+
choiceAppearance,
|
|
580
|
+
choiceConfig,
|
|
581
|
+
choiceSizeList,
|
|
582
|
+
Code,
|
|
583
|
+
codeAppearance,
|
|
584
|
+
codeConfig,
|
|
585
|
+
codeSizeList,
|
|
586
|
+
codeVariantList,
|
|
587
|
+
ColorInput,
|
|
588
|
+
colorInputAppearance,
|
|
589
|
+
colorInputConfig,
|
|
590
|
+
colorInputSizeList,
|
|
591
|
+
DatePicker,
|
|
592
|
+
datePickerAppearance,
|
|
593
|
+
datePickerConfig,
|
|
594
|
+
Divider,
|
|
595
|
+
dividerAppearance,
|
|
596
|
+
dividerConfig,
|
|
597
|
+
dividerDirectionList,
|
|
598
|
+
dividerSizeList,
|
|
599
|
+
Dot,
|
|
600
|
+
dotShapeList,
|
|
601
|
+
dotSizeList,
|
|
602
|
+
Drawer,
|
|
603
|
+
drawerAppearance,
|
|
604
|
+
drawerConfig,
|
|
605
|
+
Dropdown,
|
|
606
|
+
dropdownAppearance,
|
|
607
|
+
dropdownConfig,
|
|
608
|
+
DropdownItem,
|
|
609
|
+
dropdownItemAppearance,
|
|
610
|
+
dropdownItemConfig,
|
|
611
|
+
dropdownSizeList,
|
|
612
|
+
gapList,
|
|
613
|
+
Group,
|
|
614
|
+
groupAlignItemsList,
|
|
615
|
+
groupAppearance,
|
|
616
|
+
groupConfig,
|
|
617
|
+
groupDirectionList,
|
|
618
|
+
groupJustifyContentList,
|
|
619
|
+
groupWrapList,
|
|
620
|
+
HeroTitle,
|
|
621
|
+
heroTitleAppearance,
|
|
622
|
+
heroTitleConfig,
|
|
623
|
+
Icon,
|
|
624
|
+
iconShapeList,
|
|
625
|
+
iconSizeList,
|
|
626
|
+
Image,
|
|
627
|
+
Input,
|
|
628
|
+
inputAppearance,
|
|
629
|
+
inputConfig,
|
|
630
|
+
InputNumber,
|
|
631
|
+
inputNumberAppearance,
|
|
632
|
+
inputNumberConfig,
|
|
633
|
+
inputNumberShapeList,
|
|
634
|
+
inputNumberSizeList,
|
|
635
|
+
InputPassword,
|
|
636
|
+
inputPasswordAppearance,
|
|
637
|
+
inputPasswordConfig,
|
|
638
|
+
inputPasswordShapeList,
|
|
639
|
+
inputPasswordSizeList,
|
|
640
|
+
inputShapeList,
|
|
641
|
+
inputSizeList,
|
|
642
|
+
isValidColor,
|
|
643
|
+
Label,
|
|
644
|
+
labelAppearance,
|
|
645
|
+
labelShapeList,
|
|
646
|
+
labelSizeList,
|
|
647
|
+
Link,
|
|
648
|
+
linkAppearance,
|
|
649
|
+
linkConfig,
|
|
650
|
+
List,
|
|
651
|
+
listAppearance,
|
|
652
|
+
listConfig,
|
|
653
|
+
listDirectionList,
|
|
654
|
+
ListItem,
|
|
655
|
+
listSizeList,
|
|
656
|
+
Loader,
|
|
657
|
+
loaderAppearance,
|
|
658
|
+
loaderConfig,
|
|
659
|
+
loaderShapeList,
|
|
660
|
+
loaderSizeList,
|
|
661
|
+
Logo,
|
|
662
|
+
logoAlignItemsList,
|
|
663
|
+
logoSizeList,
|
|
664
|
+
MenuItem,
|
|
665
|
+
menuItemAppearance,
|
|
666
|
+
menuItemConfig,
|
|
667
|
+
menuItemShapeList,
|
|
668
|
+
menuItemSizeList,
|
|
669
|
+
Modal,
|
|
670
|
+
Overlay,
|
|
671
|
+
overlayAppearance,
|
|
672
|
+
overlayConfig,
|
|
673
|
+
Pagination,
|
|
674
|
+
paginationAppearance,
|
|
675
|
+
paginationConfig,
|
|
676
|
+
paginationSizeList,
|
|
677
|
+
Radio,
|
|
678
|
+
radioAppearance,
|
|
679
|
+
radioConfig,
|
|
680
|
+
radioSizeList,
|
|
681
|
+
RangeSlider,
|
|
682
|
+
Response,
|
|
683
|
+
Scrollbar,
|
|
684
|
+
Search,
|
|
685
|
+
Segmented,
|
|
686
|
+
segmentedAppearance,
|
|
687
|
+
segmentedConfig,
|
|
688
|
+
segmentedShapeList,
|
|
689
|
+
segmentedSizeList,
|
|
690
|
+
Select,
|
|
691
|
+
selectAppearance,
|
|
692
|
+
selectConfig,
|
|
693
|
+
selectSizeList,
|
|
694
|
+
Switch,
|
|
695
|
+
switchAlignList,
|
|
696
|
+
switchAppearance,
|
|
697
|
+
switchConfig,
|
|
698
|
+
switchSizeList,
|
|
699
|
+
Tab,
|
|
700
|
+
tabSizeList,
|
|
701
|
+
Text,
|
|
702
|
+
textAlignList,
|
|
703
|
+
Textarea,
|
|
704
|
+
textareaAppearance,
|
|
705
|
+
textareaConfig,
|
|
706
|
+
textareaShapeList,
|
|
707
|
+
textareaSizeList,
|
|
708
|
+
textSizeList,
|
|
709
|
+
textWeightList,
|
|
710
|
+
THUMB_SIZE,
|
|
711
|
+
Tile,
|
|
712
|
+
tileAppearance,
|
|
713
|
+
tileConfig,
|
|
714
|
+
tileShapeList,
|
|
715
|
+
tileSizeList,
|
|
716
|
+
Title,
|
|
717
|
+
titleSizeList,
|
|
718
|
+
tokens,
|
|
719
|
+
Tooltip,
|
|
720
|
+
tooltipAppearance,
|
|
721
|
+
tooltipConfig,
|
|
722
|
+
UIProviderApp,
|
|
723
|
+
useUserDeviceContext,
|
|
724
|
+
Warning,
|
|
725
|
+
warningAppearance,
|
|
726
|
+
warningConfig,
|
|
727
|
+
warningSizeList,
|
|
728
|
+
widthList,
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
export type {
|
|
732
|
+
AvatarAppearance,
|
|
733
|
+
AvatarAppearanceKey,
|
|
734
|
+
AvatarConfig,
|
|
735
|
+
AvatarProps,
|
|
736
|
+
avatarShapePropsType,
|
|
737
|
+
avatarSizesPropsType,
|
|
738
|
+
avatarStackDirectionPropsType,
|
|
739
|
+
AvatarStackItem,
|
|
740
|
+
AvatarStackProps,
|
|
741
|
+
BadgeAppearance,
|
|
742
|
+
BadgeAppearanceKey,
|
|
743
|
+
BadgeConfig,
|
|
744
|
+
BadgeProps,
|
|
745
|
+
badgeShapePropsType,
|
|
746
|
+
badgeSizePropsType,
|
|
747
|
+
badgeTypePropsType,
|
|
748
|
+
BreadcrumbsAppearance,
|
|
749
|
+
BreadcrumbsAppearanceKey,
|
|
750
|
+
BreadcrumbsConfig,
|
|
751
|
+
BreadcrumbsItem,
|
|
752
|
+
BreadcrumbsProps,
|
|
753
|
+
breadcrumbsSizePropsType,
|
|
754
|
+
ButtonAppearance,
|
|
755
|
+
ButtonAppearanceKey,
|
|
756
|
+
ButtonAppearanceStyle,
|
|
757
|
+
ButtonConfig,
|
|
758
|
+
ButtonProps,
|
|
759
|
+
buttonSizePropsType,
|
|
760
|
+
buttonTextSizePropsType,
|
|
761
|
+
cellDirectionPropsType,
|
|
762
|
+
CellProps,
|
|
763
|
+
cellShapePropsType,
|
|
764
|
+
cellSizePropsType,
|
|
765
|
+
checkboxAlignPropsType,
|
|
766
|
+
CheckboxAppearance,
|
|
767
|
+
CheckboxAppearanceKey,
|
|
768
|
+
CheckboxConfig,
|
|
769
|
+
CheckboxProps,
|
|
770
|
+
checkboxSizePropsType,
|
|
771
|
+
CheckmarkProps,
|
|
772
|
+
ChipsAppearance,
|
|
773
|
+
ChipsAppearanceKey,
|
|
774
|
+
ChipsConfig,
|
|
775
|
+
ChipsProps,
|
|
776
|
+
chipsShapePropsType,
|
|
777
|
+
chipsSizePropsType,
|
|
778
|
+
ChoiceActive,
|
|
779
|
+
ChoiceAppearance,
|
|
780
|
+
ChoiceAppearanceKey,
|
|
781
|
+
ChoiceConfig,
|
|
782
|
+
ChoiceOptionsItem,
|
|
783
|
+
ChoiceProps,
|
|
784
|
+
choiceSizePropsType,
|
|
785
|
+
CodeAppearance,
|
|
786
|
+
CodeAppearanceKey,
|
|
787
|
+
CodeConfig,
|
|
788
|
+
CodeProps,
|
|
789
|
+
codeSizePropsType,
|
|
790
|
+
codeVariantPropsType,
|
|
791
|
+
ColorInputAppearance,
|
|
792
|
+
ColorInputAppearanceKey,
|
|
793
|
+
ColorInputConfig,
|
|
794
|
+
ColorInputProps,
|
|
795
|
+
colorInputSizePropsType,
|
|
796
|
+
DatePickerAppearance,
|
|
797
|
+
DatePickerAppearanceKey,
|
|
798
|
+
DatePickerConfig,
|
|
799
|
+
DatePickerProps,
|
|
800
|
+
DeviceType,
|
|
801
|
+
DividerAppearance,
|
|
802
|
+
DividerAppearanceKey,
|
|
803
|
+
DividerConfig,
|
|
804
|
+
dividerDirectionPropsType,
|
|
805
|
+
DividerProps,
|
|
806
|
+
dividerSizePropsType,
|
|
807
|
+
DotProps,
|
|
808
|
+
dotShapePropsType,
|
|
809
|
+
dotSizePropsType,
|
|
810
|
+
DrawerAppearance,
|
|
811
|
+
DrawerAppearanceKey,
|
|
812
|
+
DrawerConfig,
|
|
813
|
+
DrawerPosition,
|
|
814
|
+
DrawerProps,
|
|
815
|
+
DropdownAppearance,
|
|
816
|
+
DropdownAppearanceKey,
|
|
817
|
+
DropdownConfig,
|
|
818
|
+
DropdownItemProps,
|
|
819
|
+
DropdownListItem,
|
|
820
|
+
DropdownProps,
|
|
821
|
+
dropdownSizePropsType,
|
|
822
|
+
GapProps,
|
|
823
|
+
groupAlignItemsPropsType,
|
|
824
|
+
GroupAppearance,
|
|
825
|
+
GroupAppearanceKey,
|
|
826
|
+
GroupConfig,
|
|
827
|
+
groupDirectionPropsType,
|
|
828
|
+
groupJustifyContentPropsType,
|
|
829
|
+
GroupProps,
|
|
830
|
+
groupWrapPropsType,
|
|
831
|
+
HeroTitleAppearance,
|
|
832
|
+
HeroTitleAppearanceKey,
|
|
833
|
+
HeroTitleConfig,
|
|
834
|
+
HeroTitleProps,
|
|
835
|
+
IconProps,
|
|
836
|
+
iconShapePropsType,
|
|
837
|
+
iconSizePropsType,
|
|
838
|
+
ImageProps,
|
|
839
|
+
InputAppearance,
|
|
840
|
+
InputAppearanceKey,
|
|
841
|
+
InputConfig,
|
|
842
|
+
InputNumberAppearance,
|
|
843
|
+
InputNumberAppearanceKey,
|
|
844
|
+
InputNumberConfig,
|
|
845
|
+
InputNumberProps,
|
|
846
|
+
inputNumberShapePropsType,
|
|
847
|
+
inputNumberSizePropsType,
|
|
848
|
+
InputPasswordAppearance,
|
|
849
|
+
InputPasswordAppearanceKey,
|
|
850
|
+
InputPasswordConfig,
|
|
851
|
+
InputPasswordProps,
|
|
852
|
+
inputPasswordShapePropsType,
|
|
853
|
+
inputPasswordSizePropsType,
|
|
854
|
+
InputProps,
|
|
855
|
+
inputShapePropsType,
|
|
856
|
+
inputSizePropsType,
|
|
857
|
+
LabelAppearance,
|
|
858
|
+
LabelAppearanceKey,
|
|
859
|
+
LabelConfig,
|
|
860
|
+
LabelProps,
|
|
861
|
+
labelShapePropsType,
|
|
862
|
+
LinkAppearance,
|
|
863
|
+
LinkAppearanceKey,
|
|
864
|
+
LinkConfig,
|
|
865
|
+
LinkProps,
|
|
866
|
+
ListAppearance,
|
|
867
|
+
ListAppearanceKey,
|
|
868
|
+
ListConfig,
|
|
869
|
+
listDirectionPropsType,
|
|
870
|
+
ListItemProps,
|
|
871
|
+
ListProps,
|
|
872
|
+
listSizePropsType,
|
|
873
|
+
ListStyle,
|
|
874
|
+
LoaderAppearance,
|
|
875
|
+
LoaderAppearanceKey,
|
|
876
|
+
LoaderConfig,
|
|
877
|
+
LoaderProps,
|
|
878
|
+
loaderShapePropsType,
|
|
879
|
+
loaderSizePropsType,
|
|
880
|
+
logoAlignItemsPropsType,
|
|
881
|
+
LogoProps,
|
|
882
|
+
logoSizePropsType,
|
|
883
|
+
MenuItemAppearance,
|
|
884
|
+
MenuItemAppearanceKey,
|
|
885
|
+
MenuItemConfig,
|
|
886
|
+
MenuItemProps,
|
|
887
|
+
menuItemShapePropsType,
|
|
888
|
+
menuItemSizePropsType,
|
|
889
|
+
ModalProps,
|
|
890
|
+
OverlayAppearance,
|
|
891
|
+
OverlayAppearanceKey,
|
|
892
|
+
OverlayConfig,
|
|
893
|
+
OverlayProps,
|
|
894
|
+
PaginationAppearance,
|
|
895
|
+
PaginationAppearanceKey,
|
|
896
|
+
PaginationConfig,
|
|
897
|
+
PaginationProps,
|
|
898
|
+
paginationSizePropsType,
|
|
899
|
+
RadioAppearance,
|
|
900
|
+
RadioAppearanceKey,
|
|
901
|
+
RadioConfig,
|
|
902
|
+
RadioProps,
|
|
903
|
+
radioSizePropsType,
|
|
904
|
+
RangeSliderProps,
|
|
905
|
+
RangeSliderValue,
|
|
906
|
+
ResponseProps,
|
|
907
|
+
ScrollbarProps,
|
|
908
|
+
SearchProps,
|
|
909
|
+
Segment,
|
|
910
|
+
SegmentedAppearance,
|
|
911
|
+
SegmentedAppearanceKey,
|
|
912
|
+
SegmentedConfig,
|
|
913
|
+
SegmentedProps,
|
|
914
|
+
segmentedShapePropsType,
|
|
915
|
+
segmentedSizePropsType,
|
|
916
|
+
SelectAppearance,
|
|
917
|
+
SelectAppearanceKey,
|
|
918
|
+
SelectConfig,
|
|
919
|
+
SelectOptionItem,
|
|
920
|
+
SelectProps,
|
|
921
|
+
selectSizePropsType,
|
|
922
|
+
switchAlignPropsType,
|
|
923
|
+
SwitchAppearance,
|
|
924
|
+
SwitchAppearanceKey,
|
|
925
|
+
SwitchConfig,
|
|
926
|
+
SwitchProps,
|
|
927
|
+
switchSizePropsType,
|
|
928
|
+
TabProps,
|
|
929
|
+
tabSizePropsType,
|
|
930
|
+
TextareaAppearance,
|
|
931
|
+
TextareaAppearanceKey,
|
|
932
|
+
TextareaConfig,
|
|
933
|
+
TextareaProps,
|
|
934
|
+
textareaShapePropsType,
|
|
935
|
+
textareaSizePropsType,
|
|
936
|
+
TextProps,
|
|
937
|
+
TileAppearance,
|
|
938
|
+
TileAppearanceKey,
|
|
939
|
+
TileConfig,
|
|
940
|
+
TileProps,
|
|
941
|
+
tileShapePropsType,
|
|
942
|
+
tileSizePropsType,
|
|
943
|
+
TitleProps,
|
|
944
|
+
TooltipAppearance,
|
|
945
|
+
TooltipAppearanceKey,
|
|
946
|
+
TooltipConfig,
|
|
947
|
+
TooltipPosition,
|
|
948
|
+
TooltipProps,
|
|
949
|
+
UIProviderAppProps,
|
|
950
|
+
URLTextProps,
|
|
951
|
+
UserDeviceState,
|
|
952
|
+
WarningAppearance,
|
|
953
|
+
WarningAppearanceKey,
|
|
954
|
+
WarningConfig,
|
|
955
|
+
WarningProps,
|
|
956
|
+
warningSizePropsType,
|
|
957
|
+
}
|