@carbon/ibm-products-web-components 0.10.0-rc.0 → 0.11.0-rc.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.
Files changed (45) hide show
  1. package/custom-elements.json +250 -0
  2. package/es/components/about-modal/about-modal.d.ts +392 -0
  3. package/es/components/about-modal/about-modal.js +143 -0
  4. package/es/components/about-modal/about-modal.js.map +1 -0
  5. package/es/components/about-modal/about-modal.scss.js +13 -0
  6. package/es/components/about-modal/about-modal.scss.js.map +1 -0
  7. package/es/components/about-modal/about-modal.test.d.ts +7 -0
  8. package/es/components/about-modal/about-modal.test.js +87 -0
  9. package/es/components/about-modal/about-modal.test.js.map +1 -0
  10. package/es/components/about-modal/defs.d.ts +8 -0
  11. package/es/components/about-modal/defs.js +8 -0
  12. package/es/components/about-modal/defs.js.map +1 -0
  13. package/es/components/about-modal/index.d.ts +9 -0
  14. package/es/components/about-modal/index.js +9 -0
  15. package/es/components/about-modal/index.js.map +1 -0
  16. package/es/components/side-panel/side-panel.js +64 -63
  17. package/es/components/side-panel/side-panel.js.map +1 -1
  18. package/es/components/side-panel/side-panel.scss.js +1 -1
  19. package/es/components/side-panel/side-panel.test.js +2 -3
  20. package/es/components/side-panel/side-panel.test.js.map +1 -1
  21. package/es/components/tearsheet/tearsheet.js +37 -37
  22. package/es/components/tearsheet/tearsheet.js.map +1 -1
  23. package/es/components/tearsheet/tearsheet.scss.js +1 -1
  24. package/es/components/tearsheet/tearsheet.test.js +2 -3
  25. package/es/components/tearsheet/tearsheet.test.js.map +1 -1
  26. package/es/components/user-avatar/user-avatar.d.ts +5 -0
  27. package/es/components/user-avatar/user-avatar.js +21 -19
  28. package/es/components/user-avatar/user-avatar.js.map +1 -1
  29. package/es/components/user-avatar/user-avatar.scss.js +1 -1
  30. package/es/index.d.ts +1 -0
  31. package/es/index.js +1 -0
  32. package/es/index.js.map +1 -1
  33. package/es/package.json.js +1 -1
  34. package/lib/components/about-modal/about-modal.d.ts +392 -0
  35. package/lib/components/about-modal/about-modal.test.d.ts +7 -0
  36. package/lib/components/about-modal/defs.d.ts +8 -0
  37. package/lib/components/about-modal/defs.js +10 -0
  38. package/lib/components/about-modal/defs.js.map +1 -0
  39. package/lib/components/about-modal/index.d.ts +9 -0
  40. package/lib/components/user-avatar/user-avatar.d.ts +5 -0
  41. package/lib/index.d.ts +1 -0
  42. package/package.json +14 -12
  43. package/scss/components/about-modal/about-modal.scss +117 -0
  44. package/scss/components/about-modal/story-styles.scss +34 -0
  45. package/scss/components/user-avatar/user-avatar.scss +17 -0
