yukit-web 0.0.7 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "yukit-web",
3
3
  "description": "Angular UI component library for Yurest web applications.",
4
- "version": "0.0.7",
4
+ "version": "0.0.8",
5
5
  "author": {
6
6
  "name": "Yurest Solutions",
7
7
  "email": "develop@yurest.com"
@@ -1,6 +1,6 @@
1
1
  import { ClassValue } from 'clsx';
2
2
  import * as _angular_core from '@angular/core';
3
- import { ModelSignal, Type, Provider, InputSignal, InputSignalWithTransform, TemplateRef, OnInit } from '@angular/core';
3
+ import { ModelSignal, Type, Provider, InputSignal, InputSignalWithTransform, TemplateRef, OnInit, Signal } from '@angular/core';
4
4
  import { ControlValueAccessor } from '@angular/forms';
5
5
  import { ButtonVariants } from 'yukit-web/helm/button';
6
6
  import * as i1 from 'yukit-web/helm/badge';
@@ -2579,6 +2579,39 @@ declare class YuwAttachmentTriggerDirective {
2579
2579
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwAttachmentTriggerDirective, "button[yuwAttachmentTrigger], a[yuwAttachmentTrigger]", never, {}, {}, never, never, true, [{ directive: typeof i1$c.HlmAttachmentTrigger; inputs: { "type": "type"; }; outputs: {}; }]>;
2580
2580
  }
2581
2581
 
2582
+ /**
2583
+ * Tracks the sidebar's collapsed state, and a second copy of it that lags behind the width animation.
2584
+ *
2585
+ * The helm flips `data-collapsible` the instant the state changes, while the panel takes
2586
+ * `--sidebar-transition-duration` to reach its new width. Anything keyed off that attribute therefore
2587
+ * restyles against a panel that is still the old size — labels vanish and icons jump to rail geometry
2588
+ * while there is still 16rem of sidebar around them.
2589
+ *
2590
+ * `railSettled` fixes that asymmetrically, because the two directions want opposite timing:
2591
+ *
2592
+ * - Collapsing, the rail look has to wait for the panel to actually be narrow. Applying it up front is
2593
+ * what produces the jump.
2594
+ * - Expanding, the rail look has to go immediately. The labels need the whole animation to fade and
2595
+ * ellipsis into place, so waiting would replace one jump with another at the far end.
2596
+ *
2597
+ * The delay runs through `timer` rather than a `setTimeout` inside an `effect`, and that is not a
2598
+ * stylistic choice: this app is zoneless, so a signal written from a bare timer callback notifies
2599
+ * nobody. Components reading `railSettled` in a template binding are `OnPush`, so they would keep
2600
+ * their stale view until something else happened to schedule a check — the signal flips, the DOM does
2601
+ * not. Going through `toSignal` puts the write back under Angular's own scheduling.
2602
+ *
2603
+ * Provided at the root so `<yuw-sidebar>` and the nav share one instance — the component stamps the
2604
+ * attribute the class layers select on, and the nav reads the same signal to decide between accordion
2605
+ * and flyout, so the two must agree on the exact frame.
2606
+ */
2607
+ declare class YuwSidebarRailService {
2608
+ private readonly sidebar;
2609
+ readonly collapsed: Signal<boolean>;
2610
+ readonly railSettled: Signal<boolean>;
2611
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarRailService, never>;
2612
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<YuwSidebarRailService>;
2613
+ }
2614
+
2582
2615
  /**
2583
2616
  * Where a sidebar entry points.
2584
2617
  *
@@ -2718,6 +2751,13 @@ type YuwSidebarCollapsibleDto = 'offcanvas' | 'icon' | 'none';
2718
2751
  * Outputs:
2719
2752
  * - `itemClicked`: Emits `{id, event}` when a non-navigating entry (no `route`, no `href`) is
2720
2753
  * activated, in either `content` or `footer`.
2754
+ * - `collapsedChange`: Emits `true` when the sidebar collapses and `false` when it expands, reading
2755
+ * the mobile sheet or the desktop panel as appropriate. Fires the moment the state flips, so it is
2756
+ * the one to drive a caller's own layout, which should start moving with the panel.
2757
+ * - `railSettledChange`: The same transition, but `true` only once the collapse has finished
2758
+ * animating, and `false` immediately on expand. Use it for anything that should not restyle against
2759
+ * a panel still mid-width — swapping a logo for a mark, say. The sidebar's own rail geometry is
2760
+ * keyed off this, which is why the labels stay put until the panel is actually narrow.
2721
2761
  *
2722
2762
  * The two forms compose rather than exclude each other, unlike `<yuw-button>`'s `buttons` input
2723
2763
  * which drops projected content when set. `content`/`footer` render their own region; anything
@@ -2769,6 +2809,7 @@ type YuwSidebarCollapsibleDto = 'offcanvas' | 'icon' | 'none';
2769
2809
  */
2770
2810
  declare class YuwSidebarComponent {
2771
2811
  private readonly config;
2812
+ protected readonly _rail: YuwSidebarRailService;
2772
2813
  readonly side: _angular_core.InputSignal<YuwSidebarSideDto>;
2773
2814
  readonly variant: _angular_core.InputSignal<YuwSidebarVariantDto>;
2774
2815
  readonly collapsible: _angular_core.InputSignal<YuwSidebarCollapsibleDto>;
@@ -2777,8 +2818,12 @@ declare class YuwSidebarComponent {
2777
2818
  readonly content: _angular_core.InputSignal<YuwSidebarContentDto | undefined>;
2778
2819
  readonly footer: _angular_core.InputSignal<YuwSidebarContentDto | undefined>;
2779
2820
  readonly itemClicked: _angular_core.OutputEmitterRef<YuwSidebarItemClickDto>;
2821
+ protected readonly _containerClass: _angular_core.Signal<string>;
2822
+ protected readonly _isRail: _angular_core.Signal<boolean>;
2823
+ readonly collapsedChange: _angular_core.OutputRef<boolean>;
2824
+ readonly railSettledChange: _angular_core.OutputRef<boolean>;
2780
2825
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarComponent, never>;
2781
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<YuwSidebarComponent, "yuw-sidebar", never, { "side": { "alias": "side"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "collapsible": { "alias": "collapsible"; "required": false; "isSignal": true; }; "sidebarWidthMobile": { "alias": "sidebarWidthMobile"; "required": false; "isSignal": true; }; "sidebarContainerClass": { "alias": "sidebarContainerClass"; "required": false; "isSignal": true; }; "content": { "alias": "content"; "required": false; "isSignal": true; }; "footer": { "alias": "footer"; "required": false; "isSignal": true; }; }, { "itemClicked": "itemClicked"; }, never, ["[yuwSidebarHeader], yuw-sidebar-header", "[yuwSidebarContentExtra]", "*", "[yuwSidebarFooterExtra]"], true, never>;
2826
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<YuwSidebarComponent, "yuw-sidebar", never, { "side": { "alias": "side"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "collapsible": { "alias": "collapsible"; "required": false; "isSignal": true; }; "sidebarWidthMobile": { "alias": "sidebarWidthMobile"; "required": false; "isSignal": true; }; "sidebarContainerClass": { "alias": "sidebarContainerClass"; "required": false; "isSignal": true; }; "content": { "alias": "content"; "required": false; "isSignal": true; }; "footer": { "alias": "footer"; "required": false; "isSignal": true; }; }, { "itemClicked": "itemClicked"; "collapsedChange": "collapsedChange"; "railSettledChange": "railSettledChange"; }, never, ["[yuwSidebarHeader], yuw-sidebar-header", "[yuwSidebarContentExtra]", "*", "[yuwSidebarFooterExtra]"], true, never>;
2782
2827
  }
2783
2828
 
2784
2829
  /**
@@ -2839,8 +2884,31 @@ declare class YuwSidebarHeaderDirective {
2839
2884
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarHeaderDirective, never>;
2840
2885
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarHeaderDirective, "[yuwSidebarHeader], yuw-sidebar-header", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarHeader; inputs: {}; outputs: {}; }]>;
2841
2886
  }
2842
- /** Scrollable middle area of the sidebar that holds the navigation groups. */
2887
+ /**
2888
+ * Scrollable middle area of the sidebar that holds the navigation groups.
2889
+ *
2890
+ * Restores vertical scrolling in the collapsed state, which the composed primitive switches off with
2891
+ * `group-data-[collapsible=icon]:overflow-hidden`. That is a fair default for a rail of icons alone,
2892
+ * but ours keeps expandable entries reachable there, so a tall nav has to be able to scroll rather
2893
+ * than have its last icons clipped. Horizontal overflow stays hidden: nothing should scroll sideways
2894
+ * in a rail that narrow.
2895
+ *
2896
+ * The `!` is needed because the helm's own declaration sits in the same Tailwind group at the same
2897
+ * modifier, and `twMerge` resolves that by keeping the last one — which would be ours already, except
2898
+ * `overflow-hidden` and `overflow-y-auto` are different properties to it, so both survive and the
2899
+ * shorthand wins on order.
2900
+ *
2901
+ * The scrollbar itself stays hidden, which the primitive's own `no-scrollbar` already handles: a
2902
+ * gutter that only appears once the nav happens to overflow shifts the icons sideways, and the rail is
2903
+ * too narrow to spend 11px on it. Wheel, trackpad and keyboard still scroll; only the thumb is gone.
2904
+ *
2905
+ * Also spaces the groups it stacks while collapsed. Each group's own menu spaces its items, so with
2906
+ * the groups' vertical padding dropped there was nothing left between the last icon of one and the
2907
+ * first of the next; matching that spacing here is what makes the rail read as one evenly spaced
2908
+ * column rather than blocks butted together.
2909
+ */
2843
2910
  declare class YuwSidebarContentDirective {
2911
+ constructor();
2844
2912
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarContentDirective, never>;
2845
2913
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarContentDirective, "[yuwSidebarContent], yuw-sidebar-content", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarContent; inputs: {}; outputs: {}; }]>;
2846
2914
  }
@@ -2849,13 +2917,31 @@ declare class YuwSidebarFooterDirective {
2849
2917
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarFooterDirective, never>;
2850
2918
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarFooterDirective, "[yuwSidebarFooter], yuw-sidebar-footer", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarFooter; inputs: {}; outputs: {}; }]>;
2851
2919
  }
