@kong/icons 1.9.2-pr.305.af872da.0 → 1.9.2-pr.306.05e707a.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 +1166 -1066
- 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/RuntimeServerlessIcon.vue.d.ts +85 -0
- package/dist/types/components/multi-color/index.d.ts +2 -1
- package/dist/types/components/solid/index.d.ts +1 -1
- package/package.json +8 -8
@@ -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 Wed, 22 May 2024
|
3
|
+
* Generated on Wed, 22 May 2024 13:00:21 GMT
|
4
4
|
*
|
5
5
|
* GitHub: https://github.com/Kong/icons
|
6
6
|
* License: Apache-2.0
|
@@ -17,3 +17,4 @@ export { default as RuntimeCompositeIcon } from './RuntimeCompositeIcon.vue';
|
|
17
17
|
export { default as RuntimeDedicatedCloudIcon } from './RuntimeDedicatedCloudIcon.vue';
|
18
18
|
export { default as RuntimeHybridIcon } from './RuntimeHybridIcon.vue';
|
19
19
|
export { default as RuntimeKicIcon } from './RuntimeKicIcon.vue';
|
20
|
+
export { default as RuntimeServerlessIcon } from './RuntimeServerlessIcon.vue';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kong/icons",
|
3
|
-
"version": "1.9.2-pr.
|
3
|
+
"version": "1.9.2-pr.306.05e707a.0",
|
4
4
|
"description": "Kong Icon Library",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"type": "module",
|
@@ -56,7 +56,7 @@
|
|
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.12.
|
59
|
+
"@types/node": "^20.12.11",
|
60
60
|
"@types/node-emoji": "^2.1.0",
|
61
61
|
"@typescript-eslint/eslint-plugin": "^7.8.0",
|
62
62
|
"@typescript-eslint/parser": "^7.8.0",
|
@@ -73,7 +73,7 @@
|
|
73
73
|
"eslint": "^8.57.0",
|
74
74
|
"eslint-config-standard": "^17.1.0",
|
75
75
|
"eslint-plugin-import": "^2.29.1",
|
76
|
-
"eslint-plugin-n": "^17.5.
|
76
|
+
"eslint-plugin-n": "^17.5.1",
|
77
77
|
"eslint-plugin-promise": "^6.1.1",
|
78
78
|
"eslint-plugin-vue": "^9.26.0",
|
79
79
|
"jsdom": "^24.0.0",
|
@@ -81,23 +81,23 @@
|
|
81
81
|
"picocolors": "^1.0.0",
|
82
82
|
"postcss": "^8.4.38",
|
83
83
|
"postcss-html": "^1.7.0",
|
84
|
-
"rimraf": "^5.0.
|
84
|
+
"rimraf": "^5.0.6",
|
85
85
|
"rollup-plugin-visualizer": "^5.12.0",
|
86
|
-
"sass": "^1.77.
|
86
|
+
"sass": "^1.77.1",
|
87
87
|
"semantic-release": "^22.0.12",
|
88
88
|
"stylelint": "^16.5.0",
|
89
89
|
"stylelint-config-html": "^1.1.0",
|
90
90
|
"stylelint-config-recommended-scss": "^14.0.0",
|
91
91
|
"stylelint-config-recommended-vue": "^1.5.0",
|
92
92
|
"stylelint-order": "^6.0.4",
|
93
|
-
"tsc-alias": "^1.8.
|
93
|
+
"tsc-alias": "^1.8.9",
|
94
94
|
"typescript": "^5.4.5",
|
95
95
|
"vite": "^5.2.11",
|
96
96
|
"vite-plugin-vue-devtools": "^7.1.3",
|
97
97
|
"vitest": "^1.6.0",
|
98
98
|
"vue": "^3.4.27",
|
99
99
|
"vue-router": "^4.3.2",
|
100
|
-
"vue-tsc": "^2.0.
|
100
|
+
"vue-tsc": "^2.0.17"
|
101
101
|
},
|
102
102
|
"peerDependencies": {
|
103
103
|
"vue": ">= 3.3.4 < 4"
|
@@ -154,7 +154,7 @@
|
|
154
154
|
"node": ">=18.17.0"
|
155
155
|
},
|
156
156
|
"volta": {
|
157
|
-
"node": "20.13.
|
157
|
+
"node": "20.13.1",
|
158
158
|
"yarn": "1.22.22"
|
159
159
|
},
|
160
160
|
"config": {
|