@nu-art/ts-styles 0.201.42 → 0.201.44
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/icons/icons.d.ts +19 -18
- package/package.json +2 -2
package/icons/icons.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
1
2
|
import { HTMLAttributes } from 'react';
|
|
2
3
|
export type IconStyle = {
|
|
3
4
|
color: string;
|
|
@@ -9,74 +10,74 @@ export type IconData = {
|
|
|
9
10
|
ratio: number;
|
|
10
11
|
value: string;
|
|
11
12
|
};
|
|
12
|
-
export declare const iconsRenderer: (key: IconData, props: IconAttributes) => JSX.Element;
|
|
13
|
+
export declare const iconsRenderer: (key: IconData, props: IconAttributes) => React.JSX.Element;
|
|
13
14
|
export declare const TS_Icons: {
|
|
14
15
|
Filter: {
|
|
15
|
-
component: (props: IconAttributes) => JSX.Element;
|
|
16
|
+
component: (props: IconAttributes) => React.JSX.Element;
|
|
16
17
|
url: any;
|
|
17
18
|
};
|
|
18
19
|
Search: {
|
|
19
|
-
component: (props: IconAttributes) => JSX.Element;
|
|
20
|
+
component: (props: IconAttributes) => React.JSX.Element;
|
|
20
21
|
url: any;
|
|
21
22
|
};
|
|
22
23
|
attention: {
|
|
23
|
-
component: (props: IconAttributes) => JSX.Element;
|
|
24
|
+
component: (props: IconAttributes) => React.JSX.Element;
|
|
24
25
|
url: any;
|
|
25
26
|
};
|
|
26
27
|
bell: {
|
|
27
|
-
component: (props: IconAttributes) => JSX.Element;
|
|
28
|
+
component: (props: IconAttributes) => React.JSX.Element;
|
|
28
29
|
url: any;
|
|
29
30
|
};
|
|
30
31
|
bin: {
|
|
31
|
-
component: (props: IconAttributes) => JSX.Element;
|
|
32
|
+
component: (props: IconAttributes) => React.JSX.Element;
|
|
32
33
|
url: any;
|
|
33
34
|
};
|
|
34
35
|
more: {
|
|
35
|
-
component: (props: IconAttributes) => JSX.Element;
|
|
36
|
+
component: (props: IconAttributes) => React.JSX.Element;
|
|
36
37
|
url: any;
|
|
37
38
|
};
|
|
38
39
|
treeCollapse: {
|
|
39
|
-
component: (props: IconAttributes) => JSX.Element;
|
|
40
|
+
component: (props: IconAttributes) => React.JSX.Element;
|
|
40
41
|
url: any;
|
|
41
42
|
};
|
|
42
43
|
v: {
|
|
43
|
-
component: (props: IconAttributes) => JSX.Element;
|
|
44
|
+
component: (props: IconAttributes) => React.JSX.Element;
|
|
44
45
|
url: any;
|
|
45
46
|
};
|
|
46
47
|
x: {
|
|
47
|
-
component: (props: IconAttributes) => JSX.Element;
|
|
48
|
+
component: (props: IconAttributes) => React.JSX.Element;
|
|
48
49
|
url: any;
|
|
49
50
|
};
|
|
50
51
|
gear: {
|
|
51
|
-
component: (props: IconAttributes) => JSX.Element;
|
|
52
|
+
component: (props: IconAttributes) => React.JSX.Element;
|
|
52
53
|
url: any;
|
|
53
54
|
};
|
|
54
55
|
information: {
|
|
55
|
-
component: (props: IconAttributes) => JSX.Element;
|
|
56
|
+
component: (props: IconAttributes) => React.JSX.Element;
|
|
56
57
|
url: any;
|
|
57
58
|
};
|
|
58
59
|
filterStop: {
|
|
59
|
-
component: (props: IconAttributes) => JSX.Element;
|
|
60
|
+
component: (props: IconAttributes) => React.JSX.Element;
|
|
60
61
|
url: any;
|
|
61
62
|
};
|
|
62
63
|
clear: {
|
|
63
|
-
component: (props: IconAttributes) => JSX.Element;
|
|
64
|
+
component: (props: IconAttributes) => React.JSX.Element;
|
|
64
65
|
url: any;
|
|
65
66
|
};
|
|
66
67
|
save: {
|
|
67
|
-
component: (props: IconAttributes) => JSX.Element;
|
|
68
|
+
component: (props: IconAttributes) => React.JSX.Element;
|
|
68
69
|
url: any;
|
|
69
70
|
};
|
|
70
71
|
menu: {
|
|
71
|
-
component: (props: IconAttributes) => JSX.Element;
|
|
72
|
+
component: (props: IconAttributes) => React.JSX.Element;
|
|
72
73
|
url: any;
|
|
73
74
|
};
|
|
74
75
|
google: {
|
|
75
|
-
component: (props: IconAttributes) => JSX.Element;
|
|
76
|
+
component: (props: IconAttributes) => React.JSX.Element;
|
|
76
77
|
url: any;
|
|
77
78
|
};
|
|
78
79
|
download: {
|
|
79
|
-
component: (props: IconAttributes) => JSX.Element;
|
|
80
|
+
component: (props: IconAttributes) => React.JSX.Element;
|
|
80
81
|
url: any;
|
|
81
82
|
};
|
|
82
83
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nu-art/ts-styles",
|
|
3
|
-
"version": "0.201.
|
|
3
|
+
"version": "0.201.44",
|
|
4
4
|
"author": "nu-art",
|
|
5
5
|
"description": "Styles by Cipher",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"linkDirectory": true
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@nu-art/ts-common": "0.201.
|
|
16
|
+
"@nu-art/ts-common": "0.201.44",
|
|
17
17
|
"react": "^18.2.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|