2852
- /** A titled section of the sidebar. */
2920
+ /**
2921
+ * A titled section of the sidebar.
2922
+ *
2923
+ * Drops its vertical padding once collapsed to icons. The composed primitive pads every side with
2924
+ * `p-2`, which is right while headings are visible and separating one group from the next, but on the
2925
+ * rail those headings are gone and two adjacent groups contribute 8px each — a gap in the middle of
2926
+ * what reads as one column of icons. Horizontal padding stays: it is what keeps the icons off the
2927
+ * rail's edges.
2928
+ */
2853
2929
  declare class YuwSidebarGroupDirective {
2930
+ constructor();
2854
2931
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarGroupDirective, never>;
2855
2932
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarGroupDirective, "[yuwSidebarGroup], yuw-sidebar-group", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarGroup; inputs: {}; outputs: {}; }]>;
2856
2933
  }
2857
- /** Heading of a sidebar group. Fades out when the sidebar collapses to icons. */
2934
+ /**
2935
+ * Heading of a sidebar group. Removed from the layout when the sidebar collapses to icons.
2936
+ *
2937
+ * The composed primitive hides it with `-mt-8` plus `opacity-0`, which leaves the heading in the flow
2938
+ * still occupying its `h-8` box and cancels that box with a negative margin. The two only net to zero
2939
+ * while the heading is exactly one line at exactly that height, so a group heading left a visible gap
2940
+ * between the icons of one group and the next. `hidden` takes it out of the flow instead, and the
2941
+ * margin is zeroed so the collapsed rail is not pulled upwards by a box that no longer exists.
2942
+ */
2858
2943
  declare class YuwSidebarGroupLabelDirective {
2944
+ constructor();
2859
2945
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarGroupLabelDirective, never>;
2860
2946
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarGroupLabelDirective, "div[yuwSidebarGroupLabel], button[yuwSidebarGroupLabel]", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarGroupLabel; inputs: {}; outputs: {}; }]>;
2861
2947
  }
