@randstad-uca/design-system 1.0.28 → 1.0.30
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/package.json +19 -18
- package/dist/assets/icons/arrow_back.svg +0 -10
- package/dist/assets/icons/arrow_down.svg +0 -3
- package/dist/assets/icons/arrow_left.svg +0 -3
- package/dist/assets/icons/arrow_right.svg +0 -3
- package/dist/assets/icons/arrow_up.svg +0 -3
- package/dist/assets/icons/ayuda.svg +0 -12
- package/dist/assets/icons/calendar.svg +0 -20
- package/dist/assets/icons/check.svg +0 -10
- package/dist/assets/icons/close.svg +0 -10
- package/dist/assets/icons/edit.svg +0 -10
- package/dist/assets/icons/email.svg +0 -11
- package/dist/assets/icons/eye.svg +0 -11
- package/dist/assets/icons/eye_crossed.svg +0 -10
- package/dist/assets/icons/home.svg +0 -10
- package/dist/assets/icons/icon_check.svg +0 -4
- package/dist/assets/icons/icon_trash.svg +0 -7
- package/dist/assets/icons/icon_warning.svg +0 -6
- package/dist/assets/icons/image.svg +0 -5
- package/dist/assets/icons/info.svg +0 -12
- package/dist/assets/icons/settings.svg +0 -11
- package/dist/assets/icons/thumbs_up.svg +0 -11
- package/dist/assets/icons/tick-circle.svg +0 -3
- package/dist/assets/icons/trash.svg +0 -13
- package/dist/assets/icons/user.svg +0 -10
- package/dist/assets/icons/warning.svg +0 -12
- package/dist/assets/img/carousel-example.png +0 -0
- package/dist/assets/img/facebook_logo.svg +0 -4
- package/dist/assets/img/google_logo.svg +0 -13
- package/dist/assets/img/icon_check.svg +0 -4
- package/dist/assets/img/icon_trash.svg +0 -7
- package/dist/assets/img/icon_warning.svg +0 -6
- package/dist/assets/img/image-upload-circle.svg +0 -6
- package/dist/assets/img/image-upload-disabled.svg +0 -6
- package/dist/assets/img/linkedin_logo.svg +0 -3
- package/dist/components/Accordion.d.ts +0 -13
- package/dist/components/AccordionList.d.ts +0 -5
- package/dist/components/Button.d.ts +0 -16
- package/dist/components/CarouselCards.d.ts +0 -12
- package/dist/components/Checkbox.d.ts +0 -9
- package/dist/components/Form.d.ts +0 -32
- package/dist/components/FormGroup.d.ts +0 -11
- package/dist/components/Icon.d.ts +0 -10
- package/dist/components/Modal.d.ts +0 -23
- package/dist/components/Notice.d.ts +0 -9
- package/dist/components/Popup.d.ts +0 -27
- package/dist/components/ProgressCircle.d.ts +0 -7
- package/dist/components/Radio.d.ts +0 -10
- package/dist/components/Select.d.ts +0 -43
- package/dist/components/Snackbar.d.ts +0 -1
- package/dist/components/Stepper.d.ts +0 -7
- package/dist/components/Tabs.d.ts +0 -23
- package/dist/components/Upload.d.ts +0 -15
- package/dist/components/iconList.d.ts +0 -1
- package/dist/index.d.ts +0 -21
- package/dist/index.js +0 -2558
- package/dist/index.js.map +0 -1
- package/dist/package.json +0 -51
- package/dist/randstad-design-system.css +0 -1
- package/dist/stories/Accordion.stories.d.ts +0 -6
- package/dist/stories/Button.stories.d.ts +0 -29
- package/dist/stories/CarouselCards.stories.d.ts +0 -5
- package/dist/stories/Checkbox.stories.d.ts +0 -16
- package/dist/stories/Form.stories.d.ts +0 -48
- package/dist/stories/Icon.stories.d.ts +0 -6
- package/dist/stories/Modal.stories.d.ts +0 -16
- package/dist/stories/Notice.stories.d.ts +0 -72
- package/dist/stories/Popup.stories.d.ts +0 -7
- package/dist/stories/ProgressCircle.stories.d.ts +0 -5
- package/dist/stories/Radio.stories.d.ts +0 -11
- package/dist/stories/Select.stories.d.ts +0 -54
- package/dist/stories/Snackbar.stories.d.ts +0 -39
- package/dist/stories/Stepper.stories.d.ts +0 -51
- package/dist/stories/Tabs.stories.d.ts +0 -13
- package/dist/stories/Upload.stories.d.ts +0 -8
- package/dist/styles/buttons.css +0 -209
- package/dist/styles/colors.css +0 -50
- package/dist/styles/fontStyles.d.ts +0 -7
- package/dist/styles/fontStyles.ts +0 -60
- package/dist/styles/fonts.css +0 -8
- package/dist/styles/forms.css +0 -151
- package/dist/styles/globalStyles.d.ts +0 -2
- package/dist/styles/globalStyles.ts +0 -22
- package/dist/styles/icons.css +0 -25
- package/dist/styles/index.css +0 -5
- package/dist/styles/notice.css +0 -0
- package/dist/styles/select.css +0 -12
- package/dist/styles/snackbar.css +0 -0
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { LitElement } from 'lit';
|
|
2
|
-
import '../components/Button';
|
|
3
|
-
import '../components/Icon';
|
|
4
|
-
interface PopupAction {
|
|
5
|
-
icon: string;
|
|
6
|
-
label: string;
|
|
7
|
-
value: string;
|
|
8
|
-
}
|
|
9
|
-
export declare class CustomPopup extends LitElement {
|
|
10
|
-
open: boolean;
|
|
11
|
-
type: 'default' | 'stacked' | 'other';
|
|
12
|
-
icon: string;
|
|
13
|
-
title: string;
|
|
14
|
-
description: string;
|
|
15
|
-
width: string;
|
|
16
|
-
buttonText: string;
|
|
17
|
-
confirmText: string;
|
|
18
|
-
cancelText: string;
|
|
19
|
-
stackedActions: PopupAction[];
|
|
20
|
-
static styles: import("lit").CSSResult;
|
|
21
|
-
firstUpdated(): void;
|
|
22
|
-
private _onBackgroundClick;
|
|
23
|
-
disconnectedCallback(): void;
|
|
24
|
-
closePopup(response: boolean | string): void;
|
|
25
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
26
|
-
}
|
|
27
|
-
export {};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { LitElement } from 'lit';
|
|
2
|
-
import '@material/web/radio/radio.js';
|
|
3
|
-
export declare class CustomRadio extends LitElement {
|
|
4
|
-
name: string;
|
|
5
|
-
checked: boolean;
|
|
6
|
-
disabled: boolean;
|
|
7
|
-
error: boolean;
|
|
8
|
-
static styles: import("lit").CSSResult;
|
|
9
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
10
|
-
}
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import { LitElement } from 'lit';
|
|
2
|
-
type SelectOption = string | {
|
|
3
|
-
label: string;
|
|
4
|
-
value: string;
|
|
5
|
-
disabled?: boolean;
|
|
6
|
-
};
|
|
7
|
-
export declare class FilterableSelect extends LitElement {
|
|
8
|
-
options: SelectOption[];
|
|
9
|
-
placeholder: string;
|
|
10
|
-
defaultValue: string;
|
|
11
|
-
disabled: boolean;
|
|
12
|
-
label: string;
|
|
13
|
-
value: string;
|
|
14
|
-
labelColor: string;
|
|
15
|
-
filterable: boolean;
|
|
16
|
-
maxLength?: number;
|
|
17
|
-
error: boolean;
|
|
18
|
-
required: boolean;
|
|
19
|
-
optional: boolean;
|
|
20
|
-
private isMobile;
|
|
21
|
-
filteredOptions: SelectOption[];
|
|
22
|
-
filterValue: string;
|
|
23
|
-
isOpen: boolean;
|
|
24
|
-
mobileFilterValue: string;
|
|
25
|
-
private highlightedIndex;
|
|
26
|
-
private debounceTimeout;
|
|
27
|
-
static styles: import("lit").CSSResult;
|
|
28
|
-
constructor();
|
|
29
|
-
willUpdate(changedProperties: Map<string, any>): void;
|
|
30
|
-
connectedCallback(): void;
|
|
31
|
-
disconnectedCallback(): void;
|
|
32
|
-
private updateResponsiveModeBound;
|
|
33
|
-
private updateResponsiveMode;
|
|
34
|
-
handleInputClick(e: Event): void;
|
|
35
|
-
handleInput(e: Event): void;
|
|
36
|
-
handleMobileInput(e: Event): void;
|
|
37
|
-
handleSelect(option: any): void;
|
|
38
|
-
handleIconClick(): void;
|
|
39
|
-
handleClickOutside(e: Event): void;
|
|
40
|
-
handleKeyDown(e: KeyboardEvent): void;
|
|
41
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
42
|
-
}
|
|
43
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,23 +0,0 @@
|
|
|
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
|
-
private showPrev;
|
|
12
|
-
private showNext;
|
|
13
|
-
private readonly SCROLL_OFFSET;
|
|
14
|
-
static styles: import("lit").CSSResult;
|
|
15
|
-
firstUpdated(): void;
|
|
16
|
-
updated(changed: Map<string, any>): void;
|
|
17
|
-
private selectTab;
|
|
18
|
-
private scrollTabsLeft;
|
|
19
|
-
private scrollTabsRight;
|
|
20
|
-
private handleScroll;
|
|
21
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
22
|
-
}
|
|
23
|
-
export {};
|
|
@@ -1,15 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const iconList: string[];
|
package/dist/index.d.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export * from './components/Accordion';
|
|
2
|
-
export * from './components/AccordionList';
|
|
3
|
-
export * from './components/Button';
|
|
4
|
-
export * from './components/CarouselCards';
|
|
5
|
-
export * from './components/Checkbox';
|
|
6
|
-
export * from './components/Form';
|
|
7
|
-
export * from './components/FormGroup';
|
|
8
|
-
export * from './components/Icon';
|
|
9
|
-
export * from './components/Modal';
|
|
10
|
-
export * from './components/Notice';
|
|
11
|
-
export * from './components/Popup';
|
|
12
|
-
export * from './components/ProgressCircle';
|
|
13
|
-
export * from './components/Radio';
|
|
14
|
-
export * from './components/Select';
|
|
15
|
-
export * from './components/Snackbar';
|
|
16
|
-
export * from './components/Stepper';
|
|
17
|
-
export * from './components/Tabs';
|
|
18
|
-
export * from './components/Upload';
|
|
19
|
-
import './styles/colors.css';
|
|
20
|
-
import './styles/fonts.css';
|
|
21
|
-
import './styles/buttons.css';
|