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