@progress/kendo-vue-common 3.7.4-dev.202211301436 → 3.7.4-dev.202212300853
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/README.md +1 -1
- package/dist/cdn/js/kendo-vue-common.js +1 -1
- package/dist/es/Draggable.js +4 -2
- package/dist/es/icons/BaseIconProps.d.ts +66 -0
- package/dist/es/icons/BaseIconProps.js +1 -0
- package/dist/es/icons/FontIcon.d.ts +51 -0
- package/dist/es/icons/FontIcon.js +65 -0
- package/dist/es/icons/Icon.d.ts +49 -0
- package/dist/es/icons/Icon.js +97 -0
- package/dist/es/icons/SvgIcon.d.ts +95 -0
- package/dist/es/icons/SvgIcon.js +88 -0
- package/dist/es/icons/constants.d.ts +11 -0
- package/dist/es/icons/constants.js +11 -0
- package/dist/es/icons/models/flip.d.ts +11 -0
- package/dist/es/icons/models/flip.js +1 -0
- package/dist/es/icons/models/size.d.ts +13 -0
- package/dist/es/icons/models/size.js +1 -0
- package/dist/es/icons/models/theme-color.d.ts +21 -0
- package/dist/es/icons/models/theme-color.js +1 -0
- package/dist/es/main.d.ts +6 -0
- package/dist/es/main.js +6 -0
- package/dist/esm/Draggable.js +4 -2
- package/dist/esm/icons/BaseIconProps.d.ts +66 -0
- package/dist/esm/icons/BaseIconProps.js +1 -0
- package/dist/esm/icons/FontIcon.d.ts +51 -0
- package/dist/esm/icons/FontIcon.js +65 -0
- package/dist/esm/icons/Icon.d.ts +49 -0
- package/dist/esm/icons/Icon.js +97 -0
- package/dist/esm/icons/SvgIcon.d.ts +95 -0
- package/dist/esm/icons/SvgIcon.js +88 -0
- package/dist/esm/icons/constants.d.ts +11 -0
- package/dist/esm/icons/constants.js +11 -0
- package/dist/esm/icons/models/flip.d.ts +11 -0
- package/dist/esm/icons/models/flip.js +1 -0
- package/dist/esm/icons/models/size.d.ts +13 -0
- package/dist/esm/icons/models/size.js +1 -0
- package/dist/esm/icons/models/theme-color.d.ts +21 -0
- package/dist/esm/icons/models/theme-color.js +1 -0
- package/dist/esm/main.d.ts +6 -0
- package/dist/esm/main.js +6 -0
- package/dist/npm/Draggable.js +4 -2
- package/dist/npm/icons/BaseIconProps.d.ts +66 -0
- package/dist/npm/icons/BaseIconProps.js +2 -0
- package/dist/npm/icons/FontIcon.d.ts +51 -0
- package/dist/npm/icons/FontIcon.js +72 -0
- package/dist/npm/icons/Icon.d.ts +49 -0
- package/dist/npm/icons/Icon.js +104 -0
- package/dist/npm/icons/SvgIcon.d.ts +95 -0
- package/dist/npm/icons/SvgIcon.js +95 -0
- package/dist/npm/icons/constants.d.ts +11 -0
- package/dist/npm/icons/constants.js +14 -0
- package/dist/npm/icons/models/flip.d.ts +11 -0
- package/dist/npm/icons/models/flip.js +2 -0
- package/dist/npm/icons/models/size.d.ts +13 -0
- package/dist/npm/icons/models/size.js +2 -0
- package/dist/npm/icons/models/theme-color.d.ts +21 -0
- package/dist/npm/icons/models/theme-color.js +2 -0
- package/dist/npm/main.d.ts +6 -0
- package/dist/npm/main.js +6 -0
- package/package.json +4 -3
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Specifies the theme color of the Icon.
|
|
3
|
+
*
|
|
4
|
+
* The possible values are:
|
|
5
|
+
* * `inherit` (Default)—Applies coloring based on the current color.
|
|
6
|
+
* * `primary` —Applies coloring based on primary theme color.
|
|
7
|
+
* * `secondary`—Applies coloring based on secondary theme color.
|
|
8
|
+
* * `tertiary`— Applies coloring based on tertiary theme color.
|
|
9
|
+
* * `info`—Applies coloring based on info theme color.
|
|
10
|
+
* * `success`— Applies coloring based on success theme color.
|
|
11
|
+
* * `warning`— Applies coloring based on warning theme color.
|
|
12
|
+
* * `error`— Applies coloring based on error theme color.
|
|
13
|
+
* * `dark`— Applies coloring based on dark theme color.
|
|
14
|
+
* * `light`— Applies coloring based on light theme color.
|
|
15
|
+
* * `inverse`— Applies coloring based on inverse theme color.
|
|
16
|
+
*
|
|
17
|
+
* If the property is not set, the icon inherits the color from its parent.
|
|
18
|
+
*
|
|
19
|
+
* You can use the `style` prop to apply custom color related properties to the icon.
|
|
20
|
+
*/
|
|
21
|
+
export declare type IconThemeColor = 'inherit' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse';
|
package/dist/npm/main.d.ts
CHANGED
|
@@ -23,3 +23,9 @@ export * from './treeDataOperations';
|
|
|
23
23
|
export * from './browser-support.service';
|
|
24
24
|
export * from './scrollbarWidth';
|
|
25
25
|
export * from './hasRelativeStackingContext';
|
|
26
|
+
export * from './icons/Icon';
|
|
27
|
+
export * from './icons/FontIcon';
|
|
28
|
+
export * from './icons/SvgIcon';
|
|
29
|
+
export * from './icons/models/flip';
|
|
30
|
+
export * from './icons/models/size';
|
|
31
|
+
export * from './icons/models/theme-color';
|
package/dist/npm/main.js
CHANGED
|
@@ -69,3 +69,9 @@ __exportStar(require("./treeDataOperations"), exports);
|
|
|
69
69
|
__exportStar(require("./browser-support.service"), exports);
|
|
70
70
|
__exportStar(require("./scrollbarWidth"), exports);
|
|
71
71
|
__exportStar(require("./hasRelativeStackingContext"), exports);
|
|
72
|
+
__exportStar(require("./icons/Icon"), exports);
|
|
73
|
+
__exportStar(require("./icons/FontIcon"), exports);
|
|
74
|
+
__exportStar(require("./icons/SvgIcon"), exports);
|
|
75
|
+
__exportStar(require("./icons/models/flip"), exports);
|
|
76
|
+
__exportStar(require("./icons/models/size"), exports);
|
|
77
|
+
__exportStar(require("./icons/models/theme-color"), exports);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-common",
|
|
3
3
|
"description": "Kendo UI for Vue Common Utilities package",
|
|
4
|
-
"version": "3.7.4-dev.
|
|
4
|
+
"version": "3.7.4-dev.202212300853",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
20
|
"test": "cd ../../ && npm run test -- --testPathPattern=/packages/utils/.*",
|
|
21
|
-
"start": "gulp start",
|
|
21
|
+
"start": "gulp start --notsc",
|
|
22
22
|
"build-package": "gulp build-package"
|
|
23
23
|
},
|
|
24
24
|
"keywords": [
|
|
@@ -39,7 +39,8 @@
|
|
|
39
39
|
"@progress/kendo-draggable": "^3.0.1"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@progress/kendo-licensing": "^1.1.0"
|
|
42
|
+
"@progress/kendo-licensing": "^1.1.0",
|
|
43
|
+
"@progress/kendo-svg-icons": "^0.6.0"
|
|
43
44
|
},
|
|
44
45
|
"author": "Progress",
|
|
45
46
|
"license": "SEE LICENSE IN LICENSE.md",
|