@kouji-ui/core 0.8.3 → 0.8.5

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.
@@ -0,0 +1,47 @@
1
+ /* ─────────────────────────────────────────────────────────────
2
+ @kouji-ui/core — overlay primitive base styles
3
+ --------------------------------------------------------------
4
+ Ships the structural CSS for the singleton overlay container
5
+ created by `getOverlayContainer()` and per-overlay wrappers
6
+ created by `createOverlayWrapper()`, plus the default visual
7
+ for `kj-backdrop` (the `solidBackdrop()` strategy's class).
8
+
9
+ The themed overlay-family components (popover, tooltip,
10
+ dropdown-menu, dialog, drawer, toast, confirm-popup) live in
11
+ `@kouji-ui/components` and re-export this file plus their own
12
+ stylesheets via `packages/components/src/overlay/overlay.css`.
13
+ Consumers register that single aggregator — no need to list
14
+ each overlay component CSS in `angular.json`.
15
+ ──────────────────────────────────────────────────────────── */
16
+
17
+ @layer kj.component {
18
+ .kj-overlay-container {
19
+ position: fixed;
20
+ inset: 0;
21
+ z-index: var(--kj-overlay-z-index, var(--kj-overlay-z-base, 1000));
22
+ pointer-events: none;
23
+ }
24
+
25
+ /* One wrapper per open overlay. `KjOverlayStack` writes an inline
26
+ `z-index` + `--kj-overlay-z` here on open (base 1000, +1 per nested
27
+ level) so each wrapper is its own stacking context and a nested
28
+ overlay always paints above its opener. Panel stylesheets read
29
+ `z-index: var(--kj-overlay-z, <their default>)`. */
30
+ .kj-overlay-wrapper {
31
+ position: absolute;
32
+ inset: 0;
33
+ pointer-events: none;
34
+ }
35
+
36
+ .kj-overlay-wrapper > * {
37
+ pointer-events: auto;
38
+ }
39
+
40
+ .kj-backdrop,
41
+ .kj-overlay-backdrop {
42
+ position: absolute;
43
+ inset: 0;
44
+ background: var(--kj-backdrop-bg, rgb(0 0 0 / 0.5));
45
+ pointer-events: auto;
46
+ }
47
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kouji-ui/core",
3
- "version": "0.8.3",
3
+ "version": "0.8.5",
4
4
  "description": "Headless Angular 21 UI primitives — directives over CDK with WCAG 2.1 AAA semantics and zero CSS.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -50,6 +50,10 @@
50
50
  "module": "fesm2022/kouji-ui-core.mjs",
51
51
  "typings": "types/kouji-ui-core.d.ts",
52
52
  "exports": {
53
+ "./overlay/overlay.css": {
54
+ "style": "./overlay/overlay.css",
55
+ "default": "./overlay/overlay.css"
56
+ },
53
57
  "./icon/icon.css": {
54
58
  "style": "./icon/icon.css",
55
59
  "default": "./icon/icon.css"
@@ -347,6 +347,14 @@ declare class KjOverlayController {
347
347
  */
348
348
  strategies: KjOverlayStrategies | null;
349
349
  private stackHandle;
350
+ private readonly _stackHandle;
351
+ /**
352
+ * Whether this overlay is the top of `KjOverlayStack` — nothing is open
353
+ * above it. Read by dismiss paths (backdrop click, Escape) so a gesture
354
+ * aimed at a nested overlay never falls through to its opener. `true`
355
+ * when the overlay is not registered at all (nothing to be under).
356
+ */
357
+ readonly isTopmost: _angular_core.Signal<boolean>;
350
358
  private transitionDeadline;
351
359
  private rafId;
352
360
  private transitionListener;
@@ -546,6 +554,53 @@ declare class KjOverlayTrigger {
546
554
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjOverlayTrigger, "[kjOverlayTrigger]", ["kjOverlayTrigger"], { "kjOpen": { "alias": "kjOpen"; "required": false; "isSignal": true; }; }, { "kjOpen": "kjOpenChange"; }, never, never, true, never>;
547
555
  }
548
556
 
557
+ /**
558
+ * Tracks whether the press that produced a `click` actually BEGAN on the
559
+ * element that is about to dismiss an overlay.
560
+ *
561
+ * A backdrop covers the viewport, so the browser hands it clicks it never
562
+ * saw the start of. When the element a press began on is removed from the
563
+ * document before the pointer is released — which is exactly what happens
564
+ * when a `<kj-select>` nested in a `<kj-command-palette>` commits a NEW
565
+ * value, re-rendering its option list — the engine retargets the `click`
566
+ * to what is under the pointer by then. The option is gone and its whole
567
+ * portalled wrapper with it, so the palette's backdrop is what is left
568
+ * underneath, and its dismiss handler ran on a click the user aimed at an
569
+ * option. Committing the SAME value re-renders nothing, the option stays
570
+ * attached, the click lands on it, and the palette survives — which is why
571
+ * the bug looked like it depended on the value.
572
+ *
573
+ * The rule this encodes: a dismiss-on-click surface reacts only to a press
574
+ * it owns from the start. Arm on `pointerdown` (which is dispatched at the
575
+ * real origin, before any re-render can move it), and dismiss on `click`
576
+ * only if that arming happened.
577
+ *
578
+ * Clicks with `detail === 0` are let through: they are not pointer-driven
579
+ * at all (`element.click()`, keyboard activation, some assistive tooling),
580
+ * so no `pointerdown` ever arrives to match them against.
581
+ *
582
+ * @doc-category Core/Overlay
583
+ */
584
+ declare class KjDismissPress {
585
+ private armed;
586
+ /**
587
+ * Bind to `pointerdown` (and `mousedown`, for engines without pointer
588
+ * events) on the dismissing element. Firing at all is the signal: the
589
+ * listener sits on that element, so the press started there.
590
+ */
591
+ arm(): void;
592
+ /**
593
+ * Bind to `click` on the dismissing element. `true` when the click
594
+ * belongs to a press that began here and should dismiss; `false` for a
595
+ * click retargeted onto this element after its original target left the
596
+ * document. Consumes the arming either way, so a stray click can never
597
+ * ride on the previous press.
598
+ */
599
+ owns(event: MouseEvent): boolean;
600
+ /** Drop any pending arming — call when the overlay closes or is destroyed. */
601
+ reset(): void;
602
+ }
603
+
549
604
  /**
550
605
  * Renders the backdrop scrim for an overlay. Reads the backdrop strategy
551
606
  * (className, closeOnClick) and the controller from the per-overlay
@@ -557,7 +612,15 @@ declare class KjBackdrop {
557
612
  private readonly strategy;
558
613
  readonly state: _angular_core.Signal<_kouji_ui_core.KjOverlayState>;
559
614
  readonly klass: _angular_core.Signal<string>;
560
- onClick(_e: MouseEvent): void;
615
+ /**
616
+ * Only a press that began on the scrim dismisses. A click retargeted
617
+ * here because its original target left the document mid-gesture (an
618
+ * option in an overlay stacked above, re-rendered on commit) is not the
619
+ * user asking to dismiss this overlay — see {@link KjDismissPress}.
620
+ */
621
+ protected readonly press: KjDismissPress;
622
+ onPress(): void;
623
+ onClick(e: MouseEvent): void;
561
624
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<KjBackdrop, never>;
562
625
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<KjBackdrop, "kj-backdrop", never, {}, {}, never, never, true, never>;
563
626
  }
@@ -840,7 +903,23 @@ declare class KjListItem<T = unknown> implements AfterContentInit {
840
903
  */
841
904
  readonly setSize: _angular_core.WritableSignal<number | null>;
842
905
  private readonly selection;
843
- private readonly cfg;
906
+ /**
907
+ * The list container this item belongs to — the nearest
908
+ * `KJ_LIST_NAVIGATOR_CONFIG` on the element-injector path, i.e. the
909
+ * innermost list-style composite that encloses this item. `null` when
910
+ * the item is rendered outside any container.
911
+ *
912
+ * This is what makes a nested composite (a select inside a command
913
+ * palette, a menu inside a select, a combobox inside a dialog) keep
914
+ * its items to itself: the item answers to exactly one container, and
915
+ * every container filters its own `contentChildren(KjListItem)` query
916
+ * down to the items that name it here (see {@link ownListItems}).
917
+ * Without that filter a `descendants: true` query reaches straight
918
+ * through a nested composite and steals its rows — the outer list then
919
+ * navigates, filters, numbers (`aria-posinset`) and activates options
920
+ * that are not its own.
921
+ */
922
+ readonly container: _kouji_ui_core.KjListNavigatorConfig | null;
844
923
  /**
845
924
  * `aria-selected` driven by the injected selection model. `null` when
846
925
  * no model is provided, the value is undefined, or the mode is
@@ -1355,6 +1434,39 @@ declare const injectListItem: <T>() => KjListItem<T>;
1355
1434
  declare const injectSelectionModel: <T>() => KjSelectionModel<T>;
1356
1435
  declare const injectFilterableList: <T>() => KjFilterableList<T>;
1357
1436
 
1437
+ /**
1438
+ * Narrows a container's `contentChildren(KjListItem, { descendants: true })`
1439
+ * query to the items that actually belong to that container.
1440
+ *
1441
+ * Every list-style root (`KjSelect`, `KjCommandPalette`, `KjCombobox`,
1442
+ * `KjDropdownMenu(Content)`, `KjMenubar`, `KjTreeSelect`,
1443
+ * `KjCascadeSelect`) collects its rows with a `descendants: true` content
1444
+ * query. That query is blind to composition: it walks straight through a
1445
+ * nested list composite and hoovers up *its* rows too. A `<kj-select>`
1446
+ * placed inside a `<kj-command-palette>` therefore handed its options to
1447
+ * the palette, which then navigated onto them, filtered them with its own
1448
+ * query, renumbered their `aria-posinset` / `aria-setsize`, and — on
1449
+ * Enter — activated one of them as if it were a command row.
1450
+ *
1451
+ * `KjListItem` already resolves its one true owner through the element
1452
+ * injector ({@link KjListItem.container}: the nearest
1453
+ * `KJ_LIST_NAVIGATOR_CONFIG`, which a nested composite provides at its own
1454
+ * root). Filtering on that pointer gives every container exactly the items
1455
+ * inside its own list scope and nothing from a composite nested within it,
1456
+ * for any nesting — select in palette, select in dialog, menu in palette,
1457
+ * combobox in select.
1458
+ *
1459
+ * Items that resolve no container at all (`container === null` — rendered
1460
+ * outside any root) are kept, so a bare `[kjListItem]` used with a
1461
+ * hand-rolled container still registers.
1462
+ *
1463
+ * @param owner The container running the query — pass `this`.
1464
+ * @param query The raw `contentChildren(KjListItem, { descendants: true })` signal.
1465
+ *
1466
+ * @doc-category Core/Primitives
1467
+ */
1468
+ declare function ownListItems(owner: object, query: Signal<readonly KjListItem<unknown>[]>): Signal<readonly KjListItem<unknown>[]>;
1469
+
1358
1470
  /**
1359
1471
  * Recursively narrowed signal view of a record. The root behaves like any
1360
1472
  * `Signal<T>` (callable, returns the whole value), and each plain-record
@@ -7380,8 +7492,20 @@ declare class KjConfirmPopupCancel {
7380
7492
  * @doc-category Core/Overlay
7381
7493
  */
7382
7494
  declare class KjDropdownMenu implements KjListNavigatorConfig {
7383
- /** All `KjListItem`s under this root. Source of truth for nav + type-ahead. */
7384
- readonly items: _angular_core.Signal<readonly KjListItem<any>[]>;
7495
+ /**
7496
+ * Raw content query. `descendants: true` reaches straight through a
7497
+ * list composite nested inside this menu root, so it is never read
7498
+ * directly — `items` narrows it to this container's own scope.
7499
+ */
7500
+ private readonly allItems;
7501
+ /**
7502
+ * All `KjListItem`s under this root. Source of truth for nav + type-ahead.
7503
+ *
7504
+ * Items owned by a list composite nested inside this one (a select
7505
+ * inside a palette, a menu inside a select) answer to that composite,
7506
+ * not to this one.
7507
+ */
7508
+ readonly items: _angular_core.Signal<readonly KjListItem<unknown>[]>;
7385
7509
  /** Menu items are actions — no selection model. Kept as `Object.is`. */
7386
7510
  readonly compareBy: _angular_core.WritableSignal<KjCompareFn<unknown>>;
7387
7511
  /** Parent menu context (trigger or content), if any. Drives close-on-activate. */
@@ -7393,7 +7517,7 @@ declare class KjDropdownMenu implements KjListNavigatorConfig {
7393
7517
  */
7394
7518
  afterSelect(_value: unknown, _closeRequested: boolean): void;
7395
7519
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<KjDropdownMenu, never>;
7396
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjDropdownMenu, "[kjDropdownMenu]", ["kjDropdownMenu"], {}, {}, ["items"], never, true, never>;
7520
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjDropdownMenu, "[kjDropdownMenu]", ["kjDropdownMenu"], {}, {}, ["allItems"], never, true, never>;
7397
7521
  }
7398
7522
 
7399
7523
  /** Trigger event mode. `'click'` (default) or `'contextmenu'` (right-click / long-press). */
@@ -7476,8 +7600,20 @@ declare class KjDropdownMenuContent implements KjDropdownMenuContext, KjListNavi
7476
7600
  readonly kjSide: _angular_core.InputSignal<KjSide>;
7477
7601
  readonly kjAlign: _angular_core.InputSignal<KjAlign>;
7478
7602
  readonly kjMount: _angular_core.InputSignal<"portal" | "point" | "inline">;
7479
- /** All `KjListItem`s projected into the menu panel. */
7480
- readonly items: _angular_core.Signal<readonly KjListItem<any>[]>;
7603
+ /**
7604
+ * Raw content query. `descendants: true` reaches straight through a
7605
+ * list composite nested inside this menu panel, so it is never read
7606
+ * directly — `items` narrows it to this container's own scope.
7607
+ */
7608
+ private readonly allItems;
7609
+ /**
7610
+ * All `KjListItem`s projected into the menu panel.
7611
+ *
7612
+ * Items owned by a list composite nested inside this one (a select
7613
+ * inside a palette, a menu inside a select) answer to that composite,
7614
+ * not to this one.
7615
+ */
7616
+ readonly items: _angular_core.Signal<readonly KjListItem<unknown>[]>;
7481
7617
  /** Menu items are actions — no selection model. Kept as `Object.is`. */
7482
7618
  readonly compareBy: _angular_core.WritableSignal<KjCompareFn<unknown>>;
7483
7619
  /**
@@ -7506,7 +7642,7 @@ declare class KjDropdownMenuContent implements KjDropdownMenuContext, KjListNavi
7506
7642
  private getNav;
7507
7643
  constructor();
7508
7644
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<KjDropdownMenuContent, never>;
7509
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<KjDropdownMenuContent, "kj-dropdown-menu-content", never, { "kjSide": { "alias": "kjSide"; "required": false; "isSignal": true; }; "kjAlign": { "alias": "kjAlign"; "required": false; "isSignal": true; }; "kjMount": { "alias": "kjMount"; "required": false; "isSignal": true; }; }, {}, ["items"], ["*"], true, [{ directive: typeof KjOverlayPanel; inputs: { "kjFor": "kjFor"; }; outputs: {}; }, { directive: typeof KjListNavigator; inputs: { "kjOrientation": "kjOrientation"; "kjFocusMode": "kjFocusMode"; }; outputs: {}; }]>;
7645
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<KjDropdownMenuContent, "kj-dropdown-menu-content", never, { "kjSide": { "alias": "kjSide"; "required": false; "isSignal": true; }; "kjAlign": { "alias": "kjAlign"; "required": false; "isSignal": true; }; "kjMount": { "alias": "kjMount"; "required": false; "isSignal": true; }; }, {}, ["allItems"], ["*"], true, [{ directive: typeof KjOverlayPanel; inputs: { "kjFor": "kjFor"; }; outputs: {}; }, { directive: typeof KjListNavigator; inputs: { "kjOrientation": "kjOrientation"; "kjFocusMode": "kjFocusMode"; }; outputs: {}; }]>;
7510
7646
  }
7511
7647
 
7512
7648
  /**
@@ -8236,8 +8372,20 @@ declare class KjCommandPalette implements KjListNavigatorConfig {
8236
8372
  readonly kjActivate: _angular_core.OutputEmitterRef<KjCommandActivateEvent>;
8237
8373
  /** Stable listbox id for `aria-controls` wiring. */
8238
8374
  readonly listId: string;
8239
- /** All `KjListItem`s under this palette. Source of truth for nav + filter. */
8240
- readonly items: _angular_core.Signal<readonly KjListItem<any>[]>;
8375
+ /**
8376
+ * Raw content query. `descendants: true` reaches straight through a
8377
+ * list composite nested inside this palette, so it is never read
8378
+ * directly — `items` narrows it to this container's own scope.
8379
+ */
8380
+ private readonly allItems;
8381
+ /**
8382
+ * All `KjListItem`s under this palette. Source of truth for nav + filter.
8383
+ *
8384
+ * Items owned by a list composite nested inside this one (a select
8385
+ * inside a palette, a menu inside a select) answer to that composite,
8386
+ * not to this one.
8387
+ */
8388
+ readonly items: _angular_core.Signal<readonly KjListItem<unknown>[]>;
8241
8389
  private readonly filterSvc;
8242
8390
  /** Visible (filter-passing) items. */
8243
8391
  readonly visibleItems: _angular_core.Signal<readonly KjListItem<unknown>[]>;
@@ -8266,7 +8414,7 @@ declare class KjCommandPalette implements KjListNavigatorConfig {
8266
8414
  */
8267
8415
  afterSelect(value: unknown): void;
8268
8416
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<KjCommandPalette, never>;
8269
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjCommandPalette, "[kjCommandPalette]", ["kjCommandPalette"], { "kjFilter": { "alias": "kjFilter"; "required": false; "isSignal": true; }; "kjShouldFilter": { "alias": "kjShouldFilter"; "required": false; "isSignal": true; }; "kjLoading": { "alias": "kjLoading"; "required": false; "isSignal": true; }; "kjAutoActivateFirst": { "alias": "kjAutoActivateFirst"; "required": false; "isSignal": true; }; "kjDismissOnActivate": { "alias": "kjDismissOnActivate"; "required": false; "isSignal": true; }; "kjValue": { "alias": "kjValue"; "required": false; "isSignal": true; }; "kjQuery": { "alias": "kjQuery"; "required": false; "isSignal": true; }; }, { "kjValue": "kjValueChange"; "kjQuery": "kjQueryChange"; "kjActivate": "kjActivate"; }, ["items"], never, true, never>;
8417
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjCommandPalette, "[kjCommandPalette]", ["kjCommandPalette"], { "kjFilter": { "alias": "kjFilter"; "required": false; "isSignal": true; }; "kjShouldFilter": { "alias": "kjShouldFilter"; "required": false; "isSignal": true; }; "kjLoading": { "alias": "kjLoading"; "required": false; "isSignal": true; }; "kjAutoActivateFirst": { "alias": "kjAutoActivateFirst"; "required": false; "isSignal": true; }; "kjDismissOnActivate": { "alias": "kjDismissOnActivate"; "required": false; "isSignal": true; }; "kjValue": { "alias": "kjValue"; "required": false; "isSignal": true; }; "kjQuery": { "alias": "kjQuery"; "required": false; "isSignal": true; }; }, { "kjValue": "kjValueChange"; "kjQuery": "kjQueryChange"; "kjActivate": "kjActivate"; }, ["allItems"], never, true, never>;
8270
8418
  }
8271
8419
 
8272
8420
  /**
@@ -10814,8 +10962,20 @@ declare class KjSelect implements KjListNavigatorConfig {
10814
10962
  readonly triggerEl: Signal<ElementRef<HTMLElement> | null>;
10815
10963
  /** Move keyboard focus to the trigger. No-op if no trigger registered. */
10816
10964
  focus(): void;
10817
- /** All `KjListItem`s under this select — source for navigator + type-ahead. */
10818
- readonly items: Signal<readonly KjListItem<any>[]>;
10965
+ /**
10966
+ * Raw content query. `descendants: true` reaches straight through a
10967
+ * list composite nested inside this select, so it is never read
10968
+ * directly — `items` narrows it to this container's own scope.
10969
+ */
10970
+ private readonly allItems;
10971
+ /**
10972
+ * All `KjListItem`s under this select — source for navigator + type-ahead.
10973
+ *
10974
+ * Items owned by a list composite nested inside this one (a select
10975
+ * inside a palette, a menu inside a select) answer to that composite,
10976
+ * not to this one.
10977
+ */
10978
+ readonly items: Signal<readonly KjListItem<unknown>[]>;
10819
10979
  /** Implements `KjListNavigatorConfig.mode`. */
10820
10980
  readonly mode: Signal<KjListSelectionMode>;
10821
10981
  /** Implements `KjListNavigatorConfig.compareBy`. */
@@ -10834,7 +10994,7 @@ declare class KjSelect implements KjListNavigatorConfig {
10834
10994
  */
10835
10995
  afterSelect(_: unknown, closeRequested: boolean): void;
10836
10996
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<KjSelect, never>;
10837
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjSelect, "[kjSelect]", ["kjSelect"], { "kjSelectValue": { "alias": "kjSelectValue"; "required": false; "isSignal": true; }; "kjCompareBy": { "alias": "kjCompareBy"; "required": false; "isSignal": true; }; }, { "kjSelectValue": "kjSelectValueChange"; }, ["items"], never, true, never>;
10997
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjSelect, "[kjSelect]", ["kjSelect"], { "kjSelectValue": { "alias": "kjSelectValue"; "required": false; "isSignal": true; }; "kjCompareBy": { "alias": "kjCompareBy"; "required": false; "isSignal": true; }; }, { "kjSelectValue": "kjSelectValueChange"; }, ["allItems"], never, true, never>;
10838
10998
  }
10839
10999
 
10840
11000
  /**
@@ -10966,8 +11126,20 @@ declare class KjCombobox implements KjListNavigatorConfig {
10966
11126
  readonly compareBy: WritableSignal<(a: unknown, b: unknown) => boolean>;
10967
11127
  /** Stable listbox id for `aria-controls` wiring. */
10968
11128
  readonly listboxId: string;
10969
- /** All `KjListItem`s under this combobox — source for nav + filter. */
10970
- readonly items: Signal<readonly KjListItem<any>[]>;
11129
+ /**
11130
+ * Raw content query. `descendants: true` reaches straight through a
11131
+ * list composite nested inside this combobox, so it is never read
11132
+ * directly — `items` narrows it to this container's own scope.
11133
+ */
11134
+ private readonly allItems;
11135
+ /**
11136
+ * All `KjListItem`s under this combobox — source for nav + filter.
11137
+ *
11138
+ * Items owned by a list composite nested inside this one (a select
11139
+ * inside a palette, a menu inside a select) answer to that composite,
11140
+ * not to this one.
11141
+ */
11142
+ readonly items: Signal<readonly KjListItem<unknown>[]>;
10971
11143
  /** Filter-aware visible items, exposed for KjListNavigatorConfig. */
10972
11144
  readonly visibleItems: Signal<readonly KjListItem<unknown>[]>;
10973
11145
  /** Public surface read by children. */
@@ -11012,7 +11184,7 @@ declare class KjCombobox implements KjListNavigatorConfig {
11012
11184
  commitActive(): void;
11013
11185
  setInputElement(el: HTMLElement | null): void;
11014
11186
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<KjCombobox, never>;
11015
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjCombobox, "[kjCombobox]", ["kjCombobox"], { "kjValue": { "alias": "kjValue"; "required": false; "isSignal": true; }; "kjQueryInput": { "alias": "kjQuery"; "required": false; "isSignal": true; }; "kjShouldFilter": { "alias": "kjShouldFilter"; "required": false; "isSignal": true; }; "kjLoading": { "alias": "kjLoading"; "required": false; "isSignal": true; }; "kjFreeText": { "alias": "kjFreeText"; "required": false; "isSignal": true; }; "kjFilter": { "alias": "kjFilter"; "required": false; "isSignal": true; }; "kjAutoActivateFirst": { "alias": "kjAutoActivateFirst"; "required": false; "isSignal": true; }; }, { "kjValue": "kjValueChange"; "kjQueryChange": "kjQueryChange"; "kjCommit": "kjCommit"; }, ["items"], never, true, [{ directive: typeof KjDisabled; inputs: { "kjDisabled": "kjDisabled"; }; outputs: {}; }]>;
11187
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjCombobox, "[kjCombobox]", ["kjCombobox"], { "kjValue": { "alias": "kjValue"; "required": false; "isSignal": true; }; "kjQueryInput": { "alias": "kjQuery"; "required": false; "isSignal": true; }; "kjShouldFilter": { "alias": "kjShouldFilter"; "required": false; "isSignal": true; }; "kjLoading": { "alias": "kjLoading"; "required": false; "isSignal": true; }; "kjFreeText": { "alias": "kjFreeText"; "required": false; "isSignal": true; }; "kjFilter": { "alias": "kjFilter"; "required": false; "isSignal": true; }; "kjAutoActivateFirst": { "alias": "kjAutoActivateFirst"; "required": false; "isSignal": true; }; }, { "kjValue": "kjValueChange"; "kjQueryChange": "kjQueryChange"; "kjCommit": "kjCommit"; }, ["allItems"], never, true, [{ directive: typeof KjDisabled; inputs: { "kjDisabled": "kjDisabled"; }; outputs: {}; }]>;
11016
11188
  }
11017
11189
 
11018
11190
  /**
@@ -11395,8 +11567,20 @@ declare class KjCascadeSelect implements KjListNavigatorConfig, KjCascadeSelectC
11395
11567
  readonly kjLevelChange: _angular_core.OutputEmitterRef<{
11396
11568
  levelIndex: number;
11397
11569
  }>;
11398
- /** All `KjListItem`s under this cascade — source for the navigators. */
11399
- readonly items: Signal<readonly KjListItem<any>[]>;
11570
+ /**
11571
+ * Raw content query. `descendants: true` reaches straight through a
11572
+ * list composite nested inside this cascade, so it is never read
11573
+ * directly — `items` narrows it to this container's own scope.
11574
+ */
11575
+ private readonly allItems;
11576
+ /**
11577
+ * All `KjListItem`s under this cascade — source for the navigators.
11578
+ *
11579
+ * Items owned by a list composite nested inside this one (a select
11580
+ * inside a palette, a menu inside a select) answer to that composite,
11581
+ * not to this one.
11582
+ */
11583
+ readonly items: Signal<readonly KjListItem<unknown>[]>;
11400
11584
  /**
11401
11585
  * Every projected `KjCascadeSelectOption`. Used by {@link findOption}
11402
11586
  * to resolve a `KjListItem` id (typically the navigator's active id)
@@ -11476,7 +11660,7 @@ declare class KjCascadeSelect implements KjListNavigatorConfig, KjCascadeSelectC
11476
11660
  /** Closes the root cascade panel. */
11477
11661
  hide(): void;
11478
11662
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<KjCascadeSelect, never>;
11479
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjCascadeSelect, "[kjCascadeSelect]", ["kjCascadeSelect"], { "kjValue": { "alias": "kjValue"; "required": false; "isSignal": true; }; "kjCascadePath": { "alias": "kjCascadePath"; "required": false; "isSignal": true; }; "kjTreeShape": { "alias": "kjTreeShape"; "required": false; "isSignal": true; }; "kjSubPanelOpenDelayMs": { "alias": "kjSubPanelOpenDelayMs"; "required": false; "isSignal": true; }; "kjSubPanelCloseDelayMs": { "alias": "kjSubPanelCloseDelayMs"; "required": false; "isSignal": true; }; }, { "kjValue": "kjValueChange"; "kjCascadePath": "kjCascadePathChange"; "kjLevelChange": "kjLevelChange"; }, ["items", "_options"], never, true, never>;
11663
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjCascadeSelect, "[kjCascadeSelect]", ["kjCascadeSelect"], { "kjValue": { "alias": "kjValue"; "required": false; "isSignal": true; }; "kjCascadePath": { "alias": "kjCascadePath"; "required": false; "isSignal": true; }; "kjTreeShape": { "alias": "kjTreeShape"; "required": false; "isSignal": true; }; "kjSubPanelOpenDelayMs": { "alias": "kjSubPanelOpenDelayMs"; "required": false; "isSignal": true; }; "kjSubPanelCloseDelayMs": { "alias": "kjSubPanelCloseDelayMs"; "required": false; "isSignal": true; }; }, { "kjValue": "kjValueChange"; "kjCascadePath": "kjCascadePathChange"; "kjLevelChange": "kjLevelChange"; }, ["allItems", "_options"], never, true, never>;
11480
11664
  }
11481
11665
 
11482
11666
  /**
@@ -11665,7 +11849,8 @@ declare class KjTreeSelect implements KjListNavigatorConfig, KjTreeSelectContext
11665
11849
  * until node-level wiring lands (Task 3 of the migration plan); kept
11666
11850
  * here now so the config contract is satisfied today.
11667
11851
  */
11668
- readonly items: Signal<readonly KjListItem<any>[]>;
11852
+ private readonly allItems;
11853
+ readonly items: Signal<readonly KjListItem<unknown>[]>;
11669
11854
  /**
11670
11855
  * Single canonical value signal. Shared with the legacy `kjValue`
11671
11856
  * model — `KjSelectionModel` reads / writes through this signal.
@@ -11721,7 +11906,7 @@ declare class KjTreeSelect implements KjListNavigatorConfig, KjTreeSelectContext
11721
11906
  isExpanded(nodeId: string): boolean;
11722
11907
  isValueExpanded(value: unknown): boolean;
11723
11908
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<KjTreeSelect, never>;
11724
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjTreeSelect, "[kjTreeSelect]", never, { "kjNodes": { "alias": "kjNodes"; "required": false; "isSignal": true; }; "kjSelectionMode": { "alias": "kjSelectionMode"; "required": false; "isSignal": true; }; "kjValue": { "alias": "kjValue"; "required": false; "isSignal": true; }; "kjTreeShape": { "alias": "kjTreeShape"; "required": false; "isSignal": true; }; "kjExpandedKeys": { "alias": "kjExpandedKeys"; "required": false; "isSignal": true; }; }, { "kjValue": "kjValueChange"; "kjExpandedKeys": "kjExpandedKeysChange"; "kjNodeSelect": "kjNodeSelect"; "kjNodeExpand": "kjNodeExpand"; "kjNodeCollapse": "kjNodeCollapse"; }, ["items"], never, true, never>;
11909
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjTreeSelect, "[kjTreeSelect]", never, { "kjNodes": { "alias": "kjNodes"; "required": false; "isSignal": true; }; "kjSelectionMode": { "alias": "kjSelectionMode"; "required": false; "isSignal": true; }; "kjValue": { "alias": "kjValue"; "required": false; "isSignal": true; }; "kjTreeShape": { "alias": "kjTreeShape"; "required": false; "isSignal": true; }; "kjExpandedKeys": { "alias": "kjExpandedKeys"; "required": false; "isSignal": true; }; }, { "kjValue": "kjValueChange"; "kjExpandedKeys": "kjExpandedKeysChange"; "kjNodeSelect": "kjNodeSelect"; "kjNodeExpand": "kjNodeExpand"; "kjNodeCollapse": "kjNodeCollapse"; }, ["allItems"], never, true, never>;
11725
11910
  }
11726
11911
 
11727
11912
  /**
@@ -14842,8 +15027,20 @@ declare class KjMenubar implements KjMenubarContext, KjListNavigatorConfig {
14842
15027
  readonly kjAriaLabel: _angular_core.InputSignal<string | null>;
14843
15028
  /** Emits the bar item's id when its popup opens, or `null` when all are closed. */
14844
15029
  readonly kjOpenChange: _angular_core.OutputEmitterRef<string | null>;
14845
- /** All `KjListItem`s composed by `KjMenubarItem` children. */
14846
- readonly items: _angular_core.Signal<readonly KjListItem<any>[]>;
15030
+ /**
15031
+ * Raw content query. `descendants: true` reaches straight through a
15032
+ * list composite nested inside this menubar, so it is never read
15033
+ * directly — `items` narrows it to this container's own scope.
15034
+ */
15035
+ private readonly allItems;
15036
+ /**
15037
+ * All `KjListItem`s composed by `KjMenubarItem` children.
15038
+ *
15039
+ * Items owned by a list composite nested inside this one (a select
15040
+ * inside a palette, a menu inside a select) answer to that composite,
15041
+ * not to this one.
15042
+ */
15043
+ readonly items: _angular_core.Signal<readonly KjListItem<unknown>[]>;
14847
15044
  /** No selection model on a menubar. Identity compare. */
14848
15045
  readonly compareBy: _angular_core.WritableSignal<KjCompareFn<unknown>>;
14849
15046
  /**
@@ -14894,7 +15091,7 @@ declare class KjMenubar implements KjMenubarContext, KjListNavigatorConfig {
14894
15091
  private _nav;
14895
15092
  constructor();
14896
15093
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<KjMenubar, never>;
14897
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjMenubar, "[kjMenubar]", ["kjMenubar"], { "kjLoop": { "alias": "kjLoop"; "required": false; "isSignal": true; }; "kjAutoDisclose": { "alias": "kjAutoDisclose"; "required": false; "isSignal": true; }; "kjAutoDiscloseDelayMs": { "alias": "kjAutoDiscloseDelayMs"; "required": false; "isSignal": true; }; "kjAriaLabel": { "alias": "kjAriaLabel"; "required": false; "isSignal": true; }; }, { "kjOpenChange": "kjOpenChange"; }, ["items"], never, true, [{ directive: typeof KjListNavigator; inputs: {}; outputs: {}; }]>;
15094
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjMenubar, "[kjMenubar]", ["kjMenubar"], { "kjLoop": { "alias": "kjLoop"; "required": false; "isSignal": true; }; "kjAutoDisclose": { "alias": "kjAutoDisclose"; "required": false; "isSignal": true; }; "kjAutoDiscloseDelayMs": { "alias": "kjAutoDiscloseDelayMs"; "required": false; "isSignal": true; }; "kjAriaLabel": { "alias": "kjAriaLabel"; "required": false; "isSignal": true; }; }, { "kjOpenChange": "kjOpenChange"; }, ["allItems"], never, true, [{ directive: typeof KjListNavigator; inputs: {}; outputs: {}; }]>;
14898
15095
  }
14899
15096
 
14900
15097
  /**
@@ -15949,5 +16146,5 @@ declare const KJ_ALERT_CONFIG: InjectionToken<KjAlertConfig>;
15949
16146
  */
15950
16147
  declare function provideKjAlert(config: Partial<KjAlertConfig>): Provider[];
15951
16148
 
15952
- export { DRAWER_DATA, DRAWER_DRAG, DRAWER_SIDE, EN_CATALOG, FR_CATALOG, KJ_ACCORDION, KJ_ACCORDION_ITEM, KJ_ALERT, KJ_ALERT_CONFIG, KJ_ALERT_DEFAULTS, KJ_AVATAR, KJ_AVATAR_GROUP, KJ_BREADCRUMB, KJ_BREADCRUMB_CONFIG, KJ_BREADCRUMB_DEFAULTS, KJ_BUTTON_CONFIG, KJ_BUTTON_DEFAULTS, KJ_BUTTON_GROUP, KJ_CALENDAR, KJ_CAROUSEL, KJ_CAROUSEL_INDICATORS, KJ_CAROUSEL_SLIDE, KJ_CASCADE_SELECT, KJ_CHAT, KJ_CHAT_BUBBLE_CONFIG, KJ_CHAT_BUBBLE_DEFAULTS, KJ_CHAT_CONFIG, KJ_CHAT_LOG, KJ_COLOR_PICKER, KJ_CONFIRM_POPUP, KJ_DATE_PICKER, KJ_DATE_RANGE_PRESETS, KJ_DROPDOWN_MENU, KJ_ECHARTS, KJ_FIELD, KJ_FILE_UPLOAD, KJ_FILE_UPLOAD_DEFAULT_MESSAGES, KJ_FILE_UPLOAD_ITEM, KJ_FORM, KJ_FORM_FIELD, KJ_ICON_CSS_PATH, KJ_ICON_ENTRIES, KJ_ICON_LOADER, KJ_ICON_REGISTRY, KJ_ICON_RESOLVER, KJ_INPUT_GROUP, KJ_INPUT_MASK_PRESETS, KJ_INPUT_MASK_TOKENS, KJ_INPUT_OTP, KJ_KBD_SIZE_PRESET, KJ_LINK_CONFIG, KJ_LINK_DEFAULTS, KJ_LIST, KJ_LIST_FOCUS_MODE, KJ_LIST_NAVIGATOR_CONFIG, KJ_LIST_ROW, KJ_LOCALE_CONFIG, KJ_MENUBAR, KJ_MONACO_CONFIG, KJ_MONACO_LANGUAGE_LOADERS, KJ_NUMBER_INPUT, KJ_OVERLAY_BACKDROP_STRATEGY, KJ_OVERLAY_BADGE, KJ_OVERLAY_FOCUS_TRAP_STRATEGY, KJ_OVERLAY_LIVE_ANNOUNCER_STRATEGY, KJ_OVERLAY_MOUNT_STRATEGY, KJ_OVERLAY_PANEL_ROLE, KJ_OVERLAY_POSITION_STRATEGY, KJ_OVERLAY_SCROLL_LOCK_STRATEGY, KJ_OVERLAY_TRIGGER_EVENT_STRATEGY, KJ_OVERLAY_Z_BASE, KJ_OVERLAY_Z_BASE_DEFAULT, KJ_OVERLAY_Z_VAR, KJ_PAGINATION, KJ_PAGINATION_CONFIG, KJ_PAGINATION_DEFAULTS, KJ_PASSWORD_INPUT, KJ_PROGRESS_BAR, KJ_PROGRESS_BAR_CONFIG, KJ_PROGRESS_BAR_DEFAULTS, KJ_PROSE_CSS_PATH, KJ_RADIO_GROUP, KJ_RICH_TEXT, KJ_RICH_TEXT_EXTENSIONS, KJ_RICH_TEXT_FEATURES, KJ_RICH_TEXT_NODE, KJ_ROVING_TABINDEX, KJ_RTE_OVERLAY_DATA, KJ_SELECT, KJ_SIZE_FALLBACK, KJ_SIZE_PRESET, KJ_SLIDER, KJ_SPEED_DIAL, KJ_SPINNER_CONFIG, KJ_SPINNER_DEFAULTS, KJ_STEP, KJ_STEPPER, KJ_TABLE, KJ_TABLE_STORAGE, KJ_TABS, KJ_TABS_CONFIG, KJ_TABS_DEFAULTS, KJ_TAG, KJ_TAG_CONFIG, KJ_TAG_DEFAULTS, KJ_TAG_LIST, KJ_TEXTAREA_CONFIG, KJ_TEXTAREA_DEFAULTS, KJ_TIME_PICKER, KJ_TOAST_LIST_STRATEGY, KJ_TOAST_SONNER_STRATEGY, KJ_TOAST_STRATEGY, KJ_TRANSLATION_CATALOGS, KJ_TREE_SELECT, KJ_VARIANT_FALLBACK, KJ_VARIANT_PRESET, KjAccordion, KjAccordionContent, KjAccordionItem, KjAccordionTrigger, KjAlert, KjAlertActions, KjAlertDescription, KjAlertDismiss, KjAlertIcon, KjAlertTitle, KjAriaDescribedBy, KjAriaLabelledBy, KjAvatar, KjAvatarFallback, KjAvatarGroup, KjAvatarImage, KjBackdrop, KjBadge, KjBlockquote, KjBreadcrumb, KjBreadcrumbCurrent, KjBreadcrumbEllipsis, KjBreadcrumbItem, KjBreadcrumbLink, KjBreadcrumbList, KjBreadcrumbSeparator, KjButton, KjButtonGroup, KjCalendar, KjCalendarDay, KjCalendarGrid, KjCalendarHeader, KjCarousel, KjCarouselAutoplay, KjCarouselIndicator, KjCarouselIndicators, KjCarouselNext, KjCarouselPauseToggle, KjCarouselPrevious, KjCarouselSlide, KjCarouselViewport, KjCascadeSelect, KjCascadeSelectOption, KjCascadeSelectPanel, KjCascadeSelectSubPanel, KjCascadeSelectTrigger, KjChart, KjChartTableFallback, KjChat, KjChatAnnouncer, KjChatAvatar, KjChatBubble, KjChatFooter, KjChatHeader, KjChatLog, KjChatStore, KjCheckbox, KjCode, KjColorPicker, KjColorPickerAlphaSlider, KjColorPickerArea, KjColorPickerHueSlider, KjColorPickerInput, KjColorPickerPanel, KjColorPickerTrigger, KjCombobox, KjComboboxInput, KjComboboxListbox, KjComboboxOption, KjCommandEmpty, KjCommandGroup, KjCommandInput, KjCommandItem, KjCommandList, KjCommandPalette, KjCommandPaletteDialog, KjCommandPaletteTrigger, KjCommandSeparator, KjConfirmPopup, KjConfirmPopupAction, KjConfirmPopupCancel, KjConfirmPopupContent, KjConfirmPopupMessage, KjConfirmPopupTrigger, KjDatePicker, KjDatePickerCalendar, KjDatePickerTrigger, KjDateRangePresetOption, KjDateRangePresets, KjDialog$1 as KjDialog, KjDialogRef, KjDialog as KjDialogService, KjDirectionality, KjDisabled, KjDivider, KjDrawer, KjDrawerRef, KjDrawerService, KjDropdownMenu, KjDropdownMenuContent, KjDropdownMenuGroup, KjDropdownMenuItem, KjDropdownMenuLabel, KjDropdownMenuSeparator, KjDropdownMenuTrigger, KjEditor, KjEditorLoader, KjField, KjFieldError, KjFieldGroup, KjFieldHelp, KjFieldLabel, KjFileUpload, KjFileUploadDropzone, KjFileUploadItem, KjFileUploadList, KjFileUploadTrigger, KjFilterableList, KjFocusRing, KjFocusTrap, KjForm, KjFormControl, KjFormError, KjFormErrorSummary, KjFormField, KjFormLabel, KjIconDirective, KjId, KjInput, KjInputGroup, KjInputGroupAddon, KjInputMask, KjInputOtp, KjInputOtpCell, KjKbd, KjLead, KjLink, KjList, KjListGroup, KjListGroupLabel, KjListItem, KjListNavigator, KjListRow, KjListSeparator, KjLiveRegion, KjLocale, KjMenubar, KjMenubarItem, KjMotion, KjMuted, KjNumberInput, KjNumberInputGroup, KjNumberStepper, KjOption, KjOverflowContent, KjOverlayBadge, KjOverlayBadgeContent, KjOverlayBuilder, KjOverlayController, KjOverlayHandle, KjOverlayPanel, KjOverlayStack, KjOverlayTrigger, KjOverlayWrapper, KjPagination, KjPaginationEllipsis, KjPaginationFirst, KjPaginationInfo, KjPaginationItem, KjPaginationLast, KjPaginationNext, KjPaginationPrevious, KjPasswordCapsLockWarning, KjPasswordInput, KjPasswordInputScope, KjPasswordStrength, KjPasswordToggle, KjPopoverArrow, KjPopoverClose, KjPopoverContent, KjPopoverTitle, KjPopoverTrigger, KjProgressBar, KjProgressBarFill, KjRadio, KjRadioGroup, KjReducedMotion, KjRichTextEditor, KjRichTextExtensionDirective, KjRovingTabindex, KjRovingTabindexItemDirective, KjSelect, KjSelectContent, KjSelectTrigger, KjSelectionModel, KjSheet, KjSheetRef, KjSheetService, KjSize, KjSkeleton, KjSkipLink, KjSlider, KjSliderRange, KjSliderThumb, KjSliderTrack, KjSpeedDial, KjSpeedDialAction, KjSpeedDialActions, KjSpeedDialTrigger, KjSpinner, KjStep, KjStepContent, KjStepLabel, KjStepper, KjStepperNext, KjStepperPrevious, KjStepperReset, KjTab, KjTabList, KjTabPanel, KjTable, KjTableCell, KjTableFilterOutlet, KjTableHeader, KjTableKeyboardNav, KjTableRow, KjTabs, KjTag, KjTagList, KjTagRemove, KjTextarea, KjTimePicker, KjTimePickerHours, KjTimePickerMeridiem, KjTimePickerMinutes, KjTimePickerSeconds, KjToast, KjToastClose, KjToastPanel, KjToastRef, KjToastService, KjToastViewport, KjToggle, KjTooltipArrow, KjTooltipContent, KjTooltipGroup, KjTooltipTrigger, KjTranslate, KjTranslateService, KjTreeSelect, KjTreeSelectContent, KjTreeSelectNode, KjTreeSelectToggle, KjTreeSelectTrigger, KjTruncate, KjTypeAhead, KjVariant, KjVisuallyHidden, MaskEngine, SHEET_ARIA_LABEL, SHEET_DATA, SHEET_DETENT, SHEET_DISMISSIBLE, addDays, addMonths, addYears, anchoredTo, applyOverlayZIndex, assertive, bindPresets, blurredBackdrop, bodyPortal, buildMonthMatrix, clearOverlayZIndex, coalesceAnnouncement, compareDay, compileMask, corner, createKjDecoratorNode, createKjImageNode, createOverlayWrapper, cssClip, defaultDateRangePresets, defaultMaskTokens, defaultPasswordScorer, edgeSheet, endOfMonth, firstDayOfWeek, formatDateLong, formatDateShort, formatMonthYear, getIconMode, getOverlayContainer, htmlOverflow, inContainer, inMemoryAdapter, inPlace, inPlaceSibling, inertBased, injectFilterableList, injectKjFilterParams, injectKjIconResolver, injectListItem, injectRichTextNode, injectRteOverlayData, injectSelectionModel, isInRange, isKjFilterModel, isSameDay, isSameMonth, kjColumn, kjColumnGroup, kjContainsFilter, kjDateFilterFn, kjFileMatchesAccept, kjFuzzyFilter, kjHsvToHsl, kjHsvToRgb, kjMultiFilterFn, kjNumberFilterFn, kjParseHex, kjRgbToHex, kjRgbToHsv, kjSetFilterFn, kjStartsWithFilter, kjSubstringFilter, kjTableResource, kjTextFilterFn, localStorageAdapter, matchSlashCommands, nextCascadeId, nextChatMessageId, nextDropdownMenuLabelId, nextPopoverTitleId, noBackdrop, noScrollLock, noTrap, normalizeLanguage, onClick, onContextMenu, onFocus, onFocusOrInput, onHotkey, onHover, parseDate, parseSlash, pointAt, polite, programmatic, provideECharts, provideIconLoader, provideIconResolver, provideIcons, provideKjAlert, provideKjBreadcrumb, provideKjButton, provideKjChat, provideKjChatBubble, provideKjDocumentDirection, provideKjFilterParams, provideKjInputMaskTokens, provideKjLink, provideKjLocale, provideKjPagination, provideKjProgressBar, provideKjRichText, provideKjSpinner, provideKjTableStorage, provideKjTabs, provideKjTag, provideKjTextarea, provideKjToastListStrategy, provideKjToastSonnerStrategy, provideKjToastStrategy, provideKjTranslations, provideMonaco, provideMonacoLanguages, resolveChartPalette, resolveDateRangePreset, sessionStorageAdapter, silent, solidBackdrop, startOfDay, startOfMonth, stripDiacritics, tabCycle, toDeepSignal, viewportCentered, weekdayLongNames, weekdayShortNames };
16149
+ export { DRAWER_DATA, DRAWER_DRAG, DRAWER_SIDE, EN_CATALOG, FR_CATALOG, KJ_ACCORDION, KJ_ACCORDION_ITEM, KJ_ALERT, KJ_ALERT_CONFIG, KJ_ALERT_DEFAULTS, KJ_AVATAR, KJ_AVATAR_GROUP, KJ_BREADCRUMB, KJ_BREADCRUMB_CONFIG, KJ_BREADCRUMB_DEFAULTS, KJ_BUTTON_CONFIG, KJ_BUTTON_DEFAULTS, KJ_BUTTON_GROUP, KJ_CALENDAR, KJ_CAROUSEL, KJ_CAROUSEL_INDICATORS, KJ_CAROUSEL_SLIDE, KJ_CASCADE_SELECT, KJ_CHAT, KJ_CHAT_BUBBLE_CONFIG, KJ_CHAT_BUBBLE_DEFAULTS, KJ_CHAT_CONFIG, KJ_CHAT_LOG, KJ_COLOR_PICKER, KJ_CONFIRM_POPUP, KJ_DATE_PICKER, KJ_DATE_RANGE_PRESETS, KJ_DROPDOWN_MENU, KJ_ECHARTS, KJ_FIELD, KJ_FILE_UPLOAD, KJ_FILE_UPLOAD_DEFAULT_MESSAGES, KJ_FILE_UPLOAD_ITEM, KJ_FORM, KJ_FORM_FIELD, KJ_ICON_CSS_PATH, KJ_ICON_ENTRIES, KJ_ICON_LOADER, KJ_ICON_REGISTRY, KJ_ICON_RESOLVER, KJ_INPUT_GROUP, KJ_INPUT_MASK_PRESETS, KJ_INPUT_MASK_TOKENS, KJ_INPUT_OTP, KJ_KBD_SIZE_PRESET, KJ_LINK_CONFIG, KJ_LINK_DEFAULTS, KJ_LIST, KJ_LIST_FOCUS_MODE, KJ_LIST_NAVIGATOR_CONFIG, KJ_LIST_ROW, KJ_LOCALE_CONFIG, KJ_MENUBAR, KJ_MONACO_CONFIG, KJ_MONACO_LANGUAGE_LOADERS, KJ_NUMBER_INPUT, KJ_OVERLAY_BACKDROP_STRATEGY, KJ_OVERLAY_BADGE, KJ_OVERLAY_FOCUS_TRAP_STRATEGY, KJ_OVERLAY_LIVE_ANNOUNCER_STRATEGY, KJ_OVERLAY_MOUNT_STRATEGY, KJ_OVERLAY_PANEL_ROLE, KJ_OVERLAY_POSITION_STRATEGY, KJ_OVERLAY_SCROLL_LOCK_STRATEGY, KJ_OVERLAY_TRIGGER_EVENT_STRATEGY, KJ_OVERLAY_Z_BASE, KJ_OVERLAY_Z_BASE_DEFAULT, KJ_OVERLAY_Z_VAR, KJ_PAGINATION, KJ_PAGINATION_CONFIG, KJ_PAGINATION_DEFAULTS, KJ_PASSWORD_INPUT, KJ_PROGRESS_BAR, KJ_PROGRESS_BAR_CONFIG, KJ_PROGRESS_BAR_DEFAULTS, KJ_PROSE_CSS_PATH, KJ_RADIO_GROUP, KJ_RICH_TEXT, KJ_RICH_TEXT_EXTENSIONS, KJ_RICH_TEXT_FEATURES, KJ_RICH_TEXT_NODE, KJ_ROVING_TABINDEX, KJ_RTE_OVERLAY_DATA, KJ_SELECT, KJ_SIZE_FALLBACK, KJ_SIZE_PRESET, KJ_SLIDER, KJ_SPEED_DIAL, KJ_SPINNER_CONFIG, KJ_SPINNER_DEFAULTS, KJ_STEP, KJ_STEPPER, KJ_TABLE, KJ_TABLE_STORAGE, KJ_TABS, KJ_TABS_CONFIG, KJ_TABS_DEFAULTS, KJ_TAG, KJ_TAG_CONFIG, KJ_TAG_DEFAULTS, KJ_TAG_LIST, KJ_TEXTAREA_CONFIG, KJ_TEXTAREA_DEFAULTS, KJ_TIME_PICKER, KJ_TOAST_LIST_STRATEGY, KJ_TOAST_SONNER_STRATEGY, KJ_TOAST_STRATEGY, KJ_TRANSLATION_CATALOGS, KJ_TREE_SELECT, KJ_VARIANT_FALLBACK, KJ_VARIANT_PRESET, KjAccordion, KjAccordionContent, KjAccordionItem, KjAccordionTrigger, KjAlert, KjAlertActions, KjAlertDescription, KjAlertDismiss, KjAlertIcon, KjAlertTitle, KjAriaDescribedBy, KjAriaLabelledBy, KjAvatar, KjAvatarFallback, KjAvatarGroup, KjAvatarImage, KjBackdrop, KjBadge, KjBlockquote, KjBreadcrumb, KjBreadcrumbCurrent, KjBreadcrumbEllipsis, KjBreadcrumbItem, KjBreadcrumbLink, KjBreadcrumbList, KjBreadcrumbSeparator, KjButton, KjButtonGroup, KjCalendar, KjCalendarDay, KjCalendarGrid, KjCalendarHeader, KjCarousel, KjCarouselAutoplay, KjCarouselIndicator, KjCarouselIndicators, KjCarouselNext, KjCarouselPauseToggle, KjCarouselPrevious, KjCarouselSlide, KjCarouselViewport, KjCascadeSelect, KjCascadeSelectOption, KjCascadeSelectPanel, KjCascadeSelectSubPanel, KjCascadeSelectTrigger, KjChart, KjChartTableFallback, KjChat, KjChatAnnouncer, KjChatAvatar, KjChatBubble, KjChatFooter, KjChatHeader, KjChatLog, KjChatStore, KjCheckbox, KjCode, KjColorPicker, KjColorPickerAlphaSlider, KjColorPickerArea, KjColorPickerHueSlider, KjColorPickerInput, KjColorPickerPanel, KjColorPickerTrigger, KjCombobox, KjComboboxInput, KjComboboxListbox, KjComboboxOption, KjCommandEmpty, KjCommandGroup, KjCommandInput, KjCommandItem, KjCommandList, KjCommandPalette, KjCommandPaletteDialog, KjCommandPaletteTrigger, KjCommandSeparator, KjConfirmPopup, KjConfirmPopupAction, KjConfirmPopupCancel, KjConfirmPopupContent, KjConfirmPopupMessage, KjConfirmPopupTrigger, KjDatePicker, KjDatePickerCalendar, KjDatePickerTrigger, KjDateRangePresetOption, KjDateRangePresets, KjDialog$1 as KjDialog, KjDialogRef, KjDialog as KjDialogService, KjDirectionality, KjDisabled, KjDismissPress, KjDivider, KjDrawer, KjDrawerRef, KjDrawerService, KjDropdownMenu, KjDropdownMenuContent, KjDropdownMenuGroup, KjDropdownMenuItem, KjDropdownMenuLabel, KjDropdownMenuSeparator, KjDropdownMenuTrigger, KjEditor, KjEditorLoader, KjField, KjFieldError, KjFieldGroup, KjFieldHelp, KjFieldLabel, KjFileUpload, KjFileUploadDropzone, KjFileUploadItem, KjFileUploadList, KjFileUploadTrigger, KjFilterableList, KjFocusRing, KjFocusTrap, KjForm, KjFormControl, KjFormError, KjFormErrorSummary, KjFormField, KjFormLabel, KjIconDirective, KjId, KjInput, KjInputGroup, KjInputGroupAddon, KjInputMask, KjInputOtp, KjInputOtpCell, KjKbd, KjLead, KjLink, KjList, KjListGroup, KjListGroupLabel, KjListItem, KjListNavigator, KjListRow, KjListSeparator, KjLiveRegion, KjLocale, KjMenubar, KjMenubarItem, KjMotion, KjMuted, KjNumberInput, KjNumberInputGroup, KjNumberStepper, KjOption, KjOverflowContent, KjOverlayBadge, KjOverlayBadgeContent, KjOverlayBuilder, KjOverlayController, KjOverlayHandle, KjOverlayPanel, KjOverlayStack, KjOverlayTrigger, KjOverlayWrapper, KjPagination, KjPaginationEllipsis, KjPaginationFirst, KjPaginationInfo, KjPaginationItem, KjPaginationLast, KjPaginationNext, KjPaginationPrevious, KjPasswordCapsLockWarning, KjPasswordInput, KjPasswordInputScope, KjPasswordStrength, KjPasswordToggle, KjPopoverArrow, KjPopoverClose, KjPopoverContent, KjPopoverTitle, KjPopoverTrigger, KjProgressBar, KjProgressBarFill, KjRadio, KjRadioGroup, KjReducedMotion, KjRichTextEditor, KjRichTextExtensionDirective, KjRovingTabindex, KjRovingTabindexItemDirective, KjSelect, KjSelectContent, KjSelectTrigger, KjSelectionModel, KjSheet, KjSheetRef, KjSheetService, KjSize, KjSkeleton, KjSkipLink, KjSlider, KjSliderRange, KjSliderThumb, KjSliderTrack, KjSpeedDial, KjSpeedDialAction, KjSpeedDialActions, KjSpeedDialTrigger, KjSpinner, KjStep, KjStepContent, KjStepLabel, KjStepper, KjStepperNext, KjStepperPrevious, KjStepperReset, KjTab, KjTabList, KjTabPanel, KjTable, KjTableCell, KjTableFilterOutlet, KjTableHeader, KjTableKeyboardNav, KjTableRow, KjTabs, KjTag, KjTagList, KjTagRemove, KjTextarea, KjTimePicker, KjTimePickerHours, KjTimePickerMeridiem, KjTimePickerMinutes, KjTimePickerSeconds, KjToast, KjToastClose, KjToastPanel, KjToastRef, KjToastService, KjToastViewport, KjToggle, KjTooltipArrow, KjTooltipContent, KjTooltipGroup, KjTooltipTrigger, KjTranslate, KjTranslateService, KjTreeSelect, KjTreeSelectContent, KjTreeSelectNode, KjTreeSelectToggle, KjTreeSelectTrigger, KjTruncate, KjTypeAhead, KjVariant, KjVisuallyHidden, MaskEngine, SHEET_ARIA_LABEL, SHEET_DATA, SHEET_DETENT, SHEET_DISMISSIBLE, addDays, addMonths, addYears, anchoredTo, applyOverlayZIndex, assertive, bindPresets, blurredBackdrop, bodyPortal, buildMonthMatrix, clearOverlayZIndex, coalesceAnnouncement, compareDay, compileMask, corner, createKjDecoratorNode, createKjImageNode, createOverlayWrapper, cssClip, defaultDateRangePresets, defaultMaskTokens, defaultPasswordScorer, edgeSheet, endOfMonth, firstDayOfWeek, formatDateLong, formatDateShort, formatMonthYear, getIconMode, getOverlayContainer, htmlOverflow, inContainer, inMemoryAdapter, inPlace, inPlaceSibling, inertBased, injectFilterableList, injectKjFilterParams, injectKjIconResolver, injectListItem, injectRichTextNode, injectRteOverlayData, injectSelectionModel, isInRange, isKjFilterModel, isSameDay, isSameMonth, kjColumn, kjColumnGroup, kjContainsFilter, kjDateFilterFn, kjFileMatchesAccept, kjFuzzyFilter, kjHsvToHsl, kjHsvToRgb, kjMultiFilterFn, kjNumberFilterFn, kjParseHex, kjRgbToHex, kjRgbToHsv, kjSetFilterFn, kjStartsWithFilter, kjSubstringFilter, kjTableResource, kjTextFilterFn, localStorageAdapter, matchSlashCommands, nextCascadeId, nextChatMessageId, nextDropdownMenuLabelId, nextPopoverTitleId, noBackdrop, noScrollLock, noTrap, normalizeLanguage, onClick, onContextMenu, onFocus, onFocusOrInput, onHotkey, onHover, ownListItems, parseDate, parseSlash, pointAt, polite, programmatic, provideECharts, provideIconLoader, provideIconResolver, provideIcons, provideKjAlert, provideKjBreadcrumb, provideKjButton, provideKjChat, provideKjChatBubble, provideKjDocumentDirection, provideKjFilterParams, provideKjInputMaskTokens, provideKjLink, provideKjLocale, provideKjPagination, provideKjProgressBar, provideKjRichText, provideKjSpinner, provideKjTableStorage, provideKjTabs, provideKjTag, provideKjTextarea, provideKjToastListStrategy, provideKjToastSonnerStrategy, provideKjToastStrategy, provideKjTranslations, provideMonaco, provideMonacoLanguages, resolveChartPalette, resolveDateRangePreset, sessionStorageAdapter, silent, solidBackdrop, startOfDay, startOfMonth, stripDiacritics, tabCycle, toDeepSignal, viewportCentered, weekdayLongNames, weekdayShortNames };
15953
16150
  export type { CompiledMask, DeepSignal, IconLoader, IconMode, IconResolver, InvalidControlInfo, KjAccordionContext, KjAccordionItemContext, KjAccordionType, KjActiveOverlay, KjAggregation, KjAggregationFn, KjAggregationKind, KjAlertConfig, KjAlertContext, KjAlertMode, KjAlign, KjAnchoredToOpts, KjAnchoredToStrategy, KjAriaHasPopup, KjAsyncSubmitHandler, KjAttachOptions, KjAvatarGroupAriaLabelFormat, KjAvatarGroupContext, KjAvatarGroupDirection, KjAvatarShape, KjBackdropStrategy, KjBadgeVariant, KjBindablePresetConfig, KjBlockType, KjBreadcrumbConfig, KjBreadcrumbContext, KjBreadcrumbItemContext, KjButtonConfig, KjButtonGroupContext, KjButtonGroupOrientation, KjCalendarContext, KjCarouselAlign, KjCarouselContext, KjCarouselControlPattern, KjCarouselIndicatorsContext, KjCarouselOrientation, KjCarouselSlideContext, KjCascadeNode, KjCascadeSelectContext, KjChartEvent, KjChatBubbleConfig, KjChatCitation, KjChatConfig, KjChatContext, KjChatItemInput, KjChatLogContext, KjChatMessageData, KjChatMessageRole, KjChatRenderer, KjChatRole, KjChatSide, KjChatState, KjChatStatus, KjChatToolCall, KjChatToolStatus, KjCloseReason, KjCoalesceOptions, KjCoalesceResult, KjColorFormat, KjColorPickerContext, KjColorPreset, KjColorValue, KjColumnApi, KjColumnDef, KjColumnGroupingApi, KjColumnMeta, KjColumnOrderApi, KjColumnPin, KjColumnPinningApi, KjColumnSizingApi, KjColumnType, KjColumnVisibilityApi, KjCommandActivateEvent, KjCommandFilter, KjCompareFn, KjConfirmPopupContext, KjConfirmPopupDefaultFocus, KjContainerTarget, KjCornerPosition, KjDateFilterModel, KjDateFilterType, KjDatePickerContext, KjDateRange, KjDateRangePreset, KjDateRangePresetsContext, KjDecoratorMountAdapter, KjDecoratorNodeApi, KjDecoratorNodeConfig, KjDecoratorRegistration, KjDensityApi, KjDialogOpenOptions, KjDirection, KjDividerAlign, KjDividerOrientation, KjDrawerOpenOptions, KjDrawerSide, KjDropdownMenuCloseReason, KjDropdownMenuContext, KjDropdownMenuMount, KjDropdownMenuTriggerKind, KjEChartsCore, KjEChartsLoader, KjEditorInstance, KjEditorLanguage, KjEditorLineNumbers, KjEditorOptions, KjEditorRef, KjEditorWordWrap, KjExpansionApi, KjFieldContext, KjFileRejectReason, KjFileRejection, KjFileStatus, KjFileUploadAggregateStatus, KjFileUploadContext, KjFileUploadItemContext, KjFileUploadValidationMessages, KjFilterApi, KjFilterFn, KjFilterModel, KjFilterParams, KjFilterRenderer, KjFilterUiRef, KjFocusTrapStrategy, KjFormContext, KjFormControlRegistration, KjFormFieldContext, KjGlobalFilterApi, KjGridApi, KjGridFilterModel, KjGroupingApi, KjHourCycle, KjHsl, KjHsv, KjIconColor, KjIconSize, KjImageInsert, KjImageNodeApi, KjInputGroupContext, KjInputOtpContext, KjLinkConfig, KjListAs, KjListContext, KjListFocusMode, KjListNavigatorConfig, KjListOrientation, KjListRowContext, KjListSelectionMode, KjLiveAnnouncerStrategy, KjLivePoliteness, KjLocaleConfig, KjMenubarContext, KjMenubarItemContext, KjMonaco, KjMonacoConfig, KjMonacoLanguageLoader, KjMonacoLoaderFn, KjMotionState, KjMountStrategy, KjMountedComponent, KjMultiConditionFilterModel, KjNumberFilterModel, KjNumberFilterType, KjNumberInputContext, KjOnClickOpts, KjOnContextMenuOpts, KjOnContextMenuStrategy, KjOnHoverOpts, KjOnHoverStrategy, KjOverflowContext, KjOverlayBadgeContext, KjOverlayBadgePosition, KjOverlayBuilderConfig, KjOverlayContext, KjLivePoliteness$1 as KjOverlayLivePoliteness, KjOverlayRegistration, KjOverlayStackHandle, KjOverlayState, KjOverlayStrategies, KjOverlayTriggerLike, KjPageToken, KjPaginationApi, KjPaginationConfig, KjPaginationContext, KjPanelRole, KjPasswordAutocomplete, KjPasswordInputContext, KjPasswordScore, KjPasswordScoreLabel, KjPlacement, KjPointAtOpts, KjPopoverTriggerKind, KjPositionStrategy, KjProgressBarConfig, KjProgressBarContext, KjRadioContext, KjResourceResult, KjRgb, KjRichTextContext, KjRichTextExtension, KjRichTextFeature, KjRichTextHost, KjRichTextPlugin, KjRichTextState, KjRichTextValue, KjRowsApi, KjRteOverlay, KjRteShortcut, KjRteToolbarGroup, KjRteToolbarItem, KjRteToolbarKind, KjScrollLockStrategy, KjSelectionApi, KjSetFilterModel, KjSheetDetent, KjSheetOpenOptions, KjSheetSide, KjSide, KjSizePreset, KjSkeletonAnimation, KjSkeletonShape, KjSlashCommand, KjSlashParse, KjSliderContext, KjSliderSource, KjSliderThumbHandle, KjSolidBackdropOpts, KjSolidBackdropStrategy, KjSortApi, KjSortDirection, KjSpeedDialContext, KjSpeedDialDirection, KjSpinnerAnimation, KjSpinnerConfig, KjStepContext, KjStepperContext, KjStorageAdapter, KjStrategy, KjTabCycleOpts, KjTabCycleStrategy, KjTableState, KjTabsActivationMode, KjTabsConfig, KjTabsContext, KjTabsOrientation, KjTagConfig, KjTagContext, KjTagListContext, KjTagListRole, KjTextFilterModel, KjTextFilterType, KjTextFormat, KjTextareaAutoresize, KjTextareaConfig, KjTextareaResize, KjTimePickerContext, KjToastContext, KjToastItem, KjToastOptions, KjToastPositionX, KjToastPositionY, KjToastRenderable, KjToastStrategy, KjToastSugarVariant, KjToastTemplateContext, KjToastVariant, KjTranslationCatalog, KjTranslationCatalogs, KjTranslationKey, KjTranslationParams, KjTreeNode, KjTreeSelectContext, KjTreeShape, KjTriggerEventStrategy, KjUploadableFile, KjVariantPreset, MaskEngineCallbacks, MaskEngineOptions, Slot, TimeParts };