@surfnet/curve-angular 0.2.0

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 (189) hide show
  1. package/.postcssrc.json +7 -0
  2. package/.storybook/main.ts +9 -0
  3. package/.storybook/manager.ts +3 -0
  4. package/.storybook/preview.ts +28 -0
  5. package/.storybook/tsconfig.json +8 -0
  6. package/.turbo/turbo-build.log +32 -0
  7. package/CHANGELOG.md +29 -0
  8. package/angular.json +52 -0
  9. package/components.json +5 -0
  10. package/dist/fesm2022/surfnet-curve-angular.mjs +4237 -0
  11. package/dist/fesm2022/surfnet-curve-angular.mjs.map +1 -0
  12. package/dist/files/geist-cyrillic-ext-wght-italic.woff2 +0 -0
  13. package/dist/files/geist-cyrillic-ext-wght-normal.woff2 +0 -0
  14. package/dist/files/geist-cyrillic-wght-italic.woff2 +0 -0
  15. package/dist/files/geist-cyrillic-wght-normal.woff2 +0 -0
  16. package/dist/files/geist-latin-ext-wght-italic.woff2 +0 -0
  17. package/dist/files/geist-latin-ext-wght-normal.woff2 +0 -0
  18. package/dist/files/geist-latin-wght-italic.woff2 +0 -0
  19. package/dist/files/geist-latin-wght-normal.woff2 +0 -0
  20. package/dist/files/geist-vietnamese-wght-italic.woff2 +0 -0
  21. package/dist/files/geist-vietnamese-wght-normal.woff2 +0 -0
  22. package/dist/styles.css +2 -0
  23. package/dist/types/surfnet-curve-angular.d.ts +1017 -0
  24. package/ng-package.json +20 -0
  25. package/package.json +73 -0
  26. package/scripts/copy-font-files.ts +15 -0
  27. package/scripts/rewrite-helm-imports.ts +60 -0
  28. package/src/foundations/design-tokens.stories.ts +198 -0
  29. package/src/lib/ui/avatar/src/index.ts +22 -0
  30. package/src/lib/ui/avatar/src/lib/hlm-avatar-badge.ts +19 -0
  31. package/src/lib/ui/avatar/src/lib/hlm-avatar-fallback.ts +20 -0
  32. package/src/lib/ui/avatar/src/lib/hlm-avatar-group-count.ts +17 -0
  33. package/src/lib/ui/avatar/src/lib/hlm-avatar-group.ts +17 -0
  34. package/src/lib/ui/avatar/src/lib/hlm-avatar-image.ts +19 -0
  35. package/src/lib/ui/avatar/src/lib/hlm-avatar.stories.ts +107 -0
  36. package/src/lib/ui/avatar/src/lib/hlm-avatar.ts +32 -0
  37. package/src/lib/ui/breadcrumb/src/index.ts +30 -0
  38. package/src/lib/ui/breadcrumb/src/lib/hlm-breadcrumb-ellipsis.ts +36 -0
  39. package/src/lib/ui/breadcrumb/src/lib/hlm-breadcrumb-item.ts +14 -0
  40. package/src/lib/ui/breadcrumb/src/lib/hlm-breadcrumb-link.ts +36 -0
  41. package/src/lib/ui/breadcrumb/src/lib/hlm-breadcrumb-list.ts +17 -0
  42. package/src/lib/ui/breadcrumb/src/lib/hlm-breadcrumb-page.ts +17 -0
  43. package/src/lib/ui/breadcrumb/src/lib/hlm-breadcrumb-separator.ts +27 -0
  44. package/src/lib/ui/breadcrumb/src/lib/hlm-breadcrumb.stories.ts +81 -0
  45. package/src/lib/ui/breadcrumb/src/lib/hlm-breadcrumb.ts +13 -0
  46. package/src/lib/ui/button/src/index.ts +6 -0
  47. package/src/lib/ui/button/src/lib/hlm-button.stories.ts +170 -0
  48. package/src/lib/ui/button/src/lib/hlm-button.token.ts +22 -0
  49. package/src/lib/ui/button/src/lib/hlm-button.ts +76 -0
  50. package/src/lib/ui/card/src/index.ts +25 -0
  51. package/src/lib/ui/card/src/lib/hlm-card-action.ts +12 -0
  52. package/src/lib/ui/card/src/lib/hlm-card-content.ts +12 -0
  53. package/src/lib/ui/card/src/lib/hlm-card-description.ts +12 -0
  54. package/src/lib/ui/card/src/lib/hlm-card-footer.ts +14 -0
  55. package/src/lib/ui/card/src/lib/hlm-card-header.ts +15 -0
  56. package/src/lib/ui/card/src/lib/hlm-card-title.ts +12 -0
  57. package/src/lib/ui/card/src/lib/hlm-card.stories.ts +105 -0
  58. package/src/lib/ui/card/src/lib/hlm-card.token.ts +19 -0
  59. package/src/lib/ui/card/src/lib/hlm-card.ts +22 -0
  60. package/src/lib/ui/checkbox/src/index.ts +5 -0
  61. package/src/lib/ui/checkbox/src/lib/hlm-checkbox.stories.ts +78 -0
  62. package/src/lib/ui/checkbox/src/lib/hlm-checkbox.ts +160 -0
  63. package/src/lib/ui/data-table/src/index.ts +14 -0
  64. package/src/lib/ui/data-table/src/lib/hlm-data-table-content.ts +87 -0
  65. package/src/lib/ui/data-table/src/lib/hlm-data-table-pagination.ts +62 -0
  66. package/src/lib/ui/data-table/src/lib/hlm-data-table-toolbar.ts +16 -0
  67. package/src/lib/ui/data-table/src/lib/hlm-data-table.stories.ts +479 -0
  68. package/src/lib/ui/data-table/src/lib/inject-data-table.ts +86 -0
  69. package/src/lib/ui/dropdown-menu/src/index.ts +45 -0
  70. package/src/lib/ui/dropdown-menu/src/lib/hlm-dropdown-menu-checkbox-indicator.ts +20 -0
  71. package/src/lib/ui/dropdown-menu/src/lib/hlm-dropdown-menu-checkbox.ts +36 -0
  72. package/src/lib/ui/dropdown-menu/src/lib/hlm-dropdown-menu-group.ts +16 -0
  73. package/src/lib/ui/dropdown-menu/src/lib/hlm-dropdown-menu-item-sub-indicator.ts +17 -0
  74. package/src/lib/ui/dropdown-menu/src/lib/hlm-dropdown-menu-item.ts +41 -0
  75. package/src/lib/ui/dropdown-menu/src/lib/hlm-dropdown-menu-label.ts +20 -0
  76. package/src/lib/ui/dropdown-menu/src/lib/hlm-dropdown-menu-radio-indicator.ts +20 -0
  77. package/src/lib/ui/dropdown-menu/src/lib/hlm-dropdown-menu-radio.ts +36 -0
  78. package/src/lib/ui/dropdown-menu/src/lib/hlm-dropdown-menu-separator.ts +14 -0
  79. package/src/lib/ui/dropdown-menu/src/lib/hlm-dropdown-menu-shortcut.ts +14 -0
  80. package/src/lib/ui/dropdown-menu/src/lib/hlm-dropdown-menu-sub.ts +58 -0
  81. package/src/lib/ui/dropdown-menu/src/lib/hlm-dropdown-menu-token.ts +26 -0
  82. package/src/lib/ui/dropdown-menu/src/lib/hlm-dropdown-menu-trigger.ts +49 -0
  83. package/src/lib/ui/dropdown-menu/src/lib/hlm-dropdown-menu.stories.ts +125 -0
  84. package/src/lib/ui/dropdown-menu/src/lib/hlm-dropdown-menu.ts +62 -0
  85. package/src/lib/ui/field/src/index.ts +34 -0
  86. package/src/lib/ui/field/src/lib/hlm-field-content.ts +12 -0
  87. package/src/lib/ui/field/src/lib/hlm-field-description.ts +53 -0
  88. package/src/lib/ui/field/src/lib/hlm-field-error.ts +100 -0
  89. package/src/lib/ui/field/src/lib/hlm-field-group.ts +15 -0
  90. package/src/lib/ui/field/src/lib/hlm-field-label.ts +17 -0
  91. package/src/lib/ui/field/src/lib/hlm-field-legend.ts +17 -0
  92. package/src/lib/ui/field/src/lib/hlm-field-separator.ts +24 -0
  93. package/src/lib/ui/field/src/lib/hlm-field-set.ts +15 -0
  94. package/src/lib/ui/field/src/lib/hlm-field-title.ts +15 -0
  95. package/src/lib/ui/field/src/lib/hlm-field.stories.ts +117 -0
  96. package/src/lib/ui/field/src/lib/hlm-field.ts +49 -0
  97. package/src/lib/ui/icon/src/index.ts +7 -0
  98. package/src/lib/ui/icon/src/lib/hlm-icon.token.ts +20 -0
  99. package/src/lib/ui/icon/src/lib/hlm-icon.ts +42 -0
  100. package/src/lib/ui/input/src/index.ts +5 -0
  101. package/src/lib/ui/input/src/lib/hlm-input.stories.ts +94 -0
  102. package/src/lib/ui/input/src/lib/hlm-input.ts +20 -0
  103. package/src/lib/ui/input-group/src/index.ts +22 -0
  104. package/src/lib/ui/input-group/src/lib/hlm-input-group-addon.ts +40 -0
  105. package/src/lib/ui/input-group/src/lib/hlm-input-group-button.ts +47 -0
  106. package/src/lib/ui/input-group/src/lib/hlm-input-group-input.ts +17 -0
  107. package/src/lib/ui/input-group/src/lib/hlm-input-group-text.ts +14 -0
  108. package/src/lib/ui/input-group/src/lib/hlm-input-group-textarea.ts +17 -0
  109. package/src/lib/ui/input-group/src/lib/hlm-input-group.stories.ts +133 -0
  110. package/src/lib/ui/input-group/src/lib/hlm-input-group.ts +18 -0
  111. package/src/lib/ui/label/src/index.ts +5 -0
  112. package/src/lib/ui/label/src/lib/hlm-label.stories.ts +55 -0
  113. package/src/lib/ui/label/src/lib/hlm-label.ts +17 -0
  114. package/src/lib/ui/select/src/index.ts +52 -0
  115. package/src/lib/ui/select/src/lib/hlm-select-content.ts +44 -0
  116. package/src/lib/ui/select/src/lib/hlm-select-group.ts +14 -0
  117. package/src/lib/ui/select/src/lib/hlm-select-item.ts +36 -0
  118. package/src/lib/ui/select/src/lib/hlm-select-label.ts +14 -0
  119. package/src/lib/ui/select/src/lib/hlm-select-multiple.ts +45 -0
  120. package/src/lib/ui/select/src/lib/hlm-select-placeholder.ts +17 -0
  121. package/src/lib/ui/select/src/lib/hlm-select-portal.ts +8 -0
  122. package/src/lib/ui/select/src/lib/hlm-select-scroll-down.ts +22 -0
  123. package/src/lib/ui/select/src/lib/hlm-select-scroll-up.ts +22 -0
  124. package/src/lib/ui/select/src/lib/hlm-select-separator.ts +14 -0
  125. package/src/lib/ui/select/src/lib/hlm-select-trigger.ts +59 -0
  126. package/src/lib/ui/select/src/lib/hlm-select-value-template.ts +5 -0
  127. package/src/lib/ui/select/src/lib/hlm-select-value.ts +18 -0
  128. package/src/lib/ui/select/src/lib/hlm-select-values-content.ts +9 -0
  129. package/src/lib/ui/select/src/lib/hlm-select-values.ts +5 -0
  130. package/src/lib/ui/select/src/lib/hlm-select.stories.ts +105 -0
  131. package/src/lib/ui/select/src/lib/hlm-select.ts +45 -0
  132. package/src/lib/ui/separator/src/index.ts +5 -0
  133. package/src/lib/ui/separator/src/lib/hlm-separator.stories.ts +88 -0
  134. package/src/lib/ui/separator/src/lib/hlm-separator.ts +19 -0
  135. package/src/lib/ui/sheet/src/index.ts +34 -0
  136. package/src/lib/ui/sheet/src/lib/hlm-sheet-close.ts +9 -0
  137. package/src/lib/ui/sheet/src/lib/hlm-sheet-content.ts +66 -0
  138. package/src/lib/ui/sheet/src/lib/hlm-sheet-description.ts +14 -0
  139. package/src/lib/ui/sheet/src/lib/hlm-sheet-footer.ts +12 -0
  140. package/src/lib/ui/sheet/src/lib/hlm-sheet-header.ts +12 -0
  141. package/src/lib/ui/sheet/src/lib/hlm-sheet-overlay.ts +27 -0
  142. package/src/lib/ui/sheet/src/lib/hlm-sheet-portal.ts +8 -0
  143. package/src/lib/ui/sheet/src/lib/hlm-sheet-title.ts +14 -0
  144. package/src/lib/ui/sheet/src/lib/hlm-sheet-trigger.ts +9 -0
  145. package/src/lib/ui/sheet/src/lib/hlm-sheet.ts +29 -0
  146. package/src/lib/ui/sidebar/src/index.ts +75 -0
  147. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-content.ts +18 -0
  148. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-footer.ts +15 -0
  149. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-group-action.ts +18 -0
  150. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-group-content.ts +15 -0
  151. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-group-label.ts +18 -0
  152. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-group.ts +15 -0
  153. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-header.ts +15 -0
  154. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-input.ts +17 -0
  155. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-inset.ts +15 -0
  156. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-menu-action.ts +24 -0
  157. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-menu-badge.ts +18 -0
  158. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-menu-button.ts +97 -0
  159. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-menu-item.ts +15 -0
  160. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-menu-skeleton.ts +33 -0
  161. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-menu-sub-button.ts +41 -0
  162. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-menu-sub-item.ts +15 -0
  163. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-menu-sub.ts +18 -0
  164. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-menu.ts +15 -0
  165. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-rail.ts +34 -0
  166. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-separator.ts +17 -0
  167. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-trigger.ts +35 -0
  168. package/src/lib/ui/sidebar/src/lib/hlm-sidebar-wrapper.ts +24 -0
  169. package/src/lib/ui/sidebar/src/lib/hlm-sidebar.service.ts +136 -0
  170. package/src/lib/ui/sidebar/src/lib/hlm-sidebar.stories.ts +177 -0
  171. package/src/lib/ui/sidebar/src/lib/hlm-sidebar.token.ts +33 -0
  172. package/src/lib/ui/sidebar/src/lib/hlm-sidebar.ts +139 -0
  173. package/src/lib/ui/skeleton/src/index.ts +5 -0
  174. package/src/lib/ui/skeleton/src/lib/hlm-skeleton.ts +14 -0
  175. package/src/lib/ui/table/src/index.ts +25 -0
  176. package/src/lib/ui/table/src/lib/hlm-table.stories.ts +70 -0
  177. package/src/lib/ui/table/src/lib/hlm-table.ts +129 -0
  178. package/src/lib/ui/textarea/src/index.ts +5 -0
  179. package/src/lib/ui/textarea/src/lib/hlm-textarea.stories.ts +72 -0
  180. package/src/lib/ui/textarea/src/lib/hlm-textarea.ts +21 -0
  181. package/src/lib/ui/tooltip/src/index.ts +5 -0
  182. package/src/lib/ui/tooltip/src/lib/hlm-tooltip.ts +44 -0
  183. package/src/lib/ui/utils/src/index.ts +1 -0
  184. package/src/lib/ui/utils/src/lib/hlm.ts +313 -0
  185. package/src/public-api.ts +24 -0
  186. package/src/styles.css +43 -0
  187. package/tsconfig.json +45 -0
  188. package/tsconfig.lib.json +11 -0
  189. package/tsconfig.lib.prod.json +9 -0