@@ -1,6 +1,130 @@
1
1
  {
2
2
  "version": "experimental",
3
3
  "tags": [
4
+ {
5
+ "name": "c4p-about-modal",
6
+ "path": "./src/components/about-modal/about-modal.ts",
7
+ "description": "About Modal.",
8
+ "attributes": [
9
+ {
10
+ "name": "open",
11
+ "description": "Determines if About Modal is open or not.",
12
+ "type": "boolean",
13
+ "default": "true"
14
+ },
15
+ {
16
+ "name": "closeIconDescription",
17
+ "description": "Determines if About Modal is open or not.",
18
+ "type": "string",
19
+ "default": "\"close\""
20
+ },
21
+ {
22
+ "name": "copyrightText",
23
+ "description": "Determines if About Modal is open or not."
24
+ },
25
+ {
26
+ "name": "logo",
27
+ "description": "A visual symbol used to represent the product."
28
+ },
29
+ {
30
+ "name": "version",
31
+ "description": "Text that provides information on the version number of your product."
32
+ },
33
+ {
34
+ "name": "title",
35
+ "description": "Header text that provides the product name. The IBM Services logo consists of two discrete, but required, elements: the iconic IBM 8-bar logo represented alongside the IBM Services logotype. Please follow these guidelines to ensure proper execution."
36
+ },
37
+ {
38
+ "name": "additionalInfo",
39
+ "description": "If you are legally required to display logos of technologies used to build your product you can provide this in the additionalInfo. Additional information will be displayed in the footer."
40
+ },
41
+ {
42
+ "name": "content",
43
+ "description": "Subhead text providing any relevant product disclaimers including legal information (optional)"
44
+ },
45
+ {
46
+ "name": "links",
47
+ "description": "An array of Carbon `Link` component if there are additional information to call out within the card. The about modal should be used to display the product information and not where users go to find help (optional)"
48
+ }
49
+ ],
50
+ "properties": [
51
+ {
52
+ "name": "open",
53
+ "attribute": "open",
54
+ "description": "Determines if About Modal is open or not.",
55
+ "type": "boolean",
56
+ "default": "true"
57
+ },
58
+ {
59
+ "name": "closeIconDescription",
60
+ "attribute": "closeIconDescription",
61
+ "description": "Determines if About Modal is open or not.",
62
+ "type": "string",
63
+ "default": "\"close\""
64
+ },
65
+ {
66
+ "name": "copyrightText",
67
+ "attribute": "copyrightText",
68
+ "description": "Determines if About Modal is open or not."
69
+ },
70
+ {
71
+ "name": "logo",
72
+ "attribute": "logo",
73
+ "description": "A visual symbol used to represent the product."
74
+ },
75
+ {
76
+ "name": "version",
77
+ "attribute": "version",
78
+ "description": "Text that provides information on the version number of your product."
79
+ },
80
+ {
81
+ "name": "title",
82
+ "attribute": "title",
83
+ "description": "Header text that provides the product name. The IBM Services logo consists of two discrete, but required, elements: the iconic IBM 8-bar logo represented alongside the IBM Services logotype. Please follow these guidelines to ensure proper execution."
84
+ },
85
+ {
86
+ "name": "additionalInfo",
87
+ "attribute": "additionalInfo",
88
+ "description": "If you are legally required to display logos of technologies used to build your product you can provide this in the additionalInfo. Additional information will be displayed in the footer."
89
+ },
90
+ {
91
+ "name": "content",
92
+ "attribute": "content",
93
+ "description": "Subhead text providing any relevant product disclaimers including legal information (optional)"
94
+ },
95
+ {
96
+ "name": "links",
97
+ "attribute": "links",
98
+ "description": "An array of Carbon `Link` component if there are additional information to call out within the card. The about modal should be used to display the product information and not where users go to find help (optional)"
99
+ },
100
+ {
101
+ "name": "styles",
102
+ "default": "\"styles\""
103
+ },
104
+ {
105
+ "name": "size",
106
+ "type": "number"
107
+ },
108
+ {
109
+ "name": "customElements",
110
+ "type": "CustomElementRegistry | undefined"
111
+ },
112
+ {
113
+ "name": "registry",
114
+ "type": "CustomElementRegistry | undefined"
115
+ }
116
+ ],
117
+ "events": [
118
+ {
119
+ "name": "c4p-about-modal-beingclosed",
120
+ "description": "The custom event fired before this about modal is being closed upon a user gesture.\nCancellation of this event stops the user-initiated action of closing this about modal."
121
+ },
122
+ {
123
+ "name": "c4p-about-modal-closed",
124
+ "description": "The custom event fired after this about modal is closed upon a user gesture."
125
+ }
126
+ ]
127
+ },
4
128
  {
5
129
  "name": "c4p-side-panel",
6
130
  "path": "./src/components/side-panel/side-panel.ts",
@@ -190,6 +314,14 @@
190
314
  "description": "SidePanel size.",
191
315
  "type": "SIDE_PANEL_SIZE",
192
316
  "default": "\"md\""
317
+ },
318
+ {
319
+ "name": "customElements",
320
+ "type": "CustomElementRegistry | undefined"
321
+ },
322
+ {
323
+ "name": "registry",
324
+ "type": "CustomElementRegistry | undefined"
193
325
  }
194
326
  ],
195
327
  "events": [
@@ -339,6 +471,14 @@
339
471
  {
340
472
  "name": "size",
341
473
  "type": "number"
474
+ },
475
+ {
476
+ "name": "customElements",
477
+ "type": "CustomElementRegistry | undefined"
478
+ },
479
+ {
480
+ "name": "registry",
481
+ "type": "CustomElementRegistry | undefined"
342
482
  }
343
483
  ],
344
484
  "events": [
@@ -351,6 +491,116 @@
351
491
  "description": "The custom event fired after this tearsheet is closed upon a user gesture."
352
492
  }
353
493
  ]
