dap-design-system 0.57.6 → 0.57.8
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/components/form/radio-group/radio-group.component.d.ts +2 -0
- package/dist/components/tab/tab-group.component.d.ts +10 -0
- package/dist/{components-C0QWDkMH.js → components-B66BAgiP.js} +4512 -4498
- package/dist/{components-C0QWDkMH.js.map → components-B66BAgiP.js.map} +1 -1
- package/dist/components.js +1 -1
- package/dist/dds.js +1 -1
- package/dist/manifest/types/vue/index.d.ts +113 -113
- package/dist/manifest/vscode.html-custom-data.json +126 -126
- package/dist/manifest/web-types.json +79 -79
- package/dist/react/index.d.ts +6 -6
- package/dist/react-types.ts +7 -7
- package/dist/react.js +173 -173
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
|
@@ -44,6 +44,8 @@ export default class DapDSRadioGroup extends GenericFormElement {
|
|
|
44
44
|
optionalLabel: string;
|
|
45
45
|
private _previousValue?;
|
|
46
46
|
static readonly styles: import('lit').CSSResult;
|
|
47
|
+
/** A radio value may be `false` or `0`, so emptiness is not the same as falsiness. */
|
|
48
|
+
private get hasValue();
|
|
47
49
|
willUpdate(changedProperties: Map<string, unknown>): void;
|
|
48
50
|
updated(changedProperties: Map<string, unknown>): void;
|
|
49
51
|
attributeChangedCallback(name: string, _old: string | null, value: string | null): void;
|
|
@@ -51,6 +51,16 @@ export default class DapDSTabGroup extends DdsElement {
|
|
|
51
51
|
private _initialEmit;
|
|
52
52
|
emitTabSelect(tabId: string): void;
|
|
53
53
|
attributeChangedCallback(name: string, oldValue: string | null, value: string | null): void;
|
|
54
|
+
/**
|
|
55
|
+
* Collects the title nodes of a tab (every light DOM child that is not
|
|
56
|
+
* slotted into the tab content).
|
|
57
|
+
*
|
|
58
|
+
* The nodes are cloned: rendering the original nodes into the nav would move
|
|
59
|
+
* them out of the tab's light DOM, so any later slotchange would find the tab
|
|
60
|
+
* title empty and the nav labels would disappear.
|
|
61
|
+
* @ignore
|
|
62
|
+
*/
|
|
63
|
+
private getTabTitleNodes;
|
|
54
64
|
handleSlotChange(event: Event): void;
|
|
55
65
|
handleClick(tabId: string | null): void;
|
|
56
66
|
handleKeyDown(event: KeyboardEvent): void;
|