@@ -2895,12 +2981,20 @@ declare class YuwSidebarMenuItemDirective {
2895
2981
  * Interactive control of a sidebar menu item. Accepts `variant` (`'default'`, `'outline'`), `size`
2896
2982
  * (`'default'`, `'sm'`, `'lg'`) and `isActive`.
2897
2983
  *
2898
- * To label the item while the sidebar is collapsed to icons, add Spartan's `tooltip` input
2899
- * alongside this directive it comes from the underlying menu-button primitive and is only shown
2900
- * in the collapsed state. It cannot be re-forwarded through this wrapper's `hostDirectives`
2901
- * (`tooltip` is the alias `HlmSidebarMenuButton` gives its own composed `BrnTooltip`, not a public
2902
- * input of its own), so bind it with `[attr.tooltip]` rather than `[tooltip]` when the value comes
2903
- * from an expression.
2984
+ * `tooltip` labels the item while the sidebar is collapsed to icons, where the label itself is
2985
+ * hidden; the composed primitive shows it only in that state, and only for entries with no flyout of
2986
+ * their own an entry with children opens its submenu on the same hover instead.
2987
+ *
2988
+ * Reaching that input takes composing `BrnTooltip` here under the same `tooltip` alias the helm uses,
2989
+ * rather than forwarding it. `HlmSidebarMenuButton` publishes the alias on its own `hostDirectives`
2990
+ * entry, which does not make it an input of the helm directive — a forward cannot be re-forwarded, the
2991
+ * same limit `[yuwSidebarFlyoutTrigger]` runs into. Angular resolves both entries to the one
2992
+ * `BrnTooltip` instance on the element, so the helm keeps driving `mutableTooltipDisabled` (which is
2993
+ * what confines the tooltip to the collapsed state) while this binding supplies its content.
2994
+ *
2995
+ * `[attr.tooltip]` is not a substitute, and was the bug: it writes an HTML attribute, which never
2996
+ * reaches a signal input, so the tooltip stayed enabled with `null` content and silently showed
2997
+ * nothing.
2904
2998
  *
2905
2999
  * Carries `yuwSidebarMenuButtonClass`, our hover/expanded colouring and collapsed-to-icon geometry.
2906
3000
  * The `classes()` registration below runs after the composed `HlmSidebarMenuButton`'s own, and
@@ -2913,19 +3007,30 @@ declare class YuwSidebarMenuItemDirective {
2913
3007
  *
2914
3008
  * Three details of the collapsed-to-icon block are load-bearing:
2915
3009
  *
2916
- * - `size-auto!`, `w-full!` and `justify-center!` keep their `!` because the helm declarations they
3010
+ * - `h-auto!`, `w-full!` and `justify-center!` keep their `!` because the helm declarations they
2917
3011
  * replace (`size-8!`, `p-2!`) are themselves `!important`, which `twMerge` cannot outrank on
2918
3012
  * specificity alone. The helm pins the button to a square; ours fills the rail width and centres
2919
- * the icon.
3013
+ * the icon. Both halves of `size-8!` have to be named separately: a single `size-auto!` occupies
3014
+ * the same `twMerge` group as the base `w-full`, dropping it, so the button would fall back to
3015
+ * shrink-to-fit for the whole width animation — long enough for the label to stop ellipsing and
3016
+ * the trailing chevron to sit against it.
2920
3017
  * - `[&>span]:hidden` drops the label while collapsed, leaving the icon alone — the tooltip carries
2921
3018
  * the name in that state, or the flyout does for an entry with children. Matched by element rather
2922
3019
  * than by `:last-child` (which is what the helm's own `truncate` uses): an expandable entry ends
2923
3020
  * with a trailing chevron, so the label is no longer the last child and a positional selector
2924
3021
  * would skip exactly those entries. `span` is unambiguous here — the label is the only one a menu
2925
3022
  * button has, with the badge living outside the button on the `<li>`.
2926
- * - `text-[length:--spacing(6)]` bumps the icon from the helm's 4 units to 6. The `length:` hint is
2927
- * not optional: `text-[…]` is ambiguous between colour and size, and Tailwind resolves the bare
2928
- * form as a colour, so the icon would never resize.
3023
+ * - The icon grows through `scale-150` rather than a font-size bump, so it can be transitioned: only
3024
+ * `transform`-family properties animate on the compositor, and a `font-size` change would relayout
3025
+ * the row on every frame.
3026
+ *
3027
+ * Which state each class hangs off is load-bearing, because the two attributes fire at different
3028
+ * times. `data-collapsible` flips the instant the toggle is pressed; `data-yuw-rail` waits for the
3029
+ * width animation to finish. Anything that should hold its expanded look *through* the animation
3030
+ * therefore keys off the rail attribute — the label's `hidden`, the centring, the icon's scale — while
3031
+ * the width and height overrides key off `collapsible`, to displace the helm's `size-8!` before it can
3032
+ * snap the row to 32px and truncate the label away in the first frame. That snap is what made the text vanish
3033
+ * on click instead of ellipsing gradually as the panel narrows.
2929
3034
  */
2930
3035
  declare class YuwSidebarMenuButtonDirective {
2931
3036
  constructor();
@@ -2947,8 +3052,17 @@ declare class YuwSidebarMenuSubItemDirective {
2947
3052
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarMenuSubItemDirective, never>;
2948
3053
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarMenuSubItemDirective, "li[yuwSidebarMenuSubItem]", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarMenuSubItem; inputs: {}; outputs: {}; }]>;
2949
3054
  }
2950
- /** Interactive control of a sidebar submenu item. Accepts `size` (`'sm'`, `'md'`) and `isActive`. */
3055
+ /**
3056
+ * Interactive control of a sidebar submenu item. Accepts `size` (`'sm'`, `'md'`) and `isActive`.
3057
+ *
3058
+ * Carries the same label clamp as `[yuwSidebarMenuButton]`. The composed primitive already truncates
3059
+ * its `span:last-child`, but truncation cannot fire while the span is a flex item at its default
3060
+ * `min-width: auto`: that floor keeps it at content width, so the panel widens the row instead of the
3061
+ * text ellipsing. `min-w-0` is what lets it shrink, and the `[&>span]` selector covers a label that is
3062
+ * no longer the last child.
3063
+ */
2951
3064
  declare class YuwSidebarMenuSubButtonDirective {
3065
+ constructor();
2952
3066
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarMenuSubButtonDirective, never>;
2953
3067
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarMenuSubButtonDirective, "a[yuwSidebarMenuSubButton], button[yuwSidebarMenuSubButton]", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarMenuSubButton; inputs: { "size": "size"; "isActive": "isActive"; "closeMobileSidebarOnClick": "closeMobileSidebarOnClick"; }; outputs: {}; }]>;
2954
3068
  }
