@randstad-uca/design-system 1.0.4 → 1.0.6

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.
@@ -10,5 +10,6 @@ export declare class Checkbox extends LitElement {
10
10
  static styles: import("lit").CSSResult;
11
11
  private toggleCheck;
12
12
  private renderClause;
13
+ private stopPropagation;
13
14
  render(): import("lit-html").TemplateResult<1>;
14
15
  }
@@ -1,14 +1,8 @@
1
1
  import { LitElement } from 'lit';
2
2
  export declare class CustomModal extends LitElement {
3
3
  open: boolean;
4
- type: string;
5
4
  title: string;
6
- description: string;
7
- width: string;
8
- buttonText: string;
9
- confirmText: string;
10
- cancelText: string;
11
5
  static styles: import("lit").CSSResult;
12
- closeModal(response: boolean): void;
6
+ private closeModal;
13
7
  render(): import("lit-html").TemplateResult<1>;
14
8
  }
@@ -1,6 +1,6 @@
1
1
  import { LitElement } from 'lit';
2
2
  export declare class FilterableSelect extends LitElement {
3
- options: never[];
3
+ options: any[];
4
4
  placeholder: string;
5
5
  defaultValue: string;
6
6
  disabled: boolean;