@versaur/core 0.0.3 → 0.0.4
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/blocks/accordion/accordion.module.css.d.ts +11 -0
- package/dist/blocks/accordion/accordion.types.generated.d.ts +7 -0
- package/dist/blocks/accordion/accordion.types.generated.d.ts.map +1 -0
- package/dist/blocks/accordion/index.d.ts +3 -0
- package/dist/blocks/accordion/index.d.ts.map +1 -0
- package/dist/blocks/index.d.ts +1 -0
- package/dist/blocks/index.d.ts.map +1 -1
- package/dist/blocks.js +65 -55
- package/dist/core.css +1 -1
- package/dist/forms/checkbox-group/checkbox-group.module.css.d.ts +0 -3
- package/dist/forms/checkbox-group/checkbox-group.types.generated.d.ts +0 -2
- package/dist/forms/checkbox-group/checkbox-group.types.generated.d.ts.map +1 -1
- package/dist/forms/chip-input/chip-input.types.generated.d.ts +16 -0
- package/dist/forms/chip-input/chip-input.types.generated.d.ts.map +1 -0
- package/dist/forms/chip-input/index.d.ts +3 -0
- package/dist/forms/chip-input/index.d.ts.map +1 -0
- package/dist/forms/index.d.ts +1 -2
- package/dist/forms/index.d.ts.map +1 -1
- package/dist/forms/radio/radio.types.generated.d.ts +0 -6
- package/dist/forms/radio/radio.types.generated.d.ts.map +1 -1
- package/dist/forms/radio-group/radio-group.module.css.d.ts +0 -4
- package/dist/forms/radio-group/radio-group.types.generated.d.ts +0 -8
- package/dist/forms/radio-group/radio-group.types.generated.d.ts.map +1 -1
- package/dist/forms.js +44 -56
- package/dist/primitive/banner/banner.module.css.d.ts +8 -0
- package/dist/primitive/banner/banner.types.generated.d.ts +9 -0
- package/dist/primitive/banner/banner.types.generated.d.ts.map +1 -0
- package/dist/primitive/banner/index.d.ts +3 -0
- package/dist/primitive/banner/index.d.ts.map +1 -0
- package/dist/primitive/index.d.ts +1 -0
- package/dist/primitive/index.d.ts.map +1 -1
- package/dist/primitive.js +38 -32
- package/dist/tokens/colors.css +9 -0
- package/package.json +1 -1
- package/dist/forms/chip-multiple-input/chip-multiple-input.types.generated.d.ts +0 -14
- package/dist/forms/chip-multiple-input/chip-multiple-input.types.generated.d.ts.map +0 -1
- package/dist/forms/chip-multiple-input/index.d.ts +0 -3
- package/dist/forms/chip-multiple-input/index.d.ts.map +0 -1
- package/dist/forms/chip-single-input/chip-single-input.module.css.d.ts +0 -7
- package/dist/forms/chip-single-input/chip-single-input.types.generated.d.ts +0 -15
- package/dist/forms/chip-single-input/chip-single-input.types.generated.d.ts.map +0 -1
- package/dist/forms/chip-single-input/index.d.ts +0 -3
- package/dist/forms/chip-single-input/index.d.ts.map +0 -1
- /package/dist/forms/{chip-multiple-input/chip-multiple-input.module.css.d.ts → chip-input/chip-input.module.css.d.ts} +0 -0
|
@@ -1,14 +1,8 @@
|
|
|
1
|
-
export type RadioSize = 'large' | 'small';
|
|
2
|
-
export type RadioVariant = 'filled' | 'outline';
|
|
3
1
|
export interface RadioDataAttrs {
|
|
4
|
-
size?: RadioSize;
|
|
5
|
-
variant?: RadioVariant;
|
|
6
2
|
disabled?: boolean;
|
|
7
3
|
invalid?: boolean;
|
|
8
4
|
}
|
|
9
5
|
export declare namespace Radio {
|
|
10
|
-
type Size = RadioSize;
|
|
11
|
-
type Variant = RadioVariant;
|
|
12
6
|
type DataAttrs = RadioDataAttrs;
|
|
13
7
|
}
|
|
14
8
|
//# sourceMappingURL=radio.types.generated.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"radio.types.generated.d.ts","sourceRoot":"","sources":["../../../src/components/forms/radio/radio.types.generated.ts"],"names":[],"mappings":"AAGA,MAAM,
|
|
1
|
+
{"version":3,"file":"radio.types.generated.d.ts","sourceRoot":"","sources":["../../../src/components/forms/radio/radio.types.generated.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,cAAc;IAC7B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,yBAAiB,KAAK,CAAC;IACrB,KAAY,SAAS,GAAG,cAAc,CAAC;CACxC"}
|
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
// AUTO-GENERATED by @versaur/tooling — DO NOT EDIT
|
|
2
2
|
declare const styles: {
|
|
3
3
|
readonly field: string;
|
|
4
|
-
readonly indicator: string;
|
|
5
|
-
readonly input: string;
|
|
6
|
-
readonly option: string;
|
|
7
|
-
readonly optionLabel: string;
|
|
8
4
|
readonly options: string;
|
|
9
5
|
};
|
|
10
6
|
export default styles;
|
|
@@ -1,17 +1,9 @@
|
|
|
1
1
|
export type RadioGroupDirection = 'row';
|
|
2
|
-
export type RadioGroupSize = 'large' | 'small';
|
|
3
|
-
export type RadioGroupVariant = 'filled' | 'outline';
|
|
4
2
|
export interface RadioGroupDataAttrs {
|
|
5
3
|
direction?: RadioGroupDirection;
|
|
6
|
-
size?: RadioGroupSize;
|
|
7
|
-
variant?: RadioGroupVariant;
|
|
8
|
-
disabled?: boolean;
|
|
9
|
-
invalid?: boolean;
|
|
10
4
|
}
|
|
11
5
|
export declare namespace RadioGroup {
|
|
12
6
|
type Direction = RadioGroupDirection;
|
|
13
|
-
type Size = RadioGroupSize;
|
|
14
|
-
type Variant = RadioGroupVariant;
|
|
15
7
|
type DataAttrs = RadioGroupDataAttrs;
|
|
16
8
|
}
|
|
17
9
|
//# sourceMappingURL=radio-group.types.generated.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"radio-group.types.generated.d.ts","sourceRoot":"","sources":["../../../src/components/forms/radio-group/radio-group.types.generated.ts"],"names":[],"mappings":"AAGA,MAAM,MAAM,mBAAmB,GAAG,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"radio-group.types.generated.d.ts","sourceRoot":"","sources":["../../../src/components/forms/radio-group/radio-group.types.generated.ts"],"names":[],"mappings":"AAGA,MAAM,MAAM,mBAAmB,GAAG,KAAK,CAAC;AAExC,MAAM,WAAW,mBAAmB;IAClC,SAAS,CAAC,EAAE,mBAAmB,CAAC;CACjC;AAED,yBAAiB,UAAU,CAAC;IAC1B,KAAY,SAAS,GAAG,mBAAmB,CAAC;IAC5C,KAAY,SAAS,GAAG,mBAAmB,CAAC;CAC7C"}
|
package/dist/forms.js
CHANGED
|
@@ -1,64 +1,52 @@
|
|
|
1
|
-
const e = "versaur-7cf74bb598de800f",
|
|
1
|
+
const e = "versaur-7cf74bb598de800f", I = {
|
|
2
2
|
label: e
|
|
3
|
-
},
|
|
4
|
-
helper:
|
|
5
|
-
},
|
|
6
|
-
error:
|
|
7
|
-
},
|
|
8
|
-
field:
|
|
9
|
-
wrapper:
|
|
3
|
+
}, s = "versaur-b59412a018f503fc", T = {
|
|
4
|
+
helper: s
|
|
5
|
+
}, r = "versaur-c683db918850a350", w = {
|
|
6
|
+
error: r
|
|
7
|
+
}, t = "versaur-875782ca06b984f9", o = "versaur-59a13ce2bad8ce86", a = "versaur-a028701e3855a0d6", A = {
|
|
8
|
+
field: t,
|
|
9
|
+
wrapper: o,
|
|
10
10
|
input: a,
|
|
11
11
|
"left-icon": "versaur-e80e63cbf720426c",
|
|
12
12
|
"right-icon": "versaur-30f261fe988e4512"
|
|
13
|
-
}, c = "versaur-7de13036631f013b",
|
|
13
|
+
}, c = "versaur-7de13036631f013b", d = "versaur-c37ff23291914eec", g = {
|
|
14
14
|
field: c,
|
|
15
|
-
textarea:
|
|
16
|
-
},
|
|
17
|
-
field:
|
|
18
|
-
select:
|
|
19
|
-
},
|
|
20
|
-
radio:
|
|
21
|
-
input:
|
|
22
|
-
indicator:
|
|
23
|
-
label:
|
|
24
|
-
},
|
|
25
|
-
field:
|
|
26
|
-
options: v
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
option: T,
|
|
40
|
-
input: g,
|
|
41
|
-
indicator: w
|
|
42
|
-
}, A = "versaur-c837c543c4d6fce7", L = "versaur-b036a6e9a7ea22b7", M = "versaur-9f300e79d61f88a9", P = {
|
|
43
|
-
field: A,
|
|
44
|
-
options: L,
|
|
45
|
-
option: M
|
|
46
|
-
}, j = "versaur-e26f75f5162a21c3", q = "versaur-1dc767128c6e0aa9", z = "versaur-84c5fdb391becabf", Q = {
|
|
47
|
-
field: j,
|
|
48
|
-
options: q,
|
|
49
|
-
option: z
|
|
15
|
+
textarea: d
|
|
16
|
+
}, n = "versaur-d35184a239a2f383", l = "versaur-87e7af0ce905d524", j = {
|
|
17
|
+
field: n,
|
|
18
|
+
select: l
|
|
19
|
+
}, u = "versaur-570f5d3a05bfb795", f = "versaur-a1983823b2c6ede0", i = "versaur-9b607137411d7f57", b = "versaur-52f04fd45d709709", q = {
|
|
20
|
+
radio: u,
|
|
21
|
+
input: f,
|
|
22
|
+
indicator: i,
|
|
23
|
+
label: b
|
|
24
|
+
}, p = "versaur-dbcd030c12868d08", v = "versaur-448dbd668d748593", z = {
|
|
25
|
+
field: p,
|
|
26
|
+
options: v
|
|
27
|
+
}, x = "versaur-c1068fb66bbf7dfd", h = "versaur-7ae5fc6311fbabd7", $ = "versaur-5fa39f2e92b3ced5", m = "versaur-ac6f51b72f550f8c", B = {
|
|
28
|
+
checkbox: x,
|
|
29
|
+
input: h,
|
|
30
|
+
indicator: $,
|
|
31
|
+
label: m
|
|
32
|
+
}, y = "versaur-a4bca635362d7e46", S = "versaur-e475572a6addeb32", C = {
|
|
33
|
+
field: y,
|
|
34
|
+
options: S
|
|
35
|
+
}, _ = "versaur-cf3429e47ea615d5", k = "versaur-0d38cac7172a09bf", G = "versaur-f34d3407e4fe31c4", D = {
|
|
36
|
+
field: _,
|
|
37
|
+
options: k,
|
|
38
|
+
option: G
|
|
50
39
|
};
|
|
51
40
|
export {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
E as textInputStyles
|
|
41
|
+
C as checkboxGroupStyles,
|
|
42
|
+
B as checkboxStyles,
|
|
43
|
+
D as chipInputStyles,
|
|
44
|
+
w as errorTextStyles,
|
|
45
|
+
T as helperTextStyles,
|
|
46
|
+
I as labelStyles,
|
|
47
|
+
z as radioGroupStyles,
|
|
48
|
+
q as radioStyles,
|
|
49
|
+
j as selectStyles,
|
|
50
|
+
g as textAreaStyles,
|
|
51
|
+
A as textInputStyles
|
|
64
52
|
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export type BannerVariant = 'danger' | 'info' | 'warning';
|
|
2
|
+
export interface BannerDataAttrs {
|
|
3
|
+
variant?: BannerVariant;
|
|
4
|
+
}
|
|
5
|
+
export declare namespace Banner {
|
|
6
|
+
type Variant = BannerVariant;
|
|
7
|
+
type DataAttrs = BannerDataAttrs;
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=banner.types.generated.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"banner.types.generated.d.ts","sourceRoot":"","sources":["../../../src/components/primitive/banner/banner.types.generated.ts"],"names":[],"mappings":"AAGA,MAAM,MAAM,aAAa,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,CAAC;AAE1D,MAAM,WAAW,eAAe;IAC9B,OAAO,CAAC,EAAE,aAAa,CAAC;CACzB;AAED,yBAAiB,MAAM,CAAC;IACtB,KAAY,OAAO,GAAG,aAAa,CAAC;IACpC,KAAY,SAAS,GAAG,eAAe,CAAC;CACzC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/primitive/banner/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,qBAAqB,CAAA;AAG7D,cAAc,0BAA0B,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/primitive/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,UAAU,CAAA;AACxB,cAAc,SAAS,CAAA;AACvB,cAAc,OAAO,CAAA;AACrB,cAAc,WAAW,CAAA;AACzB,cAAc,QAAQ,CAAA;AACtB,cAAc,MAAM,CAAA;AACpB,cAAc,UAAU,CAAA;AACxB,cAAc,OAAO,CAAA;AACrB,cAAc,WAAW,CAAA;AACzB,cAAc,QAAQ,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/primitive/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,UAAU,CAAA;AACxB,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AACxB,cAAc,OAAO,CAAA;AACrB,cAAc,WAAW,CAAA;AACzB,cAAc,QAAQ,CAAA;AACtB,cAAc,MAAM,CAAA;AACpB,cAAc,UAAU,CAAA;AACxB,cAAc,OAAO,CAAA;AACrB,cAAc,WAAW,CAAA;AACzB,cAAc,QAAQ,CAAA"}
|
package/dist/primitive.js
CHANGED
|
@@ -1,45 +1,51 @@
|
|
|
1
|
-
const e = "versaur-617382ec0cb7b8bf", t = "versaur-14ea934c146d7c48",
|
|
1
|
+
const e = "versaur-617382ec0cb7b8bf", t = "versaur-14ea934c146d7c48", S = {
|
|
2
2
|
button: e,
|
|
3
3
|
spin: t
|
|
4
|
-
}, a = "versaur-fda25cd0adb14a64",
|
|
4
|
+
}, a = "versaur-fda25cd0adb14a64", _ = {
|
|
5
5
|
"button-icon": "versaur-32959403b131de79",
|
|
6
6
|
spin: a
|
|
7
|
-
}, s = "versaur-e2ce5acd0a2adbeb",
|
|
7
|
+
}, s = "versaur-e2ce5acd0a2adbeb", p = {
|
|
8
8
|
avatar: s,
|
|
9
9
|
"avatar-image": "versaur-963a92c30722e0dd"
|
|
10
|
-
}, o = "versaur-848235025f3bbd0d",
|
|
10
|
+
}, o = "versaur-848235025f3bbd0d", g = {
|
|
11
11
|
badge: o
|
|
12
|
-
}, d = "versaur-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
12
|
+
}, n = "versaur-95d0cd719e9385cc", c = "versaur-93010c75c4b3936f", r = "versaur-145d0cfa83f42121", d = "versaur-df6601b6f9c783b1", h = {
|
|
13
|
+
banner: n,
|
|
14
|
+
icon: c,
|
|
15
|
+
content: r,
|
|
16
|
+
close: d
|
|
17
|
+
}, b = "versaur-19a2eac51e52f149", x = {
|
|
18
|
+
dot: b
|
|
19
|
+
}, u = "versaur-9cfbe2f9495bbf4a", k = {
|
|
20
|
+
heading: u
|
|
21
|
+
}, l = "versaur-779cb7eead64eadd", I = {
|
|
22
|
+
text: l
|
|
23
|
+
}, v = "versaur-36c29d2e99f7b204", $ = {
|
|
24
|
+
hr: v
|
|
25
|
+
}, i = "versaur-b0e952d3a8681bf7", j = {
|
|
26
|
+
loader: i,
|
|
22
27
|
"spin-loader": "versaur-0547b485a3fe0b53",
|
|
23
28
|
"slide-loader": "versaur-84538da935bc60e3"
|
|
24
|
-
},
|
|
25
|
-
kbd:
|
|
26
|
-
},
|
|
27
|
-
tooltip:
|
|
29
|
+
}, f = "versaur-ce9cd97f986963db", q = {
|
|
30
|
+
kbd: f
|
|
31
|
+
}, m = "versaur-ae24b11a54a16293", w = {
|
|
32
|
+
tooltip: m,
|
|
28
33
|
"tooltip-text": "versaur-189b29b12e28756c"
|
|
29
|
-
},
|
|
30
|
-
icon:
|
|
34
|
+
}, y = "versaur-96471452918b8b62", z = {
|
|
35
|
+
icon: y
|
|
31
36
|
};
|
|
32
37
|
export {
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
38
|
+
p as avatarStyles,
|
|
39
|
+
g as badgeStyles,
|
|
40
|
+
h as bannerStyles,
|
|
41
|
+
_ as buttonIconStyles,
|
|
42
|
+
S as buttonStyles,
|
|
43
|
+
x as dotStyles,
|
|
44
|
+
k as headingStyles,
|
|
45
|
+
$ as hrStyles,
|
|
46
|
+
z as iconStyles,
|
|
47
|
+
q as kbdStyles,
|
|
48
|
+
j as loaderStyles,
|
|
49
|
+
I as textStyles,
|
|
50
|
+
w as tooltipStyles
|
|
45
51
|
};
|
package/dist/tokens/colors.css
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
--color-primary-active: #a04d38;
|
|
7
7
|
--color-primary-bold: #8f4230;
|
|
8
8
|
--color-primary-soft: #fff8f6;
|
|
9
|
+
--color-primary-focus: #d99785;
|
|
9
10
|
|
|
10
11
|
/* Secondary Color - Sage */
|
|
11
12
|
--color-secondary: #5f9a7e;
|
|
@@ -14,6 +15,7 @@
|
|
|
14
15
|
--color-secondary-active: #3d7057;
|
|
15
16
|
--color-secondary-bold: #336050;
|
|
16
17
|
--color-secondary-soft: #f6fffa;
|
|
18
|
+
--color-secondary-focus: #99b8a8;
|
|
17
19
|
|
|
18
20
|
/* Outline/Tertiary Color - Mist */
|
|
19
21
|
--color-outline: #84a5c0;
|
|
@@ -22,6 +24,7 @@
|
|
|
22
24
|
--color-outline-active: #5a7fa0;
|
|
23
25
|
--color-outline-bold: #5a7a99;
|
|
24
26
|
--color-outline-soft: #f5faff;
|
|
27
|
+
--color-outline-focus: #b1c5d8;
|
|
25
28
|
|
|
26
29
|
/* Danger Color - Red */
|
|
27
30
|
--color-danger: #cc2f3e;
|
|
@@ -30,6 +33,7 @@
|
|
|
30
33
|
--color-danger-active: #9e222d;
|
|
31
34
|
--color-danger-bold: #8a1f2b;
|
|
32
35
|
--color-danger-soft: #fff5f6;
|
|
36
|
+
--color-danger-focus: #e67f8d;
|
|
33
37
|
|
|
34
38
|
/* Ghost/Neutral Color - Slate */
|
|
35
39
|
--color-ghost: #3d405b;
|
|
@@ -38,6 +42,7 @@
|
|
|
38
42
|
--color-ghost-active: #33354d;
|
|
39
43
|
--color-ghost-bold: #23243a;
|
|
40
44
|
--color-ghost-soft: #e3e4ea;
|
|
45
|
+
--color-ghost-focus: #8f92b8;
|
|
41
46
|
|
|
42
47
|
/* Neutral Color - Light Gray */
|
|
43
48
|
--color-neutral: #e9ecef;
|
|
@@ -46,6 +51,7 @@
|
|
|
46
51
|
--color-neutral-active: #cfd4d9;
|
|
47
52
|
--color-neutral-bold: #b0b3b8;
|
|
48
53
|
--color-neutral-soft: #f8f9fa;
|
|
54
|
+
--color-neutral-focus: #f1f3f6;
|
|
49
55
|
|
|
50
56
|
/* Success Color */
|
|
51
57
|
--color-success: #4d9466;
|
|
@@ -54,6 +60,7 @@
|
|
|
54
60
|
--color-success-active: #336b48;
|
|
55
61
|
--color-success-bold: #2a5c3e;
|
|
56
62
|
--color-success-soft: #f4fff9;
|
|
63
|
+
--color-success-focus: #93b8a5;
|
|
57
64
|
|
|
58
65
|
/* Warning Color */
|
|
59
66
|
--color-warning: #c47738;
|
|
@@ -62,6 +69,7 @@
|
|
|
62
69
|
--color-warning-active: #985b28;
|
|
63
70
|
--color-warning-bold: #854f22;
|
|
64
71
|
--color-warning-soft: #fff1e4;
|
|
72
|
+
--color-warning-focus: #daa573;
|
|
65
73
|
|
|
66
74
|
/* Info Color - Blue */
|
|
67
75
|
--color-info: #6b8fad;
|
|
@@ -70,6 +78,7 @@
|
|
|
70
78
|
--color-info-active: #4a6a8a;
|
|
71
79
|
--color-info-bold: #3c5a7a;
|
|
72
80
|
--color-info-soft: #f0f8ff;
|
|
81
|
+
--color-info-focus: #a7c1d1;
|
|
73
82
|
|
|
74
83
|
/* Neutral Colors - White, Black, Gray */
|
|
75
84
|
--color-white: #ffffff;
|
package/package.json
CHANGED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export type ChipMultipleInputGap = '1' | '3' | '4';
|
|
2
|
-
export type ChipMultipleInputWrap = 'false';
|
|
3
|
-
export interface ChipMultipleInputDataAttrs {
|
|
4
|
-
gap?: ChipMultipleInputGap;
|
|
5
|
-
wrap?: ChipMultipleInputWrap;
|
|
6
|
-
disabled?: boolean;
|
|
7
|
-
selected?: boolean;
|
|
8
|
-
}
|
|
9
|
-
export declare namespace ChipMultipleInput {
|
|
10
|
-
type Gap = ChipMultipleInputGap;
|
|
11
|
-
type Wrap = ChipMultipleInputWrap;
|
|
12
|
-
type DataAttrs = ChipMultipleInputDataAttrs;
|
|
13
|
-
}
|
|
14
|
-
//# sourceMappingURL=chip-multiple-input.types.generated.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"chip-multiple-input.types.generated.d.ts","sourceRoot":"","sources":["../../../src/components/forms/chip-multiple-input/chip-multiple-input.types.generated.ts"],"names":[],"mappings":"AAGA,MAAM,MAAM,oBAAoB,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;AACnD,MAAM,MAAM,qBAAqB,GAAG,OAAO,CAAC;AAE5C,MAAM,WAAW,0BAA0B;IACzC,GAAG,CAAC,EAAE,oBAAoB,CAAC;IAC3B,IAAI,CAAC,EAAE,qBAAqB,CAAC;IAC7B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,yBAAiB,iBAAiB,CAAC;IACjC,KAAY,GAAG,GAAG,oBAAoB,CAAC;IACvC,KAAY,IAAI,GAAG,qBAAqB,CAAC;IACzC,KAAY,SAAS,GAAG,0BAA0B,CAAC;CACpD"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/forms/chip-multiple-input/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,kCAAkC,CAAA;AACrF,mBAAmB,uCAAuC,CAAA"}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export type ChipSingleInputGap = '1' | '3' | '4';
|
|
2
|
-
export type ChipSingleInputWrap = 'false';
|
|
3
|
-
export interface ChipSingleInputDataAttrs {
|
|
4
|
-
gap?: ChipSingleInputGap;
|
|
5
|
-
wrap?: ChipSingleInputWrap;
|
|
6
|
-
disabled?: boolean;
|
|
7
|
-
invalid?: boolean;
|
|
8
|
-
selected?: boolean;
|
|
9
|
-
}
|
|
10
|
-
export declare namespace ChipSingleInput {
|
|
11
|
-
type Gap = ChipSingleInputGap;
|
|
12
|
-
type Wrap = ChipSingleInputWrap;
|
|
13
|
-
type DataAttrs = ChipSingleInputDataAttrs;
|
|
14
|
-
}
|
|
15
|
-
//# sourceMappingURL=chip-single-input.types.generated.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"chip-single-input.types.generated.d.ts","sourceRoot":"","sources":["../../../src/components/forms/chip-single-input/chip-single-input.types.generated.ts"],"names":[],"mappings":"AAGA,MAAM,MAAM,kBAAkB,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;AACjD,MAAM,MAAM,mBAAmB,GAAG,OAAO,CAAC;AAE1C,MAAM,WAAW,wBAAwB;IACvC,GAAG,CAAC,EAAE,kBAAkB,CAAC;IACzB,IAAI,CAAC,EAAE,mBAAmB,CAAC;IAC3B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,yBAAiB,eAAe,CAAC;IAC/B,KAAY,GAAG,GAAG,kBAAkB,CAAC;IACrC,KAAY,IAAI,GAAG,mBAAmB,CAAC;IACvC,KAAY,SAAS,GAAG,wBAAwB,CAAC;CAClD"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/forms/chip-single-input/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,gCAAgC,CAAA;AACjF,mBAAmB,qCAAqC,CAAA"}
|