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 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 }