@randstad-uca/design-system 1.0.81 → 1.0.83
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/Bubble.d.ts +32 -0
- package/dist/components/CalendarOverlay.d.ts +19 -1
- package/dist/components/DatePicker.d.ts +25 -12
- package/dist/components/Modal.d.ts +4 -0
- package/dist/components/Popup.d.ts +1 -0
- package/dist/components/Select.d.ts +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +201 -72
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/stories/Bubble.stories.d.ts +39 -0
- package/dist/stories/Modal.stories.d.ts +6 -0
- package/dist/stories/Popup.stories.d.ts +1 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import '../components/Bubble';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: string;
|
|
5
|
+
parameters: {
|
|
6
|
+
layout: string;
|
|
7
|
+
};
|
|
8
|
+
argTypes: {
|
|
9
|
+
message: {
|
|
10
|
+
control: string;
|
|
11
|
+
};
|
|
12
|
+
duration: {
|
|
13
|
+
control: string;
|
|
14
|
+
};
|
|
15
|
+
position: {
|
|
16
|
+
control: string;
|
|
17
|
+
options: string[];
|
|
18
|
+
};
|
|
19
|
+
variant: {
|
|
20
|
+
control: string;
|
|
21
|
+
options: string[];
|
|
22
|
+
};
|
|
23
|
+
visible: {
|
|
24
|
+
control: string;
|
|
25
|
+
};
|
|
26
|
+
icon: {
|
|
27
|
+
control: string;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
export default _default;
|
|
32
|
+
export declare const Default: any;
|
|
33
|
+
export declare const BubbleTop: any;
|
|
34
|
+
export declare const BubbleBottom: any;
|
|
35
|
+
export declare const WithIcon: any;
|
|
36
|
+
export declare const CircleVariant: any;
|
|
37
|
+
export declare const CircleWithIcon: any;
|
|
38
|
+
export declare const AutoHide: any;
|
|
39
|
+
export declare const Hidden: any;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import '../components/Modal';
|
|
2
2
|
import '../components/Notice';
|
|
3
3
|
import '../components/Button';
|
|
4
|
+
import '../components/Select';
|
|
5
|
+
import '../components/DatePicker';
|
|
4
6
|
declare const _default: {
|
|
5
7
|
title: string;
|
|
6
8
|
component: string;
|
|
@@ -17,3 +19,7 @@ export declare const ModalConUnBoton: () => import("lit-html").TemplateResult<1>
|
|
|
17
19
|
export declare const ModalConUnBotonDisabled: () => import("lit-html").TemplateResult<1>;
|
|
18
20
|
export declare const ModalHideFooter: () => import("lit-html").TemplateResult<1>;
|
|
19
21
|
export declare const ModalConDosBotonesLoader: () => import("lit-html").TemplateResult<1>;
|
|
22
|
+
export declare const ModalConFormulario: () => import("lit-html").TemplateResult<1>;
|
|
23
|
+
export declare const ModalCustomSize: () => import("lit-html").TemplateResult<1>;
|
|
24
|
+
export declare const ModalConFooterCustom: () => import("lit-html").TemplateResult<1>;
|
|
25
|
+
export declare const ModalCompleto: () => import("lit-html").TemplateResult<1>;
|