@reni-corp/reni-2c-ui 0.2.20 → 0.2.22
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/elements/RadioButton.vue.d.ts +1 -3
- package/dist/components/elements/RadioButton.vue.d.ts.map +1 -1
- package/dist/components/features/BrandLogo.vue.d.ts +3 -3
- package/dist/components/features/BrandLogo.vue.d.ts.map +1 -1
- package/dist/components/interactive/Slider.vue.d.ts +14 -1
- package/dist/components/interactive/Slider.vue.d.ts.map +1 -1
- package/dist/constants.d.ts +7 -0
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.es.js +88 -0
- package/dist/index.es.js +764 -769
- package/dist/script.es.js +2022 -2002
- package/dist/script.umd.js +14 -14
- package/dist/style.css +1 -1
- package/dist/types.d.ts +2 -1
- package/dist/types.d.ts.map +1 -1
- package/dist/types.es.js +1 -0
- package/package.json +9 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
export type RadioButtonProps = {
|
|
3
|
-
name
|
|
3
|
+
name?: string;
|
|
4
4
|
value: string;
|
|
5
5
|
label?: string;
|
|
6
6
|
};
|
|
@@ -11,7 +11,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
11
11
|
modelValue: import('vue').PropType<string>;
|
|
12
12
|
name: {
|
|
13
13
|
type: import('vue').PropType<string>;
|
|
14
|
-
required: true;
|
|
15
14
|
};
|
|
16
15
|
value: {
|
|
17
16
|
type: import('vue').PropType<string>;
|
|
@@ -24,7 +23,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
24
23
|
modelValue: import('vue').PropType<string>;
|
|
25
24
|
name: {
|
|
26
25
|
type: import('vue').PropType<string>;
|
|
27
|
-
required: true;
|
|
28
26
|
};
|
|
29
27
|
value: {
|
|
30
28
|
type: import('vue').PropType<string>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RadioButton.vue.d.ts","sourceRoot":"","sources":["../../../src/components/elements/RadioButton.vue"],"names":[],"mappings":"AAEA,OAAO,0BAA0B,CAAA;AAGjC,MAAM,MAAM,gBAAgB,GAAG;IAC7B,IAAI,EAAE,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"RadioButton.vue.d.ts","sourceRoot":"","sources":["../../../src/components/elements/RadioButton.vue"],"names":[],"mappings":"AAEA,OAAO,0BAA0B,CAAA;AAGjC,MAAM,MAAM,gBAAgB,GAAG;IAC7B,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,MAAM,CAAA;CACf,CAAA;AAkCD,iBAAS,cAAc;qBAmDO,GAAG;EAKhC;AAeD,QAAA,MAAM,eAAe;gBA7ET,OAAO,KAAK,EAAE,QAAQ,CAAC,MAAM,CAAC;;;;;;kBAyF2J,IAAI;;;;;;gBAzF7L,OAAO,KAAK,EAAE,QAAQ,CAAC,MAAM,CAAC;;;;;;kBAyF2J,IAAI;;;;;iGAHvM,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAAvG,wBAAwG;AAGxG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -3,8 +3,8 @@ export type BrandLogoProps = {
|
|
|
3
3
|
href: string;
|
|
4
4
|
title: string;
|
|
5
5
|
logoUrl: string;
|
|
6
|
-
width?: number;
|
|
7
|
-
height?: number;
|
|
6
|
+
width?: number | string;
|
|
7
|
+
height?: number | string;
|
|
8
8
|
target?: '_blank' | '_self';
|
|
9
9
|
};
|
|
10
10
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<BrandLogoProps>, {
|
|
@@ -12,7 +12,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
12
12
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<BrandLogoProps>, {
|
|
13
13
|
width: number;
|
|
14
14
|
}>>> & Readonly<{}>, {
|
|
15
|
-
width: number;
|
|
15
|
+
width: number | string;
|
|
16
16
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
17
17
|
export default _default;
|
|
18
18
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BrandLogo.vue.d.ts","sourceRoot":"","sources":["../../../src/components/features/BrandLogo.vue"],"names":[],"mappings":"AAGA,OAAO,0BAA0B,CAAA;AACjC,MAAM,MAAM,cAAc,GAAG;IAC3B,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;IACb,OAAO,EAAE,MAAM,CAAA;IACf,KAAK,CAAC,EAAE,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"BrandLogo.vue.d.ts","sourceRoot":"","sources":["../../../src/components/features/BrandLogo.vue"],"names":[],"mappings":"AAGA,OAAO,0BAA0B,CAAA;AACjC,MAAM,MAAM,cAAc,GAAG;IAC3B,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;IACb,OAAO,EAAE,MAAM,CAAA;IACf,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACvB,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACxB,MAAM,CAAC,EAAE,QAAQ,GAAG,OAAO,CAAA;CAC5B,CAAA;;;;;;WAHS,MAAM,GAAG,MAAM;;AA8EzB,wBAMG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
|
|
@@ -2,7 +2,20 @@
|
|
|
2
2
|
export type SliderProps = {
|
|
3
3
|
autoplay?: boolean | number;
|
|
4
4
|
variant?: 'slide' | 'instant' | 'fade' | 'carousel' | 'cards';
|
|
5
|
-
slidesPerView?: number
|
|
5
|
+
slidesPerView?: number | {
|
|
6
|
+
xs?: number;
|
|
7
|
+
sm?: number;
|
|
8
|
+
md?: number;
|
|
9
|
+
lg?: number;
|
|
10
|
+
xl?: number;
|
|
11
|
+
};
|
|
12
|
+
spaceBetween?: number | {
|
|
13
|
+
xs?: number;
|
|
14
|
+
sm?: number;
|
|
15
|
+
md?: number;
|
|
16
|
+
lg?: number;
|
|
17
|
+
xl?: number;
|
|
18
|
+
};
|
|
6
19
|
loop?: boolean;
|
|
7
20
|
};
|
|
8
21
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SliderProps>, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Slider.vue.d.ts","sourceRoot":"","sources":["../../../src/components/interactive/Slider.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Slider.vue.d.ts","sourceRoot":"","sources":["../../../src/components/interactive/Slider.vue"],"names":[],"mappings":"AAyBA;AAYA,OAAO,YAAY,CAAA;AACnB,OAAO,yBAAyB,CAAA;AAChC,OAAO,wBAAwB,CAAA;AAE/B,MAAM,MAAM,WAAW,GAAG;IACxB,QAAQ,CAAC,EAAE,OAAO,GAAG,MAAM,CAAA;IAC3B,OAAO,CAAC,EAAE,OAAO,GAAG,SAAS,GAAG,MAAM,GAAG,UAAU,GAAG,OAAO,CAAA;IAC7D,aAAa,CAAC,EACV,MAAM,GACN;QACE,EAAE,CAAC,EAAE,MAAM,CAAA;QACX,EAAE,CAAC,EAAE,MAAM,CAAA;QACX,EAAE,CAAC,EAAE,MAAM,CAAA;QACX,EAAE,CAAC,EAAE,MAAM,CAAA;QACX,EAAE,CAAC,EAAE,MAAM,CAAA;KACZ,CAAA;IACL,YAAY,CAAC,EACT,MAAM,GACN;QACE,EAAE,CAAC,EAAE,MAAM,CAAA;QACX,EAAE,CAAC,EAAE,MAAM,CAAA;QACX,EAAE,CAAC,EAAE,MAAM,CAAA;QACX,EAAE,CAAC,EAAE,MAAM,CAAA;QACX,EAAE,CAAC,EAAE,MAAM,CAAA;KACZ,CAAA;IACL,IAAI,CAAC,EAAE,OAAO,CAAA;CACf,CAAA;;;;;;;;aApBW,OAAO,GAAG,SAAS,GAAG,MAAM,GAAG,UAAU,GAAG,OAAO;cADlD,OAAO,GAAG,MAAM;;AAsP7B,wBAMG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
|
package/dist/constants.d.ts
CHANGED
|
@@ -76,4 +76,11 @@ export declare const AspectOptions: {
|
|
|
76
76
|
readonly golden: "golden";
|
|
77
77
|
readonly 'golden-reverse': "golden-reverse";
|
|
78
78
|
};
|
|
79
|
+
export declare const SNSOptions: {
|
|
80
|
+
'x-twitter': string;
|
|
81
|
+
youtube: string;
|
|
82
|
+
instagram: string;
|
|
83
|
+
tiktok: string;
|
|
84
|
+
facebook: string;
|
|
85
|
+
};
|
|
79
86
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY;;;;;;;;;;;CAWf,CAAA;AAEV,eAAO,MAAM,kBAAkB;;;;;;CAMrB,CAAA;AAEV,eAAO,MAAM,WAAW;;;;;;CAMd,CAAA;AAEV,eAAO,MAAM,kBAAkB;;;CAGrB,CAAA;AAEV,eAAO,MAAM,eAAe;;;;;;;CAOlB,CAAA;AAEV,eAAO,MAAM,iBAAiB;;;CAGpB,CAAA;AAEV,eAAO,MAAM,gBAAgB;;;CAGnB,CAAA;AAEV,eAAO,MAAM,aAAa;;;CAGhB,CAAA;AAEV,eAAO,MAAM,YAAY;;;;;CAKf,CAAA;AAEV,eAAO,MAAM,WAAW;;;CAGd,CAAA;AAEV,eAAO,MAAM,kBAAkB;;;;CAIrB,CAAA;AAEV,eAAO,MAAM,aAAa;;;;;;;;;;;;CAYhB,CAAA"}
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY;;;;;;;;;;;CAWf,CAAA;AAEV,eAAO,MAAM,kBAAkB;;;;;;CAMrB,CAAA;AAEV,eAAO,MAAM,WAAW;;;;;;CAMd,CAAA;AAEV,eAAO,MAAM,kBAAkB;;;CAGrB,CAAA;AAEV,eAAO,MAAM,eAAe;;;;;;;CAOlB,CAAA;AAEV,eAAO,MAAM,iBAAiB;;;CAGpB,CAAA;AAEV,eAAO,MAAM,gBAAgB;;;CAGnB,CAAA;AAEV,eAAO,MAAM,aAAa;;;CAGhB,CAAA;AAEV,eAAO,MAAM,YAAY;;;;;CAKf,CAAA;AAEV,eAAO,MAAM,WAAW;;;CAGd,CAAA;AAEV,eAAO,MAAM,kBAAkB;;;;CAIrB,CAAA;AAEV,eAAO,MAAM,aAAa;;;;;;;;;;;;CAYhB,CAAA;AAEV,eAAO,MAAM,UAAU;;;;;;CAMtB,CAAA"}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
const n = {
|
|
2
|
+
primary: "primary",
|
|
3
|
+
secondary: "secondary",
|
|
4
|
+
warning: "warning",
|
|
5
|
+
danger: "danger",
|
|
6
|
+
success: "success",
|
|
7
|
+
info: "info",
|
|
8
|
+
default: "default",
|
|
9
|
+
subtle: "subtle",
|
|
10
|
+
muted: "muted",
|
|
11
|
+
light: "light"
|
|
12
|
+
}, t = {
|
|
13
|
+
warning: "warning",
|
|
14
|
+
danger: "danger",
|
|
15
|
+
success: "success",
|
|
16
|
+
info: "info",
|
|
17
|
+
default: "default"
|
|
18
|
+
}, e = {
|
|
19
|
+
xs: "xs",
|
|
20
|
+
sm: "sm",
|
|
21
|
+
md: "md",
|
|
22
|
+
lg: "lg",
|
|
23
|
+
xl: "xl"
|
|
24
|
+
}, o = {
|
|
25
|
+
sm: e.sm,
|
|
26
|
+
md: e.md
|
|
27
|
+
}, i = {
|
|
28
|
+
minimum: "minimum",
|
|
29
|
+
caption: "caption",
|
|
30
|
+
body: "body",
|
|
31
|
+
subtitle: "subtitle",
|
|
32
|
+
title: "title",
|
|
33
|
+
headline: "headline"
|
|
34
|
+
}, s = {
|
|
35
|
+
bold: "bold",
|
|
36
|
+
normal: "normal"
|
|
37
|
+
}, r = {
|
|
38
|
+
vertical: "vertical",
|
|
39
|
+
horizontal: "horizontal"
|
|
40
|
+
}, a = {
|
|
41
|
+
hug: "hug",
|
|
42
|
+
fill: "fill"
|
|
43
|
+
}, c = {
|
|
44
|
+
start: "start",
|
|
45
|
+
center: "center",
|
|
46
|
+
end: "end",
|
|
47
|
+
between: "between"
|
|
48
|
+
}, l = {
|
|
49
|
+
wrap: "wrap",
|
|
50
|
+
nowrap: "nowrap"
|
|
51
|
+
}, d = {
|
|
52
|
+
thin: "thin",
|
|
53
|
+
thick: "thick",
|
|
54
|
+
normal: "normal"
|
|
55
|
+
}, m = {
|
|
56
|
+
square: "square",
|
|
57
|
+
portrait: "portrait",
|
|
58
|
+
landscape: "landscape",
|
|
59
|
+
widescreen: "widescreen",
|
|
60
|
+
"widescreen-reverse": "widescreen-reverse",
|
|
61
|
+
panorama: "panorama",
|
|
62
|
+
"panorama-reverse": "panorama-reverse",
|
|
63
|
+
cinema: "cinema",
|
|
64
|
+
"cinema-reverse": "cinema-reverse",
|
|
65
|
+
golden: "golden",
|
|
66
|
+
"golden-reverse": "golden-reverse"
|
|
67
|
+
}, p = {
|
|
68
|
+
"x-twitter": "x-twitter",
|
|
69
|
+
youtube: "youtube",
|
|
70
|
+
instagram: "instagram",
|
|
71
|
+
tiktok: "tiktok",
|
|
72
|
+
facebook: "facebook"
|
|
73
|
+
};
|
|
74
|
+
export {
|
|
75
|
+
c as AlignOptions,
|
|
76
|
+
m as AspectOptions,
|
|
77
|
+
d as BorderWidthOptions,
|
|
78
|
+
n as ColorOptions,
|
|
79
|
+
i as FontSizeOptions,
|
|
80
|
+
s as FontWeightOptions,
|
|
81
|
+
o as LimitedSizeOptions,
|
|
82
|
+
a as ResizeOptions,
|
|
83
|
+
p as SNSOptions,
|
|
84
|
+
e as SizeOptions,
|
|
85
|
+
t as StatusColorOptions,
|
|
86
|
+
l as WrapOptions,
|
|
87
|
+
r as directionOptions
|
|
88
|
+
};
|