494
+ },
495
+ {
496
+ "name": "c4p-user-avatar",
497
+ "path": "./src/components/user-avatar/user-avatar.ts",
498
+ "description": "Useravatar.",
499
+ "attributes": [
500
+ {
501
+ "name": "tooltip-text",
502
+ "description": "Specify the text of the tooltip.\nCan be string"
503
+ },
504
+ {
505
+ "name": "tooltip-alignment",
506
+ "description": "Specify the alignment of the tooltip.",
507
+ "type": "string",
508
+ "default": "\"bottom\""
509
+ },
510
+ {
511
+ "name": "name",
512
+ "description": "When passing the name prop, either send the initials to be used or the user's full name. The first two capital letters of the user's name will be used as the name."
513
+ },
514
+ {
515
+ "name": "renderIcon",
516
+ "description": "Provide a custom icon to use if you need to use an icon other than the default one"
517
+ },
518
+ {
519
+ "name": "image",
520
+ "description": "When passing the image prop, supply a full path to the image to be displayed."
521
+ },
522
+ {
523
+ "name": "image-description",
524
+ "description": "When passing the image prop use the imageDescription prop to describe the image for screen reader."
525
+ },
526
+ {
527
+ "name": "background-color",
528
+ "description": "Provide the background color need to be set for UserAvatar.",
529
+ "type": "string",
530
+ "default": "\"order-1-cyan\""
531
+ },
532
+ {
533
+ "name": "theme",
534
+ "description": "Set theme in which the component will be rendered."
535
+ },
536
+ {
537
+ "name": "size",
538
+ "description": "Set the size of the avatar circle"
539
+ }
540
+ ],
541
+ "properties": [
542
+ {
543
+ "name": "tooltipText",
544
+ "attribute": "tooltip-text",
545
+ "description": "Specify the text of the tooltip.\nCan be string"
546
+ },
547
+ {
548
+ "name": "tooltipAlignment",
549
+ "attribute": "tooltip-alignment",
550
+ "description": "Specify the alignment of the tooltip.",
551
+ "type": "string",
552
+ "default": "\"bottom\""
553
+ },
554
+ {
555
+ "name": "name",
556
+ "attribute": "name",
557
+ "description": "When passing the name prop, either send the initials to be used or the user's full name. The first two capital letters of the user's name will be used as the name."
558
+ },
559
+ {
560
+ "name": "renderIcon",
561
+ "attribute": "renderIcon",
562
+ "description": "Provide a custom icon to use if you need to use an icon other than the default one"
563
+ },
564
+ {
565
+ "name": "image",
566
+ "attribute": "image",
567
+ "description": "When passing the image prop, supply a full path to the image to be displayed."
568
+ },
569
+ {
570
+ "name": "imageDescription",
571
+ "attribute": "image-description",
572
+ "description": "When passing the image prop use the imageDescription prop to describe the image for screen reader."
573
+ },
574
+ {
575
+ "name": "backgroundColor",
576
+ "attribute": "background-color",
577
+ "description": "Provide the background color need to be set for UserAvatar.",
578
+ "type": "string",
579
+ "default": "\"order-1-cyan\""
580
+ },
581
+ {
582
+ "name": "theme",
583
+ "attribute": "theme",
584
+ "description": "Set theme in which the component will be rendered."
585
+ },
586
+ {
587
+ "name": "styles",
588
+ "default": "\"styles\""
589
+ },
590
+ {
591
+ "name": "size",
592
+ "attribute": "size",
593
+ "description": "Set the size of the avatar circle"
594
+ },
595
+ {
596
+ "name": "customElements",
597
+ "type": "CustomElementRegistry | undefined"
598
+ },
599
+ {
600
+ "name": "registry",
601
+ "type": "CustomElementRegistry | undefined"
602
+ }
603
+ ]
354
604
  }
