@carbon/ibm-products-web-components 0.1.0-canary.3594 → 0.1.0-canary.3596
Sign up to get free protection for your applications and to get access to all the features.
@@ -33,19 +33,15 @@ declare const CDSSidePanel_base: {
|
|
33
33
|
readonly offsetTop: number;
|
34
34
|
readonly offsetWidth: number;
|
35
35
|
outerText: string;
|
36
|
-
popover: string | null;
|
37
36
|
spellcheck: boolean;
|
38
37
|
title: string;
|
39
38
|
translate: boolean;
|
40
39
|
attachInternals(): ElementInternals;
|
41
40
|
click(): void;
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
47
|
-
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
48
|
-
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
41
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
42
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
43
|
+
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
|
44
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
|
49
45
|
readonly attributes: NamedNodeMap;
|
50
46
|
readonly classList: DOMTokenList;
|
51
47
|
className: string;
|
@@ -70,12 +66,9 @@ declare const CDSSidePanel_base: {
|
|
70
66
|
slot: string;
|
71
67
|
readonly tagName: string;
|
72
68
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
73
|
-
|
74
|
-
closest<
|
75
|
-
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
|
76
|
-
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
|
69
|
+
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
|
70
|
+
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
|
77
71
|
closest<E extends Element = Element>(selectors: string): E | null;
|
78
|
-
computedStyleMap(): StylePropertyMapReadOnly;
|
79
72
|
getAttribute(qualifiedName: string): string | null;
|
80
73
|
getAttributeNS(namespace: string | null, localName: string): string | null;
|
81
74
|
getAttributeNames(): string[];
|
@@ -84,14 +77,11 @@ declare const CDSSidePanel_base: {
|
|
84
77
|
getBoundingClientRect(): DOMRect;
|
85
78
|
getClientRects(): DOMRectList;
|
86
79
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
87
|
-
getElementsByTagName<
|
88
|
-
getElementsByTagName<
|
89
|
-
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
90
|
-
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
80
|
+
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
81
|
+
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
91
82
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
92
83
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
93
84
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
94
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
95
85
|
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
96
86
|
hasAttribute(qualifiedName: string): boolean;
|
97
87
|
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
@@ -105,22 +95,21 @@ declare const CDSSidePanel_base: {
|
|
105
95
|
removeAttribute(qualifiedName: string): void;
|
106
96
|
removeAttributeNS(namespace: string | null, localName: string): void;
|
107
97
|
removeAttributeNode(attr: Attr): Attr;
|
108
|
-
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
98
|
+
requestFullscreen(options?: FullscreenOptions | undefined): Promise<void>;
|
109
99
|
requestPointerLock(): void;
|
110
|
-
scroll(options?: ScrollToOptions): void;
|
100
|
+
scroll(options?: ScrollToOptions | undefined): void;
|
111
101
|
scroll(x: number, y: number): void;
|
112
|
-
scrollBy(options?: ScrollToOptions): void;
|
102
|
+
scrollBy(options?: ScrollToOptions | undefined): void;
|
113
103
|
scrollBy(x: number, y: number): void;
|
114
|
-
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
115
|
-
scrollTo(options?: ScrollToOptions): void;
|
104
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions | undefined): void;
|
105
|
+
scrollTo(options?: ScrollToOptions | undefined): void;
|
116
106
|
scrollTo(x: number, y: number): void;
|
117
107
|
setAttribute(qualifiedName: string, value: string): void;
|
118
108
|
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
119
109
|
setAttributeNode(attr: Attr): Attr | null;
|
120
110
|
setAttributeNodeNS(attr: Attr): Attr | null;
|
121
|
-
setHTMLUnsafe(html: string): void;
|
122
111
|
setPointerCapture(pointerId: number): void;
|
123
|
-
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
112
|
+
toggleAttribute(qualifiedName: string, force?: boolean | undefined): boolean;
|
124
113
|
webkitMatchesSelector(selectors: string): boolean;
|
125
114
|
readonly baseURI: string;
|
126
115
|
readonly childNodes: NodeListOf<ChildNode>;
|
@@ -136,50 +125,48 @@ declare const CDSSidePanel_base: {
|
|
136
125
|
readonly previousSibling: ChildNode | null;
|
137
126
|
textContent: string | null;
|
138
127
|
appendChild<T_1 extends Node>(node: T_1): T_1;
|
139
|
-
cloneNode(deep?: boolean): Node;
|
128
|
+
cloneNode(deep?: boolean | undefined): Node;
|
140
129
|
compareDocumentPosition(other: Node): number;
|
141
130
|
contains(other: Node | null): boolean;
|
142
|
-
getRootNode(options?: GetRootNodeOptions): Node;
|
131
|
+
getRootNode(options?: GetRootNodeOptions | undefined): Node;
|
143
132
|
hasChildNodes(): boolean;
|
144
|
-
insertBefore<
|
133
|
+
insertBefore<T_2 extends Node>(node: T_2, child: Node | null): T_2;
|
145
134
|
isDefaultNamespace(namespace: string | null): boolean;
|
146
135
|
isEqualNode(otherNode: Node | null): boolean;
|
147
136
|
isSameNode(otherNode: Node | null): boolean;
|
148
137
|
lookupNamespaceURI(prefix: string | null): string | null;
|
149
138
|
lookupPrefix(namespace: string | null): string | null;
|
150
139
|
normalize(): void;
|
151
|
-
removeChild<
|
152
|
-
replaceChild<
|
153
|
-
readonly
|
154
|
-
readonly
|
155
|
-
readonly
|
156
|
-
readonly
|
157
|
-
readonly
|
158
|
-
readonly
|
159
|
-
readonly
|
160
|
-
readonly
|
161
|
-
readonly
|
162
|
-
readonly
|
163
|
-
readonly
|
164
|
-
readonly
|
165
|
-
readonly
|
166
|
-
readonly
|
167
|
-
readonly
|
168
|
-
readonly
|
169
|
-
readonly
|
170
|
-
readonly
|
140
|
+
removeChild<T_3 extends Node>(child: T_3): T_3;
|
141
|
+
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
142
|
+
readonly ATTRIBUTE_NODE: number;
|
143
|
+
readonly CDATA_SECTION_NODE: number;
|
144
|
+
readonly COMMENT_NODE: number;
|
145
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
146
|
+
readonly DOCUMENT_NODE: number;
|
147
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
148
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
149
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
150
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
151
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
152
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
153
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
154
|
+
readonly ELEMENT_NODE: number;
|
155
|
+
readonly ENTITY_NODE: number;
|
156
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
157
|
+
readonly NOTATION_NODE: number;
|
158
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
159
|
+
readonly TEXT_NODE: number;
|
171
160
|
dispatchEvent(event: Event): boolean;
|
172
161
|
ariaAtomic: string | null;
|
173
162
|
ariaAutoComplete: string | null;
|
174
|
-
ariaBrailleLabel: string | null;
|
175
|
-
ariaBrailleRoleDescription: string | null;
|
176
163
|
ariaBusy: string | null;
|
177
164
|
ariaChecked: string | null;
|
178
165
|
ariaColCount: string | null;
|
179
166
|
ariaColIndex: string | null;
|
167
|
+
ariaColIndexText: string | null;
|
180
168
|
ariaColSpan: string | null;
|
181
169
|
ariaCurrent: string | null;
|
182
|
-
ariaDescription: string | null;
|
183
170
|
ariaDisabled: string | null;
|
184
171
|
ariaExpanded: string | null;
|
185
172
|
ariaHasPopup: string | null;
|
@@ -201,6 +188,7 @@ declare const CDSSidePanel_base: {
|
|
201
188
|
ariaRoleDescription: string | null;
|
202
189
|
ariaRowCount: string | null;
|
203
190
|
ariaRowIndex: string | null;
|
191
|
+
ariaRowIndexText: string | null;
|
204
192
|
ariaRowSpan: string | null;
|
205
193
|
ariaSelected: string | null;
|
206
194
|
ariaSetSize: string | null;
|
@@ -210,12 +198,12 @@ declare const CDSSidePanel_base: {
|
|
210
198
|
ariaValueNow: string | null;
|
211
199
|
ariaValueText: string | null;
|
212
200
|
role: string | null;
|
213
|
-
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
214
|
-
getAnimations(options?: GetAnimationsOptions): Animation[];
|
215
|
-
after(...nodes: (
|
216
|
-
before(...nodes: (
|
201
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined): Animation;
|
202
|
+
getAnimations(options?: GetAnimationsOptions | undefined): Animation[];
|
203
|
+
after(...nodes: (string | Node)[]): void;
|
204
|
+
before(...nodes: (string | Node)[]): void;
|
217
205
|
remove(): void;
|
218
|
-
replaceWith(...nodes: (
|
206
|
+
replaceWith(...nodes: (string | Node)[]): void;
|
219
207
|
innerHTML: string;
|
220
208
|
readonly nextElementSibling: Element | null;
|
221
209
|
readonly previousElementSibling: Element | null;
|
@@ -223,21 +211,19 @@ declare const CDSSidePanel_base: {
|
|
223
211
|
readonly children: HTMLCollection;
|
224
212
|
readonly firstElementChild: Element | null;
|
225
213
|
readonly lastElementChild: Element | null;
|
226
|
-
append(...nodes: (
|
227
|
-
prepend(...nodes: (
|
228
|
-
querySelector<
|
229
|
-
querySelector<
|
230
|
-
querySelector<
|
231
|
-
|
232
|
-
|
233
|
-
querySelectorAll<
|
234
|
-
|
235
|
-
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
236
|
-
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
237
|
-
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
238
|
-
replaceChildren(...nodes: (Node | string)[]): void;
|
214
|
+
append(...nodes: (string | Node)[]): void;
|
215
|
+
prepend(...nodes: (string | Node)[]): void;
|
216
|
+
querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6] | null;
|
217
|
+
querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7] | null;
|
218
|
+
querySelector<E_1 extends Element = Element>(selectors: string): E_1 | null;
|
219
|
+
querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
|
220
|
+
querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
|
221
|
+
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
222
|
+
replaceChildren(...nodes: (string | Node)[]): void;
|
239
223
|
readonly assignedSlot: HTMLSlotElement | null;
|
240
|
-
|
224
|
+
oncopy: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
225
|
+
oncut: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
226
|
+
onpaste: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
241
227
|
readonly style: CSSStyleDeclaration;
|
242
228
|
contentEditable: string;
|
243
229
|
enterKeyHint: string;
|
@@ -250,7 +236,6 @@ declare const CDSSidePanel_base: {
|
|
250
236
|
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
251
237
|
onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
252
238
|
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
253
|
-
onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
254
239
|
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
255
240
|
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
256
241
|
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
@@ -259,9 +244,7 @@ declare const CDSSidePanel_base: {
|
|
259
244
|
onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
260
245
|
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
261
246
|
oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
262
|
-
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
263
247
|
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
264
|
-
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
265
248
|
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
266
249
|
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
267
250
|
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
@@ -294,7 +277,6 @@ declare const CDSSidePanel_base: {
|
|
294
277
|
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
295
278
|
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
296
279
|
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
297
|
-
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
298
280
|
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
299
281
|
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
300
282
|
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
@@ -306,12 +288,11 @@ declare const CDSSidePanel_base: {
|
|
306
288
|
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
307
289
|
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
308
290
|
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
309
|
-
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
291
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) | null;
|
310
292
|
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
311
293
|
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
312
294
|
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
313
295
|
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
314
|
-
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
315
296
|
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
316
297
|
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
317
298
|
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
@@ -341,15 +322,15 @@ declare const CDSSidePanel_base: {
|
|
341
322
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
342
323
|
autofocus: boolean;
|
343
324
|
readonly dataset: DOMStringMap;
|
344
|
-
nonce?: string;
|
325
|
+
nonce?: string | undefined;
|
345
326
|
tabIndex: number;
|
346
327
|
blur(): void;
|
347
|
-
focus(options?: FocusOptions): void;
|
328
|
+
focus(options?: FocusOptions | undefined): void;
|
348
329
|
};
|
349
330
|
_hostListeners: {
|
350
331
|
[listenerName: string]: {
|
351
332
|
[type: string]: {
|
352
|
-
options?: boolean | AddEventListenerOptions;
|
333
|
+
options?: boolean | AddEventListenerOptions | undefined;
|
353
334
|
};
|
354
335
|
};
|
355
336
|
};
|
@@ -510,7 +491,7 @@ declare class CDSSidePanel extends CDSSidePanel_base {
|
|
510
491
|
disconnectObservers(): void;
|
511
492
|
connectedCallback(): void;
|
512
493
|
disconnectedCallback(): void;
|
513
|
-
render(): import("lit").TemplateResult<1>;
|
494
|
+
render(): import("lit-html").TemplateResult<1>;
|
514
495
|
updated(changedProperties: any): Promise<void>;
|
515
496
|
/**
|
516
497
|
* @param ms The number of milliseconds.
|
@@ -33,19 +33,15 @@ declare const CDSSidePanel_base: {
|
|
33
33
|
readonly offsetTop: number;
|
34
34
|
readonly offsetWidth: number;
|
35
35
|
outerText: string;
|
36
|
-
popover: string | null;
|
37
36
|
spellcheck: boolean;
|
38
37
|
title: string;
|
39
38
|
translate: boolean;
|
40
39
|
attachInternals(): ElementInternals;
|
41
40
|
click(): void;
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
47
|
-
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
48
|
-
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
41
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
42
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
43
|
+
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
|
44
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
|
49
45
|
readonly attributes: NamedNodeMap;
|
50
46
|
readonly classList: DOMTokenList;
|
51
47
|
className: string;
|
@@ -70,12 +66,9 @@ declare const CDSSidePanel_base: {
|
|
70
66
|
slot: string;
|
71
67
|
readonly tagName: string;
|
72
68
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
73
|
-
|
74
|
-
closest<
|
75
|
-
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
|
76
|
-
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
|
69
|
+
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
|
70
|
+
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
|
77
71
|
closest<E extends Element = Element>(selectors: string): E | null;
|
78
|
-
computedStyleMap(): StylePropertyMapReadOnly;
|
79
72
|
getAttribute(qualifiedName: string): string | null;
|
80
73
|
getAttributeNS(namespace: string | null, localName: string): string | null;
|
81
74
|
getAttributeNames(): string[];
|
@@ -84,14 +77,11 @@ declare const CDSSidePanel_base: {
|
|
84
77
|
getBoundingClientRect(): DOMRect;
|
85
78
|
getClientRects(): DOMRectList;
|
86
79
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
87
|
-
getElementsByTagName<
|
88
|
-
getElementsByTagName<
|
89
|
-
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
90
|
-
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
80
|
+
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
81
|
+
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
91
82
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
92
83
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
93
84
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
94
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
95
85
|
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
96
86
|
hasAttribute(qualifiedName: string): boolean;
|
97
87
|
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
@@ -105,22 +95,21 @@ declare const CDSSidePanel_base: {
|
|
105
95
|
removeAttribute(qualifiedName: string): void;
|
106
96
|
removeAttributeNS(namespace: string | null, localName: string): void;
|
107
97
|
removeAttributeNode(attr: Attr): Attr;
|
108
|
-
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
98
|
+
requestFullscreen(options?: FullscreenOptions | undefined): Promise<void>;
|
109
99
|
requestPointerLock(): void;
|
110
|
-
scroll(options?: ScrollToOptions): void;
|
100
|
+
scroll(options?: ScrollToOptions | undefined): void;
|
111
101
|
scroll(x: number, y: number): void;
|
112
|
-
scrollBy(options?: ScrollToOptions): void;
|
102
|
+
scrollBy(options?: ScrollToOptions | undefined): void;
|
113
103
|
scrollBy(x: number, y: number): void;
|
114
|
-
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
115
|
-
scrollTo(options?: ScrollToOptions): void;
|
104
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions | undefined): void;
|
105
|
+
scrollTo(options?: ScrollToOptions | undefined): void;
|
116
106
|
scrollTo(x: number, y: number): void;
|
117
107
|
setAttribute(qualifiedName: string, value: string): void;
|
118
108
|
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
119
109
|
setAttributeNode(attr: Attr): Attr | null;
|
120
110
|
setAttributeNodeNS(attr: Attr): Attr | null;
|
121
|
-
setHTMLUnsafe(html: string): void;
|
122
111
|
setPointerCapture(pointerId: number): void;
|
123
|
-
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
112
|
+
toggleAttribute(qualifiedName: string, force?: boolean | undefined): boolean;
|
124
113
|
webkitMatchesSelector(selectors: string): boolean;
|
125
114
|
readonly baseURI: string;
|
126
115
|
readonly childNodes: NodeListOf<ChildNode>;
|
@@ -136,50 +125,48 @@ declare const CDSSidePanel_base: {
|
|
136
125
|
readonly previousSibling: ChildNode | null;
|
137
126
|
textContent: string | null;
|
138
127
|
appendChild<T_1 extends Node>(node: T_1): T_1;
|
139
|
-
cloneNode(deep?: boolean): Node;
|
128
|
+
cloneNode(deep?: boolean | undefined): Node;
|
140
129
|
compareDocumentPosition(other: Node): number;
|
141
130
|
contains(other: Node | null): boolean;
|
142
|
-
getRootNode(options?: GetRootNodeOptions): Node;
|
131
|
+
getRootNode(options?: GetRootNodeOptions | undefined): Node;
|
143
132
|
hasChildNodes(): boolean;
|
144
|
-
insertBefore<
|
133
|
+
insertBefore<T_2 extends Node>(node: T_2, child: Node | null): T_2;
|
145
134
|
isDefaultNamespace(namespace: string | null): boolean;
|
146
135
|
isEqualNode(otherNode: Node | null): boolean;
|
147
136
|
isSameNode(otherNode: Node | null): boolean;
|
148
137
|
lookupNamespaceURI(prefix: string | null): string | null;
|
149
138
|
lookupPrefix(namespace: string | null): string | null;
|
150
139
|
normalize(): void;
|
151
|
-
removeChild<
|
152
|
-
replaceChild<
|
153
|
-
readonly
|
154
|
-
readonly
|
155
|
-
readonly
|
156
|
-
readonly
|
157
|
-
readonly
|
158
|
-
readonly
|
159
|
-
readonly
|
160
|
-
readonly
|
161
|
-
readonly
|
162
|
-
readonly
|
163
|
-
readonly
|
164
|
-
readonly
|
165
|
-
readonly
|
166
|
-
readonly
|
167
|
-
readonly
|
168
|
-
readonly
|
169
|
-
readonly
|
170
|
-
readonly
|
140
|
+
removeChild<T_3 extends Node>(child: T_3): T_3;
|
141
|
+
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
142
|
+
readonly ATTRIBUTE_NODE: number;
|
143
|
+
readonly CDATA_SECTION_NODE: number;
|
144
|
+
readonly COMMENT_NODE: number;
|
145
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
146
|
+
readonly DOCUMENT_NODE: number;
|
147
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
148
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
149
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
150
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
151
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
152
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
153
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
154
|
+
readonly ELEMENT_NODE: number;
|
155
|
+
readonly ENTITY_NODE: number;
|
156
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
157
|
+
readonly NOTATION_NODE: number;
|
158
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
159
|
+
readonly TEXT_NODE: number;
|
171
160
|
dispatchEvent(event: Event): boolean;
|
172
161
|
ariaAtomic: string | null;
|
173
162
|
ariaAutoComplete: string | null;
|
174
|
-
ariaBrailleLabel: string | null;
|
175
|
-
ariaBrailleRoleDescription: string | null;
|
176
163
|
ariaBusy: string | null;
|
177
164
|
ariaChecked: string | null;
|
178
165
|
ariaColCount: string | null;
|
179
166
|
ariaColIndex: string | null;
|
167
|
+
ariaColIndexText: string | null;
|
180
168
|
ariaColSpan: string | null;
|
181
169
|
ariaCurrent: string | null;
|
182
|
-
ariaDescription: string | null;
|
183
170
|
ariaDisabled: string | null;
|
184
171
|
ariaExpanded: string | null;
|
185
172
|
ariaHasPopup: string | null;
|
@@ -201,6 +188,7 @@ declare const CDSSidePanel_base: {
|
|
201
188
|
ariaRoleDescription: string | null;
|
202
189
|
ariaRowCount: string | null;
|
203
190
|
ariaRowIndex: string | null;
|
191
|
+
ariaRowIndexText: string | null;
|
204
192
|
ariaRowSpan: string | null;
|
205
193
|
ariaSelected: string | null;
|
206
194
|
ariaSetSize: string | null;
|
@@ -210,12 +198,12 @@ declare const CDSSidePanel_base: {
|
|
210
198
|
ariaValueNow: string | null;
|
211
199
|
ariaValueText: string | null;
|
212
200
|
role: string | null;
|
213
|
-
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
214
|
-
getAnimations(options?: GetAnimationsOptions): Animation[];
|
215
|
-
after(...nodes: (
|
216
|
-
before(...nodes: (
|
201
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined): Animation;
|
202
|
+
getAnimations(options?: GetAnimationsOptions | undefined): Animation[];
|
203
|
+
after(...nodes: (string | Node)[]): void;
|
204
|
+
before(...nodes: (string | Node)[]): void;
|
217
205
|
remove(): void;
|
218
|
-
replaceWith(...nodes: (
|
206
|
+
replaceWith(...nodes: (string | Node)[]): void;
|
219
207
|
innerHTML: string;
|
220
208
|
readonly nextElementSibling: Element | null;
|
221
209
|
readonly previousElementSibling: Element | null;
|
@@ -223,21 +211,19 @@ declare const CDSSidePanel_base: {
|
|
223
211
|
readonly children: HTMLCollection;
|
224
212
|
readonly firstElementChild: Element | null;
|
225
213
|
readonly lastElementChild: Element | null;
|
226
|
-
append(...nodes: (
|
227
|
-
prepend(...nodes: (
|
228
|
-
querySelector<
|
229
|
-
querySelector<
|
230
|
-
querySelector<
|
231
|
-
|
232
|
-
|
233
|
-
querySelectorAll<
|
234
|
-
|
235
|
-
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
236
|
-
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
237
|
-
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
238
|
-
replaceChildren(...nodes: (Node | string)[]): void;
|
214
|
+
append(...nodes: (string | Node)[]): void;
|
215
|
+
prepend(...nodes: (string | Node)[]): void;
|
216
|
+
querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6] | null;
|
217
|
+
querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7] | null;
|
218
|
+
querySelector<E_1 extends Element = Element>(selectors: string): E_1 | null;
|
219
|
+
querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
|
220
|
+
querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
|
221
|
+
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
222
|
+
replaceChildren(...nodes: (string | Node)[]): void;
|
239
223
|
readonly assignedSlot: HTMLSlotElement | null;
|
240
|
-
|
224
|
+
oncopy: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
225
|
+
oncut: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
226
|
+
onpaste: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
|
241
227
|
readonly style: CSSStyleDeclaration;
|
242
228
|
contentEditable: string;
|
243
229
|
enterKeyHint: string;
|
@@ -250,7 +236,6 @@ declare const CDSSidePanel_base: {
|
|
250
236
|
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
251
237
|
onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
252
238
|
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
253
|
-
onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
254
239
|
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
255
240
|
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
256
241
|
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
@@ -259,9 +244,7 @@ declare const CDSSidePanel_base: {
|
|
259
244
|
onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
260
245
|
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
261
246
|
oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
262
|
-
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
263
247
|
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
264
|
-
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
265
248
|
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
266
249
|
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
267
250
|
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
@@ -294,7 +277,6 @@ declare const CDSSidePanel_base: {
|
|
294
277
|
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
295
278
|
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
296
279
|
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
297
|
-
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
298
280
|
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
299
281
|
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
300
282
|
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
@@ -306,12 +288,11 @@ declare const CDSSidePanel_base: {
|
|
306
288
|
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
307
289
|
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
308
290
|
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
309
|
-
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
291
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) | null;
|
310
292
|
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
311
293
|
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
312
294
|
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
313
295
|
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
314
|
-
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
315
296
|
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
316
297
|
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
317
298
|
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
@@ -341,15 +322,15 @@ declare const CDSSidePanel_base: {
|
|
341
322
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
342
323
|
autofocus: boolean;
|
343
324
|
readonly dataset: DOMStringMap;
|
344
|
-
nonce?: string;
|
325
|
+
nonce?: string | undefined;
|
345
326
|
tabIndex: number;
|
346
327
|
blur(): void;
|
347
|
-
focus(options?: FocusOptions): void;
|
328
|
+
focus(options?: FocusOptions | undefined): void;
|
348
329
|
};
|
349
330
|
_hostListeners: {
|
350
331
|
[listenerName: string]: {
|
351
332
|
[type: string]: {
|
352
|
-
options?: boolean | AddEventListenerOptions;
|
333
|
+
options?: boolean | AddEventListenerOptions | undefined;
|
353
334
|
};
|
354
335
|
};
|
355
336
|
};
|
@@ -510,7 +491,7 @@ declare class CDSSidePanel extends CDSSidePanel_base {
|
|
510
491
|
disconnectObservers(): void;
|
511
492
|
connectedCallback(): void;
|
512
493
|
disconnectedCallback(): void;
|
513
|
-
render(): import("lit").TemplateResult<1>;
|
494
|
+
render(): import("lit-html").TemplateResult<1>;
|
514
495
|
updated(changedProperties: any): Promise<void>;
|
515
496
|
/**
|
516
497
|
* @param ms The number of milliseconds.
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@carbon/ibm-products-web-components",
|
3
3
|
"description": "Carbon for IBM Products Web Components",
|
4
|
-
"version": "0.1.0-canary.
|
4
|
+
"version": "0.1.0-canary.3596+911c341d2",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"main": "es/index.js",
|
7
7
|
"module": "es/index.js",
|
@@ -49,14 +49,14 @@
|
|
49
49
|
"wca": "web-component-analyzer analyze src --outFile custom-elements.json"
|
50
50
|
},
|
51
51
|
"dependencies": {
|
52
|
-
"@carbon/ibm-products-styles": "^2.39.1-canary.
|
53
|
-
"@carbon/styles": "1.
|
54
|
-
"@carbon/web-components": "2.
|
52
|
+
"@carbon/ibm-products-styles": "^2.39.1-canary.317+911c341d2",
|
53
|
+
"@carbon/styles": "1.67.0",
|
54
|
+
"@carbon/web-components": "2.15.0",
|
55
55
|
"lit": "^3.1.0"
|
56
56
|
},
|
57
57
|
"devDependencies": {
|
58
|
-
"@carbon/icons": "^11.
|
59
|
-
"@carbon/motion": "^11.23.
|
58
|
+
"@carbon/icons": "^11.51.0",
|
59
|
+
"@carbon/motion": "^11.23.1",
|
60
60
|
"@mordech/vite-lit-loader": "^0.35.0",
|
61
61
|
"@rollup/plugin-alias": "^5.1.1",
|
62
62
|
"@rollup/plugin-commonjs": "^28.0.0",
|
@@ -76,7 +76,7 @@
|
|
76
76
|
"autoprefixer": "^10.4.20",
|
77
77
|
"cssnano": "^7.0.6",
|
78
78
|
"eslint": "^9.11.1",
|
79
|
-
"eslint-config-carbon": "^3.17.
|
79
|
+
"eslint-config-carbon": "^3.17.1",
|
80
80
|
"globby": "^14.0.2",
|
81
81
|
"happy-dom": "^15.7.4",
|
82
82
|
"postcss": "^8.4.47",
|
@@ -92,5 +92,5 @@
|
|
92
92
|
"vitest": "^2.1.2",
|
93
93
|
"web-component-analyzer": "2.0.0"
|
94
94
|
},
|
95
|
-
"gitHead": "
|
95
|
+
"gitHead": "911c341d258b410ff2109ecb39293c2670796a0e"
|
96
96
|
}
|