linkedunion-design-kit 1.5.2 → 1.5.3
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/dist/app/layout.d.ts +1 -1
- package/dist/app/layout.js +7 -11
- package/dist/app/layout.jsx +13 -0
- package/dist/app/page.js +4 -10
- package/dist/app/page.jsx +71 -0
- package/dist/build/types/app/layout.d.ts +12 -0
- package/dist/build/types/app/layout.js +22 -0
- package/dist/build/types/app/page.d.ts +12 -0
- package/dist/build/types/app/page.js +22 -0
- package/dist/index.d.ts +13 -12
- package/dist/index.js +13 -30
- package/dist/jest.config.js +15 -21
- package/dist/jest.setup.d.ts +0 -1
- package/dist/jest.setup.js +3 -12
- package/dist/src/components/Accordion/Accordion.d.ts +5 -0
- package/dist/src/components/Accordion/Accordion.js +7 -0
- package/dist/{components/Color/TextColor/TextColor.stories.d.ts → src/components/Accordion/Accordion.stories.d.ts} +2 -2
- package/dist/src/components/Accordion/Accordion.stories.js +32 -0
- package/dist/src/components/Accordion/EditorAccordion.d.ts +5 -0
- package/dist/src/components/Accordion/EditorAccordion.js +7 -0
- package/dist/src/components/Accordion/EditorAccordion.stories.d.ts +6 -0
- package/dist/src/components/Accordion/EditorAccordion.stories.js +33 -0
- package/dist/src/components/Accordion/type.d.ts +5 -0
- package/dist/{components → src/components}/Avatar/Avatar.d.ts +1 -1
- package/dist/src/components/Avatar/Avatar.js +12 -0
- package/dist/src/components/Avatar/Avatar.jsx +17 -0
- package/dist/src/components/Avatar/Avatar.stories.js +43 -0
- package/dist/src/components/Avatar/Avatar.stories.jsx +31 -0
- package/dist/src/components/Avatar/Avatar.test.js +50 -0
- package/dist/src/components/Avatar/Avatar.test.jsx +51 -0
- package/dist/src/components/Avatar/index.d.ts +32 -0
- package/dist/src/components/Avatar/index.js +32 -0
- package/dist/src/components/Avatar/type.d.ts +11 -0
- package/dist/src/components/Button/Button.d.ts +3 -0
- package/dist/src/components/Button/Button.js +7 -0
- package/dist/src/components/Button/Button.jsx +10 -0
- package/dist/{components → src/components}/Button/Button.stories.d.ts +2 -1
- package/dist/src/components/Button/Button.stories.js +56 -0
- package/dist/src/components/Button/Button.stories.jsx +44 -0
- package/dist/src/components/Button/Button.test.js +62 -0
- package/dist/src/components/Button/Button.test.jsx +65 -0
- package/dist/src/components/Button/IconButton.d.ts +3 -0
- package/dist/src/components/Button/IconButton.js +8 -0
- package/dist/src/components/Button/IconButton.jsx +9 -0
- package/dist/src/components/Button/IconButton.stories.d.ts +4 -0
- package/dist/src/components/Button/IconButton.stories.js +53 -0
- package/dist/src/components/Button/IconButton.stories.jsx +41 -0
- package/dist/src/components/Button/IconButton.test.js +30 -0
- package/dist/src/components/Button/IconButton.test.jsx +29 -0
- package/dist/src/components/Button/index.d.ts +39 -0
- package/dist/src/components/Button/index.js +39 -0
- package/dist/src/components/Button/type.d.ts +25 -0
- package/dist/src/components/ColorPicker/ColorPicker.d.ts +3 -0
- package/dist/src/components/ColorPicker/ColorPicker.js +27 -0
- package/dist/src/components/ColorPicker/ColorPicker.jsx +34 -0
- package/dist/src/components/ColorPicker/ColorPicker.stories.d.ts +5 -0
- package/dist/src/components/ColorPicker/ColorPicker.stories.js +24 -0
- package/dist/src/components/ColorPicker/ColorPicker.stories.jsx +12 -0
- package/dist/src/components/ColorPicker/type.d.ts +4 -0
- package/dist/src/components/Colors/color.d.ts +4 -0
- package/dist/src/components/Colors/color.js +6 -0
- package/dist/src/components/Colors/color.jsx +5 -0
- package/dist/src/components/Colors/color.stories.d.ts +7 -0
- package/dist/src/components/Colors/color.stories.js +32 -0
- package/dist/src/components/Colors/color.stories.jsx +20 -0
- package/dist/src/components/Colors/color.test.js +24 -0
- package/dist/src/components/Colors/color.test.jsx +23 -0
- package/dist/src/components/EditorTooltip/EditorTooltip.d.ts +4 -0
- package/dist/src/components/EditorTooltip/EditorTooltip.js +9 -0
- package/dist/src/components/EditorTooltip/EditorTooltip.jsx +18 -0
- package/dist/src/components/EditorTooltip/EditorTooltip.stories.d.ts +6 -0
- package/dist/src/components/EditorTooltip/EditorTooltip.stories.js +24 -0
- package/dist/src/components/EditorTooltip/EditorTooltip.stories.jsx +12 -0
- package/dist/src/components/EditorTooltip/type.d.ts +3 -0
- package/dist/{components → src/components}/Icons/IconList.test.js +18 -20
- package/dist/src/components/Icons/IconList.test.jsx +57 -0
- package/dist/src/components/Icons/IconView.js +8 -0
- package/dist/src/components/Icons/IconView.jsx +25 -0
- package/dist/{components → src/components}/Icons/IconView.stories.js +6 -9
- package/dist/src/components/Icons/IconView.stories.jsx +8 -0
- package/dist/src/components/Icons/LUIcon.d.ts +3 -0
- package/dist/src/components/Icons/LUIcon.js +32 -0
- package/dist/src/components/Icons/LUIcon.jsx +31 -0
- package/dist/src/components/Icons/LUIcon.stories.js +44 -0
- package/dist/src/components/Icons/LUIcon.stories.jsx +32 -0
- package/dist/src/components/Icons/SingleIcon.test.js +67 -0
- package/dist/src/components/Icons/SingleIcon.test.jsx +55 -0
- package/dist/src/components/Icons/index.d.ts +16 -0
- package/dist/src/components/Icons/index.js +16 -0
- package/dist/src/components/Icons/type.d.ts +8 -0
- package/dist/src/components/Icons/type.js +1 -0
- package/dist/src/components/ImageUploader/ImageUploader.stories.d.ts +6 -0
- package/dist/src/components/ImageUploader/ImageUploader.stories.js +18 -0
- package/dist/src/components/ImageUploader/type.d.ts +8 -0
- package/dist/src/components/ImageUploader/type.js +1 -0
- package/dist/src/components/Images/LuImage.d.ts +3 -0
- package/dist/{components/Typography/Body/Body.js → src/components/Images/LuImage.js} +8 -9
- package/dist/src/components/Images/LuImage.jsx +19 -0
- package/dist/src/components/Images/LuImage.stories.d.ts +6 -0
- package/dist/src/components/Images/LuImage.stories.js +166 -0
- package/dist/src/components/Images/LuImage.stories.jsx +154 -0
- package/dist/src/components/Images/LuImage.test.d.ts +1 -0
- package/dist/src/components/Images/LuImage.test.js +56 -0
- package/dist/src/components/Images/LuImage.test.jsx +44 -0
- package/dist/src/components/Images/index.d.ts +19 -0
- package/dist/src/components/Images/index.js +19 -0
- package/dist/src/components/Images/type.d.ts +7 -0
- package/dist/src/components/Images/type.js +1 -0
- package/dist/src/components/Input/Input.d.ts +3 -0
- package/dist/{components/Typography/Headings/Headings.js → src/components/Input/Input.js} +6 -9
- package/dist/src/components/Input/Input.jsx +19 -0
- package/dist/src/components/Input/Input.stories.d.ts +5 -0
- package/dist/src/components/Input/Input.stories.js +30 -0
- package/dist/src/components/Input/Input.stories.jsx +18 -0
- package/dist/src/components/Input/index.d.ts +10 -0
- package/dist/src/components/Input/index.js +10 -0
- package/dist/src/components/Input/type.d.ts +8 -0
- package/dist/src/components/Input/type.js +1 -0
- package/dist/src/components/Label/Label.d.ts +3 -0
- package/dist/{components/Typography/Display/Display.js → src/components/Label/Label.js} +6 -9
- package/dist/src/components/Label/Label.jsx +19 -0
- package/dist/src/components/Label/Label.stories.d.ts +5 -0
- package/dist/src/components/Label/Label.stories.js +36 -0
- package/dist/src/components/Label/Label.stories.jsx +24 -0
- package/dist/src/components/Label/index.d.ts +4 -0
- package/dist/src/components/Label/index.js +5 -0
- package/dist/src/components/Label/type.d.ts +9 -0
- package/dist/src/components/Label/type.js +1 -0
- package/dist/src/components/MediaCard/Card.d.ts +3 -0
- package/dist/src/components/MediaCard/Card.js +45 -0
- package/dist/src/components/MediaCard/Card.jsx +36 -0
- package/dist/src/components/MediaCard/Card.stories.js +57 -0
- package/dist/src/components/MediaCard/Card.stories.jsx +56 -0
- package/dist/src/components/MediaCard/Card.test.js +28 -0
- package/dist/src/components/MediaCard/Card.test.jsx +27 -0
- package/dist/{components → src/components}/MediaCard/ContactProfile/ContactProfile.d.ts +1 -1
- package/dist/src/components/MediaCard/ContactProfile/ContactProfile.js +27 -0
- package/dist/src/components/MediaCard/ContactProfile/ContactProfile.jsx +22 -0
- package/dist/src/components/MediaCard/ContactProfile/ContactProfile.test.d.ts +1 -0
- package/dist/src/components/MediaCard/ContactProfile/ContactProfile.test.js +61 -0
- package/dist/{components/MediaCard/ContactProfile/ContactProfile.test.js → src/components/MediaCard/ContactProfile/ContactProfile.test.jsx} +16 -13
- package/dist/{components → src/components}/MediaCard/ContactProfile/ContactProfileTheme1.d.ts +1 -1
- package/dist/src/components/MediaCard/ContactProfile/ContactProfileTheme1.js +8 -0
- package/dist/src/components/MediaCard/ContactProfile/ContactProfileTheme1.jsx +28 -0
- package/dist/{components → src/components}/MediaCard/ContactProfile/ContactProfileTheme1.test.js +15 -38
- package/dist/src/components/MediaCard/ContactProfile/ContactProfileTheme1.test.jsx +87 -0
- package/dist/{components → src/components}/MediaCard/ContactProfile/ContactProfileTheme2.d.ts +1 -1
- package/dist/src/components/MediaCard/ContactProfile/ContactProfileTheme2.js +8 -0
- package/dist/src/components/MediaCard/ContactProfile/ContactProfileTheme2.jsx +24 -0
- package/dist/{components → src/components}/MediaCard/ContactProfile/ContactProfileTheme2.test.js +15 -38
- package/dist/src/components/MediaCard/ContactProfile/ContactProfileTheme2.test.jsx +87 -0
- package/dist/{components → src/components}/MediaCard/PostByCategory/PostByCategory.d.ts +1 -1
- package/dist/src/components/MediaCard/PostByCategory/PostByCategory.js +31 -0
- package/dist/src/components/MediaCard/PostByCategory/PostByCategory.jsx +24 -0
- package/dist/src/components/MediaCard/PostByCategory/PostByCategory.test.d.ts +1 -0
- package/dist/src/components/MediaCard/PostByCategory/PostByCategory.test.js +62 -0
- package/dist/{components/MediaCard/PostByCategory/PostByCategory.test.js → src/components/MediaCard/PostByCategory/PostByCategory.test.jsx} +17 -13
- package/dist/{components → src/components}/MediaCard/PostByCategory/PostByCategoryTheme1.d.ts +1 -1
- package/dist/src/components/MediaCard/PostByCategory/PostByCategoryTheme1.js +8 -0
- package/dist/src/components/MediaCard/PostByCategory/PostByCategoryTheme1.jsx +26 -0
- package/dist/{components → src/components}/MediaCard/PostByCategory/PostByCategoryTheme1.test.js +15 -38
- package/dist/src/components/MediaCard/PostByCategory/PostByCategoryTheme1.test.jsx +87 -0
- package/dist/{components → src/components}/MediaCard/PostByCategory/PostByCategoryTheme2.d.ts +1 -1
- package/dist/src/components/MediaCard/PostByCategory/PostByCategoryTheme2.js +8 -0
- package/dist/src/components/MediaCard/PostByCategory/PostByCategoryTheme2.jsx +24 -0
- package/dist/{components → src/components}/MediaCard/PostByCategory/PostByCategoryTheme2.test.js +16 -39
- package/dist/src/components/MediaCard/PostByCategory/PostByCategoryTheme2.test.jsx +87 -0
- package/dist/{components → src/components}/MediaCard/index.js +2 -5
- package/dist/src/components/MediaCard/type.d.ts +26 -0
- package/dist/src/components/MediaCard/type.js +1 -0
- package/dist/src/components/Switch/Switch.d.ts +3 -0
- package/dist/src/components/Switch/Switch.js +7 -0
- package/dist/src/components/Switch/Switch.jsx +6 -0
- package/dist/src/components/Switch/Switch.stories.d.ts +5 -0
- package/dist/src/components/Switch/Switch.stories.js +44 -0
- package/dist/src/components/Switch/Switch.stories.jsx +32 -0
- package/dist/src/components/Switch/type.d.ts +5 -0
- package/dist/src/components/Switch/type.js +1 -0
- package/dist/src/components/Title/Title.js +8 -0
- package/dist/src/components/Title/Title.jsx +8 -0
- package/dist/src/components/Title/Title.module.css +43 -0
- package/dist/{components → src/components}/Title/Title.stories.js +9 -15
- package/dist/src/components/Title/Title.stories.jsx +37 -0
- package/dist/src/components/Title/Title.test.d.ts +1 -0
- package/dist/src/components/Title/Title.test.js +25 -0
- package/dist/src/components/Title/Title.test.jsx +24 -0
- package/dist/src/components/Typography/Typography.d.ts +3 -0
- package/dist/src/components/Typography/Typography.js +29 -0
- package/dist/src/components/Typography/Typography.jsx +19 -0
- package/dist/src/components/Typography/Typography.stories.d.ts +5 -0
- package/dist/src/components/Typography/Typography.stories.js +37 -0
- package/dist/src/components/Typography/Typography.stories.jsx +25 -0
- package/dist/src/components/Typography/type.d.ts +7 -0
- package/dist/src/components/Typography/type.js +1 -0
- package/dist/src/components/ui/accordion.d.ts +7 -0
- package/dist/src/components/ui/accordion.js +43 -0
- package/dist/src/components/ui/button.d.ts +10 -0
- package/dist/src/components/ui/button.js +54 -0
- package/dist/src/components/ui/button.jsx +43 -0
- package/dist/src/components/ui/imageUploader.d.ts +3 -0
- package/dist/src/components/ui/imageUploader.js +68 -0
- package/dist/src/components/ui/input.d.ts +3 -0
- package/dist/src/components/ui/input.js +29 -0
- package/dist/src/components/ui/input.jsx +18 -0
- package/dist/src/components/ui/label.d.ts +12 -0
- package/dist/src/components/ui/label.js +41 -0
- package/dist/src/components/ui/label.jsx +30 -0
- package/dist/src/components/ui/switch.d.ts +22 -0
- package/dist/src/components/ui/switch.js +70 -0
- package/dist/src/components/ui/switch.jsx +61 -0
- package/dist/src/components/ui/tooltip.d.ts +7 -0
- package/dist/src/components/ui/tooltip.js +42 -0
- package/dist/src/components/ui/tooltip.jsx +38 -0
- package/dist/src/components/ui/typography.d.ts +26 -0
- package/dist/src/components/ui/typography.js +65 -0
- package/dist/src/components/ui/typography.jsx +56 -0
- package/dist/src/lib/utils.d.ts +2 -0
- package/dist/src/lib/utils.js +9 -0
- package/dist/src/utils/colors.d.ts +70 -0
- package/dist/src/utils/colors.js +70 -0
- package/dist/{utils → src/utils}/constants.d.ts +2 -0
- package/dist/src/utils/constants.js +4 -0
- package/dist/src/utils/enums.d.ts +9 -0
- package/dist/src/utils/enums.js +11 -0
- package/dist/{utils → src/utils}/iconList.js +1 -4
- package/dist/src/utils/index.d.ts +18 -0
- package/dist/src/utils/index.js +20 -0
- package/dist/styles/global.css +2719 -4132
- package/dist/tailwind.config.js +10 -178
- package/package.json +19 -7
- package/dist/.next/types/app/page.d.ts +0 -8
- package/dist/.next/types/app/page.js +0 -57
- package/dist/app/scripts.d.ts +0 -2
- package/dist/app/scripts.js +0 -16
- package/dist/components/Avatar/Avatar.js +0 -15
- package/dist/components/Avatar/Avatar.stories.js +0 -52
- package/dist/components/Avatar/Avatar.test.js +0 -54
- package/dist/components/Border/BorderRadius/BorderRadius.d.ts +0 -2
- package/dist/components/Border/BorderRadius/BorderRadius.js +0 -11
- package/dist/components/Border/BorderRadius/BorderRadius.stories.d.ts +0 -4
- package/dist/components/Border/BorderRadius/BorderRadius.stories.js +0 -38
- package/dist/components/Border/BorderRadius/BorderRadius.test.js +0 -25
- package/dist/components/Border/BorderRadius/BorderRadiusTable.d.ts +0 -1
- package/dist/components/Border/BorderRadius/BorderRadiusTable.js +0 -9
- package/dist/components/Border/BorderRadius/BorderRadiusView.d.ts +0 -2
- package/dist/components/Border/BorderRadius/BorderRadiusView.js +0 -9
- package/dist/components/Border/BorderWidth/BorderWidth.d.ts +0 -2
- package/dist/components/Border/BorderWidth/BorderWidth.js +0 -11
- package/dist/components/Border/BorderWidth/BorderWidth.stories.d.ts +0 -4
- package/dist/components/Border/BorderWidth/BorderWidth.stories.js +0 -38
- package/dist/components/Border/BorderWidth/BorderWidth.test.js +0 -25
- package/dist/components/Border/BorderWidth/BorderWidthTable.d.ts +0 -1
- package/dist/components/Border/BorderWidth/BorderWidthTable.js +0 -9
- package/dist/components/Border/BorderWidth/ViewBorderWidth.d.ts +0 -2
- package/dist/components/Border/BorderWidth/ViewBorderWidth.js +0 -9
- package/dist/components/Button/Button.d.ts +0 -3
- package/dist/components/Button/Button.js +0 -22
- package/dist/components/Button/Button.stories.js +0 -160
- package/dist/components/Button/Button.test.d.ts +0 -1
- package/dist/components/Button/Button.test.js +0 -54
- package/dist/components/Button/index.d.ts +0 -4
- package/dist/components/Button/index.js +0 -8
- package/dist/components/Color/BackgroundColor/BackgroundColor.d.ts +0 -2
- package/dist/components/Color/BackgroundColor/BackgroundColor.js +0 -9
- package/dist/components/Color/BackgroundColor/BackgroundColor.stories.d.ts +0 -10
- package/dist/components/Color/BackgroundColor/BackgroundColor.stories.js +0 -103
- package/dist/components/Color/BackgroundColor/BackgroundColor.test.js +0 -17
- package/dist/components/Color/BackgroundColor/index.d.ts +0 -7
- package/dist/components/Color/BackgroundColor/index.js +0 -18
- package/dist/components/Color/Color.test.d.ts +0 -1
- package/dist/components/Color/Color.test.js +0 -38
- package/dist/components/Color/TextColor/TextColor.d.ts +0 -3
- package/dist/components/Color/TextColor/TextColor.js +0 -9
- package/dist/components/Color/TextColor/TextColor.stories.js +0 -35
- package/dist/components/Color/TextColor/TextColor.test.d.ts +0 -1
- package/dist/components/Color/TextColor/TextColor.test.js +0 -43
- package/dist/components/Icons/IconView.js +0 -11
- package/dist/components/Icons/LUIcon.d.ts +0 -3
- package/dist/components/Icons/LUIcon.js +0 -11
- package/dist/components/Icons/LUIcon.stories.js +0 -56
- package/dist/components/Icons/SingleIcon.test.js +0 -53
- package/dist/components/Images/LuImage.d.ts +0 -3
- package/dist/components/Images/LuImage.js +0 -14
- package/dist/components/Images/LuImage.stories.d.ts +0 -4
- package/dist/components/Images/LuImage.stories.js +0 -53
- package/dist/components/Images/LuImage.test.d.ts +0 -1
- package/dist/components/Images/LuImage.test.js +0 -68
- package/dist/components/MediaCard/Card.d.ts +0 -3
- package/dist/components/MediaCard/Card.js +0 -48
- package/dist/components/MediaCard/Card.stories.js +0 -61
- package/dist/components/MediaCard/Card.test.js +0 -33
- package/dist/components/MediaCard/ContactProfile/ContactProfile.js +0 -27
- package/dist/components/MediaCard/ContactProfile/ContactProfileTheme1.js +0 -16
- package/dist/components/MediaCard/ContactProfile/ContactProfileTheme2.js +0 -16
- package/dist/components/MediaCard/PostByCategory/PostByCategory.js +0 -27
- package/dist/components/MediaCard/PostByCategory/PostByCategoryTheme1.js +0 -16
- package/dist/components/MediaCard/PostByCategory/PostByCategoryTheme2.js +0 -16
- package/dist/components/MediaCard/card.module.css +0 -52
- package/dist/components/Size/MinWidthHeight.d.ts +0 -3
- package/dist/components/Size/MinWidthHeight.js +0 -8
- package/dist/components/Size/MinWidthHeight.stories.d.ts +0 -5
- package/dist/components/Size/MinWidthHeight.stories.js +0 -46
- package/dist/components/Size/MinWidthHeight.test.d.ts +0 -1
- package/dist/components/Size/MinWidthHeight.test.js +0 -34
- package/dist/components/Size/Size.d.ts +0 -4
- package/dist/components/Size/Size.js +0 -10
- package/dist/components/Size/Size.stories.d.ts +0 -6
- package/dist/components/Size/Size.stories.js +0 -35
- package/dist/components/Size/Size.test.d.ts +0 -1
- package/dist/components/Size/Size.test.js +0 -73
- package/dist/components/Size/WidthAndHeight.test.d.ts +0 -1
- package/dist/components/Size/WidthAndHeight.test.js +0 -34
- package/dist/components/Size/WidthHeight.d.ts +0 -3
- package/dist/components/Size/WidthHeight.js +0 -8
- package/dist/components/Size/WidthHeight.stories.d.ts +0 -5
- package/dist/components/Size/WidthHeight.stories.js +0 -46
- package/dist/components/Spacing/Margin/Margin.d.ts +0 -1
- package/dist/components/Spacing/Margin/Margin.js +0 -9
- package/dist/components/Spacing/Margin/MarginBottom.d.ts +0 -1
- package/dist/components/Spacing/Margin/MarginBottom.js +0 -9
- package/dist/components/Spacing/Margin/MarginLeft.d.ts +0 -1
- package/dist/components/Spacing/Margin/MarginLeft.js +0 -9
- package/dist/components/Spacing/Margin/MarginRight.d.ts +0 -1
- package/dist/components/Spacing/Margin/MarginRight.js +0 -9
- package/dist/components/Spacing/Margin/MarginToken.d.ts +0 -1
- package/dist/components/Spacing/Margin/MarginToken.js +0 -16
- package/dist/components/Spacing/Margin/MarginToken.stories.d.ts +0 -4
- package/dist/components/Spacing/Margin/MarginToken.stories.js +0 -22
- package/dist/components/Spacing/Margin/MarginToken.test.js +0 -22
- package/dist/components/Spacing/Margin/MarginTop.d.ts +0 -1
- package/dist/components/Spacing/Margin/MarginTop.js +0 -9
- package/dist/components/Spacing/Margin/MarginX.d.ts +0 -1
- package/dist/components/Spacing/Margin/MarginX.js +0 -9
- package/dist/components/Spacing/Margin/MarginY.d.ts +0 -1
- package/dist/components/Spacing/Margin/MarginY.js +0 -9
- package/dist/components/Spacing/Padding/Padding.d.ts +0 -1
- package/dist/components/Spacing/Padding/Padding.js +0 -9
- package/dist/components/Spacing/Padding/PaddingBottom.d.ts +0 -1
- package/dist/components/Spacing/Padding/PaddingBottom.js +0 -9
- package/dist/components/Spacing/Padding/PaddingLeft.d.ts +0 -1
- package/dist/components/Spacing/Padding/PaddingLeft.js +0 -9
- package/dist/components/Spacing/Padding/PaddingRight.d.ts +0 -1
- package/dist/components/Spacing/Padding/PaddingRight.js +0 -9
- package/dist/components/Spacing/Padding/PaddingToken.d.ts +0 -1
- package/dist/components/Spacing/Padding/PaddingToken.js +0 -16
- package/dist/components/Spacing/Padding/PaddingToken.stories.d.ts +0 -4
- package/dist/components/Spacing/Padding/PaddingToken.stories.js +0 -22
- package/dist/components/Spacing/Padding/PaddingToken.test.js +0 -22
- package/dist/components/Spacing/Padding/PaddingTop.d.ts +0 -1
- package/dist/components/Spacing/Padding/PaddingTop.js +0 -9
- package/dist/components/Spacing/Padding/PaddingX.d.ts +0 -1
- package/dist/components/Spacing/Padding/PaddingX.js +0 -9
- package/dist/components/Spacing/Padding/PaddingY.d.ts +0 -1
- package/dist/components/Spacing/Padding/PaddingY.js +0 -9
- package/dist/components/Title/Title.js +0 -13
- package/dist/components/Title/Title.module.css +0 -56
- package/dist/components/Title/Title.test.js +0 -30
- package/dist/components/Typography/Body/Body.d.ts +0 -3
- package/dist/components/Typography/Body/Body.stories.d.ts +0 -6
- package/dist/components/Typography/Body/Body.stories.js +0 -75
- package/dist/components/Typography/Body/body.test.d.ts +0 -1
- package/dist/components/Typography/Body/body.test.js +0 -49
- package/dist/components/Typography/Body/index.d.ts +0 -14
- package/dist/components/Typography/Body/index.js +0 -53
- package/dist/components/Typography/Body/type.d.ts +0 -7
- package/dist/components/Typography/Body/type.js +0 -2
- package/dist/components/Typography/Display/Display.d.ts +0 -3
- package/dist/components/Typography/Display/Display.stories.d.ts +0 -6
- package/dist/components/Typography/Display/Display.stories.js +0 -79
- package/dist/components/Typography/Display/Display.test.d.ts +0 -1
- package/dist/components/Typography/Display/Display.test.js +0 -49
- package/dist/components/Typography/Display/index.d.ts +0 -38
- package/dist/components/Typography/Display/index.js +0 -64
- package/dist/components/Typography/Display/type.d.ts +0 -8
- package/dist/components/Typography/Display/type.js +0 -2
- package/dist/components/Typography/Headings/Heading.test.d.ts +0 -1
- package/dist/components/Typography/Headings/Heading.test.js +0 -49
- package/dist/components/Typography/Headings/Headings.d.ts +0 -3
- package/dist/components/Typography/Headings/Headings.stories.d.ts +0 -6
- package/dist/components/Typography/Headings/Headings.stories.js +0 -69
- package/dist/components/Typography/Headings/index.d.ts +0 -21
- package/dist/components/Typography/Headings/index.js +0 -71
- package/dist/components/Typography/Headings/type.d.ts +0 -6
- package/dist/components/Typography/Headings/type.js +0 -2
- package/dist/components/Typography/Typography.css +0 -3016
- package/dist/components/Typography/Typography.d.ts +0 -2
- package/dist/components/Typography/Typography.js +0 -9
- package/dist/components/Typography/Typography.stories.d.ts +0 -5
- package/dist/components/Typography/Typography.stories.js +0 -87
- package/dist/components/Typography/Typography.test.d.ts +0 -1
- package/dist/components/Typography/Typography.test.js +0 -42
- package/dist/global/components/Table/Table.d.ts +0 -14
- package/dist/global/components/Table/Table.js +0 -14
- package/dist/utils/colors.d.ts +0 -7
- package/dist/utils/colors.js +0 -10
- package/dist/utils/constants.js +0 -5
- package/dist/utils/enums.d.ts +0 -60
- package/dist/utils/enums.js +0 -69
- package/dist/utils/index.d.ts +0 -1448
- package/dist/utils/index.js +0 -1597
- /package/dist/{components/Avatar/Avatar.test.d.ts → src/components/Accordion/type.js} +0 -0
- /package/dist/{components → src/components}/Avatar/Avatar.stories.d.ts +0 -0
- /package/dist/{components/Border/BorderRadius/BorderRadius.test.d.ts → src/components/Avatar/Avatar.test.d.ts} +0 -0
- /package/dist/{components/Border/BorderWidth/BorderWidth.test.d.ts → src/components/Avatar/type.js} +0 -0
- /package/dist/{components/Color/BackgroundColor/BackgroundColor.test.d.ts → src/components/Button/Button.test.d.ts} +0 -0
- /package/dist/{components/Icons/IconList.test.d.ts → src/components/Button/IconButton.test.d.ts} +0 -0
- /package/dist/{components/Icons/SingleIcon.test.d.ts → src/components/Button/type.js} +0 -0
- /package/dist/{components/MediaCard/ContactProfile/ContactProfile.test.d.ts → src/components/ColorPicker/type.js} +0 -0
- /package/dist/{components/MediaCard/PostByCategory/PostByCategory.test.d.ts → src/components/Colors/color.test.d.ts} +0 -0
- /package/dist/{components/Spacing/Margin/MarginToken.test.d.ts → src/components/EditorTooltip/type.js} +0 -0
- /package/dist/{components/Spacing/Padding/PaddingToken.test.d.ts → src/components/Icons/IconList.test.d.ts} +0 -0
- /package/dist/{components → src/components}/Icons/IconView.d.ts +0 -0
- /package/dist/{components → src/components}/Icons/IconView.stories.d.ts +0 -0
- /package/dist/{components → src/components}/Icons/LUIcon.stories.d.ts +0 -0
- /package/dist/{components/Title/Title.test.d.ts → src/components/Icons/SingleIcon.test.d.ts} +0 -0
- /package/dist/{components → src/components}/MediaCard/Card.stories.d.ts +0 -0
- /package/dist/{components → src/components}/MediaCard/Card.test.d.ts +0 -0
- /package/dist/{components → src/components}/MediaCard/ContactProfile/ContactProfileTheme1.test.d.ts +0 -0
- /package/dist/{components → src/components}/MediaCard/ContactProfile/ContactProfileTheme2.test.d.ts +0 -0
- /package/dist/{components → src/components}/MediaCard/PostByCategory/PostByCategoryTheme1.test.d.ts +0 -0
- /package/dist/{components → src/components}/MediaCard/PostByCategory/PostByCategoryTheme2.test.d.ts +0 -0
- /package/dist/{components → src/components}/MediaCard/index.d.ts +0 -0
- /package/dist/{components → src/components}/Title/Title.d.ts +0 -0
- /package/dist/{components → src/components}/Title/Title.stories.d.ts +0 -0
- /package/dist/{utils → src/utils}/iconList.d.ts +0 -0
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Typography = void 0;
|
|
4
|
-
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
var Typography = function (_a) {
|
|
6
|
-
var label = _a.label, _b = _a.className, className = _b === void 0 ? "" : _b, fontSize = _a.fontSize, fontWeight = _a.fontWeight, lineHeight = _a.lineHeight, textAlign = _a.textAlign, textTransform = _a.textTransform, textDecoration = _a.textDecoration, textWrap = _a.textWrap;
|
|
7
|
-
return ((0, jsx_runtime_1.jsx)("p", { "data-testid": "basic-typography", className: "".concat(className, " ").concat(fontSize, " ").concat(fontWeight, " ").concat(lineHeight, " ").concat(textAlign, " ").concat(textTransform, " ").concat(textDecoration, " ").concat(textWrap), children: label }));
|
|
8
|
-
};
|
|
9
|
-
exports.Typography = Typography;
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { Meta } from "@storybook/react";
|
|
2
|
-
import { TypographyProps } from "@/types/interface";
|
|
3
|
-
declare const _default: Meta;
|
|
4
|
-
export default _default;
|
|
5
|
-
export declare const BasicTypography: import("@storybook/core/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, TypographyProps>;
|
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __assign = (this && this.__assign) || function () {
|
|
3
|
-
__assign = Object.assign || function(t) {
|
|
4
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
-
s = arguments[i];
|
|
6
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
-
t[p] = s[p];
|
|
8
|
-
}
|
|
9
|
-
return t;
|
|
10
|
-
};
|
|
11
|
-
return __assign.apply(this, arguments);
|
|
12
|
-
};
|
|
13
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
-
exports.BasicTypography = void 0;
|
|
15
|
-
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
-
var Typography_1 = require("./Typography");
|
|
17
|
-
var utils_1 = require("../../utils");
|
|
18
|
-
exports.default = {
|
|
19
|
-
title: "Components/Typography",
|
|
20
|
-
component: Typography_1.Typography,
|
|
21
|
-
argTypes: {
|
|
22
|
-
label: { control: "text" },
|
|
23
|
-
},
|
|
24
|
-
};
|
|
25
|
-
var Template = function (args) { return (0, jsx_runtime_1.jsx)(Typography_1.Typography, __assign({}, args)); };
|
|
26
|
-
exports.BasicTypography = Template.bind({});
|
|
27
|
-
exports.BasicTypography.args = {
|
|
28
|
-
label: "".concat(utils_1.text),
|
|
29
|
-
fontSize: "lu-base-font-size",
|
|
30
|
-
fontWeight: "lu-font-weight-thin",
|
|
31
|
-
lineHeight: "lu-line-height-sm",
|
|
32
|
-
textAlign: "lu-text-justify",
|
|
33
|
-
textTransform: "lu-text-lowercase",
|
|
34
|
-
textDecoration: "lu-text-decoration-none",
|
|
35
|
-
textWrap: "lu-text-wrap",
|
|
36
|
-
};
|
|
37
|
-
exports.BasicTypography.argTypes = {
|
|
38
|
-
fontSize: {
|
|
39
|
-
control: {
|
|
40
|
-
type: "select",
|
|
41
|
-
labels: Object.fromEntries(utils_1.fontSizes.map(function (size) { return [size.key, size.label]; })),
|
|
42
|
-
},
|
|
43
|
-
options: utils_1.fontSizes.map(function (size) { return size.key; }),
|
|
44
|
-
},
|
|
45
|
-
fontWeight: {
|
|
46
|
-
control: {
|
|
47
|
-
type: "select",
|
|
48
|
-
labels: Object.fromEntries(utils_1.fontWeights.map(function (size) { return [size.key, size.label]; })),
|
|
49
|
-
},
|
|
50
|
-
options: utils_1.fontWeights.map(function (weight) { return weight.key; }),
|
|
51
|
-
},
|
|
52
|
-
lineHeight: {
|
|
53
|
-
control: {
|
|
54
|
-
type: "select",
|
|
55
|
-
labels: Object.fromEntries(utils_1.lineHeights.map(function (size) { return [size.key, size.label]; })),
|
|
56
|
-
},
|
|
57
|
-
options: utils_1.lineHeights.map(function (lineHeight) { return lineHeight.key; }),
|
|
58
|
-
},
|
|
59
|
-
textAlign: {
|
|
60
|
-
control: {
|
|
61
|
-
type: "select",
|
|
62
|
-
labels: Object.fromEntries(utils_1.textAlignment.map(function (size) { return [size.key, size.label]; })),
|
|
63
|
-
},
|
|
64
|
-
options: utils_1.textAlignment.map(function (alignment) { return alignment.key; }),
|
|
65
|
-
},
|
|
66
|
-
textTransform: {
|
|
67
|
-
control: {
|
|
68
|
-
type: "select",
|
|
69
|
-
labels: Object.fromEntries(utils_1.textTransform.map(function (size) { return [size.key, size.label]; })),
|
|
70
|
-
},
|
|
71
|
-
options: utils_1.textTransform.map(function (transform) { return transform.key; }),
|
|
72
|
-
},
|
|
73
|
-
textDecoration: {
|
|
74
|
-
control: {
|
|
75
|
-
type: "select",
|
|
76
|
-
labels: Object.fromEntries(utils_1.textDecorations.map(function (size) { return [size.key, size.label]; })),
|
|
77
|
-
},
|
|
78
|
-
options: utils_1.textDecorations.map(function (decoration) { return decoration.key; }),
|
|
79
|
-
},
|
|
80
|
-
textWrap: {
|
|
81
|
-
control: {
|
|
82
|
-
type: "select",
|
|
83
|
-
labels: Object.fromEntries(utils_1.textWraps.map(function (size) { return [size.key, size.label]; })),
|
|
84
|
-
},
|
|
85
|
-
options: utils_1.textWraps.map(function (wrap) { return wrap.key; }),
|
|
86
|
-
},
|
|
87
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import "@testing-library/jest-dom";
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __assign = (this && this.__assign) || function () {
|
|
3
|
-
__assign = Object.assign || function(t) {
|
|
4
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
-
s = arguments[i];
|
|
6
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
-
t[p] = s[p];
|
|
8
|
-
}
|
|
9
|
-
return t;
|
|
10
|
-
};
|
|
11
|
-
return __assign.apply(this, arguments);
|
|
12
|
-
};
|
|
13
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
-
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
15
|
-
var react_1 = require("@testing-library/react");
|
|
16
|
-
require("@testing-library/jest-dom");
|
|
17
|
-
var Typography_1 = require("./Typography");
|
|
18
|
-
describe("Typography Component", function () {
|
|
19
|
-
it("renders the Typography component with the correct classes for all props", function () {
|
|
20
|
-
var props = {
|
|
21
|
-
label: "Sample Text",
|
|
22
|
-
fontSize: "lu-base-font-size",
|
|
23
|
-
fontWeight: "lu-font-weight-thin",
|
|
24
|
-
lineHeight: "lu-line-height-sm",
|
|
25
|
-
textAlign: "lu-text-justify",
|
|
26
|
-
textTransform: "lu-text-lowercase",
|
|
27
|
-
textDecoration: "lu-text-decoration-none",
|
|
28
|
-
textWrap: "lu-text-wrap",
|
|
29
|
-
};
|
|
30
|
-
(0, react_1.render)((0, jsx_runtime_1.jsx)(Typography_1.Typography, __assign({}, props)));
|
|
31
|
-
// Select the element
|
|
32
|
-
var typographyElement = react_1.screen.getByTestId("basic-typography");
|
|
33
|
-
// Assert all classes
|
|
34
|
-
expect(typographyElement).toHaveClass(props.fontSize);
|
|
35
|
-
expect(typographyElement).toHaveClass(props.fontWeight);
|
|
36
|
-
expect(typographyElement).toHaveClass(props.lineHeight);
|
|
37
|
-
expect(typographyElement).toHaveClass(props.textAlign);
|
|
38
|
-
expect(typographyElement).toHaveClass(props.textTransform);
|
|
39
|
-
expect(typographyElement).toHaveClass(props.textDecoration);
|
|
40
|
-
expect(typographyElement).toHaveClass(props.textWrap);
|
|
41
|
-
});
|
|
42
|
-
});
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
interface Header {
|
|
3
|
-
title: string;
|
|
4
|
-
key: string;
|
|
5
|
-
}
|
|
6
|
-
interface TableProps {
|
|
7
|
-
headers: Header[];
|
|
8
|
-
rows: Record<string, string>[];
|
|
9
|
-
tableClassName?: string;
|
|
10
|
-
theadClassName?: string;
|
|
11
|
-
tbodyClassName?: string;
|
|
12
|
-
}
|
|
13
|
-
declare const Table: React.FC<TableProps>;
|
|
14
|
-
export default Table;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
|
-
var utils_1 = require("../../../utils");
|
|
5
|
-
var Table = function (_a) {
|
|
6
|
-
var headers = _a.headers, rows = _a.rows, tableClassName = _a.tableClassName, _b = _a.theadClassName, theadClassName = _b === void 0 ? "bg-primary-100" : _b, _c = _a.tbodyClassName, tbodyClassName = _c === void 0 ? "" : _c;
|
|
7
|
-
return ((0, jsx_runtime_1.jsxs)("table", { className: "lu-width-100 lu-font-size-x-small lu-font-weight-medium ".concat(tableClassName), children: [(0, jsx_runtime_1.jsx)("thead", { className: theadClassName, children: (0, jsx_runtime_1.jsx)("tr", { children: headers.map(function (header) { return ((0, jsx_runtime_1.jsx)("th", { className: utils_1.table_header_className, children: header.title }, header.key)); }) }) }), (0, jsx_runtime_1.jsx)("tbody", { className: tbodyClassName, children: rows.map(function (row, rowIndex) {
|
|
8
|
-
var _a;
|
|
9
|
-
return ((0, jsx_runtime_1.jsx)("tr", { children: headers.map(function (header) { return ((0, jsx_runtime_1.jsx)("td", { className: utils_1.table_row_className, children: (0, jsx_runtime_1.jsx)("span", { className: utils_1.table_data_className, children: row[header.key] !== undefined
|
|
10
|
-
? String(row[header.key])
|
|
11
|
-
: "-" }) }, header.key)); }) }, (_a = row.id) !== null && _a !== void 0 ? _a : rowIndex));
|
|
12
|
-
}) })] }));
|
|
13
|
-
};
|
|
14
|
-
exports.default = Table;
|
package/dist/utils/colors.d.ts
DELETED
package/dist/utils/colors.js
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.colors = void 0;
|
|
4
|
-
exports.colors = {
|
|
5
|
-
default: "var(--black)",
|
|
6
|
-
caption_color: "var(--neutral-500)",
|
|
7
|
-
white: "var( --white)",
|
|
8
|
-
gray: "var(--neutral-0)",
|
|
9
|
-
neutral: "var(--neutral-1000)",
|
|
10
|
-
};
|
package/dist/utils/constants.js
DELETED
package/dist/utils/enums.d.ts
DELETED
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
export declare enum ContentType {
|
|
2
|
-
none = "none",
|
|
3
|
-
text_with_icon = "text with icon",
|
|
4
|
-
icon_only = "icon only"
|
|
5
|
-
}
|
|
6
|
-
export declare const OrientationEnum: {
|
|
7
|
-
horizontal: string;
|
|
8
|
-
vertical: string;
|
|
9
|
-
};
|
|
10
|
-
export declare enum FontSize {
|
|
11
|
-
Base = "lu-base-font-size",
|
|
12
|
-
XSmall = "lu-font-size-x-small",
|
|
13
|
-
Small = "lu-font-size-small",
|
|
14
|
-
Medium = "lu-font-size-medium",
|
|
15
|
-
Large = "lu-font-size-large",
|
|
16
|
-
XLarge = "lu-font-size-x-large",
|
|
17
|
-
TwoXLarge = "lu-font-size-2x-large",
|
|
18
|
-
ThreeXLarge = "lu-font-size-3x-large",
|
|
19
|
-
FourXLarge = "lu-font-size-4x-large",
|
|
20
|
-
FiveXLarge = "lu-font-size-5x-large",
|
|
21
|
-
SixXLarge = "lu-font-size-6x-large",
|
|
22
|
-
SevenXLarge = "lu-font-size-7x-large",
|
|
23
|
-
Huge = "lu-font-size-huge"
|
|
24
|
-
}
|
|
25
|
-
export declare enum FontFamily {
|
|
26
|
-
Base = "lu-font-family-poppins"
|
|
27
|
-
}
|
|
28
|
-
export declare enum FontWeight {
|
|
29
|
-
Thin = "lu-font-weight-thin",
|
|
30
|
-
ExtraLight = "lu-font-weight-extra-light",
|
|
31
|
-
Light = "lu-font-weight-light",
|
|
32
|
-
Regular = "lu-font-weight-regular",
|
|
33
|
-
Medium = "lu-font-weight-medium",
|
|
34
|
-
SemiBold = "lu-font-weight-semibold",
|
|
35
|
-
Bold = "lu-font-weight-bold",
|
|
36
|
-
ExtraBold = "lu-font-weight-extra-bold",
|
|
37
|
-
Black = "lu-font-weight-black"
|
|
38
|
-
}
|
|
39
|
-
export declare enum LineHeights {
|
|
40
|
-
XS = "lu-line-height-xs",
|
|
41
|
-
SM = "lu-line-height-sm",
|
|
42
|
-
BASE = "lu-line-height-base",
|
|
43
|
-
LG = "lu-line-height-lg"
|
|
44
|
-
}
|
|
45
|
-
export declare enum TextColor {
|
|
46
|
-
Base = "lu-text-base",
|
|
47
|
-
Default = "lu-text-default",
|
|
48
|
-
Secondary = "lu-text-secondary",
|
|
49
|
-
Caption = "lu-text-caption",
|
|
50
|
-
Placeholder = "lu-text-placeholder",
|
|
51
|
-
Disabled = "lu-text-disabled",
|
|
52
|
-
Primary = "lu-text-primary",
|
|
53
|
-
Success = "lu-text-success",
|
|
54
|
-
Warning = "lu-text-warning",
|
|
55
|
-
Danger = "lu-text-danger",
|
|
56
|
-
Gray = "lu-text-gray",
|
|
57
|
-
Info = "lu-text-info",
|
|
58
|
-
LinkDefault = "lu-text-link-default",
|
|
59
|
-
LinkPressed = "lu-text-link-pressed"
|
|
60
|
-
}
|
package/dist/utils/enums.js
DELETED
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TextColor = exports.LineHeights = exports.FontWeight = exports.FontFamily = exports.FontSize = exports.OrientationEnum = exports.ContentType = void 0;
|
|
4
|
-
var ContentType;
|
|
5
|
-
(function (ContentType) {
|
|
6
|
-
ContentType["none"] = "none";
|
|
7
|
-
ContentType["text_with_icon"] = "text with icon";
|
|
8
|
-
ContentType["icon_only"] = "icon only";
|
|
9
|
-
})(ContentType || (exports.ContentType = ContentType = {}));
|
|
10
|
-
exports.OrientationEnum = {
|
|
11
|
-
horizontal: "horizontal",
|
|
12
|
-
vertical: "vertical",
|
|
13
|
-
};
|
|
14
|
-
var FontSize;
|
|
15
|
-
(function (FontSize) {
|
|
16
|
-
FontSize["Base"] = "lu-base-font-size";
|
|
17
|
-
FontSize["XSmall"] = "lu-font-size-x-small";
|
|
18
|
-
FontSize["Small"] = "lu-font-size-small";
|
|
19
|
-
FontSize["Medium"] = "lu-font-size-medium";
|
|
20
|
-
FontSize["Large"] = "lu-font-size-large";
|
|
21
|
-
FontSize["XLarge"] = "lu-font-size-x-large";
|
|
22
|
-
FontSize["TwoXLarge"] = "lu-font-size-2x-large";
|
|
23
|
-
FontSize["ThreeXLarge"] = "lu-font-size-3x-large";
|
|
24
|
-
FontSize["FourXLarge"] = "lu-font-size-4x-large";
|
|
25
|
-
FontSize["FiveXLarge"] = "lu-font-size-5x-large";
|
|
26
|
-
FontSize["SixXLarge"] = "lu-font-size-6x-large";
|
|
27
|
-
FontSize["SevenXLarge"] = "lu-font-size-7x-large";
|
|
28
|
-
FontSize["Huge"] = "lu-font-size-huge";
|
|
29
|
-
})(FontSize || (exports.FontSize = FontSize = {}));
|
|
30
|
-
var FontFamily;
|
|
31
|
-
(function (FontFamily) {
|
|
32
|
-
FontFamily["Base"] = "lu-font-family-poppins";
|
|
33
|
-
})(FontFamily || (exports.FontFamily = FontFamily = {}));
|
|
34
|
-
var FontWeight;
|
|
35
|
-
(function (FontWeight) {
|
|
36
|
-
FontWeight["Thin"] = "lu-font-weight-thin";
|
|
37
|
-
FontWeight["ExtraLight"] = "lu-font-weight-extra-light";
|
|
38
|
-
FontWeight["Light"] = "lu-font-weight-light";
|
|
39
|
-
FontWeight["Regular"] = "lu-font-weight-regular";
|
|
40
|
-
FontWeight["Medium"] = "lu-font-weight-medium";
|
|
41
|
-
FontWeight["SemiBold"] = "lu-font-weight-semibold";
|
|
42
|
-
FontWeight["Bold"] = "lu-font-weight-bold";
|
|
43
|
-
FontWeight["ExtraBold"] = "lu-font-weight-extra-bold";
|
|
44
|
-
FontWeight["Black"] = "lu-font-weight-black";
|
|
45
|
-
})(FontWeight || (exports.FontWeight = FontWeight = {}));
|
|
46
|
-
var LineHeights;
|
|
47
|
-
(function (LineHeights) {
|
|
48
|
-
LineHeights["XS"] = "lu-line-height-xs";
|
|
49
|
-
LineHeights["SM"] = "lu-line-height-sm";
|
|
50
|
-
LineHeights["BASE"] = "lu-line-height-base";
|
|
51
|
-
LineHeights["LG"] = "lu-line-height-lg";
|
|
52
|
-
})(LineHeights || (exports.LineHeights = LineHeights = {}));
|
|
53
|
-
var TextColor;
|
|
54
|
-
(function (TextColor) {
|
|
55
|
-
TextColor["Base"] = "lu-text-base";
|
|
56
|
-
TextColor["Default"] = "lu-text-default";
|
|
57
|
-
TextColor["Secondary"] = "lu-text-secondary";
|
|
58
|
-
TextColor["Caption"] = "lu-text-caption";
|
|
59
|
-
TextColor["Placeholder"] = "lu-text-placeholder";
|
|
60
|
-
TextColor["Disabled"] = "lu-text-disabled";
|
|
61
|
-
TextColor["Primary"] = "lu-text-primary";
|
|
62
|
-
TextColor["Success"] = "lu-text-success";
|
|
63
|
-
TextColor["Warning"] = "lu-text-warning";
|
|
64
|
-
TextColor["Danger"] = "lu-text-danger";
|
|
65
|
-
TextColor["Gray"] = "lu-text-gray";
|
|
66
|
-
TextColor["Info"] = "lu-text-info";
|
|
67
|
-
TextColor["LinkDefault"] = "lu-text-link-default";
|
|
68
|
-
TextColor["LinkPressed"] = "lu-text-link-pressed";
|
|
69
|
-
})(TextColor || (exports.TextColor = TextColor = {}));
|