@kong/icons 1.20.5-pr.515.5dd035a.0 → 1.20.5-pr.516.17c1b8d.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/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/ChevronDoubleLeftIcon.vue.d.ts +104 -0
- package/dist/types/components/solid/ChevronDoubleRightIcon.vue.d.ts +104 -0
- package/dist/types/components/solid/ColorsIcon.vue.d.ts +104 -0
- package/dist/types/components/solid/PhoneIcon.vue.d.ts +104 -0
- package/dist/types/components/solid/TabletIcon.vue.d.ts +104 -0
- package/dist/types/components/solid/TelevisionIcon.vue.d.ts +104 -0
- package/dist/types/components/solid/index.d.ts +7 -1
- package/package.json +1 -1
@@ -0,0 +1,104 @@
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
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
|
+
/**
|
40
|
+
* A boolean to disable prefixing any internal SVG ids with a unique string which is done to resolve the potential for multiple SVG instances on the same page and the SVG utilizing the same ids and references internally (e.g. in the `<defs>` tag).
|
41
|
+
* Typically only set to `true` during snapshot testing.
|
42
|
+
* Defaults to `false`.
|
43
|
+
*/
|
44
|
+
staticIds: {
|
45
|
+
type: BooleanConstructor;
|
46
|
+
default: boolean;
|
47
|
+
};
|
48
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
49
|
+
/** The accessibility text provided to screen readers */
|
50
|
+
title: {
|
51
|
+
type: StringConstructor;
|
52
|
+
required: false;
|
53
|
+
default: string;
|
54
|
+
};
|
55
|
+
/** The icon color. Defaults to `currentColor` which inherits text color from the parent element */
|
56
|
+
color: {
|
57
|
+
type: StringConstructor;
|
58
|
+
required: false;
|
59
|
+
default: string;
|
60
|
+
};
|
61
|
+
/** The CSS display property for the icon. Defaults to `block` */
|
62
|
+
display: {
|
63
|
+
type: StringConstructor;
|
64
|
+
required: false;
|
65
|
+
default: string;
|
66
|
+
};
|
67
|
+
/** Whether the icon is just eye-candy or is meaningful to the page (should screen-readers ignore the icon?) */
|
68
|
+
decorative: {
|
69
|
+
type: BooleanConstructor;
|
70
|
+
required: false;
|
71
|
+
default: boolean;
|
72
|
+
};
|
73
|
+
/** The icon size */
|
74
|
+
size: {
|
75
|
+
type: (StringConstructor | NumberConstructor)[];
|
76
|
+
required: false;
|
77
|
+
default: "24px";
|
78
|
+
validator: (sizeValue: number | string) => boolean;
|
79
|
+
};
|
80
|
+
/** The HTML tag to utilize for the icon's wrapper element. Defaults to `span` */
|
81
|
+
as: {
|
82
|
+
type: StringConstructor;
|
83
|
+
required: false;
|
84
|
+
default: string;
|
85
|
+
};
|
86
|
+
/**
|
87
|
+
* A boolean to disable prefixing any internal SVG ids with a unique string which is done to resolve the potential for multiple SVG instances on the same page and the SVG utilizing the same ids and references internally (e.g. in the `<defs>` tag).
|
88
|
+
* Typically only set to `true` during snapshot testing.
|
89
|
+
* Defaults to `false`.
|
90
|
+
*/
|
91
|
+
staticIds: {
|
92
|
+
type: BooleanConstructor;
|
93
|
+
default: boolean;
|
94
|
+
};
|
95
|
+
}>> & Readonly<{}>, {
|
96
|
+
title: string;
|
97
|
+
color: string;
|
98
|
+
display: string;
|
99
|
+
decorative: boolean;
|
100
|
+
size: string | number;
|
101
|
+
as: string;
|
102
|
+
staticIds: boolean;
|
103
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
104
|
+
export default _default;
|
@@ -0,0 +1,104 @@
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
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
|
+
/**
|
40
|
+
* A boolean to disable prefixing any internal SVG ids with a unique string which is done to resolve the potential for multiple SVG instances on the same page and the SVG utilizing the same ids and references internally (e.g. in the `<defs>` tag).
|
41
|
+
* Typically only set to `true` during snapshot testing.
|
42
|
+
* Defaults to `false`.
|
43
|
+
*/
|
44
|
+
staticIds: {
|
45
|
+
type: BooleanConstructor;
|
46
|
+
default: boolean;
|
47
|
+
};
|
48
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
49
|
+
/** The accessibility text provided to screen readers */
|
50
|
+
title: {
|
51
|
+
type: StringConstructor;
|
52
|
+
required: false;
|
53
|
+
default: string;
|
54
|
+
};
|
55
|
+
/** The icon color. Defaults to `currentColor` which inherits text color from the parent element */
|
56
|
+
color: {
|
57
|
+
type: StringConstructor;
|
58
|
+
required: false;
|
59
|
+
default: string;
|
60
|
+
};
|
61
|
+
/** The CSS display property for the icon. Defaults to `block` */
|
62
|
+
display: {
|
63
|
+
type: StringConstructor;
|
64
|
+
required: false;
|
65
|
+
default: string;
|
66
|
+
};
|
67
|
+
/** Whether the icon is just eye-candy or is meaningful to the page (should screen-readers ignore the icon?) */
|
68
|
+
decorative: {
|
69
|
+
type: BooleanConstructor;
|
70
|
+
required: false;
|
71
|
+
default: boolean;
|
72
|
+
};
|
73
|
+
/** The icon size */
|
74
|
+
size: {
|
75
|
+
type: (StringConstructor | NumberConstructor)[];
|
76
|
+
required: false;
|
77
|
+
default: "24px";
|
78
|
+
validator: (sizeValue: number | string) => boolean;
|
79
|
+
};
|
80
|
+
/** The HTML tag to utilize for the icon's wrapper element. Defaults to `span` */
|
81
|
+
as: {
|
82
|
+
type: StringConstructor;
|
83
|
+
required: false;
|
84
|
+
default: string;
|
85
|
+
};
|
86
|
+
/**
|
87
|
+
* A boolean to disable prefixing any internal SVG ids with a unique string which is done to resolve the potential for multiple SVG instances on the same page and the SVG utilizing the same ids and references internally (e.g. in the `<defs>` tag).
|
88
|
+
* Typically only set to `true` during snapshot testing.
|
89
|
+
* Defaults to `false`.
|
90
|
+
*/
|
91
|
+
staticIds: {
|
92
|
+
type: BooleanConstructor;
|
93
|
+
default: boolean;
|
94
|
+
};
|
95
|
+
}>> & Readonly<{}>, {
|
96
|
+
title: string;
|
97
|
+
color: string;
|
98
|
+
display: string;
|
99
|
+
decorative: boolean;
|
100
|
+
size: string | number;
|
101
|
+
as: string;
|
102
|
+
staticIds: boolean;
|
103
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
104
|
+
export default _default;
|
@@ -0,0 +1,104 @@
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
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
|
+
/**
|
40
|
+
* A boolean to disable prefixing any internal SVG ids with a unique string which is done to resolve the potential for multiple SVG instances on the same page and the SVG utilizing the same ids and references internally (e.g. in the `<defs>` tag).
|
41
|
+
* Typically only set to `true` during snapshot testing.
|
42
|
+
* Defaults to `false`.
|
43
|
+
*/
|
44
|
+
staticIds: {
|
45
|
+
type: BooleanConstructor;
|
46
|
+
default: boolean;
|
47
|
+
};
|
48
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
49
|
+
/** The accessibility text provided to screen readers */
|
50
|
+
title: {
|
51
|
+
type: StringConstructor;
|
52
|
+
required: false;
|
53
|
+
default: string;
|
54
|
+
};
|
55
|
+
/** The icon color. Defaults to `currentColor` which inherits text color from the parent element */
|
56
|
+
color: {
|
57
|
+
type: StringConstructor;
|
58
|
+
required: false;
|
59
|
+
default: string;
|
60
|
+
};
|
61
|
+
/** The CSS display property for the icon. Defaults to `block` */
|
62
|
+
display: {
|
63
|
+
type: StringConstructor;
|
64
|
+
required: false;
|
65
|
+
default: string;
|
66
|
+
};
|
67
|
+
/** Whether the icon is just eye-candy or is meaningful to the page (should screen-readers ignore the icon?) */
|
68
|
+
decorative: {
|
69
|
+
type: BooleanConstructor;
|
70
|
+
required: false;
|
71
|
+
default: boolean;
|
72
|
+
};
|
73
|
+
/** The icon size */
|
74
|
+
size: {
|
75
|
+
type: (StringConstructor | NumberConstructor)[];
|
76
|
+
required: false;
|
77
|
+
default: "24px";
|
78
|
+
validator: (sizeValue: number | string) => boolean;
|
79
|
+
};
|
80
|
+
/** The HTML tag to utilize for the icon's wrapper element. Defaults to `span` */
|
81
|
+
as: {
|
82
|
+
type: StringConstructor;
|
83
|
+
required: false;
|
84
|
+
default: string;
|
85
|
+
};
|
86
|
+
/**
|
87
|
+
* A boolean to disable prefixing any internal SVG ids with a unique string which is done to resolve the potential for multiple SVG instances on the same page and the SVG utilizing the same ids and references internally (e.g. in the `<defs>` tag).
|
88
|
+
* Typically only set to `true` during snapshot testing.
|
89
|
+
* Defaults to `false`.
|
90
|
+
*/
|
91
|
+
staticIds: {
|
92
|
+
type: BooleanConstructor;
|
93
|
+
default: boolean;
|
94
|
+
};
|
95
|
+
}>> & Readonly<{}>, {
|
96
|
+
title: string;
|
97
|
+
color: string;
|
98
|
+
display: string;
|
99
|
+
decorative: boolean;
|
100
|
+
size: string | number;
|
101
|
+
as: string;
|
102
|
+
staticIds: boolean;
|
103
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
104
|
+
export default _default;
|
@@ -0,0 +1,104 @@
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
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
|
+
/**
|
40
|
+
* A boolean to disable prefixing any internal SVG ids with a unique string which is done to resolve the potential for multiple SVG instances on the same page and the SVG utilizing the same ids and references internally (e.g. in the `<defs>` tag).
|
41
|
+
* Typically only set to `true` during snapshot testing.
|
42
|
+
* Defaults to `false`.
|
43
|
+
*/
|
44
|
+
staticIds: {
|
45
|
+
type: BooleanConstructor;
|
46
|
+
default: boolean;
|
47
|
+
};
|
48
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
49
|
+
/** The accessibility text provided to screen readers */
|
50
|
+
title: {
|
51
|
+
type: StringConstructor;
|
52
|
+
required: false;
|
53
|
+
default: string;
|
54
|
+
};
|
55
|
+
/** The icon color. Defaults to `currentColor` which inherits text color from the parent element */
|
56
|
+
color: {
|
57
|
+
type: StringConstructor;
|
58
|
+
required: false;
|
59
|
+
default: string;
|
60
|
+
};
|
61
|
+
/** The CSS display property for the icon. Defaults to `block` */
|
62
|
+
display: {
|
63
|
+
type: StringConstructor;
|
64
|
+
required: false;
|
65
|
+
default: string;
|
66
|
+
};
|
67
|
+
/** Whether the icon is just eye-candy or is meaningful to the page (should screen-readers ignore the icon?) */
|
68
|
+
decorative: {
|
69
|
+
type: BooleanConstructor;
|
70
|
+
required: false;
|
71
|
+
default: boolean;
|
72
|
+
};
|
73
|
+
/** The icon size */
|
74
|
+
size: {
|
75
|
+
type: (StringConstructor | NumberConstructor)[];
|
76
|
+
required: false;
|
77
|
+
default: "24px";
|
78
|
+
validator: (sizeValue: number | string) => boolean;
|
79
|
+
};
|
80
|
+
/** The HTML tag to utilize for the icon's wrapper element. Defaults to `span` */
|
81
|
+
as: {
|
82
|
+
type: StringConstructor;
|
83
|
+
required: false;
|
84
|
+
default: string;
|
85
|
+
};
|
86
|
+
/**
|
87
|
+
* A boolean to disable prefixing any internal SVG ids with a unique string which is done to resolve the potential for multiple SVG instances on the same page and the SVG utilizing the same ids and references internally (e.g. in the `<defs>` tag).
|
88
|
+
* Typically only set to `true` during snapshot testing.
|
89
|
+
* Defaults to `false`.
|
90
|
+
*/
|
91
|
+
staticIds: {
|
92
|
+
type: BooleanConstructor;
|
93
|
+
default: boolean;
|
94
|
+
};
|
95
|
+
}>> & Readonly<{}>, {
|
96
|
+
title: string;
|
97
|
+
color: string;
|
98
|
+
display: string;
|
99
|
+
decorative: boolean;
|
100
|
+
size: string | number;
|
101
|
+
as: string;
|
102
|
+
staticIds: boolean;
|
103
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
104
|
+
export default _default;
|
@@ -0,0 +1,104 @@
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
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
|
+
/**
|
40
|
+
* A boolean to disable prefixing any internal SVG ids with a unique string which is done to resolve the potential for multiple SVG instances on the same page and the SVG utilizing the same ids and references internally (e.g. in the `<defs>` tag).
|
41
|
+
* Typically only set to `true` during snapshot testing.
|
42
|
+
* Defaults to `false`.
|
43
|
+
*/
|
44
|
+
staticIds: {
|
45
|
+
type: BooleanConstructor;
|
46
|
+
default: boolean;
|
47
|
+
};
|
48
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
49
|
+
/** The accessibility text provided to screen readers */
|
50
|
+
title: {
|
51
|
+
type: StringConstructor;
|
52
|
+
required: false;
|
53
|
+
default: string;
|
54
|
+
};
|
55
|
+
/** The icon color. Defaults to `currentColor` which inherits text color from the parent element */
|
56
|
+
color: {
|
57
|
+
type: StringConstructor;
|
58
|
+
required: false;
|
59
|
+
default: string;
|
60
|
+
};
|
61
|
+
/** The CSS display property for the icon. Defaults to `block` */
|
62
|
+
display: {
|
63
|
+
type: StringConstructor;
|
64
|
+
required: false;
|
65
|
+
default: string;
|
66
|
+
};
|
67
|
+
/** Whether the icon is just eye-candy or is meaningful to the page (should screen-readers ignore the icon?) */
|
68
|
+
decorative: {
|
69
|
+
type: BooleanConstructor;
|
70
|
+
required: false;
|
71
|
+
default: boolean;
|
72
|
+
};
|
73
|
+
/** The icon size */
|
74
|
+
size: {
|
75
|
+
type: (StringConstructor | NumberConstructor)[];
|
76
|
+
required: false;
|
77
|
+
default: "24px";
|
78
|
+
validator: (sizeValue: number | string) => boolean;
|
79
|
+
};
|
80
|
+
/** The HTML tag to utilize for the icon's wrapper element. Defaults to `span` */
|
81
|
+
as: {
|
82
|
+
type: StringConstructor;
|
83
|
+
required: false;
|
84
|
+
default: string;
|
85
|
+
};
|
86
|
+
/**
|
87
|
+
* A boolean to disable prefixing any internal SVG ids with a unique string which is done to resolve the potential for multiple SVG instances on the same page and the SVG utilizing the same ids and references internally (e.g. in the `<defs>` tag).
|
88
|
+
* Typically only set to `true` during snapshot testing.
|
89
|
+
* Defaults to `false`.
|
90
|
+
*/
|
91
|
+
staticIds: {
|
92
|
+
type: BooleanConstructor;
|
93
|
+
default: boolean;
|
94
|
+
};
|
95
|
+
}>> & Readonly<{}>, {
|
96
|
+
title: string;
|
97
|
+
color: string;
|
98
|
+
display: string;
|
99
|
+
decorative: boolean;
|
100
|
+
size: string | number;
|
101
|
+
as: string;
|
102
|
+
staticIds: boolean;
|
103
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
104
|
+
export default _default;
|
@@ -0,0 +1,104 @@
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
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
|
+
/**
|
40
|
+
* A boolean to disable prefixing any internal SVG ids with a unique string which is done to resolve the potential for multiple SVG instances on the same page and the SVG utilizing the same ids and references internally (e.g. in the `<defs>` tag).
|
41
|
+
* Typically only set to `true` during snapshot testing.
|
42
|
+
* Defaults to `false`.
|
43
|
+
*/
|
44
|
+
staticIds: {
|
45
|
+
type: BooleanConstructor;
|
46
|
+
default: boolean;
|
47
|
+
};
|
48
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
49
|
+
/** The accessibility text provided to screen readers */
|
50
|
+
title: {
|
51
|
+
type: StringConstructor;
|
52
|
+
required: false;
|
53
|
+
default: string;
|
54
|
+
};
|
55
|
+
/** The icon color. Defaults to `currentColor` which inherits text color from the parent element */
|
56
|
+
color: {
|
57
|
+
type: StringConstructor;
|
58
|
+
required: false;
|
59
|
+
default: string;
|
60
|
+
};
|
61
|
+
/** The CSS display property for the icon. Defaults to `block` */
|
62
|
+
display: {
|
63
|
+
type: StringConstructor;
|
64
|
+
required: false;
|
65
|
+
default: string;
|
66
|
+
};
|
67
|
+
/** Whether the icon is just eye-candy or is meaningful to the page (should screen-readers ignore the icon?) */
|
68
|
+
decorative: {
|
69
|
+
type: BooleanConstructor;
|
70
|
+
required: false;
|
71
|
+
default: boolean;
|
72
|
+
};
|
73
|
+
/** The icon size */
|
74
|
+
size: {
|
75
|
+
type: (StringConstructor | NumberConstructor)[];
|
76
|
+
required: false;
|
77
|
+
default: "24px";
|
78
|
+
validator: (sizeValue: number | string) => boolean;
|
79
|
+
};
|
80
|
+
/** The HTML tag to utilize for the icon's wrapper element. Defaults to `span` */
|
81
|
+
as: {
|
82
|
+
type: StringConstructor;
|
83
|
+
required: false;
|
84
|
+
default: string;
|
85
|
+
};
|
86
|
+
/**
|
87
|
+
* A boolean to disable prefixing any internal SVG ids with a unique string which is done to resolve the potential for multiple SVG instances on the same page and the SVG utilizing the same ids and references internally (e.g. in the `<defs>` tag).
|
88
|
+
* Typically only set to `true` during snapshot testing.
|
89
|
+
* Defaults to `false`.
|
90
|
+
*/
|
91
|
+
staticIds: {
|
92
|
+
type: BooleanConstructor;
|
93
|
+
default: boolean;
|
94
|
+
};
|
95
|
+
}>> & Readonly<{}>, {
|
96
|
+
title: string;
|
97
|
+
color: string;
|
98
|
+
display: string;
|
99
|
+
decorative: boolean;
|
100
|
+
size: string | number;
|
101
|
+
as: string;
|
102
|
+
staticIds: boolean;
|
103
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
104
|
+
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 Tue, 04 Feb 2025
|
3
|
+
* Generated on Tue, 04 Feb 2025 18:22:27 GMT
|
4
4
|
*
|
5
5
|
* GitHub: https://github.com/Kong/icons
|
6
6
|
* License: Apache-2.0
|
@@ -28,6 +28,8 @@ export { default as ChartLinesIcon } from './ChartLinesIcon.vue';
|
|
28
28
|
export { default as CheckCircleIcon } from './CheckCircleIcon.vue';
|
29
29
|
export { default as CheckSmallIcon } from './CheckSmallIcon.vue';
|
30
30
|
export { default as CheckIcon } from './CheckIcon.vue';
|
31
|
+
export { default as ChevronDoubleLeftIcon } from './ChevronDoubleLeftIcon.vue';
|
32
|
+
export { default as ChevronDoubleRightIcon } from './ChevronDoubleRightIcon.vue';
|
31
33
|
export { default as ChevronDownIcon } from './ChevronDownIcon.vue';
|
32
34
|
export { default as ChevronLeftIcon } from './ChevronLeftIcon.vue';
|
33
35
|
export { default as ChevronRightIcon } from './ChevronRightIcon.vue';
|
@@ -45,6 +47,7 @@ export { default as CogModeIcon } from './CogModeIcon.vue';
|
|
45
47
|
export { default as CogIcon } from './CogIcon.vue';
|
46
48
|
export { default as CollapsePanelIcon } from './CollapsePanelIcon.vue';
|
47
49
|
export { default as CollapseIcon } from './CollapseIcon.vue';
|
50
|
+
export { default as ColorsIcon } from './ColorsIcon.vue';
|
48
51
|
export { default as ConnectionsIcon } from './ConnectionsIcon.vue';
|
49
52
|
export { default as CopyIcon } from './CopyIcon.vue';
|
50
53
|
export { default as DangerCircleIcon } from './DangerCircleIcon.vue';
|
@@ -109,6 +112,7 @@ export { default as NotificationIcon } from './NotificationIcon.vue';
|
|
109
112
|
export { default as OrganizationIcon } from './OrganizationIcon.vue';
|
110
113
|
export { default as OverviewIcon } from './OverviewIcon.vue';
|
111
114
|
export { default as PeopleIcon } from './PeopleIcon.vue';
|
115
|
+
export { default as PhoneIcon } from './PhoneIcon.vue';
|
112
116
|
export { default as PlugIcon } from './PlugIcon.vue';
|
113
117
|
export { default as PortalIcon } from './PortalIcon.vue';
|
114
118
|
export { default as PresentationIcon } from './PresentationIcon.vue';
|
@@ -136,9 +140,11 @@ export { default as SupportIcon } from './SupportIcon.vue';
|
|
136
140
|
export { default as TableColumnsIcon } from './TableColumnsIcon.vue';
|
137
141
|
export { default as TableRowsIcon } from './TableRowsIcon.vue';
|
138
142
|
export { default as TableIcon } from './TableIcon.vue';
|
143
|
+
export { default as TabletIcon } from './TabletIcon.vue';
|
139
144
|
export { default as TasklistIcon } from './TasklistIcon.vue';
|
140
145
|
export { default as TeamIcon } from './TeamIcon.vue';
|
141
146
|
export { default as TeammateIcon } from './TeammateIcon.vue';
|
147
|
+
export { default as TelevisionIcon } from './TelevisionIcon.vue';
|
142
148
|
export { default as ThumbDownIcon } from './ThumbDownIcon.vue';
|
143
149
|
export { default as ThumbUpIcon } from './ThumbUpIcon.vue';
|
144
150
|
export { default as TrashIcon } from './TrashIcon.vue';
|