flowbite-angular 1.0.0-alpha.1 → 1.0.0-alpha.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 (586) hide show
  1. package/accordion/README.md +3 -0
  2. package/{lib/components/accordion → accordion}/accordion-content.component.d.ts +1 -1
  3. package/{lib/components/accordion → accordion}/accordion-content.theme.d.ts +1 -1
  4. package/{lib/components/accordion → accordion}/accordion-content.theme.service.d.ts +1 -1
  5. package/{lib/components/accordion → accordion}/accordion-panel.component.d.ts +1 -1
  6. package/{lib/components/accordion → accordion}/accordion-panel.theme.d.ts +1 -1
  7. package/{lib/components/accordion → accordion}/accordion-panel.theme.service.d.ts +1 -1
  8. package/{lib/components/accordion → accordion}/accordion-title.component.d.ts +2 -2
  9. package/{lib/components/accordion → accordion}/accordion-title.theme.d.ts +1 -2
  10. package/{lib/components/accordion → accordion}/accordion-title.theme.service.d.ts +1 -1
  11. package/{lib/components/accordion → accordion}/accordion.component.d.ts +1 -1
  12. package/{lib/components/accordion → accordion}/accordion.theme.d.ts +1 -4
  13. package/{lib/components/accordion → accordion}/accordion.theme.service.d.ts +1 -1
  14. package/{lib/components/accordion → accordion}/index.d.ts +5 -5
  15. package/alert/README.md +3 -0
  16. package/{lib/components/alert → alert}/alert.component.d.ts +5 -5
  17. package/{lib/components/alert → alert}/alert.theme.d.ts +1 -4
  18. package/{lib/components/alert → alert}/alert.theme.service.d.ts +1 -1
  19. package/badge/README.md +3 -0
  20. package/{lib/components/badge → badge}/badge.component.d.ts +4 -4
  21. package/{lib/components/badge → badge}/badge.theme.d.ts +1 -6
  22. package/{lib/components/badge → badge}/badge.theme.service.d.ts +1 -1
  23. package/{lib/components/badge → badge}/index.d.ts +1 -1
  24. package/{lib/components/base-component.directive.d.ts → base-component.directive.d.ts} +2 -2
  25. package/breadcrumb/README.md +3 -0
  26. package/{lib/components/breadcrumb → breadcrumb}/breadcrumb-item.component.d.ts +4 -4
  27. package/{lib/components/breadcrumb → breadcrumb}/breadcrumb-item.theme.d.ts +1 -2
  28. package/{lib/components/breadcrumb → breadcrumb}/breadcrumb-item.theme.service.d.ts +1 -1
  29. package/{lib/components/breadcrumb → breadcrumb}/breadcrumb.component.d.ts +1 -1
  30. package/{lib/components/breadcrumb → breadcrumb}/breadcrumb.theme.d.ts +1 -1
  31. package/{lib/components/breadcrumb → breadcrumb}/breadcrumb.theme.service.d.ts +1 -1
  32. package/{lib/components/breadcrumb → breadcrumb}/index.d.ts +4 -4
  33. package/button/README.md +3 -0
  34. package/{lib/components/button → button}/button.component.d.ts +2 -2
  35. package/{lib/components/button → button}/button.theme.d.ts +1 -8
  36. package/{lib/components/button → button}/button.theme.service.d.ts +1 -1
  37. package/core/README.md +3 -0
  38. package/core/index.d.ts +1 -0
  39. package/dark-theme-toggle/README.md +3 -0
  40. package/{lib/components/dark-theme-toggle → dark-theme-toggle}/dark-theme-toggle.component.d.ts +5 -5
  41. package/{lib/components/dark-theme-toggle → dark-theme-toggle}/dark-theme-toggle.theme.d.ts +1 -1
  42. package/{lib/components/dark-theme-toggle → dark-theme-toggle}/dark-theme-toggle.theme.service.d.ts +1 -1
  43. package/dark-theme-toggle/index.d.ts +3 -0
  44. package/dropdown/README.md +3 -0
  45. package/{lib/components/dropdown → dropdown}/dropdown-divider.component.d.ts +1 -1
  46. package/{lib/components/dropdown → dropdown}/dropdown-divider.theme.d.ts +1 -1
  47. package/{lib/components/dropdown → dropdown}/dropdown-divider.theme.service.d.ts +1 -1
  48. package/{lib/components/dropdown → dropdown}/dropdown-header.component.d.ts +1 -1
  49. package/{lib/components/dropdown → dropdown}/dropdown-header.theme.d.ts +1 -1
  50. package/{lib/components/dropdown → dropdown}/dropdown-header.theme.service.d.ts +1 -1
  51. package/{lib/components/dropdown → dropdown}/dropdown-item.component.d.ts +1 -1
  52. package/{lib/components/dropdown → dropdown}/dropdown-item.theme.d.ts +1 -1
  53. package/{lib/components/dropdown → dropdown}/dropdown-item.theme.service.d.ts +1 -1
  54. package/{lib/components/dropdown → dropdown}/dropdown.component.d.ts +2 -2
  55. package/{lib/components/dropdown → dropdown}/dropdown.theme.d.ts +1 -4
  56. package/{lib/components/dropdown → dropdown}/dropdown.theme.service.d.ts +1 -1
  57. package/{lib/components/dropdown → dropdown}/index.d.ts +7 -7
  58. package/esm2022/accordion/accordion-content.component.mjs +47 -0
  59. package/esm2022/accordion/accordion-content.theme.mjs +19 -0
  60. package/esm2022/accordion/accordion-content.theme.service.mjs +17 -0
  61. package/esm2022/accordion/accordion-panel.component.mjs +59 -0
  62. package/esm2022/accordion/accordion-panel.theme.mjs +7 -0
  63. package/esm2022/accordion/accordion-panel.theme.service.mjs +17 -0
  64. package/esm2022/accordion/accordion-title.component.mjs +71 -0
  65. package/esm2022/accordion/accordion-title.theme.mjs +26 -0
  66. package/esm2022/accordion/accordion-title.theme.service.mjs +18 -0
  67. package/esm2022/accordion/accordion.component.mjs +50 -0
  68. package/esm2022/accordion/accordion.theme.mjs +19 -0
  69. package/esm2022/accordion/accordion.theme.service.mjs +17 -0
  70. package/esm2022/accordion/flowbite-angular-accordion.mjs +5 -0
  71. package/esm2022/accordion/index.mjs +13 -0
  72. package/esm2022/alert/alert.component.mjs +96 -0
  73. package/esm2022/alert/alert.theme.mjs +34 -0
  74. package/esm2022/alert/alert.theme.service.mjs +18 -0
  75. package/esm2022/alert/flowbite-angular-alert.mjs +5 -0
  76. package/esm2022/alert/index.mjs +4 -0
  77. package/esm2022/badge/badge.component.mjs +48 -0
  78. package/esm2022/badge/badge.theme.mjs +34 -0
  79. package/esm2022/badge/badge.theme.service.mjs +19 -0
  80. package/esm2022/badge/flowbite-angular-badge.mjs +5 -0
  81. package/esm2022/badge/index.mjs +4 -0
  82. package/esm2022/base-component.directive.mjs +34 -0
  83. package/esm2022/breadcrumb/breadcrumb-item.component.mjs +59 -0
  84. package/esm2022/breadcrumb/breadcrumb-item.theme.mjs +18 -0
  85. package/esm2022/breadcrumb/breadcrumb-item.theme.service.mjs +18 -0
  86. package/esm2022/breadcrumb/breadcrumb.component.mjs +48 -0
  87. package/esm2022/breadcrumb/breadcrumb.theme.mjs +7 -0
  88. package/esm2022/breadcrumb/breadcrumb.theme.service.mjs +17 -0
  89. package/esm2022/breadcrumb/flowbite-angular-breadcrumb.mjs +5 -0
  90. package/esm2022/breadcrumb/index.mjs +7 -0
  91. package/esm2022/{lib/components/button → button}/button.component.mjs +9 -8
  92. package/esm2022/button/button.theme.mjs +113 -0
  93. package/esm2022/button/button.theme.service.mjs +24 -0
  94. package/esm2022/button/flowbite-angular-button.mjs +5 -0
  95. package/esm2022/button/index.mjs +4 -0
  96. package/esm2022/core/flowbite-angular-core.mjs +5 -0
  97. package/esm2022/core/flowbite.theme.init.mjs +281 -0
  98. package/esm2022/core/index.mjs +2 -0
  99. package/esm2022/dark-theme-toggle/dark-theme-toggle.component.mjs +78 -0
  100. package/esm2022/dark-theme-toggle/dark-theme-toggle.theme.mjs +7 -0
  101. package/esm2022/dark-theme-toggle/dark-theme-toggle.theme.service.mjs +17 -0
  102. package/esm2022/dark-theme-toggle/flowbite-angular-dark-theme-toggle.mjs +5 -0
  103. package/esm2022/dark-theme-toggle/index.mjs +4 -0
  104. package/esm2022/dropdown/dropdown-divider.component.mjs +36 -0
  105. package/esm2022/dropdown/dropdown-divider.theme.mjs +7 -0
  106. package/esm2022/dropdown/dropdown-divider.theme.service.mjs +17 -0
  107. package/esm2022/dropdown/dropdown-header.component.mjs +46 -0
  108. package/esm2022/dropdown/dropdown-header.theme.mjs +10 -0
  109. package/esm2022/dropdown/dropdown-header.theme.service.mjs +18 -0
  110. package/esm2022/dropdown/dropdown-item.component.mjs +36 -0
  111. package/esm2022/dropdown/dropdown-item.theme.mjs +6 -0
  112. package/esm2022/dropdown/dropdown-item.theme.service.mjs +17 -0
  113. package/esm2022/dropdown/dropdown.component.mjs +150 -0
  114. package/esm2022/dropdown/dropdown.theme.mjs +32 -0
  115. package/esm2022/dropdown/dropdown.theme.service.mjs +22 -0
  116. package/esm2022/dropdown/flowbite-angular-dropdown.mjs +5 -0
  117. package/esm2022/dropdown/index.mjs +13 -0
  118. package/esm2022/flowbite-angular.mjs +2 -2
  119. package/esm2022/flowbite.theme.service.mjs +16 -0
  120. package/esm2022/icon/flowbite-angular-icon.mjs +5 -0
  121. package/esm2022/icon/icon-registry.mjs +159 -0
  122. package/esm2022/icon/icon.component.mjs +72 -0
  123. package/esm2022/icon/index.mjs +4 -0
  124. package/esm2022/icon/trusted-types.mjs +21 -0
  125. package/esm2022/index.mjs +4 -0
  126. package/esm2022/indicator/flowbite-angular-indicator.mjs +5 -0
  127. package/esm2022/indicator/index.mjs +4 -0
  128. package/esm2022/indicator/indicators.component.mjs +55 -0
  129. package/esm2022/indicator/indicators.theme.mjs +68 -0
  130. package/esm2022/indicator/indicators.theme.service.mjs +19 -0
  131. package/esm2022/modal/flowbite-angular-modal.mjs +5 -0
  132. package/esm2022/modal/index.mjs +13 -0
  133. package/esm2022/modal/modal-body.component.mjs +36 -0
  134. package/esm2022/modal/modal-body.theme.mjs +7 -0
  135. package/esm2022/modal/modal-body.theme.service.mjs +17 -0
  136. package/esm2022/modal/modal-footer.component.mjs +36 -0
  137. package/esm2022/modal/modal-footer.theme.mjs +7 -0
  138. package/esm2022/modal/modal-footer.theme.service.mjs +17 -0
  139. package/esm2022/modal/modal-header.component.mjs +68 -0
  140. package/esm2022/modal/modal-header.theme.mjs +13 -0
  141. package/esm2022/modal/modal-header.theme.service.mjs +19 -0
  142. package/esm2022/modal/modal.component.mjs +143 -0
  143. package/esm2022/modal/modal.theme.mjs +33 -0
  144. package/esm2022/modal/modal.theme.service.mjs +20 -0
  145. package/esm2022/navbar/flowbite-angular-navbar.mjs +5 -0
  146. package/esm2022/navbar/index.mjs +19 -0
  147. package/esm2022/navbar/navbar-brand.component.mjs +36 -0
  148. package/esm2022/navbar/navbar-brand.theme.mjs +7 -0
  149. package/esm2022/navbar/navbar-brand.theme.service.mjs +17 -0
  150. package/esm2022/navbar/navbar-content.component.mjs +46 -0
  151. package/esm2022/navbar/navbar-content.theme.mjs +14 -0
  152. package/esm2022/navbar/navbar-content.theme.service.mjs +18 -0
  153. package/esm2022/navbar/navbar-icon-button.component.mjs +44 -0
  154. package/esm2022/navbar/navbar-icon-button.theme.mjs +15 -0
  155. package/esm2022/navbar/navbar-icon-button.theme.service.mjs +17 -0
  156. package/esm2022/navbar/navbar-item.component.mjs +51 -0
  157. package/esm2022/{lib/components/navbar → navbar}/navbar-item.theme.mjs +2 -2
  158. package/esm2022/navbar/navbar-item.theme.service.mjs +17 -0
  159. package/esm2022/navbar/navbar-toggle.component.mjs +52 -0
  160. package/esm2022/navbar/navbar-toggle.theme.mjs +7 -0
  161. package/esm2022/navbar/navbar-toggle.theme.service.mjs +17 -0
  162. package/esm2022/navbar/navbar.component.mjs +63 -0
  163. package/esm2022/navbar/navbar.theme.mjs +23 -0
  164. package/esm2022/navbar/navbar.theme.service.mjs +17 -0
  165. package/esm2022/router-link/flowbite-angular-router-link.mjs +5 -0
  166. package/esm2022/router-link/flowbite-router-link.directive.mjs +54 -0
  167. package/esm2022/router-link/index.mjs +2 -0
  168. package/esm2022/router-link-active/flowbite-angular-router-link-active.mjs +5 -0
  169. package/esm2022/router-link-active/flowbite-router-link-active.directive.mjs +49 -0
  170. package/esm2022/router-link-active/index.mjs +2 -0
  171. package/esm2022/sanitize-html/flowbite-angular-sanitize-html.mjs +5 -0
  172. package/esm2022/sanitize-html/index.mjs +2 -0
  173. package/esm2022/sanitize-html/sanitize-html.pipe.mjs +32 -0
  174. package/esm2022/scroll-top/flowbite-angular-scroll-top.mjs +5 -0
  175. package/esm2022/scroll-top/index.mjs +4 -0
  176. package/esm2022/scroll-top/scroll-top.component.mjs +52 -0
  177. package/esm2022/{lib/components/scroll-top → scroll-top}/scroll-top.theme.mjs +2 -2
  178. package/esm2022/scroll-top/scroll-top.theme.service.mjs +17 -0
  179. package/esm2022/sidebar/flowbite-angular-sidebar.mjs +5 -0
  180. package/esm2022/sidebar/index.mjs +19 -0
  181. package/esm2022/sidebar/sidebar-item-group.component.mjs +83 -0
  182. package/esm2022/sidebar/sidebar-item-group.theme.mjs +18 -0
  183. package/esm2022/sidebar/sidebar-item-group.theme.service.mjs +18 -0
  184. package/esm2022/sidebar/sidebar-item.component.mjs +79 -0
  185. package/esm2022/sidebar/sidebar-item.theme.mjs +18 -0
  186. package/esm2022/sidebar/sidebar-item.theme.service.mjs +18 -0
  187. package/esm2022/sidebar/sidebar-menu.component.mjs +50 -0
  188. package/esm2022/sidebar/sidebar-menu.theme.mjs +24 -0
  189. package/esm2022/sidebar/sidebar-menu.theme.service.mjs +17 -0
  190. package/esm2022/sidebar/sidebar-page-content.component.mjs +37 -0
  191. package/esm2022/sidebar/sidebar-page-content.theme.mjs +12 -0
  192. package/esm2022/sidebar/sidebar-page-content.theme.service.mjs +17 -0
  193. package/esm2022/sidebar/sidebar-toggle.component.mjs +55 -0
  194. package/esm2022/sidebar/sidebar-toggle.theme.mjs +18 -0
  195. package/esm2022/sidebar/sidebar-toggle.theme.service.mjs +17 -0
  196. package/esm2022/sidebar/sidebar.component.mjs +62 -0
  197. package/esm2022/sidebar/sidebar.theme.mjs +11 -0
  198. package/esm2022/sidebar/sidebar.theme.service.mjs +17 -0
  199. package/esm2022/type-definitions/colors/flowbite.colors.mjs +2 -0
  200. package/esm2022/type-definitions/colors/flowbite.gradient-colors.mjs +2 -0
  201. package/esm2022/type-definitions/colors/flowbite.gradient-duo-tone-colors.mjs +2 -0
  202. package/esm2022/type-definitions/colors/index.mjs +2 -0
  203. package/esm2022/type-definitions/flowbite.boolean.mjs +10 -0
  204. package/esm2022/type-definitions/flowbite.class.mjs +2 -0
  205. package/esm2022/type-definitions/flowbite.combination.mjs +5 -0
  206. package/esm2022/type-definitions/flowbite.content-positions.mjs +2 -0
  207. package/esm2022/type-definitions/flowbite.deep-partial.mjs +2 -0
  208. package/esm2022/type-definitions/flowbite.heading-levels.mjs +2 -0
  209. package/esm2022/type-definitions/flowbite.positions.mjs +2 -0
  210. package/esm2022/type-definitions/flowbite.router-link-parameter.mjs +2 -0
  211. package/esm2022/type-definitions/flowbite.sizes.mjs +2 -0
  212. package/esm2022/type-definitions/flowbite.themes.mjs +2 -0
  213. package/esm2022/type-definitions/index.mjs +3 -0
  214. package/esm2022/utils/flowbite-angular-utils.mjs +5 -0
  215. package/esm2022/utils/icon.list.mjs +39 -0
  216. package/esm2022/utils/id.generator.mjs +81 -0
  217. package/esm2022/utils/index.mjs +9 -0
  218. package/esm2022/utils/theme/clone-deep.mjs +18 -0
  219. package/esm2022/utils/theme/create-class.mjs +10 -0
  220. package/esm2022/utils/theme/create-theme.mjs +10 -0
  221. package/esm2022/utils/theme/is-object.mjs +10 -0
  222. package/esm2022/utils/theme/merge-theme.mjs +29 -0
  223. package/esm2022/utils/theme/to-string.mjs +10 -0
  224. package/fesm2022/flowbite-angular-accordion.mjs +338 -0
  225. package/fesm2022/flowbite-angular-accordion.mjs.map +1 -0
  226. package/fesm2022/flowbite-angular-alert.mjs +151 -0
  227. package/fesm2022/flowbite-angular-alert.mjs.map +1 -0
  228. package/fesm2022/flowbite-angular-badge.mjs +105 -0
  229. package/fesm2022/flowbite-angular-badge.mjs.map +1 -0
  230. package/fesm2022/flowbite-angular-breadcrumb.mjs +159 -0
  231. package/fesm2022/flowbite-angular-breadcrumb.mjs.map +1 -0
  232. package/fesm2022/flowbite-angular-button.mjs +223 -0
  233. package/fesm2022/flowbite-angular-button.mjs.map +1 -0
  234. package/fesm2022/flowbite-angular-core.mjs +288 -0
  235. package/fesm2022/flowbite-angular-core.mjs.map +1 -0
  236. package/fesm2022/flowbite-angular-dark-theme-toggle.mjs +105 -0
  237. package/fesm2022/flowbite-angular-dark-theme-toggle.mjs.map +1 -0
  238. package/fesm2022/flowbite-angular-dropdown.mjs +368 -0
  239. package/fesm2022/flowbite-angular-dropdown.mjs.map +1 -0
  240. package/fesm2022/flowbite-angular-icon.mjs +254 -0
  241. package/fesm2022/flowbite-angular-icon.mjs.map +1 -0
  242. package/fesm2022/flowbite-angular-indicator.mjs +146 -0
  243. package/fesm2022/flowbite-angular-indicator.mjs.map +1 -0
  244. package/fesm2022/flowbite-angular-modal.mjs +386 -0
  245. package/fesm2022/flowbite-angular-modal.mjs.map +1 -0
  246. package/fesm2022/flowbite-angular-navbar.mjs +422 -0
  247. package/fesm2022/flowbite-angular-navbar.mjs.map +1 -0
  248. package/fesm2022/flowbite-angular-router-link-active.mjs +56 -0
  249. package/fesm2022/flowbite-angular-router-link-active.mjs.map +1 -0
  250. package/fesm2022/flowbite-angular-router-link.mjs +61 -0
  251. package/fesm2022/flowbite-angular-router-link.mjs.map +1 -0
  252. package/fesm2022/flowbite-angular-sanitize-html.mjs +39 -0
  253. package/fesm2022/flowbite-angular-sanitize-html.mjs.map +1 -0
  254. package/fesm2022/flowbite-angular-scroll-top.mjs +99 -0
  255. package/fesm2022/flowbite-angular-scroll-top.mjs.map +1 -0
  256. package/fesm2022/flowbite-angular-sidebar.mjs +518 -0
  257. package/fesm2022/flowbite-angular-sidebar.mjs.map +1 -0
  258. package/fesm2022/flowbite-angular-utils.mjs +210 -0
  259. package/fesm2022/flowbite-angular-utils.mjs.map +1 -0
  260. package/fesm2022/flowbite-angular.mjs +16 -4277
  261. package/fesm2022/flowbite-angular.mjs.map +1 -1
  262. package/{lib/services/flowbite.theme.service.d.ts → flowbite.theme.service.d.ts} +1 -1
  263. package/icon/README.md +3 -0
  264. package/{lib/components/icon → icon}/icon.component.d.ts +2 -2
  265. package/index.d.ts +3 -5
  266. package/indicator/README.md +3 -0
  267. package/{lib/components/indicators → indicator}/indicators.component.d.ts +14 -14
  268. package/{lib/components/indicators → indicator}/indicators.theme.d.ts +1 -6
  269. package/{lib/components/indicators → indicator}/indicators.theme.service.d.ts +1 -1
  270. package/modal/README.md +3 -0
  271. package/{lib/components/modal → modal}/index.d.ts +5 -5
  272. package/{lib/components/modal → modal}/modal-body.component.d.ts +1 -1
  273. package/{lib/components/modal → modal}/modal-body.theme.d.ts +1 -1
  274. package/{lib/components/modal → modal}/modal-body.theme.service.d.ts +1 -1
  275. package/{lib/components/modal → modal}/modal-footer.component.d.ts +1 -1
  276. package/{lib/components/modal → modal}/modal-footer.theme.d.ts +1 -1
  277. package/{lib/components/modal → modal}/modal-footer.theme.service.d.ts +1 -1
  278. package/{lib/components/modal → modal}/modal-header.component.d.ts +2 -2
  279. package/{lib/components/modal → modal}/modal-header.theme.d.ts +1 -1
  280. package/{lib/components/modal → modal}/modal-header.theme.service.d.ts +1 -1
  281. package/{lib/components/modal → modal}/modal.component.d.ts +6 -6
  282. package/{lib/components/modal → modal}/modal.theme.d.ts +1 -5
  283. package/{lib/components/modal → modal}/modal.theme.service.d.ts +1 -1
  284. package/navbar/README.md +3 -0
  285. package/{lib/components/navbar → navbar}/index.d.ts +7 -7
  286. package/{lib/components/navbar → navbar}/navbar-brand.component.d.ts +1 -1
  287. package/{lib/components/navbar → navbar}/navbar-brand.theme.d.ts +1 -1
  288. package/{lib/components/navbar → navbar}/navbar-brand.theme.service.d.ts +1 -1
  289. package/{lib/components/navbar → navbar}/navbar-content.component.d.ts +1 -1
  290. package/{lib/components/navbar → navbar}/navbar-content.theme.d.ts +1 -1
  291. package/{lib/components/navbar → navbar}/navbar-content.theme.service.d.ts +1 -1
  292. package/{lib/components/navbar → navbar}/navbar-icon-button.component.d.ts +1 -1
  293. package/{lib/components/navbar → navbar}/navbar-icon-button.theme.d.ts +1 -1
  294. package/{lib/components/navbar → navbar}/navbar-icon-button.theme.service.d.ts +1 -1
  295. package/{lib/components/navbar → navbar}/navbar-item.component.d.ts +3 -3
  296. package/{lib/components/navbar → navbar}/navbar-item.theme.d.ts +1 -2
  297. package/{lib/components/navbar → navbar}/navbar-item.theme.service.d.ts +1 -1
  298. package/{lib/components/navbar → navbar}/navbar-toggle.component.d.ts +2 -2
  299. package/{lib/components/navbar → navbar}/navbar-toggle.theme.d.ts +1 -1
  300. package/{lib/components/navbar → navbar}/navbar-toggle.theme.service.d.ts +1 -1
  301. package/{lib/components/navbar → navbar}/navbar.component.d.ts +1 -1
  302. package/{lib/components/navbar → navbar}/navbar.theme.d.ts +1 -4
  303. package/{lib/components/navbar → navbar}/navbar.theme.service.d.ts +1 -1
  304. package/package.json +123 -15
  305. package/router-link/README.md +3 -0
  306. package/router-link/index.d.ts +1 -0
  307. package/router-link-active/README.md +3 -0
  308. package/{lib/directives → router-link-active}/index.d.ts +0 -1
  309. package/sanitize-html/README.md +3 -0
  310. package/scroll-top/README.md +3 -0
  311. package/{lib/components/scroll-top → scroll-top}/scroll-top.component.d.ts +7 -7
  312. package/{lib/components/scroll-top → scroll-top}/scroll-top.theme.d.ts +1 -1
  313. package/{lib/components/scroll-top → scroll-top}/scroll-top.theme.service.d.ts +1 -1
  314. package/sidebar/README.md +3 -0
  315. package/{lib/components/sidebar → sidebar}/index.d.ts +6 -6
  316. package/{lib/components/sidebar → sidebar}/sidebar-item-group.component.d.ts +3 -3
  317. package/{lib/components/sidebar → sidebar}/sidebar-item-group.theme.d.ts +1 -1
  318. package/{lib/components/sidebar → sidebar}/sidebar-item-group.theme.service.d.ts +1 -1
  319. package/{lib/components/sidebar → sidebar}/sidebar-item.component.d.ts +4 -4
  320. package/{lib/components/sidebar → sidebar}/sidebar-item.theme.d.ts +1 -2
  321. package/{lib/components/sidebar → sidebar}/sidebar-item.theme.service.d.ts +1 -1
  322. package/{lib/components/sidebar → sidebar}/sidebar-menu.component.d.ts +2 -2
  323. package/{lib/components/sidebar → sidebar}/sidebar-menu.theme.d.ts +1 -1
  324. package/{lib/components/sidebar → sidebar}/sidebar-menu.theme.service.d.ts +1 -1
  325. package/{lib/components/sidebar → sidebar}/sidebar-page-content.component.d.ts +1 -1
  326. package/{lib/components/sidebar → sidebar}/sidebar-page-content.theme.d.ts +1 -1
  327. package/{lib/components/sidebar → sidebar}/sidebar-page-content.theme.service.d.ts +1 -1
  328. package/{lib/components/sidebar → sidebar}/sidebar-toggle.component.d.ts +3 -3
  329. package/{lib/components/sidebar → sidebar}/sidebar-toggle.theme.d.ts +1 -1
  330. package/{lib/components/sidebar → sidebar}/sidebar-toggle.theme.service.d.ts +1 -1
  331. package/{lib/components/sidebar → sidebar}/sidebar.component.d.ts +1 -1
  332. package/{lib/components/sidebar → sidebar}/sidebar.theme.d.ts +1 -4
  333. package/{lib/components/sidebar → sidebar}/sidebar.theme.service.d.ts +1 -1
  334. package/{lib/utils/boolean.util.d.ts → type-definitions/flowbite.boolean.d.ts} +7 -1
  335. package/{lib/common/type-definitions → type-definitions}/index.d.ts +1 -0
  336. package/utils/README.md +3 -0
  337. package/{lib/utils → utils}/index.d.ts +1 -1
  338. package/esm2022/lib/common/flowbite.theme.init.mjs +0 -318
  339. package/esm2022/lib/common/index.mjs +0 -3
  340. package/esm2022/lib/common/type-definitions/colors/flowbite.colors.mjs +0 -2
  341. package/esm2022/lib/common/type-definitions/colors/flowbite.gradient-colors.mjs +0 -2
  342. package/esm2022/lib/common/type-definitions/colors/flowbite.gradient-duo-tone-colors.mjs +0 -2
  343. package/esm2022/lib/common/type-definitions/colors/index.mjs +0 -2
  344. package/esm2022/lib/common/type-definitions/flowbite.boolean.mjs +0 -2
  345. package/esm2022/lib/common/type-definitions/flowbite.class.mjs +0 -2
  346. package/esm2022/lib/common/type-definitions/flowbite.combination.mjs +0 -5
  347. package/esm2022/lib/common/type-definitions/flowbite.content-positions.mjs +0 -2
  348. package/esm2022/lib/common/type-definitions/flowbite.deep-partial.mjs +0 -2
  349. package/esm2022/lib/common/type-definitions/flowbite.heading-levels.mjs +0 -2
  350. package/esm2022/lib/common/type-definitions/flowbite.positions.mjs +0 -2
  351. package/esm2022/lib/common/type-definitions/flowbite.router-link-parameter.mjs +0 -2
  352. package/esm2022/lib/common/type-definitions/flowbite.sizes.mjs +0 -2
  353. package/esm2022/lib/common/type-definitions/flowbite.themes.mjs +0 -2
  354. package/esm2022/lib/common/type-definitions/index.mjs +0 -2
  355. package/esm2022/lib/components/accordion/accordion-content.component.mjs +0 -46
  356. package/esm2022/lib/components/accordion/accordion-content.theme.mjs +0 -19
  357. package/esm2022/lib/components/accordion/accordion-content.theme.service.mjs +0 -17
  358. package/esm2022/lib/components/accordion/accordion-panel.component.mjs +0 -57
  359. package/esm2022/lib/components/accordion/accordion-panel.theme.mjs +0 -7
  360. package/esm2022/lib/components/accordion/accordion-panel.theme.service.mjs +0 -17
  361. package/esm2022/lib/components/accordion/accordion-title.component.mjs +0 -70
  362. package/esm2022/lib/components/accordion/accordion-title.theme.mjs +0 -26
  363. package/esm2022/lib/components/accordion/accordion-title.theme.service.mjs +0 -18
  364. package/esm2022/lib/components/accordion/accordion.component.mjs +0 -49
  365. package/esm2022/lib/components/accordion/accordion.theme.mjs +0 -19
  366. package/esm2022/lib/components/accordion/accordion.theme.service.mjs +0 -17
  367. package/esm2022/lib/components/accordion/index.mjs +0 -13
  368. package/esm2022/lib/components/alert/alert.component.mjs +0 -99
  369. package/esm2022/lib/components/alert/alert.theme.mjs +0 -34
  370. package/esm2022/lib/components/alert/alert.theme.service.mjs +0 -18
  371. package/esm2022/lib/components/alert/index.mjs +0 -4
  372. package/esm2022/lib/components/badge/badge.component.mjs +0 -47
  373. package/esm2022/lib/components/badge/badge.theme.mjs +0 -34
  374. package/esm2022/lib/components/badge/badge.theme.service.mjs +0 -17
  375. package/esm2022/lib/components/badge/index.mjs +0 -4
  376. package/esm2022/lib/components/base-component.directive.mjs +0 -34
  377. package/esm2022/lib/components/breadcrumb/breadcrumb-item.component.mjs +0 -57
  378. package/esm2022/lib/components/breadcrumb/breadcrumb-item.theme.mjs +0 -18
  379. package/esm2022/lib/components/breadcrumb/breadcrumb-item.theme.service.mjs +0 -18
  380. package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +0 -46
  381. package/esm2022/lib/components/breadcrumb/breadcrumb.theme.mjs +0 -7
  382. package/esm2022/lib/components/breadcrumb/breadcrumb.theme.service.mjs +0 -17
  383. package/esm2022/lib/components/breadcrumb/index.mjs +0 -7
  384. package/esm2022/lib/components/button/button.theme.mjs +0 -113
  385. package/esm2022/lib/components/button/button.theme.service.mjs +0 -24
  386. package/esm2022/lib/components/button/index.mjs +0 -4
  387. package/esm2022/lib/components/dark-theme-toggle/dark-theme-toggle.component.mjs +0 -86
  388. package/esm2022/lib/components/dark-theme-toggle/dark-theme-toggle.theme.mjs +0 -7
  389. package/esm2022/lib/components/dark-theme-toggle/dark-theme-toggle.theme.service.mjs +0 -17
  390. package/esm2022/lib/components/dark-theme-toggle/index.mjs +0 -4
  391. package/esm2022/lib/components/dropdown/dropdown-divider.component.mjs +0 -34
  392. package/esm2022/lib/components/dropdown/dropdown-divider.theme.mjs +0 -7
  393. package/esm2022/lib/components/dropdown/dropdown-divider.theme.service.mjs +0 -17
  394. package/esm2022/lib/components/dropdown/dropdown-header.component.mjs +0 -44
  395. package/esm2022/lib/components/dropdown/dropdown-header.theme.mjs +0 -10
  396. package/esm2022/lib/components/dropdown/dropdown-header.theme.service.mjs +0 -18
  397. package/esm2022/lib/components/dropdown/dropdown-item.component.mjs +0 -34
  398. package/esm2022/lib/components/dropdown/dropdown-item.theme.mjs +0 -6
  399. package/esm2022/lib/components/dropdown/dropdown-item.theme.service.mjs +0 -17
  400. package/esm2022/lib/components/dropdown/dropdown.component.mjs +0 -161
  401. package/esm2022/lib/components/dropdown/dropdown.theme.mjs +0 -32
  402. package/esm2022/lib/components/dropdown/dropdown.theme.service.mjs +0 -22
  403. package/esm2022/lib/components/dropdown/index.mjs +0 -13
  404. package/esm2022/lib/components/form-field/directives/addon.directive.mjs +0 -32
  405. package/esm2022/lib/components/form-field/directives/addon.directive.theme.mjs +0 -8
  406. package/esm2022/lib/components/form-field/directives/addon.directive.theme.service.mjs +0 -17
  407. package/esm2022/lib/components/form-field/directives/base-input.directive.mjs +0 -26
  408. package/esm2022/lib/components/form-field/directives/helper.directive.mjs +0 -34
  409. package/esm2022/lib/components/form-field/directives/helper.directive.theme.mjs +0 -12
  410. package/esm2022/lib/components/form-field/directives/helper.directive.theme.service.mjs +0 -17
  411. package/esm2022/lib/components/form-field/directives/icon.directive.mjs +0 -32
  412. package/esm2022/lib/components/form-field/directives/icon.directive.theme.mjs +0 -8
  413. package/esm2022/lib/components/form-field/directives/icon.directive.theme.service.mjs +0 -17
  414. package/esm2022/lib/components/form-field/directives/index.mjs +0 -17
  415. package/esm2022/lib/components/form-field/directives/input.directive.mjs +0 -41
  416. package/esm2022/lib/components/form-field/directives/input.directive.theme.mjs +0 -79
  417. package/esm2022/lib/components/form-field/directives/input.directive.theme.service.mjs +0 -24
  418. package/esm2022/lib/components/form-field/directives/label.directive.mjs +0 -41
  419. package/esm2022/lib/components/form-field/directives/label.directive.theme.mjs +0 -51
  420. package/esm2022/lib/components/form-field/directives/label.directive.theme.service.mjs +0 -21
  421. package/esm2022/lib/components/form-field/form-field.component.mjs +0 -40
  422. package/esm2022/lib/components/form-field/form-field.theme.mjs +0 -8
  423. package/esm2022/lib/components/form-field/form-field.theme.service.mjs +0 -17
  424. package/esm2022/lib/components/form-field/index.mjs +0 -5
  425. package/esm2022/lib/components/icon/icon-registry.mjs +0 -159
  426. package/esm2022/lib/components/icon/icon.component.mjs +0 -67
  427. package/esm2022/lib/components/icon/index.mjs +0 -4
  428. package/esm2022/lib/components/icon/trusted-types.mjs +0 -21
  429. package/esm2022/lib/components/index.mjs +0 -16
  430. package/esm2022/lib/components/indicators/index.mjs +0 -4
  431. package/esm2022/lib/components/indicators/indicators.component.mjs +0 -54
  432. package/esm2022/lib/components/indicators/indicators.theme.mjs +0 -68
  433. package/esm2022/lib/components/indicators/indicators.theme.service.mjs +0 -17
  434. package/esm2022/lib/components/modal/index.mjs +0 -13
  435. package/esm2022/lib/components/modal/modal-body.component.mjs +0 -34
  436. package/esm2022/lib/components/modal/modal-body.theme.mjs +0 -7
  437. package/esm2022/lib/components/modal/modal-body.theme.service.mjs +0 -17
  438. package/esm2022/lib/components/modal/modal-footer.component.mjs +0 -34
  439. package/esm2022/lib/components/modal/modal-footer.theme.mjs +0 -7
  440. package/esm2022/lib/components/modal/modal-footer.theme.service.mjs +0 -17
  441. package/esm2022/lib/components/modal/modal-header.component.mjs +0 -70
  442. package/esm2022/lib/components/modal/modal-header.theme.mjs +0 -13
  443. package/esm2022/lib/components/modal/modal-header.theme.service.mjs +0 -19
  444. package/esm2022/lib/components/modal/modal.component.mjs +0 -146
  445. package/esm2022/lib/components/modal/modal.theme.mjs +0 -33
  446. package/esm2022/lib/components/modal/modal.theme.service.mjs +0 -20
  447. package/esm2022/lib/components/navbar/index.mjs +0 -19
  448. package/esm2022/lib/components/navbar/navbar-brand.component.mjs +0 -34
  449. package/esm2022/lib/components/navbar/navbar-brand.theme.mjs +0 -7
  450. package/esm2022/lib/components/navbar/navbar-brand.theme.service.mjs +0 -17
  451. package/esm2022/lib/components/navbar/navbar-content.component.mjs +0 -45
  452. package/esm2022/lib/components/navbar/navbar-content.theme.mjs +0 -14
  453. package/esm2022/lib/components/navbar/navbar-content.theme.service.mjs +0 -18
  454. package/esm2022/lib/components/navbar/navbar-icon-button.component.mjs +0 -42
  455. package/esm2022/lib/components/navbar/navbar-icon-button.theme.mjs +0 -15
  456. package/esm2022/lib/components/navbar/navbar-icon-button.theme.service.mjs +0 -17
  457. package/esm2022/lib/components/navbar/navbar-item.component.mjs +0 -47
  458. package/esm2022/lib/components/navbar/navbar-item.theme.service.mjs +0 -17
  459. package/esm2022/lib/components/navbar/navbar-toggle.component.mjs +0 -58
  460. package/esm2022/lib/components/navbar/navbar-toggle.theme.mjs +0 -7
  461. package/esm2022/lib/components/navbar/navbar-toggle.theme.service.mjs +0 -17
  462. package/esm2022/lib/components/navbar/navbar.component.mjs +0 -62
  463. package/esm2022/lib/components/navbar/navbar.theme.mjs +0 -23
  464. package/esm2022/lib/components/navbar/navbar.theme.service.mjs +0 -17
  465. package/esm2022/lib/components/scroll-top/index.mjs +0 -4
  466. package/esm2022/lib/components/scroll-top/scroll-top.component.mjs +0 -54
  467. package/esm2022/lib/components/scroll-top/scroll-top.theme.service.mjs +0 -17
  468. package/esm2022/lib/components/sidebar/index.mjs +0 -19
  469. package/esm2022/lib/components/sidebar/sidebar-item-group.component.mjs +0 -85
  470. package/esm2022/lib/components/sidebar/sidebar-item-group.theme.mjs +0 -18
  471. package/esm2022/lib/components/sidebar/sidebar-item-group.theme.service.mjs +0 -18
  472. package/esm2022/lib/components/sidebar/sidebar-item.component.mjs +0 -85
  473. package/esm2022/lib/components/sidebar/sidebar-item.theme.mjs +0 -18
  474. package/esm2022/lib/components/sidebar/sidebar-item.theme.service.mjs +0 -18
  475. package/esm2022/lib/components/sidebar/sidebar-menu.component.mjs +0 -49
  476. package/esm2022/lib/components/sidebar/sidebar-menu.theme.mjs +0 -24
  477. package/esm2022/lib/components/sidebar/sidebar-menu.theme.service.mjs +0 -17
  478. package/esm2022/lib/components/sidebar/sidebar-page-content.component.mjs +0 -36
  479. package/esm2022/lib/components/sidebar/sidebar-page-content.theme.mjs +0 -12
  480. package/esm2022/lib/components/sidebar/sidebar-page-content.theme.service.mjs +0 -17
  481. package/esm2022/lib/components/sidebar/sidebar-toggle.component.mjs +0 -53
  482. package/esm2022/lib/components/sidebar/sidebar-toggle.theme.mjs +0 -18
  483. package/esm2022/lib/components/sidebar/sidebar-toggle.theme.service.mjs +0 -17
  484. package/esm2022/lib/components/sidebar/sidebar.component.mjs +0 -61
  485. package/esm2022/lib/components/sidebar/sidebar.theme.mjs +0 -11
  486. package/esm2022/lib/components/sidebar/sidebar.theme.service.mjs +0 -17
  487. package/esm2022/lib/directives/flowbite-router-link-active.directive.mjs +0 -51
  488. package/esm2022/lib/directives/flowbite-router-link.directive.mjs +0 -44
  489. package/esm2022/lib/directives/index.mjs +0 -3
  490. package/esm2022/lib/pipes/index.mjs +0 -2
  491. package/esm2022/lib/pipes/sanitize-html/index.mjs +0 -2
  492. package/esm2022/lib/pipes/sanitize-html/sanitize-html.pipe.mjs +0 -32
  493. package/esm2022/lib/services/flowbite.theme.service.mjs +0 -16
  494. package/esm2022/lib/services/index.mjs +0 -4
  495. package/esm2022/lib/services/signal-store.service.mjs +0 -61
  496. package/esm2022/lib/services/state/index.mjs +0 -2
  497. package/esm2022/lib/services/state/theme.state.mjs +0 -2
  498. package/esm2022/lib/utils/boolean.util.mjs +0 -10
  499. package/esm2022/lib/utils/directives/index.mjs +0 -3
  500. package/esm2022/lib/utils/directives/inputs/index.mjs +0 -3
  501. package/esm2022/lib/utils/directives/inputs/router-link-active.input.mjs +0 -8
  502. package/esm2022/lib/utils/directives/inputs/router-link.inputs.mjs +0 -20
  503. package/esm2022/lib/utils/directives/outputs/index.mjs +0 -3
  504. package/esm2022/lib/utils/directives/outputs/router-link-active.output.mjs +0 -8
  505. package/esm2022/lib/utils/directives/outputs/router-link.output.mjs +0 -8
  506. package/esm2022/lib/utils/icon.list.mjs +0 -39
  507. package/esm2022/lib/utils/id.generator.mjs +0 -81
  508. package/esm2022/lib/utils/index.mjs +0 -9
  509. package/esm2022/lib/utils/theme/clone-deep.mjs +0 -18
  510. package/esm2022/lib/utils/theme/create-class.mjs +0 -10
  511. package/esm2022/lib/utils/theme/create-theme.mjs +0 -10
  512. package/esm2022/lib/utils/theme/is-object.mjs +0 -10
  513. package/esm2022/lib/utils/theme/merge-theme.mjs +0 -27
  514. package/esm2022/lib/utils/theme/to-string.mjs +0 -10
  515. package/esm2022/public-api.mjs +0 -7
  516. package/lib/common/index.d.ts +0 -2
  517. package/lib/common/type-definitions/flowbite.boolean.d.ts +0 -7
  518. package/lib/components/dark-theme-toggle/index.d.ts +0 -4
  519. package/lib/components/form-field/directives/addon.directive.d.ts +0 -13
  520. package/lib/components/form-field/directives/addon.directive.theme.d.ts +0 -10
  521. package/lib/components/form-field/directives/addon.directive.theme.service.d.ts +0 -8
  522. package/lib/components/form-field/directives/base-input.directive.d.ts +0 -14
  523. package/lib/components/form-field/directives/helper.directive.d.ts +0 -18
  524. package/lib/components/form-field/directives/helper.directive.theme.d.ts +0 -13
  525. package/lib/components/form-field/directives/helper.directive.theme.service.d.ts +0 -8
  526. package/lib/components/form-field/directives/icon.directive.d.ts +0 -13
  527. package/lib/components/form-field/directives/icon.directive.theme.d.ts +0 -10
  528. package/lib/components/form-field/directives/icon.directive.theme.service.d.ts +0 -8
  529. package/lib/components/form-field/directives/index.d.ts +0 -21
  530. package/lib/components/form-field/directives/input.directive.d.ts +0 -100
  531. package/lib/components/form-field/directives/input.directive.theme.d.ts +0 -24
  532. package/lib/components/form-field/directives/input.directive.theme.service.d.ts +0 -8
  533. package/lib/components/form-field/directives/label.directive.d.ts +0 -62
  534. package/lib/components/form-field/directives/label.directive.theme.d.ts +0 -20
  535. package/lib/components/form-field/directives/label.directive.theme.service.d.ts +0 -8
  536. package/lib/components/form-field/form-field.component.d.ts +0 -20
  537. package/lib/components/form-field/form-field.theme.d.ts +0 -45
  538. package/lib/components/form-field/form-field.theme.service.d.ts +0 -8
  539. package/lib/components/form-field/index.d.ts +0 -5
  540. package/lib/components/index.d.ts +0 -15
  541. package/lib/pipes/index.d.ts +0 -1
  542. package/lib/services/index.d.ts +0 -3
  543. package/lib/services/signal-store.service.d.ts +0 -46
  544. package/lib/services/state/index.d.ts +0 -1
  545. package/lib/services/state/theme.state.d.ts +0 -4
  546. package/lib/utils/directives/index.d.ts +0 -2
  547. package/lib/utils/directives/inputs/index.d.ts +0 -2
  548. package/lib/utils/directives/inputs/router-link-active.input.d.ts +0 -8
  549. package/lib/utils/directives/inputs/router-link.inputs.d.ts +0 -8
  550. package/lib/utils/directives/outputs/index.d.ts +0 -2
  551. package/lib/utils/directives/outputs/router-link-active.output.d.ts +0 -8
  552. package/lib/utils/directives/outputs/router-link.output.d.ts +0 -8
  553. package/public-api.d.ts +0 -6
  554. /package/{lib/components/alert → alert}/index.d.ts +0 -0
  555. /package/{lib/components/button → button}/index.d.ts +0 -0
  556. /package/{lib/common → core}/flowbite.theme.init.d.ts +0 -0
  557. /package/{lib/components/icon → icon}/icon-registry.d.ts +0 -0
  558. /package/{lib/components/icon → icon}/index.d.ts +0 -0
  559. /package/{lib/components/icon → icon}/trusted-types.d.ts +0 -0
  560. /package/{lib/components/indicators → indicator}/index.d.ts +0 -0
  561. /package/{lib/directives → router-link}/flowbite-router-link.directive.d.ts +0 -0
  562. /package/{lib/directives → router-link-active}/flowbite-router-link-active.directive.d.ts +0 -0
  563. /package/{lib/pipes/sanitize-html → sanitize-html}/index.d.ts +0 -0
  564. /package/{lib/pipes/sanitize-html → sanitize-html}/sanitize-html.pipe.d.ts +0 -0
  565. /package/{lib/components/scroll-top → scroll-top}/index.d.ts +0 -0
  566. /package/{lib/common/type-definitions → type-definitions}/colors/flowbite.colors.d.ts +0 -0
  567. /package/{lib/common/type-definitions → type-definitions}/colors/flowbite.gradient-colors.d.ts +0 -0
  568. /package/{lib/common/type-definitions → type-definitions}/colors/flowbite.gradient-duo-tone-colors.d.ts +0 -0
  569. /package/{lib/common/type-definitions → type-definitions}/colors/index.d.ts +0 -0
  570. /package/{lib/common/type-definitions → type-definitions}/flowbite.class.d.ts +0 -0
  571. /package/{lib/common/type-definitions → type-definitions}/flowbite.combination.d.ts +0 -0
  572. /package/{lib/common/type-definitions → type-definitions}/flowbite.content-positions.d.ts +0 -0
  573. /package/{lib/common/type-definitions → type-definitions}/flowbite.deep-partial.d.ts +0 -0
  574. /package/{lib/common/type-definitions → type-definitions}/flowbite.heading-levels.d.ts +0 -0
  575. /package/{lib/common/type-definitions → type-definitions}/flowbite.positions.d.ts +0 -0
  576. /package/{lib/common/type-definitions → type-definitions}/flowbite.router-link-parameter.d.ts +0 -0
  577. /package/{lib/common/type-definitions → type-definitions}/flowbite.sizes.d.ts +0 -0
  578. /package/{lib/common/type-definitions → type-definitions}/flowbite.themes.d.ts +0 -0
  579. /package/{lib/utils → utils}/icon.list.d.ts +0 -0
  580. /package/{lib/utils → utils}/id.generator.d.ts +0 -0
  581. /package/{lib/utils → utils}/theme/clone-deep.d.ts +0 -0
  582. /package/{lib/utils → utils}/theme/create-class.d.ts +0 -0
  583. /package/{lib/utils → utils}/theme/create-theme.d.ts +0 -0
  584. /package/{lib/utils → utils}/theme/is-object.d.ts +0 -0
  585. /package/{lib/utils → utils}/theme/merge-theme.d.ts +0 -0
  586. /package/{lib/utils → utils}/theme/to-string.d.ts +0 -0
