linkedunion-design-kit 1.5.2 → 1.5.4
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/page.js +4 -10
- package/dist/index.d.ts +15 -12
- package/dist/index.js +15 -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/{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/{components → src/components}/Avatar/Avatar.d.ts +1 -1
- package/dist/src/components/Avatar/Avatar.js +12 -0
- package/dist/src/components/Avatar/Avatar.stories.js +43 -0
- package/dist/src/components/Avatar/Avatar.test.js +50 -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/{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.test.js +62 -0
- package/dist/src/components/Button/IconButton.d.ts +3 -0
- package/dist/src/components/Button/IconButton.js +30 -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.test.js +30 -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 +23 -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.stories.d.ts +5 -0
- package/dist/src/components/ColorPicker/ColorPicker.stories.js +24 -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.stories.d.ts +7 -0
- package/dist/src/components/Colors/color.stories.js +32 -0
- package/dist/src/components/Colors/color.test.js +24 -0
- package/dist/src/components/EditorTooltip/EditorTooltip.d.ts +5 -0
- package/dist/src/components/EditorTooltip/EditorTooltip.js +9 -0
- package/dist/src/components/EditorTooltip/EditorTooltip.stories.d.ts +6 -0
- package/dist/src/components/EditorTooltip/EditorTooltip.stories.js +24 -0
- package/dist/{components → src/components}/Icons/IconList.test.js +18 -20
- package/dist/src/components/Icons/IconView.js +8 -0
- package/dist/{components → src/components}/Icons/IconView.stories.js +6 -9
- 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.stories.js +44 -0
- package/dist/src/components/Icons/SingleIcon.test.js +67 -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/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/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.stories.d.ts +6 -0
- package/dist/src/components/Images/LuImage.stories.js +166 -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/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.stories.d.ts +5 -0
- package/dist/src/components/Input/Input.stories.js +46 -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.stories.d.ts +5 -0
- package/dist/src/components/Label/Label.stories.js +36 -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.stories.js +57 -0
- package/dist/src/components/MediaCard/Card.test.js +28 -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.test.d.ts +1 -0
- package/dist/{components → src/components}/MediaCard/ContactProfile/ContactProfile.test.js +17 -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/{components → src/components}/MediaCard/ContactProfile/ContactProfileTheme1.test.js +15 -38
- package/dist/{components → src/components}/MediaCard/ContactProfile/ContactProfileTheme2.d.ts +1 -1
- package/dist/src/components/MediaCard/ContactProfile/ContactProfileTheme2.js +8 -0
- package/dist/{components → src/components}/MediaCard/ContactProfile/ContactProfileTheme2.test.js +15 -38
- 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.test.d.ts +1 -0
- package/dist/{components → src/components}/MediaCard/PostByCategory/PostByCategory.test.js +18 -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/{components → src/components}/MediaCard/PostByCategory/PostByCategoryTheme1.test.js +15 -38
- package/dist/{components → src/components}/MediaCard/PostByCategory/PostByCategoryTheme2.d.ts +1 -1
- package/dist/src/components/MediaCard/PostByCategory/PostByCategoryTheme2.js +8 -0
- package/dist/{components → src/components}/MediaCard/PostByCategory/PostByCategoryTheme2.test.js +16 -39
- 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/{components/Spacing/Padding/PaddingToken.stories.d.ts → src/components/Switch/Switch.stories.d.ts} +1 -1
- package/dist/src/components/Switch/Switch.stories.js +78 -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.module.css +43 -0
- package/dist/{components → src/components}/Title/Title.stories.js +9 -15
- 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/Typography/Typography.d.ts +3 -0
- package/dist/src/components/Typography/Typography.js +29 -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/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/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/label.d.ts +12 -0
- package/dist/src/components/ui/label.js +41 -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/tooltip.d.ts +7 -0
- package/dist/src/components/ui/tooltip.js +42 -0
- package/dist/src/components/ui/typography.d.ts +26 -0
- package/dist/src/components/ui/typography.js +65 -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 +6 -4
- package/dist/src/utils/index.d.ts +18 -0
- package/dist/src/utils/index.js +20 -0
- package/dist/styles/global.css +2739 -4141
- 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.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 → src/components}/Avatar/Avatar.stories.d.ts +0 -0
- /package/dist/{components → src/components}/Avatar/Avatar.test.d.ts +0 -0
- /package/dist/{components/Border/BorderRadius/BorderRadius.test.d.ts → src/components/Avatar/type.js} +0 -0
- /package/dist/{components/Border/BorderWidth/BorderWidth.test.d.ts → src/components/Button/Button.test.d.ts} +0 -0
- /package/dist/{components/Color/BackgroundColor/BackgroundColor.test.d.ts → src/components/Button/IconButton.test.d.ts} +0 -0
- /package/dist/{components/Icons/IconList.test.d.ts → src/components/Button/type.js} +0 -0
- /package/dist/{components/Icons/SingleIcon.test.d.ts → src/components/ColorPicker/type.js} +0 -0
- /package/dist/{components/MediaCard/ContactProfile/ContactProfile.test.d.ts → src/components/Colors/color.test.d.ts} +0 -0
- /package/dist/{components/MediaCard/PostByCategory/PostByCategory.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/Spacing/Margin/MarginToken.test.d.ts → src/components/Icons/SingleIcon.test.d.ts} +0 -0
- /package/dist/{components/Spacing/Padding/PaddingToken.test.d.ts → src/components/Icons/type.js} +0 -0
- /package/dist/{components/Title/Title.test.d.ts → src/components/ImageUploader/type.js} +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
package/dist/utils/index.js
DELETED
|
@@ -1,1597 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.customAspectRatio = exports.customBorderRadius = exports.customBorderWidth = exports.customOpacity = exports.customButtonIconSize = exports.customIconSize = exports.customLogoSize = exports.customMinHeight = exports.customMinWidth = exports.customHeight = exports.customWidth = exports.customSize = exports.customTextWrap = exports.customTextDecoration = exports.customTextTransform = exports.customTextAlignment = exports.customLineHeight = exports.customFontWeight = exports.customFontSize = exports.sectionTypeList = exports.avatarBackgroundSize = exports.headingsList = exports.avatarShapeList = exports.textColorList = exports.avatarSizesList = exports.landscapeAspectRatioList = exports.portraitAspectRatioList = exports.buttonWithIconList = exports.buttonSizeList = exports.buttonColorsList = exports.iconColorList = exports.buttonIconSizeList = exports.iconSizeList = exports.borderWidthList = exports.borderRadiusList = exports.spacings = exports.minHeights = exports.minWidths = exports.heights = exports.widths = exports.sizes = exports.textWraps = exports.textDecorations = exports.textTransform = exports.textAlignment = exports.lineHeights = exports.fontWeights = exports.fontSizes = exports.defaultCardProps = exports.text = void 0;
|
|
4
|
-
exports.table_row_className = exports.table_sub_heading_className = exports.table_header_className = exports.table_data_className = exports.customHeadings = exports.customizeTextColors = exports.customizeAvatarShape = exports.customAvatarSize = exports.customIconButtonSize = exports.customButtonSize = exports.customButtonOutlineColors = exports.customButtonColors = exports.customIconColors = exports.customBoxShadow = void 0;
|
|
5
|
-
exports.generateUtilities = generateUtilities;
|
|
6
|
-
var index_1 = require("../components/MediaCard/index");
|
|
7
|
-
var enums_1 = require("./enums");
|
|
8
|
-
//************Used for typography and color utilities Storybook************
|
|
9
|
-
exports.text = "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popular in the 1960s with the release of Let set sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Ald PageMaker including versions of Lorem Ipsum.";
|
|
10
|
-
exports.defaultCardProps = {
|
|
11
|
-
type: index_1.SectionTypeEnum.postByCategoriesTheme,
|
|
12
|
-
image: "/images/demo-image.jpg",
|
|
13
|
-
layout: enums_1.OrientationEnum.horizontal,
|
|
14
|
-
heading: "Heading Text",
|
|
15
|
-
body: "The quick brown fox jumps over the lazy dog.",
|
|
16
|
-
className: "",
|
|
17
|
-
btnLabel: "View More",
|
|
18
|
-
href: "https://www.google.com/",
|
|
19
|
-
card_title_color: "lu-text-default",
|
|
20
|
-
id: 1,
|
|
21
|
-
};
|
|
22
|
-
exports.fontSizes = [
|
|
23
|
-
{ key: "lu-base-font-size", label: "lu-base-font-size: 16px" },
|
|
24
|
-
{ key: "lu-font-size-x-small", label: "lu-font-size-x-small: 12px" },
|
|
25
|
-
{ key: "lu-font-size-small", label: "lu-font-size-small: 14px" },
|
|
26
|
-
{ key: "lu-font-size-medium", label: "lu-font-size-medium: 16px" },
|
|
27
|
-
{ key: "lu-font-size-large", label: "lu-font-size-large: 18px" },
|
|
28
|
-
{ key: "lu-font-size-x-large", label: "lu-font-size-x-large: 20px" },
|
|
29
|
-
{ key: "lu-font-size-2x-large", label: "lu-font-size-2x-large: 24px" },
|
|
30
|
-
{ key: "lu-font-size-3x-large", label: "lu-font-size-3x-large: 28px" },
|
|
31
|
-
{ key: "lu-font-size-4x-large", label: "lu-font-size-4x-large: 32px" },
|
|
32
|
-
{ key: "lu-font-size-5x-large", label: "lu-font-size-5x-large: 36px" },
|
|
33
|
-
{ key: "lu-font-size-6x-large", label: "lu-font-size-6x-large: 40px" },
|
|
34
|
-
{ key: "lu-font-size-7x-large", label: "lu-font-size-7x-large: 48px" },
|
|
35
|
-
{ key: "lu-font-size-huge", label: "lu-font-size-huge: 64px" },
|
|
36
|
-
];
|
|
37
|
-
exports.fontWeights = [
|
|
38
|
-
{ key: "lu-font-weight-thin", label: "lu-font-weight-thin: 100" },
|
|
39
|
-
{
|
|
40
|
-
key: "lu-font-weight-extra-light",
|
|
41
|
-
label: "lu-font-weight-extra-light: 200",
|
|
42
|
-
},
|
|
43
|
-
{ key: "lu-font-weight-light", label: "lu-font-weight-light: 300" },
|
|
44
|
-
{ key: "lu-font-weight-regular", label: "lu-font-weight-regular: 400" },
|
|
45
|
-
{ key: "lu-font-weight-medium", label: "lu-font-weight-medium: 500" },
|
|
46
|
-
{ key: "lu-font-weight-semibold", label: "lu-font-weight-semibold: 600" },
|
|
47
|
-
{ key: "lu-font-weight-bold", label: "lu-font-weight-bold: 700" },
|
|
48
|
-
{ key: "lu-font-weight-extra-bold", label: "lu-font-weight-extra-bold: 800" },
|
|
49
|
-
{ key: "lu-font-weight-black", label: "lu-font-weight-black: 900" },
|
|
50
|
-
];
|
|
51
|
-
exports.lineHeights = [
|
|
52
|
-
{ key: "lu-line-height-xs", label: "lu-line-height-xs: 1" },
|
|
53
|
-
{ key: "lu-line-height-sm", label: "lu-line-height-sm: 1.25" },
|
|
54
|
-
{ key: "lu-line-height-base", label: "lu-line-height-base: 1.5" },
|
|
55
|
-
{ key: "lu-line-height-lg", label: "lu-line-height-lg: 2" },
|
|
56
|
-
];
|
|
57
|
-
exports.textAlignment = [
|
|
58
|
-
{ key: "lu-text-left", label: "lu-text-left: left" },
|
|
59
|
-
{ key: "lu-text-center", label: "lu-text-center: center" },
|
|
60
|
-
{ key: "lu-text-right", label: "lu-text-right: right" },
|
|
61
|
-
{ key: "lu-text-justify", label: "lu-text-justify: justify" },
|
|
62
|
-
{
|
|
63
|
-
key: "lu-text-space-between",
|
|
64
|
-
label: "lu-text-space-between: space-between",
|
|
65
|
-
},
|
|
66
|
-
];
|
|
67
|
-
exports.textTransform = [
|
|
68
|
-
{ key: "lu-text-lowercase", label: "lu-text-lowercase: lowercase" },
|
|
69
|
-
{ key: "lu-text-uppercase", label: "lu-text-uppercase: uppercase" },
|
|
70
|
-
{ key: "lu-text-capitalize", label: "lu-text-capitalize: capitalize" },
|
|
71
|
-
];
|
|
72
|
-
exports.textDecorations = [
|
|
73
|
-
{ key: "lu-text-decoration-none", label: "lu-text-decoration-none: none" },
|
|
74
|
-
{
|
|
75
|
-
key: "lu-text-decoration-underline",
|
|
76
|
-
label: "lu-text-decoration-underline: underline",
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
key: "lu-text-decoration-line-through",
|
|
80
|
-
label: "lu-text-decoration-line-through: line-through",
|
|
81
|
-
},
|
|
82
|
-
];
|
|
83
|
-
exports.textWraps = [
|
|
84
|
-
{ key: "lu-text-wrap", label: "lu-text-wrap: normal" },
|
|
85
|
-
{ key: "lu-text-nowrap", label: "lu-text-nowrap: nowrap" },
|
|
86
|
-
];
|
|
87
|
-
exports.sizes = [
|
|
88
|
-
{ key: "lu-size-050", label: "lu-size-050: 4px" },
|
|
89
|
-
{ key: "lu-size-100", label: "lu-size-100: 8px" },
|
|
90
|
-
{ key: "lu-size-200", label: "lu-size-200: 16px" },
|
|
91
|
-
{ key: "lu-size-300", label: "lu-size-300: 24px" },
|
|
92
|
-
{ key: "lu-size-400", label: "lu-size-400: 32px" },
|
|
93
|
-
{ key: "lu-size-500", label: "lu-size-500: 40px" },
|
|
94
|
-
{ key: "lu-size-600", label: "lu-size-600: 48px" },
|
|
95
|
-
{ key: "lu-size-800", label: "lu-size-800: 64px" },
|
|
96
|
-
{ key: "lu-size-1000", label: "lu-size-1000: 80px" },
|
|
97
|
-
{ key: "lu-size-1500", label: "lu-size-1500: 120px" },
|
|
98
|
-
{ key: "lu-size-2000", label: "lu-size-2000: 160px" },
|
|
99
|
-
{ key: "lu-size-2500", label: "lu-size-2500: 200px" },
|
|
100
|
-
];
|
|
101
|
-
exports.widths = [
|
|
102
|
-
{ key: "lu-width-5", label: "lu-width-5: 5%" },
|
|
103
|
-
{ key: "lu-width-10", label: "lu-width-10: 10%" },
|
|
104
|
-
{ key: "lu-width-25", label: "lu-width-25: 25%" },
|
|
105
|
-
{ key: "lu-width-50", label: "lu-width-50: 50%" },
|
|
106
|
-
{ key: "lu-width-75", label: "lu-width-75: 75%" },
|
|
107
|
-
{ key: "lu-width-100", label: "lu-width-100: 100%" },
|
|
108
|
-
];
|
|
109
|
-
exports.heights = [
|
|
110
|
-
{ key: "lu-height-5", label: "lu-height-5: 5%" },
|
|
111
|
-
{ key: "lu-height-10", label: "lu-height-10: 10%" },
|
|
112
|
-
{ key: "lu-height-25", label: "lu-height-25: 25%" },
|
|
113
|
-
{ key: "lu-height-50", label: "lu-height-50: 50%" },
|
|
114
|
-
{ key: "lu-height-75", label: "lu-height-75: 75%" },
|
|
115
|
-
{ key: "lu-height-100", label: "lu-height-100: 100%" },
|
|
116
|
-
];
|
|
117
|
-
exports.minWidths = [
|
|
118
|
-
{ key: "lu-min-width-100", label: "lu-min-width-100: 8px" },
|
|
119
|
-
{ key: "lu-min-width-200", label: "lu-min-width-200: 16px" },
|
|
120
|
-
{ key: "lu-min-width-300", label: "lu-min-width-300: 24px" },
|
|
121
|
-
{ key: "lu-min-width-400", label: "lu-min-width-400: 32px" },
|
|
122
|
-
{ key: "lu-min-width-500", label: "lu-min-width-500: 40px" },
|
|
123
|
-
{ key: "lu-min-width-600", label: "lu-min-width-600: 48px" },
|
|
124
|
-
{ key: "lu-min-width-800", label: "lu-min-width-800: 64px" },
|
|
125
|
-
{ key: "lu-min-width-1000", label: "lu-min-width-1000: 80px" },
|
|
126
|
-
{ key: "lu-min-width-1500", label: "lu-min-width-1500: 120px" },
|
|
127
|
-
{ key: "lu-min-width-2000", label: "lu-min-width-2000: 160px" },
|
|
128
|
-
{ key: "lu-min-width-2500", label: "lu-min-width-2500: 200px" },
|
|
129
|
-
{ key: "lu-min-width-3000", label: "lu-min-width-3000: 240px" },
|
|
130
|
-
];
|
|
131
|
-
exports.minHeights = [
|
|
132
|
-
{ key: "lu-min-height-100", label: "lu-min-height-100: 8px" },
|
|
133
|
-
{ key: "lu-min-height-200", label: "lu-min-height-200: 16px" },
|
|
134
|
-
{ key: "lu-min-height-300", label: "lu-min-height-300: 24px" },
|
|
135
|
-
{ key: "lu-min-height-400", label: "lu-min-height-400: 32px" },
|
|
136
|
-
{ key: "lu-min-height-500", label: "lu-min-height-500: 40px" },
|
|
137
|
-
{ key: "lu-min-height-600", label: "lu-min-height-600: 48px" },
|
|
138
|
-
{ key: "lu-min-height-800", label: "lu-min-height-800: 64px" },
|
|
139
|
-
{ key: "lu-min-height-1000", label: "lu-min-height-1000: 80px" },
|
|
140
|
-
{ key: "lu-min-height-1500", label: "lu-min-height-1500: 120px" },
|
|
141
|
-
{ key: "lu-min-height-2000", label: "lu-min-height-2000: 160px" },
|
|
142
|
-
{ key: "lu-min-height-2500", label: "lu-min-height-2500: 200px" },
|
|
143
|
-
{ key: "lu-min-height-3000", label: "lu-min-height-3000: 240px" },
|
|
144
|
-
];
|
|
145
|
-
exports.spacings = [
|
|
146
|
-
{ key: "lu-space-0", label: "lu-space-0: 0px" },
|
|
147
|
-
{ key: "lu-space-050", label: "lu-space-050: 4px" },
|
|
148
|
-
{ key: "lu-space-100", label: "lu-space-100: 8px" },
|
|
149
|
-
{ key: "lu-space-150", label: "lu-space-150: 12px" },
|
|
150
|
-
{ key: "lu-space-200", label: "lu-space-200: 16px" },
|
|
151
|
-
{ key: "lu-space-250", label: "lu-space-250: 20px" },
|
|
152
|
-
{ key: "lu-space-300", label: "lu-space-300: 24px" },
|
|
153
|
-
{ key: "lu-space-400", label: "lu-space-400: 32px" },
|
|
154
|
-
{ key: "lu-space-500", label: "lu-space-500: 40px" },
|
|
155
|
-
{ key: "lu-space-600", label: "lu-space-600: 48px" },
|
|
156
|
-
{ key: "lu-space-800", label: "lu-space-800: 64px" },
|
|
157
|
-
{ key: "lu-space-1000", label: "lu-space-1000: 80px" },
|
|
158
|
-
{ key: "lu-space-1500", label: "lu-space-1500: 120px" },
|
|
159
|
-
{ key: "lu-space-2000", label: "lu-space-2000: 160px" },
|
|
160
|
-
{ key: "lu-space-2500", label: "lu-space-2500: 200px" },
|
|
161
|
-
{ key: "lu-space-3000", label: "lu-space-3000: 240px" },
|
|
162
|
-
];
|
|
163
|
-
exports.borderRadiusList = [
|
|
164
|
-
{ key: "lu-border-rounded-none", label: "lu-border-rounded-none: 0px" },
|
|
165
|
-
{ key: "lu-border-rounded-xs", label: "lu-border-rounded-xs: 2px" },
|
|
166
|
-
{ key: "lu-border-rounded-sm", label: "lu-border-rounded-sm: 4px" },
|
|
167
|
-
{ key: "lu-border-rounded-md", label: "lu-border-rounded-md: 6px" },
|
|
168
|
-
{ key: "lu-border-rounded-lg", label: "lu-border-rounded-lg: 8px" },
|
|
169
|
-
{ key: "lu-border-rounded-xl", label: "lu-border-rounded-xl: 12px" },
|
|
170
|
-
{ key: "lu-border-rounded-2xl", label: "lu-border-rounded-2xl: 16px" },
|
|
171
|
-
{ key: "lu-border-rounded-3xl", label: "lu-border-rounded-3xl: 24px" },
|
|
172
|
-
{ key: "lu-border-rounded-full", label: "lu-border-rounded-full: 9999px" },
|
|
173
|
-
];
|
|
174
|
-
exports.borderWidthList = [
|
|
175
|
-
{ key: "lu-border-width-125", label: "lu-border-width-125: 1px" },
|
|
176
|
-
{ key: "lu-border-width-025", label: "lu-border-width-025: 2px" },
|
|
177
|
-
{ key: "lu-border-width-050", label: "lu-border-width-050: 4px" },
|
|
178
|
-
{ key: "lu-border-width-100", label: "lu-border-width-100: 8px" },
|
|
179
|
-
];
|
|
180
|
-
exports.iconSizeList = [
|
|
181
|
-
{ key: "lu-icon-xx-small", label: "lu-icon-xx-small: 8px" },
|
|
182
|
-
{ key: "lu-icon-x-small", label: "lu-icon-x-small: 12px" },
|
|
183
|
-
{ key: "lu-icon-small", label: "lu-icon-small: 14px" },
|
|
184
|
-
{ key: "lu-icon-medium", label: "lu-icon-medium: 16px" },
|
|
185
|
-
{ key: "lu-icon-large", label: "lu-icon-large: 18px" },
|
|
186
|
-
{ key: "lu-icon-x-large", label: "lu-icon-x-large: 20px" },
|
|
187
|
-
{ key: "lu-icon-2x-large", label: "lu-icon-2x-large: 24px" },
|
|
188
|
-
{ key: "lu-icon-3x-large", label: "lu-icon-3x-large: 28px" },
|
|
189
|
-
{ key: "lu-icon-4x-large", label: "lu-icon-4x-large: 32px" },
|
|
190
|
-
{ key: "lu-icon-5x-large", label: "lu-icon-5x-large: 36px" },
|
|
191
|
-
{ key: "lu-icon-6x-large", label: "lu-icon-6x-large: 40px" },
|
|
192
|
-
{ key: "lu-icon-7x-large", label: "lu-icon-7x-large: 48px" },
|
|
193
|
-
{ key: "lu-icon-huge", label: "lu-icon-huge: 64px" },
|
|
194
|
-
{ key: "lu-icon-massive", label: "lu-icon-massive: 80px" },
|
|
195
|
-
];
|
|
196
|
-
exports.buttonIconSizeList = [
|
|
197
|
-
{ key: "lu-icon-xx-small", label: "lu-icon-xx-small: 8px" },
|
|
198
|
-
{ key: "lu-icon-x-small", label: "lu-icon-x-small: 12px" },
|
|
199
|
-
{ key: "lu-icon-small", label: "lu-icon-small: 14px" },
|
|
200
|
-
{ key: "lu-icon-medium", label: "lu-icon-medium: 16px" },
|
|
201
|
-
{ key: "lu-icon-large", label: "lu-icon-large: 18px" },
|
|
202
|
-
{ key: "lu-icon-x-large", label: "lu-icon-x-large: 20px" },
|
|
203
|
-
];
|
|
204
|
-
exports.iconColorList = [
|
|
205
|
-
{ key: "lu-disabled-icon-light", label: "lu-disabled-icon-light: #D2D3D5" },
|
|
206
|
-
{ key: "lu-disabled-icon-dark", label: "lu-disabled-icon-dark: #9DA1A5" },
|
|
207
|
-
{ key: "lu-primary-icon-default", label: "lu-primary-icon-default: #276AB3" },
|
|
208
|
-
{ key: "lu-primary-icon-midtone", label: "lu-primary-icon-midtone: #E2EDF9" },
|
|
209
|
-
{ key: "lu-primary-icon-light", label: "lu-primary-icon-light: #FBFCFE" },
|
|
210
|
-
{ key: "lu-success-icon-default", label: "lu-success-icon-default: #198653" },
|
|
211
|
-
{ key: "lu-success-icon-midtone", label: "lu-success-icon-midtone: #D1E7DD" },
|
|
212
|
-
{ key: "lu-success-icon-light", label: "lu-success-icon-light: #FCFDFC" },
|
|
213
|
-
{ key: "lu-warning-icon-default", label: "lu-warning-icon-default: #FFD333" },
|
|
214
|
-
{ key: "lu-warning-icon-midtone", label: "lu-warning-icon-midtone: #FFF4CC" },
|
|
215
|
-
{ key: "lu-warning-icon-dark", label: "lu-warning-icon-dark: #473800" },
|
|
216
|
-
{ key: "lu-danger-icon-default", label: "lu-danger-icon-default: #E0061B" },
|
|
217
|
-
{ key: "lu-danger-icon-midtone", label: "lu-danger-icon-midtone: #FFF0F1" },
|
|
218
|
-
{ key: "lu-danger-icon-light", label: "lu-danger-icon-light: #FFFAFA" },
|
|
219
|
-
{ key: "lu-info-icon-default", label: "lu-info-icon-default: #6249DE" },
|
|
220
|
-
{ key: "lu-info-icon-midtone", label: "lu-info-icon-midtone: #ECE9FB" },
|
|
221
|
-
{ key: "lu-info-icon-light", label: "lu-info-icon-light: #FBFBFE" },
|
|
222
|
-
{ key: "lu-neutral-icon-light", label: "lu-neutral-icon-light: #FAFAFA" },
|
|
223
|
-
{ key: "lu-neutral-icon-dark", label: "lu-neutral-icon-dark: #070808" },
|
|
224
|
-
];
|
|
225
|
-
exports.buttonColorsList = [
|
|
226
|
-
{ key: "lu-btn-primary", label: "lu-btn-primary" },
|
|
227
|
-
{ key: "lu-btn-primary-light", label: "lu-btn-primary-light" },
|
|
228
|
-
{ key: "lu-btn-success", label: "lu-btn-success" },
|
|
229
|
-
{ key: "lu-btn-success-light", label: "lu-btn-success-light" },
|
|
230
|
-
{ key: "lu-btn-warning", label: "lu-btn-warning" },
|
|
231
|
-
{ key: "lu-btn-warning-light", label: "lu-btn-warning-light" },
|
|
232
|
-
{ key: "lu-btn-danger", label: "lu-btn-danger" },
|
|
233
|
-
{ key: "lu-btn-danger-light", label: "lu-btn-danger-light" },
|
|
234
|
-
{ key: "lu-btn-info", label: "lu-btn-info" },
|
|
235
|
-
{ key: "lu-btn-info-light", label: "lu-btn-info-light" },
|
|
236
|
-
{ key: "lu-btn-gray", label: "lu-btn-gray" },
|
|
237
|
-
{ key: "lu-btn-gray-light", label: "lu-btn-gray-light" },
|
|
238
|
-
{ key: "lu-btn-disabled", label: "lu-btn-disabled" },
|
|
239
|
-
];
|
|
240
|
-
exports.buttonSizeList = [
|
|
241
|
-
{ key: "lu-btn-sm", label: "lu-btn-sm" },
|
|
242
|
-
{ key: "lu-btn-md", label: "lu-btn-md" },
|
|
243
|
-
{ key: "lu-btn-lg", label: "lu-btn-lg" },
|
|
244
|
-
{ key: "lu-btn-xl", label: "lu-btn-xl" },
|
|
245
|
-
];
|
|
246
|
-
exports.buttonWithIconList = [
|
|
247
|
-
{ key: "lu-btn-sm", label: "lu-btn-sm" },
|
|
248
|
-
{ key: "lu-btn-md", label: "lu-btn-md" },
|
|
249
|
-
{ key: "lu-btn-lg", label: "lu-btn-lg" },
|
|
250
|
-
{ key: "lu-btn-xl", label: "lu-btn-xl" },
|
|
251
|
-
];
|
|
252
|
-
exports.portraitAspectRatioList = [
|
|
253
|
-
{ key: "lu-aspect-square", label: "lu-aspect-square: 1/1" },
|
|
254
|
-
{ key: "lu-aspect-1-2-por", label: "lu-aspect-1-2-por: 1/2" },
|
|
255
|
-
{ key: "lu-aspect-2-3-por", label: "lu-aspect-2-3-por: 2/3" },
|
|
256
|
-
{ key: "lu-aspect-3-4-por", label: "lu-aspect-3-4-por: 3/4" },
|
|
257
|
-
{ key: "lu-aspect-4-5-por", label: "lu-aspect-4-5-por: 4/5" },
|
|
258
|
-
{ key: "lu-aspect-5-7-por", label: "lu-aspect-5-7-por: 5/7" },
|
|
259
|
-
{ key: "lu-aspect-9-16-por", label: "lu-aspect-9-16-por: 9/16" },
|
|
260
|
-
{ key: "lu-aspect-9-21-por", label: "lu-aspect-9-21-por: 9/21" },
|
|
261
|
-
];
|
|
262
|
-
exports.landscapeAspectRatioList = [
|
|
263
|
-
{ key: "lu-aspect-square", label: "lu-aspect-square: 1/1" },
|
|
264
|
-
{ key: "lu-aspect-2-1-landsc", label: "lu-aspect-2-1-landsc: 2/1" },
|
|
265
|
-
{ key: "lu-aspect-3-2-landsc", label: "lu-aspect-3-2-landsc: 3/2" },
|
|
266
|
-
{ key: "lu-aspect-4-3-landsc", label: "lu-aspect-4-3-landsc: 4/3" },
|
|
267
|
-
{ key: "lu-aspect-5-4-landsc", label: "lu-aspect-5-4-landsc: 5/4" },
|
|
268
|
-
{ key: "lu-aspect-7-5-landsc", label: "lu-aspect-7-5-landsc: 7/5" },
|
|
269
|
-
{ key: "lu-aspect-16-9-landsc", label: "lu-aspect-16-9-landsc: 16/9" },
|
|
270
|
-
{ key: "lu-aspect-21-9-landscape", label: "lu-aspect-21-9-landscape: 21/9" },
|
|
271
|
-
];
|
|
272
|
-
exports.avatarSizesList = [
|
|
273
|
-
{ key: "lu-avatar-massive", label: "lu-avatar-massive" },
|
|
274
|
-
{ key: "lu-avatar-huge", label: "lu-avatar-huge" },
|
|
275
|
-
{ key: "lu-avatar-7x-large", label: "lu-avatar-7x-large" },
|
|
276
|
-
{ key: "lu-avatar-6x-large", label: "lu-avatar-6x-large" },
|
|
277
|
-
{ key: "lu-avatar-5x-large", label: "lu-avatar-5x-large" },
|
|
278
|
-
{ key: "lu-avatar-4x-large", label: "lu-avatar-4x-large" },
|
|
279
|
-
{ key: "lu-avatar-3x-large", label: "lu-avatar-3x-large" },
|
|
280
|
-
{ key: "lu-avatar-2x-large", label: "lu-avatar-2x-large" },
|
|
281
|
-
{ key: "lu-avatar-x-large", label: "lu-avatar-x-large" },
|
|
282
|
-
{ key: "lu-avatar-large", label: "lu-avatar-large" },
|
|
283
|
-
{ key: "lu-avatar-medium", label: "lu-avatar-medium" },
|
|
284
|
-
{ key: "lu-avatar-small", label: "lu-avatar-small" },
|
|
285
|
-
];
|
|
286
|
-
exports.textColorList = [
|
|
287
|
-
{ key: "lu-text-base", label: "lu-text-base" },
|
|
288
|
-
{ key: "lu-text-default", label: "lu-text-default" },
|
|
289
|
-
{ key: "lu-text-secondary", label: "lu-text-secondary" },
|
|
290
|
-
{ key: "lu-text-caption", label: "lu-text-caption" },
|
|
291
|
-
{ key: "lu-text-placeholder", label: "lu-text-placeholder" },
|
|
292
|
-
{ key: "lu-text-disabled", label: "lu-text-disabled" },
|
|
293
|
-
{ key: "lu-text-primary", label: "lu-text-primary" },
|
|
294
|
-
{ key: "lu-text-success", label: "lu-text-success" },
|
|
295
|
-
{ key: "lu-text-warning", label: "lu-text-warning" },
|
|
296
|
-
{ key: "lu-text-danger", label: "lu-text-danger" },
|
|
297
|
-
{ key: "lu-text-gray", label: "lu-text-gray" },
|
|
298
|
-
{ key: "lu-text-info", label: "lu-text-info" },
|
|
299
|
-
{ key: "lu-text-link-default", label: "lu-text-link-default" },
|
|
300
|
-
{ key: "lu-text-link-pressed", label: "lu-text-link-pressed" },
|
|
301
|
-
];
|
|
302
|
-
exports.avatarShapeList = [
|
|
303
|
-
{ key: "square", label: "square" },
|
|
304
|
-
{ key: "circle", label: "circle" },
|
|
305
|
-
];
|
|
306
|
-
exports.headingsList = [
|
|
307
|
-
{ key: "lu-heading-h1", label: "lu-heading-h1" },
|
|
308
|
-
{ key: "lu-heading-h2", label: "lu-heading-h2" },
|
|
309
|
-
{ key: "lu-heading-h3", label: "lu-heading-h3" },
|
|
310
|
-
{ key: "lu-heading-h4", label: "lu-heading-h4" },
|
|
311
|
-
{ key: "lu-heading-h5", label: "lu-heading-h5" },
|
|
312
|
-
{ key: "lu-heading-h6", label: "lu-heading-h6" },
|
|
313
|
-
];
|
|
314
|
-
var avatarBackgroundSize = function (size) {
|
|
315
|
-
if (size === "lu-avatar-massive") {
|
|
316
|
-
return {
|
|
317
|
-
width: "200px",
|
|
318
|
-
height: "200px",
|
|
319
|
-
};
|
|
320
|
-
}
|
|
321
|
-
else if (size === "lu-avatar-huge") {
|
|
322
|
-
return {
|
|
323
|
-
width: "160px",
|
|
324
|
-
height: "160px",
|
|
325
|
-
};
|
|
326
|
-
}
|
|
327
|
-
else if (size === "lu-avatar-7x-large") {
|
|
328
|
-
return {
|
|
329
|
-
width: "144px",
|
|
330
|
-
height: "144px",
|
|
331
|
-
};
|
|
332
|
-
}
|
|
333
|
-
else if (size === "lu-avatar-6x-large") {
|
|
334
|
-
return {
|
|
335
|
-
width: "128px",
|
|
336
|
-
height: "128px",
|
|
337
|
-
};
|
|
338
|
-
}
|
|
339
|
-
else if (size === "lu-avatar-5x-large") {
|
|
340
|
-
return {
|
|
341
|
-
width: "116px",
|
|
342
|
-
height: "116px",
|
|
343
|
-
};
|
|
344
|
-
}
|
|
345
|
-
else if (size === "lu-avatar-4x-large") {
|
|
346
|
-
return {
|
|
347
|
-
width: "96px",
|
|
348
|
-
height: "96px",
|
|
349
|
-
};
|
|
350
|
-
}
|
|
351
|
-
else if (size === "lu-avatar-3x-large") {
|
|
352
|
-
return {
|
|
353
|
-
width: "76px",
|
|
354
|
-
height: "76px",
|
|
355
|
-
};
|
|
356
|
-
}
|
|
357
|
-
else if (size === "lu-avatar-2x-large") {
|
|
358
|
-
return {
|
|
359
|
-
width: "64px",
|
|
360
|
-
height: "64px",
|
|
361
|
-
};
|
|
362
|
-
}
|
|
363
|
-
else if (size === "lu-avatar-x-large") {
|
|
364
|
-
return {
|
|
365
|
-
width: "52px",
|
|
366
|
-
height: "52px",
|
|
367
|
-
};
|
|
368
|
-
}
|
|
369
|
-
else if (size === "lu-avatar-large") {
|
|
370
|
-
return {
|
|
371
|
-
width: "42px",
|
|
372
|
-
height: "42px",
|
|
373
|
-
};
|
|
374
|
-
}
|
|
375
|
-
else if (size === "lu-avatar-medium") {
|
|
376
|
-
return {
|
|
377
|
-
width: "32px",
|
|
378
|
-
height: "32px",
|
|
379
|
-
};
|
|
380
|
-
}
|
|
381
|
-
else if (size === "lu-avatar-small") {
|
|
382
|
-
return {
|
|
383
|
-
width: "30px",
|
|
384
|
-
height: "30px",
|
|
385
|
-
};
|
|
386
|
-
}
|
|
387
|
-
};
|
|
388
|
-
exports.avatarBackgroundSize = avatarBackgroundSize;
|
|
389
|
-
exports.sectionTypeList = Object.values(index_1.SectionTypeEnum).map(function (type) { return ({
|
|
390
|
-
key: type,
|
|
391
|
-
label: type,
|
|
392
|
-
}); });
|
|
393
|
-
//Plugin for generating utilities (Used in tailwind.config.js)
|
|
394
|
-
function generateUtilities(property, theme) {
|
|
395
|
-
var utilities = theme(property);
|
|
396
|
-
var newUtilities = Object.keys(utilities).reduce(function (acc, key) {
|
|
397
|
-
var _a;
|
|
398
|
-
acc[".".concat(key)] = (_a = {}, _a[property] = utilities[key], _a);
|
|
399
|
-
return acc;
|
|
400
|
-
}, {});
|
|
401
|
-
return newUtilities;
|
|
402
|
-
}
|
|
403
|
-
//************Used for tailwind configuration************
|
|
404
|
-
exports.customFontSize = {
|
|
405
|
-
"lu-base-font-size": "var(--core-200)",
|
|
406
|
-
"lu-font-size-x-small": "var(--core-150)",
|
|
407
|
-
"lu-font-size-small": "var(--core-175)",
|
|
408
|
-
"lu-font-size-medium": "var(--core-200)",
|
|
409
|
-
"lu-font-size-large": "var(--core-225)",
|
|
410
|
-
"lu-font-size-x-large": "var(--core-250)",
|
|
411
|
-
"lu-font-size-2x-large": "var(--core-300)",
|
|
412
|
-
"lu-font-size-3x-large": "var(--core-350)",
|
|
413
|
-
"lu-font-size-4x-large": "var(--core-400)",
|
|
414
|
-
"lu-font-size-5x-large": "var(--core-450)",
|
|
415
|
-
"lu-font-size-6x-large": "var(--core-500)",
|
|
416
|
-
"lu-font-size-7x-large": "var(--core-600)",
|
|
417
|
-
"lu-font-size-huge": "var(--core-800)",
|
|
418
|
-
};
|
|
419
|
-
exports.customFontWeight = {
|
|
420
|
-
"lu-font-weight-thin": "100",
|
|
421
|
-
"lu-font-weight-extra-light": "200",
|
|
422
|
-
"lu-font-weight-light": "300",
|
|
423
|
-
"lu-font-weight-regular": "400",
|
|
424
|
-
"lu-font-weight-medium": "500",
|
|
425
|
-
"lu-font-weight-semibold": "600",
|
|
426
|
-
"lu-font-weight-bold": "700",
|
|
427
|
-
"lu-font-weight-extra-bold": "800",
|
|
428
|
-
"lu-font-weight-black": "900",
|
|
429
|
-
};
|
|
430
|
-
exports.customLineHeight = {
|
|
431
|
-
"lu-line-height-xs": "1",
|
|
432
|
-
"lu-line-height-sm": "1.25",
|
|
433
|
-
"lu-line-height-base": "1.5",
|
|
434
|
-
"lu-line-height-lg": "2",
|
|
435
|
-
};
|
|
436
|
-
exports.customTextAlignment = {
|
|
437
|
-
"lu-text-left": "left",
|
|
438
|
-
"lu-text-center": "center",
|
|
439
|
-
"lu-text-right": "right",
|
|
440
|
-
"lu-text-justify": "justify",
|
|
441
|
-
"lu-text-space-between": "space-between",
|
|
442
|
-
};
|
|
443
|
-
exports.customTextTransform = {
|
|
444
|
-
"lu-text-lowercase": "lowercase",
|
|
445
|
-
"lu-text-uppercase": "uppercase",
|
|
446
|
-
"lu-text-capitalize": "capitalize",
|
|
447
|
-
};
|
|
448
|
-
exports.customTextDecoration = {
|
|
449
|
-
"lu-text-decoration-none": "none",
|
|
450
|
-
"lu-text-decoration-underline": "underline",
|
|
451
|
-
"lu-text-decoration-line-through": "line-through",
|
|
452
|
-
};
|
|
453
|
-
exports.customTextWrap = {
|
|
454
|
-
"lu-text-wrap": "normal",
|
|
455
|
-
"lu-text-nowrap": "nowrap",
|
|
456
|
-
};
|
|
457
|
-
exports.customSize = {
|
|
458
|
-
"lu-size-050": "var(--core-050)",
|
|
459
|
-
"lu-size-100": "var(--core-100)",
|
|
460
|
-
"lu-size-200": "var(--core-200)",
|
|
461
|
-
"lu-size-300": "var(--core-300)",
|
|
462
|
-
"lu-size-400": "var(--core-400)",
|
|
463
|
-
"lu-size-500": "var(--core-500)",
|
|
464
|
-
"lu-size-600": "var(--core-600)",
|
|
465
|
-
"lu-size-800": "var(--core-800)",
|
|
466
|
-
"lu-size-1000": "var(--core-1000)",
|
|
467
|
-
"lu-size-1500": "var(--core-1500)",
|
|
468
|
-
"lu-size-2000": "var(--core-2000)",
|
|
469
|
-
"lu-size-2500": "var(--core-2500)",
|
|
470
|
-
};
|
|
471
|
-
exports.customWidth = {
|
|
472
|
-
"lu-width-5": "5%",
|
|
473
|
-
"lu-width-10": "10%",
|
|
474
|
-
"lu-width-25": "25%",
|
|
475
|
-
"lu-width-50": "50%",
|
|
476
|
-
"lu-width-75": "75%",
|
|
477
|
-
"lu-width-100": "100%",
|
|
478
|
-
};
|
|
479
|
-
exports.customHeight = {
|
|
480
|
-
"lu-height-5": "5%",
|
|
481
|
-
"lu-height-10": "10%",
|
|
482
|
-
"lu-height-25": "25%",
|
|
483
|
-
"lu-height-50": "50%",
|
|
484
|
-
"lu-height-75": "75%",
|
|
485
|
-
"lu-height-100": "100%",
|
|
486
|
-
};
|
|
487
|
-
exports.customMinWidth = {
|
|
488
|
-
"lu-min-width-100": "var(--core-100)",
|
|
489
|
-
"lu-min-width-200": "var(--core-200)",
|
|
490
|
-
"lu-min-width-300": "var(--core-300)",
|
|
491
|
-
"lu-min-width-400": "var(--core-400)",
|
|
492
|
-
"lu-min-width-500": "var(--core-500)",
|
|
493
|
-
"lu-min-width-600": "var(--core-600)",
|
|
494
|
-
"lu-min-width-800": "var(--core-800)",
|
|
495
|
-
"lu-min-width-1000": "var(--core-1000)",
|
|
496
|
-
"lu-min-width-1500": "var(--core-1500)",
|
|
497
|
-
"lu-min-width-2000": "var(--core-2000)",
|
|
498
|
-
"lu-min-width-2500": "var(--core-2500)",
|
|
499
|
-
"lu-min-width-3000": "var(--core-3000)",
|
|
500
|
-
};
|
|
501
|
-
exports.customMinHeight = {
|
|
502
|
-
"lu-min-height-100": "var(--core-100)",
|
|
503
|
-
"lu-min-height-200": "var(--core-200)",
|
|
504
|
-
"lu-min-height-300": "var(--core-300)",
|
|
505
|
-
"lu-min-height-400": "var(--core-400)",
|
|
506
|
-
"lu-min-height-500": "var(--core-500)",
|
|
507
|
-
"lu-min-height-600": "var(--core-600)",
|
|
508
|
-
"lu-min-height-800": "var(--core-800)",
|
|
509
|
-
"lu-min-height-1000": "var(--core-1000)",
|
|
510
|
-
"lu-min-height-1500": "var(--core-1500)",
|
|
511
|
-
"lu-min-height-2000": "var(--core-2000)",
|
|
512
|
-
"lu-min-height-2500": "var(--core-2500)",
|
|
513
|
-
"lu-min-height-3000": "var(--core-3000)",
|
|
514
|
-
};
|
|
515
|
-
exports.customLogoSize = {
|
|
516
|
-
"lu-primary-logo": "75px",
|
|
517
|
-
"lu-secondary-logo": "var(--core-400)",
|
|
518
|
-
"lu-favicon-logo": "var(--core-400)",
|
|
519
|
-
};
|
|
520
|
-
exports.customIconSize = {
|
|
521
|
-
".lu-icon-xx-small": {
|
|
522
|
-
width: "var(--core-100)",
|
|
523
|
-
height: "var(--core-100)",
|
|
524
|
-
},
|
|
525
|
-
".lu-icon-x-small": {
|
|
526
|
-
width: "var(--core-150)",
|
|
527
|
-
height: "var(--core-150)",
|
|
528
|
-
},
|
|
529
|
-
".lu-icon-small": {
|
|
530
|
-
width: "var(--core-175)",
|
|
531
|
-
height: "var(--core-175)",
|
|
532
|
-
},
|
|
533
|
-
".lu-icon-medium": {
|
|
534
|
-
width: "var(--core-200)",
|
|
535
|
-
height: "var(--core-200)",
|
|
536
|
-
},
|
|
537
|
-
".lu-icon-large": {
|
|
538
|
-
width: "var(--core-225)",
|
|
539
|
-
height: "var(--core-225)",
|
|
540
|
-
},
|
|
541
|
-
".lu-icon-x-large": {
|
|
542
|
-
width: "var(--core-250)",
|
|
543
|
-
height: "var(--core-250)",
|
|
544
|
-
},
|
|
545
|
-
".lu-icon-2x-large": {
|
|
546
|
-
width: "var(--core-300)",
|
|
547
|
-
height: "var(--core-300)",
|
|
548
|
-
},
|
|
549
|
-
".lu-icon-3x-large": {
|
|
550
|
-
width: "var(--core-350)",
|
|
551
|
-
height: "var(--core-350)",
|
|
552
|
-
},
|
|
553
|
-
".lu-icon-4x-large": {
|
|
554
|
-
width: "var(--core-400)",
|
|
555
|
-
height: "var(--core-400)",
|
|
556
|
-
},
|
|
557
|
-
".lu-icon-5x-large": {
|
|
558
|
-
width: "var(--core-450)",
|
|
559
|
-
height: "var(--core-450)",
|
|
560
|
-
},
|
|
561
|
-
".lu-icon-6x-large": {
|
|
562
|
-
width: "var(--core-500)",
|
|
563
|
-
height: "var(--core-500)",
|
|
564
|
-
},
|
|
565
|
-
".lu-icon-7x-large": {
|
|
566
|
-
width: "var(--core-600)",
|
|
567
|
-
height: "var(--core-600)",
|
|
568
|
-
},
|
|
569
|
-
".lu-icon-huge": {
|
|
570
|
-
width: "var(--core-800)",
|
|
571
|
-
height: "var(--core-800)",
|
|
572
|
-
},
|
|
573
|
-
".lu-icon-massive": {
|
|
574
|
-
width: "var(--core-1000)",
|
|
575
|
-
height: "var(--core-1000)",
|
|
576
|
-
},
|
|
577
|
-
};
|
|
578
|
-
exports.customButtonIconSize = {
|
|
579
|
-
".lu-icon-xx-small": {
|
|
580
|
-
width: "var(--core-100)",
|
|
581
|
-
height: "var(--core-100)",
|
|
582
|
-
},
|
|
583
|
-
".lu-icon-x-small": {
|
|
584
|
-
width: "var(--core-150)",
|
|
585
|
-
height: "var(--core-150)",
|
|
586
|
-
},
|
|
587
|
-
".lu-icon-small": {
|
|
588
|
-
width: "var(--core-175)",
|
|
589
|
-
height: "var(--core-175)",
|
|
590
|
-
},
|
|
591
|
-
".lu-icon-medium": {
|
|
592
|
-
width: "var(--core-200)",
|
|
593
|
-
height: "var(--core-200)",
|
|
594
|
-
},
|
|
595
|
-
".lu-icon-large": {
|
|
596
|
-
width: "var(--core-225)",
|
|
597
|
-
height: "var(--core-225)",
|
|
598
|
-
},
|
|
599
|
-
".lu-icon-x-large": {
|
|
600
|
-
width: "var(--core-250)",
|
|
601
|
-
height: "var(--core-250)",
|
|
602
|
-
},
|
|
603
|
-
};
|
|
604
|
-
exports.customOpacity = {
|
|
605
|
-
"lu-opacity-0": "0.0",
|
|
606
|
-
"lu-opacity-5": "0.05",
|
|
607
|
-
"lu-opacity-10": "0.1",
|
|
608
|
-
"lu-opacity-15": "0.15",
|
|
609
|
-
"lu-opacity-20": "0.2",
|
|
610
|
-
"lu-opacity-25": "0.25",
|
|
611
|
-
"lu-opacity-30": "0.3",
|
|
612
|
-
"lu-opacity-40": "0.4",
|
|
613
|
-
"lu-opacity-50": "0.5",
|
|
614
|
-
"lu-opacity-60": "0.6",
|
|
615
|
-
"lu-opacity-70": "0.7",
|
|
616
|
-
"lu-opacity-75": "0.75",
|
|
617
|
-
"lu-opacity-80": "0.8",
|
|
618
|
-
"lu-opacity-90": "0.9",
|
|
619
|
-
"lu-opacity-95": "0.95",
|
|
620
|
-
"lu-opacity-100": "1",
|
|
621
|
-
};
|
|
622
|
-
exports.customBorderWidth = {
|
|
623
|
-
".lu-border-width-0125": { borderWidth: "var(--core-0125)" },
|
|
624
|
-
".lu-border-width-025": { borderWidth: "var(--core-025)" },
|
|
625
|
-
".lu-border-width-050": { borderWidth: "var(--core-050)" },
|
|
626
|
-
".lu-border-width-100": { borderWidth: "var(--core-100)" },
|
|
627
|
-
".lu-border-width-125": { borderWidth: "var(--core-125)" },
|
|
628
|
-
};
|
|
629
|
-
exports.customBorderRadius = {
|
|
630
|
-
".lu-border-rounded-none": { borderRadius: "var(--core-0)" },
|
|
631
|
-
".lu-border-rounded-xs": { borderRadius: "var(--core-025)" },
|
|
632
|
-
".lu-border-rounded-sm": { borderRadius: "var(--core-050)" },
|
|
633
|
-
".lu-border-rounded-md": { borderRadius: "var(--core-075)" },
|
|
634
|
-
".lu-border-rounded-lg": { borderRadius: "var(--core-100)" },
|
|
635
|
-
".lu-border-rounded-xl": { borderRadius: "var(--core-150)" },
|
|
636
|
-
".lu-border-rounded-2xl": { borderRadius: "var(--core-200)" },
|
|
637
|
-
".lu-border-rounded-3xl": { borderRadius: "var(--core-300)" },
|
|
638
|
-
".lu-border-rounded-full": { borderRadius: "9999px" },
|
|
639
|
-
};
|
|
640
|
-
// TODO: fix this name class name keep simple and short and remove landsc from cspell list
|
|
641
|
-
exports.customAspectRatio = {
|
|
642
|
-
".lu-aspect-square": { aspectRatio: "1 / 1" },
|
|
643
|
-
".lu-aspect-2-1-landsc": { aspectRatio: "2 / 1" },
|
|
644
|
-
".lu-aspect-1-2-por": { aspectRatio: "1 / 2" },
|
|
645
|
-
".lu-aspect-3-2-landsc": { aspectRatio: "3 / 2" },
|
|
646
|
-
".lu-aspect-2-3-por": { aspectRatio: "2 / 3" },
|
|
647
|
-
".lu-aspect-4-3-landsc": { aspectRatio: "4 / 3" },
|
|
648
|
-
".lu-aspect-3-4-por": { aspectRatio: "3 / 4" },
|
|
649
|
-
".lu-aspect-5-4-landsc": { aspectRatio: "5 / 4" },
|
|
650
|
-
".lu-aspect-4-5-por": { aspectRatio: "4 / 5" },
|
|
651
|
-
".lu-aspect-7-5-landsc": { aspectRatio: "7 / 5" },
|
|
652
|
-
".lu-aspect-5-7-por": { aspectRatio: "5 / 7" },
|
|
653
|
-
".lu-aspect-16-9-landsc": { aspectRatio: "16 / 9" },
|
|
654
|
-
".lu-aspect-9-16-por": { aspectRatio: "9 / 16" },
|
|
655
|
-
".lu-aspect-21-9-landscape": { aspectRatio: "21 / 9" },
|
|
656
|
-
".lu-aspect-9-21-por": { aspectRatio: "9 / 21" },
|
|
657
|
-
};
|
|
658
|
-
exports.customBoxShadow = {
|
|
659
|
-
"lu-shadow-xs": "0px 4px 4px 0 rgba(52, 52, 52, 0.05)",
|
|
660
|
-
"lu-shadow-sm": "0px 4px 8px 0 rgba(52, 52, 52, 0.1)",
|
|
661
|
-
"lu-shadow-md": "0px 4px 12px 0 rgba(52, 52, 52, 0.15)",
|
|
662
|
-
"lu-shadow-lg": "0px 4px 18px 0 rgba(52, 52, 52, 0.15)",
|
|
663
|
-
"lu-shadow-xl": "0px 8px 24px 0 rgba(52, 52, 52, 0.15)",
|
|
664
|
-
};
|
|
665
|
-
// TODO: fix this name midtone to to other and remove landsc from cspell list
|
|
666
|
-
exports.customIconColors = {
|
|
667
|
-
".lu-disabled-icon-light": { fill: "#D2D3D5" },
|
|
668
|
-
".lu-disabled-icon-dark": { fill: "var(--neutral-400)" },
|
|
669
|
-
".lu-primary-icon-default": { fill: "var( --primary-600)" },
|
|
670
|
-
".lu-primary-icon-midtone": { fill: "var(--primary-100)" },
|
|
671
|
-
".lu-primary-icon-light": { fill: "var(--primary-0)" },
|
|
672
|
-
".lu-success-icon-default": { fill: "var(--success-600)" },
|
|
673
|
-
".lu-success-icon-midtone": { fill: "var(--success-200)" },
|
|
674
|
-
".lu-success-icon-light": { fill: "var(--success-0)" },
|
|
675
|
-
".lu-warning-icon-default": { fill: "var(--warning-500)" },
|
|
676
|
-
".lu-warning-icon-midtone": { fill: "var(--warning-200)" },
|
|
677
|
-
".lu-warning-icon-dark": { fill: "var(--warning-1000)" },
|
|
678
|
-
".lu-danger-icon-default": { fill: "var(--danger-600)" },
|
|
679
|
-
".lu-danger-icon-midtone": { fill: "var(--danger-100)" },
|
|
680
|
-
".lu-danger-icon-light": { fill: "var(--danger-0)" },
|
|
681
|
-
".lu-info-icon-default": { fill: "var(--info-600)" },
|
|
682
|
-
".lu-info-icon-midtone": { fill: "var(--info-100)" },
|
|
683
|
-
".lu-info-icon-light": { fill: "var(--info-0)" },
|
|
684
|
-
".lu-neutral-icon-light": { fill: "var(--neutral-0)" },
|
|
685
|
-
".lu-neutral-icon-dark": { fill: "var(--neutral-1000)" },
|
|
686
|
-
};
|
|
687
|
-
exports.customButtonColors = {
|
|
688
|
-
".lu-btn-primary": {
|
|
689
|
-
color: "var(--primary-0)",
|
|
690
|
-
backgroundColor: "var(--primary-600)",
|
|
691
|
-
fill: "var(--primary-0)",
|
|
692
|
-
"&:hover": {
|
|
693
|
-
backgroundColor: "var(--primary-700)",
|
|
694
|
-
color: "var(--primary-0)",
|
|
695
|
-
fill: "var(--primary-0)",
|
|
696
|
-
".icon": {
|
|
697
|
-
color: "var(--primary-0)",
|
|
698
|
-
fill: "var(--primary-0)",
|
|
699
|
-
},
|
|
700
|
-
},
|
|
701
|
-
"&:focus": {
|
|
702
|
-
backgroundColor: "var(--primary-600)",
|
|
703
|
-
color: "var(--primary-0)",
|
|
704
|
-
fill: "var(--primary-0)",
|
|
705
|
-
},
|
|
706
|
-
"&:active": {
|
|
707
|
-
backgroundColor: "var(--primary-800)",
|
|
708
|
-
color: "var(--primary-0)",
|
|
709
|
-
fill: "var(--primary-0)",
|
|
710
|
-
},
|
|
711
|
-
},
|
|
712
|
-
".lu-btn-primary-light": {
|
|
713
|
-
color: "var(--primary-600)",
|
|
714
|
-
backgroundColor: "var(--primary-100)",
|
|
715
|
-
fill: "var(--primary-600)",
|
|
716
|
-
"&:hover": {
|
|
717
|
-
backgroundColor: "var(--primary-700)",
|
|
718
|
-
color: "var(--primary-0)",
|
|
719
|
-
fill: "var(--primary-0)",
|
|
720
|
-
".icon": {
|
|
721
|
-
color: "var(--primary-0)",
|
|
722
|
-
fill: "var(--primary-0)",
|
|
723
|
-
},
|
|
724
|
-
},
|
|
725
|
-
"&:focus": {
|
|
726
|
-
backgroundColor: "var(--primary-600)",
|
|
727
|
-
color: "var(--primary-0)",
|
|
728
|
-
fill: "var(--primary-0)",
|
|
729
|
-
".icon": {
|
|
730
|
-
color: "var(--primary-0)",
|
|
731
|
-
fill: "var(--primary-0)",
|
|
732
|
-
},
|
|
733
|
-
},
|
|
734
|
-
"&:active": {
|
|
735
|
-
backgroundColor: "var(--primary-800)",
|
|
736
|
-
color: "var(--primary-0)",
|
|
737
|
-
fill: "var(--primary-0)",
|
|
738
|
-
".icon": {
|
|
739
|
-
color: "var(--primary-0)",
|
|
740
|
-
fill: "var(--primary-0)",
|
|
741
|
-
},
|
|
742
|
-
},
|
|
743
|
-
},
|
|
744
|
-
".lu-btn-success": {
|
|
745
|
-
color: "var(--success-0)",
|
|
746
|
-
backgroundColor: "var(--success-600)",
|
|
747
|
-
fill: "var(--success-0)",
|
|
748
|
-
"&:hover": {
|
|
749
|
-
backgroundColor: "var(--success-700)",
|
|
750
|
-
color: "var(--success-0)",
|
|
751
|
-
fill: "var(--success-0)",
|
|
752
|
-
".icon": {
|
|
753
|
-
color: "var(--success-0)",
|
|
754
|
-
fill: "var(--success-0)",
|
|
755
|
-
},
|
|
756
|
-
},
|
|
757
|
-
"&:focus": {
|
|
758
|
-
backgroundColor: "var(--success-600)",
|
|
759
|
-
color: "var(--success-0)",
|
|
760
|
-
fill: "var(--success-0)",
|
|
761
|
-
},
|
|
762
|
-
"&:active": {
|
|
763
|
-
backgroundColor: "var(--success-800)",
|
|
764
|
-
color: "var(--success-0)",
|
|
765
|
-
fill: "var(--success-0)",
|
|
766
|
-
},
|
|
767
|
-
},
|
|
768
|
-
".lu-btn-success-light": {
|
|
769
|
-
color: "var(--success-600)",
|
|
770
|
-
backgroundColor: "var(--success-100)",
|
|
771
|
-
fill: "var(--success-600)",
|
|
772
|
-
"&:hover": {
|
|
773
|
-
backgroundColor: "var(--success-700)",
|
|
774
|
-
color: "var(--success-0)",
|
|
775
|
-
fill: "var(--success-0)",
|
|
776
|
-
".icon": {
|
|
777
|
-
color: "var(--success-0)",
|
|
778
|
-
fill: "var(--success-0)",
|
|
779
|
-
},
|
|
780
|
-
},
|
|
781
|
-
"&:focus": {
|
|
782
|
-
backgroundColor: "var(--success-600)",
|
|
783
|
-
color: "var(--success-0)",
|
|
784
|
-
fill: "var(--success-0)",
|
|
785
|
-
".icon": {
|
|
786
|
-
color: "var(--success-0)",
|
|
787
|
-
fill: "var(--success-0)",
|
|
788
|
-
},
|
|
789
|
-
},
|
|
790
|
-
"&:active": {
|
|
791
|
-
backgroundColor: "var(--success-800)",
|
|
792
|
-
color: "var(--success-0)",
|
|
793
|
-
fill: "var(--success-0)",
|
|
794
|
-
".icon": {
|
|
795
|
-
color: "var(--success-0)",
|
|
796
|
-
fill: "var(--success-0)",
|
|
797
|
-
},
|
|
798
|
-
},
|
|
799
|
-
},
|
|
800
|
-
".lu-btn-warning": {
|
|
801
|
-
color: "var(--warning-1000)",
|
|
802
|
-
backgroundColor: "var(--warning-500)",
|
|
803
|
-
fill: "var(--warning-1000)",
|
|
804
|
-
"&:hover": {
|
|
805
|
-
backgroundColor: "var(--warning-600)",
|
|
806
|
-
color: "var(--warning-1000)",
|
|
807
|
-
fill: "var(--warning-1000)",
|
|
808
|
-
".icon": {
|
|
809
|
-
color: "var(--warning-1000)",
|
|
810
|
-
fill: "var(--warning-1000)",
|
|
811
|
-
},
|
|
812
|
-
},
|
|
813
|
-
"&:focus": {
|
|
814
|
-
backgroundColor: "var(--warning-500)",
|
|
815
|
-
color: "var(--warning-1000)",
|
|
816
|
-
fill: "var(--warning-1000)",
|
|
817
|
-
},
|
|
818
|
-
"&:active": {
|
|
819
|
-
backgroundColor: "var(--warning-700)",
|
|
820
|
-
color: "var(--warning-1000)",
|
|
821
|
-
fill: "var(--warning-1000)",
|
|
822
|
-
},
|
|
823
|
-
},
|
|
824
|
-
".lu-btn-warning-light": {
|
|
825
|
-
color: "var(--warning-900)",
|
|
826
|
-
backgroundColor: "var(--warning-100)",
|
|
827
|
-
fill: "var(--warning-900)",
|
|
828
|
-
"&:hover": {
|
|
829
|
-
backgroundColor: "var(--warning-600)",
|
|
830
|
-
color: "var(--warning-1000)",
|
|
831
|
-
fill: "var(--warning-1000)",
|
|
832
|
-
".icon": {
|
|
833
|
-
color: "var(--warning-1000)",
|
|
834
|
-
fill: "var(--warning-1000)",
|
|
835
|
-
},
|
|
836
|
-
},
|
|
837
|
-
"&:focus": {
|
|
838
|
-
backgroundColor: "var(--warning-500)",
|
|
839
|
-
color: "var(--warning-1000)",
|
|
840
|
-
fill: "var(--warning-1000)",
|
|
841
|
-
".icon": {
|
|
842
|
-
color: "var(--warning-1000)",
|
|
843
|
-
fill: "var(--warning-1000)",
|
|
844
|
-
},
|
|
845
|
-
},
|
|
846
|
-
"&:active": {
|
|
847
|
-
backgroundColor: "var(--warning-700)",
|
|
848
|
-
color: "var(--warning-1000)",
|
|
849
|
-
fill: "var(--warning-1000)",
|
|
850
|
-
".icon": {
|
|
851
|
-
color: "var(--warning-1000)",
|
|
852
|
-
fill: "var(--warning-1000)",
|
|
853
|
-
},
|
|
854
|
-
},
|
|
855
|
-
},
|
|
856
|
-
".lu-btn-danger": {
|
|
857
|
-
color: "var(--danger-0)",
|
|
858
|
-
backgroundColor: "var(--danger-600)",
|
|
859
|
-
fill: "var(--danger-0)",
|
|
860
|
-
"&:hover": {
|
|
861
|
-
backgroundColor: "var(--danger-700)",
|
|
862
|
-
color: "var(--danger-0)",
|
|
863
|
-
fill: "var(--danger-0)",
|
|
864
|
-
".icon": {
|
|
865
|
-
color: "var(--danger-0)",
|
|
866
|
-
fill: "var(--danger-0)",
|
|
867
|
-
},
|
|
868
|
-
},
|
|
869
|
-
"&:focus": {
|
|
870
|
-
backgroundColor: "var(--danger-600)",
|
|
871
|
-
color: "var(--danger-0)",
|
|
872
|
-
fill: "var(--danger-0)",
|
|
873
|
-
},
|
|
874
|
-
"&:active": {
|
|
875
|
-
backgroundColor: "var(--danger-800)",
|
|
876
|
-
color: "var(--danger-0)",
|
|
877
|
-
fill: "var(--danger-0)",
|
|
878
|
-
},
|
|
879
|
-
},
|
|
880
|
-
".lu-btn-danger-light": {
|
|
881
|
-
color: "var(--danger-600)",
|
|
882
|
-
backgroundColor: "var(--danger-100)",
|
|
883
|
-
fill: "var(--danger-600)",
|
|
884
|
-
"&:hover": {
|
|
885
|
-
backgroundColor: "var(--danger-700)",
|
|
886
|
-
color: "var(--danger-0)",
|
|
887
|
-
fill: "var(--danger-0)",
|
|
888
|
-
".icon": {
|
|
889
|
-
color: "var(--danger-0)",
|
|
890
|
-
fill: "var(--danger-0)",
|
|
891
|
-
},
|
|
892
|
-
},
|
|
893
|
-
"&:focus": {
|
|
894
|
-
backgroundColor: "var(--danger-600)",
|
|
895
|
-
color: "var(--danger-0)",
|
|
896
|
-
fill: "var(--danger-0)",
|
|
897
|
-
".icon": {
|
|
898
|
-
color: "var(--danger-0)",
|
|
899
|
-
fill: "var(--danger-0)",
|
|
900
|
-
},
|
|
901
|
-
},
|
|
902
|
-
"&:active": {
|
|
903
|
-
backgroundColor: "var(--danger-800)",
|
|
904
|
-
color: "var(--danger-0)",
|
|
905
|
-
fill: "var(--danger-0)",
|
|
906
|
-
".icon": {
|
|
907
|
-
color: "var(--danger-0)",
|
|
908
|
-
fill: "var(--danger-0)",
|
|
909
|
-
},
|
|
910
|
-
},
|
|
911
|
-
},
|
|
912
|
-
".lu-btn-info": {
|
|
913
|
-
color: "var(--info-0)",
|
|
914
|
-
backgroundColor: "var(--info-600)",
|
|
915
|
-
fill: "var(--info-0)",
|
|
916
|
-
"&:hover": {
|
|
917
|
-
backgroundColor: "var(--info-700)",
|
|
918
|
-
color: "var(--info-0)",
|
|
919
|
-
fill: "var(--info-0)",
|
|
920
|
-
".icon": {
|
|
921
|
-
color: "var(--info-0)",
|
|
922
|
-
fill: "var(--info-0)",
|
|
923
|
-
},
|
|
924
|
-
},
|
|
925
|
-
"&:focus": {
|
|
926
|
-
backgroundColor: "var(--info-600)",
|
|
927
|
-
color: "var(--info-0)",
|
|
928
|
-
fill: "var(--info-0)",
|
|
929
|
-
},
|
|
930
|
-
"&:active": {
|
|
931
|
-
backgroundColor: "var(--info-800)",
|
|
932
|
-
color: "var(--info-0)",
|
|
933
|
-
fill: "var(--info-0)",
|
|
934
|
-
},
|
|
935
|
-
},
|
|
936
|
-
".lu-btn-info-light": {
|
|
937
|
-
color: "var(--info-600)",
|
|
938
|
-
backgroundColor: "var(--info-100)",
|
|
939
|
-
fill: "var(--info-600)",
|
|
940
|
-
"&:hover": {
|
|
941
|
-
backgroundColor: "var(--info-700)",
|
|
942
|
-
color: "var(--info-0)",
|
|
943
|
-
fill: "var(--info-0)",
|
|
944
|
-
".icon": {
|
|
945
|
-
color: "var(--info-0)",
|
|
946
|
-
fill: "var(--info-0)",
|
|
947
|
-
},
|
|
948
|
-
},
|
|
949
|
-
"&:focus": {
|
|
950
|
-
backgroundColor: "var(--info-600)",
|
|
951
|
-
color: "var(--info-0)",
|
|
952
|
-
fill: "var(--info-0)",
|
|
953
|
-
".icon": {
|
|
954
|
-
color: "var(--info-0)",
|
|
955
|
-
fill: "var(--info-0)",
|
|
956
|
-
},
|
|
957
|
-
},
|
|
958
|
-
"&:active": {
|
|
959
|
-
backgroundColor: "var(--info-800)",
|
|
960
|
-
color: "var(--info-0)",
|
|
961
|
-
fill: "var(--info-0)",
|
|
962
|
-
".icon": {
|
|
963
|
-
color: "var(--info-0)",
|
|
964
|
-
fill: "var(--info-0)",
|
|
965
|
-
},
|
|
966
|
-
},
|
|
967
|
-
},
|
|
968
|
-
".lu-btn-gray": {
|
|
969
|
-
color: "var(--neutral-1000)",
|
|
970
|
-
backgroundColor: "var(--neutral-0)",
|
|
971
|
-
fill: "var(--neutral-1000)",
|
|
972
|
-
"&:hover": {
|
|
973
|
-
backgroundColor: "var(--neutral-100)",
|
|
974
|
-
color: "var(--neutral-1000)",
|
|
975
|
-
fill: "var(--neutral-1000)",
|
|
976
|
-
".icon": {
|
|
977
|
-
color: "var(--neutral-1000)",
|
|
978
|
-
fill: "var(--neutral-1000)",
|
|
979
|
-
},
|
|
980
|
-
},
|
|
981
|
-
"&:focus": {
|
|
982
|
-
backgroundColor: "var(--neutral-0)",
|
|
983
|
-
color: "var(--neutral-1000)",
|
|
984
|
-
fill: "var(--neutral-1000)",
|
|
985
|
-
},
|
|
986
|
-
"&:active": {
|
|
987
|
-
backgroundColor: "var(--neutral-300)",
|
|
988
|
-
color: "var(--neutral-1000)",
|
|
989
|
-
fill: "var(--neutral-1000)",
|
|
990
|
-
},
|
|
991
|
-
},
|
|
992
|
-
".lu-btn-gray-light": {
|
|
993
|
-
color: "var(--neutral-0)",
|
|
994
|
-
backgroundColor: "var(--neutral-900)",
|
|
995
|
-
fill: "var(--neutral-0)",
|
|
996
|
-
"&:hover": {
|
|
997
|
-
backgroundColor: "var(--neutral-100)",
|
|
998
|
-
color: "var(--neutral-1000)",
|
|
999
|
-
fill: "var(--neutral-1000)",
|
|
1000
|
-
".icon": {
|
|
1001
|
-
color: "var(--neutral-1000)",
|
|
1002
|
-
fill: "var(--neutral-1000)",
|
|
1003
|
-
},
|
|
1004
|
-
},
|
|
1005
|
-
"&:focus": {
|
|
1006
|
-
backgroundColor: "var(--neutral-0)",
|
|
1007
|
-
color: "var(--neutral-1000)",
|
|
1008
|
-
fill: "var(--neutral-1000)",
|
|
1009
|
-
".icon": {
|
|
1010
|
-
color: "var(--neutral-1000)",
|
|
1011
|
-
fill: "var(--neutral-1000)",
|
|
1012
|
-
},
|
|
1013
|
-
},
|
|
1014
|
-
"&:active": {
|
|
1015
|
-
backgroundColor: "var(--neutral-300)",
|
|
1016
|
-
color: "var(--neutral-1000)",
|
|
1017
|
-
fill: "var(--neutral-1000)",
|
|
1018
|
-
".icon": {
|
|
1019
|
-
color: "var(--neutral-1000)",
|
|
1020
|
-
fill: "var(--neutral-1000)",
|
|
1021
|
-
},
|
|
1022
|
-
},
|
|
1023
|
-
},
|
|
1024
|
-
".lu-btn-disabled": {
|
|
1025
|
-
color: "#9DA1A5",
|
|
1026
|
-
backgroundColor: "#D2D3D5",
|
|
1027
|
-
fill: "#9DA1A5",
|
|
1028
|
-
},
|
|
1029
|
-
};
|
|
1030
|
-
exports.customButtonOutlineColors = {
|
|
1031
|
-
".outline-button.lu-btn-primary-light": {
|
|
1032
|
-
color: "var(--primary-600)",
|
|
1033
|
-
borderColor: "var(--primary-100) !important",
|
|
1034
|
-
fill: "var(--primary-600)",
|
|
1035
|
-
backgroundColor: "var(--white)",
|
|
1036
|
-
border: "2px solid",
|
|
1037
|
-
"&:hover": {
|
|
1038
|
-
borderColor: "var(--primary-700) !important",
|
|
1039
|
-
color: "var(--primary-700)",
|
|
1040
|
-
fill: "var(--primary-700)",
|
|
1041
|
-
".icon": {
|
|
1042
|
-
color: "var(--primary-700)",
|
|
1043
|
-
fill: "var(--primary-700)",
|
|
1044
|
-
},
|
|
1045
|
-
},
|
|
1046
|
-
"&:focus": {
|
|
1047
|
-
borderColor: "var(--primary-600) !important",
|
|
1048
|
-
color: "var(--primary-600)",
|
|
1049
|
-
fill: "var(--primary-600)",
|
|
1050
|
-
".icon": {
|
|
1051
|
-
color: "var(--primary-600)",
|
|
1052
|
-
fill: "var(--primary-600)",
|
|
1053
|
-
},
|
|
1054
|
-
},
|
|
1055
|
-
"&:active": {
|
|
1056
|
-
borderColor: "var(--primary-800) !important",
|
|
1057
|
-
color: "var(--primary-800)",
|
|
1058
|
-
fill: "var(--primary-800)",
|
|
1059
|
-
".icon": {
|
|
1060
|
-
color: "var(--primary-800)",
|
|
1061
|
-
fill: "var(--primary-800)",
|
|
1062
|
-
},
|
|
1063
|
-
},
|
|
1064
|
-
},
|
|
1065
|
-
".outline-button.lu-btn-primary": {
|
|
1066
|
-
color: "var(--primary-600)",
|
|
1067
|
-
borderColor: "var(--primary-600)",
|
|
1068
|
-
fill: "var(--primary-600)",
|
|
1069
|
-
backgroundColor: "var(--white)",
|
|
1070
|
-
border: "2px solid",
|
|
1071
|
-
"&:hover": {
|
|
1072
|
-
borderColor: "var(--primary-700)",
|
|
1073
|
-
color: "var(--primary-700)",
|
|
1074
|
-
fill: "var(--primary-700)",
|
|
1075
|
-
".icon": {
|
|
1076
|
-
color: "var(--primary-700)",
|
|
1077
|
-
fill: "var(--primary-700)",
|
|
1078
|
-
},
|
|
1079
|
-
},
|
|
1080
|
-
"&:focus": {
|
|
1081
|
-
borderColor: "var(--primary-600)",
|
|
1082
|
-
color: "var(--primary-600)",
|
|
1083
|
-
fill: "var(--primary-600)",
|
|
1084
|
-
".icon": {
|
|
1085
|
-
color: "var(--primary-600)",
|
|
1086
|
-
fill: "var(--primary-600)",
|
|
1087
|
-
},
|
|
1088
|
-
},
|
|
1089
|
-
"&:active": {
|
|
1090
|
-
borderColor: "var(--primary-800)",
|
|
1091
|
-
color: "var(--primary-800)",
|
|
1092
|
-
fill: "var(--primary-800)",
|
|
1093
|
-
".icon": {
|
|
1094
|
-
color: "var(--primary-800)",
|
|
1095
|
-
fill: "var(--primary-800)",
|
|
1096
|
-
},
|
|
1097
|
-
},
|
|
1098
|
-
},
|
|
1099
|
-
".outline-button.lu-btn-success": {
|
|
1100
|
-
color: "var(--success-600)",
|
|
1101
|
-
borderColor: "var(--success-600)",
|
|
1102
|
-
fill: "var(--success-600)",
|
|
1103
|
-
backgroundColor: "var(--white)",
|
|
1104
|
-
border: "2px solid",
|
|
1105
|
-
"&:hover": {
|
|
1106
|
-
borderColor: "var(--success-700)",
|
|
1107
|
-
color: "var(--success-700)",
|
|
1108
|
-
fill: "var(--success-700)",
|
|
1109
|
-
".icon": {
|
|
1110
|
-
color: "var(--success-700)",
|
|
1111
|
-
fill: "var(--success-700)",
|
|
1112
|
-
},
|
|
1113
|
-
},
|
|
1114
|
-
"&:focus": {
|
|
1115
|
-
borderColor: "var(--success-600)",
|
|
1116
|
-
color: "var(--success-600)",
|
|
1117
|
-
fill: "var(--success-600)",
|
|
1118
|
-
".icon": {
|
|
1119
|
-
color: "var(--success-600)",
|
|
1120
|
-
fill: "var(--success-600)",
|
|
1121
|
-
},
|
|
1122
|
-
},
|
|
1123
|
-
"&:active": {
|
|
1124
|
-
borderColor: "var(--success-800)",
|
|
1125
|
-
color: "var(--success-800)",
|
|
1126
|
-
fill: "var(--success-800)",
|
|
1127
|
-
".icon": {
|
|
1128
|
-
color: "var(--success-800)",
|
|
1129
|
-
fill: "var(--success-800)",
|
|
1130
|
-
},
|
|
1131
|
-
},
|
|
1132
|
-
},
|
|
1133
|
-
".outline-button.lu-btn-success-light": {
|
|
1134
|
-
color: "var(--success-600)",
|
|
1135
|
-
borderColor: "var(--success-100) !important",
|
|
1136
|
-
fill: "var(--success-600)",
|
|
1137
|
-
backgroundColor: "var(--white)",
|
|
1138
|
-
border: "2px solid",
|
|
1139
|
-
"&:hover": {
|
|
1140
|
-
borderColor: "var(--success-700) !important",
|
|
1141
|
-
color: "var(--success-700)",
|
|
1142
|
-
fill: "var(--success-700)",
|
|
1143
|
-
".icon": {
|
|
1144
|
-
color: "var(--success-700)",
|
|
1145
|
-
fill: "var(--success-700)",
|
|
1146
|
-
},
|
|
1147
|
-
},
|
|
1148
|
-
"&:focus": {
|
|
1149
|
-
borderColor: "var(--success-600) !important",
|
|
1150
|
-
color: "var(--success-600)",
|
|
1151
|
-
fill: "var(--success-600)",
|
|
1152
|
-
".icon": {
|
|
1153
|
-
color: "var(--success-600)",
|
|
1154
|
-
fill: "var(--success-600)",
|
|
1155
|
-
},
|
|
1156
|
-
},
|
|
1157
|
-
"&:active": {
|
|
1158
|
-
borderColor: "var(--success-800) !important",
|
|
1159
|
-
color: "var(--success-800)",
|
|
1160
|
-
fill: "var(--success-800)",
|
|
1161
|
-
".icon": {
|
|
1162
|
-
color: "var(--success-800)",
|
|
1163
|
-
fill: "var(--success-800)",
|
|
1164
|
-
},
|
|
1165
|
-
},
|
|
1166
|
-
},
|
|
1167
|
-
".outline-button.lu-btn-warning": {
|
|
1168
|
-
color: "var(--warning-500)",
|
|
1169
|
-
borderColor: "var(--warning-500)",
|
|
1170
|
-
fill: "var(--warning-500)",
|
|
1171
|
-
backgroundColor: "var(--white)",
|
|
1172
|
-
border: "2px solid",
|
|
1173
|
-
"&:hover": {
|
|
1174
|
-
borderColor: "var(--warning-600)",
|
|
1175
|
-
color: "var(--warning-600)",
|
|
1176
|
-
fill: "var(--warning-600)",
|
|
1177
|
-
".icon": {
|
|
1178
|
-
fill: "var(--warning-600)",
|
|
1179
|
-
color: "var(--warning-600)",
|
|
1180
|
-
},
|
|
1181
|
-
},
|
|
1182
|
-
"&:focus": {
|
|
1183
|
-
borderColor: "var(--warning-500)",
|
|
1184
|
-
color: "var(--warning-500)",
|
|
1185
|
-
fill: "var(--warning-500)",
|
|
1186
|
-
".icon": {
|
|
1187
|
-
color: "var(--warning-500)",
|
|
1188
|
-
fill: "var(--warning-500)",
|
|
1189
|
-
},
|
|
1190
|
-
},
|
|
1191
|
-
"&:active": {
|
|
1192
|
-
borderColor: "var(--warning-700)",
|
|
1193
|
-
color: "var(--warning-700)",
|
|
1194
|
-
fill: "var(--warning-700)",
|
|
1195
|
-
".icon": {
|
|
1196
|
-
color: "var(--warning-700)",
|
|
1197
|
-
fill: "var(--warning-700)",
|
|
1198
|
-
},
|
|
1199
|
-
},
|
|
1200
|
-
},
|
|
1201
|
-
".outline-button.lu-btn-warning-light": {
|
|
1202
|
-
color: "var(--warning-500)",
|
|
1203
|
-
borderColor: "var(--warning-100) !important",
|
|
1204
|
-
fill: "var(--warning-500)",
|
|
1205
|
-
backgroundColor: "var(--white)",
|
|
1206
|
-
border: "2px solid",
|
|
1207
|
-
"&:hover": {
|
|
1208
|
-
borderColor: "var(--warning-600) !important",
|
|
1209
|
-
color: "var(--warning-600)",
|
|
1210
|
-
fill: "var(--warning-600)",
|
|
1211
|
-
".icon": {
|
|
1212
|
-
fill: "var(--warning-600)",
|
|
1213
|
-
color: "var(--warning-600)",
|
|
1214
|
-
},
|
|
1215
|
-
},
|
|
1216
|
-
"&:focus": {
|
|
1217
|
-
borderColor: "var(--warning-500) !important",
|
|
1218
|
-
color: "var(--warning-500)",
|
|
1219
|
-
fill: "var(--warning-500)",
|
|
1220
|
-
".icon": {
|
|
1221
|
-
color: "var(--warning-500)",
|
|
1222
|
-
fill: "var(--warning-500)",
|
|
1223
|
-
},
|
|
1224
|
-
},
|
|
1225
|
-
"&:active": {
|
|
1226
|
-
borderColor: "var(--warning-700) !important",
|
|
1227
|
-
color: "var(--warning-700)",
|
|
1228
|
-
fill: "var(--warning-700)",
|
|
1229
|
-
".icon": {
|
|
1230
|
-
color: "var(--warning-700)",
|
|
1231
|
-
fill: "var(--warning-700)",
|
|
1232
|
-
},
|
|
1233
|
-
},
|
|
1234
|
-
},
|
|
1235
|
-
".outline-button.lu-btn-danger": {
|
|
1236
|
-
color: "var(--danger-600)",
|
|
1237
|
-
borderColor: "var(--danger-600)",
|
|
1238
|
-
fill: "var(--danger-600)",
|
|
1239
|
-
backgroundColor: "var(--white)",
|
|
1240
|
-
border: "2px solid",
|
|
1241
|
-
"&:hover": {
|
|
1242
|
-
borderColor: "var(--danger-700)",
|
|
1243
|
-
color: "var(--danger-700)",
|
|
1244
|
-
fill: "var(--danger-700)",
|
|
1245
|
-
".icon": {
|
|
1246
|
-
color: "var(--danger-700)",
|
|
1247
|
-
fill: "var(--danger-700)",
|
|
1248
|
-
},
|
|
1249
|
-
},
|
|
1250
|
-
"&:focus": {
|
|
1251
|
-
borderColor: "var(--danger-600)",
|
|
1252
|
-
color: "var(--danger-600)",
|
|
1253
|
-
fill: "var(--danger-600)",
|
|
1254
|
-
".icon": {
|
|
1255
|
-
color: "var(--danger-600)",
|
|
1256
|
-
fill: "var(--danger-600)",
|
|
1257
|
-
},
|
|
1258
|
-
},
|
|
1259
|
-
"&:active": {
|
|
1260
|
-
borderColor: "var(--danger-800)",
|
|
1261
|
-
color: "var(--danger-800)",
|
|
1262
|
-
fill: "var(--danger-800)",
|
|
1263
|
-
".icon": {
|
|
1264
|
-
color: "var(--danger-800)",
|
|
1265
|
-
fill: "var(--danger-800)",
|
|
1266
|
-
},
|
|
1267
|
-
},
|
|
1268
|
-
},
|
|
1269
|
-
".outline-button.lu-btn-danger-light": {
|
|
1270
|
-
color: "var(--danger-600)",
|
|
1271
|
-
borderColor: "var(--danger-100) !important",
|
|
1272
|
-
fill: "var(--danger-600)",
|
|
1273
|
-
backgroundColor: "var(--white)",
|
|
1274
|
-
border: "2px solid",
|
|
1275
|
-
"&:hover": {
|
|
1276
|
-
borderColor: "var(--danger-700) !important",
|
|
1277
|
-
color: "var(--danger-700)",
|
|
1278
|
-
fill: "var(--danger-700)",
|
|
1279
|
-
".icon": {
|
|
1280
|
-
color: "var(--danger-700)",
|
|
1281
|
-
fill: "var(--danger-700)",
|
|
1282
|
-
},
|
|
1283
|
-
},
|
|
1284
|
-
"&:focus": {
|
|
1285
|
-
borderColor: "var(--danger-600) !important",
|
|
1286
|
-
color: "var(--danger-600)",
|
|
1287
|
-
fill: "var(--danger-600)",
|
|
1288
|
-
".icon": {
|
|
1289
|
-
color: "var(--danger-600)",
|
|
1290
|
-
fill: "var(--danger-600)",
|
|
1291
|
-
},
|
|
1292
|
-
},
|
|
1293
|
-
"&:active": {
|
|
1294
|
-
borderColor: "var(--danger-800) !important",
|
|
1295
|
-
color: "var(--danger-800)",
|
|
1296
|
-
fill: "var(--danger-800)",
|
|
1297
|
-
".icon": {
|
|
1298
|
-
color: "var(--danger-800)",
|
|
1299
|
-
fill: "var(--danger-800)",
|
|
1300
|
-
},
|
|
1301
|
-
},
|
|
1302
|
-
},
|
|
1303
|
-
".outline-button.lu-btn-info": {
|
|
1304
|
-
color: "var(--info-600)",
|
|
1305
|
-
borderColor: "var(--info-600)",
|
|
1306
|
-
fill: "var(--info-600)",
|
|
1307
|
-
backgroundColor: "var(--white)",
|
|
1308
|
-
border: "2px solid",
|
|
1309
|
-
"&:hover": {
|
|
1310
|
-
borderColor: "var(--info-700)",
|
|
1311
|
-
color: "var(--info-700)",
|
|
1312
|
-
fill: "var(--info-700)",
|
|
1313
|
-
".icon": {
|
|
1314
|
-
color: "var(--info-700)",
|
|
1315
|
-
fill: "var(--info-700)",
|
|
1316
|
-
},
|
|
1317
|
-
},
|
|
1318
|
-
"&:focus": {
|
|
1319
|
-
borderColor: "var(--info-600)",
|
|
1320
|
-
color: "var(--info-600)",
|
|
1321
|
-
fill: "var(--info-600)",
|
|
1322
|
-
".icon": {
|
|
1323
|
-
color: "var(--info-600)",
|
|
1324
|
-
fill: "var(--info-600)",
|
|
1325
|
-
},
|
|
1326
|
-
},
|
|
1327
|
-
"&:active": {
|
|
1328
|
-
borderColor: "var(--info-800)",
|
|
1329
|
-
color: "var(--info-800)",
|
|
1330
|
-
fill: "var(--info-800)",
|
|
1331
|
-
".icon": {
|
|
1332
|
-
color: "var(--info-800)",
|
|
1333
|
-
fill: "var(--info-800)",
|
|
1334
|
-
},
|
|
1335
|
-
},
|
|
1336
|
-
},
|
|
1337
|
-
".outline-button.lu-btn-info-light": {
|
|
1338
|
-
color: "var(--info-600)",
|
|
1339
|
-
borderColor: "var(--info-100) !important",
|
|
1340
|
-
fill: "var(--info-600)",
|
|
1341
|
-
backgroundColor: "var(--white)",
|
|
1342
|
-
border: "2px solid",
|
|
1343
|
-
"&:hover": {
|
|
1344
|
-
borderColor: "var(--info-700) !important",
|
|
1345
|
-
color: "var(--info-700)",
|
|
1346
|
-
fill: "var(--info-700)",
|
|
1347
|
-
".icon": {
|
|
1348
|
-
color: "var(--info-700)",
|
|
1349
|
-
fill: "var(--info-700)",
|
|
1350
|
-
},
|
|
1351
|
-
},
|
|
1352
|
-
"&:focus": {
|
|
1353
|
-
borderColor: "var(--info-600) !important",
|
|
1354
|
-
color: "var(--info-600)",
|
|
1355
|
-
fill: "var(--info-600)",
|
|
1356
|
-
".icon": {
|
|
1357
|
-
color: "var(--info-600)",
|
|
1358
|
-
fill: "var(--info-600)",
|
|
1359
|
-
},
|
|
1360
|
-
},
|
|
1361
|
-
"&:active": {
|
|
1362
|
-
borderColor: "var(--info-800) !important",
|
|
1363
|
-
color: "var(--info-800)",
|
|
1364
|
-
fill: "var(--info-800)",
|
|
1365
|
-
".icon": {
|
|
1366
|
-
color: "var(--info-800)",
|
|
1367
|
-
fill: "var(--info-800)",
|
|
1368
|
-
},
|
|
1369
|
-
},
|
|
1370
|
-
},
|
|
1371
|
-
".outline-button.lu-btn-gray": {
|
|
1372
|
-
color: "var(--neutral-0)",
|
|
1373
|
-
borderColor: "var(--neutral-0)",
|
|
1374
|
-
fill: "var(--neutral-0)",
|
|
1375
|
-
backgroundColor: "var(--white)",
|
|
1376
|
-
border: "2px solid",
|
|
1377
|
-
"&:hover": {
|
|
1378
|
-
borderColor: "var(--neutral-100)",
|
|
1379
|
-
color: "var(--neutral-100)",
|
|
1380
|
-
fill: "var(--neutral-100)",
|
|
1381
|
-
".icon": {
|
|
1382
|
-
color: "var(--neutral-100)",
|
|
1383
|
-
fill: "var(--neutral-100)",
|
|
1384
|
-
},
|
|
1385
|
-
},
|
|
1386
|
-
"&:focus": {
|
|
1387
|
-
borderColor: "var(--neutral-0)",
|
|
1388
|
-
color: "var(--neutral-0)",
|
|
1389
|
-
fill: "var(--neutral-0)",
|
|
1390
|
-
".icon": {
|
|
1391
|
-
color: "var(--neutral-0)",
|
|
1392
|
-
fill: "var(--neutral-0)",
|
|
1393
|
-
},
|
|
1394
|
-
},
|
|
1395
|
-
"&:active": {
|
|
1396
|
-
borderColor: "var(--neutral-300)",
|
|
1397
|
-
color: "var(--neutral-300)",
|
|
1398
|
-
fill: "var(--neutral-300)",
|
|
1399
|
-
".icon": {
|
|
1400
|
-
color: "var(--neutral-300)",
|
|
1401
|
-
fill: "var(--neutral-300)",
|
|
1402
|
-
},
|
|
1403
|
-
},
|
|
1404
|
-
},
|
|
1405
|
-
".outline-button.lu-btn-gray-light": {
|
|
1406
|
-
color: "var(--neutral-900)",
|
|
1407
|
-
borderColor: "var(--neutral-900) !important",
|
|
1408
|
-
fill: "var(--neutral-900)",
|
|
1409
|
-
backgroundColor: "var(--white)",
|
|
1410
|
-
border: "2px solid",
|
|
1411
|
-
"&:hover": {
|
|
1412
|
-
borderColor: "var(--neutral-100) !important",
|
|
1413
|
-
color: "var(--neutral-100)",
|
|
1414
|
-
fill: "var(--neutral-100)",
|
|
1415
|
-
".icon": {
|
|
1416
|
-
color: "var(--neutral-100)",
|
|
1417
|
-
fill: "var(--neutral-100)",
|
|
1418
|
-
},
|
|
1419
|
-
},
|
|
1420
|
-
"&:focus": {
|
|
1421
|
-
borderColor: "var(--neutral-0) !important",
|
|
1422
|
-
color: "var(--neutral-0)",
|
|
1423
|
-
fill: "var(--neutral-0)",
|
|
1424
|
-
".icon": {
|
|
1425
|
-
color: "var(--neutral-0)",
|
|
1426
|
-
fill: "var(--neutral-0)",
|
|
1427
|
-
},
|
|
1428
|
-
},
|
|
1429
|
-
"&:active": {
|
|
1430
|
-
borderColor: "var(--neutral-300) !important",
|
|
1431
|
-
color: "var(--neutral-300)",
|
|
1432
|
-
fill: "var(--neutral-300)",
|
|
1433
|
-
".icon": {
|
|
1434
|
-
color: "var(--neutral-300)",
|
|
1435
|
-
fill: "var(--neutral-300)",
|
|
1436
|
-
},
|
|
1437
|
-
},
|
|
1438
|
-
},
|
|
1439
|
-
".outline-button.lu-btn-disabled": {
|
|
1440
|
-
color: "#D2D3D5",
|
|
1441
|
-
borderColor: "#D2D3D5",
|
|
1442
|
-
fill: "#D2D3D5",
|
|
1443
|
-
backgroundColor: "var(--white)",
|
|
1444
|
-
border: "2px solid",
|
|
1445
|
-
},
|
|
1446
|
-
};
|
|
1447
|
-
exports.customButtonSize = {
|
|
1448
|
-
".lu-btn-xl": {
|
|
1449
|
-
//padding: top right bottom left
|
|
1450
|
-
padding: "var(--core-200) var(--core-300)",
|
|
1451
|
-
fontSize: "var(--core-250)",
|
|
1452
|
-
fontWeight: "400",
|
|
1453
|
-
},
|
|
1454
|
-
".lu-btn-lg": {
|
|
1455
|
-
padding: "var(--core-150) var(--core-250)",
|
|
1456
|
-
fontSize: "var(--core-225)",
|
|
1457
|
-
fontWeight: "400",
|
|
1458
|
-
},
|
|
1459
|
-
".lu-btn-md": {
|
|
1460
|
-
padding: "var(--core-100) var(--core-200)",
|
|
1461
|
-
fontSize: "var(--core-200)",
|
|
1462
|
-
fontWeight: "400",
|
|
1463
|
-
},
|
|
1464
|
-
".lu-btn-sm": {
|
|
1465
|
-
padding: "var(--core-100) var(--core-150)",
|
|
1466
|
-
fontSize: "var(--core-200)",
|
|
1467
|
-
fontWeight: "400",
|
|
1468
|
-
},
|
|
1469
|
-
};
|
|
1470
|
-
exports.customIconButtonSize = {
|
|
1471
|
-
".icon-only.lu-btn-xl": {
|
|
1472
|
-
//padding: top right bottom left
|
|
1473
|
-
padding: "var(--core-200)",
|
|
1474
|
-
},
|
|
1475
|
-
".icon-only.lu-btn-lg": {
|
|
1476
|
-
padding: "var(--core-150)",
|
|
1477
|
-
},
|
|
1478
|
-
".icon-only.lu-btn-md": {
|
|
1479
|
-
padding: "var(--core-100)",
|
|
1480
|
-
},
|
|
1481
|
-
".icon-only.lu-btn-sm": {
|
|
1482
|
-
padding: "var(--core-100)",
|
|
1483
|
-
},
|
|
1484
|
-
};
|
|
1485
|
-
exports.customAvatarSize = {
|
|
1486
|
-
".lu-avatar-massive": {
|
|
1487
|
-
width: "var(--core-1500)",
|
|
1488
|
-
height: "var(--core-1500)",
|
|
1489
|
-
},
|
|
1490
|
-
".lu-avatar-huge": {
|
|
1491
|
-
width: "var( --core-1000)",
|
|
1492
|
-
height: "var( --core-1000)",
|
|
1493
|
-
},
|
|
1494
|
-
".lu-avatar-7x-large": {
|
|
1495
|
-
width: "var(--core-800)",
|
|
1496
|
-
height: "var(--core-800)",
|
|
1497
|
-
},
|
|
1498
|
-
".lu-avatar-6x-large": {
|
|
1499
|
-
width: "var(--core-600)",
|
|
1500
|
-
height: "var(--core-600)",
|
|
1501
|
-
},
|
|
1502
|
-
".lu-avatar-5x-large": {
|
|
1503
|
-
width: "var(--core-450)",
|
|
1504
|
-
height: "var(--core-450)",
|
|
1505
|
-
},
|
|
1506
|
-
".lu-avatar-4x-large": {
|
|
1507
|
-
width: "var(--core-400)",
|
|
1508
|
-
height: "var(--core-400)",
|
|
1509
|
-
},
|
|
1510
|
-
".lu-avatar-3x-large": {
|
|
1511
|
-
width: "var(--core-350)",
|
|
1512
|
-
height: "var(--core-350)",
|
|
1513
|
-
},
|
|
1514
|
-
".lu-avatar-2x-large": {
|
|
1515
|
-
width: "var(--core-300)",
|
|
1516
|
-
height: "var(--core-300)",
|
|
1517
|
-
},
|
|
1518
|
-
".lu-avatar-x-large": {
|
|
1519
|
-
width: "var(--core-250)",
|
|
1520
|
-
height: "var(--core-250)",
|
|
1521
|
-
},
|
|
1522
|
-
".lu-avatar-large": {
|
|
1523
|
-
width: "var(--core-225)",
|
|
1524
|
-
height: "var(--core-225)",
|
|
1525
|
-
},
|
|
1526
|
-
".lu-avatar-medium": {
|
|
1527
|
-
width: "var(--core-200)",
|
|
1528
|
-
height: "var(--core-200)",
|
|
1529
|
-
},
|
|
1530
|
-
".lu-avatar-small": {
|
|
1531
|
-
width: "var(--core-175)",
|
|
1532
|
-
height: "var(--core-175)",
|
|
1533
|
-
},
|
|
1534
|
-
};
|
|
1535
|
-
exports.customizeAvatarShape = {
|
|
1536
|
-
".square": { borderRadius: "0px" },
|
|
1537
|
-
".circle": { borderRadius: "9999px" },
|
|
1538
|
-
};
|
|
1539
|
-
exports.customizeTextColors = {
|
|
1540
|
-
".lu-text-base": { color: "var(--neutral-0)" },
|
|
1541
|
-
".lu-text-default": { color: "var(--black)" },
|
|
1542
|
-
".lu-text-secondary": { color: "var(--neutral-800)" },
|
|
1543
|
-
".lu-text-caption": { color: "var(--neutral-500)" },
|
|
1544
|
-
".lu-text-placeholder": { color: "var(--neutral-400)" },
|
|
1545
|
-
".lu-text-disabled": { color: "var(--neutral-400)" },
|
|
1546
|
-
".lu-text-primary": { color: "var(--primary-600)" },
|
|
1547
|
-
".lu-text-success": { color: "var(--success-600)" },
|
|
1548
|
-
".lu-text-warning": { color: "var(--warning-500)" },
|
|
1549
|
-
".lu-text-danger": { color: "var(--danger-600)" },
|
|
1550
|
-
".lu-text-gray": { color: "var(--neutral-600)" },
|
|
1551
|
-
".lu-text-info": { color: "var(--info-600)" },
|
|
1552
|
-
".lu-text-link-default": { color: "var(--primary-400)" },
|
|
1553
|
-
".lu-text-link-pressed": { color: "var(--primary-600)" },
|
|
1554
|
-
};
|
|
1555
|
-
exports.customHeadings = {
|
|
1556
|
-
".lu-heading-h1": {
|
|
1557
|
-
fontSize: "var(--core-600)",
|
|
1558
|
-
fontWeight: "bold",
|
|
1559
|
-
lineHeight: "1",
|
|
1560
|
-
color: "var(--black)",
|
|
1561
|
-
},
|
|
1562
|
-
".lu-heading-h2": {
|
|
1563
|
-
fontSize: "var(--core-450)",
|
|
1564
|
-
fontWeight: "bold",
|
|
1565
|
-
lineHeight: "1",
|
|
1566
|
-
color: "var(--black)",
|
|
1567
|
-
},
|
|
1568
|
-
".lu-heading-h3": {
|
|
1569
|
-
fontSize: "var(--core-400)",
|
|
1570
|
-
fontWeight: "bold",
|
|
1571
|
-
lineHeight: "1",
|
|
1572
|
-
color: "var(--black)",
|
|
1573
|
-
},
|
|
1574
|
-
".lu-heading-h4": {
|
|
1575
|
-
fontSize: "var(--core-350)",
|
|
1576
|
-
fontWeight: "600",
|
|
1577
|
-
lineHeight: "1",
|
|
1578
|
-
color: "var(--black)",
|
|
1579
|
-
},
|
|
1580
|
-
".lu-heading-h5": {
|
|
1581
|
-
fontSize: "var(--core-300)",
|
|
1582
|
-
fontWeight: "600",
|
|
1583
|
-
lineHeight: "1",
|
|
1584
|
-
color: "var(--black)",
|
|
1585
|
-
},
|
|
1586
|
-
".lu-heading-h6": {
|
|
1587
|
-
fontSize: "var(--core-250)",
|
|
1588
|
-
fontWeight: "600",
|
|
1589
|
-
lineHeight: "1",
|
|
1590
|
-
color: "var(--black)",
|
|
1591
|
-
},
|
|
1592
|
-
};
|
|
1593
|
-
// Components CSS Classes
|
|
1594
|
-
exports.table_data_className = "bg-gray-100 lu-pt-050 lu-pr-100 lu-pb-050 lu-pl-100 rounded gap-2.5";
|
|
1595
|
-
exports.table_header_className = "lu-pd-200";
|
|
1596
|
-
exports.table_sub_heading_className = "lu-text-center lu-text-uppercase lu-font-weight-semibold lu-font-size-large lu-pd-200";
|
|
1597
|
-
exports.table_row_className = "lu-pd-200";
|