@utrecht/component-library-vue 1.0.0-alpha.2 → 1.0.0-alpha.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/UtrechtBadgeStatus.vue.d.ts +12 -0
- package/dist/UtrechtButton.vue.d.ts +39 -0
- package/dist/UtrechtCheckbox.vue.d.ts +67 -0
- package/dist/UtrechtFormLabel.vue.d.ts +31 -0
- package/dist/UtrechtHeading.vue.d.ts +12 -0
- package/dist/UtrechtLink.vue.d.ts +14 -0
- package/dist/UtrechtParagraph.vue.d.ts +14 -0
- package/dist/UtrechtRadioButton.vue.d.ts +64 -0
- package/dist/UtrechtSelect.vue.d.ts +51 -0
- package/dist/UtrechtSelectOption.vue.d.ts +14 -0
- package/dist/UtrechtTextarea.vue.d.ts +59 -0
- package/dist/UtrechtTextbox.vue.d.ts +59 -0
- package/dist/component-library-vue.es.js +89 -35
- package/dist/component-library-vue.umd.js +1 -1
- package/dist/index.d.ts +29 -0
- package/dist/style.css +16 -6
- package/package.json +17 -18
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
status: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
};
|
|
6
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
status: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
required: false;
|
|
10
|
+
};
|
|
11
|
+
}>>, {}>;
|
|
12
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
appearance: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
};
|
|
6
|
+
busy: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
required: false;
|
|
9
|
+
};
|
|
10
|
+
disabled: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
required: false;
|
|
13
|
+
};
|
|
14
|
+
type: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
required: false;
|
|
17
|
+
};
|
|
18
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
appearance: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
required: false;
|
|
22
|
+
};
|
|
23
|
+
busy: {
|
|
24
|
+
type: BooleanConstructor;
|
|
25
|
+
required: false;
|
|
26
|
+
};
|
|
27
|
+
disabled: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
required: false;
|
|
30
|
+
};
|
|
31
|
+
type: {
|
|
32
|
+
type: StringConstructor;
|
|
33
|
+
required: false;
|
|
34
|
+
};
|
|
35
|
+
}>>, {
|
|
36
|
+
busy: boolean;
|
|
37
|
+
disabled: boolean;
|
|
38
|
+
}>;
|
|
39
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
checked: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
};
|
|
6
|
+
disabled: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
required: false;
|
|
9
|
+
};
|
|
10
|
+
invalid: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
required: false;
|
|
13
|
+
};
|
|
14
|
+
modelValue: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
required: false;
|
|
17
|
+
};
|
|
18
|
+
required: {
|
|
19
|
+
type: BooleanConstructor;
|
|
20
|
+
required: false;
|
|
21
|
+
};
|
|
22
|
+
value: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
required: false;
|
|
25
|
+
};
|
|
26
|
+
}, {
|
|
27
|
+
isSet: (arg: any) => arg is Set<any>;
|
|
28
|
+
isChecked: <T = any>(modelValue: T, value: T) => boolean;
|
|
29
|
+
checkValue: <T_1 = any>(modelValue: T_1 | T_1[] | Set<T_1>, value: T_1) => T_1 | T_1[] | Set<T_1>;
|
|
30
|
+
uncheckValue: <T_2 = any>(modelValue: T_2, value: T_2) => string | T_2[] | Set<T_2>;
|
|
31
|
+
}, unknown, {}, {
|
|
32
|
+
$_handleInputEvent(_evt: InputEvent): void;
|
|
33
|
+
$_isChecked(): any;
|
|
34
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
35
|
+
checked: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
required: false;
|
|
38
|
+
};
|
|
39
|
+
disabled: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
required: false;
|
|
42
|
+
};
|
|
43
|
+
invalid: {
|
|
44
|
+
type: BooleanConstructor;
|
|
45
|
+
required: false;
|
|
46
|
+
};
|
|
47
|
+
modelValue: {
|
|
48
|
+
type: StringConstructor;
|
|
49
|
+
required: false;
|
|
50
|
+
};
|
|
51
|
+
required: {
|
|
52
|
+
type: BooleanConstructor;
|
|
53
|
+
required: false;
|
|
54
|
+
};
|
|
55
|
+
value: {
|
|
56
|
+
type: StringConstructor;
|
|
57
|
+
required: false;
|
|
58
|
+
};
|
|
59
|
+
}>> & {
|
|
60
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
61
|
+
}, {
|
|
62
|
+
required: boolean;
|
|
63
|
+
disabled: boolean;
|
|
64
|
+
checked: boolean;
|
|
65
|
+
invalid: boolean;
|
|
66
|
+
}>;
|
|
67
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
checked: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
};
|
|
6
|
+
disabled: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
required: false;
|
|
9
|
+
};
|
|
10
|
+
type: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
required: false;
|
|
13
|
+
};
|
|
14
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
+
checked: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
required: false;
|
|
18
|
+
};
|
|
19
|
+
disabled: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
required: false;
|
|
22
|
+
};
|
|
23
|
+
type: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
required: false;
|
|
26
|
+
};
|
|
27
|
+
}>>, {
|
|
28
|
+
disabled: boolean;
|
|
29
|
+
checked: boolean;
|
|
30
|
+
}>;
|
|
31
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
level: {
|
|
3
|
+
type: NumberConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
level: {
|
|
8
|
+
type: NumberConstructor;
|
|
9
|
+
required: true;
|
|
10
|
+
};
|
|
11
|
+
}>>, {}>;
|
|
12
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
external: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
};
|
|
6
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
external: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
required: false;
|
|
10
|
+
};
|
|
11
|
+
}>>, {
|
|
12
|
+
external: boolean;
|
|
13
|
+
}>;
|
|
14
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
lead: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
};
|
|
6
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
lead: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
required: false;
|
|
10
|
+
};
|
|
11
|
+
}>>, {
|
|
12
|
+
lead: boolean;
|
|
13
|
+
}>;
|
|
14
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
checked: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
};
|
|
6
|
+
disabled: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
required: false;
|
|
9
|
+
};
|
|
10
|
+
invalid: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
required: false;
|
|
13
|
+
};
|
|
14
|
+
modelValue: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
required: false;
|
|
17
|
+
};
|
|
18
|
+
required: {
|
|
19
|
+
type: BooleanConstructor;
|
|
20
|
+
required: false;
|
|
21
|
+
};
|
|
22
|
+
value: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
required: false;
|
|
25
|
+
};
|
|
26
|
+
}, {
|
|
27
|
+
isChecked: <T = any>(modelValue: T, value: T) => boolean;
|
|
28
|
+
}, unknown, {}, {
|
|
29
|
+
$_handleInputEvent(evtTarget: HTMLInputElement): void;
|
|
30
|
+
$_isChecked(): any;
|
|
31
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32
|
+
checked: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
required: false;
|
|
35
|
+
};
|
|
36
|
+
disabled: {
|
|
37
|
+
type: BooleanConstructor;
|
|
38
|
+
required: false;
|
|
39
|
+
};
|
|
40
|
+
invalid: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
required: false;
|
|
43
|
+
};
|
|
44
|
+
modelValue: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
required: false;
|
|
47
|
+
};
|
|
48
|
+
required: {
|
|
49
|
+
type: BooleanConstructor;
|
|
50
|
+
required: false;
|
|
51
|
+
};
|
|
52
|
+
value: {
|
|
53
|
+
type: StringConstructor;
|
|
54
|
+
required: false;
|
|
55
|
+
};
|
|
56
|
+
}>> & {
|
|
57
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
58
|
+
}, {
|
|
59
|
+
required: boolean;
|
|
60
|
+
disabled: boolean;
|
|
61
|
+
checked: boolean;
|
|
62
|
+
invalid: boolean;
|
|
63
|
+
}>;
|
|
64
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
disabled: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
};
|
|
6
|
+
invalid: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
required: false;
|
|
9
|
+
};
|
|
10
|
+
modelValue: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
required: false;
|
|
13
|
+
};
|
|
14
|
+
readonly: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
required: false;
|
|
17
|
+
};
|
|
18
|
+
required: {
|
|
19
|
+
type: BooleanConstructor;
|
|
20
|
+
required: false;
|
|
21
|
+
};
|
|
22
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
|
+
disabled: {
|
|
24
|
+
type: BooleanConstructor;
|
|
25
|
+
required: false;
|
|
26
|
+
};
|
|
27
|
+
invalid: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
required: false;
|
|
30
|
+
};
|
|
31
|
+
modelValue: {
|
|
32
|
+
type: StringConstructor;
|
|
33
|
+
required: false;
|
|
34
|
+
};
|
|
35
|
+
readonly: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
required: false;
|
|
38
|
+
};
|
|
39
|
+
required: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
required: false;
|
|
42
|
+
};
|
|
43
|
+
}>> & {
|
|
44
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
45
|
+
}, {
|
|
46
|
+
required: boolean;
|
|
47
|
+
disabled: boolean;
|
|
48
|
+
invalid: boolean;
|
|
49
|
+
readonly: boolean;
|
|
50
|
+
}>;
|
|
51
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
disabled: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
};
|
|
6
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
disabled: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
required: false;
|
|
10
|
+
};
|
|
11
|
+
}>>, {
|
|
12
|
+
disabled: boolean;
|
|
13
|
+
}>;
|
|
14
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
disabled: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
};
|
|
6
|
+
invalid: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
required: false;
|
|
9
|
+
};
|
|
10
|
+
modelValue: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
required: false;
|
|
13
|
+
};
|
|
14
|
+
readonly: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
required: false;
|
|
17
|
+
};
|
|
18
|
+
required: {
|
|
19
|
+
type: BooleanConstructor;
|
|
20
|
+
required: false;
|
|
21
|
+
};
|
|
22
|
+
type: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
required: false;
|
|
25
|
+
};
|
|
26
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
27
|
+
disabled: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
required: false;
|
|
30
|
+
};
|
|
31
|
+
invalid: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
required: false;
|
|
34
|
+
};
|
|
35
|
+
modelValue: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
required: false;
|
|
38
|
+
};
|
|
39
|
+
readonly: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
required: false;
|
|
42
|
+
};
|
|
43
|
+
required: {
|
|
44
|
+
type: BooleanConstructor;
|
|
45
|
+
required: false;
|
|
46
|
+
};
|
|
47
|
+
type: {
|
|
48
|
+
type: StringConstructor;
|
|
49
|
+
required: false;
|
|
50
|
+
};
|
|
51
|
+
}>> & {
|
|
52
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
53
|
+
}, {
|
|
54
|
+
required: boolean;
|
|
55
|
+
disabled: boolean;
|
|
56
|
+
invalid: boolean;
|
|
57
|
+
readonly: boolean;
|
|
58
|
+
}>;
|
|
59
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
disabled: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
};
|
|
6
|
+
invalid: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
required: false;
|
|
9
|
+
};
|
|
10
|
+
modelValue: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
required: false;
|
|
13
|
+
};
|
|
14
|
+
readonly: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
required: false;
|
|
17
|
+
};
|
|
18
|
+
required: {
|
|
19
|
+
type: BooleanConstructor;
|
|
20
|
+
required: false;
|
|
21
|
+
};
|
|
22
|
+
type: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
required: false;
|
|
25
|
+
};
|
|
26
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
27
|
+
disabled: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
required: false;
|
|
30
|
+
};
|
|
31
|
+
invalid: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
required: false;
|
|
34
|
+
};
|
|
35
|
+
modelValue: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
required: false;
|
|
38
|
+
};
|
|
39
|
+
readonly: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
required: false;
|
|
42
|
+
};
|
|
43
|
+
required: {
|
|
44
|
+
type: BooleanConstructor;
|
|
45
|
+
required: false;
|
|
46
|
+
};
|
|
47
|
+
type: {
|
|
48
|
+
type: StringConstructor;
|
|
49
|
+
required: false;
|
|
50
|
+
};
|
|
51
|
+
}>> & {
|
|
52
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
53
|
+
}, {
|
|
54
|
+
required: boolean;
|
|
55
|
+
disabled: boolean;
|
|
56
|
+
invalid: boolean;
|
|
57
|
+
readonly: boolean;
|
|
58
|
+
}>;
|
|
59
|
+
export default _sfc_main;
|
|
@@ -26,16 +26,16 @@ var _export_sfc = (sfc, props) => {
|
|
|
26
26
|
}
|
|
27
27
|
return target;
|
|
28
28
|
};
|
|
29
|
-
const _sfc_main$
|
|
30
|
-
const _hoisted_1$
|
|
29
|
+
const _sfc_main$r = {};
|
|
30
|
+
const _hoisted_1$n = { class: "utrecht-article" };
|
|
31
31
|
function _sfc_render$f(_ctx, _cache) {
|
|
32
|
-
return openBlock(), createElementBlock("article", _hoisted_1$
|
|
32
|
+
return openBlock(), createElementBlock("article", _hoisted_1$n, [
|
|
33
33
|
renderSlot(_ctx.$slots, "default")
|
|
34
34
|
]);
|
|
35
35
|
}
|
|
36
|
-
var UtrechtArticle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
36
|
+
var UtrechtArticle = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["render", _sfc_render$f]]);
|
|
37
37
|
var index_scss_vue_type_style_index_0_src_70491734_lang = "";
|
|
38
|
-
const _sfc_main$
|
|
38
|
+
const _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
39
39
|
props: {
|
|
40
40
|
status: null
|
|
41
41
|
},
|
|
@@ -51,9 +51,9 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
51
51
|
};
|
|
52
52
|
}
|
|
53
53
|
});
|
|
54
|
-
var
|
|
55
|
-
const _hoisted_1$
|
|
56
|
-
const _sfc_main$
|
|
54
|
+
var index_scss_vue_type_style_index_0_src_527c33ba_lang = "";
|
|
55
|
+
const _hoisted_1$m = ["aria-busy", "disabled", "type"];
|
|
56
|
+
const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
57
57
|
props: {
|
|
58
58
|
appearance: null,
|
|
59
59
|
busy: { type: Boolean },
|
|
@@ -72,22 +72,23 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
72
72
|
"utrecht-button--subtle": __props.appearance === "subtle-button"
|
|
73
73
|
}]),
|
|
74
74
|
"aria-busy": __props.busy || void 0,
|
|
75
|
-
disabled: __props.disabled
|
|
75
|
+
disabled: __props.disabled,
|
|
76
|
+
type: __props.type || "button"
|
|
76
77
|
}, [
|
|
77
78
|
renderSlot(_ctx.$slots, "default")
|
|
78
|
-
], 10, _hoisted_1$
|
|
79
|
+
], 10, _hoisted_1$m);
|
|
79
80
|
};
|
|
80
81
|
}
|
|
81
82
|
});
|
|
82
83
|
var index_scss_vue_type_style_index_0_src_2303b246_lang = "";
|
|
83
|
-
const _sfc_main$
|
|
84
|
-
const _hoisted_1$
|
|
84
|
+
const _sfc_main$o = {};
|
|
85
|
+
const _hoisted_1$l = { class: "utrecht-button-group" };
|
|
85
86
|
function _sfc_render$e(_ctx, _cache) {
|
|
86
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
87
|
+
return openBlock(), createElementBlock("div", _hoisted_1$l, [
|
|
87
88
|
renderSlot(_ctx.$slots, "default")
|
|
88
89
|
]);
|
|
89
90
|
}
|
|
90
|
-
var UtrechtButtonGroup = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
91
|
+
var UtrechtButtonGroup = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["render", _sfc_render$e]]);
|
|
91
92
|
function looseCompareArrays(a, b) {
|
|
92
93
|
if (a.length !== b.length)
|
|
93
94
|
return false;
|
|
@@ -135,7 +136,7 @@ const isArray = Array.isArray;
|
|
|
135
136
|
const isDate = (val) => val instanceof Date;
|
|
136
137
|
const isObject = (val) => val !== null && typeof val === "object";
|
|
137
138
|
var index_scss_vue_type_style_index_0_src_a26e3682_lang = "";
|
|
138
|
-
const _hoisted_1$
|
|
139
|
+
const _hoisted_1$k = ["aria-invalid", "checked", "disabled", "required", "value"];
|
|
139
140
|
const isSet = (arg) => arg instanceof Set;
|
|
140
141
|
const isChecked$1 = (modelValue, value) => {
|
|
141
142
|
if (Array.isArray(modelValue)) {
|
|
@@ -178,7 +179,7 @@ const __default__$1 = {
|
|
|
178
179
|
}
|
|
179
180
|
}
|
|
180
181
|
};
|
|
181
|
-
const _sfc_main$
|
|
182
|
+
const _sfc_main$n = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$1), {
|
|
182
183
|
props: {
|
|
183
184
|
checked: { type: Boolean },
|
|
184
185
|
disabled: { type: Boolean },
|
|
@@ -204,48 +205,48 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
204
205
|
required: __props.required,
|
|
205
206
|
value: __props.value,
|
|
206
207
|
onInput: _cache[0] || (_cache[0] = ($event) => _ctx.$_handleInputEvent($event))
|
|
207
|
-
}, null, 42, _hoisted_1$
|
|
208
|
+
}, null, 42, _hoisted_1$k);
|
|
208
209
|
};
|
|
209
210
|
}
|
|
210
211
|
}));
|
|
211
212
|
var index_scss_vue_type_style_index_0_src_377dc625_lang = "";
|
|
212
|
-
const _sfc_main$
|
|
213
|
-
const _hoisted_1$
|
|
213
|
+
const _sfc_main$m = {};
|
|
214
|
+
const _hoisted_1$j = { class: "utrecht-document" };
|
|
214
215
|
function _sfc_render$d(_ctx, _cache) {
|
|
215
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
216
|
+
return openBlock(), createElementBlock("div", _hoisted_1$j, [
|
|
216
217
|
renderSlot(_ctx.$slots, "default")
|
|
217
218
|
]);
|
|
218
219
|
}
|
|
219
|
-
var UtrechtDocument = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
220
|
+
var UtrechtDocument = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["render", _sfc_render$d]]);
|
|
220
221
|
var index_scss_vue_type_style_index_0_src_0334bbae_lang = "";
|
|
221
|
-
const _sfc_main$
|
|
222
|
-
const _hoisted_1$
|
|
222
|
+
const _sfc_main$l = {};
|
|
223
|
+
const _hoisted_1$i = { class: "utrecht-form-field" };
|
|
223
224
|
function _sfc_render$c(_ctx, _cache) {
|
|
224
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
225
|
+
return openBlock(), createElementBlock("div", _hoisted_1$i, [
|
|
225
226
|
renderSlot(_ctx.$slots, "default")
|
|
226
227
|
]);
|
|
227
228
|
}
|
|
228
|
-
var UtrechtFormField = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
229
|
+
var UtrechtFormField = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["render", _sfc_render$c]]);
|
|
229
230
|
var index_scss_vue_type_style_index_0_src_7d9b1ad2_lang = "";
|
|
230
|
-
const _sfc_main$
|
|
231
|
-
const _hoisted_1$
|
|
231
|
+
const _sfc_main$k = {};
|
|
232
|
+
const _hoisted_1$h = { class: "utrecht-form-fieldset" };
|
|
232
233
|
function _sfc_render$b(_ctx, _cache) {
|
|
233
|
-
return openBlock(), createElementBlock("fieldset", _hoisted_1$
|
|
234
|
+
return openBlock(), createElementBlock("fieldset", _hoisted_1$h, [
|
|
234
235
|
renderSlot(_ctx.$slots, "default")
|
|
235
236
|
]);
|
|
236
237
|
}
|
|
237
|
-
var UtrechtFormFieldset = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
238
|
+
var UtrechtFormFieldset = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["render", _sfc_render$b]]);
|
|
238
239
|
var index_scss_vue_type_style_index_0_src_557ef4dc_lang = "";
|
|
239
|
-
const _sfc_main$
|
|
240
|
-
const _hoisted_1$
|
|
240
|
+
const _sfc_main$j = {};
|
|
241
|
+
const _hoisted_1$g = { class: "utrecht-form-fieldset__legend" };
|
|
241
242
|
function _sfc_render$a(_ctx, _cache) {
|
|
242
|
-
return openBlock(), createElementBlock("legend", _hoisted_1$
|
|
243
|
+
return openBlock(), createElementBlock("legend", _hoisted_1$g, [
|
|
243
244
|
renderSlot(_ctx.$slots, "default")
|
|
244
245
|
]);
|
|
245
246
|
}
|
|
246
|
-
var UtrechtFormFieldsetLegend = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
247
|
+
var UtrechtFormFieldsetLegend = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["render", _sfc_render$a]]);
|
|
247
248
|
var index_scss_vue_type_style_index_0_src_e35723f4_lang = "";
|
|
248
|
-
const _sfc_main$
|
|
249
|
+
const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
249
250
|
props: {
|
|
250
251
|
checked: { type: Boolean },
|
|
251
252
|
disabled: { type: Boolean },
|
|
@@ -266,6 +267,59 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
266
267
|
};
|
|
267
268
|
}
|
|
268
269
|
});
|
|
270
|
+
var index_scss_vue_type_style_index_0_src_0797b6fe_scoped_true_lang = "";
|
|
271
|
+
var index_scss_vue_type_style_index_1_src_0797b6fe_scoped_true_lang = "";
|
|
272
|
+
var index_scss_vue_type_style_index_2_src_0797b6fe_scoped_true_lang = "";
|
|
273
|
+
var index_scss_vue_type_style_index_3_src_0797b6fe_scoped_true_lang = "";
|
|
274
|
+
var index_scss_vue_type_style_index_4_src_0797b6fe_scoped_true_lang = "";
|
|
275
|
+
var index_scss_vue_type_style_index_5_src_0797b6fe_scoped_true_lang = "";
|
|
276
|
+
const _hoisted_1$f = {
|
|
277
|
+
key: 0,
|
|
278
|
+
class: "utrecht-heading-1"
|
|
279
|
+
};
|
|
280
|
+
const _hoisted_2 = {
|
|
281
|
+
key: 1,
|
|
282
|
+
class: "utrecht-heading-2"
|
|
283
|
+
};
|
|
284
|
+
const _hoisted_3 = {
|
|
285
|
+
key: 2,
|
|
286
|
+
class: "utrecht-heading-3"
|
|
287
|
+
};
|
|
288
|
+
const _hoisted_4 = {
|
|
289
|
+
key: 3,
|
|
290
|
+
class: "utrecht-heading-4"
|
|
291
|
+
};
|
|
292
|
+
const _hoisted_5 = {
|
|
293
|
+
key: 4,
|
|
294
|
+
class: "utrecht-heading-5"
|
|
295
|
+
};
|
|
296
|
+
const _hoisted_6 = {
|
|
297
|
+
key: 5,
|
|
298
|
+
class: "utrecht-heading-6"
|
|
299
|
+
};
|
|
300
|
+
const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
301
|
+
props: {
|
|
302
|
+
level: null
|
|
303
|
+
},
|
|
304
|
+
setup(__props) {
|
|
305
|
+
return (_ctx, _cache) => {
|
|
306
|
+
return __props.level == 1 ? (openBlock(), createElementBlock("h1", _hoisted_1$f, [
|
|
307
|
+
renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
308
|
+
])) : __props.level == 2 ? (openBlock(), createElementBlock("h2", _hoisted_2, [
|
|
309
|
+
renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
310
|
+
])) : __props.level == 3 ? (openBlock(), createElementBlock("h3", _hoisted_3, [
|
|
311
|
+
renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
312
|
+
])) : __props.level == 4 ? (openBlock(), createElementBlock("h4", _hoisted_4, [
|
|
313
|
+
renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
314
|
+
])) : __props.level == 5 ? (openBlock(), createElementBlock("h5", _hoisted_5, [
|
|
315
|
+
renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
316
|
+
])) : (openBlock(), createElementBlock("h6", _hoisted_6, [
|
|
317
|
+
renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
318
|
+
]));
|
|
319
|
+
};
|
|
320
|
+
}
|
|
321
|
+
});
|
|
322
|
+
var UtrechtHeading = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__scopeId", "data-v-0797b6fe"]]);
|
|
269
323
|
var index_scss_vue_type_style_index_0_src_75371619_lang = "";
|
|
270
324
|
const _sfc_main$g = {};
|
|
271
325
|
const _hoisted_1$e = { class: "utrecht-heading-1" };
|
|
@@ -546,4 +600,4 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
546
600
|
};
|
|
547
601
|
}
|
|
548
602
|
});
|
|
549
|
-
export { UtrechtArticle as Article, _sfc_main$
|
|
603
|
+
export { UtrechtArticle as Article, _sfc_main$q as BadgeStatus, _sfc_main$p as Button, UtrechtButtonGroup as ButtonGroup, _sfc_main$n as Checkbox, UtrechtDocument as Document, UtrechtFormField as FormField, UtrechtFormFieldset as FormFieldset, UtrechtFormFieldsetLegend as FormFieldsetLegend, _sfc_main$i as FormLabel, UtrechtHeading as Heading, UtrechtHeading1 as Heading1, UtrechtHeading2 as Heading2, UtrechtHeading3 as Heading3, UtrechtHeading4 as Heading4, UtrechtHeading5 as Heading5, UtrechtHeading6 as Heading6, _sfc_main$a as Link, UtrechtPage as Page, UtrechtPageContent as PageContent, UtrechtPageFooter as PageFooter, UtrechtPageHeader as PageHeader, _sfc_main$5 as Paragraph, _sfc_main$4 as RadioButton, _sfc_main$3 as Select, _sfc_main$2 as SelectOption, _sfc_main$1 as Textarea, _sfc_main as Textbox };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var at=Object.defineProperty,rt=Object.defineProperties;var lt=Object.getOwnPropertyDescriptors;var B=Object.getOwnPropertySymbols;var ct=Object.prototype.hasOwnProperty,st=Object.prototype.propertyIsEnumerable;var g=(r,t,s)=>t in r?at(r,t,{enumerable:!0,configurable:!0,writable:!0,value:s}):r[t]=s,_=(r,t)=>{for(var s in t||(t={}))ct.call(t,s)&&g(r,s,t[s]);if(B)for(var s of B(t))st.call(t,s)&&g(r,s,t[s]);return r},u=(r,t)=>rt(r,lt(t));(function(r,t){typeof exports=="object"&&typeof module!="undefined"?t(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],t):(r=typeof globalThis!="undefined"?globalThis:r||self,t(r["component-library-vue"]={},r.Vue))})(this,function(r,t){"use strict";var s="",c=(e,n)=>{const a=e.__vccOpts||e;for(const[l,o]of n)a[l]=o;return a};const p={},x={class:"utrecht-article"};function v(e,n){return t.openBlock(),t.createElementBlock("article",x,[t.renderSlot(e.$slots,"default")])}var C=c(p,[["render",v]]),dt="";const S=t.defineComponent({props:{status:null},setup(e){return(n,a)=>(t.openBlock(),t.createElementBlock("span",{class:t.normalizeClass(["utrecht-badge-status",{["utrecht-badge--"+e.status]:!0}])},[t.renderSlot(n.$slots,"default")],2))}});var it="";const q=["aria-busy","disabled"],E=t.defineComponent({props:{appearance:null,busy:{type:Boolean},disabled:{type:Boolean},type:null},setup(e){return(n,a)=>(t.openBlock(),t.createElementBlock("button",{class:t.normalizeClass(["utrecht-button",{"utrecht-button--busy":e.busy,"utrecht-button--disabled":e.disabled,"utrecht-button--primary-action":e.appearance==="primary-action-button","utrecht-button--secondary-action":e.appearance==="secondary-action-button","utrecht-button--submit":e.type==="submit","utrecht-button--subtle":e.appearance==="subtle-button"}]),"aria-busy":e.busy||void 0,disabled:e.disabled},[t.renderSlot(n.$slots,"default")],10,q))}});var ot="";const V={},H={class:"utrecht-button-group"};function U(e,n){return t.openBlock(),t.createElementBlock("div",H,[t.renderSlot(e.$slots,"default")])}var F=c(V,[["render",U]]);function A(e,n){if(e.length!==n.length)return!1;let a=!0;for(let l=0;a&&l<e.length;l++)a=d(e[l],n[l]);return a}function d(e,n){if(e===n)return!0;let a=f(e),l=f(n);if(a||l)return a&&l?e.getTime()===n.getTime():!1;if(a=h(e),l=h(n),a||l)return a&&l?A(e,n):!1;if(a=y(e),l=y(n),a||l){if(!a||!l)return!1;const o=Object.keys(e).length,nt=Object.keys(n).length;if(o!==nt)return!1;for(const i in e){const $=e.hasOwnProperty(i),k=n.hasOwnProperty(i);if($&&!k||!$&&k||!d(e[i],n[i]))return!1}}return String(e)===String(n)}const h=Array.isArray,f=e=>e instanceof Date,y=e=>e!==null&&typeof e=="object";var _t="";const P=["aria-invalid","checked","disabled","required","value"],m=e=>e instanceof Set,b=(e,n)=>Array.isArray(e)?e.includes(n):e instanceof Set?e.has(n):d(e,n),z=(e,n)=>Array.isArray(e)?[...e,n]:m(e)?new Set(e).add(n):n,I=(e,n)=>{if(Array.isArray(e))return e.filter(a=>a!==n);if(m(e)){const a=new Set(e);return a.delete(n),a}else return""},T={methods:{$_handleInputEvent(e){const{value:n,modelValue:a}=this,l=b(a,n)?I(a,n):z(a,n);this.$emit("update:modelValue",l)},$_isChecked(){return b(this.modelValue,this.value)}}},j=t.defineComponent(u(_({},T),{props:{checked:{type:Boolean},disabled:{type:Boolean},invalid:{type:Boolean},modelValue:null,required:{type:Boolean},value:null},emits:["update:modelValue"],setup(e){return(n,a)=>(t.openBlock(),t.createElementBlock("input",{type:"checkbox",class:t.normalizeClass(["utrecht-checkbox",{"utrecht-checkbox--checked":e.checked||n.$_isChecked(),"utrecht-checkbox--disabled":e.disabled,"utrecht-checkbox--invalid":e.invalid,"utrecht-checkbox--required":e.required}]),"aria-invalid":e.invalid||void 0,checked:typeof e.checked=="boolean"?e.checked:n.$_isChecked(),disabled:e.disabled,required:e.required,value:e.value,onInput:a[0]||(a[0]=l=>n.$_handleInputEvent(l))},null,42,P))}}));var ut="";const O={},w={class:"utrecht-document"};function D(e,n){return t.openBlock(),t.createElementBlock("div",w,[t.renderSlot(e.$slots,"default")])}var K=c(O,[["render",D]]),ht="";const L={},G={class:"utrecht-form-field"};function M(e,n){return t.openBlock(),t.createElementBlock("div",G,[t.renderSlot(e.$slots,"default")])}var R=c(L,[["render",M]]),ft="";const J={},N={class:"utrecht-form-fieldset"};function Q(e,n){return t.openBlock(),t.createElementBlock("fieldset",N,[t.renderSlot(e.$slots,"default")])}var W=c(J,[["render",Q]]),yt="";const X={},Y={class:"utrecht-form-fieldset__legend"};function Z(e,n){return t.openBlock(),t.createElementBlock("legend",Y,[t.renderSlot(e.$slots,"default")])}var ee=c(X,[["render",Z]]),mt="";const te=t.defineComponent({props:{checked:{type:Boolean},disabled:{type:Boolean},type:null},setup(e){return(n,a)=>(t.openBlock(),t.createElementBlock("label",{class:t.normalizeClass(["utrecht-form-label",{"utrecht-form-label--checked":e.checked,"utrecht-form-label--disabled":e.disabled,"utrecht-form-label--radio":e.type==="radio","utrecht-form-label--checkbox":e.type==="checkbox"}])},[t.renderSlot(n.$slots,"default")],2))}});var bt="";const ne={},ae={class:"utrecht-heading-1"};function re(e,n){return t.openBlock(),t.createElementBlock("h1",ae,[t.renderSlot(e.$slots,"default")])}var le=c(ne,[["render",re]]),$t="";const ce={},se={class:"utrecht-heading-2"};function de(e,n){return t.openBlock(),t.createElementBlock("h2",se,[t.renderSlot(e.$slots,"default")])}var ie=c(ce,[["render",de]]),kt="";const oe={},_e={class:"utrecht-heading-3"};function ue(e,n){return t.openBlock(),t.createElementBlock("h3",_e,[t.renderSlot(e.$slots,"default")])}var he=c(oe,[["render",ue]]),Bt="";const fe={},ye={class:"utrecht-heading-4"};function me(e,n){return t.openBlock(),t.createElementBlock("h4",ye,[t.renderSlot(e.$slots,"default")])}var be=c(fe,[["render",me]]),gt="";const $e={},ke={class:"utrecht-heading-5"};function Be(e,n){return t.openBlock(),t.createElementBlock("h5",ke,[t.renderSlot(e.$slots,"default")])}var ge=c($e,[["render",Be]]),pt="";const pe={},xe={class:"utrecht-heading-6"};function ve(e,n){return t.openBlock(),t.createElementBlock("h6",xe,[t.renderSlot(e.$slots,"default")])}var Ce=c(pe,[["render",ve]]),xt="";const Se=t.defineComponent({props:{external:{type:Boolean}},setup(e){return(n,a)=>(t.openBlock(),t.createElementBlock("a",{class:t.normalizeClass(["utrecht-link",{"utrecht-link--external":e.external}])},[t.renderSlot(n.$slots,"default")],2))}});var vt="";const qe={},Ee={class:"utrecht-page"};function Ve(e,n){return t.openBlock(),t.createElementBlock("div",Ee,[t.renderSlot(e.$slots,"default")])}var He=c(qe,[["render",Ve]]),Ct="";const Ue={},Fe={class:"utrecht-page-content"};function Ae(e,n){return t.openBlock(),t.createElementBlock("div",Fe,[t.renderSlot(e.$slots,"default")])}var Pe=c(Ue,[["render",Ae]]),St="";const ze={},Ie={class:"utrecht-page-footer"};function Te(e,n){return t.openBlock(),t.createElementBlock("footer",Ie,[t.renderSlot(e.$slots,"default")])}var je=c(ze,[["render",Te]]),qt="";const Oe={},we={class:"utrecht-page-header"};function De(e,n){return t.openBlock(),t.createElementBlock("header",we,[t.renderSlot(e.$slots,"default")])}var Ke=c(Oe,[["render",De]]),Et="";const Le=t.defineComponent({props:{lead:{type:Boolean}},setup(e){return(n,a)=>(t.openBlock(),t.createElementBlock("p",{class:t.normalizeClass(["utrecht-paragraph",{"utrecht-paragraph--lead":e.lead}])},[t.renderSlot(n.$slots,"default")],2))}});var Vt="";const Ge=["aria-invalid","checked","disabled","required","value"],Me=(e,n)=>d(e,n),Re={methods:{$_handleInputEvent(e){e.checked&&this.$emit("update:modelValue",this.value)},$_isChecked(){return typeof this.modelValue!="undefined"?Me(this.modelValue,this.value):this.checked}}},Je=t.defineComponent(u(_({},Re),{props:{checked:{type:Boolean},disabled:{type:Boolean},invalid:{type:Boolean},modelValue:null,required:{type:Boolean},value:null},emits:["update:modelValue"],setup(e){return(n,a)=>(t.openBlock(),t.createElementBlock("input",{type:"radio",class:t.normalizeClass(["utrecht-radio-button",{"utrecht-radio-button--checked":e.checked,"utrecht-radio-button--disabled":e.disabled,"utrecht-radio-button--invalid":e.invalid,"utrecht-radio-button--required":e.required}]),"aria-invalid":e.invalid||void 0,checked:n.$_isChecked(),disabled:e.disabled,required:e.required,value:e.value,onInput:a[0]||(a[0]=l=>n.$_handleInputEvent(l.target))},null,42,Ge))}}));var Ht="";const Ne=["aria-invalid","disabled","readonly","required","value"],Qe=t.defineComponent({props:{disabled:{type:Boolean},invalid:{type:Boolean},modelValue:null,readonly:{type:Boolean},required:{type:Boolean}},emits:["update:modelValue"],setup(e){return(n,a)=>(t.openBlock(),t.createElementBlock("select",{class:t.normalizeClass(["utrecht-select",{"utrecht-select--disabled":e.disabled,"utrecht-select--invalid":e.invalid,"utrecht-select--required":e.required,"utrecht-select--readonly":e.readonly}]),"aria-invalid":e.invalid||void 0,disabled:e.disabled,readonly:e.readonly,required:e.required,value:e.modelValue,onInput:a[0]||(a[0]=l=>n.$emit("update:modelValue",l.target.value))},[t.renderSlot(n.$slots,"default")],42,Ne))}});var Ut="";const We=["disabled"],Xe=t.defineComponent({props:{disabled:{type:Boolean}},setup(e){return(n,a)=>(t.openBlock(),t.createElementBlock("option",{class:t.normalizeClass(["utrecht-select__option",{"utrecht-select__option--disabled":e.disabled}]),disabled:e.disabled},[t.renderSlot(n.$slots,"default")],10,We))}});var Ft="";const Ye=["aria-invalid","disabled","readonly","required","value"],Ze=t.defineComponent({props:{disabled:{type:Boolean},invalid:{type:Boolean},modelValue:null,readonly:{type:Boolean},required:{type:Boolean},type:null},emits:["update:modelValue"],setup(e){return(n,a)=>(t.openBlock(),t.createElementBlock("textarea",{class:t.normalizeClass(["utrecht-textarea",{"utrecht-textarea--disabled":e.disabled,"utrecht-textarea--invalid":e.invalid,"utrecht-textarea--required":e.required,"utrecht-textarea--readonly":e.readonly}]),"aria-invalid":e.invalid||void 0,disabled:e.disabled,readonly:e.readonly,required:e.required,value:e.modelValue,onInput:a[0]||(a[0]=l=>n.$emit("update:modelValue",l.target.value))},null,42,Ye))}});var At="";const et=["aria-invalid","disabled","readonly","required","value"],tt=t.defineComponent({props:{disabled:{type:Boolean},invalid:{type:Boolean},modelValue:null,readonly:{type:Boolean},required:{type:Boolean},type:null},emits:["update:modelValue"],setup(e){return(n,a)=>(t.openBlock(),t.createElementBlock("input",{class:t.normalizeClass(["utrecht-textbox",{"utrecht-textbox--disabled":e.disabled,"utrecht-textbox--invalid":e.invalid,"utrecht-textbox--required":e.required,"utrecht-textbox--readonly":e.readonly}]),"aria-invalid":e.invalid||void 0,disabled:e.disabled,readonly:e.readonly,required:e.required,value:e.modelValue,onInput:a[0]||(a[0]=l=>n.$emit("update:modelValue",l.target.value))},null,42,et))}});r.Article=C,r.BadgeStatus=S,r.Button=E,r.ButtonGroup=F,r.Checkbox=j,r.Document=K,r.FormField=R,r.FormFieldset=W,r.FormFieldsetLegend=ee,r.FormLabel=te,r.Heading1=le,r.Heading2=ie,r.Heading3=he,r.Heading4=be,r.Heading5=ge,r.Heading6=Ce,r.Link=Se,r.Page=He,r.PageContent=Pe,r.PageFooter=je,r.PageHeader=Ke,r.Paragraph=Le,r.RadioButton=Je,r.Select=Qe,r.SelectOption=Xe,r.Textarea=Ze,r.Textbox=tt,Object.defineProperties(r,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});
|
|
1
|
+
var it=Object.defineProperty,_t=Object.defineProperties;var ut=Object.getOwnPropertyDescriptors;var g=Object.getOwnPropertySymbols;var ht=Object.prototype.hasOwnProperty,ft=Object.prototype.propertyIsEnumerable;var B=(a,t,s)=>t in a?it(a,t,{enumerable:!0,configurable:!0,writable:!0,value:s}):a[t]=s,_=(a,t)=>{for(var s in t||(t={}))ht.call(t,s)&&B(a,s,t[s]);if(g)for(var s of g(t))ft.call(t,s)&&B(a,s,t[s]);return a},u=(a,t)=>_t(a,ut(t));(function(a,t){typeof exports=="object"&&typeof module!="undefined"?t(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],t):(a=typeof globalThis!="undefined"?globalThis:a||self,t(a["component-library-vue"]={},a.Vue))})(this,function(a,t){"use strict";var s="",c=(e,n)=>{const l=e.__vccOpts||e;for(const[r,i]of n)l[r]=i;return l};const p={},x={class:"utrecht-article"};function v(e,n){return t.openBlock(),t.createElementBlock("article",x,[t.renderSlot(e.$slots,"default")])}var S=c(p,[["render",v]]),yt="";const E=t.defineComponent({props:{status:null},setup(e){return(n,l)=>(t.openBlock(),t.createElementBlock("span",{class:t.normalizeClass(["utrecht-badge-status",{["utrecht-badge--"+e.status]:!0}])},[t.renderSlot(n.$slots,"default")],2))}});var mt="";const C=["aria-busy","disabled","type"],q=t.defineComponent({props:{appearance:null,busy:{type:Boolean},disabled:{type:Boolean},type:null},setup(e){return(n,l)=>(t.openBlock(),t.createElementBlock("button",{class:t.normalizeClass(["utrecht-button",{"utrecht-button--busy":e.busy,"utrecht-button--disabled":e.disabled,"utrecht-button--primary-action":e.appearance==="primary-action-button","utrecht-button--secondary-action":e.appearance==="secondary-action-button","utrecht-button--submit":e.type==="submit","utrecht-button--subtle":e.appearance==="subtle-button"}]),"aria-busy":e.busy||void 0,disabled:e.disabled,type:e.type||"button"},[t.renderSlot(n.$slots,"default")],10,C))}});var bt="";const H={},V={class:"utrecht-button-group"};function U(e,n){return t.openBlock(),t.createElementBlock("div",V,[t.renderSlot(e.$slots,"default")])}var F=c(H,[["render",U]]);function A(e,n){if(e.length!==n.length)return!1;let l=!0;for(let r=0;l&&r<e.length;r++)l=d(e[r],n[r]);return l}function d(e,n){if(e===n)return!0;let l=f(e),r=f(n);if(l||r)return l&&r?e.getTime()===n.getTime():!1;if(l=h(e),r=h(n),l||r)return l&&r?A(e,n):!1;if(l=y(e),r=y(n),l||r){if(!l||!r)return!1;const i=Object.keys(e).length,ot=Object.keys(n).length;if(i!==ot)return!1;for(const o in e){const k=e.hasOwnProperty(o),$=n.hasOwnProperty(o);if(k&&!$||!k&&$||!d(e[o],n[o]))return!1}}return String(e)===String(n)}const h=Array.isArray,f=e=>e instanceof Date,y=e=>e!==null&&typeof e=="object";var kt="";const P=["aria-invalid","checked","disabled","required","value"],m=e=>e instanceof Set,b=(e,n)=>Array.isArray(e)?e.includes(n):e instanceof Set?e.has(n):d(e,n),z=(e,n)=>Array.isArray(e)?[...e,n]:m(e)?new Set(e).add(n):n,I=(e,n)=>{if(Array.isArray(e))return e.filter(l=>l!==n);if(m(e)){const l=new Set(e);return l.delete(n),l}else return""},T={methods:{$_handleInputEvent(e){const{value:n,modelValue:l}=this,r=b(l,n)?I(l,n):z(l,n);this.$emit("update:modelValue",r)},$_isChecked(){return b(this.modelValue,this.value)}}},j=t.defineComponent(u(_({},T),{props:{checked:{type:Boolean},disabled:{type:Boolean},invalid:{type:Boolean},modelValue:null,required:{type:Boolean},value:null},emits:["update:modelValue"],setup(e){return(n,l)=>(t.openBlock(),t.createElementBlock("input",{type:"checkbox",class:t.normalizeClass(["utrecht-checkbox",{"utrecht-checkbox--checked":e.checked||n.$_isChecked(),"utrecht-checkbox--disabled":e.disabled,"utrecht-checkbox--invalid":e.invalid,"utrecht-checkbox--required":e.required}]),"aria-invalid":e.invalid||void 0,checked:typeof e.checked=="boolean"?e.checked:n.$_isChecked(),disabled:e.disabled,required:e.required,value:e.value,onInput:l[0]||(l[0]=r=>n.$_handleInputEvent(r))},null,42,P))}}));var $t="";const O={},w={class:"utrecht-document"};function D(e,n){return t.openBlock(),t.createElementBlock("div",w,[t.renderSlot(e.$slots,"default")])}var K=c(O,[["render",D]]),gt="";const L={},G={class:"utrecht-form-field"};function M(e,n){return t.openBlock(),t.createElementBlock("div",G,[t.renderSlot(e.$slots,"default")])}var R=c(L,[["render",M]]),Bt="";const J={},N={class:"utrecht-form-fieldset"};function Q(e,n){return t.openBlock(),t.createElementBlock("fieldset",N,[t.renderSlot(e.$slots,"default")])}var W=c(J,[["render",Q]]),pt="";const X={},Y={class:"utrecht-form-fieldset__legend"};function Z(e,n){return t.openBlock(),t.createElementBlock("legend",Y,[t.renderSlot(e.$slots,"default")])}var ee=c(X,[["render",Z]]),xt="";const te=t.defineComponent({props:{checked:{type:Boolean},disabled:{type:Boolean},type:null},setup(e){return(n,l)=>(t.openBlock(),t.createElementBlock("label",{class:t.normalizeClass(["utrecht-form-label",{"utrecht-form-label--checked":e.checked,"utrecht-form-label--disabled":e.disabled,"utrecht-form-label--radio":e.type==="radio","utrecht-form-label--checkbox":e.type==="checkbox"}])},[t.renderSlot(n.$slots,"default")],2))}});var vt="",St="",Et="",Ct="",qt="",Ht="";const ne={key:0,class:"utrecht-heading-1"},le={key:1,class:"utrecht-heading-2"},ae={key:2,class:"utrecht-heading-3"},re={key:3,class:"utrecht-heading-4"},ce={key:4,class:"utrecht-heading-5"},se={key:5,class:"utrecht-heading-6"};var de=c(t.defineComponent({props:{level:null},setup(e){return(n,l)=>e.level==1?(t.openBlock(),t.createElementBlock("h1",ne,[t.renderSlot(n.$slots,"default",{},void 0,!0)])):e.level==2?(t.openBlock(),t.createElementBlock("h2",le,[t.renderSlot(n.$slots,"default",{},void 0,!0)])):e.level==3?(t.openBlock(),t.createElementBlock("h3",ae,[t.renderSlot(n.$slots,"default",{},void 0,!0)])):e.level==4?(t.openBlock(),t.createElementBlock("h4",re,[t.renderSlot(n.$slots,"default",{},void 0,!0)])):e.level==5?(t.openBlock(),t.createElementBlock("h5",ce,[t.renderSlot(n.$slots,"default",{},void 0,!0)])):(t.openBlock(),t.createElementBlock("h6",se,[t.renderSlot(n.$slots,"default",{},void 0,!0)]))}}),[["__scopeId","data-v-0797b6fe"]]),Ut="";const oe={},ie={class:"utrecht-heading-1"};function _e(e,n){return t.openBlock(),t.createElementBlock("h1",ie,[t.renderSlot(e.$slots,"default")])}var ue=c(oe,[["render",_e]]),Ft="";const he={},fe={class:"utrecht-heading-2"};function ye(e,n){return t.openBlock(),t.createElementBlock("h2",fe,[t.renderSlot(e.$slots,"default")])}var me=c(he,[["render",ye]]),At="";const be={},ke={class:"utrecht-heading-3"};function $e(e,n){return t.openBlock(),t.createElementBlock("h3",ke,[t.renderSlot(e.$slots,"default")])}var ge=c(be,[["render",$e]]),Pt="";const Be={},pe={class:"utrecht-heading-4"};function xe(e,n){return t.openBlock(),t.createElementBlock("h4",pe,[t.renderSlot(e.$slots,"default")])}var ve=c(Be,[["render",xe]]),zt="";const Se={},Ee={class:"utrecht-heading-5"};function Ce(e,n){return t.openBlock(),t.createElementBlock("h5",Ee,[t.renderSlot(e.$slots,"default")])}var qe=c(Se,[["render",Ce]]),It="";const He={},Ve={class:"utrecht-heading-6"};function Ue(e,n){return t.openBlock(),t.createElementBlock("h6",Ve,[t.renderSlot(e.$slots,"default")])}var Fe=c(He,[["render",Ue]]),Tt="";const Ae=t.defineComponent({props:{external:{type:Boolean}},setup(e){return(n,l)=>(t.openBlock(),t.createElementBlock("a",{class:t.normalizeClass(["utrecht-link",{"utrecht-link--external":e.external}])},[t.renderSlot(n.$slots,"default")],2))}});var jt="";const Pe={},ze={class:"utrecht-page"};function Ie(e,n){return t.openBlock(),t.createElementBlock("div",ze,[t.renderSlot(e.$slots,"default")])}var Te=c(Pe,[["render",Ie]]),Ot="";const je={},Oe={class:"utrecht-page-content"};function we(e,n){return t.openBlock(),t.createElementBlock("div",Oe,[t.renderSlot(e.$slots,"default")])}var De=c(je,[["render",we]]),wt="";const Ke={},Le={class:"utrecht-page-footer"};function Ge(e,n){return t.openBlock(),t.createElementBlock("footer",Le,[t.renderSlot(e.$slots,"default")])}var Me=c(Ke,[["render",Ge]]),Dt="";const Re={},Je={class:"utrecht-page-header"};function Ne(e,n){return t.openBlock(),t.createElementBlock("header",Je,[t.renderSlot(e.$slots,"default")])}var Qe=c(Re,[["render",Ne]]),Kt="";const We=t.defineComponent({props:{lead:{type:Boolean}},setup(e){return(n,l)=>(t.openBlock(),t.createElementBlock("p",{class:t.normalizeClass(["utrecht-paragraph",{"utrecht-paragraph--lead":e.lead}])},[t.renderSlot(n.$slots,"default")],2))}});var Lt="";const Xe=["aria-invalid","checked","disabled","required","value"],Ye=(e,n)=>d(e,n),Ze={methods:{$_handleInputEvent(e){e.checked&&this.$emit("update:modelValue",this.value)},$_isChecked(){return typeof this.modelValue!="undefined"?Ye(this.modelValue,this.value):this.checked}}},et=t.defineComponent(u(_({},Ze),{props:{checked:{type:Boolean},disabled:{type:Boolean},invalid:{type:Boolean},modelValue:null,required:{type:Boolean},value:null},emits:["update:modelValue"],setup(e){return(n,l)=>(t.openBlock(),t.createElementBlock("input",{type:"radio",class:t.normalizeClass(["utrecht-radio-button",{"utrecht-radio-button--checked":e.checked,"utrecht-radio-button--disabled":e.disabled,"utrecht-radio-button--invalid":e.invalid,"utrecht-radio-button--required":e.required}]),"aria-invalid":e.invalid||void 0,checked:n.$_isChecked(),disabled:e.disabled,required:e.required,value:e.value,onInput:l[0]||(l[0]=r=>n.$_handleInputEvent(r.target))},null,42,Xe))}}));var Gt="";const tt=["aria-invalid","disabled","readonly","required","value"],nt=t.defineComponent({props:{disabled:{type:Boolean},invalid:{type:Boolean},modelValue:null,readonly:{type:Boolean},required:{type:Boolean}},emits:["update:modelValue"],setup(e){return(n,l)=>(t.openBlock(),t.createElementBlock("select",{class:t.normalizeClass(["utrecht-select",{"utrecht-select--disabled":e.disabled,"utrecht-select--invalid":e.invalid,"utrecht-select--required":e.required,"utrecht-select--readonly":e.readonly}]),"aria-invalid":e.invalid||void 0,disabled:e.disabled,readonly:e.readonly,required:e.required,value:e.modelValue,onInput:l[0]||(l[0]=r=>n.$emit("update:modelValue",r.target.value))},[t.renderSlot(n.$slots,"default")],42,tt))}});var Mt="";const lt=["disabled"],at=t.defineComponent({props:{disabled:{type:Boolean}},setup(e){return(n,l)=>(t.openBlock(),t.createElementBlock("option",{class:t.normalizeClass(["utrecht-select__option",{"utrecht-select__option--disabled":e.disabled}]),disabled:e.disabled},[t.renderSlot(n.$slots,"default")],10,lt))}});var Rt="";const rt=["aria-invalid","disabled","readonly","required","value"],ct=t.defineComponent({props:{disabled:{type:Boolean},invalid:{type:Boolean},modelValue:null,readonly:{type:Boolean},required:{type:Boolean},type:null},emits:["update:modelValue"],setup(e){return(n,l)=>(t.openBlock(),t.createElementBlock("textarea",{class:t.normalizeClass(["utrecht-textarea",{"utrecht-textarea--disabled":e.disabled,"utrecht-textarea--invalid":e.invalid,"utrecht-textarea--required":e.required,"utrecht-textarea--readonly":e.readonly}]),"aria-invalid":e.invalid||void 0,disabled:e.disabled,readonly:e.readonly,required:e.required,value:e.modelValue,onInput:l[0]||(l[0]=r=>n.$emit("update:modelValue",r.target.value))},null,42,rt))}});var Jt="";const st=["aria-invalid","disabled","readonly","required","value"],dt=t.defineComponent({props:{disabled:{type:Boolean},invalid:{type:Boolean},modelValue:null,readonly:{type:Boolean},required:{type:Boolean},type:null},emits:["update:modelValue"],setup(e){return(n,l)=>(t.openBlock(),t.createElementBlock("input",{class:t.normalizeClass(["utrecht-textbox",{"utrecht-textbox--disabled":e.disabled,"utrecht-textbox--invalid":e.invalid,"utrecht-textbox--required":e.required,"utrecht-textbox--readonly":e.readonly}]),"aria-invalid":e.invalid||void 0,disabled:e.disabled,readonly:e.readonly,required:e.required,value:e.modelValue,onInput:l[0]||(l[0]=r=>n.$emit("update:modelValue",r.target.value))},null,42,st))}});a.Article=S,a.BadgeStatus=E,a.Button=q,a.ButtonGroup=F,a.Checkbox=j,a.Document=K,a.FormField=R,a.FormFieldset=W,a.FormFieldsetLegend=ee,a.FormLabel=te,a.Heading=de,a.Heading1=ue,a.Heading2=me,a.Heading3=ge,a.Heading4=ve,a.Heading5=qe,a.Heading6=Fe,a.Link=Ae,a.Page=Te,a.PageContent=De,a.PageFooter=Me,a.PageHeader=Qe,a.Paragraph=We,a.RadioButton=et,a.Select=nt,a.SelectOption=at,a.Textarea=ct,a.Textbox=dt,Object.defineProperties(a,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import Article from './UtrechtArticle.vue';
|
|
2
|
+
import BadgeStatus from './UtrechtBadgeStatus.vue';
|
|
3
|
+
import Button from './UtrechtButton.vue';
|
|
4
|
+
import ButtonGroup from './UtrechtButtonGroup.vue';
|
|
5
|
+
import Checkbox from './UtrechtCheckbox.vue';
|
|
6
|
+
import Document from './UtrechtDocument.vue';
|
|
7
|
+
import FormField from './UtrechtFormField.vue';
|
|
8
|
+
import FormFieldset from './UtrechtFormFieldset.vue';
|
|
9
|
+
import FormFieldsetLegend from './UtrechtFormFieldsetLegend.vue';
|
|
10
|
+
import FormLabel from './UtrechtFormLabel.vue';
|
|
11
|
+
import Heading from './UtrechtHeading.vue';
|
|
12
|
+
import Heading1 from './UtrechtHeading1.vue';
|
|
13
|
+
import Heading2 from './UtrechtHeading2.vue';
|
|
14
|
+
import Heading3 from './UtrechtHeading3.vue';
|
|
15
|
+
import Heading4 from './UtrechtHeading4.vue';
|
|
16
|
+
import Heading5 from './UtrechtHeading5.vue';
|
|
17
|
+
import Heading6 from './UtrechtHeading6.vue';
|
|
18
|
+
import Link from './UtrechtLink.vue';
|
|
19
|
+
import Page from './UtrechtPage.vue';
|
|
20
|
+
import PageContent from './UtrechtPageContent.vue';
|
|
21
|
+
import PageFooter from './UtrechtPageFooter.vue';
|
|
22
|
+
import PageHeader from './UtrechtPageHeader.vue';
|
|
23
|
+
import Paragraph from './UtrechtParagraph.vue';
|
|
24
|
+
import RadioButton from './UtrechtRadioButton.vue';
|
|
25
|
+
import Select from './UtrechtSelect.vue';
|
|
26
|
+
import SelectOption from './UtrechtSelectOption.vue';
|
|
27
|
+
import Textarea from './UtrechtTextarea.vue';
|
|
28
|
+
import Textbox from './UtrechtTextbox.vue';
|
|
29
|
+
export { Article, BadgeStatus, Button, ButtonGroup, Checkbox, Document, FormField, FormFieldset, FormFieldsetLegend, FormLabel, Heading, Heading1, Heading2, Heading3, Heading4, Heading5, Heading6, Link, Paragraph, Page, PageContent, PageFooter, PageHeader, RadioButton, Select, SelectOption, Textbox, Textarea, };
|
package/dist/style.css
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
.utrecht-article{max-inline-size:var(--utrecht-article-max-inline-size)}/**
|
|
2
|
-
* @license EUPL-1.2
|
|
3
|
-
* Copyright (c) 2021 Robbert Broersma
|
|
4
|
-
*/.utrecht-badge-status{background-color:var(--utrecht-badge-background-color, hsl(0deg, 0%, 0%));border-radius:var(--utrecht-badge-border-radius, .5ch);color:var(--utrecht-badge-color, hsl(0deg, 0%, 100%));display:inline-block;font-family:var(--utrecht-document-font-family, sans-serif);font-size:var(--utrecht-badge-font-size, inherit);font-style:var(--utrecht-badge-font-style, normal);font-weight:var(--utrecht-badge-font-weight, bold);line-height:var(--utrecht-badge-line-height);padding-block-end:var(--utrecht-badge-padding-block, .5ex);padding-block-start:var(--utrecht-badge-padding-block, .5ex);padding-inline-end:var(--utrecht-badge-padding-inline, .5ch);padding-inline-start:var(--utrecht-badge-padding-inline, .5ch);text-decoration:none;letter-spacing:var(--utrecht-badge-status-letter-spacing, inherit);text-transform:var(--utrecht-badge-status-text-transform, inherit)}.utrecht-badge-status--danger{background-color:var(--utrecht-feedback-danger-fill-background-color, hsl(0deg, 100%, 50%));color:var(--utrecht-feedback-danger-fill-color, white)}.utrecht-badge-status--warning{background-color:var(--utrecht-feedback-warning-fill-background-color, hsl(39deg, 100%, 50%));color:var(--utrecht-feedback-warning-fill-color, white)}.utrecht-badge-status--safe{background-color:var(--utrecht-feedback-safe-fill-background-color, hsl(120deg, 100%, 25%));color:var(--utrecht-feedback-safe-fill-color, white)}.utrecht-badge-status--neutral{background-color:var(--utrecht-feedback-neutral-fill-background-color, black);color:var(--utrecht-feedback-neutral-fill-color, white)}.utrecht-badge-status--valid{background-color:var(--utrecht-feedback-valid-fill-background-color, var(--utrecht-feedback-safe-fill-background-color, hsl(0deg, 100%, 50%)));color:var(--utrecht-feedback-valid-fill-color, var(--utrecht-feedback-safe-fill-color, white))}.utrecht-badge-status--invalid{background-color:var(--utrecht-feedback-invalid-fill-background-color, var(--utrecht-feedback-danger-fill-background-color, hsl(39deg, 100%, 50%)));color:var(--utrecht-feedback-invalid-fill-color, var(--utrecht-feedback-danger-fill-color, white))}.utrecht-badge-status--error{background-color:var(--utrecht-feedback-error-fill-background-color, var(--utrecht-feedback-danger-fill-background-color, hsl(39deg, 100%, 50%)));color:var(--utrecht-feedback-error-fill-color, var(--utrecht-feedback-danger-fill-color, white))}.utrecht-badge-status--success{background-color:var(--utrecht-feedback-success-fill-background-color, var(--utrecht-feedback-safe-fill-background-color, hsl(39deg, 100%, 50%)));color:var(--utrecht-feedback-success-fill-color, var(--utrecht-feedback-safe-fill-color, white))}.utrecht-badge-status--active{background-color:var(--utrecht-feedback-active-fill-background-color, var(--utrecht-feedback-safe-fill-background-color, hsl(39deg, 100%, 50%)));color:var(--utrecht-feedback-active-fill-color, var(--utrecht-feedback-safe-fill-color, white))}.utrecht-badge-status--inactive{background-color:var(--utrecht-feedback-inactive-fill-background-color, var(--utrecht-feedback-danger-fill-background-color, hsl(39deg, 100%, 50%)));color:var(--utrecht-feedback-inactive-fill-color, var(--utrecht-feedback-danger-fill-color, white))}/**
|
|
1
|
+
.utrecht-article{max-inline-size:var(--utrecht-article-max-inline-size)}.utrecht-badge-status{background-color:var(--utrecht-badge-background-color, hsl(0deg, 0%, 0%));border-radius:var(--utrecht-badge-border-radius, .5ch);color:var(--utrecht-badge-color, hsl(0deg, 0%, 100%));display:inline-block;font-family:var(--utrecht-document-font-family, sans-serif);font-size:var(--utrecht-badge-font-size, inherit);font-style:var(--utrecht-badge-font-style, normal);font-weight:var(--utrecht-badge-font-weight, bold);line-height:var(--utrecht-badge-line-height);padding-block-end:var(--utrecht-badge-padding-block, .5ex);padding-block-start:var(--utrecht-badge-padding-block, .5ex);padding-inline-end:var(--utrecht-badge-padding-inline, .5ch);padding-inline-start:var(--utrecht-badge-padding-inline, .5ch);text-decoration:none;letter-spacing:var(--utrecht-badge-status-letter-spacing, inherit);text-transform:var(--utrecht-badge-status-text-transform, inherit)}.utrecht-badge-status--danger{background-color:var(--utrecht-feedback-danger-fill-background-color, hsl(0deg, 100%, 50%));color:var(--utrecht-feedback-danger-fill-color, white)}.utrecht-badge-status--warning{background-color:var(--utrecht-feedback-warning-fill-background-color, hsl(39deg, 100%, 50%));color:var(--utrecht-feedback-warning-fill-color, white)}.utrecht-badge-status--safe{background-color:var(--utrecht-feedback-safe-fill-background-color, hsl(120deg, 100%, 25%));color:var(--utrecht-feedback-safe-fill-color, white)}.utrecht-badge-status--neutral{background-color:var(--utrecht-feedback-neutral-fill-background-color, black);color:var(--utrecht-feedback-neutral-fill-color, white)}.utrecht-badge-status--valid{background-color:var(--utrecht-feedback-valid-fill-background-color, var(--utrecht-feedback-safe-fill-background-color, hsl(0deg, 100%, 50%)));color:var(--utrecht-feedback-valid-fill-color, var(--utrecht-feedback-safe-fill-color, white))}.utrecht-badge-status--invalid{background-color:var(--utrecht-feedback-invalid-fill-background-color, var(--utrecht-feedback-danger-fill-background-color, hsl(39deg, 100%, 50%)));color:var(--utrecht-feedback-invalid-fill-color, var(--utrecht-feedback-danger-fill-color, white))}.utrecht-badge-status--error{background-color:var(--utrecht-feedback-error-fill-background-color, var(--utrecht-feedback-danger-fill-background-color, hsl(39deg, 100%, 50%)));color:var(--utrecht-feedback-error-fill-color, var(--utrecht-feedback-danger-fill-color, white))}.utrecht-badge-status--success{background-color:var(--utrecht-feedback-success-fill-background-color, var(--utrecht-feedback-safe-fill-background-color, hsl(39deg, 100%, 50%)));color:var(--utrecht-feedback-success-fill-color, var(--utrecht-feedback-safe-fill-color, white))}.utrecht-badge-status--active{background-color:var(--utrecht-feedback-active-fill-background-color, var(--utrecht-feedback-safe-fill-background-color, hsl(39deg, 100%, 50%)));color:var(--utrecht-feedback-active-fill-color, var(--utrecht-feedback-safe-fill-color, white))}.utrecht-badge-status--inactive{background-color:var(--utrecht-feedback-inactive-fill-background-color, var(--utrecht-feedback-danger-fill-background-color, hsl(39deg, 100%, 50%)));color:var(--utrecht-feedback-inactive-fill-color, var(--utrecht-feedback-danger-fill-color, white))}/**
|
|
5
2
|
* @license EUPL-1.2
|
|
6
3
|
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
7
4
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
@@ -9,7 +6,7 @@
|
|
|
9
6
|
* @license EUPL-1.2
|
|
10
7
|
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
11
8
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
12
|
-
*/.utrecht-button{background-color:var(--utrecht-button-background-color);border-color:var(--utrecht-button-border-color, transparent);border-bottom-color:var(--utrecht-button-border-bottom-color, var(--utrecht-button-border-color, transparent));border-radius:var(--utrecht-button-border-radius);border-style:solid;border-width:var(--utrecht-button-border-width, 0);border-bottom-width:var(--utrecht-button-border-bottom-width, var(--utrecht-button-border-width, 0));color:var(--utrecht-button-color);font-family:var(--utrecht-button-font-family, var(--utrecht-document-font-family));font-size:var(--utrecht-button-font-size, var(--utrecht-document-font-family));font-weight:var(--utrecht-button-font-weight);inline-size:var(--utrecht-button-inline-size, auto);letter-spacing:var(--utrecht-button-letter-spacing);line-height:var(--utrecht-button-line-height);min-block-size:var(--utrecht-button-min-block-size, 44px);min-inline-size:var(--utrecht-button-min-inline-size, 44px);padding-block-end:var(--utrecht-button-padding-block-end);padding-block-start:var(--utrecht-button-padding-block-start);padding-inline-end:var(--utrecht-button-padding-inline-end);padding-inline-start:var(--utrecht-button-padding-inline-start);text-transform:var(--utrecht-button-text-transform);user-select:none}.utrecht-button--distanced{margin-block-end:var(--utrecht-button-margin-block-end);margin-block-start:var(--utrecht-button-margin-block-start);margin-inline-end:var(--utrecht-button-margin-inline-end);margin-inline-start:var(--utrecht-button-margin-inline-start)}.utrecht-button--submit{cursor:var(--utrecht-action-submit-cursor)}.utrecht-button--busy{cursor:var(--utrecht-action-busy-cursor)}.utrecht-button:disabled,.utrecht-button--disabled{background-color:var(--utrecht-button-disabled-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-disabled-border-color, var(--utrecht-button-border-color));color:var(--utrecht-button-disabled-color, var(--utrecht-button-color));cursor:var(--utrecht-action-disabled-cursor)}.utrecht-button:active:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-button--active{background-color:var(--utrecht-button-active-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-active-border-color, var(--utrecht-button-border-color));color:var(--utrecht-button-active-color, var(--utrecht-button-color))}.utrecht-button--focus-visible{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-button--focus{background-color:var(--utrecht-button-focus-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-focus-border-color, var(--utrecht-button-border-color));color:var(--utrecht-button-focus-color, var(--utrecht-button-color))}.utrecht-button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled){background-color:var(--utrecht-button-focus-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-focus-border-color, var(--utrecht-button-border-color));color:var(--utrecht-button-focus-color, var(--utrecht-button-color));box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-button:focus:not(:focus-visible){box-shadow:none;outline-style:none}.utrecht-button--hover:not(:disabled),.utrecht-button:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled){background-color:var(--utrecht-button-hover-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-hover-border-color, var(--utrecht-button-border-color));color:var(--utrecht-button-hover-color, var(--utrecht-button-color));transform:scale(var(--utrecht-button-focus-transform-scale, 1))}.utrecht-button--primary-action{background-color:var(--utrecht-button-primary-action-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-primary-action-border-color, var(--utrecht-button-border-color));border-width:var(--utrecht-button-primary-action-border-width, var(--utrecht-button-border-width));color:var(--utrecht-button-primary-action-color, var(--utrecht-button-color))}.utrecht-button--primary-action.utrecht-button--hover:not(:disabled),.utrecht-button--primary-action.utrecht-button:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled){background-color:var(--utrecht-button-primary-action-hover-background-color, var(--utrecht-button-primary-action-background-color, var(--utrecht-button-hover-background-color, var(--utrecht-button-background-color))));border-color:var(--utrecht-button-primary-action-hover-border-color, var(--utrecht-button-primary-action-border-color, var(--utrecht-button-hover-border-color, var(--utrecht-button-border-color))));color:var(--utrecht-button-primary-action-hover-color, var(--utrecht-button-primary-action-color, var(--utrecht-button-hover-color, var(--utrecht-button-color))))}.utrecht-button--primary-action.utrecht-button:disabled,.utrecht-button--primary-action.utrecht-button--disabled{background-color:var(--utrecht-button-primary-action-disabled-background-color, var(--utrecht-button-disabled-background-color, var(--utrecht-button-background-color)));border-color:var(--utrecht-button-primary-action-disabled-border-color, var(--utrecht-button-disabled-border-color, var(--utrecht-button-border-color)));color:var(--utrecht-button-primary-action-disabled-color, var(--utrecht-button-disabled-color, var(--utrecht-button-color)))}.utrecht-button--primary-action:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled){background-color:var(--utrecht-button-focus-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-focus-border-color, var(--utrecht-button-border-color));color:var(--utrecht-button-focus-color, var(--utrecht-button-color));box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-button--primary-action:focus:not(:focus-visible){box-shadow:none;outline-style:none}.utrecht-button--secondary-action{background-color:var(--utrecht-button-secondary-action-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-secondary-action-border-color, var(--utrecht-button-border-color));border-width:var(--utrecht-button-secondary-action-border-width, var(--utrecht-button-border-width));color:var(--utrecht-button-secondary-action-color, var(--utrecht-button-color))}.utrecht-button--secondary-action.utrecht-button--hover:not(:disabled),.utrecht-button--secondary-action.utrecht-button:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled){background-color:var(--utrecht-button-secondary-action-hover-background-color, var(--utrecht-button-secondary-action-background-color, var(--utrecht-button-hover-background-color, var(--utrecht-button-background-color))));border-color:var(--utrecht-button-secondary-action-hover-border-color, var(--utrecht-button-secondary-action-border-color, var(--utrecht-button-hover-border-color, var(--utrecht-button-border-color))));color:var(--utrecht-button-secondary-action-hover-color, var(--utrecht-button-secondary-action-color, var(--utrecht-button-hover-color, var(--utrecht-button-color))))}.utrecht-button--secondary-action.utrecht-button:disabled,.utrecht-button--secondary-action.utrecht-button--disabled{background-color:var(--utrecht-button-secondary-action-disabled-background-color, var(--utrecht-button-disabled-background-color, var(--utrecht-button-background-color)));border-color:var(--utrecht-button-secondary-action-disabled-border-color, var(--utrecht-button-disabled-border-color, var(--utrecht-button-border-color)));color:var(--utrecht-button-secondary-action-disabled-color, var(--utrecht-button-disabled-color, var(--utrecht-button-color)))}.utrecht-button--secondary-action:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled){background-color:var(--utrecht-button-focus-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-focus-border-color, var(--utrecht-button-border-color));color:var(--utrecht-button-focus-color, var(--utrecht-button-color));box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-button--secondary-action:focus:not(:focus-visible){box-shadow:none;outline-style:none}.utrecht-button--subtle{background-color:var(--utrecht-button-subtle-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-subtle-border-color, var(--utrecht-button-border-color));border-width:var(--utrecht-button-subtle-border-width, var(--utrecht-button-border-width));color:var(--utrecht-button-subtle-color, var(--utrecht-button-color))}.utrecht-button--subtle.utrecht-button--hover:not(:disabled),.utrecht-button--subtle.utrecht-button:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled){background-color:var(--utrecht-button-subtle-hover-background-color, var(--utrecht-button-subtle-background-color, var(--utrecht-button-hover-background-color, var(--utrecht-button-background-color))));border-color:var(--utrecht-button-subtle-hover-border-color, var(--utrecht-button-subtle-border-color, var(--utrecht-button-hover-border-color, var(--utrecht-button-border-color))));color:var(--utrecht-button-subtle-hover-color, var(--utrecht-button-subtle-color, var(--utrecht-button-hover-color, var(--utrecht-button-color))))}.utrecht-button--subtle.utrecht-button:disabled,.utrecht-button--subtle.utrecht-button--disabled{background-color:var(--utrecht-button-subtle-disabled-background-color, var(--utrecht-button-disabled-background-color, var(--utrecht-button-background-color)));border-color:var(--utrecht-button-subtle-disabled-border-color, var(--utrecht-button-disabled-border-color, var(--utrecht-button-border-color)));color:var(--utrecht-button-subtle-disabled-color, var(--utrecht-button-disabled-color, var(--utrecht-button-color)))}.utrecht-button--subtle:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled){background-color:var(--utrecht-button-focus-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-focus-border-color, var(--utrecht-button-border-color));color:var(--utrecht-button-focus-color, var(--utrecht-button-color));box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-button--subtle:focus:not(:focus-visible){box-shadow:none;outline-style:none}/**
|
|
9
|
+
*/.utrecht-button{--_utrecht-button-background-color: var(--utrecht-button-background-color);--_utrecht-button-color: var(--utrecht-button-color);--_utrecht-button-border-color: var(--utrecht-button-border-color, transparent);--_utrecht-button-border-bottom-color: var( --utrecht-button-border-bottom-color, var(--utrecht-button-border-color, transparent) );--_utrecht-button-disabled-background-color: var( --utrecht-button-disabled-background-color, var(--utrecht-button-background-color) );--_utrecht-button-disabled-border-color: var( --utrecht-button-disabled-border-color, var(--utrecht-button-border-color) );--_utrecht-button-disabled-color: var(--utrecht-button-disabled-color, var(--utrecht-button-color));--_utrecht-button-focus-background-color: var( --utrecht-button-focus-background-color, var(--utrecht-button-background-color) );--_utrecht-button-focus-border-color: var(--utrecht-button-focus-border-color, var(--utrecht-button-border-color));--_utrecht-button-focus-color: var(--utrecht-button-focus-color, var(--utrecht-button-color));--_utrecht-button-hover-background-color: var( --utrecht-button-hover-background-color, var(--utrecht-button-background-color) );--_utrecht-button-hover-border-color: var(--utrecht-button-hover-border-color, var(--utrecht-button-border-color));--_utrecht-button-hover-color: var(--utrecht-button-hover-color, var(--utrecht-button-color));--_utrecht-button-active-background-color: var( --utrecht-button-active-background-color, var(--utrecht-button-background-color) );--_utrecht-button-active-border-color: var(--utrecht-button-active-border-color, var(--utrecht-button-border-color));--_utrecht-button-active-color: var(--utrecht-button-active-color, var(--utrecht-button-color));--_utrecht-button-border-width: var(--utrecht-button-border-width, 0);--_utrecht-button-border-bottom-width: var( --utrecht-button-border-bottom-width, var(--utrecht-button-border-width, 0) );background-color:var(--_utrecht-button-background-color);border-color:var(--_utrecht-button-border-color);border-bottom-color:var(--_utrecht-button-border-bottom-color);border-radius:var(--utrecht-button-border-radius);border-style:solid;border-width:var(--_utrecht-button-border-width);border-bottom-width:var(--_utrecht-button-border-bottom-width);color:var(--utrecht-button-color);font-family:var(--utrecht-button-font-family, var(--utrecht-document-font-family));font-size:var(--utrecht-button-font-size, var(--utrecht-document-font-family));font-weight:var(--utrecht-button-font-weight);inline-size:var(--utrecht-button-inline-size, auto);letter-spacing:var(--utrecht-button-letter-spacing);line-height:var(--utrecht-button-line-height);min-block-size:var(--utrecht-button-min-block-size, 44px);min-inline-size:var(--utrecht-button-min-inline-size, 44px);padding-block-end:var(--utrecht-button-padding-block-end);padding-block-start:var(--utrecht-button-padding-block-start);padding-inline-end:var(--utrecht-button-padding-inline-end);padding-inline-start:var(--utrecht-button-padding-inline-start);text-transform:var(--utrecht-button-text-transform);user-select:none}.utrecht-button--distanced{margin-block-end:var(--utrecht-button-margin-block-end);margin-block-start:var(--utrecht-button-margin-block-start);margin-inline-end:var(--utrecht-button-margin-inline-end);margin-inline-start:var(--utrecht-button-margin-inline-start)}.utrecht-button--submit{cursor:var(--utrecht-action-submit-cursor)}.utrecht-button--busy{cursor:var(--utrecht-action-busy-cursor)}.utrecht-button:disabled,.utrecht-button--disabled{background-color:var(--_utrecht-button-disabled-background-color);border-color:var(--_utrecht-button-disabled-border-color);color:var(--_utrecht-button-disabled-color);cursor:var(--utrecht-action-disabled-cursor)}.utrecht-button:active:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-button--active{background-color:var(--_utrecht-button-active-background-color);border-color:var(--_utrecht-button-active-border-color);color:var(--_utrecht-button-active-color)}.utrecht-button--focus-visible{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-button--focus{background-color:var(--_utrecht-button-focus-background-color);border-color:var(--_utrecht-button-focus-border-color);color:var(--_utrecht-button-focus-color)}.utrecht-button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled){background-color:var(--_utrecht-button-focus-background-color);border-color:var(--_utrecht-button-focus-border-color);color:var(--_utrecht-button-focus-color);box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-button:focus:not(:focus-visible){box-shadow:none;outline-style:none}.utrecht-button--hover:not(:disabled),.utrecht-button:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled){background-color:var(--_utrecht-button-hover-background-color);border-color:var(--_utrecht-button-hover-border-color);color:var(--_utrecht-button-hover-color);transform:scale(var(--utrecht-button-focus-transform-scale, 1))}.utrecht-button--primary-action{--utrecht-button-active-background-color: var(--utrecht-button-primary-action-active-background-color);--utrecht-button-active-border-color: var(--utrecht-button-primary-action-active-border-color);--utrecht-button-active-color: var(--utrecht-button-primary-action-active-color);--utrecht-button-background-color: var(--utrecht-button-primary-action-background-color);--utrecht-button-border-color: var(--utrecht-button-primary-action-border-color);--utrecht-button-border-width: var(--utrecht-button-primary-action-border-width);--utrecht-button-color: var(--utrecht-button-primary-action-color);--utrecht-button-disabled-background-color: var(--utrecht-button-primary-action-disabled-background-color);--utrecht-button-disabled-border-color: var(--utrecht-button-primary-action-disabled-border-color);--utrecht-button-disabled-color: var(--utrecht-button-primary-action-disabled-color);--utrecht-button-focus-background-color: var(--utrecht-button-primary-action-focus-background-color);--utrecht-button-focus-border-color: var(--utrecht-button-primary-action-focus-border-color);--utrecht-button-focus-color: var(--utrecht-button-primary-action-focus-color);--utrecht-button-hover-background-color: var(--utrecht-button-primary-action-hover-background-color);--utrecht-button-hover-border-color: var(--utrecht-button-primary-action-hover-border-color);--utrecht-button-hover-color: var(--utrecht-button-primary-action-hover-color)}.utrecht-button--secondary-action{--utrecht-button-active-background-color: var(--utrecht-button-secondary-action-active-background-color);--utrecht-button-active-border-color: var(--utrecht-button-secondary-action-active-border-color);--utrecht-button-active-color: var(--utrecht-button-secondary-action-active-color);--utrecht-button-background-color: var(--utrecht-button-secondary-action-background-color);--utrecht-button-border-color: var(--utrecht-button-secondary-action-border-color);--utrecht-button-border-width: var(--utrecht-button-secondary-action-border-width);--utrecht-button-color: var(--utrecht-button-secondary-action-color);--utrecht-button-disabled-background-color: var(--utrecht-button-secondary-action-disabled-background-color);--utrecht-button-disabled-border-color: var(--utrecht-button-secondary-action-disabled-border-color);--utrecht-button-disabled-color: var(--utrecht-button-secondary-action-disabled-color);--utrecht-button-focus-background-color: var(--utrecht-button-secondary-action-focus-background-color);--utrecht-button-focus-border-color: var(--utrecht-button-secondary-action-focus-border-color);--utrecht-button-focus-color: var(--utrecht-button-secondary-action-focus-color);--utrecht-button-hover-background-color: var(--utrecht-button-secondary-action-hover-background-color);--utrecht-button-hover-border-color: var(--utrecht-button-secondary-action-hover-border-color);--utrecht-button-hover-color: var(--utrecht-button-secondary-action-hover-color)}.utrecht-button--subtle{--utrecht-button-active-background-color: var(--utrecht-button-subtle-active-background-color);--utrecht-button-active-border-color: var(--utrecht-button-subtle-active-border-color);--utrecht-button-active-color: var(--utrecht-button-subtle-active-color);--utrecht-button-background-color: var(--utrecht-button-subtle-background-color);--utrecht-button-border-color: var(--utrecht-button-subtle-border-color);--utrecht-button-border-width: var(--utrecht-button-subtle-border-width);--utrecht-button-color: var(--utrecht-button-subtle-color);--utrecht-button-disabled-background-color: var(--utrecht-button-subtle-disabled-background-color);--utrecht-button-disabled-border-color: var(--utrecht-button-subtle-disabled-border-color);--utrecht-button-disabled-color: var(--utrecht-button-subtle-disabled-color);--utrecht-button-focus-background-color: var(--utrecht-button-subtle-focus-background-color);--utrecht-button-focus-border-color: var(--utrecht-button-subtle-focus-border-color);--utrecht-button-focus-color: var(--utrecht-button-subtle-focus-color);--utrecht-button-hover-background-color: var(--utrecht-button-subtle-hover-background-color);--utrecht-button-hover-border-color: var(--utrecht-button-subtle-hover-border-color);--utrecht-button-hover-color: var(--utrecht-button-subtle-hover-color)}/**
|
|
13
10
|
* @license EUPL-1.2
|
|
14
11
|
* Copyright (c) 2022 Frameless B.V.
|
|
15
12
|
*//**
|
|
@@ -18,7 +15,20 @@
|
|
|
18
15
|
*/.utrecht-button-group,.utrecht-button-group--distanced{background-color:var(--utrecht-button-group-background-color);display:flex;gap:var(--utrecht-button-group-inline-gap, 1em);min-block-size:var(--utrecht-button-block-size);padding-block-end:var(--utrecht-button-group-padding-block-end);padding-block-start:var(--utrecht-button-group-padding-block-start)}.utrecht-button-group__button-link--horizontal,.utrecht-button-group--horizontal .utrecht-button-link,.utrecht-button-group:not(.utrecht-button-group--vertical) .utrecht-button-link{--utrecht-button-padding-inline-end: 0;--utrecht-button-padding-inline-start: 0}.utrecht-button-group--vertical{flex-direction:column;gap:var(--utrecht-button-group-block-gap, 1em)}.utrecht-checkbox{margin-block-end:0;margin-block-start:0;margin-inline-end:0;margin-inline-start:0}.utrecht-checkbox--disabled{cursor:var(--utrecht-action-disabled-cursor)}.utrecht-checkbox--focus-visible{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-checkbox--html-input:disabled{cursor:var(--utrecht-action-disabled-cursor)}.utrecht-checkbox--html-input:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-checkbox--html-input:focus:not(:focus-visible){box-shadow:none;outline-style:none}.utrecht-document{color:var(--utrecht-document-color, inherit);font-family:var(--utrecht-document-font-family, inherit);font-size:var(--utrecht-document-font-size, inherit);font-weight:var(--utrecht-document-font-weight, inherit);line-height:var(--utrecht-document-line-height, inherit);text-rendering:optimizeLegibility}.utrecht-document :lang(ar){letter-spacing:0!important}.utrecht-document--surface{background-color:var(--utrecht-document-background-color, inherit)}.utrecht-form-field{font-family:var(--utrecht-document-font-family, inherit);max-inline-size:var(--utrecht-form-field-max-inline-size)}.utrecht-form-field--distanced{margin-block-end:var(--utrecht-form-field-margin-block-end, var(--utrecht-paragraph-margin-block-end));margin-block-start:var(--utrecht-form-field-margin-block-start, var(--utrecht-paragraph-margin-block-start))}.utrecht-form-fieldset--html-fieldset{border:0;margin-inline-end:0;margin-inline-start:0;min-width:0;padding-block-end:0;padding-block-start:.01em;padding-inline-end:0;padding-inline-start:0}.utrecht-form-fieldset__legend--html-legend{padding-inline-end:0;padding-inline-start:0}.utrecht-form-fieldset--distanced{margin-block-end:var(--utrecht-form-fieldset-margin-block-end, 0);margin-block-start:var(--utrecht-form-fieldset-margin-block-start, 0)}.utrecht-form-fieldset__legend{color:var(--utrecht-form-fieldset-legend-color, var(--utrecht-document-color, inherit));font-family:var(--utrecht-form-fieldset-legend-font-family, var(--utrecht-document-font-family));font-size:var(--utrecht-form-fieldset-legend-font-size);font-weight:var(--utrecht-form-fieldset-legend-font-weight);line-height:var(--utrecht-form-fieldset-legend-line-height);page-break-after:avoid;page-break-inside:avoid;text-transform:var(--utrecht-form-fieldset-legend-text-transform)}.utrecht-form-fieldset__legend--distanced{margin-block-end:var(--utrecht-form-fieldset-legend-margin-block-end);margin-block-start:var(--utrecht-form-fieldset-legend-margin-block-start)}/**
|
|
19
16
|
* @license EUPL-1.2
|
|
20
17
|
* Copyright (c) 2021 Robbert Broersma
|
|
21
|
-
*/.utrecht-form-label{color:var(--utrecht-form-label-color);font-size:var(--utrecht-form-label-font-size);font-weight:var(--utrecht-form-label-font-weight)}.utrecht-form-label--checkbox{color:var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));font-weight:var(--utrecht-form-label-checkbox-font-weight, var(--utrecht-form-label-font-weight))}.utrecht-form-label--checked{font-weight:var(--utrecht-form-label-checked-font-weight, var(--utrecht-form-label-font-weight))}.utrecht-form-label--disabled{cursor:var(--utrecht-action-disabled-cursor);font-weight:var(--utrecht-form-label-disabled-color, var(--utrecht-form-label-color))}.utrecht-form-label--radio{color:var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));font-weight:var(--utrecht-form-label-radio-font-weight, var(--utrecht-form-label-font-weight))}.utrecht-heading-1{page-break-after:avoid;page-break-inside:avoid;color:var(--utrecht-heading-1-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-1-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-1-font-size);font-weight:var(--utrecht-heading-1-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-1-letter-spacing);line-height:var(--utrecht-heading-1-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-1-text-transform, inherit)}.utrecht-heading-1--distanced{margin-block-end:var(--utrecht-heading-1-margin-block-end);margin-block-start:var(--utrecht-heading-1-margin-block-start)}
|
|
18
|
+
*/.utrecht-form-label{color:var(--utrecht-form-label-color);font-size:var(--utrecht-form-label-font-size);font-weight:var(--utrecht-form-label-font-weight)}.utrecht-form-label--checkbox{color:var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));font-weight:var(--utrecht-form-label-checkbox-font-weight, var(--utrecht-form-label-font-weight))}.utrecht-form-label--checked{font-weight:var(--utrecht-form-label-checked-font-weight, var(--utrecht-form-label-font-weight))}.utrecht-form-label--disabled{cursor:var(--utrecht-action-disabled-cursor);font-weight:var(--utrecht-form-label-disabled-color, var(--utrecht-form-label-color))}.utrecht-form-label--radio{color:var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));font-weight:var(--utrecht-form-label-radio-font-weight, var(--utrecht-form-label-font-weight))}.utrecht-heading-1[data-v-0797b6fe]{page-break-after:avoid;page-break-inside:avoid;color:var(--utrecht-heading-1-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-1-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-1-font-size);font-weight:var(--utrecht-heading-1-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-1-letter-spacing);line-height:var(--utrecht-heading-1-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-1-text-transform, inherit)}.utrecht-heading-1--distanced[data-v-0797b6fe]{margin-block-end:var(--utrecht-heading-1-margin-block-end);margin-block-start:var(--utrecht-heading-1-margin-block-start)}/**
|
|
19
|
+
* @license EUPL-1.2
|
|
20
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
21
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
22
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
23
|
+
*//**
|
|
24
|
+
* @license EUPL-1.2
|
|
25
|
+
* Copyright (c) 2021 Gemeente Utrecht
|
|
26
|
+
* Copyright (c) 2021 Robbert Broersma
|
|
27
|
+
* Copyright (c) 2021 The Knights Who Say NIH! B.V.
|
|
28
|
+
*//**
|
|
29
|
+
* @license EUPL-1.2
|
|
30
|
+
* Copyright (c) 2021-2022 Frameless B.V.
|
|
31
|
+
*/.utrecht-heading-2[data-v-0797b6fe]{page-break-after:avoid;page-break-inside:avoid;color:var(--utrecht-heading-2-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-2-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-2-font-size);font-weight:var(--utrecht-heading-2-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-2-letter-spacing);line-height:var(--utrecht-heading-2-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-2-text-transform, inherit)}.utrecht-heading-2--distanced[data-v-0797b6fe]{margin-block-end:var(--utrecht-heading-2-margin-block-end);margin-block-start:var(--utrecht-heading-2-margin-block-start)}.utrecht-heading-3[data-v-0797b6fe]{page-break-after:avoid;page-break-inside:avoid;color:var(--utrecht-heading-3-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-3-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-3-font-size);font-weight:var(--utrecht-heading-3-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-3-letter-spacing);line-height:var(--utrecht-heading-3-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-3-text-transform, inherit)}.utrecht-heading-3--distanced[data-v-0797b6fe]{margin-block-end:var(--utrecht-heading-3-margin-block-end);margin-block-start:var(--utrecht-heading-3-margin-block-start)}.utrecht-heading-4[data-v-0797b6fe]{page-break-after:avoid;page-break-inside:avoid;color:var(--utrecht-heading-4-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-4-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-4-font-size);font-weight:var(--utrecht-heading-4-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-4-letter-spacing);line-height:var(--utrecht-heading-4-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-4-text-transform, inherit)}.utrecht-heading-4--distanced[data-v-0797b6fe]{margin-block-end:var(--utrecht-heading-4-margin-block-end);margin-block-start:var(--utrecht-heading-4-margin-block-start)}.utrecht-heading-5[data-v-0797b6fe]{page-break-after:avoid;page-break-inside:avoid;color:var(--utrecht-heading-5-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-5-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-5-font-size);font-weight:var(--utrecht-heading-5-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-5-letter-spacing);line-height:var(--utrecht-heading-5-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-5-text-transform, inherit)}.utrecht-heading-5--distanced[data-v-0797b6fe]{margin-block-end:var(--utrecht-heading-5-margin-block-end);margin-block-start:var(--utrecht-heading-5-margin-block-start)}.utrecht-heading-6[data-v-0797b6fe]{page-break-after:avoid;page-break-inside:avoid;color:var(--utrecht-heading-6-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-6-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-6-font-size);font-weight:var(--utrecht-heading-6-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-6-letter-spacing);line-height:var(--utrecht-heading-6-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-6-text-transform, inherit)}.utrecht-heading-6--distanced[data-v-0797b6fe]{margin-block-end:var(--utrecht-heading-6-margin-block-end);margin-block-start:var(--utrecht-heading-6-margin-block-start)}.utrecht-heading-1{page-break-after:avoid;page-break-inside:avoid;color:var(--utrecht-heading-1-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-1-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-1-font-size);font-weight:var(--utrecht-heading-1-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-1-letter-spacing);line-height:var(--utrecht-heading-1-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-1-text-transform, inherit)}.utrecht-heading-1--distanced{margin-block-end:var(--utrecht-heading-1-margin-block-end);margin-block-start:var(--utrecht-heading-1-margin-block-start)}.utrecht-heading-2{page-break-after:avoid;page-break-inside:avoid;color:var(--utrecht-heading-2-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-2-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-2-font-size);font-weight:var(--utrecht-heading-2-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-2-letter-spacing);line-height:var(--utrecht-heading-2-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-2-text-transform, inherit)}.utrecht-heading-2--distanced{margin-block-end:var(--utrecht-heading-2-margin-block-end);margin-block-start:var(--utrecht-heading-2-margin-block-start)}.utrecht-heading-3{page-break-after:avoid;page-break-inside:avoid;color:var(--utrecht-heading-3-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-3-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-3-font-size);font-weight:var(--utrecht-heading-3-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-3-letter-spacing);line-height:var(--utrecht-heading-3-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-3-text-transform, inherit)}.utrecht-heading-3--distanced{margin-block-end:var(--utrecht-heading-3-margin-block-end);margin-block-start:var(--utrecht-heading-3-margin-block-start)}.utrecht-heading-4{page-break-after:avoid;page-break-inside:avoid;color:var(--utrecht-heading-4-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-4-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-4-font-size);font-weight:var(--utrecht-heading-4-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-4-letter-spacing);line-height:var(--utrecht-heading-4-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-4-text-transform, inherit)}.utrecht-heading-4--distanced{margin-block-end:var(--utrecht-heading-4-margin-block-end);margin-block-start:var(--utrecht-heading-4-margin-block-start)}.utrecht-heading-5{page-break-after:avoid;page-break-inside:avoid;color:var(--utrecht-heading-5-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-5-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-5-font-size);font-weight:var(--utrecht-heading-5-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-5-letter-spacing);line-height:var(--utrecht-heading-5-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-5-text-transform, inherit)}.utrecht-heading-5--distanced{margin-block-end:var(--utrecht-heading-5-margin-block-end);margin-block-start:var(--utrecht-heading-5-margin-block-start)}/**
|
|
22
32
|
* @license EUPL-1.2
|
|
23
33
|
* Copyright (c) 2021 Gemeente Utrecht
|
|
24
34
|
* Copyright (c) 2021 Robbert Broersma
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0.0-alpha.
|
|
2
|
+
"version": "1.0.0-alpha.22",
|
|
3
3
|
"author": "Community for NL Design System",
|
|
4
4
|
"description": "Vue.js components for the Municipality of Utrecht based on the NL Design System architecture",
|
|
5
5
|
"license": "EUPL-1.2",
|
|
@@ -21,46 +21,45 @@
|
|
|
21
21
|
},
|
|
22
22
|
"sideEffects": false,
|
|
23
23
|
"scripts": {
|
|
24
|
+
"clean": "rimraf dist",
|
|
24
25
|
"dev": "vite",
|
|
25
26
|
"build": "vue-tsc --noEmit && vite build",
|
|
26
27
|
"lint": "npm-run-all lint:**",
|
|
27
|
-
"lint:ts": "vue-tsc --noEmit -p tsconfig.
|
|
28
|
+
"lint:ts": "vue-tsc --noEmit -p tsconfig.lib.json --composite false",
|
|
29
|
+
"lint:ts-jest": "vue-tsc --noEmit -p tsconfig.jest.json --composite false",
|
|
28
30
|
"preview": "vite preview --port 5050",
|
|
29
|
-
"test
|
|
30
|
-
"test:e2e": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress open'",
|
|
31
|
-
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress run'"
|
|
31
|
+
"test": "jest"
|
|
32
32
|
},
|
|
33
33
|
"main": "./dist/component-library-vue.umd.js",
|
|
34
34
|
"module": "./dist/component-library-vue.es.js",
|
|
35
|
+
"types": "./dist/index.d.ts",
|
|
35
36
|
"files": [
|
|
36
|
-
"dist
|
|
37
|
+
"dist/*"
|
|
37
38
|
],
|
|
38
39
|
"devDependencies": {
|
|
39
|
-
"@rollup/plugin-typescript": "8.3.2",
|
|
40
40
|
"@rushstack/eslint-patch": "1.1.0",
|
|
41
|
+
"@testing-library/vue": "6.4.2",
|
|
42
|
+
"@types/jest": "27.5.1",
|
|
41
43
|
"@types/jsdom": "16.2.14",
|
|
42
44
|
"@types/node": "16.11.27",
|
|
43
|
-
"@utrecht/components": "1.0.0-alpha.
|
|
45
|
+
"@utrecht/components": "1.0.0-alpha.206",
|
|
44
46
|
"@vitejs/plugin-vue": "2.3.1",
|
|
45
|
-
"@vue/eslint-config-prettier": "7.0.0",
|
|
46
|
-
"@vue/eslint-config-typescript": "10.0.0",
|
|
47
|
-
"@vue/test-utils": "2.0.0-rc.20",
|
|
48
47
|
"@vue/tsconfig": "0.1.3",
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"eslint-plugin-vue": "8.2.0",
|
|
48
|
+
"@vue/vue3-jest": "28.0.0",
|
|
49
|
+
"jest": "28.1.0",
|
|
50
|
+
"jest-environment-jsdom": "28.1.0",
|
|
53
51
|
"jsdom": "19.0.0",
|
|
54
52
|
"npm-run-all": "4.1.5",
|
|
55
53
|
"prettier": "2.5.1",
|
|
54
|
+
"rimraf": "3.0.2",
|
|
56
55
|
"sass": "1.52.1",
|
|
57
|
-
"
|
|
56
|
+
"ts-jest": "28.0.3",
|
|
58
57
|
"typescript": "4.6.4",
|
|
59
58
|
"vite": "2.9.5",
|
|
60
|
-
"
|
|
59
|
+
"vite-plugin-dts": "1.2.0",
|
|
61
60
|
"vue": "3.2.33",
|
|
62
61
|
"vue-router": "4.0.14",
|
|
63
62
|
"vue-tsc": "0.34.7"
|
|
64
63
|
},
|
|
65
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "ef8b92b46f6f87a62bcc7b1c3ea27bb58af0b6c8"
|
|
66
65
|
}
|