@randstad-uca/design-system 1.0.19 → 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.
- package/dist/components/Accordion.d.ts +5 -0
- package/dist/components/AccordionList.d.ts +5 -0
- package/dist/components/CarouselCards.d.ts +1 -5
- package/dist/components/Tabs.d.ts +16 -0
- package/dist/components/Upload.d.ts +3 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +158 -3739
- package/dist/index.js.map +1 -1
- package/dist/package.json +3 -4
- package/dist/stories/Accordion.stories.d.ts +2 -1
- package/dist/stories/Tabs.stories.d.ts +14 -0
- package/dist/stories/Upload.stories.d.ts +1 -0
- package/package.json +3 -4
- package/dist/components/Datepicker.d.ts +0 -1
- package/dist/stories/Datepicker.stories.d.ts +0 -6
|
@@ -2,7 +2,12 @@ import { LitElement } from 'lit';
|
|
|
2
2
|
export declare class AccordionPanel extends LitElement {
|
|
3
3
|
title: string;
|
|
4
4
|
private isOpen;
|
|
5
|
+
private isDesktop;
|
|
5
6
|
static styles: import("lit").CSSResult;
|
|
7
|
+
connectedCallback(): void;
|
|
8
|
+
disconnectedCallback(): void;
|
|
9
|
+
private handleResize;
|
|
6
10
|
private toggle;
|
|
11
|
+
private renderIcon;
|
|
7
12
|
render(): import("lit-html").TemplateResult<1>;
|
|
8
13
|
}
|
|
@@ -1,16 +1,12 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
|
-
|
|
2
|
+
export declare class CarouselCard extends LitElement {
|
|
3
3
|
img: string;
|
|
4
4
|
name: string;
|
|
5
5
|
title: string;
|
|
6
6
|
description: string;
|
|
7
7
|
url: string;
|
|
8
|
-
}
|
|
9
|
-
export declare class CarouselCards extends LitElement {
|
|
10
|
-
services: Service[];
|
|
11
8
|
buttonLabel: string;
|
|
12
9
|
static styles: import("lit").CSSResult;
|
|
13
10
|
private handleClick;
|
|
14
11
|
render(): import("lit-html").TemplateResult<1>;
|
|
15
12
|
}
|
|
16
|
-
export {};
|
|
@@ -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 {};
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
2
|
export declare class UploadImage extends LitElement {
|
|
3
3
|
files: File[];
|
|
4
|
+
private loading;
|
|
5
|
+
private progress;
|
|
4
6
|
private isDragging;
|
|
7
|
+
disabled: boolean;
|
|
5
8
|
static styles: import("lit").CSSResult;
|
|
6
9
|
private handleFiles;
|
|
7
10
|
private onFileInputChange;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
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';
|
|
@@ -12,3 +11,4 @@ export * from './components/Stepper';
|
|
|
12
11
|
export * from './components/Snackbar';
|
|
13
12
|
export * from './components/Test';
|
|
14
13
|
export * from './components/TestButton';
|
|
14
|
+
export * from './components/Tabs';
|