@kong/icons 1.8.13-pr.206.86b1715.0 → 1.8.13-pr.211.2a35b23.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 +885 -685
- 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/NetworkIcon.vue.d.ts +85 -0
- package/dist/types/components/solid/ProfileTeamIcon.vue.d.ts +85 -0
- package/dist/types/components/solid/index.d.ts +3 -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").PublicProps, 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").PublicProps, 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 Thu, 18 Jan 2024
|
3
|
+
* Generated on Thu, 18 Jan 2024 18:14:05 GMT
|
4
4
|
*
|
5
5
|
* GitHub: https://github.com/Kong/icons
|
6
6
|
* License: Apache-2.0
|
@@ -96,6 +96,7 @@ export { default as MenuIcon } from './MenuIcon.vue';
|
|
96
96
|
export { default as MeshIcon } from './MeshIcon.vue';
|
97
97
|
export { default as MoreHorizontalIcon } from './MoreHorizontalIcon.vue';
|
98
98
|
export { default as MoreIcon } from './MoreIcon.vue';
|
99
|
+
export { default as NetworkIcon } from './NetworkIcon.vue';
|
99
100
|
export { default as NotificationIcon } from './NotificationIcon.vue';
|
100
101
|
export { default as OrganizationIcon } from './OrganizationIcon.vue';
|
101
102
|
export { default as OverviewIcon } from './OverviewIcon.vue';
|
@@ -103,6 +104,7 @@ export { default as PeopleIcon } from './PeopleIcon.vue';
|
|
103
104
|
export { default as PlugIcon } from './PlugIcon.vue';
|
104
105
|
export { default as PortalIcon } from './PortalIcon.vue';
|
105
106
|
export { default as PresentationIcon } from './PresentationIcon.vue';
|
107
|
+
export { default as ProfileTeamIcon } from './ProfileTeamIcon.vue';
|
106
108
|
export { default as ProfileIcon } from './ProfileIcon.vue';
|
107
109
|
export { default as ProgressIcon } from './ProgressIcon.vue';
|
108
110
|
export { default as RedoIcon } from './RedoIcon.vue';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kong/icons",
|
3
|
-
"version": "1.8.13-pr.
|
3
|
+
"version": "1.8.13-pr.211.2a35b23.0",
|
4
4
|
"description": "Kong Icon Library",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"type": "module",
|
@@ -56,10 +56,10 @@
|
|
56
56
|
"@semantic-release/changelog": "^6.0.3",
|
57
57
|
"@semantic-release/git": "^10.0.1",
|
58
58
|
"@types/jsdom": "^21.1.6",
|
59
|
-
"@types/node": "^20.10.
|
59
|
+
"@types/node": "^20.10.7",
|
60
60
|
"@types/node-emoji": "^2.1.0",
|
61
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
62
|
-
"@typescript-eslint/parser": "^6.
|
61
|
+
"@typescript-eslint/eslint-plugin": "^6.18.0",
|
62
|
+
"@typescript-eslint/parser": "^6.18.0",
|
63
63
|
"@vitejs/plugin-vue": "^5.0.2",
|
64
64
|
"@vitest/ui": "^1.1.3",
|
65
65
|
"@vue/test-utils": "^2.4.3",
|