yukit-web 0.0.1 → 0.0.2
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/.npm/_cacache/content-v2/sha512/e7/ea/2546081c4f18cc76dec1f07bbbef3a46a538af70d1f7c2f1efe2f2f325d44ad9fa21eed65ce5fac3286b71f23c14db4814eea212eebc2f199a0048c99e7d +1 -0
- package/.npm/_cacache/index-v5/64/dc/73c7a26f2e6eb0c711133d96c247da5ecf0eba708cd37c450a7b3c7cb488 +2 -0
- package/.npm/_logs/{2026-08-20T08_40_55_706Z-debug-0.log → 2026-08-21T10_24_11_870Z-debug-0.log} +11 -14
- package/.npm/_logs/{2026-08-20T08_40_56_280Z-debug-0.log → 2026-08-21T10_24_12_254Z-debug-0.log} +2 -2
- package/fesm2022/yukit-web.mjs +216 -58
- package/fesm2022/yukit-web.mjs.map +1 -1
- package/package.json +1 -1
- package/types/yukit-web.d.ts +118 -32
package/package.json
CHANGED
package/types/yukit-web.d.ts
CHANGED
|
@@ -17,12 +17,16 @@ import * as _tanstack_angular_table from '@tanstack/angular-table';
|
|
|
17
17
|
import { columnFilteringFeature, columnVisibilityFeature, rowPaginationFeature, rowSelectionFeature, rowSortingFeature, RowData, ColumnDef, SortingState, ColumnFiltersState, ColumnVisibilityState, RowSelectionState, PaginationState } from '@tanstack/table-core';
|
|
18
18
|
import * as i1$6 from 'yukit-web/helm/item';
|
|
19
19
|
import { HlmItemSeparator } from 'yukit-web/helm/item';
|
|
20
|
-
import * as i1$7 from '@spartan-ng/brain/
|
|
20
|
+
import * as i1$7 from '@spartan-ng/brain/sheet';
|
|
21
|
+
import * as i1$8 from '@spartan-ng/brain/popover';
|
|
22
|
+
import * as i1$9 from '@spartan-ng/brain/tooltip';
|
|
21
23
|
import { ToastOptions } from '@spartan-ng/brain/sonner';
|
|
22
24
|
export { toast as yuwToast } from '@spartan-ng/brain/sonner';
|
|
23
|
-
import * as i1$
|
|
25
|
+
import * as i1$a from '@spartan-ng/brain/dialog';
|
|
26
|
+
import * as i1$b from '@spartan-ng/brain/alert-dialog';
|
|
27
|
+
import * as i1$c from 'yukit-web/helm/attachment';
|
|
24
28
|
import { HlmAttachmentAction } from 'yukit-web/helm/attachment';
|
|
25
|
-
import * as i1$
|
|
29
|
+
import * as i1$d from 'yukit-web/helm/sidebar';
|
|
26
30
|
export { HlmSidebarConfig as YuwSidebarConfigDto, HlmSidebarService as YuwSidebarService, SidebarVariant as YuwSidebarServiceVariantDto, provideHlmSidebarConfig as provideYuwSidebarConfig } from 'yukit-web/helm/sidebar';
|
|
27
31
|
|
|
28
32
|
/**
|
|
@@ -151,6 +155,12 @@ interface YuwButtonGroupClickDto {
|
|
|
151
155
|
* - `clicked`: Emits MouseEvent on single button click.
|
|
152
156
|
* - `buttonClicked`: Emits object containing clicked button `id` and `event` in group mode.
|
|
153
157
|
*
|
|
158
|
+
* The host carries `inline-flex` so it is a real box rather than an inline one: an overlay trigger
|
|
159
|
+
* directive composed onto `<yuw-button>` (see `YuwPopoverTriggerDirective`) anchors its panel to the
|
|
160
|
+
* host element, and an inline host reports a rect that misses the button's own box. Elements that
|
|
161
|
+
* need to be positioned — an overlay's close button, for instance — get a positioned wrapper around
|
|
162
|
+
* `<yuw-button>` rather than relying on the host's own display.
|
|
163
|
+
*
|
|
154
164
|
* Single Button Usage:
|
|
155
165
|
* ```html
|
|
156
166
|
* <yuw-button variant="outline" color="primary" (clicked)="onSave()">Save</yuw-button>
|
|
@@ -184,6 +194,7 @@ declare class YuwButtonComponent {
|
|
|
184
194
|
readonly clicked: _angular_core.OutputEmitterRef<MouseEvent>;
|
|
185
195
|
readonly buttonClicked: _angular_core.OutputEmitterRef<YuwButtonGroupClickDto>;
|
|
186
196
|
protected readonly _isGroup: _angular_core.Signal<boolean>;
|
|
197
|
+
protected readonly _effectiveVariant: _angular_core.Signal<"secondary" | "destructive" | "default" | "outline" | "ghost" | "link" | null | undefined>;
|
|
187
198
|
/** Classes for the single-mode button/anchor: our variant layer + the consumer's `class`, which goes last so it wins. */
|
|
188
199
|
protected readonly _btnClass: _angular_core.Signal<string>;
|
|
189
200
|
protected readonly _resolved: _angular_core.Signal<{
|
|
@@ -222,14 +233,16 @@ declare class YuwButtonComponent {
|
|
|
222
233
|
* ```
|
|
223
234
|
*/
|
|
224
235
|
declare class YuwBadgeComponent {
|
|
236
|
+
readonly variant: _angular_core.InputSignal<"secondary" | "destructive" | "default" | "outline" | "ghost" | "link" | null | undefined>;
|
|
225
237
|
readonly color: _angular_core.InputSignal<YuwColorDto>;
|
|
226
238
|
readonly removeLabel: _angular_core.InputSignal<string | undefined>;
|
|
227
239
|
readonly dot: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
228
240
|
readonly removed: _angular_core.OutputEmitterRef<void>;
|
|
229
241
|
protected readonly dotClass: _angular_core.Signal<"" | "size-4 p-0">;
|
|
242
|
+
protected readonly removeClass: _angular_core.Signal<string>;
|
|
230
243
|
protected onRemoveClick(event: Event): void;
|
|
231
244
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwBadgeComponent, never>;
|
|
232
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<YuwBadgeComponent, "yuw-badge", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "removeLabel": { "alias": "removeLabel"; "required": false; "isSignal": true; }; "dot": { "alias": "dot"; "required": false; "isSignal": true; }; }, { "removed": "removed"; }, never, ["[yuwBadgeIcon]", "*"], true, [{ directive: typeof i1.HlmBadge; inputs: { "variant": "variant"; }; outputs: {}; }]>;
|
|
245
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<YuwBadgeComponent, "yuw-badge", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "removeLabel": { "alias": "removeLabel"; "required": false; "isSignal": true; }; "dot": { "alias": "dot"; "required": false; "isSignal": true; }; }, { "removed": "removed"; }, never, ["[yuwBadgeIcon]", "*"], true, [{ directive: typeof i1.HlmBadge; inputs: { "variant": "variant"; }; outputs: {}; }]>;
|
|
233
246
|
}
|
|
234
247
|
|
|
235
248
|
/** A single crumb in `<yuw-breadcrumb>`'s `items` input. */
|
|
@@ -1753,6 +1766,23 @@ declare class YuwSheetComponent {
|
|
|
1753
1766
|
}
|
|
1754
1767
|
declare const YuwSheetImports: readonly [typeof YuwSheetComponent, typeof YuwSheetFooterDirective];
|
|
1755
1768
|
|
|
1769
|
+
/**
|
|
1770
|
+
* Makes a `<yuw-button>` the trigger of the surrounding `<yuw-sheet>`.
|
|
1771
|
+
*
|
|
1772
|
+
* Mirrors `YuwDialogTriggerDirective`: the helm trigger only matches a native `button`, so the brain
|
|
1773
|
+
* directive is composed here instead, keeping `[hlmBtn]` inside `<yuw-button>`. `side` is forwarded
|
|
1774
|
+
* so a trigger can override which edge the sheet appears from.
|
|
1775
|
+
*/
|
|
1776
|
+
declare class YuwSheetTriggerDirective {
|
|
1777
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSheetTriggerDirective, never>;
|
|
1778
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSheetTriggerDirective, "yuw-button[yuwSheetTriggerButton]", never, {}, {}, never, never, true, [{ directive: typeof i1$7.BrnSheetTrigger; inputs: { "id": "id"; "side": "side"; "type": "type"; }; outputs: {}; }]>;
|
|
1779
|
+
}
|
|
1780
|
+
/** Closes the surrounding `<yuw-sheet>` when the host `<yuw-button>` is activated. */
|
|
1781
|
+
declare class YuwSheetCloseDirective {
|
|
1782
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSheetCloseDirective, never>;
|
|
1783
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSheetCloseDirective, "yuw-button[yuwSheetClose]", never, {}, {}, never, never, true, [{ directive: typeof i1$7.BrnSheetClose; inputs: {}; outputs: {}; }]>;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1756
1786
|
type YuwPopoverAlignDto = 'start' | 'center' | 'end';
|
|
1757
1787
|
/**
|
|
1758
1788
|
* Popover component for displaying anchored floating overlay panels.
|
|
@@ -1768,6 +1798,13 @@ type YuwPopoverAlignDto = 'start' | 'center' | 'end';
|
|
|
1768
1798
|
* over the library defaults via `twMerge`.
|
|
1769
1799
|
* - `triggerVariant`: Button style variant for the trigger button.
|
|
1770
1800
|
* - `triggerSize`: Button size for the trigger button.
|
|
1801
|
+
* - `triggerTransparent`: Strips the trigger's background and border in every state (rest, hover,
|
|
1802
|
+
* open), for triggers whose projected content is the whole control — an avatar, a name, a chevron.
|
|
1803
|
+
* - `triggerClass`: Extra classes merged onto the trigger button, last, so they beat both the
|
|
1804
|
+
* variant classes and `triggerTransparent` (e.g. `h-auto p-0` to drop the button's own box).
|
|
1805
|
+
*
|
|
1806
|
+
* The trigger is a `<yuw-button>`; `YuwPopoverTriggerDirective` composes the brain trigger onto it,
|
|
1807
|
+
* so the popover reuses our button component instead of applying `[hlmBtn]` directly.
|
|
1771
1808
|
*
|
|
1772
1809
|
* Usage:
|
|
1773
1810
|
* ```html
|
|
@@ -1788,10 +1825,29 @@ declare class YuwPopoverComponent {
|
|
|
1788
1825
|
readonly panelClass: _angular_core.InputSignal<string | undefined>;
|
|
1789
1826
|
readonly triggerVariant: _angular_core.InputSignal<"secondary" | "destructive" | "default" | "outline" | "ghost" | "link" | null | undefined>;
|
|
1790
1827
|
readonly triggerSize: _angular_core.InputSignal<"default" | "xs" | "sm" | "lg" | "icon" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined>;
|
|
1828
|
+
readonly triggerTransparent: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1829
|
+
readonly triggerClass: _angular_core.InputSignal<string>;
|
|
1791
1830
|
protected readonly _popoverState: _angular_core.Signal<"open" | "closed">;
|
|
1792
1831
|
protected onOpenChange(state: 'open' | 'closed'): void;
|
|
1793
1832
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwPopoverComponent, never>;
|
|
1794
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<YuwPopoverComponent, "yuw-popover", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "showTrigger": { "alias": "showTrigger"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "sideOffset": { "alias": "sideOffset"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "panelClass": { "alias": "panelClass"; "required": false; "isSignal": true; }; "triggerVariant": { "alias": "triggerVariant"; "required": false; "isSignal": true; }; "triggerSize": { "alias": "triggerSize"; "required": false; "isSignal": true; }; }, { "open": "openChange"; }, never, ["[yuwPopoverTrigger]", "*"], true, never>;
|
|
1833
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<YuwPopoverComponent, "yuw-popover", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "showTrigger": { "alias": "showTrigger"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "sideOffset": { "alias": "sideOffset"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "panelClass": { "alias": "panelClass"; "required": false; "isSignal": true; }; "triggerVariant": { "alias": "triggerVariant"; "required": false; "isSignal": true; }; "triggerSize": { "alias": "triggerSize"; "required": false; "isSignal": true; }; "triggerTransparent": { "alias": "triggerTransparent"; "required": false; "isSignal": true; }; "triggerClass": { "alias": "triggerClass"; "required": false; "isSignal": true; }; }, { "open": "openChange"; }, never, ["[yuwPopoverTrigger]", "*"], true, never>;
|
|
1834
|
+
}
|
|
1835
|
+
|
|
1836
|
+
/**
|
|
1837
|
+
* Makes a `<yuw-button>` the trigger of the surrounding `<yuw-popover>`.
|
|
1838
|
+
*
|
|
1839
|
+
* The helm trigger directive's selector only matches a native `button`, so composing the brain
|
|
1840
|
+
* directive here is what lets the popover use `<yuw-button>` rather than a bare `[hlmBtn]` element.
|
|
1841
|
+
* Brain needs three things from its host, all of which `<yuw-button>` provides: the `click` that
|
|
1842
|
+
* bubbles up from the inner button, the `aria-expanded`/`data-state` attributes, and a host box to
|
|
1843
|
+
* anchor the panel against — hence `<yuw-button>`'s `inline-flex` host, since a `display: contents`
|
|
1844
|
+
* host has no rect for the overlay to position from.
|
|
1845
|
+
*
|
|
1846
|
+
* `data-slot` mirrors the helm directive so the popover stylesheet targets both identically.
|
|
1847
|
+
*/
|
|
1848
|
+
declare class YuwPopoverTriggerDirective {
|
|
1849
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwPopoverTriggerDirective, never>;
|
|
1850
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwPopoverTriggerDirective, "yuw-button[yuwPopoverTriggerFor], yuw-button[yuwPopoverTriggerButton]", never, {}, {}, never, never, true, [{ directive: typeof i1$8.BrnPopoverTrigger; inputs: { "id": "id"; "brnPopoverTriggerFor": "yuwPopoverTriggerFor"; "type": "type"; }; outputs: {}; }]>;
|
|
1795
1851
|
}
|
|
1796
1852
|
|
|
1797
1853
|
type YuwTooltipPositionDto = 'top' | 'bottom' | 'left' | 'right';
|
|
@@ -1816,7 +1872,7 @@ type YuwTooltipPositionDto = 'top' | 'bottom' | 'left' | 'right';
|
|
|
1816
1872
|
*/
|
|
1817
1873
|
declare class YuwTooltipDirective {
|
|
1818
1874
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwTooltipDirective, never>;
|
|
1819
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwTooltipDirective, "[yuwTooltip]", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
1875
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwTooltipDirective, "[yuwTooltip]", never, {}, {}, never, never, true, [{ directive: typeof i1$9.BrnTooltip; inputs: { "brnTooltip": "yuwTooltip"; "position": "position"; "hideDelay": "hideDelay"; "showDelay": "showDelay"; "tooltipDisabled": "tooltipDisabled"; }; outputs: {}; }]>;
|
|
1820
1876
|
}
|
|
1821
1877
|
|
|
1822
1878
|
/**
|
|
@@ -2024,6 +2080,25 @@ declare class YuwDialogComponent {
|
|
|
2024
2080
|
}
|
|
2025
2081
|
declare const YuwDialogImports: readonly [typeof YuwDialogComponent, typeof YuwDialogFooterDirective];
|
|
2026
2082
|
|
|
2083
|
+
/**
|
|
2084
|
+
* Makes a `<yuw-button>` the trigger of the surrounding `<yuw-dialog>`.
|
|
2085
|
+
*
|
|
2086
|
+
* The helm trigger directive's selector only matches a native `button`, so composing the brain
|
|
2087
|
+
* directive here is what lets the dialog use `<yuw-button>` rather than applying `[hlmBtn]` outside
|
|
2088
|
+
* of `<yuw-button>` itself. A dialog is centred rather than anchored to its trigger, so brain needs
|
|
2089
|
+
* only the click — which bubbles up from the inner button — and the `aria-expanded`/`data-state`
|
|
2090
|
+
* attributes it writes on the host.
|
|
2091
|
+
*/
|
|
2092
|
+
declare class YuwDialogTriggerDirective {
|
|
2093
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwDialogTriggerDirective, never>;
|
|
2094
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwDialogTriggerDirective, "yuw-button[yuwDialogTriggerFor], yuw-button[yuwDialogTriggerButton]", never, {}, {}, never, never, true, [{ directive: typeof i1$a.BrnDialogTrigger; inputs: { "id": "id"; "brnDialogTriggerFor": "yuwDialogTriggerFor"; "type": "type"; }; outputs: {}; }]>;
|
|
2095
|
+
}
|
|
2096
|
+
/** Closes the surrounding `<yuw-dialog>` when the host `<yuw-button>` is activated. */
|
|
2097
|
+
declare class YuwDialogCloseDirective {
|
|
2098
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwDialogCloseDirective, never>;
|
|
2099
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwDialogCloseDirective, "yuw-button[yuwDialogClose]", never, {}, {}, never, never, true, [{ directive: typeof i1$a.BrnDialogClose; inputs: {}; outputs: {}; }]>;
|
|
2100
|
+
}
|
|
2101
|
+
|
|
2027
2102
|
/**
|
|
2028
2103
|
* Marks a projected element as the leading media of a `<yuw-alert-dialog>`, rendered in a
|
|
2029
2104
|
* highlighted square above or beside the title.
|
|
@@ -2091,6 +2166,17 @@ declare class YuwAlertDialogComponent {
|
|
|
2091
2166
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<YuwAlertDialogComponent, "yuw-alert-dialog", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "showTrigger": { "alias": "showTrigger"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "confirmLabel": { "alias": "confirmLabel"; "required": true; "isSignal": true; }; "cancelLabel": { "alias": "cancelLabel"; "required": true; "isSignal": true; }; "confirmVariant": { "alias": "confirmVariant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "triggerVariant": { "alias": "triggerVariant"; "required": false; "isSignal": true; }; "triggerSize": { "alias": "triggerSize"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "confirmed": "confirmed"; "cancelled": "cancelled"; }, ["hasMedia"], ["[yuwAlertDialogTrigger]", "[yuwAlertDialogMedia]", "*"], true, never>;
|
|
2092
2167
|
}
|
|
2093
2168
|
|
|
2169
|
+
/**
|
|
2170
|
+
* Makes a `<yuw-button>` the trigger of the surrounding `<yuw-alert-dialog>`.
|
|
2171
|
+
*
|
|
2172
|
+
* Mirrors `YuwDialogTriggerDirective`: the helm trigger only matches a native `button`, so the brain
|
|
2173
|
+
* directive is composed here instead, keeping `[hlmBtn]` inside `<yuw-button>`.
|
|
2174
|
+
*/
|
|
2175
|
+
declare class YuwAlertDialogTriggerDirective {
|
|
2176
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwAlertDialogTriggerDirective, never>;
|
|
2177
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwAlertDialogTriggerDirective, "yuw-button[yuwAlertDialogTriggerFor], yuw-button[yuwAlertDialogTriggerButton]", never, {}, {}, never, never, true, [{ directive: typeof i1$b.BrnAlertDialogTrigger; inputs: { "id": "id"; "brnAlertDialogTriggerFor": "yuwAlertDialogTriggerFor"; "type": "type"; }; outputs: {}; }]>;
|
|
2178
|
+
}
|
|
2179
|
+
|
|
2094
2180
|
/** A single tab in `<yuw-tabs>`, pairing the trigger label with the id used to match its content. */
|
|
2095
2181
|
interface YuwTabItemDto {
|
|
2096
2182
|
id: string;
|
|
@@ -2177,37 +2263,37 @@ declare class YuwTabsComponent {
|
|
|
2177
2263
|
*/
|
|
2178
2264
|
declare class YuwAttachmentDirective {
|
|
2179
2265
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwAttachmentDirective, never>;
|
|
2180
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwAttachmentDirective, "[yuwAttachment], yuw-attachment", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2266
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwAttachmentDirective, "[yuwAttachment], yuw-attachment", never, {}, {}, never, never, true, [{ directive: typeof i1$c.HlmAttachment; inputs: { "state": "state"; "size": "size"; "orientation": "orientation"; }; outputs: {}; }]>;
|
|
2181
2267
|
}
|
|
2182
2268
|
/** Scrollable, snapping row that lays out several attachment cards. */
|
|
2183
2269
|
declare class YuwAttachmentGroupDirective {
|
|
2184
2270
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwAttachmentGroupDirective, never>;
|
|
2185
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwAttachmentGroupDirective, "[yuwAttachmentGroup], yuw-attachment-group", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2271
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwAttachmentGroupDirective, "[yuwAttachmentGroup], yuw-attachment-group", never, {}, {}, never, never, true, [{ directive: typeof i1$c.HlmAttachmentGroup; inputs: {}; outputs: {}; }]>;
|
|
2186
2272
|
}
|
|
2187
2273
|
/** Leading media slot of an attachment, for a file-type icon or an image preview. Supports `variant` (`'icon'`, `'image'`). */
|
|
2188
2274
|
declare class YuwAttachmentMediaDirective {
|
|
2189
2275
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwAttachmentMediaDirective, never>;
|
|
2190
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwAttachmentMediaDirective, "[yuwAttachmentMedia], yuw-attachment-media", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2276
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwAttachmentMediaDirective, "[yuwAttachmentMedia], yuw-attachment-media", never, {}, {}, never, never, true, [{ directive: typeof i1$c.HlmAttachmentMedia; inputs: { "variant": "variant"; }; outputs: {}; }]>;
|
|
2191
2277
|
}
|
|
2192
2278
|
/** Text content container of an attachment, holding its title and description. */
|
|
2193
2279
|
declare class YuwAttachmentContentDirective {
|
|
2194
2280
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwAttachmentContentDirective, never>;
|
|
2195
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwAttachmentContentDirective, "[yuwAttachmentContent], yuw-attachment-content", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2281
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwAttachmentContentDirective, "[yuwAttachmentContent], yuw-attachment-content", never, {}, {}, never, never, true, [{ directive: typeof i1$c.HlmAttachmentContent; inputs: {}; outputs: {}; }]>;
|
|
2196
2282
|
}
|
|
2197
2283
|
/** File name of an attachment. Truncates and shimmers while the attachment is uploading or processing. */
|
|
2198
2284
|
declare class YuwAttachmentTitleDirective {
|
|
2199
2285
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwAttachmentTitleDirective, never>;
|
|
2200
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwAttachmentTitleDirective, "[yuwAttachmentTitle], yuw-attachment-title", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2286
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwAttachmentTitleDirective, "[yuwAttachmentTitle], yuw-attachment-title", never, {}, {}, never, never, true, [{ directive: typeof i1$c.HlmAttachmentTitle; inputs: {}; outputs: {}; }]>;
|
|
2201
2287
|
}
|
|
2202
2288
|
/** Secondary line of an attachment, for file size, progress, or an error message. */
|
|
2203
2289
|
declare class YuwAttachmentDescriptionDirective {
|
|
2204
2290
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwAttachmentDescriptionDirective, never>;
|
|
2205
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwAttachmentDescriptionDirective, "[yuwAttachmentDescription], yuw-attachment-description", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2291
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwAttachmentDescriptionDirective, "[yuwAttachmentDescription], yuw-attachment-description", never, {}, {}, never, never, true, [{ directive: typeof i1$c.HlmAttachmentDescription; inputs: {}; outputs: {}; }]>;
|
|
2206
2292
|
}
|
|
2207
2293
|
/** Trailing container for an attachment's action buttons. */
|
|
2208
2294
|
declare class YuwAttachmentActionsDirective {
|
|
2209
2295
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwAttachmentActionsDirective, never>;
|
|
2210
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwAttachmentActionsDirective, "[yuwAttachmentActions], yuw-attachment-actions", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2296
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwAttachmentActionsDirective, "[yuwAttachmentActions], yuw-attachment-actions", never, {}, {}, never, never, true, [{ directive: typeof i1$c.HlmAttachmentActions; inputs: {}; outputs: {}; }]>;
|
|
2211
2297
|
}
|
|
2212
2298
|
/**
|
|
2213
2299
|
* Icon-sized action button inside an attachment, such as remove or retry.
|
|
@@ -2228,7 +2314,7 @@ declare class YuwAttachmentActionDirective extends HlmAttachmentAction {
|
|
|
2228
2314
|
/** Turns the whole attachment card into a single clickable target, layered under its actions. */
|
|
2229
2315
|
declare class YuwAttachmentTriggerDirective {
|
|
2230
2316
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwAttachmentTriggerDirective, never>;
|
|
2231
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwAttachmentTriggerDirective, "button[yuwAttachmentTrigger], a[yuwAttachmentTrigger]", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2317
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwAttachmentTriggerDirective, "button[yuwAttachmentTrigger], a[yuwAttachmentTrigger]", never, {}, {}, never, never, true, [{ directive: typeof i1$c.HlmAttachmentTrigger; inputs: { "type": "type"; }; outputs: {}; }]>;
|
|
2232
2318
|
}
|
|
2233
2319
|
|
|
2234
2320
|
type YuwSidebarSideDto = 'left' | 'right';
|
|
@@ -2327,47 +2413,47 @@ declare class YuwSidebarTriggerComponent {
|
|
|
2327
2413
|
*/
|
|
2328
2414
|
declare class YuwSidebarWrapperDirective {
|
|
2329
2415
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarWrapperDirective, never>;
|
|
2330
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarWrapperDirective, "[yuwSidebarWrapper], yuw-sidebar-wrapper", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2416
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarWrapperDirective, "[yuwSidebarWrapper], yuw-sidebar-wrapper", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarWrapper; inputs: { "sidebarWidth": "sidebarWidth"; "sidebarWidthIcon": "sidebarWidthIcon"; }; outputs: {}; }]>;
|
|
2331
2417
|
}
|
|
2332
2418
|
/** Top area of the sidebar, above the scrollable content. */
|
|
2333
2419
|
declare class YuwSidebarHeaderDirective {
|
|
2334
2420
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarHeaderDirective, never>;
|
|
2335
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarHeaderDirective, "[yuwSidebarHeader], yuw-sidebar-header", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2421
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarHeaderDirective, "[yuwSidebarHeader], yuw-sidebar-header", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarHeader; inputs: {}; outputs: {}; }]>;
|
|
2336
2422
|
}
|
|
2337
2423
|
/** Scrollable middle area of the sidebar that holds the navigation groups. */
|
|
2338
2424
|
declare class YuwSidebarContentDirective {
|
|
2339
2425
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarContentDirective, never>;
|
|
2340
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarContentDirective, "[yuwSidebarContent], yuw-sidebar-content", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2426
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarContentDirective, "[yuwSidebarContent], yuw-sidebar-content", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarContent; inputs: {}; outputs: {}; }]>;
|
|
2341
2427
|
}
|
|
2342
2428
|
/** Bottom area of the sidebar, below the scrollable content. */
|
|
2343
2429
|
declare class YuwSidebarFooterDirective {
|
|
2344
2430
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarFooterDirective, never>;
|
|
2345
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarFooterDirective, "[yuwSidebarFooter], yuw-sidebar-footer", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2431
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarFooterDirective, "[yuwSidebarFooter], yuw-sidebar-footer", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarFooter; inputs: {}; outputs: {}; }]>;
|
|
2346
2432
|
}
|
|
2347
2433
|
/** A titled section of the sidebar. */
|
|
2348
2434
|
declare class YuwSidebarGroupDirective {
|
|
2349
2435
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarGroupDirective, never>;
|
|
2350
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarGroupDirective, "[yuwSidebarGroup], yuw-sidebar-group", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2436
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarGroupDirective, "[yuwSidebarGroup], yuw-sidebar-group", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarGroup; inputs: {}; outputs: {}; }]>;
|
|
2351
2437
|
}
|
|
2352
2438
|
/** Heading of a sidebar group. Fades out when the sidebar collapses to icons. */
|
|
2353
2439
|
declare class YuwSidebarGroupLabelDirective {
|
|
2354
2440
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarGroupLabelDirective, never>;
|
|
2355
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarGroupLabelDirective, "div[yuwSidebarGroupLabel], button[yuwSidebarGroupLabel]", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2441
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarGroupLabelDirective, "div[yuwSidebarGroupLabel], button[yuwSidebarGroupLabel]", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarGroupLabel; inputs: {}; outputs: {}; }]>;
|
|
2356
2442
|
}
|
|
2357
2443
|
/** Body of a sidebar group, wrapping its menu. */
|
|
2358
2444
|
declare class YuwSidebarGroupContentDirective {
|
|
2359
2445
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarGroupContentDirective, never>;
|
|
2360
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarGroupContentDirective, "div[yuwSidebarGroupContent]", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2446
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarGroupContentDirective, "div[yuwSidebarGroupContent]", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarGroupContent; inputs: {}; outputs: {}; }]>;
|
|
2361
2447
|
}
|
|
2362
2448
|
/** Navigation list of a sidebar group. Apply to a `<ul>`. */
|
|
2363
2449
|
declare class YuwSidebarMenuDirective {
|
|
2364
2450
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarMenuDirective, never>;
|
|
2365
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarMenuDirective, "ul[yuwSidebarMenu]", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2451
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarMenuDirective, "ul[yuwSidebarMenu]", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarMenu; inputs: {}; outputs: {}; }]>;
|
|
2366
2452
|
}
|
|
2367
2453
|
/** A single entry of a sidebar menu. Apply to an `<li>`. */
|
|
2368
2454
|
declare class YuwSidebarMenuItemDirective {
|
|
2369
2455
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarMenuItemDirective, never>;
|
|
2370
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarMenuItemDirective, "li[yuwSidebarMenuItem]", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2456
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarMenuItemDirective, "li[yuwSidebarMenuItem]", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarMenuItem; inputs: {}; outputs: {}; }]>;
|
|
2371
2457
|
}
|
|
2372
2458
|
/**
|
|
2373
2459
|
* Interactive control of a sidebar menu item. Accepts `variant` (`'default'`, `'outline'`), `size`
|
|
@@ -2379,32 +2465,32 @@ declare class YuwSidebarMenuItemDirective {
|
|
|
2379
2465
|
*/
|
|
2380
2466
|
declare class YuwSidebarMenuButtonDirective {
|
|
2381
2467
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarMenuButtonDirective, never>;
|
|
2382
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarMenuButtonDirective, "button[yuwSidebarMenuButton], a[yuwSidebarMenuButton]", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2468
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarMenuButtonDirective, "button[yuwSidebarMenuButton], a[yuwSidebarMenuButton]", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarMenuButton; inputs: { "variant": "variant"; "size": "size"; "isActive": "isActive"; "closeMobileSidebarOnClick": "closeMobileSidebarOnClick"; }; outputs: {}; }]>;
|
|
2383
2469
|
}
|
|
2384
2470
|
/** Trailing count or status badge of a sidebar menu item. */
|
|
2385
2471
|
declare class YuwSidebarMenuBadgeDirective {
|
|
2386
2472
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarMenuBadgeDirective, never>;
|
|
2387
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarMenuBadgeDirective, "[yuwSidebarMenuBadge], yuw-sidebar-menu-badge", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2473
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarMenuBadgeDirective, "[yuwSidebarMenuBadge], yuw-sidebar-menu-badge", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarMenuBadge; inputs: {}; outputs: {}; }]>;
|
|
2388
2474
|
}
|
|
2389
2475
|
/** Nested submenu list of a sidebar menu item. Apply to a `<ul>`. */
|
|
2390
2476
|
declare class YuwSidebarMenuSubDirective {
|
|
2391
2477
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarMenuSubDirective, never>;
|
|
2392
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarMenuSubDirective, "ul[yuwSidebarMenuSub]", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2478
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarMenuSubDirective, "ul[yuwSidebarMenuSub]", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarMenuSub; inputs: {}; outputs: {}; }]>;
|
|
2393
2479
|
}
|
|
2394
2480
|
/** A single entry of a sidebar submenu. Apply to an `<li>`. */
|
|
2395
2481
|
declare class YuwSidebarMenuSubItemDirective {
|
|
2396
2482
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarMenuSubItemDirective, never>;
|
|
2397
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarMenuSubItemDirective, "li[yuwSidebarMenuSubItem]", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2483
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarMenuSubItemDirective, "li[yuwSidebarMenuSubItem]", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarMenuSubItem; inputs: {}; outputs: {}; }]>;
|
|
2398
2484
|
}
|
|
2399
2485
|
/** Interactive control of a sidebar submenu item. Accepts `size` (`'sm'`, `'md'`) and `isActive`. */
|
|
2400
2486
|
declare class YuwSidebarMenuSubButtonDirective {
|
|
2401
2487
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarMenuSubButtonDirective, never>;
|
|
2402
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarMenuSubButtonDirective, "a[yuwSidebarMenuSubButton], button[yuwSidebarMenuSubButton]", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2488
|
+
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: {}; }]>;
|
|
2403
2489
|
}
|
|
2404
2490
|
/** Divider between sidebar sections. */
|
|
2405
2491
|
declare class YuwSidebarSeparatorDirective {
|
|
2406
2492
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarSeparatorDirective, never>;
|
|
2407
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarSeparatorDirective, "[yuwSidebarSeparator], yuw-sidebar-separator", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2493
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarSeparatorDirective, "[yuwSidebarSeparator], yuw-sidebar-separator", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarSeparator; inputs: {}; outputs: {}; }]>;
|
|
2408
2494
|
}
|
|
2409
2495
|
/** Thin draggable edge that toggles the sidebar. Apply to a `<button>`. */
|
|
2410
2496
|
declare class YuwSidebarRailDirective {
|
|
@@ -2414,13 +2500,13 @@ declare class YuwSidebarRailDirective {
|
|
|
2414
2500
|
*/
|
|
2415
2501
|
readonly label: _angular_core.InputSignal<string>;
|
|
2416
2502
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarRailDirective, never>;
|
|
2417
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarRailDirective, "button[yuwSidebarRail]", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof i1$
|
|
2503
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarRailDirective, "button[yuwSidebarRail]", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarRail; inputs: {}; outputs: {}; }]>;
|
|
2418
2504
|
}
|
|
2419
2505
|
/** Main content region beside the sidebar. Apply to a `<main>`. */
|
|
2420
2506
|
declare class YuwSidebarInsetDirective {
|
|
2421
2507
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<YuwSidebarInsetDirective, never>;
|
|
2422
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarInsetDirective, "main[yuwSidebarInset]", never, {}, {}, never, never, true, [{ directive: typeof i1$
|
|
2508
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<YuwSidebarInsetDirective, "main[yuwSidebarInset]", never, {}, {}, never, never, true, [{ directive: typeof i1$d.HlmSidebarInset; inputs: {}; outputs: {}; }]>;
|
|
2423
2509
|
}
|
|
2424
2510
|
|
|
2425
|
-
export { YUW_DATATABLE_FEATURES, YUW_PASSWORD_REVEAL_STATES, YuwAccordion, YuwAccordionContentComponent, YuwAccordionImports, YuwAccordionItem, YuwAccordionTriggerComponent, YuwAlertActionDirective, YuwAlertComponent, YuwAlertDescriptionDirective, YuwAlertDialogComponent, YuwAlertDialogMediaDirective, YuwAlertImports, YuwAlertTitleDirective, YuwAttachmentActionDirective, YuwAttachmentActionsDirective, YuwAttachmentContentDirective, YuwAttachmentDescriptionDirective, YuwAttachmentDirective, YuwAttachmentGroupDirective, YuwAttachmentMediaDirective, YuwAttachmentTitleDirective, YuwAttachmentTriggerDirective, YuwAvatarComponent, YuwBadgeComponent, YuwBreadcrumbComponent, YuwButtonComponent, 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, YuwDatepickerComponent, YuwDialogComponent, YuwDialogFooterDirective, YuwDialogImports, 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, YuwRadioGroupComponent, YuwRightAddonDirective, YuwSearchInputComponent, YuwSheetComponent, YuwSheetFooterDirective, YuwSheetImports, YuwSidebarComponent, YuwSidebarContentDirective, YuwSidebarFooterDirective, 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, getPaginationRange, provideValueAccessor, totalInputOtpLength };
|
|
2511
|
+
export { 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, 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, 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, YuwSidebarFooterDirective, 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, getPaginationRange, provideValueAccessor, totalInputOtpLength };
|
|
2426
2512
|
export type { YuwAlertDialogSizeDto, YuwAlertVariantDto, YuwAvatarGroupItemDto, YuwAvatarSizeDto, YuwBreadcrumbItemDto, YuwButtonGroupClickDto, YuwButtonGroupItemDto, YuwColorDto, YuwComboboxItemContext, YuwComboboxOptionDto, YuwComboboxValue, YuwDatatableColumnDef, YuwDatatableFeatures, YuwDatepickerModeDto, YuwDatepickerValue, YuwInputModeDto, YuwInputOtpGroupDto, YuwInputOtpModeDto, YuwInputTypeDto, YuwPaginationRangeItem, YuwPaginationSizeDto, YuwPasswordRevealStateDto, YuwPopoverAlignDto, YuwRadioOptionDto, YuwSheetSideDto, YuwSidebarCollapsibleDto, YuwSidebarSideDto, YuwSidebarVariantDto, YuwSwitchSizeDto, YuwTabItemDto, YuwTabsActivationModeDto, YuwTabsOrientationDto, YuwTabsVariantDto, YuwTextFieldContract, YuwToasterPositionDto, YuwToasterThemeDto, YuwTooltipPositionDto };
|