@randstad-uca/design-system 1.0.17 → 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.
- package/dist/components/Accordion.d.ts +8 -0
- package/dist/components/CarouselCards.d.ts +16 -0
- package/dist/components/Modal.d.ts +1 -0
- package/dist/components/ProgressCircle.d.ts +7 -0
- package/dist/components/Select.d.ts +8 -2
- package/dist/components/Upload.d.ts +12 -0
- package/dist/index.d.ts +0 -1
- package/dist/index.js +434 -349
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/stories/Accordion.stories.d.ts +5 -0
- package/dist/stories/CarouselCards.stories.d.ts +5 -0
- package/dist/stories/Modal.stories.d.ts +10 -5
- package/dist/stories/ProgressCircle.stories.d.ts +5 -0
- package/dist/stories/Select.stories.d.ts +74 -9
- package/dist/stories/Upload.stories.d.ts +7 -0
- package/package.json +1 -1
- package/dist/components/Progress.d.ts +0 -11
- package/dist/stories/Progress.stories.d.ts +0 -15
|
@@ -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 {};
|
|
@@ -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
|
-
|
|
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:
|
|
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';
|