dap-design-system 0.27.0 → 0.28.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.
- package/dist/dds.d.ts +32 -0
- package/dist/dds.js +17027 -129
- package/dist/dds.js.map +1 -1
- package/dist/manifest/types/vue/index.d.ts +234 -234
- package/dist/manifest/vscode.html-custom-data.json +199 -199
- package/dist/manifest/web-types.json +318 -318
- package/dist/react-types.ts +12 -12
- package/dist/react.d.ts +134 -134
- package/dist/react.js +650 -703
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
- package/dist/dds-PUd-LQnh.js +0 -16983
- package/dist/dds-PUd-LQnh.js.map +0 -1
package/dist/dds.d.ts
CHANGED
|
@@ -5226,6 +5226,38 @@ export declare class SystemSubtractLine extends DdsElement {
|
|
|
5226
5226
|
render(): TemplateResult_2;
|
|
5227
5227
|
}
|
|
5228
5228
|
|
|
5229
|
+
/**
|
|
5230
|
+
* `dap-ds-icon-subtract-line2`
|
|
5231
|
+
* @summary An icon
|
|
5232
|
+
* @element dap-ds-icon-subtract-line2
|
|
5233
|
+
* @title - SystemSubtractLine2
|
|
5234
|
+
* @group icon
|
|
5235
|
+
* @icontype system
|
|
5236
|
+
*
|
|
5237
|
+
* @attribute {number} size - (optional) The width and height in pixels
|
|
5238
|
+
* @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
|
|
5239
|
+
* @attribute {boolean} decorative - (optional) If `true` the SVG element will get `aria-hidden="true"`
|
|
5240
|
+
* @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
|
|
5241
|
+
* @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
|
|
5242
|
+
*
|
|
5243
|
+
* @csspart base - The main icon container.
|
|
5244
|
+
*/
|
|
5245
|
+
export declare class SystemSubtractLine2 extends DdsElement {
|
|
5246
|
+
/** (optional) The width and height in pixels */
|
|
5247
|
+
size?: number | undefined;
|
|
5248
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
5249
|
+
selected?: boolean;
|
|
5250
|
+
/** (optional) If `true` the SVG element will get `aria-hidden="true"` */
|
|
5251
|
+
decorative?: boolean;
|
|
5252
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
5253
|
+
accessibilityTitle?: string;
|
|
5254
|
+
/** (optional) If `true` the icon can receive focus */
|
|
5255
|
+
focusable?: boolean;
|
|
5256
|
+
static styles: CSSResult;
|
|
5257
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
5258
|
+
render(): TemplateResult_2;
|
|
5259
|
+
}
|
|
5260
|
+
|
|
5229
5261
|
export { Table }
|
|
5230
5262
|
|
|
5231
5263
|
export { TableController }
|