dap-design-system 0.58.0 → 0.58.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/dist/components/icon/icon.component.d.ts +3 -0
- package/dist/{components-Bo0Y80lA.js → components-DIc6GiB8.js} +4043 -4032
- package/dist/{components-Bo0Y80lA.js.map → components-DIc6GiB8.js.map} +1 -1
- package/dist/components.js +1 -1
- package/dist/dds.js +1 -1
- package/dist/manifest/types/vue/index.d.ts +263 -263
- package/dist/manifest/vscode.html-custom-data.json +192 -192
- package/dist/manifest/web-types.json +501 -501
- package/dist/react/index.d.ts +9 -9
- package/dist/react-types.ts +9 -9
- package/dist/react.js +134 -134
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
|
@@ -34,6 +34,9 @@ export default class DapDSIcon extends DdsElement {
|
|
|
34
34
|
/** Whether the icon is focusable. Default is false. */
|
|
35
35
|
focusable?: boolean;
|
|
36
36
|
static readonly styles: import('lit').CSSResult;
|
|
37
|
+
/** True unless the consumer explicitly opted out with `aria-hidden="false"`. */
|
|
38
|
+
private get _isDecorative();
|
|
39
|
+
protected willUpdate(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
37
40
|
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
38
41
|
render(): import('lit-html').TemplateResult;
|
|
39
42
|
private _getNamedIcon;
|