@randstad-uca/design-system 1.0.18 → 1.0.19

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.
@@ -0,0 +1,8 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class AccordionPanel extends LitElement {
3
+ title: string;
4
+ private isOpen;
5
+ static styles: import("lit").CSSResult;
6
+ private toggle;
7
+ render(): import("lit-html").TemplateResult<1>;
8
+ }
@@ -0,0 +1,16 @@
1
+ import { LitElement } from 'lit';
2
+ interface Service {
3
+ img: string;
4
+ name: string;
5
+ title: string;
6
+ description: string;
7
+ url: string;
8
+ }
9
+ export declare class CarouselCards extends LitElement {
10
+ services: Service[];
11
+ buttonLabel: string;
12
+ static styles: import("lit").CSSResult;
13
+ private handleClick;
14
+ render(): import("lit-html").TemplateResult<1>;
15
+ }
16
+ export {};
@@ -2,6 +2,7 @@ import { LitElement } from 'lit';
2
2
  export declare class CustomModal extends LitElement {
3
3
  open: boolean;
4
4
  title: string;
5
+ scrollable: boolean;
5
6
  static styles: import("lit").CSSResult;
6
7
  private closeModal;
7
8
  render(): import("lit-html").TemplateResult<1>;
@@ -0,0 +1,7 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class ProgressCircle extends LitElement {
3
+ value: number;
4
+ max: number;
5
+ static styles: import("lit").CSSResult;
6
+ render(): import("lit-html").TemplateResult<1>;
7
+ }
@@ -8,18 +8,24 @@ export declare class FilterableSelect extends LitElement {
8
8
  value: string;
9
9
  labelColor: string;
10
10
  filterable: boolean;
11
+ maxLength?: number;
12
+ private isMobile;
13
+ error: boolean;
11
14
  filteredOptions: never[];
12
15
  filterValue: string;
13
16
  isOpen: boolean;
14
- maxLength?: number;
17
+ mobileFilterValue: string;
15
18
  private debounceTimeout;
16
19
  static styles: import("lit").CSSResult;
17
20
  constructor();
18
21
  willUpdate(changedProperties: Map<string, any>): void;
19
22
  connectedCallback(): void;
20
23
  disconnectedCallback(): void;
24
+ private updateResponsiveModeBound;
25
+ private updateResponsiveMode;
21
26
  handleInputClick(e: any): void;
22
- handleInput(e: any): void;
27
+ handleInput(e: Event): void;
28
+ handleMobileInput(e: Event): void;
23
29
  handleSelect(option: any): void;
24
30
  handleIconClick(): void;
25
31
  handleClickOutside(e: any): void;
@@ -0,0 +1,12 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class UploadImage extends LitElement {
3
+ files: File[];
4
+ private isDragging;
5
+ static styles: import("lit").CSSResult;
6
+ private handleFiles;
7
+ private onFileInputChange;
8
+ private onDrop;
9
+ private onDragOver;
10
+ private onDragLeave;
11
+ render(): import("lit-html").TemplateResult<1>;
12
+ }
package/dist/index.d.ts CHANGED
@@ -6,7 +6,6 @@ export * from './components/Icon';
6
6
  export * from './components/Modal';
7
7
  export * from './components/Notice';
8
8
  export * from './components/Popup';
9
- export * from './components/Progress';
10
9
  export * from './components/Radio';
11
10
  export * from './components/Select';
12
11
  export * from './components/Stepper';