@@ -0,0 +1,1017 @@
1
+ import * as i0 from '@angular/core';
2
+ import { ValueProvider, OnDestroy, Signal, ElementRef, Injector } from '@angular/core';
3
+ import * as i1 from '@spartan-ng/brain/avatar';
4
+ import { BrnAvatar } from '@spartan-ng/brain/avatar';
5
+ import { ClassValue } from 'clsx';
6
+ import * as _angular_router from '@angular/router';
7
+ import * as class_variance_authority_types from 'class-variance-authority/types';
8
+ import { VariantProps } from 'class-variance-authority';
9
+ import * as i1$1 from '@spartan-ng/brain/button';
10
+ import { BooleanInput, NumberInput } from '@angular/cdk/coercion';
11
+ import { ControlValueAccessor } from '@angular/forms';
12
+ import { ChangeFn, TouchFn } from '@spartan-ng/brain/forms';
13
+ import * as i1$2 from '@spartan-ng/brain/field';
14
+ import { Table, ColumnDef, Row, SortingState, ColumnFiltersState, VisibilityState, PaginationState } from '@tanstack/angular-table';
15
+ import * as i1$3 from '@angular/cdk/menu';
16
+ import { MenuAlign, MenuSide } from '@spartan-ng/brain/core';
17
+ import * as i1$4 from '@spartan-ng/brain/label';
18
+ import * as i1$5 from '@spartan-ng/brain/input';
19
+ import * as i1$6 from '@spartan-ng/brain/textarea';
20
+ import * as i1$7 from '@spartan-ng/brain/select';
21
+ import * as i2 from '@spartan-ng/brain/popover';
22
+ import * as i1$8 from '@spartan-ng/brain/separator';
23
+ import * as i1$9 from '@spartan-ng/brain/tooltip';
24
+
25
+ declare class HlmAvatar extends BrnAvatar {
26
+ readonly size: i0.InputSignal<"sm" | "default" | "lg">;
27
+ constructor();
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmAvatar, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<HlmAvatar, "hlm-avatar", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, ["[hlmAvatarImage],[brnAvatarImage]", "[hlmAvatarFallback],[brnAvatarFallback]", "*"], true, never>;
30
+ }
31
+
32
+ declare class HlmAvatarBadge {
33
+ constructor();
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmAvatarBadge, never>;
35
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmAvatarBadge, "[hlmAvatarBadge],hlm-avatar-badge", never, {}, {}, never, never, true, never>;
36
+ }
37
+
38
+ declare class HlmAvatarFallback {
39
+ constructor();
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmAvatarFallback, never>;
41
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmAvatarFallback, "[hlmAvatarFallback]", ["avatarFallback"], {}, {}, never, never, true, [{ directive: typeof i1.BrnAvatarFallback; inputs: {}; outputs: {}; }]>;
42
+ }
43
+
44
+ declare class HlmAvatarGroup {
45
+ constructor();
46
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmAvatarGroup, never>;
47
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmAvatarGroup, "[hlmAvatarGroup],hlm-avatar-group", never, {}, {}, never, never, true, never>;
48
+ }
49
+
50
+ declare class HlmAvatarGroupCount {
51
+ constructor();
52
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmAvatarGroupCount, never>;
53
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmAvatarGroupCount, "[hlmAvatarGroupCount],hlm-avatar-group-count", never, {}, {}, never, never, true, never>;
54
+ }
55
+
56
+ declare class HlmAvatarImage {
57
+ readonly canShow: i0.Signal<boolean>;
58
+ constructor();
59
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmAvatarImage, never>;
60
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmAvatarImage, "img[hlmAvatarImage]", ["avatarImage"], {}, {}, never, never, true, [{ directive: typeof i1.BrnAvatarImage; inputs: {}; outputs: {}; }]>;
61
+ }
62
+
63
+ declare const HlmAvatarImports: readonly [typeof HlmAvatar, typeof HlmAvatarBadge, typeof HlmAvatarFallback, typeof HlmAvatarGroup, typeof HlmAvatarGroupCount, typeof HlmAvatarImage];
64
+
65
+ declare class HlmBreadcrumb {
66
+ readonly ariaLabel: i0.InputSignal<string>;
67
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmBreadcrumb, never>;
68
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmBreadcrumb, "[hlmBreadcrumb]", never, { "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
69
+ }
70
+
71
+ declare class HlmBreadcrumbEllipsis {
72
+ readonly userClass: i0.InputSignal<ClassValue>;
73
+ /** Screen reader only text for the ellipsis */
74
+ readonly srOnlyText: i0.InputSignal<string>;
75
+ protected readonly _computedClass: i0.Signal<string>;
76
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmBreadcrumbEllipsis, never>;
77
+ static ɵcmp: i0.ɵɵComponentDeclaration<HlmBreadcrumbEllipsis, "hlm-breadcrumb-ellipsis", never, { "userClass": { "alias": "class"; "required": false; "isSignal": true; }; "srOnlyText": { "alias": "srOnlyText"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
78
+ }
79
+
80
+ declare class HlmBreadcrumbItem {
81
+ constructor();
82
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmBreadcrumbItem, never>;
83
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmBreadcrumbItem, "[hlmBreadcrumbItem]", never, {}, {}, never, never, true, never>;
84
+ }
85
+
86
+ declare class HlmBreadcrumbLink {
87
+ /** The link to navigate to the page. */
88
+ readonly link: i0.InputSignal<string | readonly any[] | _angular_router.UrlTree | null | undefined>;
89
+ constructor();
90
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmBreadcrumbLink, never>;
91
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmBreadcrumbLink, "[hlmBreadcrumbLink]", never, { "link": { "alias": "link"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof _angular_router.RouterLink; inputs: { "target": "target"; "queryParams": "queryParams"; "fragment": "fragment"; "queryParamsHandling": "queryParamsHandling"; "state": "state"; "info": "info"; "relativeTo": "relativeTo"; "preserveFragment": "preserveFragment"; "skipLocationChange": "skipLocationChange"; "replaceUrl": "replaceUrl"; "routerLink": "link"; }; outputs: {}; }]>;
92
+ }
93
+
94
+ declare class HlmBreadcrumbList {
95
+ constructor();
96
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmBreadcrumbList, never>;
97
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmBreadcrumbList, "[hlmBreadcrumbList]", never, {}, {}, never, never, true, never>;
98
+ }
99
+
100
+ declare class HlmBreadcrumbPage {
101
+ constructor();
102
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmBreadcrumbPage, never>;
103
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmBreadcrumbPage, "[hlmBreadcrumbPage]", never, {}, {}, never, never, true, never>;
104
+ }
105
+
106
+ declare class HlmBreadcrumbSeparator {
107
+ constructor();
108
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmBreadcrumbSeparator, never>;
109
+ static ɵcmp: i0.ɵɵComponentDeclaration<HlmBreadcrumbSeparator, "[hlmBreadcrumbSeparator]", never, {}, {}, never, ["*"], true, never>;
110
+ }
111
+
112
+ declare const HlmBreadcrumbImports: readonly [typeof HlmBreadcrumb, typeof HlmBreadcrumbEllipsis, typeof HlmBreadcrumbSeparator, typeof HlmBreadcrumbItem, typeof HlmBreadcrumbLink, typeof HlmBreadcrumbPage, typeof HlmBreadcrumbList];
113
+ /**
114
+ * @deprecated Use `HlmBreadcrumbImports` instead.
115
+ */
116
+ declare const HlmBreadCrumbImports: readonly [typeof HlmBreadcrumb, typeof HlmBreadcrumbEllipsis, typeof HlmBreadcrumbSeparator, typeof HlmBreadcrumbItem, typeof HlmBreadcrumbLink, typeof HlmBreadcrumbPage, typeof HlmBreadcrumbList];
117
+
118
+ declare const buttonVariants: (props?: ({
119
+ variant?: "default" | "link" | "outline" | "secondary" | "ghost" | "destructive" | null | undefined;
120
+ size?: "sm" | "default" | "lg" | "xs" | "icon" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined;
121
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
122
+ type ButtonVariants = VariantProps<typeof buttonVariants>;
123
+ declare class HlmButton {
124
+ private readonly _config;
125
+ private readonly _additionalClasses;
126
+ readonly variant: i0.InputSignal<"default" | "link" | "outline" | "secondary" | "ghost" | "destructive" | null | undefined>;
127
+ readonly size: i0.InputSignal<"sm" | "default" | "lg" | "xs" | "icon" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined>;
128
+ constructor();
129
+ setClass(classes: string): void;
130
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmButton, never>;
131
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmButton, "button[hlmBtn], a[hlmBtn]", ["hlmBtn"], { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof i1$1.BrnButton; inputs: { "disabled": "disabled"; }; outputs: {}; }]>;
132
+ }
133
+
134
+ interface BrnButtonConfig {
135
+ variant: ButtonVariants['variant'];
136
+ size: ButtonVariants['size'];
137
+ }
138
+ declare function provideBrnButtonConfig(config: Partial<BrnButtonConfig>): ValueProvider;
139
+ declare function injectBrnButtonConfig(): BrnButtonConfig;
140
+
141
+ declare const HlmButtonImports: readonly [typeof HlmButton];
142
+
143
+ declare class HlmCard {
144
+ private readonly _defaultConfig;
145
+ readonly size: i0.InputSignal<"sm" | "default">;
146
+ constructor();
147
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmCard, never>;
148
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmCard, "[hlmCard],hlm-card", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
149
+ }
150
+
151
+ declare class HlmCardAction {
152
+ constructor();
153
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmCardAction, never>;
154
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmCardAction, "[hlmCardAction]", never, {}, {}, never, never, true, never>;
155
+ }
156
+
157
+ declare class HlmCardContent {
158
+ constructor();
159
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmCardContent, never>;
160
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmCardContent, "[hlmCardContent]", never, {}, {}, never, never, true, never>;
161
+ }
162
+
163
+ declare class HlmCardDescription {
164
+ constructor();
165
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmCardDescription, never>;
166
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmCardDescription, "[hlmCardDescription]", never, {}, {}, never, never, true, never>;
167
+ }
168
+
169
+ declare class HlmCardFooter {
170
+ constructor();
171
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmCardFooter, never>;
172
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmCardFooter, "[hlmCardFooter],hlm-card-footer", never, {}, {}, never, never, true, never>;
173
+ }
174
+
175
+ declare class HlmCardHeader {
176
+ constructor();
177
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmCardHeader, never>;
178
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmCardHeader, "[hlmCardHeader],hlm-card-header", never, {}, {}, never, never, true, never>;
179
+ }
180
+
181
+ declare class HlmCardTitle {
182
+ constructor();
183
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmCardTitle, never>;
184
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmCardTitle, "[hlmCardTitle]", never, {}, {}, never, never, true, never>;
185
+ }
186
+
187
+ declare const HlmCardImports: readonly [typeof HlmCard, typeof HlmCardAction, typeof HlmCardContent, typeof HlmCardDescription, typeof HlmCardFooter, typeof HlmCardHeader, typeof HlmCardTitle];
188
+
189
+ declare const HLM_CHECKBOX_VALUE_ACCESSOR: {
190
+ provide: i0.InjectionToken<readonly ControlValueAccessor[]>;
191
+ useExisting: i0.Type<any>;
192
+ multi: boolean;
193
+ };
194
+ declare class HlmCheckbox implements ControlValueAccessor {
195
+ readonly userClass: i0.InputSignal<ClassValue>;
196
+ protected readonly _computedClass: i0.Signal<string>;
197
+ /** Used to set the id on the underlying brn element. */
198
+ readonly inputId: i0.InputSignal<string | null>;
199
+ /** Used to set the aria-label attribute on the underlying brn element. */
200
+ readonly ariaLabel: i0.InputSignal<string | null>;
201
+ /** Used to set the aria-labelledby attribute on the underlying brn element. */
202
+ readonly ariaLabelledby: i0.InputSignal<string | null>;
203
+ /** Used to set the aria-describedby attribute on the underlying brn element. */
204
+ readonly ariaDescribedby: i0.InputSignal<string | null>;
205
+ /** The checked state of the checkbox. */
206
+ readonly checkedInput: i0.InputSignalWithTransform<boolean, BooleanInput>;
207
+ readonly checked: i0.WritableSignal<boolean>;
208
+ /** Emits when checked state changes. */
209
+ readonly checkedChange: i0.OutputEmitterRef<boolean>;
210
+ /**
211
+ * The indeterminate state of the checkbox.
212
+ * For example, a "select all/deselect all" checkbox may be in the indeterminate state when some but not all of its sub-controls are checked.
213
+ */
214
+ readonly indeterminate: i0.ModelSignal<boolean>;
215
+ /** The name attribute of the checkbox. */
216
+ readonly name: i0.InputSignal<string | null>;
217
+ /** Whether the checkbox is required. */
218
+ readonly required: i0.InputSignalWithTransform<boolean, BooleanInput>;
219
+ /** Whether the checkbox is disabled. */
220
+ readonly disabled: i0.InputSignalWithTransform<boolean, BooleanInput>;
221
+ /** Whether to force the checkbox into an invalid state. */
222
+ readonly forceInvalid: i0.InputSignalWithTransform<boolean, BooleanInput>;
223
+ protected readonly _disabled: i0.WritableSignal<boolean>;
224
+ private readonly _brnCheckbox;
225
+ private readonly _spartanInvalid;
226
+ protected readonly _errorStateClass: i0.Signal<"" | "border-destructive focus-visible:border-destructive focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40">;
227
+ protected _onChange?: ChangeFn<boolean>;
228
+ protected _onTouched?: TouchFn;
229
+ protected _handleChange(value: boolean): void;
230
+ /** CONTROL VALUE ACCESSOR */
231
+ writeValue(value: boolean): void;
232
+ registerOnChange(fn: ChangeFn<boolean>): void;
233
+ registerOnTouched(fn: TouchFn): void;
234
+ setDisabledState(isDisabled: boolean): void;
235
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmCheckbox, never>;
236
+ static ɵcmp: i0.ɵɵComponentDeclaration<HlmCheckbox, "hlm-checkbox", never, { "userClass": { "alias": "class"; "required": false; "isSignal": true; }; "inputId": { "alias": "inputId"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; "isSignal": true; }; "ariaDescribedby": { "alias": "aria-describedby"; "required": false; "isSignal": true; }; "checkedInput": { "alias": "checked"; "required": false; "isSignal": true; }; "indeterminate": { "alias": "indeterminate"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "forceInvalid": { "alias": "forceInvalid"; "required": false; "isSignal": true; }; }, { "checkedChange": "checkedChange"; "indeterminate": "indeterminateChange"; }, never, never, true, [{ directive: typeof i1$2.BrnFieldControlDescribedBy; inputs: {}; outputs: {}; }]>;
237
+ }
238
+
239
+ declare const HlmCheckboxImports: readonly [typeof HlmCheckbox];
240
+
241
+ /**
242
+ * Renders a TanStack table instance into the styled helm `table` directives. Mirrors React's
243
+ * `DataTableContent`: header groups, body rows (with `data-state="selected"` per selected
244
+ * row), and an empty-state row when there are no rows.
245
+ *
246
+ * String / primitive header and cell defs are rendered as inert escaped text by `*flexRender`
247
+ * (matching React's `flexRender` of a string node); component cell defs created with
248
+ * `flexRenderComponent()` are mounted in place. To render markup, return a
249
+ * `flexRenderComponent()` rather than an HTML string — raw strings are never parsed as HTML.
250
+ */
251
+ declare class HlmDataTableContent<TData> {
252
+ /** The TanStack table instance, e.g. from `injectDataTable`. */
253
+ readonly table: i0.InputSignal<Table<TData>>;
254
+ /** The column defs — used to span the empty-state row across all columns. */
255
+ readonly columns: i0.InputSignal<ColumnDef<TData, unknown>[]>;
256
+ /** Content shown in the body when there are no rows. */
257
+ readonly noResultsLabel: i0.InputSignal<string>;
258
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmDataTableContent<any>, never>;
259
+ static ɵcmp: i0.ɵɵComponentDeclaration<HlmDataTableContent<any>, "hlm-data-table-content", never, { "table": { "alias": "table"; "required": true; "isSignal": true; }; "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "noResultsLabel": { "alias": "noResultsLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
260
+ }
261
+
262
+ /**
263
+ * Selection summary plus Previous / Next paging controls. Mirrors React's
264
+ * `DataTablePagination`.
265
+ */
266
+ declare class HlmDataTablePagination<TData> {
267
+ /** The TanStack table instance, e.g. from `injectDataTable`. */
268
+ readonly table: i0.InputSignal<Table<TData>>;
269
+ /** Label for the "previous page" button. */
270
+ readonly previousLabel: i0.InputSignal<string>;
271
+ /** Label for the "next page" button. */
272
+ readonly nextLabel: i0.InputSignal<string>;
273
+ /** Builds the selection-summary text from the selected and total row counts. */
274
+ readonly selectionLabel: i0.InputSignal<(selectedCount: number, totalCount: number) => string>;
275
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmDataTablePagination<any>, never>;
276
+ static ɵcmp: i0.ɵɵComponentDeclaration<HlmDataTablePagination<any>, "hlm-data-table-pagination", never, { "table": { "alias": "table"; "required": true; "isSignal": true; }; "previousLabel": { "alias": "previousLabel"; "required": false; "isSignal": true; }; "nextLabel": { "alias": "nextLabel"; "required": false; "isSignal": true; }; "selectionLabel": { "alias": "selectionLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
277
+ }
278
+
279
+ /**
280
+ * Layout wrapper for data-table controls (filter inputs, column toggles, actions). Mirrors
281
+ * React's `DataTableToolbar` — a styled flex row above the table.
282
+ */
283
+ declare class HlmDataTableToolbar {
284
+ constructor();
285
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmDataTableToolbar, never>;
286
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmDataTableToolbar, "[hlmDataTableToolbar]", never, {}, {}, never, never, true, never>;
287
+ }
288
+
289
+ interface InjectDataTableOptions<TData> {
290
+ data: TData[];
291
+ columns: ColumnDef<TData, unknown>[];
292
+ /** Derive a stable row id (e.g. from a record's id) so row selection survives data changes. */
293
+ getRowId?: (originalRow: TData, index: number, parent?: Row<TData>) => string;
294
+ initialSorting?: SortingState;
295
+ initialColumnFilters?: ColumnFiltersState;
296
+ initialColumnVisibility?: VisibilityState;
297
+ initialPagination?: PaginationState;
298
+ }
299
+ /**
300
+ * Angular analog of React's `useDataTable`. Wraps `createAngularTable` with the core,
301
+ * sorted, filtered and paginated row models and manages sorting, column-filter,
302
+ * column-visibility, row-selection and pagination state with signals.
303
+ *
304
+ * Must be called from an injection context (a component constructor or field initializer),
305
+ * since `createAngularTable` injects. Pass an options factory so reactive `data` re-renders
306
+ * the table:
307
+ *
308
+ * ```ts
309
+ * readonly table = injectDataTable(() => ({ data: this.data(), columns }));
310
+ * ```
311
+ */
312
+ declare function injectDataTable<TData>(options: () => InjectDataTableOptions<TData>): Table<TData>;
313
+
314
+ declare const HlmDataTableImports: readonly [typeof HlmDataTableContent, typeof HlmDataTablePagination, typeof HlmDataTableToolbar];
315
+
316
+ declare class HlmDropdownMenu {
317
+ private readonly _host;
318
+ protected readonly _state: i0.WritableSignal<string>;
319
+ protected readonly _side: i0.WritableSignal<string>;
320
+ readonly sideOffset: i0.InputSignalWithTransform<number, NumberInput>;
321
+ constructor();
322
+ private setSideWithDarkMagic;
323
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmDropdownMenu, never>;
324
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmDropdownMenu, "[hlmDropdownMenu],hlm-dropdown-menu", never, { "sideOffset": { "alias": "sideOffset"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof i1$3.CdkMenu; inputs: {}; outputs: {}; }]>;
325
+ }
326
+
327
+ declare class HlmDropdownMenuCheckbox {
328
+ private readonly _cdkMenuItem;
329
+ readonly checked: i0.InputSignalWithTransform<boolean, BooleanInput>;
330
+ readonly disabled: i0.InputSignalWithTransform<boolean, BooleanInput>;
331
+ constructor();
332
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmDropdownMenuCheckbox, never>;
333
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmDropdownMenuCheckbox, "[hlmDropdownMenuCheckbox]", never, { "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof i1$3.CdkMenuItemCheckbox; inputs: { "cdkMenuItemDisabled": "disabled"; "cdkMenuItemChecked": "checked"; }; outputs: { "cdkMenuItemTriggered": "triggered"; }; }]>;
334
+ }
335
+
336
+ declare class HlmDropdownMenuCheckboxIndicator {
337
+ constructor();
338
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmDropdownMenuCheckboxIndicator, never>;
339
+ static ɵcmp: i0.ɵɵComponentDeclaration<HlmDropdownMenuCheckboxIndicator, "hlm-dropdown-menu-checkbox-indicator", never, {}, {}, never, never, true, never>;
340
+ }
341
+
342
+ declare class HlmDropdownMenuGroup {
343
+ constructor();
344
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmDropdownMenuGroup, never>;
345
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmDropdownMenuGroup, "[hlmDropdownMenuGroup],hlm-dropdown-menu-group", never, {}, {}, never, never, true, [{ directive: typeof i1$3.CdkMenuGroup; inputs: {}; outputs: {}; }]>;
346
+ }
347
+
348
+ declare class HlmDropdownMenuItem {
349
+ protected readonly _isButton: boolean;
350
+ readonly disabled: i0.InputSignalWithTransform<boolean, BooleanInput>;
351
+ readonly variant: i0.InputSignal<"default" | "destructive">;
352
+ readonly inset: i0.InputSignalWithTransform<boolean, BooleanInput>;
353
+ constructor();
354
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmDropdownMenuItem, never>;
355
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmDropdownMenuItem, "[hlmDropdownMenuItem],hlm-dropdown-menu-item", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "inset": { "alias": "inset"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof i1$3.CdkMenuItem; inputs: { "cdkMenuItemDisabled": "disabled"; }; outputs: { "cdkMenuItemTriggered": "triggered"; }; }]>;
356
+ }
357
+
358
+ declare class HlmDropdownMenuItemSubIndicator {
359
+ constructor();
360
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmDropdownMenuItemSubIndicator, never>;
361
+ static ɵcmp: i0.ɵɵComponentDeclaration<HlmDropdownMenuItemSubIndicator, "hlm-dropdown-menu-item-sub-indicator", never, {}, {}, never, never, true, never>;
362
+ }
363
+
364
+ declare class HlmDropdownMenuLabel {
365
+ constructor();
366
+ readonly inset: i0.InputSignalWithTransform<boolean, BooleanInput>;
367
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmDropdownMenuLabel, never>;
368
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmDropdownMenuLabel, "[hlmDropdownMenuLabel],hlm-dropdown-menu-label", never, { "inset": { "alias": "inset"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
369
+ }
370
+
371
+ declare class HlmDropdownMenuRadio {
372
+ private readonly _cdkMenuItem;
373
+ readonly checked: i0.InputSignalWithTransform<boolean, BooleanInput>;
374
+ readonly disabled: i0.InputSignalWithTransform<boolean, BooleanInput>;
375
+ constructor();
376
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmDropdownMenuRadio, never>;
377
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmDropdownMenuRadio, "[hlmDropdownMenuRadio]", never, { "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof i1$3.CdkMenuItemRadio; inputs: { "cdkMenuItemDisabled": "disabled"; "cdkMenuItemChecked": "checked"; }; outputs: { "cdkMenuItemTriggered": "triggered"; }; }]>;
378
+ }
379
+
380
+ declare class HlmDropdownMenuRadioIndicator {
381
+ constructor();
382
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmDropdownMenuRadioIndicator, never>;
383
+ static ɵcmp: i0.ɵɵComponentDeclaration<HlmDropdownMenuRadioIndicator, "hlm-dropdown-menu-radio-indicator", never, {}, {}, never, never, true, never>;
384
+ }
385
+
386
+ declare class HlmDropdownMenuSeparator {
387
+ constructor();
388
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmDropdownMenuSeparator, never>;
389
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmDropdownMenuSeparator, "[hlmDropdownMenuSeparator],hlm-dropdown-menu-separator", never, {}, {}, never, never, true, never>;
390
+ }
391
+
392
+ declare class HlmDropdownMenuShortcut {
393
+ constructor();
394
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmDropdownMenuShortcut, never>;
395
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmDropdownMenuShortcut, "[hlmDropdownMenuShortcut],hlm-dropdown-menu-shortcut", never, {}, {}, never, never, true, never>;
396
+ }
397
+
398
+ declare class HlmDropdownMenuSub {
399
+ private readonly _host;
400
+ protected readonly _state: i0.WritableSignal<string>;
401
+ protected readonly _side: i0.WritableSignal<string>;
402
+ constructor();
403
+ private setSideWithDarkMagic;
404
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmDropdownMenuSub, never>;
405
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmDropdownMenuSub, "[hlmDropdownMenuSub],hlm-dropdown-menu-sub", never, {}, {}, never, never, true, [{ directive: typeof i1$3.CdkMenu; inputs: {}; outputs: {}; }]>;
406
+ }
407
+
408
+ declare class HlmDropdownMenuTrigger {
409
+ private readonly _cdkTrigger;
410
+ private readonly _config;
411
+ readonly align: i0.InputSignal<MenuAlign>;
412
+ readonly side: i0.InputSignal<MenuSide>;
413
+ private readonly _menuPosition;
414
+ constructor();
415
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmDropdownMenuTrigger, never>;
416
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmDropdownMenuTrigger, "[hlmDropdownMenuTrigger]", never, { "align": { "alias": "align"; "required": false; "isSignal": true; }; "side": { "alias": "side"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof i1$3.CdkMenuTrigger; inputs: { "cdkMenuTriggerFor": "hlmDropdownMenuTrigger"; "cdkMenuTriggerData": "hlmDropdownMenuTriggerData"; }; outputs: { "cdkMenuOpened": "hlmDropdownMenuOpened"; "cdkMenuClosed": "hlmDropdownMenuClosed"; }; }]>;
417
+ }
418
+
419
+ interface HlmDropdownMenuConfig {
420
+ align: MenuAlign;
421
+ side: MenuSide;
422
+ }
423
+ declare function provideHlmDropdownMenuConfig(config: Partial<HlmDropdownMenuConfig>): ValueProvider;
424
+ declare function injectHlmDropdownMenuConfig(): HlmDropdownMenuConfig;
425
+
426
+ declare const HlmDropdownMenuImports: readonly [typeof HlmDropdownMenu, typeof HlmDropdownMenuCheckbox, typeof HlmDropdownMenuCheckboxIndicator, typeof HlmDropdownMenuGroup, typeof HlmDropdownMenuItem, typeof HlmDropdownMenuItemSubIndicator, typeof HlmDropdownMenuLabel, typeof HlmDropdownMenuRadio, typeof HlmDropdownMenuRadioIndicator, typeof HlmDropdownMenuSeparator, typeof HlmDropdownMenuShortcut, typeof HlmDropdownMenuSub, typeof HlmDropdownMenuTrigger];
427
+
428
+ declare const fieldVariants: (props?: ({
429
+ orientation?: "vertical" | "horizontal" | "responsive" | null | undefined;
430
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
431
+ type FieldVariants = VariantProps<typeof fieldVariants>;
432
+ declare class HlmField {
433
+ readonly orientation: i0.InputSignal<"vertical" | "horizontal" | "responsive" | null | undefined>;
434
+ constructor();
435
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmField, never>;
436
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmField, "[hlmField],hlm-field", never, { "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof i1$2.BrnField; inputs: { "data-invalid": "data-invalid"; "forceInvalid": "forceInvalid"; }; outputs: {}; }]>;
437
+ }
438
+
439
+ declare class HlmFieldContent {
440
+ constructor();
441
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmFieldContent, never>;
442
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmFieldContent, "[hlmFieldContent],hlm-field-content", never, {}, {}, never, never, true, never>;
443
+ }
444
+
445
+ declare class HlmFieldDescription implements OnDestroy {
446
+ private static _id;
447
+ private readonly _a11y;
448
+ readonly id: i0.InputSignal<string>;
449
+ private _registeredId?;
450
+ private readonly _cleanup;
451
+ constructor();
452
+ ngOnDestroy(): void;
453
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmFieldDescription, never>;
454
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmFieldDescription, "[hlmFieldDescription],hlm-field-description", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
455
+ }
456
+
457
+ declare class HlmFieldError implements OnDestroy {
458
+ private static _id;
459
+ private readonly _field;
460
+ private readonly _a11y;
461
+ private _registeredId?;
462
+ private readonly _hasParentField;
463
+ /** The unique ID for the field error. If none is supplied, it will be auto-generated. */
464
+ readonly id: i0.InputSignal<string>;
465
+ /**
466
+ * The name of the specific validator error key to match (e.g. 'required').
467
+ * When omitted, the error is shown if any validation error is present.
468
+ */
469
+ readonly validator: i0.InputSignal<string | undefined>;
470
+ /** Forces the error message to be visible regardless of the control's validation state. */
471
+ readonly forceShow: i0.InputSignalWithTransform<boolean, BooleanInput>;
472
+ protected readonly _display: i0.Signal<boolean>;
473
+ protected readonly _hasError: i0.Signal<boolean>;
474
+ private readonly _cleanup;
475
+ constructor();
476
+ ngOnDestroy(): void;
477
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmFieldError, never>;
478
+ static ɵcmp: i0.ɵɵComponentDeclaration<HlmFieldError, "hlm-field-error", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "validator": { "alias": "validator"; "required": false; "isSignal": true; }; "forceShow": { "alias": "forceShow"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
479
+ }
480
+
481
+ declare class HlmFieldGroup {
482
+ constructor();
483
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmFieldGroup, never>;
484
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmFieldGroup, "[hlmFieldGroup],hlm-field-group", never, {}, {}, never, never, true, never>;
485
+ }
486
+
487
+ declare class HlmLabel {
488
+ constructor();
489
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmLabel, never>;
490
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmLabel, "[hlmLabel]", never, {}, {}, never, never, true, [{ directive: typeof i1$4.BrnLabel; inputs: { "id": "id"; "for": "for"; }; outputs: {}; }]>;
491
+ }
492
+
493
+ declare class HlmFieldLabel {
494
+ constructor();
495
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmFieldLabel, never>;
496
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmFieldLabel, "[hlmFieldLabel],hlm-field-label", never, {}, {}, never, never, true, [{ directive: typeof HlmLabel; inputs: {}; outputs: {}; }]>;
497
+ }
498
+
499
+ declare class HlmFieldLegend {
500
+ readonly variant: i0.InputSignal<"label" | "legend">;
501
+ constructor();
502
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmFieldLegend, never>;
503
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmFieldLegend, "legend[hlmFieldLegend]", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
504
+ }
505
+
506
+ declare class HlmFieldSeparator {
507
+ constructor();
508
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmFieldSeparator, never>;
509
+ static ɵcmp: i0.ɵɵComponentDeclaration<HlmFieldSeparator, "hlm-field-separator", never, {}, {}, never, ["*"], true, never>;
510
+ }
511
+
512
+ declare class HlmFieldSet {
513
+ constructor();
514
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmFieldSet, never>;
515
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmFieldSet, "fieldset[hlmFieldSet]", never, {}, {}, never, never, true, never>;
516
+ }
517
+
518
+ declare class HlmFieldTitle {
519
+ constructor();
520
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmFieldTitle, never>;
521
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmFieldTitle, "[hlmFieldTitle],hlm-field-title", never, {}, {}, never, never, true, never>;
522
+ }
523
+
524
+ declare const HlmFieldImports: readonly [typeof HlmField, typeof HlmFieldContent, typeof HlmFieldDescription, typeof HlmFieldError, typeof HlmFieldGroup, typeof HlmFieldLabel, typeof HlmFieldLegend, typeof HlmFieldSeparator, typeof HlmFieldSet, typeof HlmFieldTitle];
525
+
526
+ declare class HlmInput {
527
+ constructor();
528
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmInput, never>;
529
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmInput, "[hlmInput]", never, {}, {}, never, never, true, [{ directive: typeof i1$5.BrnInput; inputs: { "id": "id"; "forceInvalid": "forceInvalid"; }; outputs: {}; }, { directive: typeof i1$2.BrnFieldControlDescribedBy; inputs: {}; outputs: {}; }]>;
530
+ }
531
+
532
+ declare const HlmInputImports: readonly [typeof HlmInput];
533
+
534
+ declare class HlmInputGroup {
535
+ constructor();
536
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmInputGroup, never>;
537
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmInputGroup, "[hlmInputGroup],hlm-input-group", never, {}, {}, never, never, true, never>;
538
+ }
539
+
540
+ declare class HlmInputGroupAddon {
541
+ readonly align: i0.InputSignal<"inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined>;
542
+ constructor();
543
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmInputGroupAddon, never>;
544
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmInputGroupAddon, "[hlmInputGroupAddon],hlm-input-group-addon", never, { "align": { "alias": "align"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
545
+ }
546
+
547
+ declare class HlmInputGroupButton {
548
+ readonly size: i0.InputSignal<"sm" | "xs" | "icon-xs" | "icon-sm" | null | undefined>;
549
+ readonly type: i0.InputSignal<"button" | "submit" | "reset">;
550
+ constructor();
551
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmInputGroupButton, never>;
552
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmInputGroupButton, "button[hlmInputGroupButton]", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof HlmButton; inputs: { "variant": "variant"; }; outputs: {}; }]>;
553
+ }
554
+
555
+ declare class HlmInputGroupInput {
556
+ constructor();
557
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmInputGroupInput, never>;
558
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmInputGroupInput, "input[hlmInputGroupInput]", never, {}, {}, never, never, true, [{ directive: typeof HlmInput; inputs: {}; outputs: {}; }]>;
559
+ }
560
+
561
+ declare class HlmInputGroupText {
562
+ constructor();
563
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmInputGroupText, never>;
564
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmInputGroupText, "[hlmInputGroupText],hlm-input-group-text", never, {}, {}, never, never, true, never>;
565
+ }
566
+
567
+ declare class HlmTextarea {
568
+ constructor();
569
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmTextarea, never>;
570
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmTextarea, "[hlmTextarea]", never, {}, {}, never, never, true, [{ directive: typeof i1$6.BrnTextarea; inputs: { "id": "id"; "forceInvalid": "forceInvalid"; }; outputs: {}; }, { directive: typeof i1$2.BrnFieldControlDescribedBy; inputs: {}; outputs: {}; }]>;
571
+ }
572
+
573
+ declare class HlmInputGroupTextarea {
574
+ constructor();
575
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmInputGroupTextarea, never>;
576
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmInputGroupTextarea, "textarea[hlmInputGroupTextarea]", never, {}, {}, never, never, true, [{ directive: typeof HlmTextarea; inputs: {}; outputs: {}; }]>;
577
+ }
578
+
579
+ declare const HlmInputGroupImports: readonly [typeof HlmInputGroup, typeof HlmInputGroupAddon, typeof HlmInputGroupButton, typeof HlmInputGroupInput, typeof HlmInputGroupText, typeof HlmInputGroupTextarea];
580
+
581
+ declare const HlmLabelImports: readonly [typeof HlmLabel];
582
+
583
+ declare class HlmSelect {
584
+ constructor();
585
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSelect, never>;
586
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSelect, "[hlmSelect],hlm-select", never, {}, {}, never, never, true, [{ directive: typeof i1$7.BrnSelect; inputs: { "disabled": "disabled"; "value": "value"; "isItemEqualToValue": "isItemEqualToValue"; "itemToString": "itemToString"; }; outputs: { "valueChange": "valueChange"; }; }, { directive: typeof i2.BrnPopover; inputs: { "align": "align"; "autoFocus": "autoFocus"; "closeDelay": "closeDelay"; "closeOnOutsidePointerEvents": "closeOnOutsidePointerEvents"; "sideOffset": "sideOffset"; "state": "state"; "offsetX": "offsetX"; "restoreFocus": "restoreFocus"; }; outputs: { "stateChanged": "stateChanged"; "closed": "closed"; }; }]>;
587
+ }
588
+
589
+ declare class HlmSelectContent {
590
+ protected readonly _computedListboxClasses: i0.Signal<string>;
591
+ readonly showScroll: i0.InputSignalWithTransform<boolean, BooleanInput>;
592
+ constructor();
593
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSelectContent, never>;
594
+ static ɵcmp: i0.ɵɵComponentDeclaration<HlmSelectContent, "hlm-select-content", never, { "showScroll": { "alias": "showScroll"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1$7.BrnSelectContent; inputs: {}; outputs: {}; }]>;
595
+ }
596
+
597
+ declare class HlmSelectGroup {
598
+ constructor();
599
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSelectGroup, never>;
600
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSelectGroup, "[hlmSelectGroup],hlm-select-group", never, {}, {}, never, never, true, [{ directive: typeof i1$7.BrnSelectGroup; inputs: {}; outputs: {}; }]>;
601
+ }
602
+
603
+ declare class HlmSelectItem {
604
+ private readonly _brnSelectItem;
605
+ protected readonly _active: i0.Signal<boolean>;
606
+ constructor();
607
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSelectItem, never>;
608
+ static ɵcmp: i0.ɵɵComponentDeclaration<HlmSelectItem, "hlm-select-item", never, {}, {}, never, ["*"], true, [{ directive: typeof i1$7.BrnSelectItem; inputs: { "id": "id"; "disabled": "disabled"; "value": "value"; }; outputs: {}; }]>;
609
+ }
610
+
611
+ declare class HlmSelectLabel {
612
+ constructor();
613
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSelectLabel, never>;
614
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSelectLabel, "[hlmSelectLabel],hlm-select-label", never, {}, {}, never, never, true, [{ directive: typeof i1$7.BrnSelectLabel; inputs: { "id": "id"; }; outputs: {}; }]>;
615
+ }
616
+
617
+ declare class HlmSelectMultiple {
618
+ constructor();
619
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSelectMultiple, never>;
620
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSelectMultiple, "[hlmSelectMultiple],hlm-select-multiple", never, {}, {}, never, never, true, [{ directive: typeof i1$7.BrnSelectMultiple; inputs: { "disabled": "disabled"; "value": "value"; "isItemEqualToValue": "isItemEqualToValue"; "itemToString": "itemToString"; }; outputs: { "valueChange": "valueChange"; }; }, { directive: typeof i2.BrnPopover; inputs: { "align": "align"; "autoFocus": "autoFocus"; "closeDelay": "closeDelay"; "closeOnOutsidePointerEvents": "closeOnOutsidePointerEvents"; "sideOffset": "sideOffset"; "state": "state"; "offsetX": "offsetX"; "restoreFocus": "restoreFocus"; }; outputs: { "stateChanged": "stateChanged"; "closed": "closed"; }; }]>;
621
+ }
622
+
623
+ declare class HlmSelectPlaceholder {
624
+ constructor();
625
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSelectPlaceholder, never>;
626
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSelectPlaceholder, "[hlmSelectPlaceholder],hlm-select-placeholder", never, {}, {}, never, never, true, [{ directive: typeof i1$7.BrnSelectPlaceholder; inputs: {}; outputs: {}; }]>;
627
+ }
628
+
629
+ declare class HlmSelectPortal {
630
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSelectPortal, never>;
631
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSelectPortal, "[hlmSelectPortal]", never, {}, {}, never, never, true, [{ directive: typeof i2.BrnPopoverContent; inputs: { "context": "context"; "class": "class"; }; outputs: {}; }]>;
632
+ }
633
+
634
+ declare class HlmSelectScrollDown {
635
+ constructor();
636
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSelectScrollDown, never>;
637
+ static ɵcmp: i0.ɵɵComponentDeclaration<HlmSelectScrollDown, "hlm-select-scroll-down", never, {}, {}, never, never, true, [{ directive: typeof i1$7.BrnSelectScrollDown; inputs: {}; outputs: {}; }]>;
638
+ }
639
+
640
+ declare class HlmSelectScrollUp {
641
+ constructor();
642
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSelectScrollUp, never>;
643
+ static ɵcmp: i0.ɵɵComponentDeclaration<HlmSelectScrollUp, "hlm-select-scroll-up", never, {}, {}, never, never, true, [{ directive: typeof i1$7.BrnSelectScrollUp; inputs: {}; outputs: {}; }]>;
644
+ }
645
+
646
+ declare class HlmSelectSeparator {
647
+ constructor();
648
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSelectSeparator, never>;
649
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSelectSeparator, "[hlmSelectSeparator],hlm-select-separator", never, {}, {}, never, never, true, [{ directive: typeof i1$7.BrnSelectSeparator; inputs: { "orientation": "orientation"; }; outputs: {}; }]>;
650
+ }
651
+
652
+ declare class HlmSelectTrigger {
653
+ private static _id;
654
+ readonly userClass: i0.InputSignal<ClassValue>;
655
+ protected readonly _computedClass: i0.Signal<string>;
656
+ readonly buttonId: i0.InputSignal<string>;
657
+ readonly size: i0.InputSignal<"sm" | "default">;
658
+ /** Whether to force the trigger into an invalid state. */
659
+ readonly forceInvalid: i0.InputSignalWithTransform<boolean, BooleanInput>;
660
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSelectTrigger, never>;
661
+ static ɵcmp: i0.ɵɵComponentDeclaration<HlmSelectTrigger, "hlm-select-trigger", never, { "userClass": { "alias": "class"; "required": false; "isSignal": true; }; "buttonId": { "alias": "buttonId"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "forceInvalid": { "alias": "forceInvalid"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
662
+ }
663
+
664
+ declare class HlmSelectValue {
665
+ private readonly _brnSelectValue;
666
+ protected readonly _hidden: i0.Signal<boolean>;
667
+ constructor();
668
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSelectValue, never>;
669
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSelectValue, "[hlmSelectValue],hlm-select-value", never, {}, {}, never, never, true, [{ directive: typeof i1$7.BrnSelectValue; inputs: { "placeholder": "placeholder"; }; outputs: {}; }]>;
670
+ }
671
+
672
+ declare class HlmSelectValueTemplate {
673
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSelectValueTemplate, never>;
674
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSelectValueTemplate, "[hlmSelectValueTemplate]", never, {}, {}, never, never, true, [{ directive: typeof i1$7.BrnSelectValueTemplate; inputs: {}; outputs: {}; }]>;
675
+ }
676
+
677
+ declare class HlmSelectValues {
678
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSelectValues, never>;
679
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSelectValues, "[hlmSelectValues]", never, {}, {}, never, never, true, [{ directive: typeof i1$7.BrnSelectValues; inputs: {}; outputs: {}; }]>;
680
+ }
681
+
682
+ declare class HlmSelectValuesContent {
683
+ constructor();
684
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSelectValuesContent, never>;
685
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSelectValuesContent, "[hlmSelectValuesContent],hlm-select-values-content", never, {}, {}, never, never, true, never>;
686
+ }
687
+
688
+ declare const HlmSelectImports: readonly [typeof HlmSelect, typeof HlmSelectContent, typeof HlmSelectGroup, typeof HlmSelectItem, typeof HlmSelectLabel, typeof HlmSelectMultiple, typeof HlmSelectPlaceholder, typeof HlmSelectPortal, typeof HlmSelectScrollDown, typeof HlmSelectScrollUp, typeof HlmSelectSeparator, typeof HlmSelectTrigger, typeof HlmSelectValue, typeof HlmSelectValues, typeof HlmSelectValuesContent, typeof HlmSelectValueTemplate];
689
+
690
+ declare const hlmSeparatorClass = "inline-flex shrink-0 bg-border data-horizontal:h-px data-horizontal:w-full data-vertical:w-px data-vertical:self-stretch";
691
+ declare class HlmSeparator {
692
+ constructor();
693
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSeparator, never>;
694
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSeparator, "[hlmSeparator],hlm-separator", never, {}, {}, never, never, true, [{ directive: typeof i1$8.BrnSeparator; inputs: { "orientation": "orientation"; "decorative": "decorative"; }; outputs: {}; }]>;
695
+ }
696
+
697
+ declare const HlmSeparatorImports: readonly [typeof HlmSeparator];
698
+
699
+ type SidebarVariant = 'sidebar' | 'floating' | 'inset';
700
+ declare class HlmSidebarService {
701
+ private readonly _platformId;
702
+ private readonly _request;
703
+ private readonly _config;
704
+ private readonly _document;
705
+ private readonly _window;
706
+ private readonly _open;
707
+ private readonly _openMobile;
708
+ private readonly _isMobile;
709
+ private readonly _variant;
710
+ private _mediaQuery;
711
+ readonly open: Signal<boolean>;
712
+ readonly openMobile: Signal<boolean>;
713
+ readonly isMobile: Signal<boolean>;
714
+ readonly variant: Signal<SidebarVariant>;
715
+ readonly state: Signal<"expanded" | "collapsed">;
716
+ constructor();
717
+ setOpen(open: boolean): void;
718
+ setOpenMobile(open: boolean): void;
719
+ setVariant(variant: SidebarVariant): void;
720
+ toggleSidebar(): void;
721
+ private restoreStateFromCookie;
722
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarService, never>;
723
+ static ɵprov: i0.ɵɵInjectableDeclaration<HlmSidebarService>;
724
+ }
725
+
726
+ declare class HlmSidebar {
727
+ protected readonly _sidebarService: HlmSidebarService;
728
+ private readonly _config;
729
+ readonly sidebarWidthMobile: i0.InputSignal<string>;
730
+ readonly side: i0.InputSignal<"left" | "right">;
731
+ readonly variant: i0.InputSignal<SidebarVariant>;
732
+ readonly collapsible: i0.InputSignal<"none" | "icon" | "offcanvas">;
733
+ protected readonly _sidebarGapComputedClass: i0.Signal<string>;
734
+ readonly sidebarContainerClass: i0.InputSignal<ClassValue>;
735
+ protected readonly _sidebarContainerComputedClass: i0.Signal<string>;
736
+ protected readonly _dataSlot: i0.Signal<"sidebar" | undefined>;
737
+ private readonly _collapsibleAndNonMobile;
738
+ protected readonly _dataState: i0.Signal<"expanded" | "collapsed" | undefined>;
739
+ protected readonly _dataCollapsible: i0.Signal<"" | "none" | "icon" | "offcanvas" | undefined>;
740
+ protected readonly _dataVariant: i0.Signal<SidebarVariant | undefined>;
741
+ protected readonly _dataSide: i0.Signal<"left" | "right" | undefined>;
742
+ constructor();
743
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebar, never>;
744
+ static ɵcmp: i0.ɵɵComponentDeclaration<HlmSidebar, "hlm-sidebar", never, { "sidebarWidthMobile": { "alias": "sidebarWidthMobile"; "required": false; "isSignal": true; }; "side": { "alias": "side"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "collapsible": { "alias": "collapsible"; "required": false; "isSignal": true; }; "sidebarContainerClass": { "alias": "sidebarContainerClass"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
745
+ }
746
+
747
+ declare class HlmSidebarContent {
748
+ constructor();
749
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarContent, never>;
750
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSidebarContent, "[hlmSidebarContent],hlm-sidebar-content", never, {}, {}, never, never, true, never>;
751
+ }
752
+
753
+ declare class HlmSidebarFooter {
754
+ constructor();
755
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarFooter, never>;
756
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSidebarFooter, "[hlmSidebarFooter],hlm-sidebar-footer", never, {}, {}, never, never, true, never>;
757
+ }
758
+
759
+ declare class HlmSidebarGroup {
760
+ constructor();
761
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarGroup, never>;
762
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSidebarGroup, "[hlmSidebarGroup],hlm-sidebar-group", never, {}, {}, never, never, true, never>;
763
+ }
764
+
765
+ declare class HlmSidebarGroupAction {
766
+ constructor();
767
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarGroupAction, never>;
768
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSidebarGroupAction, "button[hlmSidebarGroupAction]", never, {}, {}, never, never, true, never>;
769
+ }
770
+
771
+ declare class HlmSidebarGroupContent {
772
+ constructor();
773
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarGroupContent, never>;
774
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSidebarGroupContent, "div[hlmSidebarGroupContent]", never, {}, {}, never, never, true, never>;
775
+ }
776
+
777
+ declare class HlmSidebarGroupLabel {
778
+ constructor();
779
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarGroupLabel, never>;
780
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSidebarGroupLabel, "div[hlmSidebarGroupLabel], button[hlmSidebarGroupLabel]", never, {}, {}, never, never, true, never>;
781
+ }
782
+
783
+ declare class HlmSidebarHeader {
784
+ constructor();
785
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarHeader, never>;
786
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSidebarHeader, "[hlmSidebarHeader],hlm-sidebar-header", never, {}, {}, never, never, true, never>;
787
+ }
788
+
789
+ declare class HlmSidebarInput {
790
+ constructor();
791
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarInput, never>;
792
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSidebarInput, "input[hlmSidebarInput]", never, {}, {}, never, never, true, [{ directive: typeof HlmInput; inputs: {}; outputs: {}; }]>;
793
+ }
794
+
795
+ declare class HlmSidebarInset {
796
+ constructor();
797
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarInset, never>;
798
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSidebarInset, "main[hlmSidebarInset]", never, {}, {}, never, never, true, never>;
799
+ }
800
+
801
+ declare class HlmSidebarMenu {
802
+ constructor();
803
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarMenu, never>;
804
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSidebarMenu, "ul[hlmSidebarMenu]", never, {}, {}, never, never, true, never>;
805
+ }
806
+
807
+ declare class HlmSidebarMenuAction {
808
+ readonly showOnHover: i0.InputSignalWithTransform<boolean, BooleanInput>;
809
+ constructor();
810
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarMenuAction, never>;
811
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSidebarMenuAction, "button[hlmSidebarMenuAction]", never, { "showOnHover": { "alias": "showOnHover"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
812
+ }
813
+
814
+ declare class HlmSidebarMenuBadge {
815
+ constructor();
816
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarMenuBadge, never>;
817
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSidebarMenuBadge, "[hlmSidebarMenuBadge],hlm-sidebar-menu-badge", never, {}, {}, never, never, true, never>;
818
+ }
819
+
820
+ declare class HlmSidebarMenuButton {
821
+ private readonly _config;
822
+ private readonly _sidebarService;
823
+ private readonly _brnTooltip;
824
+ readonly variant: i0.InputSignal<"default" | "outline">;
825
+ readonly size: i0.InputSignal<"sm" | "default" | "lg">;
826
+ readonly isActive: i0.InputSignalWithTransform<boolean, BooleanInput>;
827
+ readonly closeMobileSidebarOnClick: i0.InputSignalWithTransform<boolean, BooleanInput>;
828
+ protected readonly _isTooltipHidden: i0.Signal<boolean>;
829
+ constructor();
830
+ protected onClick(): void;
831
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarMenuButton, never>;
832
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSidebarMenuButton, "button[hlmSidebarMenuButton], a[hlmSidebarMenuButton]", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "isActive": { "alias": "isActive"; "required": false; "isSignal": true; }; "closeMobileSidebarOnClick": { "alias": "closeMobileSidebarOnClick"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof i1$9.BrnTooltip; inputs: { "brnTooltip": "tooltip"; }; outputs: {}; }]>;
833
+ }
834
+
835
+ declare class HlmSidebarMenuItem {
836
+ constructor();
837
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarMenuItem, never>;
838
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSidebarMenuItem, "li[hlmSidebarMenuItem]", never, {}, {}, never, never, true, never>;
839
+ }
840
+
841
+ declare class HlmSidebarMenuSkeleton {
842
+ readonly showIcon: i0.InputSignalWithTransform<boolean, BooleanInput>;
843
+ protected readonly _width: string;
844
+ constructor();
845
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarMenuSkeleton, never>;
846
+ static ɵcmp: i0.ɵɵComponentDeclaration<HlmSidebarMenuSkeleton, "hlm-sidebar-menu-skeleton,div[hlmSidebarMenuSkeleton]", never, { "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
847
+ }
848
+
849
+ declare class HlmSidebarMenuSub {
850
+ constructor();
851
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarMenuSub, never>;
852
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSidebarMenuSub, "ul[hlmSidebarMenuSub]", never, {}, {}, never, never, true, never>;
853
+ }
854
+
855
+ declare class HlmSidebarMenuSubButton {
856
+ private readonly _sidebarService;
857
+ private readonly _config;
858
+ readonly closeMobileSidebarOnClick: i0.InputSignalWithTransform<boolean, BooleanInput>;
859
+ readonly size: i0.InputSignal<"sm" | "md">;
860
+ readonly isActive: i0.InputSignalWithTransform<boolean, BooleanInput>;
861
+ constructor();
862
+ protected onClick(): void;
863
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarMenuSubButton, never>;
864
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSidebarMenuSubButton, "a[hlmSidebarMenuSubButton], button[hlmSidebarMenuSubButton]", never, { "closeMobileSidebarOnClick": { "alias": "closeMobileSidebarOnClick"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "isActive": { "alias": "isActive"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
865
+ }
866
+
867
+ declare class HlmSidebarMenuSubItem {
868
+ constructor();
869
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarMenuSubItem, never>;
870
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSidebarMenuSubItem, "li[hlmSidebarMenuSubItem]", never, {}, {}, never, never, true, never>;
871
+ }
872
+
873
+ declare class HlmSidebarRail {
874
+ private readonly _sidebarService;
875
+ readonly ariaLabel: i0.InputSignal<string>;
876
+ constructor();
877
+ protected onClick(): void;
878
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarRail, never>;
879
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSidebarRail, "button[hlmSidebarRail]", never, { "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
880
+ }
881
+
882
+ declare class HlmSidebarSeparator {
883
+ constructor();
884
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarSeparator, never>;
885
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSidebarSeparator, "[hlmSidebarSeparator],hlm-sidebar-separator", never, {}, {}, never, never, true, [{ directive: typeof HlmSeparator; inputs: {}; outputs: {}; }]>;
886
+ }
887
+
888
+ declare class HlmSidebarTrigger {
889
+ private readonly _sidebarService;
890
+ readonly srOnlyText: i0.InputSignal<string>;
891
+ protected _onClick(): void;
892
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarTrigger, never>;
893
+ static ɵcmp: i0.ɵɵComponentDeclaration<HlmSidebarTrigger, "button[hlmSidebarTrigger]", never, { "srOnlyText": { "alias": "srOnlyText"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof HlmButton; inputs: { "variant": "variant"; "size": "size"; }; outputs: {}; }]>;
894
+ }
895
+
896
+ declare class HlmSidebarWrapper {
897
+ private readonly _config;
898
+ readonly sidebarWidth: i0.InputSignal<string>;
899
+ readonly sidebarWidthIcon: i0.InputSignal<string>;
900
+ constructor();
901
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmSidebarWrapper, never>;
902
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmSidebarWrapper, "[hlmSidebarWrapper],hlm-sidebar-wrapper", never, { "sidebarWidth": { "alias": "sidebarWidth"; "required": false; "isSignal": true; }; "sidebarWidthIcon": { "alias": "sidebarWidthIcon"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
903
+ }
904
+
905
+ interface HlmSidebarConfig {
906
+ sidebarWidth: string;
907
+ sidebarWidthMobile: string;
908
+ sidebarWidthIcon: string;
909
+ sidebarCookieName: string;
910
+ sidebarCookieMaxAge: number;
911
+ sidebarKeyboardShortcut: string;
912
+ mobileBreakpoint: string;
913
+ closeMobileSidebarOnMenuButtonClick: boolean;
914
+ }
915
+ declare function provideHlmSidebarConfig(config: Partial<HlmSidebarConfig>): ValueProvider;
916
+ declare function injectHlmSidebarConfig(): HlmSidebarConfig;
917
+
918
+ declare const HlmSidebarImports: readonly [typeof HlmSidebar, typeof HlmSidebarContent, typeof HlmSidebarFooter, typeof HlmSidebarGroup, typeof HlmSidebarGroupAction, typeof HlmSidebarGroupContent, typeof HlmSidebarGroupLabel, typeof HlmSidebarHeader, typeof HlmSidebarInput, typeof HlmSidebarInset, typeof HlmSidebarMenu, typeof HlmSidebarMenuSkeleton, typeof HlmSidebarMenuAction, typeof HlmSidebarMenuBadge, typeof HlmSidebarMenuButton, typeof HlmSidebarMenuItem, typeof HlmSidebarMenuSub, typeof HlmSidebarMenuSubButton, typeof HlmSidebarRail, typeof HlmSidebarSeparator, typeof HlmSidebarTrigger, typeof HlmSidebarWrapper, typeof HlmSidebarMenuSubItem];
919
+
920
+ declare class HlmTableContainer {
921
+ constructor();
922
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmTableContainer, never>;
923
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmTableContainer, "div[hlmTableContainer]", never, {}, {}, never, never, true, never>;
924
+ }
925
+ /**
926
+ * Directive to apply Shadcn-like styling to a <table> element.
927
+ */
928
+ declare class HlmTable {
929
+ constructor();
930
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmTable, never>;
931
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmTable, "table[hlmTable]", never, {}, {}, never, never, true, never>;
932
+ }
933
+ /**
934
+ * Directive to apply Shadcn-like styling to a <thead> element
935
+ * within an HlmTable context.
936
+ */
937
+ declare class HlmTHead {
938
+ constructor();
939
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmTHead, never>;
940
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmTHead, "thead[hlmTHead],thead[hlmTableHeader]", never, {}, {}, never, never, true, never>;
941
+ }
942
+ /**
943
+ * Directive to apply Shadcn-like styling to a <tbody> element
944
+ * within an HlmTable context.
945
+ */
946
+ declare class HlmTBody {
947
+ constructor();
948
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmTBody, never>;
949
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmTBody, "tbody[hlmTBody],tbody[hlmTableBody]", never, {}, {}, never, never, true, never>;
950
+ }
951
+ /**
952
+ * Directive to apply Shadcn-like styling to a <tfoot> element
953
+ * within an HlmTable context.
954
+ */
955
+ declare class HlmTFoot {
956
+ constructor();
957
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmTFoot, never>;
958
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmTFoot, "tfoot[hlmTFoot],tfoot[hlmTableFooter]", never, {}, {}, never, never, true, never>;
959
+ }
960
+ /**
961
+ * Directive to apply Shadcn-like styling to a <tr> element
962
+ * within an HlmTable context.
963
+ */
964
+ declare class HlmTr {
965
+ constructor();
966
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmTr, never>;
967
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmTr, "tr[hlmTr],tr[hlmTableRow]", never, {}, {}, never, never, true, never>;
968
+ }
969
+ /**
970
+ * Directive to apply Shadcn-like styling to a <th> element
971
+ * within an HlmTable context.
972
+ */
973
+ declare class HlmTh {
974
+ constructor();
975
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmTh, never>;
976
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmTh, "th[hlmTh],th[hlmTableHead]", never, {}, {}, never, never, true, never>;
977
+ }
978
+ /**
979
+ * Directive to apply Shadcn-like styling to a <td> element
980
+ * within an HlmTable context.
981
+ */
982
+ declare class HlmTd {
983
+ constructor();
984
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmTd, never>;
985
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmTd, "td[hlmTd],td[hlmTableCell]", never, {}, {}, never, never, true, never>;
986
+ }
987
+ /**
988
+ * Directive to apply Shadcn-like styling to a <caption> element
989
+ * within an HlmTable context.
990
+ */
991
+ declare class HlmCaption {
992
+ constructor();
993
+ static ɵfac: i0.ɵɵFactoryDeclaration<HlmCaption, never>;
994
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HlmCaption, "caption[hlmCaption],caption[hlmTableCaption]", never, {}, {}, never, never, true, never>;
995
+ }
996
+
997
+ declare const HlmTableImports: readonly [typeof HlmCaption, typeof HlmTableContainer, typeof HlmTable, typeof HlmTBody, typeof HlmTd, typeof HlmTFoot, typeof HlmTh, typeof HlmTHead, typeof HlmTr];
998
+
999
+ declare const HlmTextareaImports: readonly [typeof HlmTextarea];
1000
+
1001
+ declare function hlm(...inputs: ClassValue[]): string;
1002
+ /**
1003
+ * This function dynamically adds and removes classes for a given element without requiring
1004
+ * the a class binding (e.g. `[class]="..."`) which may interfere with other class bindings.
1005
+ *
1006
+ * 1. This will merge the existing classes on the element with the new classes.
1007
+ * 2. It will also remove any classes that were previously added by this function but are no longer present in the new classes.
1008
+ * 3. Multiple calls to this function on the same element will be merged efficiently.
1009
+ */
1010
+ declare function classes(computed: () => ClassValue[] | string, options?: ClassesOptions): void;
1011
+ interface ClassesOptions {
1012
+ elementRef?: ElementRef<HTMLElement>;
1013
+ injector?: Injector;
1014
+ }
1015
+
1016
+ export { HLM_CHECKBOX_VALUE_ACCESSOR, HlmAvatar, HlmAvatarBadge, HlmAvatarFallback, HlmAvatarGroup, HlmAvatarGroupCount, HlmAvatarImage, HlmAvatarImports, HlmBreadCrumbImports, HlmBreadcrumb, HlmBreadcrumbEllipsis, HlmBreadcrumbImports, HlmBreadcrumbItem, HlmBreadcrumbLink, HlmBreadcrumbList, HlmBreadcrumbPage, HlmBreadcrumbSeparator, HlmButton, HlmButtonImports, HlmCaption, HlmCard, HlmCardAction, HlmCardContent, HlmCardDescription, HlmCardFooter, HlmCardHeader, HlmCardImports, HlmCardTitle, HlmCheckbox, HlmCheckboxImports, HlmDataTableContent, HlmDataTableImports, HlmDataTablePagination, HlmDataTableToolbar, HlmDropdownMenu, HlmDropdownMenuCheckbox, HlmDropdownMenuCheckboxIndicator, HlmDropdownMenuGroup, HlmDropdownMenuImports, HlmDropdownMenuItem, HlmDropdownMenuItemSubIndicator, HlmDropdownMenuLabel, HlmDropdownMenuRadio, HlmDropdownMenuRadioIndicator, HlmDropdownMenuSeparator, HlmDropdownMenuShortcut, HlmDropdownMenuSub, HlmDropdownMenuTrigger, HlmField, HlmFieldContent, HlmFieldDescription, HlmFieldError, HlmFieldGroup, HlmFieldImports, HlmFieldLabel, HlmFieldLegend, HlmFieldSeparator, HlmFieldSet, HlmFieldTitle, HlmInput, HlmInputGroup, HlmInputGroupAddon, HlmInputGroupButton, HlmInputGroupImports, HlmInputGroupInput, HlmInputGroupText, HlmInputGroupTextarea, HlmInputImports, HlmLabel, HlmLabelImports, HlmSelect, HlmSelectContent, HlmSelectGroup, HlmSelectImports, HlmSelectItem, HlmSelectLabel, HlmSelectMultiple, HlmSelectPlaceholder, HlmSelectPortal, HlmSelectScrollDown, HlmSelectScrollUp, HlmSelectSeparator, HlmSelectTrigger, HlmSelectValue, HlmSelectValueTemplate, HlmSelectValues, HlmSelectValuesContent, HlmSeparator, HlmSeparatorImports, HlmSidebar, HlmSidebarContent, HlmSidebarFooter, HlmSidebarGroup, HlmSidebarGroupAction, HlmSidebarGroupContent, HlmSidebarGroupLabel, HlmSidebarHeader, HlmSidebarImports, HlmSidebarInput, HlmSidebarInset, HlmSidebarMenu, HlmSidebarMenuAction, HlmSidebarMenuBadge, HlmSidebarMenuButton, HlmSidebarMenuItem, HlmSidebarMenuSkeleton, HlmSidebarMenuSub, HlmSidebarMenuSubButton, HlmSidebarMenuSubItem, HlmSidebarRail, HlmSidebarSeparator, HlmSidebarService, HlmSidebarTrigger, HlmSidebarWrapper, HlmTBody, HlmTFoot, HlmTHead, HlmTable, HlmTableContainer, HlmTableImports, HlmTd, HlmTextarea, HlmTextareaImports, HlmTh, HlmTr, buttonVariants, classes, hlm, hlmSeparatorClass, injectBrnButtonConfig, injectDataTable, injectHlmDropdownMenuConfig, injectHlmSidebarConfig, provideBrnButtonConfig, provideHlmDropdownMenuConfig, provideHlmSidebarConfig };
1017
+ export type { BrnButtonConfig, ButtonVariants, FieldVariants, HlmDropdownMenuConfig, HlmSidebarConfig, InjectDataTableOptions, SidebarVariant };