@kouji-ui/core 0.6.3 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/kouji-ui-core.mjs +358 -38
- package/fesm2022/kouji-ui-core.mjs.map +1 -1
- package/package.json +1 -1
- package/types/kouji-ui-core.d.ts +208 -9
package/package.json
CHANGED
package/types/kouji-ui-core.d.ts
CHANGED
|
@@ -607,12 +607,27 @@ declare function assertive(): KjLiveAnnouncerStrategy;
|
|
|
607
607
|
|
|
608
608
|
declare function silent(): KjLiveAnnouncerStrategy;
|
|
609
609
|
|
|
610
|
-
|
|
610
|
+
interface KjOnClickOpts {
|
|
611
|
+
/**
|
|
612
|
+
* Only ever open on click, never close. Used when click is a secondary
|
|
613
|
+
* way in (touch devices, where hover does not exist) next to a hover
|
|
614
|
+
* strategy that already owns the closing.
|
|
615
|
+
*/
|
|
616
|
+
openOnly?: boolean;
|
|
617
|
+
}
|
|
618
|
+
declare function onClick(opts?: KjOnClickOpts): KjTriggerEventStrategy;
|
|
611
619
|
|
|
612
620
|
type Reactive$1<T> = T | Signal<T> | (() => T);
|
|
613
621
|
interface KjOnHoverOpts {
|
|
614
622
|
openDelay?: Reactive$1<number>;
|
|
615
623
|
closeDelay?: Reactive$1<number>;
|
|
624
|
+
/**
|
|
625
|
+
* Keep the panel open while the pointer rests on it. Required for panels
|
|
626
|
+
* that hold controls (a hover popover with actions): the pointer travels
|
|
627
|
+
* from the trigger to the panel, which would otherwise schedule a close.
|
|
628
|
+
* Tooltips leave this off — their content is never interactive.
|
|
629
|
+
*/
|
|
630
|
+
interactive?: Reactive$1<boolean>;
|
|
616
631
|
}
|
|
617
632
|
type KjOnHoverStrategy = KjTriggerEventStrategy & {
|
|
618
633
|
configure(opts: Partial<KjOnHoverOpts>): void;
|
|
@@ -1762,6 +1777,8 @@ declare class KjMotion {
|
|
|
1762
1777
|
declare const EN_CATALOG: {
|
|
1763
1778
|
readonly 'toast.close': "Close notification";
|
|
1764
1779
|
readonly 'dialog.close': "Close dialog";
|
|
1780
|
+
readonly 'overflow.more': "+{count}";
|
|
1781
|
+
readonly 'overflow.show': "Show {count} more";
|
|
1765
1782
|
readonly 'pagination.nav': "Pagination";
|
|
1766
1783
|
readonly 'pagination.previous': "Previous page";
|
|
1767
1784
|
readonly 'pagination.next': "Next page";
|
|
@@ -1928,7 +1945,7 @@ declare class KjTranslate {
|
|
|
1928
1945
|
private readonly svc;
|
|
1929
1946
|
private readonly el;
|
|
1930
1947
|
/** Translation key to render. Compile-checked against the catalog. */
|
|
1931
|
-
readonly kjTranslate: _angular_core.InputSignal<"toast.close" | "dialog.close" | "pagination.nav" | "pagination.previous" | "pagination.next" | "pagination.first" | "pagination.last" | "pagination.more" | "pagination.page" | "pagination.pageOf" | "a11y.pageChanged" | "a11y.selected" | "a11y.sortApplied">;
|
|
1948
|
+
readonly kjTranslate: _angular_core.InputSignal<"toast.close" | "dialog.close" | "overflow.more" | "overflow.show" | "pagination.nav" | "pagination.previous" | "pagination.next" | "pagination.first" | "pagination.last" | "pagination.more" | "pagination.page" | "pagination.pageOf" | "a11y.pageChanged" | "a11y.selected" | "a11y.sortApplied">;
|
|
1932
1949
|
/** Values for `{name}` placeholders in the resolved string. */
|
|
1933
1950
|
readonly kjTranslateParams: _angular_core.InputSignal<KjTranslationParams | undefined>;
|
|
1934
1951
|
/**
|
|
@@ -5759,6 +5776,15 @@ interface KjChatMessageData {
|
|
|
5759
5776
|
readonly id: string;
|
|
5760
5777
|
/** Conversation role. */
|
|
5761
5778
|
readonly role: KjChatMessageRole;
|
|
5779
|
+
/**
|
|
5780
|
+
* Which registered renderer draws this message. Absent — the usual case —
|
|
5781
|
+
* means the built-in message renderer. Set it to a key registered through
|
|
5782
|
+
* `provideKjChat` to draw a turn the kit knows nothing about (a chart, a
|
|
5783
|
+
* form, a diff), with `data` carrying whatever that renderer needs.
|
|
5784
|
+
*/
|
|
5785
|
+
readonly type?: string;
|
|
5786
|
+
/** Arbitrary payload for a custom `type`. Opaque to the kit. */
|
|
5787
|
+
readonly data?: unknown;
|
|
5762
5788
|
/** Message text (may be partial while streaming). */
|
|
5763
5789
|
readonly content: string;
|
|
5764
5790
|
/** True while this (assistant) message is being streamed in. */
|
|
@@ -5815,6 +5841,21 @@ declare class KjChatStore {
|
|
|
5815
5841
|
readonly error: _angular_core.Signal<string | null>;
|
|
5816
5842
|
/** Append a user message; returns its id. */
|
|
5817
5843
|
sendUser(content: string): string;
|
|
5844
|
+
/**
|
|
5845
|
+
* Append an item drawn by a registered renderer rather than the built-in
|
|
5846
|
+
* message body — a chart, a diff, a form. `type` must match a key passed to
|
|
5847
|
+
* `provideKjChat`; `data` is handed to that component untouched.
|
|
5848
|
+
*
|
|
5849
|
+
* `content` is the item's plain-text equivalent. It is what the live region
|
|
5850
|
+
* announces and what a fallback renderer shows, so give it something a
|
|
5851
|
+
* screen-reader user can act on rather than leaving it empty.
|
|
5852
|
+
*/
|
|
5853
|
+
addItem(options: {
|
|
5854
|
+
type: string;
|
|
5855
|
+
data?: unknown;
|
|
5856
|
+
role?: KjChatMessageRole;
|
|
5857
|
+
content?: string;
|
|
5858
|
+
}): string;
|
|
5818
5859
|
/** Append a system message; returns its id. */
|
|
5819
5860
|
addSystem(content: string): string;
|
|
5820
5861
|
/**
|
|
@@ -5856,6 +5897,63 @@ declare class KjChatStore {
|
|
|
5856
5897
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<KjChatStore>;
|
|
5857
5898
|
}
|
|
5858
5899
|
|
|
5900
|
+
/**
|
|
5901
|
+
* What every thread-item renderer receives. A renderer is an ordinary
|
|
5902
|
+
* standalone component with an `item` input of this shape — nothing in the
|
|
5903
|
+
* kit is special-cased, so a consumer's component and a built-in one are
|
|
5904
|
+
* interchangeable.
|
|
5905
|
+
*/
|
|
5906
|
+
interface KjChatItemInput<TData = unknown> {
|
|
5907
|
+
/** Stable id, used as the list key. */
|
|
5908
|
+
readonly id: string;
|
|
5909
|
+
/**
|
|
5910
|
+
* Which renderer draws this item. Absent means "the default for this
|
|
5911
|
+
* role" — a plain message.
|
|
5912
|
+
*/
|
|
5913
|
+
readonly type?: string;
|
|
5914
|
+
/** Conversation role, for side/label semantics. */
|
|
5915
|
+
readonly role: string;
|
|
5916
|
+
/** Whatever the renderer needs. Opaque to the kit. */
|
|
5917
|
+
readonly data: TData;
|
|
5918
|
+
}
|
|
5919
|
+
/** A component that can draw a thread item. */
|
|
5920
|
+
type KjChatRenderer = Type<unknown>;
|
|
5921
|
+
/** Registry of `type` → component, plus what to draw for an unknown type. */
|
|
5922
|
+
interface KjChatConfig {
|
|
5923
|
+
/**
|
|
5924
|
+
* Renderers by item `type`. Merged OVER the built-in defaults, so naming a
|
|
5925
|
+
* built-in type replaces it and any other name adds one.
|
|
5926
|
+
*/
|
|
5927
|
+
readonly renderers: Readonly<Record<string, KjChatRenderer>>;
|
|
5928
|
+
/**
|
|
5929
|
+
* Drawn when no renderer matches an item's `type`. Omitted, the thread
|
|
5930
|
+
* falls back to its plain message renderer, so an unknown type degrades to
|
|
5931
|
+
* readable text rather than a hole in the transcript.
|
|
5932
|
+
*/
|
|
5933
|
+
readonly fallback?: KjChatRenderer;
|
|
5934
|
+
}
|
|
5935
|
+
/**
|
|
5936
|
+
* The resolved chat configuration. Read by the thread; written by
|
|
5937
|
+
* {@link provideKjChat}. Defaults to an empty registry so the thread works
|
|
5938
|
+
* with no provider at all.
|
|
5939
|
+
*/
|
|
5940
|
+
declare const KJ_CHAT_CONFIG: InjectionToken<KjChatConfig>;
|
|
5941
|
+
/**
|
|
5942
|
+
* Register thread-item renderers.
|
|
5943
|
+
*
|
|
5944
|
+
* ```ts
|
|
5945
|
+
* provideKjChat({
|
|
5946
|
+
* renderers: { chart: ChartBubble, markdown: MyMarkdown },
|
|
5947
|
+
* fallback: UnknownItem,
|
|
5948
|
+
* })
|
|
5949
|
+
* ```
|
|
5950
|
+
*
|
|
5951
|
+
* Provide it at the application root for app-wide renderers, or on a route /
|
|
5952
|
+
* component for a chat that draws its own item kinds — the nearest injector
|
|
5953
|
+
* wins, exactly like any other Angular provider.
|
|
5954
|
+
*/
|
|
5955
|
+
declare function provideKjChat(config: KjChatConfig): Provider;
|
|
5956
|
+
|
|
5859
5957
|
/** Options for {@link coalesceAnnouncement}. */
|
|
5860
5958
|
interface KjCoalesceOptions {
|
|
5861
5959
|
/**
|
|
@@ -6198,6 +6296,14 @@ interface KjTagListContext {
|
|
|
6198
6296
|
readonly disabled: Signal<boolean>;
|
|
6199
6297
|
/** Whether the listbox container allows multi-selection. */
|
|
6200
6298
|
readonly multiple: Signal<boolean>;
|
|
6299
|
+
/** Projected chip count. */
|
|
6300
|
+
readonly total: Signal<number>;
|
|
6301
|
+
/** Chips rendered visibly under `kjMax` (all of them when uncapped). */
|
|
6302
|
+
readonly visibleCount: Signal<number>;
|
|
6303
|
+
/** Chips collapsed by `kjMax`; `0` when nothing overflows. */
|
|
6304
|
+
readonly overflowCount: Signal<number>;
|
|
6305
|
+
/** Labels of the collapsed chips, in order. */
|
|
6306
|
+
readonly hiddenLabels: Signal<readonly string[]>;
|
|
6201
6307
|
}
|
|
6202
6308
|
/** Injection token providing the parent `KjTag` to projected children. */
|
|
6203
6309
|
declare const KJ_TAG: InjectionToken<KjTagContext>;
|
|
@@ -6324,9 +6430,11 @@ declare class KjTagRemove {
|
|
|
6324
6430
|
|
|
6325
6431
|
/**
|
|
6326
6432
|
* Optional container that coordinates a group of `KjTag` chips. Provides
|
|
6327
|
-
* the chip-group keyboard story (roving tabindex via `KjRovingTabindex`)
|
|
6328
|
-
*
|
|
6329
|
-
*
|
|
6433
|
+
* the chip-group keyboard story (roving tabindex via `KjRovingTabindex`),
|
|
6434
|
+
* the ARIA wiring for the `listbox` / `grid` / `group` shapes, and — with
|
|
6435
|
+
* `kjMax` — collapses the chips past the cap: they get `[hidden]` and
|
|
6436
|
+
* `data-overflow`, and `overflowCount` / `hiddenLabels` let a wrapper render
|
|
6437
|
+
* a "+N" chip that reveals them.
|
|
6330
6438
|
*
|
|
6331
6439
|
* Standalone tags work fine without this container — the container is the
|
|
6332
6440
|
* opt-in surface that turns a pile of independent chips into a single
|
|
@@ -6344,6 +6452,7 @@ declare class KjTagRemove {
|
|
|
6344
6452
|
* @doc-name tag
|
|
6345
6453
|
*/
|
|
6346
6454
|
declare class KjTagList implements KjTagListContext {
|
|
6455
|
+
private readonly platformId;
|
|
6347
6456
|
/** Container ARIA role — drives chip role selection (option / row / none). */
|
|
6348
6457
|
readonly kjTagListRole: _angular_core.InputSignal<KjTagListRole>;
|
|
6349
6458
|
/** Roving tabindex axis. Forwarded to `KjRovingTabindex`. */
|
|
@@ -6352,18 +6461,41 @@ declare class KjTagList implements KjTagListContext {
|
|
|
6352
6461
|
readonly kjTagListMultiple: _angular_core.InputSignal<boolean>;
|
|
6353
6462
|
/** Cascading disabled flag. Each chip's effective disabled OR-merges this. */
|
|
6354
6463
|
readonly kjTagListDisabled: _angular_core.InputSignal<boolean>;
|
|
6464
|
+
/**
|
|
6465
|
+
* Maximum number of chips shown before the rest collapse. Chips past this
|
|
6466
|
+
* index are hidden (`[hidden]` + `data-overflow`) and counted in
|
|
6467
|
+
* `overflowCount`. `0` disables the cap (show everything).
|
|
6468
|
+
* @default 0
|
|
6469
|
+
*/
|
|
6470
|
+
readonly kjMax: _angular_core.InputSignal<number>;
|
|
6355
6471
|
/** Read-only role view used by `KjTag` to compute its own role. */
|
|
6356
6472
|
readonly role: Signal<KjTagListRole>;
|
|
6357
6473
|
/** Read-only disabled view used by `KjTag` to merge into its effective disabled. */
|
|
6358
6474
|
readonly disabled: Signal<boolean>;
|
|
6359
6475
|
/** Read-only multi-selectable view (listbox-only meaning). */
|
|
6360
6476
|
readonly multiple: Signal<boolean>;
|
|
6477
|
+
/**
|
|
6478
|
+
* Every projected `KjTag` (including those composed via `hostDirectives`
|
|
6479
|
+
* on a wrapper). `descendants: true` so a chip wrapped in an anchor or a
|
|
6480
|
+
* form control still counts.
|
|
6481
|
+
*/
|
|
6482
|
+
private readonly tags;
|
|
6483
|
+
private readonly tagHosts;
|
|
6484
|
+
/** Projected chip count. */
|
|
6485
|
+
readonly total: Signal<number>;
|
|
6486
|
+
/** Number of chips rendered visibly (the rest are `[hidden]`). */
|
|
6487
|
+
readonly visibleCount: Signal<number>;
|
|
6488
|
+
/** Number of chips collapsed by the cap. `0` when nothing overflows. */
|
|
6489
|
+
readonly overflowCount: Signal<number>;
|
|
6490
|
+
/** Labels of the collapsed chips, in order — the wrapper's default panel content. */
|
|
6491
|
+
readonly hiddenLabels: Signal<readonly string[]>;
|
|
6361
6492
|
/** Only emit `aria-orientation` when the container has a real role. */
|
|
6362
6493
|
protected readonly ariaOrientation: Signal<string | null>;
|
|
6363
6494
|
/** `aria-multiselectable` only set in listbox mode. */
|
|
6364
6495
|
protected readonly ariaMultiSelectable: Signal<string | null>;
|
|
6496
|
+
constructor();
|
|
6365
6497
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KjTagList, never>;
|
|
6366
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjTagList, "[kjTagList]", never, { "kjTagListRole": { "alias": "kjTagListRole"; "required": false; "isSignal": true; }; "kjTagListOrientation": { "alias": "kjTagListOrientation"; "required": false; "isSignal": true; }; "kjTagListMultiple": { "alias": "kjTagListMultiple"; "required": false; "isSignal": true; }; "kjTagListDisabled": { "alias": "kjTagListDisabled"; "required": false; "isSignal": true; }; }, {},
|
|
6498
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjTagList, "[kjTagList]", never, { "kjTagListRole": { "alias": "kjTagListRole"; "required": false; "isSignal": true; }; "kjTagListOrientation": { "alias": "kjTagListOrientation"; "required": false; "isSignal": true; }; "kjTagListMultiple": { "alias": "kjTagListMultiple"; "required": false; "isSignal": true; }; "kjTagListDisabled": { "alias": "kjTagListDisabled"; "required": false; "isSignal": true; }; "kjMax": { "alias": "kjMax"; "required": false; "isSignal": true; }; }, {}, ["tags", "tagHosts"], never, true, [{ directive: typeof KjRovingTabindex; inputs: { "kjRovingOrientation": "kjTagListOrientation"; }; outputs: {}; }]>;
|
|
6367
6499
|
}
|
|
6368
6500
|
|
|
6369
6501
|
/** Preset configuration consumed by `KjTag` via `bindPresets`. */
|
|
@@ -6395,6 +6527,51 @@ declare const KJ_TAG_CONFIG: InjectionToken<KjTagConfig>;
|
|
|
6395
6527
|
*/
|
|
6396
6528
|
declare function provideKjTag(config: Partial<KjTagConfig>): Provider[];
|
|
6397
6529
|
|
|
6530
|
+
/**
|
|
6531
|
+
* Template context handed to a `kjOverflowContent` template by the group
|
|
6532
|
+
* that collapsed its extra items behind a "+N" chip.
|
|
6533
|
+
*/
|
|
6534
|
+
interface KjOverflowContext {
|
|
6535
|
+
/** Number of collapsed items. */
|
|
6536
|
+
readonly $implicit: number;
|
|
6537
|
+
/** Index of the first collapsed item in the consumer's own collection (`= max`). */
|
|
6538
|
+
readonly start: number;
|
|
6539
|
+
/** Exclusive end index (`= total`). `items.slice(start, end)` yields the collapsed ones. */
|
|
6540
|
+
readonly end: number;
|
|
6541
|
+
/** Accessible labels of the collapsed items, in order (tag text, avatar alt…). */
|
|
6542
|
+
readonly labels: readonly string[];
|
|
6543
|
+
}
|
|
6544
|
+
/**
|
|
6545
|
+
* Marks the template a collapsing group (`kj-tag-list`, `kj-avatar-group`)
|
|
6546
|
+
* renders inside the "+N" chip's panel instead of its default list of labels.
|
|
6547
|
+
* The context carries the collapsed range so the consumer slices its own
|
|
6548
|
+
* data and renders the hidden items with any layout or actions it needs.
|
|
6549
|
+
*
|
|
6550
|
+
* @example
|
|
6551
|
+
* ```html
|
|
6552
|
+
* <kj-tag-list [kjMax]="3">
|
|
6553
|
+
* @for (u of users(); track u.id) { <kj-tag>{{ u.name }}</kj-tag> }
|
|
6554
|
+
* <ng-template kjOverflowContent let-count let-start="start">
|
|
6555
|
+
* @for (u of users().slice(start); track u.id) {
|
|
6556
|
+
* <button (click)="remove(u)">Remove {{ u.name }}</button>
|
|
6557
|
+
* }
|
|
6558
|
+
* </ng-template>
|
|
6559
|
+
* </kj-tag-list>
|
|
6560
|
+
* ```
|
|
6561
|
+
* @doc-category Core/Data display
|
|
6562
|
+
* @doc
|
|
6563
|
+
* @doc-name overflow
|
|
6564
|
+
* @doc-is-main
|
|
6565
|
+
* @doc-description Provides the template a tag list or avatar group shows for the items collapsed behind its "+N" chip.
|
|
6566
|
+
*/
|
|
6567
|
+
declare class KjOverflowContent {
|
|
6568
|
+
readonly template: TemplateRef<KjOverflowContext>;
|
|
6569
|
+
/** Type guard for template type-checking (`*ngTemplateOutlet` context inference). */
|
|
6570
|
+
static ngTemplateContextGuard(_dir: KjOverflowContent, _ctx: unknown): _ctx is KjOverflowContext;
|
|
6571
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KjOverflowContent, never>;
|
|
6572
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjOverflowContent, "ng-template[kjOverflowContent]", never, {}, {}, never, never, true, never>;
|
|
6573
|
+
}
|
|
6574
|
+
|
|
6398
6575
|
/**
|
|
6399
6576
|
* Dialog body component. Composes `KjOverlayPanel` as a host directive so
|
|
6400
6577
|
* the overlay primitives wire role/state/aria/focus management.
|
|
@@ -6771,15 +6948,37 @@ declare class KjTooltipGroup {
|
|
|
6771
6948
|
}
|
|
6772
6949
|
|
|
6773
6950
|
type KjPopoverTriggerKind = 'click' | 'hover';
|
|
6951
|
+
/**
|
|
6952
|
+
* Opens the sibling `<kj-popover-content [kjFor]>` panel. `kjTrigger="click"`
|
|
6953
|
+
* (default) toggles on click; `kjTrigger="hover"` opens on hover intent and
|
|
6954
|
+
* keeps the panel open while the pointer rests on it — and, because a hover
|
|
6955
|
+
* popover may hold controls, it also opens on keyboard focus and on click
|
|
6956
|
+
* (touch), so every input modality reaches the panel.
|
|
6957
|
+
*
|
|
6958
|
+
* @example
|
|
6959
|
+
* ```html
|
|
6960
|
+
* <button kjPopoverTrigger kjTrigger="hover" #t="kjPopoverTrigger">+3</button>
|
|
6961
|
+
* <kj-popover-content [kjFor]="t">…</kj-popover-content>
|
|
6962
|
+
* ```
|
|
6963
|
+
* @doc-category Core/Overlay
|
|
6964
|
+
* @doc
|
|
6965
|
+
* @doc-name popover
|
|
6966
|
+
*/
|
|
6774
6967
|
declare class KjPopoverTrigger {
|
|
6968
|
+
/** How the panel opens: `click` toggles; `hover` opens on hover intent, focus, or tap. */
|
|
6775
6969
|
readonly kjTrigger: _angular_core.InputSignal<KjPopoverTriggerKind>;
|
|
6776
6970
|
readonly kjDisabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
6971
|
+
/** Hover intent before opening, in ms (`hover` kind only). Default 150. */
|
|
6972
|
+
readonly kjOpenDelay: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
6973
|
+
/** Grace period after the pointer leaves the trigger or the panel, in ms (`hover` kind only). Default 150. */
|
|
6974
|
+
readonly kjCloseDelay: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
6777
6975
|
private readonly _overlayTrigger;
|
|
6778
6976
|
/** The controller of the composed `KjOverlayTrigger`, exposed for sibling `[kjFor]` panels. */
|
|
6779
6977
|
get controller(): KjOverlayController;
|
|
6780
6978
|
attachPanel(panel: KjOverlayPanel): void;
|
|
6979
|
+
constructor();
|
|
6781
6980
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KjPopoverTrigger, never>;
|
|
6782
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjPopoverTrigger, "[kjPopoverTrigger]", ["kjPopoverTrigger"], { "kjTrigger": { "alias": "kjTrigger"; "required": false; "isSignal": true; }; "kjDisabled": { "alias": "kjDisabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof KjOverlayTrigger; inputs: { "kjOpen": "kjOpen"; }; outputs: {}; }]>;
|
|
6981
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<KjPopoverTrigger, "[kjPopoverTrigger]", ["kjPopoverTrigger"], { "kjTrigger": { "alias": "kjTrigger"; "required": false; "isSignal": true; }; "kjDisabled": { "alias": "kjDisabled"; "required": false; "isSignal": true; }; "kjOpenDelay": { "alias": "kjOpenDelay"; "required": false; "isSignal": true; }; "kjCloseDelay": { "alias": "kjCloseDelay"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof KjOverlayTrigger; inputs: { "kjOpen": "kjOpen"; }; outputs: {}; }]>;
|
|
6783
6982
|
}
|
|
6784
6983
|
|
|
6785
6984
|
declare class KjPopoverContent {
|
|
@@ -15669,5 +15868,5 @@ declare const KJ_ALERT_CONFIG: InjectionToken<KjAlertConfig>;
|
|
|
15669
15868
|
*/
|
|
15670
15869
|
declare function provideKjAlert(config: Partial<KjAlertConfig>): Provider[];
|
|
15671
15870
|
|
|
15672
|
-
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_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_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, 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, assertive, bindPresets, blurredBackdrop, bodyPortal, buildMonthMatrix, coalesceAnnouncement, compareDay, compileMask, corner, createKjDecoratorNode, createKjImageNode, cssClip, defaultDateRangePresets, defaultMaskTokens, defaultPasswordScorer, edgeSheet, endOfMonth, firstDayOfWeek, formatDateLong, formatDateShort, formatMonthYear, getIconMode, 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, 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 };
|
|
15673
|
-
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, KjChatContext, KjChatLogContext, KjChatMessageData, KjChatMessageRole, 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, KjOnContextMenuOpts, KjOnContextMenuStrategy, KjOnHoverOpts, KjOnHoverStrategy, 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 };
|
|
15871
|
+
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_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, assertive, bindPresets, blurredBackdrop, bodyPortal, buildMonthMatrix, coalesceAnnouncement, compareDay, compileMask, corner, createKjDecoratorNode, createKjImageNode, cssClip, defaultDateRangePresets, defaultMaskTokens, defaultPasswordScorer, edgeSheet, endOfMonth, firstDayOfWeek, formatDateLong, formatDateShort, formatMonthYear, getIconMode, 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 };
|
|
15872
|
+
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 };
|