@@ -3089,5 +3203,5 @@ declare class YuwSidebarInsetDirective {
3089
3203
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarInsetDirective, "main[yuwSidebarInset]", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarInset; inputs: {}; outputs: {}; }]>;
3090
3204
  }
3091
3205
 
3092
- export { DATATABLE_ALIGN_CLASS, YUW_DATATABLE_FEATURES, YUW_PASSWORD_REVEAL_STATES, YuwAccordion, YuwAccordionContentComponent, YuwAccordionImports, YuwAccordionItem, YuwAccordionTriggerComponent, YuwAlertActionDirective, YuwAlertComponent, YuwAlertDescriptionDirective, YuwAlertDialogComponent, YuwAlertDialogMediaDirective, YuwAlertDialogTriggerDirective, YuwAlertImports, YuwAlertTitleDirective, YuwAttachmentActionDirective, YuwAttachmentActionsDirective, YuwAttachmentContentDirective, YuwAttachmentDescriptionDirective, YuwAttachmentDirective, YuwAttachmentGroupDirective, YuwAttachmentMediaDirective, YuwAttachmentTitleDirective, YuwAttachmentTriggerDirective, YuwAvatarComponent, YuwBadgeComponent, YuwBreadcrumbComponent, YuwButtonComponent, YuwButtonGroupTextDirective, YuwCaptionDirective, YuwCardActionDirective, YuwCardContentDirective, YuwCardDescriptionDirective, YuwCardDirective, YuwCardFooterDirective, YuwCardHeaderDirective, YuwCardImports, YuwCardTitleDirective, YuwCheckboxComponent, YuwComboboxComponent, YuwComboboxItemDirective, YuwContextMenuCheckboxDirective, YuwContextMenuCheckboxIndicatorComponent, YuwContextMenuDirective, YuwContextMenuGroupDirective, YuwContextMenuImports, YuwContextMenuItemDirective, YuwContextMenuLabelDirective, YuwContextMenuRadioDirective, YuwContextMenuRadioIndicatorComponent, YuwContextMenuSeparatorDirective, YuwContextMenuShortcutDirective, YuwContextMenuSubDirective, YuwContextMenuSubIndicatorComponent, YuwContextMenuSubTriggerDirective, YuwContextMenuTriggerDirective, YuwDatatableComponent, YuwDatatableRowSelect, YuwDatepickerComponent, YuwDialogCloseDirective, YuwDialogComponent, YuwDialogFooterDirective, YuwDialogImports, YuwDialogTriggerDirective, YuwEmptyContentDirective, YuwEmptyDescriptionDirective, YuwEmptyDirective, YuwEmptyHeaderDirective, YuwEmptyImports, YuwEmptyMediaDirective, YuwEmptyTitleDirective, YuwInputAddonImports, YuwInputComponent, YuwInputOtpComponent, YuwItemActionsDirective, YuwItemContentDirective, YuwItemDescriptionDirective, YuwItemDirective, YuwItemFooterDirective, YuwItemGroupDirective, YuwItemHeaderDirective, YuwItemImports, YuwItemMediaDirective, YuwItemSeparatorDirective, YuwItemTitleDirective, YuwLabel, YuwLeftAddonDirective, YuwPaginationComponent, YuwPasswordInputComponent, YuwPopoverComponent, YuwPopoverTriggerDirective, YuwRadioGroupComponent, YuwRightAddonDirective, YuwSearchInputComponent, YuwSheetCloseDirective, YuwSheetComponent, YuwSheetFooterDirective, YuwSheetImports, YuwSheetTriggerDirective, YuwSidebarComponent, YuwSidebarContentDirective, YuwSidebarContentExtraDirective, YuwSidebarFlyoutDirective, YuwSidebarFlyoutHostDirective, YuwSidebarFlyoutPanelDirective, YuwSidebarFlyoutTriggerDirective, YuwSidebarFooterDirective, YuwSidebarFooterExtraDirective, YuwSidebarGroupContentDirective, YuwSidebarGroupDirective, YuwSidebarGroupLabelDirective, YuwSidebarHeaderDirective, YuwSidebarInsetDirective, YuwSidebarMenuBadgeDirective, YuwSidebarMenuButtonDirective, YuwSidebarMenuDirective, YuwSidebarMenuItemDirective, YuwSidebarMenuSubButtonDirective, YuwSidebarMenuSubDirective, YuwSidebarMenuSubItemDirective, YuwSidebarRailDirective, YuwSidebarSeparatorDirective, YuwSidebarTriggerComponent, YuwSidebarWrapperDirective, YuwSkeletonDirective, YuwSpinnerComponent, YuwSwitchComponent, YuwTBodyDirective, YuwTFootDirective, YuwTHeadDirective, YuwTabPanelDirective, YuwTableContainerDirective, YuwTableDirective, YuwTableImports, YuwTabsComponent, YuwTdDirective, YuwTextareaComponent, YuwThDirective, YuwToasterComponent, YuwTooltipDirective, YuwTrDirective, YuwValueAccessorBase, buildInputOtpGroups, cn, datatableCellVariants, datatableContainerVariants, datatableHeadVariants, datatableHeaderCellVariants, datatableRowVariants, getPaginationRange, provideValueAccessor, totalInputOtpLength };
3206
+ export { DATATABLE_ALIGN_CLASS, YUW_DATATABLE_FEATURES, YUW_PASSWORD_REVEAL_STATES, YuwAccordion, YuwAccordionContentComponent, YuwAccordionImports, YuwAccordionItem, YuwAccordionTriggerComponent, YuwAlertActionDirective, YuwAlertComponent, YuwAlertDescriptionDirective, YuwAlertDialogComponent, YuwAlertDialogMediaDirective, YuwAlertDialogTriggerDirective, YuwAlertImports, YuwAlertTitleDirective, YuwAttachmentActionDirective, YuwAttachmentActionsDirective, YuwAttachmentContentDirective, YuwAttachmentDescriptionDirective, YuwAttachmentDirective, YuwAttachmentGroupDirective, YuwAttachmentMediaDirective, YuwAttachmentTitleDirective, YuwAttachmentTriggerDirective, YuwAvatarComponent, YuwBadgeComponent, YuwBreadcrumbComponent, YuwButtonComponent, YuwButtonGroupTextDirective, YuwCaptionDirective, YuwCardActionDirective, YuwCardContentDirective, YuwCardDescriptionDirective, YuwCardDirective, YuwCardFooterDirective, YuwCardHeaderDirective, YuwCardImports, YuwCardTitleDirective, YuwCheckboxComponent, YuwComboboxComponent, YuwComboboxItemDirective, YuwContextMenuCheckboxDirective, YuwContextMenuCheckboxIndicatorComponent, YuwContextMenuDirective, YuwContextMenuGroupDirective, YuwContextMenuImports, YuwContextMenuItemDirective, YuwContextMenuLabelDirective, YuwContextMenuRadioDirective, YuwContextMenuRadioIndicatorComponent, YuwContextMenuSeparatorDirective, YuwContextMenuShortcutDirective, YuwContextMenuSubDirective, YuwContextMenuSubIndicatorComponent, YuwContextMenuSubTriggerDirective, YuwContextMenuTriggerDirective, YuwDatatableComponent, YuwDatatableRowSelect, YuwDatepickerComponent, YuwDialogCloseDirective, YuwDialogComponent, YuwDialogFooterDirective, YuwDialogImports, YuwDialogTriggerDirective, YuwEmptyContentDirective, YuwEmptyDescriptionDirective, YuwEmptyDirective, YuwEmptyHeaderDirective, YuwEmptyImports, YuwEmptyMediaDirective, YuwEmptyTitleDirective, YuwInputAddonImports, YuwInputComponent, YuwInputOtpComponent, YuwItemActionsDirective, YuwItemContentDirective, YuwItemDescriptionDirective, YuwItemDirective, YuwItemFooterDirective, YuwItemGroupDirective, YuwItemHeaderDirective, YuwItemImports, YuwItemMediaDirective, YuwItemSeparatorDirective, YuwItemTitleDirective, YuwLabel, YuwLeftAddonDirective, YuwPaginationComponent, YuwPasswordInputComponent, YuwPopoverComponent, YuwPopoverTriggerDirective, YuwRadioGroupComponent, YuwRightAddonDirective, YuwSearchInputComponent, YuwSheetCloseDirective, YuwSheetComponent, YuwSheetFooterDirective, YuwSheetImports, YuwSheetTriggerDirective, YuwSidebarComponent, YuwSidebarContentDirective, YuwSidebarContentExtraDirective, YuwSidebarFlyoutDirective, YuwSidebarFlyoutHostDirective, YuwSidebarFlyoutPanelDirective, YuwSidebarFlyoutTriggerDirective, YuwSidebarFooterDirective, YuwSidebarFooterExtraDirective, YuwSidebarGroupContentDirective, YuwSidebarGroupDirective, YuwSidebarGroupLabelDirective, YuwSidebarHeaderDirective, YuwSidebarInsetDirective, YuwSidebarMenuBadgeDirective, YuwSidebarMenuButtonDirective, YuwSidebarMenuDirective, YuwSidebarMenuItemDirective, YuwSidebarMenuSubButtonDirective, YuwSidebarMenuSubDirective, YuwSidebarMenuSubItemDirective, YuwSidebarRailDirective, YuwSidebarRailService, YuwSidebarSeparatorDirective, YuwSidebarTriggerComponent, YuwSidebarWrapperDirective, YuwSkeletonDirective, YuwSpinnerComponent, YuwSwitchComponent, YuwTBodyDirective, YuwTFootDirective, YuwTHeadDirective, YuwTabPanelDirective, YuwTableContainerDirective, YuwTableDirective, YuwTableImports, YuwTabsComponent, YuwTdDirective, YuwTextareaComponent, YuwThDirective, YuwToasterComponent, YuwTooltipDirective, YuwTrDirective, YuwValueAccessorBase, buildInputOtpGroups, cn, datatableCellVariants, datatableContainerVariants, datatableHeadVariants, datatableHeaderCellVariants, datatableRowVariants, getPaginationRange, provideValueAccessor, totalInputOtpLength };
3093
3207
  export type { YuwAlertDialogSizeDto, YuwAlertVariantDto, YuwAvatarGroupItemDto, YuwAvatarSizeDto, YuwBreadcrumbItemDto, YuwButtonGroupClickDto, YuwButtonGroupEntryDto, YuwButtonGroupItemDto, YuwButtonGroupTextDto, YuwColorDto, YuwComboboxItemContext, YuwComboboxOptionDto, YuwComboboxValue, YuwDatatableAlign, YuwDatatableAppearanceDto, YuwDatatableColumnDef, YuwDatatableColumnMeta, YuwDatatableFeatures, YuwDatepickerModeDto, YuwDatepickerValue, YuwFieldSizeDto, YuwInputModeDto, YuwInputOtpGroupDto, YuwInputOtpModeDto, YuwInputTypeDto, YuwPaginationRangeItem, YuwPaginationSizeDto, YuwPasswordRevealStateDto, YuwPopoverAlignDto, YuwRadioOptionDto, YuwSearchInputCollapseFromDto, YuwSheetSideDto, YuwSidebarCollapsibleDto, YuwSidebarContentDto, YuwSidebarGroupDto, YuwSidebarItemClickDto, YuwSidebarItemDto, YuwSidebarSideDto, YuwSidebarSubItemDto, YuwSidebarVariantDto, YuwSwitchSizeDto, YuwTabItemDto, YuwTabsActivationModeDto, YuwTabsOrientationDto, YuwTabsVariantDto, YuwTextFieldContract, YuwToasterPositionDto, YuwToasterThemeDto, YuwTooltipPositionDto };