355
605
  ]
356
606
  }
@@ -0,0 +1,392 @@
1
+ /**
2
+ * @license
3
+ *
4
+ * Copyright IBM Corp. 2025
5
+ *
6
+ * This source code is licensed under the Apache-2.0 license found in the
7
+ * LICENSE file in the root directory of this source tree.
8
+ */
9
+ import { LitElement } from 'lit';
10
+ import '@carbon/web-components/es/components/modal/index.js';
11
+ declare const CDSAboutModal_base: {
12
+ new (...args: any[]): {
13
+ _handles: Set<import("@carbon/web-components/es/globals/internal/handle").default>;
14
+ connectedCallback(): void;
15
+ disconnectedCallback(): void;
16
+ accessKey: string;
17
+ readonly accessKeyLabel: string;
18
+ autocapitalize: string;
19
+ dir: string;
20
+ draggable: boolean;
21
+ hidden: boolean;
22
+ inert: boolean;
23
+ innerText: string;
24
+ lang: string;
25
+ readonly offsetHeight: number;
26
+ readonly offsetLeft: number;
27
+ readonly offsetParent: Element | null;
28
+ readonly offsetTop: number;
29
+ readonly offsetWidth: number;
30
+ outerText: string;
31
+ spellcheck: boolean;
32
+ title: string;
33
+ translate: boolean;
34
+ attachInternals(): ElementInternals;
35
+ click(): void;
36
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
37
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
38
+ removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
39
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
40
+ readonly attributes: NamedNodeMap;
41
+ readonly classList: DOMTokenList;
42
+ className: string;
43
+ readonly clientHeight: number;
44
+ readonly clientLeft: number;
45
+ readonly clientTop: number;
46
+ readonly clientWidth: number;
47
+ id: string;
48
+ readonly localName: string;
49
+ readonly namespaceURI: string | null;
50
+ onfullscreenchange: ((this: Element, ev: Event) => any) | null;
51
+ onfullscreenerror: ((this: Element, ev: Event) => any) | null;
52
+ outerHTML: string;
53
+ readonly ownerDocument: Document;
54
+ readonly part: DOMTokenList;
55
+ readonly prefix: string | null;
56
+ readonly scrollHeight: number;
57
+ scrollLeft: number;
58
+ scrollTop: number;
59
+ readonly scrollWidth: number;
60
+ readonly shadowRoot: ShadowRoot | null;
61
+ slot: string;
62
+ readonly tagName: string;
63
+ attachShadow(init: ShadowRootInit): ShadowRoot;
64
+ closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
65
+ closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
66
+ closest<E extends Element = Element>(selectors: string): E | null;
67
+ getAttribute(qualifiedName: string): string | null;
68
+ getAttributeNS(namespace: string | null, localName: string): string | null;
69
+ getAttributeNames(): string[];
70
+ getAttributeNode(qualifiedName: string): Attr | null;
71
+ getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
72
+ getBoundingClientRect(): DOMRect;
73
+ getClientRects(): DOMRectList;
74
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
75
+ getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
76
+ getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
77
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
78
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
79
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
80
+ getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
81
+ hasAttribute(qualifiedName: string): boolean;
82
+ hasAttributeNS(namespace: string | null, localName: string): boolean;
83
+ hasAttributes(): boolean;
84
+ hasPointerCapture(pointerId: number): boolean;
85
+ insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
86
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
87
+ insertAdjacentText(where: InsertPosition, data: string): void;
88
+ matches(selectors: string): boolean;
89
+ releasePointerCapture(pointerId: number): void;
90
+ removeAttribute(qualifiedName: string): void;
91
+ removeAttributeNS(namespace: string | null, localName: string): void;
92
+ removeAttributeNode(attr: Attr): Attr;
93
+ requestFullscreen(options?: FullscreenOptions | undefined): Promise<void>;
94
+ requestPointerLock(): void;
95
+ scroll(options?: ScrollToOptions | undefined): void;
96
+ scroll(x: number, y: number): void;
97
+ scrollBy(options?: ScrollToOptions | undefined): void;
98
+ scrollBy(x: number, y: number): void;
99
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions | undefined): void;
100
+ scrollTo(options?: ScrollToOptions | undefined): void;
101
+ scrollTo(x: number, y: number): void;
102
+ setAttribute(qualifiedName: string, value: string): void;
103
+ setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
104
+ setAttributeNode(attr: Attr): Attr | null;
105
+ setAttributeNodeNS(attr: Attr): Attr | null;
106
+ setPointerCapture(pointerId: number): void;
107
+ toggleAttribute(qualifiedName: string, force?: boolean | undefined): boolean;
108
+ webkitMatchesSelector(selectors: string): boolean;
109
+ readonly baseURI: string;
110
+ readonly childNodes: NodeListOf<ChildNode>;
111
+ readonly firstChild: ChildNode | null;
112
+ readonly isConnected: boolean;
113
+ readonly lastChild: ChildNode | null;
114
+ readonly nextSibling: ChildNode | null;
115
+ readonly nodeName: string;
116
+ readonly nodeType: number;
117
+ nodeValue: string | null;
118
+ readonly parentElement: HTMLElement | null;
119
+ readonly parentNode: ParentNode | null;
120
+ readonly previousSibling: ChildNode | null;
121
+ textContent: string | null;
122
+ appendChild<T_1 extends Node>(node: T_1): T_1;
123
+ cloneNode(deep?: boolean | undefined): Node;
124
+ compareDocumentPosition(other: Node): number;
125
+ contains(other: Node | null): boolean;
126
+ getRootNode(options?: GetRootNodeOptions | undefined): Node;
127
+ hasChildNodes(): boolean;
128
+ insertBefore<T_2 extends Node>(node: T_2, child: Node | null): T_2;
129
+ isDefaultNamespace(namespace: string | null): boolean;
130
+ isEqualNode(otherNode: Node | null): boolean;
131
+ isSameNode(otherNode: Node | null): boolean;
132
+ lookupNamespaceURI(prefix: string | null): string | null;
133
+ lookupPrefix(namespace: string | null): string | null;
134
+ normalize(): void;
135
+ removeChild<T_3 extends Node>(child: T_3): T_3;
136
+ replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
137
+ readonly ATTRIBUTE_NODE: number;
138
+ readonly CDATA_SECTION_NODE: number;
139
+ readonly COMMENT_NODE: number;
140
+ readonly DOCUMENT_FRAGMENT_NODE: number;
141
+ readonly DOCUMENT_NODE: number;
142
+ readonly DOCUMENT_POSITION_CONTAINED_BY: number;
143
+ readonly DOCUMENT_POSITION_CONTAINS: number;
144
+ readonly DOCUMENT_POSITION_DISCONNECTED: number;
145
+ readonly DOCUMENT_POSITION_FOLLOWING: number;
146
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
147
+ readonly DOCUMENT_POSITION_PRECEDING: number;
148
+ readonly DOCUMENT_TYPE_NODE: number;
149
+ readonly ELEMENT_NODE: number;
150
+ readonly ENTITY_NODE: number;
151
+ readonly ENTITY_REFERENCE_NODE: number;
152
+ readonly NOTATION_NODE: number;
153
+ readonly PROCESSING_INSTRUCTION_NODE: number;
154
+ readonly TEXT_NODE: number;
155
+ dispatchEvent(event: Event): boolean;
156
+ ariaAtomic: string | null;
157
+ ariaAutoComplete: string | null;
158
+ ariaBusy: string | null;
159
+ ariaChecked: string | null;
160
+ ariaColCount: string | null;
161
+ ariaColIndex: string | null;
162
+ ariaColIndexText: string | null;
163
+ ariaColSpan: string | null;
164
+ ariaCurrent: string | null;
165
+ ariaDisabled: string | null;
166
+ ariaExpanded: string | null;
167
+ ariaHasPopup: string | null;
168
+ ariaHidden: string | null;
169
+ ariaInvalid: string | null;
170
+ ariaKeyShortcuts: string | null;
171
+ ariaLabel: string | null;
172
+ ariaLevel: string | null;
173
+ ariaLive: string | null;
174
+ ariaModal: string | null;
175
+ ariaMultiLine: string | null;
176
+ ariaMultiSelectable: string | null;
177
+ ariaOrientation: string | null;
178
+ ariaPlaceholder: string | null;
179
+ ariaPosInSet: string | null;
180
+ ariaPressed: string | null;
181
+ ariaReadOnly: string | null;
182
+ ariaRequired: string | null;
183
+ ariaRoleDescription: string | null;
184
+ ariaRowCount: string | null;
185
+ ariaRowIndex: string | null;
186
+ ariaRowIndexText: string | null;
187
+ ariaRowSpan: string | null;
188
+ ariaSelected: string | null;
189
+ ariaSetSize: string | null;
190
+ ariaSort: string | null;
191
+ ariaValueMax: string | null;
192
+ ariaValueMin: string | null;
193
+ ariaValueNow: string | null;
194
+ ariaValueText: string | null;
195
+ role: string | null;
196
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined): Animation;
197
+ getAnimations(options?: GetAnimationsOptions | undefined): Animation[];
198
+ after(...nodes: (string | Node)[]): void;
199
+ before(...nodes: (string | Node)[]): void;
200
+ remove(): void;
201
+ replaceWith(...nodes: (string | Node)[]): void;
202
+ innerHTML: string;
203
+ readonly nextElementSibling: Element | null;
204
+ readonly previousElementSibling: Element | null;
205
+ readonly childElementCount: number;
206
+ readonly children: HTMLCollection;
207
+ readonly firstElementChild: Element | null;
208
+ readonly lastElementChild: Element | null;
209
+ append(...nodes: (string | Node)[]): void;
210
+ prepend(...nodes: (string | Node)[]): void;
211
+ querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6] | null;
212
+ querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7] | null;
213
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1 | null;
214
+ querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
215
+ querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
216
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
217
+ replaceChildren(...nodes: (string | Node)[]): void;
218
+ readonly assignedSlot: HTMLSlotElement | null;
219
+ oncopy: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
220
+ oncut: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
221
+ onpaste: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
222
+ readonly style: CSSStyleDeclaration;
223
+ contentEditable: string;
224
+ enterKeyHint: string;
225
+ inputMode: string;
226
+ readonly isContentEditable: boolean;
227
+ onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
228
+ onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
229
+ onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
230
+ onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
231
+ onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
232
+ onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
233
+ onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
234
+ onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
235
+ oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
236
+ oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
237
+ oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
238
+ onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
239
+ onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
240
+ onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
241
+ oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
242
+ oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
243
+ ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
244
+ ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
245
+ ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
246
+ ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
247
+ ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
248
+ ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
249
+ ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
250
+ ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
251
+ ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
252
+ onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
253
+ onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
254
+ onerror: OnErrorEventHandler;
255
+ onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
256
+ onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
257
+ ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
258
+ oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
259
+ oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
260
+ onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
261
+ onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
262
+ onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
263
+ onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
264
+ onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
265
+ onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
266
+ onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
267
+ onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
268
+ onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
269
+ onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
270
+ onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
271
+ onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
272
+ onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
273
+ onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
274
+ onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
275
+ onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
276
+ onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
277
+ onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
278
+ onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
279
+ onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
280
+ onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
281
+ onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
282
+ onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
283
+ onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
284
+ onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
285
+ onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
286
+ onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) | null;
287
+ onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
288
+ onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
289
+ onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
290
+ onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
291
+ onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
292
+ onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
293
+ onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
294
+ onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
295
+ onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
296
+ onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
297
+ onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
298
+ onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
299
+ onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
300
+ onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
301
+ ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
302
+ ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
303
+ ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
304
+ ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
305
+ ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
306
+ ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
307
+ ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
308
+ ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
309
+ ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
310
+ ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
311
+ onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
312
+ onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
313
+ onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
314
+ onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
315
+ onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
316
+ onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
317
+ onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
318
+ autofocus: boolean;
319
+ readonly dataset: DOMStringMap;
320
+ nonce?: string | undefined;
321
+ tabIndex: number;
322
+ blur(): void;
323
+ focus(options?: FocusOptions | undefined): void;
324
+ };
325
+ _hostListeners: {
326
+ [listenerName: string]: {
327
+ [type: string]: {
328
+ options?: boolean | AddEventListenerOptions | undefined;
329
+ };
330
+ };
331
+ };
332
+ } & typeof LitElement;
333
+ /**
334
+ * About Modal.
335
+ *
336
+ * @element c4p-about-modal
337
+ * @csspart dialog The dialog.
338
+ * @fires c4p-about-modal-beingclosed
339
+ * The custom event fired before this about modal is being closed upon a user gesture.
340
+ * Cancellation of this event stops the user-initiated action of closing this about modal.
341
+ * @fires c4p-about-modal-closed - The custom event fired after this about modal is closed upon a user gesture.
342
+ */
343
+ declare class CDSAboutModal extends CDSAboutModal_base {
344
+ /**
345
+ * Determines if About Modal is open or not.
346
+ */
347
+ open: boolean;
348
+ /**
349
+ * Determines if About Modal is open or not.
350
+ */
351
+ closeIconDescription: string;
352
+ /**
353
+ * Determines if About Modal is open or not.
354
+ */
355
+ copyrightText: any;
356
+ /**
357
+ * A visual symbol used to represent the product.
358
+ */
359
+ logo: any;
360
+ /**
361
+ * Text that provides information on the version number of your product.
362
+ */
363
+ version: any;
364
+ /**
365
+ * Header text that provides the product name. The IBM Services logo consists of two discrete, but required, elements: the iconic IBM 8-bar logo represented alongside the IBM Services logotype. Please follow these guidelines to ensure proper execution.
366
+ */
367
+ title: any;
368
+ /**
369
+ * If you are legally required to display logos of technologies used to build your product you can provide this in the additionalInfo. Additional information will be displayed in the footer.
370
+ */
371
+ additionalInfo: any;
372
+ /**
373
+ * Subhead text providing any relevant product disclaimers including legal information (optional)
374
+ */
375
+ content: any;
376
+ /**
377
+ * An array of Carbon `Link` component if there are additional information to call out within the card. The about modal should be used to display the product information and not where users go to find help (optional)
378
+ */
379
+ links: any;
380
+ /**
381
+ * To check if the modal body is overflowing or not.
382
+ */
383
+ private isOverflowing;
384
+ private container;
385
+ firstUpdated(): void;
386
+ updated(): void;
387
+ render(): import("lit-html").TemplateResult<1>;
388
+ private _handleClose;
389
+ private _checkOverflow;
390
+ static styles: any;
391
+ }
392
+ export default CDSAboutModal;