@randstad-uca/design-system 1.0.18 → 1.0.20

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,13 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class AccordionPanel extends LitElement {
3
+ title: string;
4
+ private isOpen;
5
+ private isDesktop;
6
+ static styles: import("lit").CSSResult;
7
+ connectedCallback(): void;
8
+ disconnectedCallback(): void;
9
+ private handleResize;
10
+ private toggle;
11
+ private renderIcon;
12
+ render(): import("lit-html").TemplateResult<1>;
13
+ }
@@ -0,0 +1,5 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class AccordionList extends LitElement {
3
+ static styles: import("lit").CSSResult;
4
+ render(): import("lit-html").TemplateResult<1>;
5
+ }
@@ -0,0 +1,12 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class CarouselCard extends LitElement {
3
+ img: string;
4
+ name: string;
5
+ title: string;
6
+ description: string;
7
+ url: string;
8
+ buttonLabel: string;
9
+ static styles: import("lit").CSSResult;
10
+ private handleClick;
11
+ render(): import("lit-html").TemplateResult<1>;
12
+ }
@@ -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,16 @@
1
+ import { LitElement } from 'lit';
2
+ interface TabItem {
3
+ label: string;
4
+ icon: string;
5
+ value: string;
6
+ }
7
+ export declare class TabsBar extends LitElement {
8
+ tabs: TabItem[];
9
+ selected: string;
10
+ private internalSelected;
11
+ static styles: import("lit").CSSResult;
12
+ updated(changed: Map<string, any>): void;
13
+ private selectTab;
14
+ render(): import("lit-html").TemplateResult<1>;
15
+ }
16
+ export {};
@@ -0,0 +1,15 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class UploadImage extends LitElement {
3
+ files: File[];
4
+ private loading;
5
+ private progress;
6
+ private isDragging;
7
+ disabled: boolean;
8
+ static styles: import("lit").CSSResult;
9
+ private handleFiles;
10
+ private onFileInputChange;
11
+ private onDrop;
12
+ private onDragOver;
13
+ private onDragLeave;
14
+ render(): import("lit-html").TemplateResult<1>;
15
+ }
package/dist/index.d.ts CHANGED
@@ -1,15 +1,14 @@
1
1
  export * from './components/Button';
2
2
  export * from './components/Checkbox';
3
- export * from './components/Datepicker';
4
3
  export * from './components/Form';
5
4
  export * from './components/Icon';
6
5
  export * from './components/Modal';
7
6
  export * from './components/Notice';
8
7
  export * from './components/Popup';
9
- export * from './components/Progress';
10
8
  export * from './components/Radio';
11
9
  export * from './components/Select';
12
10
  export * from './components/Stepper';
13
11
  export * from './components/Snackbar';
14
12
  export * from './components/Test';
15
13
  export * from './components/TestButton';
14
+ export * from './components/Tabs';