@ixfx/components 0.7.5 → 0.8.1
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/bundle/index.d.ts +256 -17
- package/bundle/index.d.ts.map +1 -1
- package/bundle/index.js +1462 -166
- package/bundle/index.js.map +1 -1
- package/dist/ac-token.js +1 -1
- package/dist/{data-grid-CtJ35v8L.d.ts → data-grid-D-z7bx5-.d.ts} +2 -2
- package/dist/{data-grid-CtJ35v8L.d.ts.map → data-grid-D-z7bx5-.d.ts.map} +1 -1
- package/dist/data-grid.d.ts +1 -1
- package/dist/data-grid.js +1 -1
- package/dist/{detail-list-BS5dRDda.d.ts → detail-list-_ZJHYEBr.d.ts} +3 -3
- package/dist/{detail-list-BS5dRDda.d.ts.map → detail-list-_ZJHYEBr.d.ts.map} +1 -1
- package/dist/detail-list.d.ts +2 -2
- package/dist/detail-list.js +1 -1
- package/dist/grid-list-nRUQOcEL.js +1537 -0
- package/dist/grid-list-nRUQOcEL.js.map +1 -0
- package/dist/{grid-list-D-GbghSH.d.ts → grid-list-u33vmKzb.d.ts} +116 -15
- package/dist/grid-list-u33vmKzb.d.ts.map +1 -0
- package/dist/grid-list.d.ts +1 -1
- package/dist/grid-list.js +1 -993
- package/dist/{incr-search-DpbSJtgj.js → incr-search-C05WjbZh.js} +40 -3
- package/dist/incr-search-C05WjbZh.js.map +1 -0
- package/dist/incr-search.d.ts +2 -2
- package/dist/incr-search.js +2 -2
- package/dist/{index-CBS4z1v-.d.ts → index-h6gxtfHH.d.ts} +34 -2
- package/dist/index-h6gxtfHH.d.ts.map +1 -0
- package/dist/index.d.ts +60 -11
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +343 -16
- package/dist/index.js.map +1 -1
- package/dist/led.d.ts +33 -1
- package/dist/led.d.ts.map +1 -1
- package/dist/led.js +157 -13
- package/dist/led.js.map +1 -1
- package/dist/miller.d.ts +1 -1
- package/dist/miller.js +1 -1
- package/dist/narrowed-text.js +1 -1
- package/dist/panel.d.ts +3 -1
- package/dist/panel.d.ts.map +1 -1
- package/dist/panel.js +31 -1
- package/dist/panel.js.map +1 -1
- package/dist/plots.d.ts +2 -2
- package/dist/plots.js +1 -1
- package/dist/{titlebar-Bj5pfdw_.d.ts → titlebar-YQ-jVQoS.d.ts} +2 -2
- package/dist/{titlebar-Bj5pfdw_.d.ts.map → titlebar-YQ-jVQoS.d.ts.map} +1 -1
- package/dist/titlebar.d.ts +1 -1
- package/dist/titlebar.js +83 -1
- package/dist/titlebar.js.map +1 -1
- package/dist/{tree-DAii2A1g.js → tree-Chptss7I.js} +2 -2
- package/dist/{tree-DAii2A1g.js.map → tree-Chptss7I.js.map} +1 -1
- package/dist/tree.d.ts +1 -1
- package/dist/tree.js +1 -1
- package/dist/{vertical-list-DwtCPy1b.d.ts → vertical-list-CFuFDygi.d.ts} +2 -2
- package/dist/{vertical-list-DwtCPy1b.d.ts.map → vertical-list-CFuFDygi.d.ts.map} +1 -1
- package/dist/vertical-list.d.ts +1 -1
- package/dist/vertical-list.js +1 -1
- package/dist/{xy-axis-5KhVTNoX.d.ts → xy-axis-BfP9hKLj.d.ts} +25 -2
- package/dist/{xy-axis-5KhVTNoX.d.ts.map → xy-axis-BfP9hKLj.d.ts.map} +1 -1
- package/dist/{xy-axis-VrX8dmvS.js → xy-axis-DzM1brBZ.js} +141 -8
- package/dist/xy-axis-DzM1brBZ.js.map +1 -0
- package/docs-user/dock.md +1 -0
- package/docs-user/grid-list.md +99 -14
- package/docs-user/index.json +3 -3
- package/docs-user/led.md +37 -7
- package/docs-user/llms.txt +1 -1
- package/docs-user/panel.md +68 -13
- package/docs-user/titlebar.md +3 -4
- package/llms.txt +1 -1
- package/package.json +1 -1
- package/dist/grid-list-D-GbghSH.d.ts.map +0 -1
- package/dist/grid-list.js.map +0 -1
- package/dist/incr-search-DpbSJtgj.js.map +0 -1
- package/dist/index-CBS4z1v-.d.ts.map +0 -1
- package/dist/xy-axis-VrX8dmvS.js.map +0 -1
package/bundle/index.d.ts
CHANGED
|
@@ -2847,6 +2847,38 @@ declare class ListSearchController<TItem> implements ReactiveController {
|
|
|
2847
2847
|
renderField(): TemplateResult | typeof nothing;
|
|
2848
2848
|
}
|
|
2849
2849
|
//#endregion
|
|
2850
|
+
//#region src/incr-search/data-list-search-adapter.d.ts
|
|
2851
|
+
/** One searchable item in data-backed mode. */
|
|
2852
|
+
type DataListSearchItem = {
|
|
2853
|
+
key: string;
|
|
2854
|
+
index: number;
|
|
2855
|
+
};
|
|
2856
|
+
interface DataListSearchAdapterOptions {
|
|
2857
|
+
/** Total number of items in the whole collection (search sees all of them). */
|
|
2858
|
+
rawCount: () => number;
|
|
2859
|
+
/** Raw (unfiltered) index → key. */
|
|
2860
|
+
rawKeyAt: (index: number) => string;
|
|
2861
|
+
/** Raw (unfiltered) index → text matched against the query. */
|
|
2862
|
+
rawSearchTextAt: (index: number) => string;
|
|
2863
|
+
/** `filter` mode: the host hides items whose key is not in `matchedKeys` (`undefined` clears). */
|
|
2864
|
+
onFilterChange?: (matchedKeys: ReadonlySet<string> | undefined) => void;
|
|
2865
|
+
/** `navigate` + Enter: activate the item with this key. Falls back to `focusKey`. */
|
|
2866
|
+
onActivate?: (key: string) => void;
|
|
2867
|
+
/** Where matched-character highlights are painted (usually the shadow root). */
|
|
2868
|
+
getHighlightRoot?: () => ShadowRoot | Element | null | undefined;
|
|
2869
|
+
}
|
|
2870
|
+
/**
|
|
2871
|
+
* A {@link ListSearchAdapter} over a data-backed list. Unlike the element
|
|
2872
|
+
* adapter it never materialises an element per item — it reads keys and text
|
|
2873
|
+
* straight from the source by index. Highlights are painted on whatever
|
|
2874
|
+
* captions are currently rendered in the shadow window; offscreen matches paint
|
|
2875
|
+
* when scrolled into view. See `docs/infra-incremental.md`.
|
|
2876
|
+
*/
|
|
2877
|
+
declare function createDataListSearchAdapter(host: {
|
|
2878
|
+
focusKey: (key: string) => void;
|
|
2879
|
+
selectKeys: (keys: Iterable<string>) => void;
|
|
2880
|
+
}, options: DataListSearchAdapterOptions): ListSearchAdapter<DataListSearchItem>;
|
|
2881
|
+
//#endregion
|
|
2850
2882
|
//#region src/incr-search/element-list-search-adapter.d.ts
|
|
2851
2883
|
/**
|
|
2852
2884
|
* The slice of a list component the element adapter drives. `ixfx-grid-list`,
|
|
@@ -3770,7 +3802,7 @@ declare global {
|
|
|
3770
3802
|
//#endregion
|
|
3771
3803
|
//#region src/titlebar/titlebar.d.ts
|
|
3772
3804
|
type TitlebarOrientation = `horizontal` | `vertical`;
|
|
3773
|
-
type TitlebarVariant = `titlebar` | `midline`;
|
|
3805
|
+
type TitlebarVariant = `titlebar` | `midline` | `tree`;
|
|
3774
3806
|
type TitlebarToggleInteraction = `implicit` | `explicit` | `disabled`;
|
|
3775
3807
|
interface TitlebarToggleDetail {
|
|
3776
3808
|
readonly collapsed: boolean;
|
|
@@ -4946,6 +4978,17 @@ declare global {
|
|
|
4946
4978
|
}
|
|
4947
4979
|
//#endregion
|
|
4948
4980
|
//#region src/grid-list/types.d.ts
|
|
4981
|
+
/**
|
|
4982
|
+
* Adapter for data-backed grid list mode.
|
|
4983
|
+
* @param T The type of data item.
|
|
4984
|
+
*/
|
|
4985
|
+
type GridListDataAdapter<T> = {
|
|
4986
|
+
key: (item: T, index: number) => string;
|
|
4987
|
+
label?: (item: T, index: number) => string;
|
|
4988
|
+
render: (item: T, index: number) => unknown;
|
|
4989
|
+
disabled?: (item: T, index: number) => boolean;
|
|
4990
|
+
searchableText?: (item: T, index: number) => string;
|
|
4991
|
+
};
|
|
4949
4992
|
/**
|
|
4950
4993
|
* How the caption relates to the cell's content.
|
|
4951
4994
|
* - `hidden`: no caption is rendered.
|
|
@@ -4981,20 +5024,35 @@ type GridListOrientation = `grid` | `row` | `column`;
|
|
|
4981
5024
|
interface GridListSelectDetail {
|
|
4982
5025
|
readonly selected: ReadonlySet<Element>;
|
|
4983
5026
|
readonly previous: ReadonlySet<Element>;
|
|
4984
|
-
/** The selection as stable `data-key` / `data-value` strings. */
|
|
4985
5027
|
readonly selectedKeys: ReadonlySet<string>;
|
|
5028
|
+
readonly previousKeys: ReadonlySet<string>;
|
|
4986
5029
|
}
|
|
4987
5030
|
type GridListSelectEvent = CustomEvent<GridListSelectDetail>;
|
|
5031
|
+
/**
|
|
5032
|
+
* `item` is the backward-compatible field: the light-DOM `Element` in element
|
|
5033
|
+
* mode, the data value `T` in data mode. Use `element` when you specifically
|
|
5034
|
+
* need the DOM node (`undefined` in data mode). `key` / `index` are the stable
|
|
5035
|
+
* contract in both modes.
|
|
5036
|
+
*/
|
|
4988
5037
|
interface GridListActivateDetail {
|
|
4989
|
-
readonly item:
|
|
5038
|
+
readonly item: unknown;
|
|
5039
|
+
readonly key: string;
|
|
5040
|
+
readonly index: number;
|
|
5041
|
+
readonly element: Element | undefined;
|
|
4990
5042
|
}
|
|
4991
5043
|
type GridListActivateEvent = CustomEvent<GridListActivateDetail>;
|
|
4992
5044
|
interface GridListItemClickDetail {
|
|
4993
|
-
readonly item:
|
|
5045
|
+
readonly item: unknown;
|
|
5046
|
+
readonly key: string;
|
|
5047
|
+
readonly index: number;
|
|
5048
|
+
readonly element: Element | undefined;
|
|
4994
5049
|
}
|
|
4995
5050
|
type GridListItemClickEvent = CustomEvent<GridListItemClickDetail>;
|
|
4996
5051
|
interface GridListTickleDetail {
|
|
4997
|
-
readonly item:
|
|
5052
|
+
readonly item: unknown;
|
|
5053
|
+
readonly key: string;
|
|
5054
|
+
readonly index: number;
|
|
5055
|
+
readonly element: Element | undefined;
|
|
4998
5056
|
}
|
|
4999
5057
|
type GridListTickleEvent = CustomEvent<GridListTickleDetail>;
|
|
5000
5058
|
interface GridListElementEventMap {
|
|
@@ -5004,6 +5062,7 @@ interface GridListElementEventMap {
|
|
|
5004
5062
|
'list-tickle': GridListTickleEvent;
|
|
5005
5063
|
}
|
|
5006
5064
|
type GridListViewportChangeDetail = {
|
|
5065
|
+
readonly renderedKeys: string[];
|
|
5007
5066
|
readonly visibleKeys: string[];
|
|
5008
5067
|
};
|
|
5009
5068
|
type GridListViewportChangeEvent = CustomEvent<GridListViewportChangeDetail>;
|
|
@@ -5355,7 +5414,7 @@ declare class TickledController<T = number> implements ReactiveController {
|
|
|
5355
5414
|
}
|
|
5356
5415
|
//#endregion
|
|
5357
5416
|
//#region src/grid-list/grid-list.d.ts
|
|
5358
|
-
declare class GridListElement extends LitElement {
|
|
5417
|
+
declare class GridListElement<T = unknown> extends LitElement {
|
|
5359
5418
|
#private;
|
|
5360
5419
|
static styles: CSSResult[];
|
|
5361
5420
|
selectionMode: ListSelectionMode;
|
|
@@ -5390,24 +5449,44 @@ declare class GridListElement extends LitElement {
|
|
|
5390
5449
|
captionHeight: number;
|
|
5391
5450
|
itemWrap: `stop` | `wrap`;
|
|
5392
5451
|
/**
|
|
5393
|
-
*
|
|
5394
|
-
* for which it returns `false` are removed from layout and
|
|
5452
|
+
* Element-mode filter predicate (also driven by incremental filter-search).
|
|
5453
|
+
* Light-DOM items for which it returns `false` are removed from layout and
|
|
5454
|
+
* navigation. For data mode use {@link itemFilterPredicate}.
|
|
5395
5455
|
*/
|
|
5396
5456
|
filterPredicate: ((el: Element) => boolean) | undefined;
|
|
5457
|
+
/**
|
|
5458
|
+
* Data-mode filter predicate. Items for which it returns `false` are removed
|
|
5459
|
+
* from layout and navigation without any element being materialised.
|
|
5460
|
+
*/
|
|
5461
|
+
itemFilterPredicate: ((item: T, index: number) => boolean) | undefined;
|
|
5397
5462
|
/**
|
|
5398
5463
|
* Space-separated subset of `navigate select filter` — limits which
|
|
5399
5464
|
* incremental-search modes are offered (as commands and in-popover switches).
|
|
5400
5465
|
* Unset ⇒ all three; empty ⇒ search disabled. See `docs/infra-incremental.md`.
|
|
5401
5466
|
*/
|
|
5402
5467
|
searchModes: string | undefined;
|
|
5468
|
+
/**
|
|
5469
|
+
* Data items for data-backed mode. When set along with `itemAdapter`, the
|
|
5470
|
+
* component operates in data mode instead of element mode.
|
|
5471
|
+
*/
|
|
5472
|
+
items: readonly T[];
|
|
5473
|
+
/**
|
|
5474
|
+
* Adapter for data-backed mode. When set, the component renders items from
|
|
5475
|
+
* the `items` array using this adapter instead of projecting light-DOM children.
|
|
5476
|
+
*/
|
|
5477
|
+
itemAdapter: GridListDataAdapter<T> | undefined;
|
|
5403
5478
|
private _scrollTop;
|
|
5404
5479
|
private _scrollLeft;
|
|
5405
5480
|
private _viewportHeight;
|
|
5406
5481
|
private _viewportWidth;
|
|
5407
|
-
readonly selection: ListSelectionController<
|
|
5408
|
-
readonly tickled: TickledController<
|
|
5409
|
-
/**
|
|
5410
|
-
|
|
5482
|
+
readonly selection: ListSelectionController<string>;
|
|
5483
|
+
readonly tickled: TickledController<string>;
|
|
5484
|
+
/**
|
|
5485
|
+
* Incremental search (navigate / select / filter). Element- or data-backed
|
|
5486
|
+
* depending on the mode; the mode-agnostic surface (`renderField`, `open`,
|
|
5487
|
+
* `close`, `setModes`, …) is the same either way. See `docs/infra-incremental.md`.
|
|
5488
|
+
*/
|
|
5489
|
+
search: ListSearchController<unknown>;
|
|
5411
5490
|
/** Command registry carrying this grid's `list.search.*` commands. */
|
|
5412
5491
|
get registry(): CommandRegistry<unknown> | undefined;
|
|
5413
5492
|
connectedCallback(): void;
|
|
@@ -5415,7 +5494,14 @@ declare class GridListElement extends LitElement {
|
|
|
5415
5494
|
protected firstUpdated(): void;
|
|
5416
5495
|
protected willUpdate(changed: PropertyValues<this>): void;
|
|
5417
5496
|
protected updated(changed: PropertyValues<this>): void;
|
|
5418
|
-
|
|
5497
|
+
/**
|
|
5498
|
+
* Re-read the viewport after an ancestor's visibility/layout changed.
|
|
5499
|
+
* Safe while hidden (zero-sized reads are ignored); forces a repaint of the
|
|
5500
|
+
* virtual window even when the size is unchanged.
|
|
5501
|
+
*/
|
|
5502
|
+
refreshLayout(): void;
|
|
5503
|
+
/** Alias of {@link refreshLayout}. */
|
|
5504
|
+
remeasure(): void;
|
|
5419
5505
|
get count(): number;
|
|
5420
5506
|
/**
|
|
5421
5507
|
* Number of cells currently rendered in the shadow DOM. With virtualization
|
|
@@ -5424,7 +5510,11 @@ declare class GridListElement extends LitElement {
|
|
|
5424
5510
|
*/
|
|
5425
5511
|
get renderedCount(): number;
|
|
5426
5512
|
get selectedItems(): ReadonlySet<Element>;
|
|
5427
|
-
/**
|
|
5513
|
+
/**
|
|
5514
|
+
* The selection as stable `data-key` / `data-value` strings. Auto-assigned
|
|
5515
|
+
* keys for keyless light-DOM items are omitted (they are not a stable contract
|
|
5516
|
+
* for the consumer).
|
|
5517
|
+
*/
|
|
5428
5518
|
get selectedKeys(): ReadonlySet<string>;
|
|
5429
5519
|
select(item: Element): void;
|
|
5430
5520
|
selectMany(items: Iterable<Element>): void;
|
|
@@ -5441,13 +5531,56 @@ declare class GridListElement extends LitElement {
|
|
|
5441
5531
|
addSelectedKeys(keys: Iterable<string>): void;
|
|
5442
5532
|
/** Remove items by key from the selection. */
|
|
5443
5533
|
removeSelectedKeys(keys: Iterable<string>): void;
|
|
5534
|
+
/**
|
|
5535
|
+
* Data mode: replace the whole item array. Selection and cursor keep any key
|
|
5536
|
+
* that is still present; keys that vanish are dropped (one `list-select`).
|
|
5537
|
+
* A no-op in element mode.
|
|
5538
|
+
*/
|
|
5539
|
+
setItems(items: readonly T[]): void;
|
|
5540
|
+
/**
|
|
5541
|
+
* Data mode: append items to the end. Scroll position, selection and cursor
|
|
5542
|
+
* are untouched; appended items don't play the mid-list `[reflowing]` slide.
|
|
5543
|
+
* A no-op in element mode.
|
|
5544
|
+
*/
|
|
5545
|
+
appendItems(items: readonly T[]): void;
|
|
5546
|
+
/**
|
|
5547
|
+
* Data mode: replace the item carrying `key`. A visible cell re-renders in
|
|
5548
|
+
* place (the keyed subtree is kept); an offscreen item shows its new content
|
|
5549
|
+
* when scrolled into view. Scroll and selection are untouched. Unknown keys
|
|
5550
|
+
* are ignored.
|
|
5551
|
+
*/
|
|
5552
|
+
updateItem(key: string, item: T): void;
|
|
5553
|
+
/**
|
|
5554
|
+
* Data mode: remove the items carrying these keys. Removed keys are dropped
|
|
5555
|
+
* from selection and cursor (via the `items` change). A no-op in element mode.
|
|
5556
|
+
*/
|
|
5557
|
+
removeItems(keys: Iterable<string>): void;
|
|
5558
|
+
/**
|
|
5559
|
+
* Data mode: drop every item. Selection and cursor are reset and one
|
|
5560
|
+
* `list-select` with empty sets is emitted. A no-op in element mode.
|
|
5561
|
+
*/
|
|
5562
|
+
clearItems(): void;
|
|
5444
5563
|
/** Move the cursor to the item with this key and scroll it into view. */
|
|
5445
5564
|
focusKey(key: string): void;
|
|
5446
5565
|
/** The key of the item under the cursor, or `undefined`. */
|
|
5447
5566
|
get tickledKey(): string | undefined;
|
|
5567
|
+
/** Element mode: the light-DOM element carrying `key`, or `undefined`. */
|
|
5448
5568
|
getItem(key: string): Element | undefined;
|
|
5569
|
+
/** Element mode: the light-DOM element at effective index `index`. */
|
|
5449
5570
|
getItemByIndex(index: number): Element | undefined;
|
|
5571
|
+
/** Data mode: the data value carrying `key`, or `undefined`. */
|
|
5572
|
+
getData(key: string): T | undefined;
|
|
5450
5573
|
getKey(item: Element): string | undefined;
|
|
5574
|
+
/**
|
|
5575
|
+
* Keys of items in the rendered window (viewport + overscan) — the priority
|
|
5576
|
+
* set for prefetching. Use {@link visibleKeys} for the strict viewport
|
|
5577
|
+
* intersection. Auto-assigned keyless-item keys are omitted.
|
|
5578
|
+
*/
|
|
5579
|
+
renderedKeys(): string[];
|
|
5580
|
+
/**
|
|
5581
|
+
* Keys of items actually intersecting the viewport (no overscan).
|
|
5582
|
+
* Auto-assigned keyless-item keys are omitted.
|
|
5583
|
+
*/
|
|
5451
5584
|
visibleKeys(): string[];
|
|
5452
5585
|
private _syncItemStates;
|
|
5453
5586
|
private _dispatch;
|
|
@@ -5569,6 +5702,8 @@ declare class PanelElement extends LitElement {
|
|
|
5569
5702
|
variant: PanelVariant;
|
|
5570
5703
|
/** Suppress the titlebar entirely (content-only chrome, e.g. dock tabbed mode). */
|
|
5571
5704
|
hideTitlebar: boolean;
|
|
5705
|
+
/** Keep the toolbar visible even when the panel is collapsed. */
|
|
5706
|
+
keepToolbar: boolean;
|
|
5572
5707
|
private _onTitlebarToggle;
|
|
5573
5708
|
private _onCloseClick;
|
|
5574
5709
|
protected render(): TemplateResult<1>;
|
|
@@ -6486,15 +6621,47 @@ declare global {
|
|
|
6486
6621
|
}
|
|
6487
6622
|
//#endregion
|
|
6488
6623
|
//#region src/led/led.d.ts
|
|
6624
|
+
type LedMode = `brightness` | `blink` | `pulse`;
|
|
6489
6625
|
declare class LedElement extends LitElement {
|
|
6490
6626
|
#private;
|
|
6491
6627
|
value: number;
|
|
6492
6628
|
lit: boolean;
|
|
6493
6629
|
color: string;
|
|
6630
|
+
glow: boolean;
|
|
6631
|
+
/**
|
|
6632
|
+
* Operating mode:
|
|
6633
|
+
* - `brightness` (default): {@link value} sets the LED brightness directly
|
|
6634
|
+
* - `blink`: LED blinks on/off every {@link rate} milliseconds (this mode
|
|
6635
|
+
* is what the legacy `blinking` attribute now selects)
|
|
6636
|
+
* - `pulse`: LED sits unlit until {@link pulse} is called, which fires an
|
|
6637
|
+
* attack/release envelope up to {@link value} and back down
|
|
6638
|
+
*/
|
|
6639
|
+
mode: LedMode;
|
|
6640
|
+
/**
|
|
6641
|
+
* Legacy alias for `mode="blink"`. Setting `blinking` switches {@link mode}
|
|
6642
|
+
* to `blink`; clearing it returns to `brightness`.
|
|
6643
|
+
*/
|
|
6494
6644
|
blinking: boolean;
|
|
6495
6645
|
rate: number;
|
|
6646
|
+
/** Pulse-mode attack time in milliseconds (0 → instant). */
|
|
6647
|
+
attackTime: number;
|
|
6648
|
+
/** Pulse-mode release/decay time in milliseconds (0 → instant). */
|
|
6649
|
+
releaseTime: number;
|
|
6650
|
+
/**
|
|
6651
|
+
* Pulse-mode retrigger behaviour. When set, each {@link pulse} call restarts
|
|
6652
|
+
* the envelope from 0. When unset (default), the attack ramps from wherever
|
|
6653
|
+
* the envelope currently sits, so a retrigger mid-decay is continuous.
|
|
6654
|
+
*/
|
|
6655
|
+
pulseRetrigger: boolean;
|
|
6496
6656
|
willUpdate(changedProperties: Map<string, unknown>): void;
|
|
6497
6657
|
disconnectedCallback(): void;
|
|
6658
|
+
/**
|
|
6659
|
+
* Pulse-mode trigger: lights the LED to {@link value} using an attack/release
|
|
6660
|
+
* envelope, then decays back to unlit. Calling again restarts the envelope
|
|
6661
|
+
* (from 0 if {@link pulseRetrigger} is set, otherwise from the current level).
|
|
6662
|
+
* No-op unless {@link mode} is `pulse`.
|
|
6663
|
+
*/
|
|
6664
|
+
pulse(): void;
|
|
6498
6665
|
protected render(): TemplateResult<1>;
|
|
6499
6666
|
static styles: CSSResult;
|
|
6500
6667
|
}
|
|
@@ -7030,18 +7197,64 @@ declare global {
|
|
|
7030
7197
|
//#endregion
|
|
7031
7198
|
//#region src/panel/panel-group.d.ts
|
|
7032
7199
|
type PanelGroupOrientation = `horizontal` | `vertical`;
|
|
7200
|
+
interface PanelGroupReorderDetail {
|
|
7201
|
+
readonly fromIndex: number;
|
|
7202
|
+
readonly toIndex: number;
|
|
7203
|
+
readonly panel: PanelElement;
|
|
7204
|
+
}
|
|
7205
|
+
type PanelGroupReorderEvent = CustomEvent<PanelGroupReorderDetail>;
|
|
7206
|
+
interface PanelGroupElementEventMap {
|
|
7207
|
+
reorder: PanelGroupReorderEvent;
|
|
7208
|
+
}
|
|
7209
|
+
/**
|
|
7210
|
+
* Pure helper: nearest gap index for a pointer position along one axis.
|
|
7211
|
+
* `edges` are the [start, end] of each sibling (excluding the drag source),
|
|
7212
|
+
* in DOM order. Returns 0..edges.length.
|
|
7213
|
+
*/
|
|
7214
|
+
declare function panelGapIndex(edges: ReadonlyArray<readonly [number, number]>, pos: number): number;
|
|
7033
7215
|
declare class PanelGroupElement extends LitElement {
|
|
7034
7216
|
orientation: PanelGroupOrientation;
|
|
7035
7217
|
variant: PanelVariant;
|
|
7036
7218
|
toggleInteraction: PanelToggleInteraction;
|
|
7037
7219
|
collapsible: boolean;
|
|
7038
|
-
|
|
7039
|
-
|
|
7220
|
+
accordion: boolean;
|
|
7221
|
+
allowReorder: boolean;
|
|
7222
|
+
/** Explicit gap between panels. When unset, `--group-gap` (falling back to `--space-l`) controls the gap. */
|
|
7223
|
+
gap?: string;
|
|
7040
7224
|
private _panels;
|
|
7225
|
+
private _dragState;
|
|
7226
|
+
private _suppressNextClick;
|
|
7041
7227
|
private _onPanelToggle;
|
|
7228
|
+
connectedCallback(): void;
|
|
7229
|
+
disconnectedCallback(): void;
|
|
7042
7230
|
protected firstUpdated(): void;
|
|
7043
7231
|
protected updated(changed: Map<string, unknown>): void;
|
|
7044
7232
|
private _propagateAll;
|
|
7233
|
+
private _onSlotChange;
|
|
7234
|
+
private _onClickCapture;
|
|
7235
|
+
private _onKeyDown;
|
|
7236
|
+
/**
|
|
7237
|
+
* Walk composedPath for the nearest ixfx-panel, requiring the press to have
|
|
7238
|
+
* gone through an ixfx-titlebar (titlebar-anywhere drag). Bails when the
|
|
7239
|
+
* path crosses interactive chrome (buttons/links/inputs/toolbar/caret/close)
|
|
7240
|
+
* so those controls always win over dragging.
|
|
7241
|
+
*/
|
|
7242
|
+
private _findDragTarget;
|
|
7243
|
+
private _onPointerDown;
|
|
7244
|
+
private _onPointerMove;
|
|
7245
|
+
private _onPointerUp;
|
|
7246
|
+
private _onPointerCancel;
|
|
7247
|
+
private _beginDrag;
|
|
7248
|
+
private _abortDrag;
|
|
7249
|
+
private _endDrag;
|
|
7250
|
+
private _commitDrag;
|
|
7251
|
+
private _createGhost;
|
|
7252
|
+
/**
|
|
7253
|
+
* Nearest panel gap to the pointer, ignoring the drag source.
|
|
7254
|
+
* The perpendicular axis is ignored — the pointer always resolves to a gap.
|
|
7255
|
+
*/
|
|
7256
|
+
private _computeGapIndex;
|
|
7257
|
+
private _computeCaretStyle;
|
|
7045
7258
|
protected render(): TemplateResult<1>;
|
|
7046
7259
|
static styles: CSSResult;
|
|
7047
7260
|
}
|
|
@@ -7050,6 +7263,9 @@ declare global {
|
|
|
7050
7263
|
'ixfx-panel-group': PanelGroupElement;
|
|
7051
7264
|
}
|
|
7052
7265
|
}
|
|
7266
|
+
interface PanelGroupElement {
|
|
7267
|
+
addEventListener: (<K extends keyof PanelGroupElementEventMap>(type: K, listener: (this: PanelGroupElement, event: PanelGroupElementEventMap[K]) => void, options?: boolean | AddEventListenerOptions) => void) & ((type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions) => void);
|
|
7268
|
+
}
|
|
7053
7269
|
//#endregion
|
|
7054
7270
|
//#region src/plots/colour-map.d.ts
|
|
7055
7271
|
type ColourMode = `fixed` | `opacity` | `hue` | `saturation` | `lightness` | `scale`;
|
|
@@ -7343,6 +7559,7 @@ type PlotHistogramOrientation = `horizontal` | `vertical`;
|
|
|
7343
7559
|
* - `none`: no hover feedback.
|
|
7344
7560
|
*/
|
|
7345
7561
|
type PlotHistogramValueTooltips = `hover` | `inline` | `none`;
|
|
7562
|
+
type PlotHistogramInteractionMode = `inspect` | `select`;
|
|
7346
7563
|
type PlotHistogramBucketClickDetail = {
|
|
7347
7564
|
readonly bucketIndex: number;
|
|
7348
7565
|
readonly valueMin: number;
|
|
@@ -7372,15 +7589,37 @@ declare class PlotHistogram extends LitElement {
|
|
|
7372
7589
|
tooltipDelay: number;
|
|
7373
7590
|
/** Max rate (ms) at which an already-shown value display refreshes to match live-changing bucket data. */
|
|
7374
7591
|
valueUpdateInterval: number;
|
|
7592
|
+
/** Interaction mode: 'inspect' for hover tooltips, 'select' for click-drag selection. */
|
|
7593
|
+
interactionMode: PlotHistogramInteractionMode;
|
|
7375
7594
|
/** Override to customize the value/frequency label used by the tooltip and overlay text. */
|
|
7376
7595
|
valueFormat: (valueMin: number, valueMax: number, frequency: number) => string;
|
|
7377
7596
|
private _width;
|
|
7378
7597
|
private _height;
|
|
7379
7598
|
private _hoveredIndex;
|
|
7380
7599
|
private _inlineOverlayText;
|
|
7600
|
+
private _coloredRangeMin;
|
|
7601
|
+
private _coloredRangeMax;
|
|
7602
|
+
private _selectionStart;
|
|
7603
|
+
private _selectionEnd;
|
|
7604
|
+
private _isDragging;
|
|
7605
|
+
private _selectionOverlayText;
|
|
7381
7606
|
add(v: number): void;
|
|
7382
7607
|
set(values: number[]): void;
|
|
7383
7608
|
clear(): void;
|
|
7609
|
+
setColoredRange(min: number, max: number): void;
|
|
7610
|
+
clearColoredRange(): void;
|
|
7611
|
+
setSelection(startBarIndex: number, endBarIndex: number): void;
|
|
7612
|
+
clearSelection(): void;
|
|
7613
|
+
getSelectedRange(): {
|
|
7614
|
+
barIndices: {
|
|
7615
|
+
start: number;
|
|
7616
|
+
end: number;
|
|
7617
|
+
} | null;
|
|
7618
|
+
dataValues: {
|
|
7619
|
+
min: number;
|
|
7620
|
+
max: number;
|
|
7621
|
+
} | null;
|
|
7622
|
+
};
|
|
7384
7623
|
protected firstUpdated(_changed: PropertyValues): void;
|
|
7385
7624
|
protected updated(changed: PropertyValues): void;
|
|
7386
7625
|
disconnectedCallback(): void;
|
|
@@ -8828,5 +9067,5 @@ interface XyPad {
|
|
|
8828
9067
|
//#region src/index.d.ts
|
|
8829
9068
|
declare function init(): void;
|
|
8830
9069
|
//#endregion
|
|
8831
|
-
export { AcTextChangeDetail, AcTextChangeEvent, AcTextCompletionProvider, AcTextElement, AcTextItem, AcTextSelectDetail, AcTextSelectEvent, type AcTokenAddDetail, type AcTokenAddEvent, AcTokenElement, type AcTokenElementEventMap, type AcTokenItem, type AcTokenRemoveDetail, type AcTokenRemoveEvent, type AcTokenizerFn, type AcTokensChangeDetail, type AcTokensChangeEvent, AddItemOptions, Axis, ButtonElement, Checkbox, CheckboxChangeDetail, CheckboxChangeEvent, CheckboxEventMap, ClickSnapMode, ColourMapConfig, ColourMode, ColourPicker, type ColourPickerChangeEvent, type ColourPickerEventDetail, type ColourPickerInputEvent, ColourPickerPopup, ColourResult, ConfigEntry, ContiguousSelectEventDetail, CrossoverBehaviour, CrumbNavChangeDetail, CrumbNavChangeEvent, CrumbNavExpandDetail, CrumbNavExpandEvent, CrumbNavNavigateDetail, CrumbNavNavigateEvent, CrumbNavigationChangeDetail, CrumbNavigationChangeEvent, CrumbNavigationElement, CrumbNavigationElementEventMap, CrumbNavigationExpandDetail, CrumbNavigationExpandEvent, CrumbNavigationItemClickDetail, CrumbNavigationItemClickEvent, CrumbPathController, CrumbPathControllerOptions, CrumbPathElement, CrumbPathElementEventMap, CrumbSegment, CrumbSiblingLookupFn, type CssVars, CustomCheckboxOptions, DataBatch, DataController, DataControllerOptions, DataDisplayComponent, DataGridCellClickDetail, DataGridCellClickEvent, DataGridCellEditDetail, DataGridCellEditEvent, DataGridColumnReorderDetail, DataGridColumnReorderEvent, DataGridColumnResizeDetail, DataGridColumnResizeEvent, DataGridColumnVisibilityDetail, DataGridColumnVisibilityEvent, DataGridElement, DataGridElementEventMap, DataGridGroupChangeDetail, DataGridGroupChangeEvent, DataGridSelectDetail, DataGridSelectEvent, DataGridSortDetail, DataGridSortEvent, DataProviderResult, DataTableElement, DataTableElementEventMap, DataTableRow, DataTableRowClickDetail, DataTableRowClickEvent, type DetailFormatter, DetailListElement, type DetailSortComparator, type DetailSortItem, type DetailSortMode, DisplayTextLogic, DistributeResult, DockAddPanelTarget, DockAxis, DockChangeDetail, DockChangeEvent, DockDirection, DockDragBoundaryDetail, DockDragBoundaryEvent, DockDropTarget, type DockDropZone, DockEdge, DockHostElement, DockHostElementEventMap, DockLayout, DockLeafContentRules, DockLeafInfo, DockLeafRef, DockNeighbours, DockNode, DockOperation, DockPanelActivatedDetail, DockPanelActivatedEvent, DockPanelAddedDetail, DockPanelAddedEvent, DockPanelDragStartDetail, DockPanelDragStartEvent, DockPanelElement, DockPanelElementEventMap, DockPanelInit, DockPanelRemovedDetail, DockPanelRemovedEvent, DockPanelSnapshot, DockPanelTearOutDetail, DockPanelTearOutEvent, DockRect, DockSplitNode, DockStackNode, DragSnappingFn, DragTarget, EditableLabel, EditableLabelChangeDetail, EditableLabelChangeEvent, EditableMode, EditableNumber, Effect, type ElementIncrSearch, type ElementIncrSearchOptions, type ElementListSearchAdapterOptions, type ElementListSearchHost, Endpoints, EntryMode, FormElement, FormGroupElement, FormPartElement, FormatValueForHuman, FormattingOptions, type FuzzySearch, type FuzzySearchOptions, FuzzySearchResult, type GridListActivateDetail, type GridListActivateEvent, type GridListCaptionAlign, type GridListCaptionBackdrop, type GridListCaptionPosition, type GridListCaptionStyle, GridListElement, type GridListElementEventMap, type GridListFullElementEventMap, type GridListItemClickDetail, type GridListItemClickEvent, type GridListOrientation, type GridListSelectDetail, type GridListSelectEvent, type GridListTickleDetail, type GridListTickleEvent, type GridListViewportChangeDetail, type GridListViewportChangeEvent, GridMode, GridResolution, GroupNode, GroupedItemListerElement, type GroupedItemListerElementEventMap, type GroupedSelectDetail, type GroupedSelectEvent, HexChangeDetail, HexChangeEvent, type HighlightOptions, type HighlightTarget, ICON_CARET_RIGHT, ICON_CHECK, ICON_CHEVRON_DOWN, ICON_CLOSE, IDataProvider, type IGroupedSubComponent, type IGroupedSubComponentEventMap, type IconChangedDetail, type IconChangedEvent, type IconEntry, type IncrSearch, type IncrSearchChangeCallback, IncrSearchTreeController as IncrSearchMillerController, IncrSearchTreeController, type IncrSearchTreeOptions as IncrSearchMillerOptions, type IncrSearchTreeOptions, type IncrSearchOptions, type IncrSearchResult, type IncrSearchState, type InputMode, ItemsProvider, IxfxHexEditorElement, IxfxIconElement, IxfxRatingElement, IxfxTimelineElement, KeyedElementIndex, LIST_ITEM_MOTION_MS, LIST_SEARCH_COMMAND_IDS, LIST_SEARCH_MODES, LabelledRadialInput, LabelledRangeInput, LabelledSliderInput, LaneData, LaneType, LayoutNode, LayoutSnapshot, LeafGeom, LedElement, type ListActivateDetail, type ListActivateEvent, type ListElementEventMap, type ListInteractionMode, type ListItemClickDetail, type ListItemClickEvent, type ListItemMotionOptions, type ListSearchAdapter, ListSearchController, type ListSearchControllerOptions, type ListSearchHost, type ListSearchMode, type ListSelectDetail, type ListSelectEvent, ListSelectionController, type ListSelectionControllerConfig, type ListSelectionGesture, type ListSelectionMode, type ListSelectionModes, type ListTickleDetail, type ListTickleEvent, LoadChildrenCallback, MarkerStyle, index_d_exports as Menu, type TreeActivateDetail as MillerActivateDetail, TreeActivateDetail, type TreeActivateEvent as MillerActivateEvent, TreeActivateEvent, MillerBaseElement, MillerBaseElementEventMap, type TreeCollapseDetail as MillerCollapseDetail, TreeCollapseDetail, type TreeCollapseEvent as MillerCollapseEvent, TreeCollapseEvent, MillerConfig, type TreeExpandDetail as MillerExpandDetail, TreeExpandDetail, type TreeExpandEvent as MillerExpandEvent, TreeExpandEvent, MillerHeaderClickDetail, MillerHeaderClickEvent, MillerHeaderRightClickDetail, MillerHeaderRightClickEvent, type TreeItem as MillerItem, TreeItem, type TreeItemClickDetail as MillerItemClickDetail, TreeItemClickDetail, type TreeItemClickEvent as MillerItemClickEvent, TreeItemClickEvent, MillerItemDblClickDetail, MillerItemDblClickEvent, MillerItemRightClickDetail, MillerItemRightClickEvent, MillerItemState, MillerListElement, type TreeNode as MillerNode, TreeNode, MillerRebaseDetail, MillerRebaseEvent, type TreeSelectDetail as MillerSelectDetail, TreeSelectDetail, type TreeSelectEvent as MillerSelectEvent, TreeSelectEvent, MillerSelectionMode, type TreeTickleDetail as MillerTickleDetail, TreeTickleDetail, type TreeTickleEvent as MillerTickleEvent, TreeTickleEvent, MillerTreeController, MillerTreeControllerOptions, NarrowedTextChangeDetail, NarrowedTextChangeEvent, NarrowedTextElement, NarrowedTextItem, NoneSelectEventDetail, Notification, NotificationContent, NotificationManager, NotificationPillElement, NotificationPillElementEventMap, NotificationRenderer, NotificationRendererHooks, NotificationType, NotifierOptions, type OklchValue, Orientation, PanTextElement, PanelCloseEvent, PanelElement, PanelElementEventMap, PanelGroupElement, PanelGroupOrientation, PanelInfo, PanelNode, PanelOrientation, PanelToggleDetail, PanelToggleEvent, PanelToggleInteraction, PanelVariant, PillPosition, PillQueueDisplay, PillRendererOptions, PillSafeArea, PillTapDetail, PillTapEvent, PlotDataSeries, PlotDataSeriesOptions, PlotHistogram, PlotHistogramBucketClickDetail, PlotHistogramBucketClickEvent, PlotHistogramElementEventMap, PlotHistogramOrientation, PlotHistogramValueTooltips, PlotMultiAxis, PlotMultiAxisDataPointClickDetail, PlotMultiAxisDataPointClickEvent, PlotMultiAxisElementEventMap, PlotMultiAxisLayout, PlotSingleAxis, PlotSingleAxisElementEventMap, PlotSingleAxisPointerMoveDetail, PlotSingleAxisPointerMoveEvent, PlotXyAxis, PolarPad, PolarPadInputDetail, PolarPadInputEvent, PopupItem, RadialInputChangeDetail, RadialInputChangeEvent, RadialInputElement, RadialInputInputDetail, RadialInputInputEvent, RadioGroup, RadioGroupChangeDetail, RadioGroupChangeEvent, RadioGroupMode, RadioItem, RangeElement, RangeInput, RangeMultiElement, RangeMultiInputDetail, RangeMultiInputEvent, RatingChangeDetail, RatingChangeEvent, RatingElement, RatingElementEventMap, RatingInputEvent, RatingVariant, type Rect, RectangularSelectEventDetail, type RegisterListSearchCommandsOptions, RendererStyle, ResizeMode, SelectEventDetail, SelectHorizChangeDetail, SelectHorizChangeEvent, SelectHorizElement, SelectHorizEventMap, SelectionMode, SingleAxisAgeStyle, SingleAxisDrawStyle, SingleSelectEventDetail, SliderChangedField, SliderCrossover, SliderHandleKey, SliderInputChangeDetail, SliderInputChangeEvent, SliderInputElement, SliderInputElementEventMap, SliderInputInputDetail, SliderInputInputEvent, SliderLaneData, SliderLaneType, SliderMarkerStyle, SliderOrientation, SliderSingleStyle, SliderValueCFollow, SliderValueDrag, SliderValueMode, SlidingNumberElement, SlidingNumberTrend, SnackbarDismiss, SnackbarElement, SnackbarMode, SnackbarPlacement, SnapChangeDetail, SnapChangeEvent, SnapContainer, SnapInputDetail, SnapInputEvent, SnapLogic, SnapshotNode, SortCompareFn, SplitButton, SplitButtonMode, SplitButtonSelectDetail, SplitButtonSelectEvent, SplitChangeDetail, SplitChangeEvent, SplitCloseDetail, SplitCloseEvent, SplitCollapseDetail, SplitCollapseEvent, SplitExpandDetail, SplitExpandEvent, SplitLayoutElement, SplitLayoutElementEventMap, SplitPanelElement, SplitResizeDetail, SplitResizeEvent, type SubComponentActivateDetail, type SubComponentActivateEvent, type SubComponentFactory, type SubComponentItemClickDetail, type SubComponentItemClickEvent, type SubComponentSelectDetail, type SubComponentSelectEvent, type SubComponentTickleDetail, type SubComponentTickleEvent, SwipeElement, SwipeElementEventMap, SwipeInputDetail, SwipeInputEvent, SwitcherItem, Tab, TabAddOptions, TabController, TabControllerOptions, TabListChangeDetail, TabListChangeEvent, TabListDragMode, TabListElement, TabListItemElement, TabListReorderDetail, TabListReorderEvent, TabPanelElement, TabPanelsElement, TextShimmerElement, TickledController, type TickledControllerConfig, type TickledItem, TimelineController, TimelineControllerConfig, TimelineDraggingCallbackDetail, TimelineDraggingDetail, TimelineDraggingEvent, TimelineElementEventMap, TimelineEvent, TimelineEventMoveDetail, TimelineEventMoveEvent, TimelineEventResizeDetail, TimelineEventResizeEvent, TimelineSelectionChangeDetail, TimelineSelectionChangeEvent, TimelineTickleChangeDetail, TimelineTickleChangeEvent, TimelineTrack, TimelineTrackReorderDetail, TimelineTrackReorderEvent, TimelineTrackResizeDetail, TimelineTrackResizeEvent, TimelineTrackSelectDetail, TimelineTrackSelectEvent, TimelineTrackTabElement, TitlebarCloseEvent, TitlebarElement, TitlebarElementEventMap, TitlebarOrientation, TitlebarToggleDetail, TitlebarToggleEvent, TitlebarToggleInteraction, TitlebarVariant, ToolbarAlign, ToolbarElement, ToolbarGroupElement, ToolbarLayout, ToolbarOrientation, ToolbarVerticalWriting, TooltipElement, TooltipOrientations, TrackHeightMode, TrackLayout, TransitoryLabelElement, TreeBaseElement, TreeBaseElementEventMap, TreeCheckboxState, TreeComponent, TreeComponentEventMap, TreeConfig, TreeController, TreeControllerOptions, TreeDataModel, TreeDataModelOptions, TreeExclusivity, TreeFilterPredicate, TreeInteractionMode, type TreeKeyboardNavCallbacks, TreeKeyboardNavController, type TreeKeyboardNavControllerConfig, type TreeKeyboardNavItemId, TreeListAdapterOptions, TreeListElement, type TreeListSearchAdapterOptions, TreeSearchHost, TreeSelectionFilter, TwoSplitLayoutElement, UserScale, ValueMode, VerticalListAdapterOptions, VerticalListElement, ViewRange, WhenSmall, XyAgeStyle, XyDrawStyle, XyPad, XyPadEventMap, XyPadInputDetail, XyPadInputEvent, addPanelToStack, animateListItemIn, animateListItemOut, applyAgeModification, applyHighlights, applySnapshot, attachTimelineInteractions, buildHighlightTargets, buildModel, clearHighlights, collectContainerNames, collectDataResult, collectPanelIds, collectStackPaths, computeColour, computeLeafGeoms, createAcCompletionProvider, createElementIncrSearch, createElementListSearchAdapter, createEmptyLayout, createEmptyStack, createFuzzySearch, createIncrSearch, createPillRenderer, createSplit, createStack, createTreeListAdapter, createTreeListSearchAdapter, createVerticalListAdapter, distribute, extractStack, findNode, findParentOf, findStackOf, findStackPathByName, getActiveDragPanelId, getIcon, getIconEntry, getIconFont, getLeafNeighbours, hasIcon, iconBus, init, insertBeside, isDragging, isMultiMode, isSplit, isStack, keyForElement, listItemFadeKeyframes, listSearchStyles, monitorIndeterminate, moveLeafNodeToEdge, moveLeafStep, normalise, normalize, parseColourScaleAttr, parseLayout, pointerOverAnyHost, prefersReducedMotion, readBaseColour, registerFontIcon, registerIcon, registerListSearchCommands, removePanelFromStack, resolveCssVars, resolveGrid, resolveLeafPath, resolveTracks, serializeLayout, setActive, setIconFont, svgToDataUri, swapLeaves, tickledItemStyles, tickledStyles, timelineStyles, toSnapshot, walk, wrapRoot };
|
|
9070
|
+
export { AcTextChangeDetail, AcTextChangeEvent, AcTextCompletionProvider, AcTextElement, AcTextItem, AcTextSelectDetail, AcTextSelectEvent, type AcTokenAddDetail, type AcTokenAddEvent, AcTokenElement, type AcTokenElementEventMap, type AcTokenItem, type AcTokenRemoveDetail, type AcTokenRemoveEvent, type AcTokenizerFn, type AcTokensChangeDetail, type AcTokensChangeEvent, AddItemOptions, Axis, ButtonElement, Checkbox, CheckboxChangeDetail, CheckboxChangeEvent, CheckboxEventMap, ClickSnapMode, ColourMapConfig, ColourMode, ColourPicker, type ColourPickerChangeEvent, type ColourPickerEventDetail, type ColourPickerInputEvent, ColourPickerPopup, ColourResult, ConfigEntry, ContiguousSelectEventDetail, CrossoverBehaviour, CrumbNavChangeDetail, CrumbNavChangeEvent, CrumbNavExpandDetail, CrumbNavExpandEvent, CrumbNavNavigateDetail, CrumbNavNavigateEvent, CrumbNavigationChangeDetail, CrumbNavigationChangeEvent, CrumbNavigationElement, CrumbNavigationElementEventMap, CrumbNavigationExpandDetail, CrumbNavigationExpandEvent, CrumbNavigationItemClickDetail, CrumbNavigationItemClickEvent, CrumbPathController, CrumbPathControllerOptions, CrumbPathElement, CrumbPathElementEventMap, CrumbSegment, CrumbSiblingLookupFn, type CssVars, CustomCheckboxOptions, DataBatch, DataController, DataControllerOptions, DataDisplayComponent, DataGridCellClickDetail, DataGridCellClickEvent, DataGridCellEditDetail, DataGridCellEditEvent, DataGridColumnReorderDetail, DataGridColumnReorderEvent, DataGridColumnResizeDetail, DataGridColumnResizeEvent, DataGridColumnVisibilityDetail, DataGridColumnVisibilityEvent, DataGridElement, DataGridElementEventMap, DataGridGroupChangeDetail, DataGridGroupChangeEvent, DataGridSelectDetail, DataGridSelectEvent, DataGridSortDetail, DataGridSortEvent, type DataListSearchAdapterOptions, type DataListSearchItem, DataProviderResult, DataTableElement, DataTableElementEventMap, DataTableRow, DataTableRowClickDetail, DataTableRowClickEvent, type DetailFormatter, DetailListElement, type DetailSortComparator, type DetailSortItem, type DetailSortMode, DisplayTextLogic, DistributeResult, DockAddPanelTarget, DockAxis, DockChangeDetail, DockChangeEvent, DockDirection, DockDragBoundaryDetail, DockDragBoundaryEvent, DockDropTarget, type DockDropZone, DockEdge, DockHostElement, DockHostElementEventMap, DockLayout, DockLeafContentRules, DockLeafInfo, DockLeafRef, DockNeighbours, DockNode, DockOperation, DockPanelActivatedDetail, DockPanelActivatedEvent, DockPanelAddedDetail, DockPanelAddedEvent, DockPanelDragStartDetail, DockPanelDragStartEvent, DockPanelElement, DockPanelElementEventMap, DockPanelInit, DockPanelRemovedDetail, DockPanelRemovedEvent, DockPanelSnapshot, DockPanelTearOutDetail, DockPanelTearOutEvent, DockRect, DockSplitNode, DockStackNode, DragSnappingFn, DragTarget, EditableLabel, EditableLabelChangeDetail, EditableLabelChangeEvent, EditableMode, EditableNumber, Effect, type ElementIncrSearch, type ElementIncrSearchOptions, type ElementListSearchAdapterOptions, type ElementListSearchHost, Endpoints, EntryMode, FormElement, FormGroupElement, FormPartElement, FormatValueForHuman, FormattingOptions, type FuzzySearch, type FuzzySearchOptions, FuzzySearchResult, type GridListActivateDetail, type GridListActivateEvent, type GridListCaptionAlign, type GridListCaptionBackdrop, type GridListCaptionPosition, type GridListCaptionStyle, GridListElement, type GridListElementEventMap, type GridListFullElementEventMap, type GridListItemClickDetail, type GridListItemClickEvent, type GridListOrientation, type GridListSelectDetail, type GridListSelectEvent, type GridListTickleDetail, type GridListTickleEvent, type GridListViewportChangeDetail, type GridListViewportChangeEvent, GridMode, GridResolution, GroupNode, GroupedItemListerElement, type GroupedItemListerElementEventMap, type GroupedSelectDetail, type GroupedSelectEvent, HexChangeDetail, HexChangeEvent, type HighlightOptions, type HighlightTarget, ICON_CARET_RIGHT, ICON_CHECK, ICON_CHEVRON_DOWN, ICON_CLOSE, IDataProvider, type IGroupedSubComponent, type IGroupedSubComponentEventMap, type IconChangedDetail, type IconChangedEvent, type IconEntry, type IncrSearch, type IncrSearchChangeCallback, IncrSearchTreeController as IncrSearchMillerController, IncrSearchTreeController, type IncrSearchTreeOptions as IncrSearchMillerOptions, type IncrSearchTreeOptions, type IncrSearchOptions, type IncrSearchResult, type IncrSearchState, type InputMode, ItemsProvider, IxfxHexEditorElement, IxfxIconElement, IxfxRatingElement, IxfxTimelineElement, KeyedElementIndex, LIST_ITEM_MOTION_MS, LIST_SEARCH_COMMAND_IDS, LIST_SEARCH_MODES, LabelledRadialInput, LabelledRangeInput, LabelledSliderInput, LaneData, LaneType, LayoutNode, LayoutSnapshot, LeafGeom, LedElement, LedMode, type ListActivateDetail, type ListActivateEvent, type ListElementEventMap, type ListInteractionMode, type ListItemClickDetail, type ListItemClickEvent, type ListItemMotionOptions, type ListSearchAdapter, ListSearchController, type ListSearchControllerOptions, type ListSearchHost, type ListSearchMode, type ListSelectDetail, type ListSelectEvent, ListSelectionController, type ListSelectionControllerConfig, type ListSelectionGesture, type ListSelectionMode, type ListSelectionModes, type ListTickleDetail, type ListTickleEvent, LoadChildrenCallback, MarkerStyle, index_d_exports as Menu, type TreeActivateDetail as MillerActivateDetail, TreeActivateDetail, type TreeActivateEvent as MillerActivateEvent, TreeActivateEvent, MillerBaseElement, MillerBaseElementEventMap, type TreeCollapseDetail as MillerCollapseDetail, TreeCollapseDetail, type TreeCollapseEvent as MillerCollapseEvent, TreeCollapseEvent, MillerConfig, type TreeExpandDetail as MillerExpandDetail, TreeExpandDetail, type TreeExpandEvent as MillerExpandEvent, TreeExpandEvent, MillerHeaderClickDetail, MillerHeaderClickEvent, MillerHeaderRightClickDetail, MillerHeaderRightClickEvent, type TreeItem as MillerItem, TreeItem, type TreeItemClickDetail as MillerItemClickDetail, TreeItemClickDetail, type TreeItemClickEvent as MillerItemClickEvent, TreeItemClickEvent, MillerItemDblClickDetail, MillerItemDblClickEvent, MillerItemRightClickDetail, MillerItemRightClickEvent, MillerItemState, MillerListElement, type TreeNode as MillerNode, TreeNode, MillerRebaseDetail, MillerRebaseEvent, type TreeSelectDetail as MillerSelectDetail, TreeSelectDetail, type TreeSelectEvent as MillerSelectEvent, TreeSelectEvent, MillerSelectionMode, type TreeTickleDetail as MillerTickleDetail, TreeTickleDetail, type TreeTickleEvent as MillerTickleEvent, TreeTickleEvent, MillerTreeController, MillerTreeControllerOptions, NarrowedTextChangeDetail, NarrowedTextChangeEvent, NarrowedTextElement, NarrowedTextItem, NoneSelectEventDetail, Notification, NotificationContent, NotificationManager, NotificationPillElement, NotificationPillElementEventMap, NotificationRenderer, NotificationRendererHooks, NotificationType, NotifierOptions, type OklchValue, Orientation, PanTextElement, PanelCloseEvent, PanelElement, PanelElementEventMap, PanelGroupElement, PanelGroupElementEventMap, PanelGroupOrientation, PanelGroupReorderDetail, PanelGroupReorderEvent, PanelInfo, PanelNode, PanelOrientation, PanelToggleDetail, PanelToggleEvent, PanelToggleInteraction, PanelVariant, PillPosition, PillQueueDisplay, PillRendererOptions, PillSafeArea, PillTapDetail, PillTapEvent, PlotDataSeries, PlotDataSeriesOptions, PlotHistogram, PlotHistogramBucketClickDetail, PlotHistogramBucketClickEvent, PlotHistogramElementEventMap, PlotHistogramInteractionMode, PlotHistogramOrientation, PlotHistogramValueTooltips, PlotMultiAxis, PlotMultiAxisDataPointClickDetail, PlotMultiAxisDataPointClickEvent, PlotMultiAxisElementEventMap, PlotMultiAxisLayout, PlotSingleAxis, PlotSingleAxisElementEventMap, PlotSingleAxisPointerMoveDetail, PlotSingleAxisPointerMoveEvent, PlotXyAxis, PolarPad, PolarPadInputDetail, PolarPadInputEvent, PopupItem, RadialInputChangeDetail, RadialInputChangeEvent, RadialInputElement, RadialInputInputDetail, RadialInputInputEvent, RadioGroup, RadioGroupChangeDetail, RadioGroupChangeEvent, RadioGroupMode, RadioItem, RangeElement, RangeInput, RangeMultiElement, RangeMultiInputDetail, RangeMultiInputEvent, RatingChangeDetail, RatingChangeEvent, RatingElement, RatingElementEventMap, RatingInputEvent, RatingVariant, type Rect, RectangularSelectEventDetail, type RegisterListSearchCommandsOptions, RendererStyle, ResizeMode, SelectEventDetail, SelectHorizChangeDetail, SelectHorizChangeEvent, SelectHorizElement, SelectHorizEventMap, SelectionMode, SingleAxisAgeStyle, SingleAxisDrawStyle, SingleSelectEventDetail, SliderChangedField, SliderCrossover, SliderHandleKey, SliderInputChangeDetail, SliderInputChangeEvent, SliderInputElement, SliderInputElementEventMap, SliderInputInputDetail, SliderInputInputEvent, SliderLaneData, SliderLaneType, SliderMarkerStyle, SliderOrientation, SliderSingleStyle, SliderValueCFollow, SliderValueDrag, SliderValueMode, SlidingNumberElement, SlidingNumberTrend, SnackbarDismiss, SnackbarElement, SnackbarMode, SnackbarPlacement, SnapChangeDetail, SnapChangeEvent, SnapContainer, SnapInputDetail, SnapInputEvent, SnapLogic, SnapshotNode, SortCompareFn, SplitButton, SplitButtonMode, SplitButtonSelectDetail, SplitButtonSelectEvent, SplitChangeDetail, SplitChangeEvent, SplitCloseDetail, SplitCloseEvent, SplitCollapseDetail, SplitCollapseEvent, SplitExpandDetail, SplitExpandEvent, SplitLayoutElement, SplitLayoutElementEventMap, SplitPanelElement, SplitResizeDetail, SplitResizeEvent, type SubComponentActivateDetail, type SubComponentActivateEvent, type SubComponentFactory, type SubComponentItemClickDetail, type SubComponentItemClickEvent, type SubComponentSelectDetail, type SubComponentSelectEvent, type SubComponentTickleDetail, type SubComponentTickleEvent, SwipeElement, SwipeElementEventMap, SwipeInputDetail, SwipeInputEvent, SwitcherItem, Tab, TabAddOptions, TabController, TabControllerOptions, TabListChangeDetail, TabListChangeEvent, TabListDragMode, TabListElement, TabListItemElement, TabListReorderDetail, TabListReorderEvent, TabPanelElement, TabPanelsElement, TextShimmerElement, TickledController, type TickledControllerConfig, type TickledItem, TimelineController, TimelineControllerConfig, TimelineDraggingCallbackDetail, TimelineDraggingDetail, TimelineDraggingEvent, TimelineElementEventMap, TimelineEvent, TimelineEventMoveDetail, TimelineEventMoveEvent, TimelineEventResizeDetail, TimelineEventResizeEvent, TimelineSelectionChangeDetail, TimelineSelectionChangeEvent, TimelineTickleChangeDetail, TimelineTickleChangeEvent, TimelineTrack, TimelineTrackReorderDetail, TimelineTrackReorderEvent, TimelineTrackResizeDetail, TimelineTrackResizeEvent, TimelineTrackSelectDetail, TimelineTrackSelectEvent, TimelineTrackTabElement, TitlebarCloseEvent, TitlebarElement, TitlebarElementEventMap, TitlebarOrientation, TitlebarToggleDetail, TitlebarToggleEvent, TitlebarToggleInteraction, TitlebarVariant, ToolbarAlign, ToolbarElement, ToolbarGroupElement, ToolbarLayout, ToolbarOrientation, ToolbarVerticalWriting, TooltipElement, TooltipOrientations, TrackHeightMode, TrackLayout, TransitoryLabelElement, TreeBaseElement, TreeBaseElementEventMap, TreeCheckboxState, TreeComponent, TreeComponentEventMap, TreeConfig, TreeController, TreeControllerOptions, TreeDataModel, TreeDataModelOptions, TreeExclusivity, TreeFilterPredicate, TreeInteractionMode, type TreeKeyboardNavCallbacks, TreeKeyboardNavController, type TreeKeyboardNavControllerConfig, type TreeKeyboardNavItemId, TreeListAdapterOptions, TreeListElement, type TreeListSearchAdapterOptions, TreeSearchHost, TreeSelectionFilter, TwoSplitLayoutElement, UserScale, ValueMode, VerticalListAdapterOptions, VerticalListElement, ViewRange, WhenSmall, XyAgeStyle, XyDrawStyle, XyPad, XyPadEventMap, XyPadInputDetail, XyPadInputEvent, addPanelToStack, animateListItemIn, animateListItemOut, applyAgeModification, applyHighlights, applySnapshot, attachTimelineInteractions, buildHighlightTargets, buildModel, clearHighlights, collectContainerNames, collectDataResult, collectPanelIds, collectStackPaths, computeColour, computeLeafGeoms, createAcCompletionProvider, createDataListSearchAdapter, createElementIncrSearch, createElementListSearchAdapter, createEmptyLayout, createEmptyStack, createFuzzySearch, createIncrSearch, createPillRenderer, createSplit, createStack, createTreeListAdapter, createTreeListSearchAdapter, createVerticalListAdapter, distribute, extractStack, findNode, findParentOf, findStackOf, findStackPathByName, getActiveDragPanelId, getIcon, getIconEntry, getIconFont, getLeafNeighbours, hasIcon, iconBus, init, insertBeside, isDragging, isMultiMode, isSplit, isStack, keyForElement, listItemFadeKeyframes, listSearchStyles, monitorIndeterminate, moveLeafNodeToEdge, moveLeafStep, normalise, normalize, panelGapIndex, parseColourScaleAttr, parseLayout, pointerOverAnyHost, prefersReducedMotion, readBaseColour, registerFontIcon, registerIcon, registerListSearchCommands, removePanelFromStack, resolveCssVars, resolveGrid, resolveLeafPath, resolveTracks, serializeLayout, setActive, setIconFont, svgToDataUri, swapLeaves, tickledItemStyles, tickledStyles, timelineStyles, toSnapshot, walk, wrapRoot };
|
|
8832
9071
|
//# sourceMappingURL=index.d.ts.map
|