dap-design-system 0.35.12 → 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 +156 -0
- package/dist/dds.js +3265 -3053
- 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 +392 -296
- package/dist/manifest/vscode.html-custom-data.json +265 -117
- package/dist/manifest/web-types.json +753 -501
- package/dist/react-types.ts +14 -10
- package/dist/react.d.ts +373 -145
- package/dist/react.js +474 -446
- 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
|
@@ -6824,6 +6824,70 @@ export declare class SystemLoadingSpinner extends DdsElement {
|
|
|
6824
6824
|
render(): TemplateResult_2;
|
|
6825
6825
|
}
|
|
6826
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
|
+
|
|
6827
6891
|
/**
|
|
6828
6892
|
* `dap-ds-icon-menu-line`
|
|
6829
6893
|
* @summary An icon
|
|
@@ -6920,6 +6984,70 @@ export declare class SystemSearchLine extends DdsElement {
|
|
|
6920
6984
|
render(): TemplateResult_2;
|
|
6921
6985
|
}
|
|
6922
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
|
+
|
|
6923
7051
|
/**
|
|
6924
7052
|
* `dap-ds-icon-star-fill`
|
|
6925
7053
|
* @summary An icon
|
|
@@ -7873,6 +8001,20 @@ declare global {
|
|
|
7873
8001
|
}
|
|
7874
8002
|
|
|
7875
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
|
+
|
|
7876
8018
|
declare global {
|
|
7877
8019
|
interface HTMLElementTagNameMap {
|
|
7878
8020
|
'dap-ds-icon-menu-line': SystemMenuLine;
|
|
@@ -7894,6 +8036,20 @@ declare global {
|
|
|
7894
8036
|
}
|
|
7895
8037
|
|
|
7896
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
|
+
|
|
7897
8053
|
declare global {
|
|
7898
8054
|
interface HTMLElementTagNameMap {
|
|
7899
8055
|
'dap-ds-icon-star-fill': SystemStarFill;
|