@@ -1,39 +0,0 @@
1
- export const CLOSE_SVG_ICON = `
2
- <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
3
- <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
4
- d="M6 18 17.94 6M18 18 6.06 6" />
5
- </svg>
6
- `;
7
- export const CHEVRON_UP_SVG_ICON = `
8
- <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
9
- <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m16 14-4-4-4 4" />
10
- </svg>
11
- `;
12
- export const CHEVRON_DOWN_SVG_ICON = `
13
- <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
14
- <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m8 10 4 4 4-4" />
15
- </svg>
16
- `;
17
- export const CHEVRON_RIGHT_SVG_ICON = `
18
- <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
19
- <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m10 16 4-4-4-4" />
20
- </svg>
21
- `;
22
- export const SUN_SVG_ICON = `
23
- <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
24
- <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
25
- d="M12 5V3m0 18v-2M7.05 7.05 5.636 5.636m12.728 12.728L16.95 16.95M5 12H3m18 0h-2M7.05 16.95l-1.414 1.414M18.364 5.636 16.95 7.05M16 12a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z" />
26
- </svg>
27
- `;
28
- export const MOON_SVG_ICON = `
29
- <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
30
- <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
31
- d="M12 21a9 9 0 0 1-.5-17.986V3c-.354.966-.5 1.911-.5 3a9 9 0 0 0 9 9c.239 0 .254.018.488 0A9.004 9.004 0 0 1 12 21Z" />
32
- </svg>
33
- `;
34
- export const BARS_SVG_ICON = `
35
- <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
36
- <path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M5 7h14M5 12h14M5 17h14" />
37
- </svg>
38
- `;
39
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaWNvbi5saXN0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mbG93Yml0ZS1hbmd1bGFyL3NyYy9saWIvdXRpbHMvaWNvbi5saXN0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBQyxNQUFNLGNBQWMsR0FBRzs7Ozs7Q0FLN0IsQ0FBQztBQUVGLE1BQU0sQ0FBQyxNQUFNLG1CQUFtQixHQUFHOzs7O0NBSWxDLENBQUM7QUFFRixNQUFNLENBQUMsTUFBTSxxQkFBcUIsR0FBRzs7OztDQUlwQyxDQUFDO0FBRUYsTUFBTSxDQUFDLE1BQU0sc0JBQXNCLEdBQUc7Ozs7Q0FJckMsQ0FBQztBQUVGLE1BQU0sQ0FBQyxNQUFNLFlBQVksR0FBRzs7Ozs7Q0FLM0IsQ0FBQztBQUVGLE1BQU0sQ0FBQyxNQUFNLGFBQWEsR0FBRzs7Ozs7Q0FLNUIsQ0FBQztBQUVGLE1BQU0sQ0FBQyxNQUFNLGFBQWEsR0FBRzs7OztDQUk1QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGNvbnN0IENMT1NFX1NWR19JQ09OID0gYFxuPHN2ZyB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCIgZmlsbD1cIm5vbmVcIiB2aWV3Qm94PVwiMCAwIDI0IDI0XCI+XG4gIDxwYXRoIHN0cm9rZT1cImN1cnJlbnRDb2xvclwiIHN0cm9rZS1saW5lY2FwPVwicm91bmRcIiBzdHJva2UtbGluZWpvaW49XCJyb3VuZFwiIHN0cm9rZS13aWR0aD1cIjJcIlxuICAgIGQ9XCJNNiAxOCAxNy45NCA2TTE4IDE4IDYuMDYgNlwiIC8+XG48L3N2Zz5cbmA7XG5cbmV4cG9ydCBjb25zdCBDSEVWUk9OX1VQX1NWR19JQ09OID0gYFxuPHN2ZyB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCIgZmlsbD1cIm5vbmVcIiB2aWV3Qm94PVwiMCAwIDI0IDI0XCI+XG4gIDxwYXRoIHN0cm9rZT1cImN1cnJlbnRDb2xvclwiIHN0cm9rZS1saW5lY2FwPVwicm91bmRcIiBzdHJva2UtbGluZWpvaW49XCJyb3VuZFwiIHN0cm9rZS13aWR0aD1cIjJcIiBkPVwibTE2IDE0LTQtNC00IDRcIiAvPlxuPC9zdmc+XG5gO1xuXG5leHBvcnQgY29uc3QgQ0hFVlJPTl9ET1dOX1NWR19JQ09OID0gYFxuPHN2ZyB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCIgZmlsbD1cIm5vbmVcIiB2aWV3Qm94PVwiMCAwIDI0IDI0XCI+XG4gIDxwYXRoIHN0cm9rZT1cImN1cnJlbnRDb2xvclwiIHN0cm9rZS1saW5lY2FwPVwicm91bmRcIiBzdHJva2UtbGluZWpvaW49XCJyb3VuZFwiIHN0cm9rZS13aWR0aD1cIjJcIiBkPVwibTggMTAgNCA0IDQtNFwiIC8+XG48L3N2Zz5cbmA7XG5cbmV4cG9ydCBjb25zdCBDSEVWUk9OX1JJR0hUX1NWR19JQ09OID0gYFxuPHN2ZyB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCIgZmlsbD1cIm5vbmVcIiB2aWV3Qm94PVwiMCAwIDI0IDI0XCI+XG4gIDxwYXRoIHN0cm9rZT1cImN1cnJlbnRDb2xvclwiIHN0cm9rZS1saW5lY2FwPVwicm91bmRcIiBzdHJva2UtbGluZWpvaW49XCJyb3VuZFwiIHN0cm9rZS13aWR0aD1cIjJcIiBkPVwibTEwIDE2IDQtNC00LTRcIiAvPlxuPC9zdmc+XG5gO1xuXG5leHBvcnQgY29uc3QgU1VOX1NWR19JQ09OID0gYFxuPHN2ZyB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCIgZmlsbD1cIm5vbmVcIiB2aWV3Qm94PVwiMCAwIDI0IDI0XCI+XG4gIDxwYXRoIHN0cm9rZT1cImN1cnJlbnRDb2xvclwiIHN0cm9rZS1saW5lY2FwPVwicm91bmRcIiBzdHJva2UtbGluZWpvaW49XCJyb3VuZFwiIHN0cm9rZS13aWR0aD1cIjJcIlxuICAgIGQ9XCJNMTIgNVYzbTAgMTh2LTJNNy4wNSA3LjA1IDUuNjM2IDUuNjM2bTEyLjcyOCAxMi43MjhMMTYuOTUgMTYuOTVNNSAxMkgzbTE4IDBoLTJNNy4wNSAxNi45NWwtMS40MTQgMS40MTRNMTguMzY0IDUuNjM2IDE2Ljk1IDcuMDVNMTYgMTJhNCA0IDAgMSAxLTggMCA0IDQgMCAwIDEgOCAwWlwiIC8+XG48L3N2Zz5cbmA7XG5cbmV4cG9ydCBjb25zdCBNT09OX1NWR19JQ09OID0gYFxuPHN2ZyB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCIgZmlsbD1cIm5vbmVcIiB2aWV3Qm94PVwiMCAwIDI0IDI0XCI+XG4gIDxwYXRoIHN0cm9rZT1cImN1cnJlbnRDb2xvclwiIHN0cm9rZS1saW5lY2FwPVwicm91bmRcIiBzdHJva2UtbGluZWpvaW49XCJyb3VuZFwiIHN0cm9rZS13aWR0aD1cIjJcIlxuICAgIGQ9XCJNMTIgMjFhOSA5IDAgMCAxLS41LTE3Ljk4NlYzYy0uMzU0Ljk2Ni0uNSAxLjkxMS0uNSAzYTkgOSAwIDAgMCA5IDljLjIzOSAwIC4yNTQuMDE4LjQ4OCAwQTkuMDA0IDkuMDA0IDAgMCAxIDEyIDIxWlwiIC8+XG48L3N2Zz5cbmA7XG5cbmV4cG9ydCBjb25zdCBCQVJTX1NWR19JQ09OID0gYFxuPHN2ZyB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCIgZmlsbD1cIm5vbmVcIiB2aWV3Qm94PVwiMCAwIDI0IDI0XCI+XG4gIDxwYXRoIHN0cm9rZT1cImN1cnJlbnRDb2xvclwiIHN0cm9rZS1saW5lY2FwPVwicm91bmRcIiBzdHJva2Utd2lkdGg9XCIyXCIgZD1cIk01IDdoMTRNNSAxMmgxNE01IDE3aDE0XCIgLz5cbjwvc3ZnPlxuYDtcbiJdfQ==
@@ -1,81 +0,0 @@
1
- /**
2
- * This class provide an implementation of Guid used as id for flowbite-angular components.
3
- *
4
- * @see https://gist.github.com/emptyother/1fd97db034ef848f38eca3354fa9ee90
5
- */
6
- export class Guid {
7
- /**
8
- * If value is given and if the value is a valid Guid, then return a Guid from the string ; Otherwise or if no value is given, create a Guid class without value.
9
- *
10
- * @param value Guid as string if you want to get a Guid type from string
11
- */
12
- constructor(value) {
13
- this.value = this.empty;
14
- if (value) {
15
- if (Guid.isValid(value)) {
16
- this.value = value;
17
- }
18
- }
19
- }
20
- /**
21
- * Function that generate new Guid.
22
- *
23
- * @returns New Guid.
24
- */
25
- static newGuid() {
26
- return new Guid(crypto.randomUUID());
27
- }
28
- /**
29
- * Function that generate an empty Guid.
30
- *
31
- * @return "00000000-0000-0000-0000-000000000000".
32
- */
33
- static get empty() {
34
- return '00000000-0000-0000-0000-000000000000';
35
- }
36
- /**
37
- * Function that generate an empty Guid.
38
- *
39
- * @return "00000000-0000-0000-0000-000000000000".
40
- */
41
- get empty() {
42
- return Guid.empty;
43
- }
44
- /**
45
- * Check if the provided Guid is valid.
46
- *
47
- * @param str The Guid to check.
48
- * @returns true if the Guid is valid ; false otherwise.
49
- */
50
- static isValid(str) {
51
- const validRegex = /^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i;
52
- return validRegex.test(str);
53
- }
54
- /**
55
- * ToString base method.
56
- *
57
- * @returns Value as string.
58
- */
59
- toString() {
60
- return this.value;
61
- }
62
- /**
63
- * ToJson base method.
64
- *
65
- * @returns Value as Json compatible string.
66
- */
67
- toJSON() {
68
- return this.value;
69
- }
70
- }
71
- /**
72
- * Function that return a new Guid.
73
- *
74
- * @returns New {@link Guid}.
75
- *
76
- * @see `Guid`
77
- */
78
- export function generateId() {
79
- return Guid.newGuid();
80
- }
81
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaWQuZ2VuZXJhdG9yLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mbG93Yml0ZS1hbmd1bGFyL3NyYy9saWIvdXRpbHMvaWQuZ2VuZXJhdG9yLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7O0dBSUc7QUFDSCxNQUFNLE9BQU8sSUFBSTtJQUdmOzs7O09BSUc7SUFDSCxZQUFZLEtBQWM7UUFQbEIsVUFBSyxHQUFXLElBQUksQ0FBQyxLQUFLLENBQUM7UUFRakMsSUFBSSxLQUFLLEVBQUUsQ0FBQztZQUNWLElBQUksSUFBSSxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDO2dCQUN4QixJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztZQUNyQixDQUFDO1FBQ0gsQ0FBQztJQUNILENBQUM7SUFFRDs7OztPQUlHO0lBQ0ksTUFBTSxDQUFDLE9BQU87UUFDbkIsT0FBTyxJQUFJLElBQUksQ0FBQyxNQUFNLENBQUMsVUFBVSxFQUFFLENBQUMsQ0FBQztJQUN2QyxDQUFDO0lBRUQ7Ozs7T0FJRztJQUNJLE1BQU0sS0FBSyxLQUFLO1FBQ3JCLE9BQU8sc0NBQXNDLENBQUM7SUFDaEQsQ0FBQztJQUVEOzs7O09BSUc7SUFDSCxJQUFXLEtBQUs7UUFDZCxPQUFPLElBQUksQ0FBQyxLQUFLLENBQUM7SUFDcEIsQ0FBQztJQUVEOzs7OztPQUtHO0lBQ0ksTUFBTSxDQUFDLE9BQU8sQ0FBQyxHQUFXO1FBQy9CLE1BQU0sVUFBVSxHQUFHLDRFQUE0RSxDQUFDO1FBQ2hHLE9BQU8sVUFBVSxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQztJQUM5QixDQUFDO0lBRUQ7Ozs7T0FJRztJQUNJLFFBQVE7UUFDYixPQUFPLElBQUksQ0FBQyxLQUFLLENBQUM7SUFDcEIsQ0FBQztJQUVEOzs7O09BSUc7SUFDSSxNQUFNO1FBQ1gsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDO0lBQ3BCLENBQUM7Q0FDRjtBQUVEOzs7Ozs7R0FNRztBQUNILE1BQU0sVUFBVSxVQUFVO0lBQ3hCLE9BQU8sSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDO0FBQ3hCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIFRoaXMgY2xhc3MgcHJvdmlkZSBhbiBpbXBsZW1lbnRhdGlvbiBvZiBHdWlkIHVzZWQgYXMgaWQgZm9yIGZsb3diaXRlLWFuZ3VsYXIgY29tcG9uZW50cy5cbiAqXG4gKiBAc2VlIGh0dHBzOi8vZ2lzdC5naXRodWIuY29tL2VtcHR5b3RoZXIvMWZkOTdkYjAzNGVmODQ4ZjM4ZWNhMzM1NGZhOWVlOTBcbiAqL1xuZXhwb3J0IGNsYXNzIEd1aWQge1xuICBwcml2YXRlIHZhbHVlOiBzdHJpbmcgPSB0aGlzLmVtcHR5O1xuXG4gIC8qKlxuICAgKiBJZiB2YWx1ZSBpcyBnaXZlbiBhbmQgaWYgdGhlIHZhbHVlIGlzIGEgdmFsaWQgR3VpZCwgdGhlbiByZXR1cm4gYSBHdWlkIGZyb20gdGhlIHN0cmluZyA7IE90aGVyd2lzZSBvciBpZiBubyB2YWx1ZSBpcyBnaXZlbiwgY3JlYXRlIGEgR3VpZCBjbGFzcyB3aXRob3V0IHZhbHVlLlxuICAgKlxuICAgKiBAcGFyYW0gdmFsdWUgR3VpZCBhcyBzdHJpbmcgaWYgeW91IHdhbnQgdG8gZ2V0IGEgR3VpZCB0eXBlIGZyb20gc3RyaW5nXG4gICAqL1xuICBjb25zdHJ1Y3Rvcih2YWx1ZT86IHN0cmluZykge1xuICAgIGlmICh2YWx1ZSkge1xuICAgICAgaWYgKEd1aWQuaXNWYWxpZCh2YWx1ZSkpIHtcbiAgICAgICAgdGhpcy52YWx1ZSA9IHZhbHVlO1xuICAgICAgfVxuICAgIH1cbiAgfVxuXG4gIC8qKlxuICAgKiBGdW5jdGlvbiB0aGF0IGdlbmVyYXRlIG5ldyBHdWlkLlxuICAgKlxuICAgKiBAcmV0dXJucyBOZXcgR3VpZC5cbiAgICovXG4gIHB1YmxpYyBzdGF0aWMgbmV3R3VpZCgpOiBHdWlkIHtcbiAgICByZXR1cm4gbmV3IEd1aWQoY3J5cHRvLnJhbmRvbVVVSUQoKSk7XG4gIH1cblxuICAvKipcbiAgICogRnVuY3Rpb24gdGhhdCBnZW5lcmF0ZSBhbiBlbXB0eSBHdWlkLlxuICAgKlxuICAgKiBAcmV0dXJuIFwiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwXCIuXG4gICAqL1xuICBwdWJsaWMgc3RhdGljIGdldCBlbXB0eSgpOiBzdHJpbmcge1xuICAgIHJldHVybiAnMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwJztcbiAgfVxuXG4gIC8qKlxuICAgKiBGdW5jdGlvbiB0aGF0IGdlbmVyYXRlIGFuIGVtcHR5IEd1aWQuXG4gICAqXG4gICAqIEByZXR1cm4gXCIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDBcIi5cbiAgICovXG4gIHB1YmxpYyBnZXQgZW1wdHkoKTogc3RyaW5nIHtcbiAgICByZXR1cm4gR3VpZC5lbXB0eTtcbiAgfVxuXG4gIC8qKlxuICAgKiBDaGVjayBpZiB0aGUgcHJvdmlkZWQgR3VpZCBpcyB2YWxpZC5cbiAgICpcbiAgICogQHBhcmFtIHN0ciBUaGUgR3VpZCB0byBjaGVjay5cbiAgICogQHJldHVybnMgdHJ1ZSBpZiB0aGUgR3VpZCBpcyB2YWxpZCA7IGZhbHNlIG90aGVyd2lzZS5cbiAgICovXG4gIHB1YmxpYyBzdGF0aWMgaXNWYWxpZChzdHI6IHN0cmluZyk6IGJvb2xlYW4ge1xuICAgIGNvbnN0IHZhbGlkUmVnZXggPSAvXlswLTlhLWZdezh9LVswLTlhLWZdezR9LVsxLTVdWzAtOWEtZl17M30tWzg5YWJdWzAtOWEtZl17M30tWzAtOWEtZl17MTJ9JC9pO1xuICAgIHJldHVybiB2YWxpZFJlZ2V4LnRlc3Qoc3RyKTtcbiAgfVxuXG4gIC8qKlxuICAgKiBUb1N0cmluZyBiYXNlIG1ldGhvZC5cbiAgICpcbiAgICogQHJldHVybnMgVmFsdWUgYXMgc3RyaW5nLlxuICAgKi9cbiAgcHVibGljIHRvU3RyaW5nKCkge1xuICAgIHJldHVybiB0aGlzLnZhbHVlO1xuICB9XG5cbiAgLyoqXG4gICAqIFRvSnNvbiBiYXNlIG1ldGhvZC5cbiAgICpcbiAgICogQHJldHVybnMgVmFsdWUgYXMgSnNvbiBjb21wYXRpYmxlIHN0cmluZy5cbiAgICovXG4gIHB1YmxpYyB0b0pTT04oKTogc3RyaW5nIHtcbiAgICByZXR1cm4gdGhpcy52YWx1ZTtcbiAgfVxufVxuXG4vKipcbiAqIEZ1bmN0aW9uIHRoYXQgcmV0dXJuIGEgbmV3IEd1aWQuXG4gKlxuICogQHJldHVybnMgTmV3IHtAbGluayBHdWlkfS5cbiAqXG4gKiBAc2VlIGBHdWlkYFxuICovXG5leHBvcnQgZnVuY3Rpb24gZ2VuZXJhdGVJZCgpOiBHdWlkIHtcbiAgcmV0dXJuIEd1aWQubmV3R3VpZCgpO1xufVxuIl19
@@ -1,9 +0,0 @@
1
- export * from './directives';
2
- export { cloneDeep } from './theme/clone-deep';
3
- export { createClass } from './theme/create-class';
4
- export { createTheme } from './theme/create-theme';
5
- export { isObject } from './theme/is-object';
6
- export { mergeTheme } from './theme/merge-theme';
7
- export { themeToString } from './theme/to-string';
8
- export { Guid, generateId } from './id.generator';
9
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Zsb3diaXRlLWFuZ3VsYXIvc3JjL2xpYi91dGlscy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQztBQUU3QixPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDL0MsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBQ25ELE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUNuRCxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sbUJBQW1CLENBQUM7QUFDN0MsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ2pELE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUNsRCxPQUFPLEVBQUUsSUFBSSxFQUFFLFVBQVUsRUFBRSxNQUFNLGdCQUFnQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzJztcblxuZXhwb3J0IHsgY2xvbmVEZWVwIH0gZnJvbSAnLi90aGVtZS9jbG9uZS1kZWVwJztcbmV4cG9ydCB7IGNyZWF0ZUNsYXNzIH0gZnJvbSAnLi90aGVtZS9jcmVhdGUtY2xhc3MnO1xuZXhwb3J0IHsgY3JlYXRlVGhlbWUgfSBmcm9tICcuL3RoZW1lL2NyZWF0ZS10aGVtZSc7XG5leHBvcnQgeyBpc09iamVjdCB9IGZyb20gJy4vdGhlbWUvaXMtb2JqZWN0JztcbmV4cG9ydCB7IG1lcmdlVGhlbWUgfSBmcm9tICcuL3RoZW1lL21lcmdlLXRoZW1lJztcbmV4cG9ydCB7IHRoZW1lVG9TdHJpbmcgfSBmcm9tICcuL3RoZW1lL3RvLXN0cmluZyc7XG5leHBvcnQgeyBHdWlkLCBnZW5lcmF0ZUlkIH0gZnJvbSAnLi9pZC5nZW5lcmF0b3InO1xuIl19
@@ -1,18 +0,0 @@
1
- import { isObject } from './is-object';
2
- /**
3
- * Function that return the cloned type of the provided generic type.
4
- *
5
- * @param source Generic object to be cloned.
6
- * @returns The clone type of th eprovided type.
7
- */
8
- export function cloneDeep(source) {
9
- if (!isObject(source)) {
10
- return source;
11
- }
12
- const output = {};
13
- for (const key in source) {
14
- output[key] = cloneDeep(source[key]);
15
- }
16
- return output;
17
- }
18
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2xvbmUtZGVlcC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvZmxvd2JpdGUtYW5ndWxhci9zcmMvbGliL3V0aWxzL3RoZW1lL2Nsb25lLWRlZXAudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGFBQWEsQ0FBQztBQUV2Qzs7Ozs7R0FLRztBQUNILE1BQU0sVUFBVSxTQUFTLENBQUksTUFBUztJQUNwQyxJQUFJLENBQUMsUUFBUSxDQUFDLE1BQU0sQ0FBQyxFQUFFLENBQUM7UUFDdEIsT0FBTyxNQUFNLENBQUM7SUFDaEIsQ0FBQztJQUVELE1BQU0sTUFBTSxHQUE0QixFQUFFLENBQUM7SUFFM0MsS0FBSyxNQUFNLEdBQUcsSUFBSSxNQUFNLEVBQUUsQ0FBQztRQUN6QixNQUFNLENBQUMsR0FBRyxDQUFDLEdBQUcsU0FBUyxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDO0lBQ3ZDLENBQUM7SUFFRCxPQUFPLE1BQVcsQ0FBQztBQUNyQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgaXNPYmplY3QgfSBmcm9tICcuL2lzLW9iamVjdCc7XG5cbi8qKlxuICogRnVuY3Rpb24gdGhhdCByZXR1cm4gdGhlIGNsb25lZCB0eXBlIG9mIHRoZSBwcm92aWRlZCBnZW5lcmljIHR5cGUuXG4gKlxuICogQHBhcmFtIHNvdXJjZSBHZW5lcmljIG9iamVjdCB0byBiZSBjbG9uZWQuXG4gKiBAcmV0dXJucyBUaGUgY2xvbmUgdHlwZSBvZiB0aCBlcHJvdmlkZWQgdHlwZS5cbiAqL1xuZXhwb3J0IGZ1bmN0aW9uIGNsb25lRGVlcDxUPihzb3VyY2U6IFQpOiBUIHtcbiAgaWYgKCFpc09iamVjdChzb3VyY2UpKSB7XG4gICAgcmV0dXJuIHNvdXJjZTtcbiAgfVxuXG4gIGNvbnN0IG91dHB1dDogUmVjb3JkPHN0cmluZywgdW5rbm93bj4gPSB7fTtcblxuICBmb3IgKGNvbnN0IGtleSBpbiBzb3VyY2UpIHtcbiAgICBvdXRwdXRba2V5XSA9IGNsb25lRGVlcChzb3VyY2Vba2V5XSk7XG4gIH1cblxuICByZXR1cm4gb3V0cHV0IGFzIFQ7XG59XG4iXX0=
@@ -1,10 +0,0 @@
1
- /**
2
- * This function is used to create classes for component's while keeping the intellisens up for TailwindCSS and other extensions.
3
- *
4
- * @param input Generic type to be created.
5
- * @returns The generic type's definition.
6
- */
7
- export function createClass(input) {
8
- return input;
9
- }
10
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3JlYXRlLWNsYXNzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mbG93Yml0ZS1hbmd1bGFyL3NyYy9saWIvdXRpbHMvdGhlbWUvY3JlYXRlLWNsYXNzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7OztHQUtHO0FBQ0gsTUFBTSxVQUFVLFdBQVcsQ0FBSSxLQUFRO0lBQ3JDLE9BQU8sS0FBSyxDQUFDO0FBQ2YsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogVGhpcyBmdW5jdGlvbiBpcyB1c2VkIHRvIGNyZWF0ZSBjbGFzc2VzIGZvciBjb21wb25lbnQncyB3aGlsZSBrZWVwaW5nIHRoZSBpbnRlbGxpc2VucyB1cCBmb3IgVGFpbHdpbmRDU1MgYW5kIG90aGVyIGV4dGVuc2lvbnMuXG4gKlxuICogQHBhcmFtIGlucHV0IEdlbmVyaWMgdHlwZSB0byBiZSBjcmVhdGVkLlxuICogQHJldHVybnMgVGhlIGdlbmVyaWMgdHlwZSdzIGRlZmluaXRpb24uXG4gKi9cbmV4cG9ydCBmdW5jdGlvbiBjcmVhdGVDbGFzczxUPihpbnB1dDogVCkge1xuICByZXR1cm4gaW5wdXQ7XG59XG4iXX0=
@@ -1,10 +0,0 @@
1
- /**
2
- * This function is used to create themes for component's while keeping the intellisens up for TailwindCSS and other extensions.
3
- *
4
- * @param input Generic type to be created.
5
- * @returns The generic type's definition.
6
- */
7
- export function createTheme(input) {
8
- return input;
9
- }
10
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3JlYXRlLXRoZW1lLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mbG93Yml0ZS1hbmd1bGFyL3NyYy9saWIvdXRpbHMvdGhlbWUvY3JlYXRlLXRoZW1lLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7OztHQUtHO0FBQ0gsTUFBTSxVQUFVLFdBQVcsQ0FBSSxLQUFRO0lBQ3JDLE9BQU8sS0FBSyxDQUFDO0FBQ2YsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogVGhpcyBmdW5jdGlvbiBpcyB1c2VkIHRvIGNyZWF0ZSB0aGVtZXMgZm9yIGNvbXBvbmVudCdzIHdoaWxlIGtlZXBpbmcgdGhlIGludGVsbGlzZW5zIHVwIGZvciBUYWlsd2luZENTUyBhbmQgb3RoZXIgZXh0ZW5zaW9ucy5cbiAqXG4gKiBAcGFyYW0gaW5wdXQgR2VuZXJpYyB0eXBlIHRvIGJlIGNyZWF0ZWQuXG4gKiBAcmV0dXJucyBUaGUgZ2VuZXJpYyB0eXBlJ3MgZGVmaW5pdGlvbi5cbiAqL1xuZXhwb3J0IGZ1bmN0aW9uIGNyZWF0ZVRoZW1lPFQ+KGlucHV0OiBUKSB7XG4gIHJldHVybiBpbnB1dDtcbn1cbiJdfQ==
@@ -1,10 +0,0 @@
1
- /**
2
- * Check if the provided parameter is an object or not.
3
- *
4
- * @param item The unknown type parameter.
5
- * @returns true if it's an ibject ; false otherwise.
6
- */
7
- export function isObject(item) {
8
- return item !== null && typeof item === 'object' && item.constructor === Object;
9
- }
10
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaXMtb2JqZWN0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mbG93Yml0ZS1hbmd1bGFyL3NyYy9saWIvdXRpbHMvdGhlbWUvaXMtb2JqZWN0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7OztHQUtHO0FBQ0gsTUFBTSxVQUFVLFFBQVEsQ0FBQyxJQUFhO0lBQ3BDLE9BQU8sSUFBSSxLQUFLLElBQUksSUFBSSxPQUFPLElBQUksS0FBSyxRQUFRLElBQUksSUFBSSxDQUFDLFdBQVcsS0FBSyxNQUFNLENBQUM7QUFDbEYsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogQ2hlY2sgaWYgdGhlIHByb3ZpZGVkIHBhcmFtZXRlciBpcyBhbiBvYmplY3Qgb3Igbm90LlxuICpcbiAqIEBwYXJhbSBpdGVtIFRoZSB1bmtub3duIHR5cGUgcGFyYW1ldGVyLlxuICogQHJldHVybnMgdHJ1ZSBpZiBpdCdzIGFuIGliamVjdCA7IGZhbHNlIG90aGVyd2lzZS5cbiAqL1xuZXhwb3J0IGZ1bmN0aW9uIGlzT2JqZWN0KGl0ZW06IHVua25vd24pOiBpdGVtIGlzIFJlY29yZDxzdHJpbmcsIHVua25vd24+IHtcbiAgcmV0dXJuIGl0ZW0gIT09IG51bGwgJiYgdHlwZW9mIGl0ZW0gPT09ICdvYmplY3QnICYmIGl0ZW0uY29uc3RydWN0b3IgPT09IE9iamVjdDtcbn1cbiJdfQ==
@@ -1,27 +0,0 @@
1
- import { cloneDeep } from './clone-deep';
2
- import { isObject } from './is-object';
3
- /**
4
- * Merge two objects into one.
5
- *
6
- * @param target Object to be merged.
7
- * @param source Object to be merged.
8
- * @returns The merged object.
9
- */
10
- export function mergeTheme(target, source) {
11
- if (isObject(source) && Object.keys(source).length === 0) {
12
- return cloneDeep({ ...target, ...source });
13
- }
14
- const output = { ...target, ...source };
15
- if (isObject(source) && isObject(target)) {
16
- for (const key in source) {
17
- if (isObject(source[key]) && key in target && isObject(target[key])) {
18
- output[key] = mergeTheme(target[key], source[key]);
19
- }
20
- else {
21
- output[key] = isObject(source[key]) ? cloneDeep(source[key]) : source[key];
22
- }
23
- }
24
- }
25
- return output;
26
- }
27
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVyZ2UtdGhlbWUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Zsb3diaXRlLWFuZ3VsYXIvc3JjL2xpYi91dGlscy90aGVtZS9tZXJnZS10aGVtZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sY0FBYyxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxhQUFhLENBQUM7QUFFdkM7Ozs7OztHQU1HO0FBQ0gsTUFBTSxVQUFVLFVBQVUsQ0FBcUMsTUFBUyxFQUFFLE1BQVM7SUFDakYsSUFBSSxRQUFRLENBQUMsTUFBTSxDQUFDLElBQUksTUFBTSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxNQUFNLEtBQUssQ0FBQyxFQUFFLENBQUM7UUFDekQsT0FBTyxTQUFTLENBQUMsRUFBRSxHQUFHLE1BQU0sRUFBRSxHQUFHLE1BQU0sRUFBRSxDQUFDLENBQUM7SUFDN0MsQ0FBQztJQUVELE1BQU0sTUFBTSxHQUFHLEVBQUUsR0FBRyxNQUFNLEVBQUUsR0FBRyxNQUFNLEVBQUUsQ0FBQztJQUV4QyxJQUFJLFFBQVEsQ0FBQyxNQUFNLENBQUMsSUFBSSxRQUFRLENBQUMsTUFBTSxDQUFDLEVBQUUsQ0FBQztRQUN6QyxLQUFLLE1BQU0sR0FBRyxJQUFJLE1BQU0sRUFBRSxDQUFDO1lBQ3pCLElBQUksUUFBUSxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsQ0FBQyxJQUFJLEdBQUcsSUFBSSxNQUFNLElBQUksUUFBUSxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsQ0FBQyxFQUFFLENBQUM7Z0JBQ25FLE1BQWtDLENBQUMsR0FBRyxDQUFDLEdBQUcsVUFBVSxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQVcsRUFBRSxNQUFNLENBQUMsR0FBRyxDQUFXLENBQUMsQ0FBQztZQUN0RyxDQUFDO2lCQUFNLENBQUM7Z0JBQ0wsTUFBa0MsQ0FBQyxHQUFHLENBQUMsR0FBRyxRQUFRLENBQUMsTUFBTSxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxNQUFNLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLEdBQUcsQ0FBQyxDQUFDO1lBQzFHLENBQUM7UUFDSCxDQUFDO0lBQ0gsQ0FBQztJQUVELE9BQU8sTUFBTSxDQUFDO0FBQ2hCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBjbG9uZURlZXAgfSBmcm9tICcuL2Nsb25lLWRlZXAnO1xuaW1wb3J0IHsgaXNPYmplY3QgfSBmcm9tICcuL2lzLW9iamVjdCc7XG5cbi8qKlxuICogTWVyZ2UgdHdvIG9iamVjdHMgaW50byBvbmUuXG4gKlxuICogQHBhcmFtIHRhcmdldCBPYmplY3QgdG8gYmUgbWVyZ2VkLlxuICogQHBhcmFtIHNvdXJjZSBPYmplY3QgdG8gYmUgbWVyZ2VkLlxuICogQHJldHVybnMgVGhlIG1lcmdlZCBvYmplY3QuXG4gKi9cbmV4cG9ydCBmdW5jdGlvbiBtZXJnZVRoZW1lPFQgZXh0ZW5kcyBvYmplY3QsIFMgZXh0ZW5kcyBvYmplY3Q+KHRhcmdldDogVCwgc291cmNlOiBTKTogVCAmIFMge1xuICBpZiAoaXNPYmplY3Qoc291cmNlKSAmJiBPYmplY3Qua2V5cyhzb3VyY2UpLmxlbmd0aCA9PT0gMCkge1xuICAgIHJldHVybiBjbG9uZURlZXAoeyAuLi50YXJnZXQsIC4uLnNvdXJjZSB9KTtcbiAgfVxuXG4gIGNvbnN0IG91dHB1dCA9IHsgLi4udGFyZ2V0LCAuLi5zb3VyY2UgfTtcblxuICBpZiAoaXNPYmplY3Qoc291cmNlKSAmJiBpc09iamVjdCh0YXJnZXQpKSB7XG4gICAgZm9yIChjb25zdCBrZXkgaW4gc291cmNlKSB7XG4gICAgICBpZiAoaXNPYmplY3Qoc291cmNlW2tleV0pICYmIGtleSBpbiB0YXJnZXQgJiYgaXNPYmplY3QodGFyZ2V0W2tleV0pKSB7XG4gICAgICAgIChvdXRwdXQgYXMgUmVjb3JkPHN0cmluZywgdW5rbm93bj4pW2tleV0gPSBtZXJnZVRoZW1lKHRhcmdldFtrZXldIGFzIG9iamVjdCwgc291cmNlW2tleV0gYXMgb2JqZWN0KTtcbiAgICAgIH0gZWxzZSB7XG4gICAgICAgIChvdXRwdXQgYXMgUmVjb3JkPHN0cmluZywgdW5rbm93bj4pW2tleV0gPSBpc09iamVjdChzb3VyY2Vba2V5XSkgPyBjbG9uZURlZXAoc291cmNlW2tleV0pIDogc291cmNlW2tleV07XG4gICAgICB9XG4gICAgfVxuICB9XG5cbiAgcmV0dXJuIG91dHB1dDtcbn1cbiJdfQ==
@@ -1,10 +0,0 @@
1
- /**
2
- * Return theme value to an indented string.
3
- *
4
- * @param value The theme to be stringify.
5
- * @returns The theme as string.
6
- */
7
- export function themeToString(value) {
8
- return JSON.stringify(value, undefined, 2);
9
- }
10
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG8tc3RyaW5nLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mbG93Yml0ZS1hbmd1bGFyL3NyYy9saWIvdXRpbHMvdGhlbWUvdG8tc3RyaW5nLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7OztHQUtHO0FBQ0gsTUFBTSxVQUFVLGFBQWEsQ0FBQyxLQUFjO0lBQzFDLE9BQU8sSUFBSSxDQUFDLFNBQVMsQ0FBQyxLQUFLLEVBQUUsU0FBUyxFQUFFLENBQUMsQ0FBQyxDQUFDO0FBQzdDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIFJldHVybiB0aGVtZSB2YWx1ZSB0byBhbiBpbmRlbnRlZCBzdHJpbmcuXG4gKlxuICogQHBhcmFtIHZhbHVlIFRoZSB0aGVtZSB0byBiZSBzdHJpbmdpZnkuXG4gKiBAcmV0dXJucyBUaGUgdGhlbWUgYXMgc3RyaW5nLlxuICovXG5leHBvcnQgZnVuY3Rpb24gdGhlbWVUb1N0cmluZyh2YWx1ZTogdW5rbm93bik6IHN0cmluZyB7XG4gIHJldHVybiBKU09OLnN0cmluZ2lmeSh2YWx1ZSwgdW5kZWZpbmVkLCAyKTtcbn1cbiJdfQ==
@@ -1,7 +0,0 @@
1
- export * from './lib/common';
2
- export * from './lib/components';
3
- export * from './lib/pipes';
4
- export * from './lib/services';
5
- export * from './lib/utils';
6
- export * from './lib/directives';
7
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL2xpYnMvZmxvd2JpdGUtYW5ndWxhci9zcmMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLGtCQUFrQixDQUFDO0FBQ2pDLGNBQWMsYUFBYSxDQUFDO0FBQzVCLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxhQUFhLENBQUM7QUFDNUIsY0FBYyxrQkFBa0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vbGliL2NvbW1vbic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3BpcGVzJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3NlcnZpY2VzJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3V0aWxzJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2RpcmVjdGl2ZXMnO1xuIl19
@@ -1,2 +0,0 @@
1
- export { initFlowbite } from './flowbite.theme.init';
2
- export * from './type-definitions';
@@ -1,7 +0,0 @@
1
- /**
2
- * Base definition of boolean used in flowbite-angular.
3
- */
4
- export interface FlowbiteBoolean {
5
- enabled: string;
6
- disabled: string;
7
- }
@@ -1,4 +0,0 @@
1
- export { DarkThemeToggleComponent } from './dark-theme-toggle.component';
2
- export type { DarkThemeToggleProperties, DarkThemeToggleClass, DarkThemeToggleTheme } from './dark-theme-toggle.theme';
3
- export { darkThemeToggleTheme } from './dark-theme-toggle.theme';
4
- export { DarkThemeToggleThemeService, FLOWBITE_DARK_THEME_TOGGLE_THEME_TOKEN } from './dark-theme-toggle.theme.service';
@@ -1,13 +0,0 @@
1
- import { AddonDirectiveThemeService } from './addon.directive.theme.service';
2
- import { BaseInputDirective } from './base-input.directive';
3
- import * as i0 from "@angular/core";
4
- export declare class AddonDirective extends BaseInputDirective {
5
- protected contentClasses: import("@angular/core").WritableSignal<import("../../../common").FlowbiteClass>;
6
- protected readonly themeService: AddonDirectiveThemeService;
7
- customStyle: import("@angular/core").InputSignal<{
8
- base?: string | undefined;
9
- }>;
10
- fetchClass(): void;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<AddonDirective, never>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<AddonDirective, "[flowbiteAddon]", never, { "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
13
- }
@@ -1,10 +0,0 @@
1
- import type { DeepPartial, FlowbiteClass } from '../../../common';
2
- export interface AddonDirectiveProperties {
3
- customStyle: DeepPartial<AddonDirectiveBaseTheme>;
4
- }
5
- export interface AddonDirectiveBaseTheme {
6
- base: string;
7
- }
8
- export declare const addonDirectiveTheme: AddonDirectiveBaseTheme;
9
- export type AddonDirectiveClass = FlowbiteClass;
10
- export declare const addonDirectiveClassInstance: AddonDirectiveClass;
@@ -1,8 +0,0 @@
1
- import type { FlowbiteThemeService } from '../../../services';
2
- import type { AddonDirectiveBaseTheme, AddonDirectiveClass, AddonDirectiveProperties } from './addon.directive.theme';
3
- import { InjectionToken } from '@angular/core';
4
- export declare const FLOWBITE_DIRECTIVE_ADDON_THEME_TOKEN: InjectionToken<AddonDirectiveBaseTheme>;
5
- export declare class AddonDirectiveThemeService implements FlowbiteThemeService<AddonDirectiveProperties> {
6
- private readonly baseTheme;
7
- getClasses(properties: AddonDirectiveProperties): AddonDirectiveClass;
8
- }
@@ -1,14 +0,0 @@
1
- import type { FlowbiteClass } from '../../../common';
2
- import { FormFieldComponent } from '../form-field.component';
3
- import type { OnInit } from '@angular/core';
4
- import { Injector } from '@angular/core';
5
- import * as i0 from "@angular/core";
6
- export declare abstract class BaseInputDirective implements OnInit {
7
- protected contentClasses: import("@angular/core").WritableSignal<FlowbiteClass>;
8
- protected readonly injector: Injector;
9
- protected readonly formFieldComponent: FormFieldComponent;
10
- ngOnInit(): void;
11
- abstract fetchClass(): void;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<BaseInputDirective, never>;
13
- static ɵdir: i0.ɵɵDirectiveDeclaration<BaseInputDirective, never, never, {}, {}, never, never, true, never>;
14
- }
@@ -1,18 +0,0 @@
1
- import type { FlowbiteClass } from '../../../common';
2
- import { BaseInputDirective } from './base-input.directive';
3
- import { HelperDirectiveThemeService } from './helper.directive.theme.service';
4
- import * as i0 from "@angular/core";
5
- export declare class HelperDirective extends BaseInputDirective {
6
- protected contentClasses: import("@angular/core").WritableSignal<FlowbiteClass>;
7
- protected readonly themeService: HelperDirectiveThemeService;
8
- customStyle: import("@angular/core").InputSignal<{
9
- base?: string | undefined;
10
- validation?: {
11
- success?: string | undefined;
12
- error?: string | undefined;
13
- } | undefined;
14
- }>;
15
- fetchClass(): FlowbiteClass;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<HelperDirective, never>;
17
- static ɵdir: i0.ɵɵDirectiveDeclaration<HelperDirective, "[flowbiteHelper]", never, { "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
18
- }
@@ -1,13 +0,0 @@
1
- import type { DeepPartial, FlowbiteClass } from '../../../common';
2
- import type { FormFieldValidations } from '../form-field.theme';
3
- export interface HelperDirectiveProperties {
4
- validate?: keyof FormFieldValidations;
5
- customStyle: DeepPartial<HelperDirectiveBaseTheme>;
6
- }
7
- export interface HelperDirectiveBaseTheme {
8
- base: string;
9
- validation: FormFieldValidations;
10
- }
11
- export declare const helperDirectiveTheme: HelperDirectiveBaseTheme;
12
- export type HelperDirectiveClass = FlowbiteClass;
13
- export declare const helperDirectiveClassInstance: HelperDirectiveClass;
@@ -1,8 +0,0 @@
1
- import type { FlowbiteThemeService } from '../../../services';
2
- import type { HelperDirectiveBaseTheme, HelperDirectiveClass, HelperDirectiveProperties } from './helper.directive.theme';
3
- import { InjectionToken } from '@angular/core';
4
- export declare const FLOWBITE_DIRECTIVE_HELPER_THEME_TOKEN: InjectionToken<HelperDirectiveBaseTheme>;
5
- export declare class HelperDirectiveThemeService implements FlowbiteThemeService<HelperDirectiveProperties> {
6
- private readonly baseTheme;
7
- getClasses(properties: HelperDirectiveProperties): HelperDirectiveClass;
8
- }
@@ -1,13 +0,0 @@
1
- import { BaseInputDirective } from './base-input.directive';
2
- import { IconDirectiveThemeService } from './icon.directive.theme.service';
3
- import * as i0 from "@angular/core";
4
- export declare class IconDirective extends BaseInputDirective {
5
- protected contentClasses: import("@angular/core").WritableSignal<import("../../../common").FlowbiteClass>;
6
- protected readonly themeService: IconDirectiveThemeService;
7
- customStyle: import("@angular/core").InputSignal<{
8
- base?: string | undefined;
9
- }>;
10
- fetchClass(): void;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<IconDirective, never>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<IconDirective, "[flowbiteIcon]", never, { "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
13
- }
@@ -1,10 +0,0 @@
1
- import type { DeepPartial, FlowbiteClass } from '../../../common';
2
- export interface IconDirectiveProperties {
3
- customStyle: DeepPartial<IconDirectiveBaseTheme>;
4
- }
5
- export interface IconDirectiveBaseTheme {
6
- base: string;
7
- }
8
- export declare const iconDirectiveTheme: IconDirectiveBaseTheme;
9
- export type IconDirectiveClass = FlowbiteClass;
10
- export declare const iconDirectiveClassInstance: IconDirectiveClass;
@@ -1,8 +0,0 @@
1
- import type { FlowbiteThemeService } from '../../../services';
2
- import type { IconDirectiveBaseTheme, IconDirectiveClass, IconDirectiveProperties } from './icon.directive.theme';
3
- import { InjectionToken } from '@angular/core';
4
- export declare const FLOWBITE_DIRECTIVE_ICON_THEME_TOKEN: InjectionToken<IconDirectiveBaseTheme>;
5
- export declare class IconDirectiveThemeService implements FlowbiteThemeService<IconDirectiveProperties> {
6
- private readonly baseTheme;
7
- getClasses(properties: IconDirectiveProperties): IconDirectiveClass;
8
- }
@@ -1,21 +0,0 @@
1
- export { AddonDirective } from './addon.directive';
2
- export type { AddonDirectiveBaseTheme, AddonDirectiveClass, AddonDirectiveProperties } from './addon.directive.theme';
3
- export { addonDirectiveClassInstance, addonDirectiveTheme } from './addon.directive.theme';
4
- export { AddonDirectiveThemeService, FLOWBITE_DIRECTIVE_ADDON_THEME_TOKEN } from './addon.directive.theme.service';
5
- export { BaseInputDirective } from './base-input.directive';
6
- export { HelperDirective } from './helper.directive';
7
- export type { HelperDirectiveBaseTheme, HelperDirectiveClass, HelperDirectiveProperties, } from './helper.directive.theme';
8
- export { helperDirectiveClassInstance, helperDirectiveTheme } from './helper.directive.theme';
9
- export { FLOWBITE_DIRECTIVE_HELPER_THEME_TOKEN, HelperDirectiveThemeService } from './helper.directive.theme.service';
10
- export { IconDirective } from './icon.directive';
11
- export type { IconDirectiveBaseTheme, IconDirectiveClass, IconDirectiveProperties } from './icon.directive.theme';
12
- export { iconDirectiveClassInstance, iconDirectiveTheme } from './icon.directive.theme';
13
- export { FLOWBITE_DIRECTIVE_ICON_THEME_TOKEN, IconDirectiveThemeService } from './icon.directive.theme.service';
14
- export { InputDirective } from './input.directive';
15
- export type { InputDirectiveBaseTheme, InputDirectiveClass, InputDirectiveProperties } from './input.directive.theme';
16
- export { inputDirectiveClassInstance, inputDirectiveTheme } from './input.directive.theme';
17
- export { FLOWBITE_DIRECTIVE_INPUT_THEME_TOKEN, InputDirectiveThemeService } from './input.directive.theme.service';
18
- export { LabelDirective } from './label.directive';
19
- export type { LabelDirectiveBaseTheme, LabelDirectiveClass, LabelDirectiveProperties } from './label.directive.theme';
20
- export { labelDirectiveClassInstance, labelDirectiveTheme } from './label.directive.theme';
21
- export { FLOWBITE_DIRECTIVE_LABEL_THEME_TOKEN, LabelDirectiveThemeService } from './label.directive.theme.service';
@@ -1,100 +0,0 @@
1
- import { BaseInputDirective } from './base-input.directive';
2
- import { InputDirectiveThemeService } from './input.directive.theme.service';
3
- import * as i0 from "@angular/core";
4
- export declare class InputDirective extends BaseInputDirective {
5
- protected contentClasses: import("@angular/core").WritableSignal<import("../../../common").FlowbiteClass>;
6
- protected readonly themeService: InputDirectiveThemeService;
7
- customStyle: import("@angular/core").InputSignal<{
8
- base?: string | undefined;
9
- default?: string | undefined;
10
- size?: {
11
- [x: string]: string | undefined;
12
- sm?: string | undefined;
13
- md?: string | undefined;
14
- lg?: string | undefined;
15
- } | undefined;
16
- disabled?: {
17
- enabled?: string | undefined;
18
- disabled?: string | undefined;
19
- } | undefined;
20
- validation?: {
21
- success?: string | undefined;
22
- error?: string | undefined;
23
- } | undefined;
24
- prefix?: {
25
- addon?: string | undefined;
26
- icon?: string | undefined;
27
- } | undefined;
28
- floatingLabel?: {
29
- outline?: {
30
- disabled?: {
31
- enabled?: string | undefined;
32
- disabled?: string | undefined;
33
- } | undefined;
34
- base?: string | undefined;
35
- default?: string | undefined;
36
- validation?: {
37
- success?: string | undefined;
38
- error?: string | undefined;
39
- } | undefined;
40
- size?: {
41
- [x: string]: string | undefined;
42
- sm?: string | undefined;
43
- md?: string | undefined;
44
- lg?: string | undefined;
45
- } | undefined;
46
- prefix?: {
47
- addon?: string | undefined;
48
- icon?: string | undefined;
49
- } | undefined;
50
- } | undefined;
51
- standard?: {
52
- disabled?: {
53
- enabled?: string | undefined;
54
- disabled?: string | undefined;
55
- } | undefined;
56
- base?: string | undefined;
57
- default?: string | undefined;
58
- validation?: {
59
- success?: string | undefined;
60
- error?: string | undefined;
61
- } | undefined;
62
- size?: {
63
- [x: string]: string | undefined;
64
- sm?: string | undefined;
65
- md?: string | undefined;
66
- lg?: string | undefined;
67
- } | undefined;
68
- prefix?: {
69
- addon?: string | undefined;
70
- icon?: string | undefined;
71
- } | undefined;
72
- } | undefined;
73
- fill?: {
74
- disabled?: {
75
- enabled?: string | undefined;
76
- disabled?: string | undefined;
77
- } | undefined;
78
- base?: string | undefined;
79
- default?: string | undefined;
80
- validation?: {
81
- success?: string | undefined;
82
- error?: string | undefined;
83
- } | undefined;
84
- size?: {
85
- [x: string]: string | undefined;
86
- sm?: string | undefined;
87
- md?: string | undefined;
88
- lg?: string | undefined;
89
- } | undefined;
90
- prefix?: {
91
- addon?: string | undefined;
92
- icon?: string | undefined;
93
- } | undefined;
94
- } | undefined;
95
- } | undefined;
96
- }>;
97
- fetchClass(): void;
98
- static ɵfac: i0.ɵɵFactoryDeclaration<InputDirective, never>;
99
- static ɵdir: i0.ɵɵDirectiveDeclaration<InputDirective, "input[flowbiteInput]", never, { "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
100
- }
@@ -1,24 +0,0 @@
1
- import type { DeepPartial } from '../../../common';
2
- import type { FlowbiteBoolean } from '../../../common/type-definitions/flowbite.boolean';
3
- import type { FlowbiteClass } from '../../../common/type-definitions/flowbite.class';
4
- import type { FormFieldFloatingLabelTypes, FormFieldPrefixes, FormFieldSizes, FormFieldValidations } from '../form-field.theme';
5
- export interface InputDirectiveProperties {
6
- size: keyof FormFieldSizes;
7
- disabled: keyof FlowbiteBoolean;
8
- validate?: keyof FormFieldValidations;
9
- floatingLabelType?: keyof FormFieldFloatingLabelTypes;
10
- prefix?: keyof FormFieldPrefixes;
11
- customStyle: DeepPartial<InputDirectiveBaseTheme>;
12
- }
13
- export interface InputDirectiveBaseTheme {
14
- base: string;
15
- default: string;
16
- size: FormFieldSizes;
17
- disabled: FlowbiteBoolean;
18
- validation: FormFieldValidations;
19
- prefix?: FormFieldPrefixes;
20
- floatingLabel: Record<keyof FormFieldFloatingLabelTypes, Omit<InputDirectiveBaseTheme, 'floatingLabel'>>;
21
- }
22
- export declare const inputDirectiveTheme: InputDirectiveBaseTheme;
23
- export type InputDirectiveClass = FlowbiteClass;
24
- export declare const inputDirectiveClassInstance: InputDirectiveClass;
@@ -1,8 +0,0 @@
1
- import type { FlowbiteThemeService } from '../../../services';
2
- import type { InputDirectiveBaseTheme, InputDirectiveClass, InputDirectiveProperties } from './input.directive.theme';
3
- import { InjectionToken } from '@angular/core';
4
- export declare const FLOWBITE_DIRECTIVE_INPUT_THEME_TOKEN: InjectionToken<InputDirectiveBaseTheme>;
5
- export declare class InputDirectiveThemeService implements FlowbiteThemeService<InputDirectiveProperties> {
6
- private readonly baseTheme;
7
- getClasses(properties: InputDirectiveProperties): InputDirectiveClass;
8
- }
@@ -1,62 +0,0 @@
1
- import { FormFieldComponent } from '../form-field.component';
2
- import { BaseInputDirective } from './base-input.directive';
3
- import { LabelDirectiveThemeService } from './label.directive.theme.service';
4
- import * as i0 from "@angular/core";
5
- export declare class LabelDirective extends BaseInputDirective {
6
- protected contentClasses: import("@angular/core").WritableSignal<import("../../../common").FlowbiteClass>;
7
- protected readonly themeService: LabelDirectiveThemeService;
8
- protected readonly for: FormFieldComponent;
9
- customStyle: import("@angular/core").InputSignal<{
10
- base?: string | undefined;
11
- default?: string | undefined;
12
- disabled?: {
13
- enabled?: string | undefined;
14
- disabled?: string | undefined;
15
- } | undefined;
16
- validation?: {
17
- success?: string | undefined;
18
- error?: string | undefined;
19
- } | undefined;
20
- floatingLabel?: {
21
- outline?: {
22
- disabled?: {
23
- enabled?: string | undefined;
24
- disabled?: string | undefined;
25
- } | undefined;
26
- base?: string | undefined;
27
- default?: string | undefined;
28
- validation?: {
29
- success?: string | undefined;
30
- error?: string | undefined;
31
- } | undefined;
32
- } | undefined;
33
- standard?: {
34
- disabled?: {
35
- enabled?: string | undefined;
36
- disabled?: string | undefined;
37
- } | undefined;
38
- base?: string | undefined;
39
- default?: string | undefined;
40
- validation?: {
41
- success?: string | undefined;
42
- error?: string | undefined;
43
- } | undefined;
44
- } | undefined;
45
- fill?: {
46
- disabled?: {
47
- enabled?: string | undefined;
48
- disabled?: string | undefined;
49
- } | undefined;
50
- base?: string | undefined;
51
- default?: string | undefined;
52
- validation?: {
53
- success?: string | undefined;
54
- error?: string | undefined;
55
- } | undefined;
56
- } | undefined;
57
- } | undefined;
58
- }>;
59
- fetchClass(): void;
60
- static ɵfac: i0.ɵɵFactoryDeclaration<LabelDirective, never>;
61
- static ɵdir: i0.ɵɵDirectiveDeclaration<LabelDirective, "label[flowbiteLabel]", never, { "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
62
- }