@wavelengthusaf/web-components 1.19.0 → 1.21.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/dist/cjs/index.cjs +556 -47
- package/dist/cjs/index.d.cts +48 -6
- package/dist/esm/index.d.ts +48 -6
- package/dist/esm/index.js +555 -46
- package/package.json +1 -1
package/dist/cjs/index.d.cts
CHANGED
|
@@ -2307,9 +2307,15 @@ declare class WavelengthPlaneTrail extends WavelengthPlaneTrail_base {
|
|
|
2307
2307
|
declare class WavelengthManyPlanes extends HTMLElement {
|
|
2308
2308
|
static get observedAttributes(): string[];
|
|
2309
2309
|
private shadow;
|
|
2310
|
+
private _numberOfPlanes;
|
|
2311
|
+
private _spaced;
|
|
2312
|
+
get numberOfPlanes(): number;
|
|
2313
|
+
set numberOfPlanes(val: number);
|
|
2314
|
+
get spaced(): boolean;
|
|
2315
|
+
set spaced(val: boolean);
|
|
2310
2316
|
constructor();
|
|
2311
2317
|
connectedCallback(): void;
|
|
2312
|
-
attributeChangedCallback(): void;
|
|
2318
|
+
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
2313
2319
|
updateComponent(): void;
|
|
2314
2320
|
createPlane(opacity: string, color: string, flipped: boolean): SVGSVGElement;
|
|
2315
2321
|
}
|
|
@@ -2367,6 +2373,11 @@ declare class WavelengthPagination extends HTMLElement {
|
|
|
2367
2373
|
private _syncStyles;
|
|
2368
2374
|
}
|
|
2369
2375
|
|
|
2376
|
+
interface SearchResult {
|
|
2377
|
+
id: number | string;
|
|
2378
|
+
title: string;
|
|
2379
|
+
subtitle?: string;
|
|
2380
|
+
}
|
|
2370
2381
|
declare class WavelengthSearch extends HTMLElement {
|
|
2371
2382
|
static get observedAttributes(): string[];
|
|
2372
2383
|
private shadow;
|
|
@@ -2374,7 +2385,7 @@ declare class WavelengthSearch extends HTMLElement {
|
|
|
2374
2385
|
private dropdown;
|
|
2375
2386
|
private inputContainer;
|
|
2376
2387
|
private animatedPlaceholder;
|
|
2377
|
-
private
|
|
2388
|
+
private _options;
|
|
2378
2389
|
private highlightedIndex;
|
|
2379
2390
|
private styleAttributes;
|
|
2380
2391
|
constructor();
|
|
@@ -2385,9 +2396,9 @@ declare class WavelengthSearch extends HTMLElement {
|
|
|
2385
2396
|
private renderDropdown;
|
|
2386
2397
|
private selectOption;
|
|
2387
2398
|
get value(): string;
|
|
2388
|
-
set value(
|
|
2389
|
-
get
|
|
2390
|
-
set
|
|
2399
|
+
set value(searchQueryText: string);
|
|
2400
|
+
get options(): SearchResult[];
|
|
2401
|
+
set options(val: SearchResult[]);
|
|
2391
2402
|
private _syncStyles;
|
|
2392
2403
|
private handleFocusIn;
|
|
2393
2404
|
private handleFocusOut;
|
|
@@ -2887,4 +2898,35 @@ declare class WavelengthSlider extends HTMLElement {
|
|
|
2887
2898
|
private calculatePosition;
|
|
2888
2899
|
}
|
|
2889
2900
|
|
|
2890
|
-
|
|
2901
|
+
declare class WavelengthSideBar extends HTMLElement {
|
|
2902
|
+
static get observedAttributes(): string[];
|
|
2903
|
+
private shadow;
|
|
2904
|
+
private _sections;
|
|
2905
|
+
private container;
|
|
2906
|
+
get sections(): any[];
|
|
2907
|
+
set sections(value: any[]);
|
|
2908
|
+
constructor();
|
|
2909
|
+
connectedCallback(): void;
|
|
2910
|
+
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
2911
|
+
private _render;
|
|
2912
|
+
}
|
|
2913
|
+
|
|
2914
|
+
declare class WavelengthCommentDisplay extends HTMLElement {
|
|
2915
|
+
static get observedAttributes(): string[];
|
|
2916
|
+
private shadow;
|
|
2917
|
+
private styleAttributes;
|
|
2918
|
+
private contentAttributes;
|
|
2919
|
+
private elements;
|
|
2920
|
+
constructor();
|
|
2921
|
+
get selected(): boolean;
|
|
2922
|
+
set selected(val: boolean);
|
|
2923
|
+
connectedCallback(): void;
|
|
2924
|
+
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
2925
|
+
disconnectedCallback(): void;
|
|
2926
|
+
private applyStyles;
|
|
2927
|
+
private applyContent;
|
|
2928
|
+
private handleIconClick;
|
|
2929
|
+
private updateSelectedState;
|
|
2930
|
+
}
|
|
2931
|
+
|
|
2932
|
+
export { BaseWavelengthInput, BaseWavelengthMultiSelectAutocomplete, type CheckboxElements, ChildDataTable, SampleComponent, type SearchResult, WavelengthBadge, WavelengthBanner, WavelengthButton, WavelengthCheckbox, WavelengthCommentDisplay, WavelengthConfirmationModal, type WavelengthConfirmationModalElements, WavelengthDatePicker, WavelengthDialog, WavelengthDropdown, WavelengthFileDropZone, WavelengthForm, WavelengthInput, WavelengthManyPlanes, WavelengthMenu, WavelengthMultiSelectAutocomplete, WavelengthNavBar, WavelengthNotificationPanel, WavelengthPagination, WavelengthPlaneTrail, WavelengthPopUpMenu, WavelengthProgressBar, WavelengthSearch, WavelengthSideBar, WavelengthSlider, WavelengthSnackbar, WavelengthSwitch, WavelengthTitleBar, WavelengthToolTip };
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -2307,9 +2307,15 @@ declare class WavelengthPlaneTrail extends WavelengthPlaneTrail_base {
|
|
|
2307
2307
|
declare class WavelengthManyPlanes extends HTMLElement {
|
|
2308
2308
|
static get observedAttributes(): string[];
|
|
2309
2309
|
private shadow;
|
|
2310
|
+
private _numberOfPlanes;
|
|
2311
|
+
private _spaced;
|
|
2312
|
+
get numberOfPlanes(): number;
|
|
2313
|
+
set numberOfPlanes(val: number);
|
|
2314
|
+
get spaced(): boolean;
|
|
2315
|
+
set spaced(val: boolean);
|
|
2310
2316
|
constructor();
|
|
2311
2317
|
connectedCallback(): void;
|
|
2312
|
-
attributeChangedCallback(): void;
|
|
2318
|
+
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
2313
2319
|
updateComponent(): void;
|
|
2314
2320
|
createPlane(opacity: string, color: string, flipped: boolean): SVGSVGElement;
|
|
2315
2321
|
}
|
|
@@ -2367,6 +2373,11 @@ declare class WavelengthPagination extends HTMLElement {
|
|
|
2367
2373
|
private _syncStyles;
|
|
2368
2374
|
}
|
|
2369
2375
|
|
|
2376
|
+
interface SearchResult {
|
|
2377
|
+
id: number | string;
|
|
2378
|
+
title: string;
|
|
2379
|
+
subtitle?: string;
|
|
2380
|
+
}
|
|
2370
2381
|
declare class WavelengthSearch extends HTMLElement {
|
|
2371
2382
|
static get observedAttributes(): string[];
|
|
2372
2383
|
private shadow;
|
|
@@ -2374,7 +2385,7 @@ declare class WavelengthSearch extends HTMLElement {
|
|
|
2374
2385
|
private dropdown;
|
|
2375
2386
|
private inputContainer;
|
|
2376
2387
|
private animatedPlaceholder;
|
|
2377
|
-
private
|
|
2388
|
+
private _options;
|
|
2378
2389
|
private highlightedIndex;
|
|
2379
2390
|
private styleAttributes;
|
|
2380
2391
|
constructor();
|
|
@@ -2385,9 +2396,9 @@ declare class WavelengthSearch extends HTMLElement {
|
|
|
2385
2396
|
private renderDropdown;
|
|
2386
2397
|
private selectOption;
|
|
2387
2398
|
get value(): string;
|
|
2388
|
-
set value(
|
|
2389
|
-
get
|
|
2390
|
-
set
|
|
2399
|
+
set value(searchQueryText: string);
|
|
2400
|
+
get options(): SearchResult[];
|
|
2401
|
+
set options(val: SearchResult[]);
|
|
2391
2402
|
private _syncStyles;
|
|
2392
2403
|
private handleFocusIn;
|
|
2393
2404
|
private handleFocusOut;
|
|
@@ -2887,4 +2898,35 @@ declare class WavelengthSlider extends HTMLElement {
|
|
|
2887
2898
|
private calculatePosition;
|
|
2888
2899
|
}
|
|
2889
2900
|
|
|
2890
|
-
|
|
2901
|
+
declare class WavelengthSideBar extends HTMLElement {
|
|
2902
|
+
static get observedAttributes(): string[];
|
|
2903
|
+
private shadow;
|
|
2904
|
+
private _sections;
|
|
2905
|
+
private container;
|
|
2906
|
+
get sections(): any[];
|
|
2907
|
+
set sections(value: any[]);
|
|
2908
|
+
constructor();
|
|
2909
|
+
connectedCallback(): void;
|
|
2910
|
+
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
2911
|
+
private _render;
|
|
2912
|
+
}
|
|
2913
|
+
|
|
2914
|
+
declare class WavelengthCommentDisplay extends HTMLElement {
|
|
2915
|
+
static get observedAttributes(): string[];
|
|
2916
|
+
private shadow;
|
|
2917
|
+
private styleAttributes;
|
|
2918
|
+
private contentAttributes;
|
|
2919
|
+
private elements;
|
|
2920
|
+
constructor();
|
|
2921
|
+
get selected(): boolean;
|
|
2922
|
+
set selected(val: boolean);
|
|
2923
|
+
connectedCallback(): void;
|
|
2924
|
+
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
2925
|
+
disconnectedCallback(): void;
|
|
2926
|
+
private applyStyles;
|
|
2927
|
+
private applyContent;
|
|
2928
|
+
private handleIconClick;
|
|
2929
|
+
private updateSelectedState;
|
|
2930
|
+
}
|
|
2931
|
+
|
|
2932
|
+
export { BaseWavelengthInput, BaseWavelengthMultiSelectAutocomplete, type CheckboxElements, ChildDataTable, SampleComponent, type SearchResult, WavelengthBadge, WavelengthBanner, WavelengthButton, WavelengthCheckbox, WavelengthCommentDisplay, WavelengthConfirmationModal, type WavelengthConfirmationModalElements, WavelengthDatePicker, WavelengthDialog, WavelengthDropdown, WavelengthFileDropZone, WavelengthForm, WavelengthInput, WavelengthManyPlanes, WavelengthMenu, WavelengthMultiSelectAutocomplete, WavelengthNavBar, WavelengthNotificationPanel, WavelengthPagination, WavelengthPlaneTrail, WavelengthPopUpMenu, WavelengthProgressBar, WavelengthSearch, WavelengthSideBar, WavelengthSlider, WavelengthSnackbar, WavelengthSwitch, WavelengthTitleBar, WavelengthToolTip };
|