@kong/icons 1.8.4-pr.175.60c381b.0 → 1.8.4-pr.178.69fd38b.0
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/kong-icons.es.js +3000 -1736
- package/dist/kong-icons.es.js.map +1 -1
- package/dist/kong-icons.umd.js +1 -1
- package/dist/kong-icons.umd.js.map +1 -1
- package/dist/types/components/flags/index.d.ts +1 -1
- package/dist/types/components/index.d.ts +1 -1
- package/dist/types/components/multi-color/index.d.ts +1 -1
- package/dist/types/components/solid/BlockquoteIcon.vue.d.ts +85 -0
- package/dist/types/components/solid/BoldIcon.vue.d.ts +85 -0
- package/dist/types/components/solid/CodeIcon.vue.d.ts +85 -0
- package/dist/types/components/solid/CodeblockIcon.vue.d.ts +85 -0
- package/dist/types/components/solid/ItalicIcon.vue.d.ts +85 -0
- package/dist/types/components/solid/LinkIcon.vue.d.ts +85 -0
- package/dist/types/components/solid/ListOrderedIcon.vue.d.ts +85 -0
- package/dist/types/components/solid/ListUnorderedIcon.vue.d.ts +85 -0
- package/dist/types/components/solid/MarkIcon.vue.d.ts +85 -0
- package/dist/types/components/solid/StrikethroughIcon.vue.d.ts +85 -0
- package/dist/types/components/solid/SubscriptIcon.vue.d.ts +85 -0
- package/dist/types/components/solid/SuperscriptIcon.vue.d.ts +85 -0
- package/dist/types/components/solid/TasklistIcon.vue.d.ts +85 -0
- package/dist/types/components/solid/UnderlineIcon.vue.d.ts +85 -0
- package/dist/types/components/solid/index.d.ts +15 -1
- package/package.json +4 -4
@@ -0,0 +1,85 @@
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
2
|
+
/** The accessibility text provided to screen readers */
|
3
|
+
title: {
|
4
|
+
type: StringConstructor;
|
5
|
+
required: false;
|
6
|
+
default: string;
|
7
|
+
};
|
8
|
+
/** The icon color. Defaults to `currentColor` which inherits text color from the parent element */
|
9
|
+
color: {
|
10
|
+
type: StringConstructor;
|
11
|
+
required: false;
|
12
|
+
default: string;
|
13
|
+
};
|
14
|
+
/** The CSS display property for the icon. Defaults to `block` */
|
15
|
+
display: {
|
16
|
+
type: StringConstructor;
|
17
|
+
required: false;
|
18
|
+
default: string;
|
19
|
+
};
|
20
|
+
/** Whether the icon is just eye-candy or is meaningful to the page (should screen-readers ignore the icon?) */
|
21
|
+
decorative: {
|
22
|
+
type: BooleanConstructor;
|
23
|
+
required: false;
|
24
|
+
default: boolean;
|
25
|
+
};
|
26
|
+
/** The icon size */
|
27
|
+
size: {
|
28
|
+
type: (StringConstructor | NumberConstructor)[];
|
29
|
+
required: false;
|
30
|
+
default: "24px";
|
31
|
+
validator: (sizeValue: number | string) => boolean;
|
32
|
+
};
|
33
|
+
/** The HTML tag to utilize for the icon's wrapper element. Defaults to `span` */
|
34
|
+
as: {
|
35
|
+
type: StringConstructor;
|
36
|
+
required: false;
|
37
|
+
default: string;
|
38
|
+
};
|
39
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
40
|
+
/** The accessibility text provided to screen readers */
|
41
|
+
title: {
|
42
|
+
type: StringConstructor;
|
43
|
+
required: false;
|
44
|
+
default: string;
|
45
|
+
};
|
46
|
+
/** The icon color. Defaults to `currentColor` which inherits text color from the parent element */
|
47
|
+
color: {
|
48
|
+
type: StringConstructor;
|
49
|
+
required: false;
|
50
|
+
default: string;
|
51
|
+
};
|
52
|
+
/** The CSS display property for the icon. Defaults to `block` */
|
53
|
+
display: {
|
54
|
+
type: StringConstructor;
|
55
|
+
required: false;
|
56
|
+
default: string;
|
57
|
+
};
|
58
|
+
/** Whether the icon is just eye-candy or is meaningful to the page (should screen-readers ignore the icon?) */
|
59
|
+
decorative: {
|
60
|
+
type: BooleanConstructor;
|
61
|
+
required: false;
|
62
|
+
default: boolean;
|
63
|
+
};
|
64
|
+
/** The icon size */
|
65
|
+
size: {
|
66
|
+
type: (StringConstructor | NumberConstructor)[];
|
67
|
+
required: false;
|
68
|
+
default: "24px";
|
69
|
+
validator: (sizeValue: number | string) => boolean;
|
70
|
+
};
|
71
|
+
/** The HTML tag to utilize for the icon's wrapper element. Defaults to `span` */
|
72
|
+
as: {
|
73
|
+
type: StringConstructor;
|
74
|
+
required: false;
|
75
|
+
default: string;
|
76
|
+
};
|
77
|
+
}>>, {
|
78
|
+
title: string;
|
79
|
+
color: string;
|
80
|
+
display: string;
|
81
|
+
decorative: boolean;
|
82
|
+
size: string | number;
|
83
|
+
as: string;
|
84
|
+
}, {}>;
|
85
|
+
export default _default;
|
@@ -0,0 +1,85 @@
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
2
|
+
/** The accessibility text provided to screen readers */
|
3
|
+
title: {
|
4
|
+
type: StringConstructor;
|
5
|
+
required: false;
|
6
|
+
default: string;
|
7
|
+
};
|
8
|
+
/** The icon color. Defaults to `currentColor` which inherits text color from the parent element */
|
9
|
+
color: {
|
10
|
+
type: StringConstructor;
|
11
|
+
required: false;
|
12
|
+
default: string;
|
13
|
+
};
|
14
|
+
/** The CSS display property for the icon. Defaults to `block` */
|
15
|
+
display: {
|
16
|
+
type: StringConstructor;
|
17
|
+
required: false;
|
18
|
+
default: string;
|
19
|
+
};
|
20
|
+
/** Whether the icon is just eye-candy or is meaningful to the page (should screen-readers ignore the icon?) */
|
21
|
+
decorative: {
|
22
|
+
type: BooleanConstructor;
|
23
|
+
required: false;
|
24
|
+
default: boolean;
|
25
|
+
};
|
26
|
+
/** The icon size */
|
27
|
+
size: {
|
28
|
+
type: (StringConstructor | NumberConstructor)[];
|
29
|
+
required: false;
|
30
|
+
default: "24px";
|
31
|
+
validator: (sizeValue: number | string) => boolean;
|
32
|
+
};
|
33
|
+
/** The HTML tag to utilize for the icon's wrapper element. Defaults to `span` */
|
34
|
+
as: {
|
35
|
+
type: StringConstructor;
|
36
|
+
required: false;
|
37
|
+
default: string;
|
38
|
+
};
|
39
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
40
|
+
/** The accessibility text provided to screen readers */
|
41
|
+
title: {
|
42
|
+
type: StringConstructor;
|
43
|
+
required: false;
|
44
|
+
default: string;
|
45
|
+
};
|
46
|
+
/** The icon color. Defaults to `currentColor` which inherits text color from the parent element */
|
47
|
+
color: {
|
48
|
+
type: StringConstructor;
|
49
|
+
required: false;
|
50
|
+
default: string;
|
51
|
+
};
|
52
|
+
/** The CSS display property for the icon. Defaults to `block` */
|
53
|
+
display: {
|
54
|
+
type: StringConstructor;
|
55
|
+
required: false;
|
56
|
+
default: string;
|
57
|
+
};
|
58
|
+
/** Whether the icon is just eye-candy or is meaningful to the page (should screen-readers ignore the icon?) */
|
59
|
+
decorative: {
|
60
|
+
type: BooleanConstructor;
|
61
|
+
required: false;
|
62
|
+
default: boolean;
|
63
|
+
};
|
64
|
+
/** The icon size */
|
65
|
+
size: {
|
66
|
+
type: (StringConstructor | NumberConstructor)[];
|
67
|
+
required: false;
|
68
|
+
default: "24px";
|
69
|
+
validator: (sizeValue: number | string) => boolean;
|
70
|
+
};
|
71
|
+
/** The HTML tag to utilize for the icon's wrapper element. Defaults to `span` */
|
72
|
+
as: {
|
73
|
+
type: StringConstructor;
|
74
|
+
required: false;
|
75
|
+
default: string;
|
76
|
+
};
|
77
|
+
}>>, {
|
78
|
+
title: string;
|
79
|
+
color: string;
|
80
|
+
display: string;
|
81
|
+
decorative: boolean;
|
82
|
+
size: string | number;
|
83
|
+
as: string;
|
84
|
+
}, {}>;
|
85
|
+
export default _default;
|
@@ -0,0 +1,85 @@
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
2
|
+
/** The accessibility text provided to screen readers */
|
3
|
+
title: {
|
4
|
+
type: StringConstructor;
|
5
|
+
required: false;
|
6
|
+
default: string;
|
7
|
+
};
|
8
|
+
/** The icon color. Defaults to `currentColor` which inherits text color from the parent element */
|
9
|
+
color: {
|
10
|
+
type: StringConstructor;
|
11
|
+
required: false;
|
12
|
+
default: string;
|
13
|
+
};
|
14
|
+
/** The CSS display property for the icon. Defaults to `block` */
|
15
|
+
display: {
|
16
|
+
type: StringConstructor;
|
17
|
+
required: false;
|
18
|
+
default: string;
|
19
|
+
};
|
20
|
+
/** Whether the icon is just eye-candy or is meaningful to the page (should screen-readers ignore the icon?) */
|
21
|
+
decorative: {
|
22
|
+
type: BooleanConstructor;
|
23
|
+
required: false;
|
24
|
+
default: boolean;
|
25
|
+
};
|
26
|
+
/** The icon size */
|
27
|
+
size: {
|
28
|
+
type: (StringConstructor | NumberConstructor)[];
|
29
|
+
required: false;
|
30
|
+
default: "24px";
|
31
|
+
validator: (sizeValue: number | string) => boolean;
|
32
|
+
};
|
33
|
+
/** The HTML tag to utilize for the icon's wrapper element. Defaults to `span` */
|
34
|
+
as: {
|
35
|
+
type: StringConstructor;
|
36
|
+
required: false;
|
37
|
+
default: string;
|
38
|
+
};
|
39
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
40
|
+
/** The accessibility text provided to screen readers */
|
41
|
+
title: {
|
42
|
+
type: StringConstructor;
|
43
|
+
required: false;
|
44
|
+
default: string;
|
45
|
+
};
|
46
|
+
/** The icon color. Defaults to `currentColor` which inherits text color from the parent element */
|
47
|
+
color: {
|
48
|
+
type: StringConstructor;
|
49
|
+
required: false;
|
50
|
+
default: string;
|
51
|
+
};
|
52
|
+
/** The CSS display property for the icon. Defaults to `block` */
|
53
|
+
display: {
|
54
|
+
type: StringConstructor;
|
55
|
+
required: false;
|
56
|
+
default: string;
|
57
|
+
};
|
58
|
+
/** Whether the icon is just eye-candy or is meaningful to the page (should screen-readers ignore the icon?) */
|
59
|
+
decorative: {
|
60
|
+
type: BooleanConstructor;
|
61
|
+
required: false;
|
62
|
+
default: boolean;
|
63
|
+
};
|
64
|
+
/** The icon size */
|
65
|
+
size: {
|
66
|
+
type: (StringConstructor | NumberConstructor)[];
|
67
|
+
required: false;
|
68
|
+
default: "24px";
|
69
|
+
validator: (sizeValue: number | string) => boolean;
|
70
|
+
};
|
71
|
+
/** The HTML tag to utilize for the icon's wrapper element. Defaults to `span` */
|
72
|
+
as: {
|
73
|
+
type: StringConstructor;
|
74
|
+
required: false;
|
75
|
+
default: string;
|
76
|
+
};
|
77
|
+
}>>, {
|
78
|
+
title: string;
|
79
|
+
color: string;
|
80
|
+
display: string;
|
81
|
+
decorative: boolean;
|
82
|
+
size: string | number;
|
83
|
+
as: string;
|
84
|
+
}, {}>;
|
85
|
+
export default _default;
|
@@ -0,0 +1,85 @@
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
2
|
+
/** The accessibility text provided to screen readers */
|
3
|
+
title: {
|
4
|
+
type: StringConstructor;
|
5
|
+
required: false;
|
6
|
+
default: string;
|
7
|
+
};
|
8
|
+
/** The icon color. Defaults to `currentColor` which inherits text color from the parent element */
|
9
|
+
color: {
|
10
|
+
type: StringConstructor;
|
11
|
+
required: false;
|
12
|
+
default: string;
|
13
|
+
};
|
14
|
+
/** The CSS display property for the icon. Defaults to `block` */
|
15
|
+
display: {
|
16
|
+
type: StringConstructor;
|
17
|
+
required: false;
|
18
|
+
default: string;
|
19
|
+
};
|
20
|
+
/** Whether the icon is just eye-candy or is meaningful to the page (should screen-readers ignore the icon?) */
|
21
|
+
decorative: {
|
22
|
+
type: BooleanConstructor;
|
23
|
+
required: false;
|
24
|
+
default: boolean;
|
25
|
+
};
|
26
|
+
/** The icon size */
|
27
|
+
size: {
|
28
|
+
type: (StringConstructor | NumberConstructor)[];
|
29
|
+
required: false;
|
30
|
+
default: "24px";
|
31
|
+
validator: (sizeValue: number | string) => boolean;
|
32
|
+
};
|
33
|
+
/** The HTML tag to utilize for the icon's wrapper element. Defaults to `span` */
|
34
|
+
as: {
|
35
|
+
type: StringConstructor;
|
36
|
+
required: false;
|
37
|
+
default: string;
|
38
|
+
};
|
39
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
40
|
+
/** The accessibility text provided to screen readers */
|
41
|
+
title: {
|
42
|
+
type: StringConstructor;
|
43
|
+
required: false;
|
44
|
+
default: string;
|
45
|
+
};
|
46
|
+
/** The icon color. Defaults to `currentColor` which inherits text color from the parent element */
|
47
|
+
color: {
|
48
|
+
type: StringConstructor;
|
49
|
+
required: false;
|
50
|
+
default: string;
|
51
|
+
};
|
52
|
+
/** The CSS display property for the icon. Defaults to `block` */
|
53
|
+
display: {
|
54
|
+
type: StringConstructor;
|
55
|
+
required: false;
|
56
|
+
default: string;
|
57
|
+
};
|
58
|
+
/** Whether the icon is just eye-candy or is meaningful to the page (should screen-readers ignore the icon?) */
|
59
|
+
decorative: {
|
60
|
+
type: BooleanConstructor;
|
61
|
+
required: false;
|
62
|
+
default: boolean;
|
63
|
+
};
|
64
|
+
/** The icon size */
|
65
|
+
size: {
|
66
|
+
type: (StringConstructor | NumberConstructor)[];
|
67
|
+
required: false;
|
68
|
+
default: "24px";
|
69
|
+
validator: (sizeValue: number | string) => boolean;
|
70
|
+
};
|
71
|
+
/** The HTML tag to utilize for the icon's wrapper element. Defaults to `span` */
|
72
|
+
as: {
|
73
|
+
type: StringConstructor;
|
74
|
+
required: false;
|
75
|
+
default: string;
|
76
|
+
};
|
77
|
+
}>>, {
|
78
|
+
title: string;
|
79
|
+
color: string;
|
80
|
+
display: string;
|
81
|
+
decorative: boolean;
|
82
|
+
size: string | number;
|
83
|
+
as: string;
|
84
|
+
}, {}>;
|
85
|
+
export default _default;
|
@@ -0,0 +1,85 @@
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
2
|
+
/** The accessibility text provided to screen readers */
|
3
|
+
title: {
|
4
|
+
type: StringConstructor;
|
5
|
+
required: false;
|
6
|
+
default: string;
|
7
|
+
};
|
8
|
+
/** The icon color. Defaults to `currentColor` which inherits text color from the parent element */
|
9
|
+
color: {
|
10
|
+
type: StringConstructor;
|
11
|
+
required: false;
|
12
|
+
default: string;
|
13
|
+
};
|
14
|
+
/** The CSS display property for the icon. Defaults to `block` */
|
15
|
+
display: {
|
16
|
+
type: StringConstructor;
|
17
|
+
required: false;
|
18
|
+
default: string;
|
19
|
+
};
|
20
|
+
/** Whether the icon is just eye-candy or is meaningful to the page (should screen-readers ignore the icon?) */
|
21
|
+
decorative: {
|
22
|
+
type: BooleanConstructor;
|
23
|
+
required: false;
|
24
|
+
default: boolean;
|
25
|
+
};
|
26
|
+
/** The icon size */
|
27
|
+
size: {
|
28
|
+
type: (StringConstructor | NumberConstructor)[];
|
29
|
+
required: false;
|
30
|
+
default: "24px";
|
31
|
+
validator: (sizeValue: number | string) => boolean;
|
32
|
+
};
|
33
|
+
/** The HTML tag to utilize for the icon's wrapper element. Defaults to `span` */
|
34
|
+
as: {
|
35
|
+
type: StringConstructor;
|
36
|
+
required: false;
|
37
|
+
default: string;
|
38
|
+
};
|
39
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
40
|
+
/** The accessibility text provided to screen readers */
|
41
|
+
title: {
|
42
|
+
type: StringConstructor;
|
43
|
+
required: false;
|
44
|
+
default: string;
|
45
|
+
};
|
46
|
+
/** The icon color. Defaults to `currentColor` which inherits text color from the parent element */
|
47
|
+
color: {
|
48
|
+
type: StringConstructor;
|
49
|
+
required: false;
|
50
|
+
default: string;
|
51
|
+
};
|
52
|
+
/** The CSS display property for the icon. Defaults to `block` */
|
53
|
+
display: {
|
54
|
+
type: StringConstructor;
|
55
|
+
required: false;
|
56
|
+
default: string;
|
57
|
+
};
|
58
|
+
/** Whether the icon is just eye-candy or is meaningful to the page (should screen-readers ignore the icon?) */
|
59
|
+
decorative: {
|
60
|
+
type: BooleanConstructor;
|
61
|
+
required: false;
|
62
|
+
default: boolean;
|
63
|
+
};
|
64
|
+
/** The icon size */
|
65
|
+
size: {
|
66
|
+
type: (StringConstructor | NumberConstructor)[];
|
67
|
+
required: false;
|
68
|
+
default: "24px";
|
69
|
+
validator: (sizeValue: number | string) => boolean;
|
70
|
+
};
|
71
|
+
/** The HTML tag to utilize for the icon's wrapper element. Defaults to `span` */
|
72
|
+
as: {
|
73
|
+
type: StringConstructor;
|
74
|
+
required: false;
|
75
|
+
default: string;
|
76
|
+
};
|
77
|
+
}>>, {
|
78
|
+
title: string;
|
79
|
+
color: string;
|
80
|
+
display: string;
|
81
|
+
decorative: boolean;
|
82
|
+
size: string | number;
|
83
|
+
as: string;
|
84
|
+
}, {}>;
|
85
|
+
export default _default;
|
@@ -0,0 +1,85 @@
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
2
|
+
/** The accessibility text provided to screen readers */
|
3
|
+
title: {
|
4
|
+
type: StringConstructor;
|
5
|
+
required: false;
|
6
|
+
default: string;
|
7
|
+
};
|
8
|
+
/** The icon color. Defaults to `currentColor` which inherits text color from the parent element */
|
9
|
+
color: {
|
10
|
+
type: StringConstructor;
|
11
|
+
required: false;
|
12
|
+
default: string;
|
13
|
+
};
|
14
|
+
/** The CSS display property for the icon. Defaults to `block` */
|
15
|
+
display: {
|
16
|
+
type: StringConstructor;
|
17
|
+
required: false;
|
18
|
+
default: string;
|
19
|
+
};
|
20
|
+
/** Whether the icon is just eye-candy or is meaningful to the page (should screen-readers ignore the icon?) */
|
21
|
+
decorative: {
|
22
|
+
type: BooleanConstructor;
|
23
|
+
required: false;
|
24
|
+
default: boolean;
|
25
|
+
};
|
26
|
+
/** The icon size */
|
27
|
+
size: {
|
28
|
+
type: (StringConstructor | NumberConstructor)[];
|
29
|
+
required: false;
|
30
|
+
default: "24px";
|
31
|
+
validator: (sizeValue: number | string) => boolean;
|
32
|
+
};
|
33
|
+
/** The HTML tag to utilize for the icon's wrapper element. Defaults to `span` */
|
34
|
+
as: {
|
35
|
+
type: StringConstructor;
|
36
|
+
required: false;
|
37
|
+
default: string;
|
38
|
+
};
|
39
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
40
|
+
/** The accessibility text provided to screen readers */
|
41
|
+
title: {
|
42
|
+
type: StringConstructor;
|
43
|
+
required: false;
|
44
|
+
default: string;
|
45
|
+
};
|
46
|
+
/** The icon color. Defaults to `currentColor` which inherits text color from the parent element */
|
47
|
+
color: {
|
48
|
+
type: StringConstructor;
|
49
|
+
required: false;
|
50
|
+
default: string;
|
51
|
+
};
|
52
|
+
/** The CSS display property for the icon. Defaults to `block` */
|
53
|
+
display: {
|
54
|
+
type: StringConstructor;
|
55
|
+
required: false;
|
56
|
+
default: string;
|
57
|
+
};
|
58
|
+
/** Whether the icon is just eye-candy or is meaningful to the page (should screen-readers ignore the icon?) */
|
59
|
+
decorative: {
|
60
|
+
type: BooleanConstructor;
|
61
|
+
required: false;
|
62
|
+
default: boolean;
|
63
|
+
};
|
64
|
+
/** The icon size */
|
65
|
+
size: {
|
66
|
+
type: (StringConstructor | NumberConstructor)[];
|
67
|
+
required: false;
|
68
|
+
default: "24px";
|
69
|
+
validator: (sizeValue: number | string) => boolean;
|
70
|
+
};
|
71
|
+
/** The HTML tag to utilize for the icon's wrapper element. Defaults to `span` */
|
72
|
+
as: {
|
73
|
+
type: StringConstructor;
|
74
|
+
required: false;
|
75
|
+
default: string;
|
76
|
+
};
|
77
|
+
}>>, {
|
78
|
+
title: string;
|
79
|
+
color: string;
|
80
|
+
display: string;
|
81
|
+
decorative: boolean;
|
82
|
+
size: string | number;
|
83
|
+
as: string;
|
84
|
+
}, {}>;
|
85
|
+
export default _default;
|
@@ -0,0 +1,85 @@
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
2
|
+
/** The accessibility text provided to screen readers */
|
3
|
+
title: {
|
4
|
+
type: StringConstructor;
|
5
|
+
required: false;
|
6
|
+
default: string;
|
7
|
+
};
|
8
|
+
/** The icon color. Defaults to `currentColor` which inherits text color from the parent element */
|
9
|
+
color: {
|
10
|
+
type: StringConstructor;
|
11
|
+
required: false;
|
12
|
+
default: string;
|
13
|
+
};
|
14
|
+
/** The CSS display property for the icon. Defaults to `block` */
|
15
|
+
display: {
|
16
|
+
type: StringConstructor;
|
17
|
+
required: false;
|
18
|
+
default: string;
|
19
|
+
};
|
20
|
+
/** Whether the icon is just eye-candy or is meaningful to the page (should screen-readers ignore the icon?) */
|
21
|
+
decorative: {
|
22
|
+
type: BooleanConstructor;
|
23
|
+
required: false;
|
24
|
+
default: boolean;
|
25
|
+
};
|
26
|
+
/** The icon size */
|
27
|
+
size: {
|
28
|
+
type: (StringConstructor | NumberConstructor)[];
|
29
|
+
required: false;
|
30
|
+
default: "24px";
|
31
|
+
validator: (sizeValue: number | string) => boolean;
|
32
|
+
};
|
33
|
+
/** The HTML tag to utilize for the icon's wrapper element. Defaults to `span` */
|
34
|
+
as: {
|
35
|
+
type: StringConstructor;
|
36
|
+
required: false;
|
37
|
+
default: string;
|
38
|
+
};
|
39
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
40
|
+
/** The accessibility text provided to screen readers */
|
41
|
+
title: {
|
42
|
+
type: StringConstructor;
|
43
|
+
required: false;
|
44
|
+
default: string;
|
45
|
+
};
|
46
|
+
/** The icon color. Defaults to `currentColor` which inherits text color from the parent element */
|
47
|
+
color: {
|
48
|
+
type: StringConstructor;
|
49
|
+
required: false;
|
50
|
+
default: string;
|
51
|
+
};
|
52
|
+
/** The CSS display property for the icon. Defaults to `block` */
|
53
|
+
display: {
|
54
|
+
type: StringConstructor;
|
55
|
+
required: false;
|
56
|
+
default: string;
|
57
|
+
};
|
58
|
+
/** Whether the icon is just eye-candy or is meaningful to the page (should screen-readers ignore the icon?) */
|
59
|
+
decorative: {
|
60
|
+
type: BooleanConstructor;
|
61
|
+
required: false;
|
62
|
+
default: boolean;
|
63
|
+
};
|
64
|
+
/** The icon size */
|
65
|
+
size: {
|
66
|
+
type: (StringConstructor | NumberConstructor)[];
|
67
|
+
required: false;
|
68
|
+
default: "24px";
|
69
|
+
validator: (sizeValue: number | string) => boolean;
|
70
|
+
};
|
71
|
+
/** The HTML tag to utilize for the icon's wrapper element. Defaults to `span` */
|
72
|
+
as: {
|
73
|
+
type: StringConstructor;
|
74
|
+
required: false;
|
75
|
+
default: string;
|
76
|
+
};
|
77
|
+
}>>, {
|
78
|
+
title: string;
|
79
|
+
color: string;
|
80
|
+
display: string;
|
81
|
+
decorative: boolean;
|
82
|
+
size: string | number;
|
83
|
+
as: string;
|
84
|
+
}, {}>;
|
85
|
+
export default _default;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/**
|
2
2
|
* This file was generated via the build script. Do not edit this file directly.
|
3
|
-
* Generated on Wed, 20 Dec 2023 17:
|
3
|
+
* Generated on Wed, 20 Dec 2023 17:31:41 GMT
|
4
4
|
*
|
5
5
|
* GitHub: https://github.com/Kong/icons
|
6
6
|
* License: Apache-2.0
|
@@ -16,6 +16,8 @@ export { default as ArrowUpIcon } from './ArrowUpIcon.vue';
|
|
16
16
|
export { default as BackIcon } from './BackIcon.vue';
|
17
17
|
export { default as BarChartHorizontalIcon } from './BarChartHorizontalIcon.vue';
|
18
18
|
export { default as BarChartIcon } from './BarChartIcon.vue';
|
19
|
+
export { default as BlockquoteIcon } from './BlockquoteIcon.vue';
|
20
|
+
export { default as BoldIcon } from './BoldIcon.vue';
|
19
21
|
export { default as BookIcon } from './BookIcon.vue';
|
20
22
|
export { default as BotIcon } from './BotIcon.vue';
|
21
23
|
export { default as BrainIcon } from './BrainIcon.vue';
|
@@ -36,6 +38,8 @@ export { default as ClockIcon } from './ClockIcon.vue';
|
|
36
38
|
export { default as CloseIcon } from './CloseIcon.vue';
|
37
39
|
export { default as CloudUploadIcon } from './CloudUploadIcon.vue';
|
38
40
|
export { default as CloudIcon } from './CloudIcon.vue';
|
41
|
+
export { default as CodeIcon } from './CodeIcon.vue';
|
42
|
+
export { default as CodeblockIcon } from './CodeblockIcon.vue';
|
39
43
|
export { default as CogModeIcon } from './CogModeIcon.vue';
|
40
44
|
export { default as CogIcon } from './CogIcon.vue';
|
41
45
|
export { default as CollapsePanelIcon } from './CollapsePanelIcon.vue';
|
@@ -75,9 +79,14 @@ export { default as IncreaseIcon } from './IncreaseIcon.vue';
|
|
75
79
|
export { default as IndeterminateSmallIcon } from './IndeterminateSmallIcon.vue';
|
76
80
|
export { default as InfoIcon } from './InfoIcon.vue';
|
77
81
|
export { default as InsightsIcon } from './InsightsIcon.vue';
|
82
|
+
export { default as ItalicIcon } from './ItalicIcon.vue';
|
78
83
|
export { default as KongIcon } from './KongIcon.vue';
|
84
|
+
export { default as LinkIcon } from './LinkIcon.vue';
|
85
|
+
export { default as ListOrderedIcon } from './ListOrderedIcon.vue';
|
86
|
+
export { default as ListUnorderedIcon } from './ListUnorderedIcon.vue';
|
79
87
|
export { default as ListIcon } from './ListIcon.vue';
|
80
88
|
export { default as LockIcon } from './LockIcon.vue';
|
89
|
+
export { default as MarkIcon } from './MarkIcon.vue';
|
81
90
|
export { default as MenuIcon } from './MenuIcon.vue';
|
82
91
|
export { default as MeshIcon } from './MeshIcon.vue';
|
83
92
|
export { default as MoreHorizontalIcon } from './MoreHorizontalIcon.vue';
|
@@ -104,13 +113,18 @@ export { default as ServiceHubIcon } from './ServiceHubIcon.vue';
|
|
104
113
|
export { default as ServicesIcon } from './ServicesIcon.vue';
|
105
114
|
export { default as SharedIcon } from './SharedIcon.vue';
|
106
115
|
export { default as StackIcon } from './StackIcon.vue';
|
116
|
+
export { default as StrikethroughIcon } from './StrikethroughIcon.vue';
|
117
|
+
export { default as SubscriptIcon } from './SubscriptIcon.vue';
|
118
|
+
export { default as SuperscriptIcon } from './SuperscriptIcon.vue';
|
107
119
|
export { default as SupportIcon } from './SupportIcon.vue';
|
108
120
|
export { default as TableIcon } from './TableIcon.vue';
|
121
|
+
export { default as TasklistIcon } from './TasklistIcon.vue';
|
109
122
|
export { default as TeamIcon } from './TeamIcon.vue';
|
110
123
|
export { default as TeammateIcon } from './TeammateIcon.vue';
|
111
124
|
export { default as TrashIcon } from './TrashIcon.vue';
|
112
125
|
export { default as TrendDownIcon } from './TrendDownIcon.vue';
|
113
126
|
export { default as TrendUpIcon } from './TrendUpIcon.vue';
|
127
|
+
export { default as UnderlineIcon } from './UnderlineIcon.vue';
|
114
128
|
export { default as UnfoldMoreIcon } from './UnfoldMoreIcon.vue';
|
115
129
|
export { default as VisibilityIcon } from './VisibilityIcon.vue';
|
116
130
|
export { default as VitalsIcon } from './VitalsIcon.vue';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kong/icons",
|
3
|
-
"version": "1.8.4-pr.
|
3
|
+
"version": "1.8.4-pr.178.69fd38b.0",
|
4
4
|
"description": "Kong Icon Library",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"type": "module",
|
@@ -75,13 +75,13 @@
|
|
75
75
|
"eslint-plugin-n": "^16.3.1",
|
76
76
|
"eslint-plugin-promise": "^6.1.1",
|
77
77
|
"eslint-plugin-vue": "^9.18.1",
|
78
|
-
"jsdom": "^
|
78
|
+
"jsdom": "^23.0.1",
|
79
79
|
"node-emoji": "^2.1.3",
|
80
80
|
"picocolors": "^1.0.0",
|
81
81
|
"postcss": "^8.4.32",
|
82
82
|
"postcss-html": "^1.5.0",
|
83
83
|
"rimraf": "^5.0.5",
|
84
|
-
"rollup-plugin-visualizer": "^5.
|
84
|
+
"rollup-plugin-visualizer": "^5.11.0",
|
85
85
|
"sass": "^1.69.5",
|
86
86
|
"semantic-release": "^22.0.10",
|
87
87
|
"stylelint": "^15.11.0",
|
@@ -92,7 +92,7 @@
|
|
92
92
|
"ts-node": "^10.9.2",
|
93
93
|
"tsc-alias": "^1.8.8",
|
94
94
|
"typescript": "^5.2.2",
|
95
|
-
"vite": "^
|
95
|
+
"vite": "^5.0.7",
|
96
96
|
"vitest": "0.34.6",
|
97
97
|
"vue": "^3.3.11",
|
98
98
|
"vue-router": "^4.2.5",
|