dap-design-system 0.35.11 → 0.35.13
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/dark.theme.css +2 -2
- package/dist/dds.d.ts +169 -0
- package/dist/dds.js +3274 -3054
- package/dist/dds.js.map +1 -1
- package/dist/high-contrast.theme.css +2 -2
- package/dist/light.theme.css +2 -2
- package/dist/manifest/types/vue/index.d.ts +231 -129
- package/dist/manifest/vscode.html-custom-data.json +239 -91
- package/dist/manifest/web-types.json +415 -153
- package/dist/react-types.ts +10 -6
- package/dist/react.d.ts +391 -146
- package/dist/react.js +465 -435
- package/dist/react.js.map +1 -1
- package/dist/variables/variables-dark.css +2 -1
- package/dist/variables/variables-high-contrast.css +2 -1
- package/dist/variables/variables-light.css +2 -1
- package/package.json +1 -1
package/dist/dds.d.ts
CHANGED
|
@@ -1666,6 +1666,7 @@ export declare class DapDSCard extends DapDSCard_base {
|
|
|
1666
1666
|
/** The rel of the card link. */
|
|
1667
1667
|
rel: string;
|
|
1668
1668
|
static styles: CSSResult;
|
|
1669
|
+
focus(options?: FocusOptions): void;
|
|
1669
1670
|
render(): TemplateResult_2;
|
|
1670
1671
|
}
|
|
1671
1672
|
|
|
@@ -3224,6 +3225,8 @@ declare const DapDSLabel_base: {
|
|
|
3224
3225
|
* @element dap-ds-link
|
|
3225
3226
|
* @title - Link
|
|
3226
3227
|
*
|
|
3228
|
+
* @event dds-click - Emitted when the link is clicked.
|
|
3229
|
+
*
|
|
3227
3230
|
* @slot - The text of the link.
|
|
3228
3231
|
*
|
|
3229
3232
|
* @csspart base - The main link container.
|
|
@@ -3304,6 +3307,7 @@ export declare class DapDSLink extends DdsElement {
|
|
|
3304
3307
|
download: boolean;
|
|
3305
3308
|
static styles: CSSResult;
|
|
3306
3309
|
private handleClick;
|
|
3310
|
+
focus(): void;
|
|
3307
3311
|
render(): TemplateResult_2;
|
|
3308
3312
|
}
|
|
3309
3313
|
|
|
@@ -5435,6 +5439,8 @@ export declare type DdsChangeEvent = CustomEvent<Record<PropertyKey, never>>;
|
|
|
5435
5439
|
|
|
5436
5440
|
export declare type DdsClearEvent = CustomEvent<Record<PropertyKey, never>>;
|
|
5437
5441
|
|
|
5442
|
+
export declare type DdsClickEvent = CustomEvent<Record<PropertyKey, never>>;
|
|
5443
|
+
|
|
5438
5444
|
export declare type DdsClosedEvent = CustomEvent<Record<PropertyKey, never>>;
|
|
5439
5445
|
|
|
5440
5446
|
export declare type DdsCloseEvent = CustomEvent<{
|
|
@@ -6818,6 +6824,70 @@ export declare class SystemLoadingSpinner extends DdsElement {
|
|
|
6818
6824
|
render(): TemplateResult_2;
|
|
6819
6825
|
}
|
|
6820
6826
|
|
|
6827
|
+
/**
|
|
6828
|
+
* `dap-ds-icon-lock-fill`
|
|
6829
|
+
* @summary An icon
|
|
6830
|
+
* @element dap-ds-icon-lock-fill
|
|
6831
|
+
* @title - SystemLockFill
|
|
6832
|
+
* @group icon
|
|
6833
|
+
* @icontype system
|
|
6834
|
+
*
|
|
6835
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
6836
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
6837
|
+
* @attribute {boolean} decorative - (optional) If `true` the SVG element will get `aria-hidden="true"`
|
|
6838
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
6839
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
6840
|
+
*
|
|
6841
|
+
* @csspart base - The main icon container.
|
|
6842
|
+
*/
|
|
6843
|
+
export declare class SystemLockFill extends DdsElement {
|
|
6844
|
+
/** (optional) The width and height in pixels */
|
|
6845
|
+
size?: number | undefined;
|
|
6846
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
6847
|
+
selected?: boolean;
|
|
6848
|
+
/** (optional) If `true` the SVG element will get `aria-hidden="true"` */
|
|
6849
|
+
decorative?: boolean;
|
|
6850
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
6851
|
+
accessibilityTitle?: string;
|
|
6852
|
+
/** (optional) If `true` the icon can receive focus */
|
|
6853
|
+
focusable?: boolean;
|
|
6854
|
+
static styles: CSSResult;
|
|
6855
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
6856
|
+
render(): TemplateResult_2;
|
|
6857
|
+
}
|
|
6858
|
+
|
|
6859
|
+
/**
|
|
6860
|
+
* `dap-ds-icon-lock-line`
|
|
6861
|
+
* @summary An icon
|
|
6862
|
+
* @element dap-ds-icon-lock-line
|
|
6863
|
+
* @title - SystemLockLine
|
|
6864
|
+
* @group icon
|
|
6865
|
+
* @icontype system
|
|
6866
|
+
*
|
|
6867
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
6868
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
6869
|
+
* @attribute {boolean} decorative - (optional) If `true` the SVG element will get `aria-hidden="true"`
|
|
6870
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
6871
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
6872
|
+
*
|
|
6873
|
+
* @csspart base - The main icon container.
|
|
6874
|
+
*/
|
|
6875
|
+
export declare class SystemLockLine extends DdsElement {
|
|
6876
|
+
/** (optional) The width and height in pixels */
|
|
6877
|
+
size?: number | undefined;
|
|
6878
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
6879
|
+
selected?: boolean;
|
|
6880
|
+
/** (optional) If `true` the SVG element will get `aria-hidden="true"` */
|
|
6881
|
+
decorative?: boolean;
|
|
6882
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
6883
|
+
accessibilityTitle?: string;
|
|
6884
|
+
/** (optional) If `true` the icon can receive focus */
|
|
6885
|
+
focusable?: boolean;
|
|
6886
|
+
static styles: CSSResult;
|
|
6887
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
6888
|
+
render(): TemplateResult_2;
|
|
6889
|
+
}
|
|
6890
|
+
|
|
6821
6891
|
/**
|
|
6822
6892
|
* `dap-ds-icon-menu-line`
|
|
6823
6893
|
* @summary An icon
|
|
@@ -6914,6 +6984,70 @@ export declare class SystemSearchLine extends DdsElement {
|
|
|
6914
6984
|
render(): TemplateResult_2;
|
|
6915
6985
|
}
|
|
6916
6986
|
|
|
6987
|
+
/**
|
|
6988
|
+
* `dap-ds-icon-shield-check-fill`
|
|
6989
|
+
* @summary An icon
|
|
6990
|
+
* @element dap-ds-icon-shield-check-fill
|
|
6991
|
+
* @title - SystemShieldCheckFill
|
|
6992
|
+
* @group icon
|
|
6993
|
+
* @icontype system
|
|
6994
|
+
*
|
|
6995
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
6996
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
6997
|
+
* @attribute {boolean} decorative - (optional) If `true` the SVG element will get `aria-hidden="true"`
|
|
6998
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
6999
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
7000
|
+
*
|
|
7001
|
+
* @csspart base - The main icon container.
|
|
7002
|
+
*/
|
|
7003
|
+
export declare class SystemShieldCheckFill extends DdsElement {
|
|
7004
|
+
/** (optional) The width and height in pixels */
|
|
7005
|
+
size?: number | undefined;
|
|
7006
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
7007
|
+
selected?: boolean;
|
|
7008
|
+
/** (optional) If `true` the SVG element will get `aria-hidden="true"` */
|
|
7009
|
+
decorative?: boolean;
|
|
7010
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
7011
|
+
accessibilityTitle?: string;
|
|
7012
|
+
/** (optional) If `true` the icon can receive focus */
|
|
7013
|
+
focusable?: boolean;
|
|
7014
|
+
static styles: CSSResult;
|
|
7015
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
7016
|
+
render(): TemplateResult_2;
|
|
7017
|
+
}
|
|
7018
|
+
|
|
7019
|
+
/**
|
|
7020
|
+
* `dap-ds-icon-shield-check-line`
|
|
7021
|
+
* @summary An icon
|
|
7022
|
+
* @element dap-ds-icon-shield-check-line
|
|
7023
|
+
* @title - SystemShieldCheckLine
|
|
7024
|
+
* @group icon
|
|
7025
|
+
* @icontype system
|
|
7026
|
+
*
|
|
7027
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
7028
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
7029
|
+
* @attribute {boolean} decorative - (optional) If `true` the SVG element will get `aria-hidden="true"`
|
|
7030
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
7031
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
7032
|
+
*
|
|
7033
|
+
* @csspart base - The main icon container.
|
|
7034
|
+
*/
|
|
7035
|
+
export declare class SystemShieldCheckLine extends DdsElement {
|
|
7036
|
+
/** (optional) The width and height in pixels */
|
|
7037
|
+
size?: number | undefined;
|
|
7038
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
7039
|
+
selected?: boolean;
|
|
7040
|
+
/** (optional) If `true` the SVG element will get `aria-hidden="true"` */
|
|
7041
|
+
decorative?: boolean;
|
|
7042
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
7043
|
+
accessibilityTitle?: string;
|
|
7044
|
+
/** (optional) If `true` the icon can receive focus */
|
|
7045
|
+
focusable?: boolean;
|
|
7046
|
+
static styles: CSSResult;
|
|
7047
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
7048
|
+
render(): TemplateResult_2;
|
|
7049
|
+
}
|
|
7050
|
+
|
|
6917
7051
|
/**
|
|
6918
7052
|
* `dap-ds-icon-star-fill`
|
|
6919
7053
|
* @summary An icon
|
|
@@ -7090,6 +7224,13 @@ declare global {
|
|
|
7090
7224
|
}
|
|
7091
7225
|
|
|
7092
7226
|
|
|
7227
|
+
declare global {
|
|
7228
|
+
interface GlobalEventHandlersEventMap {
|
|
7229
|
+
'dds-click': DdsClickEvent;
|
|
7230
|
+
}
|
|
7231
|
+
}
|
|
7232
|
+
|
|
7233
|
+
|
|
7093
7234
|
declare global {
|
|
7094
7235
|
interface GlobalEventHandlersEventMap {
|
|
7095
7236
|
'dds-close': DdsCloseEvent;
|
|
@@ -7860,6 +8001,20 @@ declare global {
|
|
|
7860
8001
|
}
|
|
7861
8002
|
|
|
7862
8003
|
|
|
8004
|
+
declare global {
|
|
8005
|
+
interface HTMLElementTagNameMap {
|
|
8006
|
+
'dap-ds-icon-lock-fill': SystemLockFill;
|
|
8007
|
+
}
|
|
8008
|
+
}
|
|
8009
|
+
|
|
8010
|
+
|
|
8011
|
+
declare global {
|
|
8012
|
+
interface HTMLElementTagNameMap {
|
|
8013
|
+
'dap-ds-icon-lock-line': SystemLockLine;
|
|
8014
|
+
}
|
|
8015
|
+
}
|
|
8016
|
+
|
|
8017
|
+
|
|
7863
8018
|
declare global {
|
|
7864
8019
|
interface HTMLElementTagNameMap {
|
|
7865
8020
|
'dap-ds-icon-menu-line': SystemMenuLine;
|
|
@@ -7881,6 +8036,20 @@ declare global {
|
|
|
7881
8036
|
}
|
|
7882
8037
|
|
|
7883
8038
|
|
|
8039
|
+
declare global {
|
|
8040
|
+
interface HTMLElementTagNameMap {
|
|
8041
|
+
'dap-ds-icon-shield-check-fill': SystemShieldCheckFill;
|
|
8042
|
+
}
|
|
8043
|
+
}
|
|
8044
|
+
|
|
8045
|
+
|
|
8046
|
+
declare global {
|
|
8047
|
+
interface HTMLElementTagNameMap {
|
|
8048
|
+
'dap-ds-icon-shield-check-line': SystemShieldCheckLine;
|
|
8049
|
+
}
|
|
8050
|
+
}
|
|
8051
|
+
|
|
8052
|
+
|
|
7884
8053
|
declare global {
|
|
7885
8054
|
interface HTMLElementTagNameMap {
|
|
7886
8055
|
'dap-ds-icon-star-fill': SystemStarFill;
|