@ds-mo/icons 6.1.1 → 6.2.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/agent.d.ts +25 -0
- package/dist/agent.json +182 -0
- package/dist/agent.mjs +183 -0
- package/dist/icons/WifiHorizontal.d.ts +2 -0
- package/dist/icons/{WiFiHorizontal.mjs → WifiHorizontal.mjs} +3 -3
- package/dist/icons/{WiFiTower.d.ts → WifiTower.d.ts} +1 -1
- package/dist/icons/{WiFiTower.mjs → WifiTower.mjs} +3 -3
- package/dist/icons/index.d.ts +2 -2
- package/dist/icons/index.mjs +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +2 -2
- package/dist/meta.d.ts +11 -0
- package/dist/meta.json +128 -11
- package/dist/sprite.svg +2 -2
- package/dist/svg/WifiHorizontal.d.ts +1 -0
- package/dist/svg/{WiFiHorizontal.mjs → WifiHorizontal.mjs} +1 -1
- package/dist/svg/WifiTower.d.ts +1 -0
- package/dist/svg/{WiFiTower.mjs → WifiTower.mjs} +1 -1
- package/dist/svg/index.d.ts +2 -2
- package/dist/svg/index.mjs +2 -2
- package/package.json +16 -3
- package/dist/icons/WiFiHorizontal.d.ts +0 -2
- package/dist/svg/WiFiHorizontal.d.ts +0 -1
- package/dist/svg/WiFiTower.d.ts +0 -1
package/dist/agent.d.ts
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export interface IconAgentEntry {
|
|
2
|
+
name: string;
|
|
3
|
+
category: string;
|
|
4
|
+
kebab: string;
|
|
5
|
+
aliases: string[];
|
|
6
|
+
concepts: string[];
|
|
7
|
+
roles: string[];
|
|
8
|
+
useWhen: string[];
|
|
9
|
+
avoidWhen: string[];
|
|
10
|
+
related?: string[];
|
|
11
|
+
variantOf?: string;
|
|
12
|
+
status: 'experimental' | 'stable' | 'deprecated' | 'removed';
|
|
13
|
+
replacedBy?: string;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export interface IconAgentManifest {
|
|
17
|
+
schemaVersion: '1.0.0';
|
|
18
|
+
package: '@ds-mo/icons';
|
|
19
|
+
packageVersion: string;
|
|
20
|
+
kind: 'icons';
|
|
21
|
+
entries: IconAgentEntry[];
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
declare const manifest: IconAgentManifest;
|
|
25
|
+
export default manifest;
|
package/dist/agent.json
ADDED
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": "1.0.0",
|
|
3
|
+
"package": "@ds-mo/icons",
|
|
4
|
+
"packageVersion": "6.2.0",
|
|
5
|
+
"kind": "icons",
|
|
6
|
+
"entries": [
|
|
7
|
+
{
|
|
8
|
+
"name": "Bell",
|
|
9
|
+
"category": "system",
|
|
10
|
+
"kebab": "bell",
|
|
11
|
+
"aliases": [
|
|
12
|
+
"notification",
|
|
13
|
+
"alert",
|
|
14
|
+
"alarm"
|
|
15
|
+
],
|
|
16
|
+
"concepts": [
|
|
17
|
+
"notification"
|
|
18
|
+
],
|
|
19
|
+
"roles": [
|
|
20
|
+
"action",
|
|
21
|
+
"navigation"
|
|
22
|
+
],
|
|
23
|
+
"useWhen": [
|
|
24
|
+
"Opening or representing notifications and alerts."
|
|
25
|
+
],
|
|
26
|
+
"avoidWhen": [
|
|
27
|
+
"Representing validation warnings or errors."
|
|
28
|
+
],
|
|
29
|
+
"related": [
|
|
30
|
+
"BellFilled",
|
|
31
|
+
"BellRinging"
|
|
32
|
+
],
|
|
33
|
+
"status": "stable"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "BellFilled",
|
|
37
|
+
"category": "system",
|
|
38
|
+
"kebab": "bell-filled",
|
|
39
|
+
"aliases": [
|
|
40
|
+
"bell-filled",
|
|
41
|
+
"notification-filled",
|
|
42
|
+
"alert-solid",
|
|
43
|
+
"alarm-solid"
|
|
44
|
+
],
|
|
45
|
+
"concepts": [
|
|
46
|
+
"notification"
|
|
47
|
+
],
|
|
48
|
+
"roles": [
|
|
49
|
+
"status",
|
|
50
|
+
"selected-state"
|
|
51
|
+
],
|
|
52
|
+
"useWhen": [
|
|
53
|
+
"A notification affordance needs a filled or selected visual state."
|
|
54
|
+
],
|
|
55
|
+
"avoidWhen": [
|
|
56
|
+
"The unselected notification action is sufficient."
|
|
57
|
+
],
|
|
58
|
+
"related": [
|
|
59
|
+
"Bell",
|
|
60
|
+
"BellRinging"
|
|
61
|
+
],
|
|
62
|
+
"variantOf": "Bell",
|
|
63
|
+
"status": "stable"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "CheckCircle",
|
|
67
|
+
"category": "system",
|
|
68
|
+
"kebab": "check-circle",
|
|
69
|
+
"aliases": [
|
|
70
|
+
"success",
|
|
71
|
+
"verified",
|
|
72
|
+
"approved"
|
|
73
|
+
],
|
|
74
|
+
"concepts": [
|
|
75
|
+
"success",
|
|
76
|
+
"verified",
|
|
77
|
+
"complete"
|
|
78
|
+
],
|
|
79
|
+
"roles": [
|
|
80
|
+
"status"
|
|
81
|
+
],
|
|
82
|
+
"useWhen": [
|
|
83
|
+
"Representing a successful, verified, approved, or completed state."
|
|
84
|
+
],
|
|
85
|
+
"avoidWhen": [
|
|
86
|
+
"The user is toggling a selectable checkbox control."
|
|
87
|
+
],
|
|
88
|
+
"related": [
|
|
89
|
+
"CheckCircleFilled"
|
|
90
|
+
],
|
|
91
|
+
"status": "stable"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "CheckCircleFilled",
|
|
95
|
+
"category": "system",
|
|
96
|
+
"kebab": "check-circle-filled",
|
|
97
|
+
"aliases": [
|
|
98
|
+
"success-filled",
|
|
99
|
+
"verified-solid",
|
|
100
|
+
"confirmed-selected"
|
|
101
|
+
],
|
|
102
|
+
"concepts": [
|
|
103
|
+
"success",
|
|
104
|
+
"verified",
|
|
105
|
+
"complete"
|
|
106
|
+
],
|
|
107
|
+
"roles": [
|
|
108
|
+
"status",
|
|
109
|
+
"selected-state"
|
|
110
|
+
],
|
|
111
|
+
"useWhen": [
|
|
112
|
+
"A success or completed status needs stronger filled emphasis."
|
|
113
|
+
],
|
|
114
|
+
"avoidWhen": [
|
|
115
|
+
"The user is toggling a selectable checkbox control."
|
|
116
|
+
],
|
|
117
|
+
"related": [
|
|
118
|
+
"CheckCircle"
|
|
119
|
+
],
|
|
120
|
+
"variantOf": "CheckCircle",
|
|
121
|
+
"status": "stable"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"name": "ChevronLeft",
|
|
125
|
+
"category": "system",
|
|
126
|
+
"kebab": "chevron-left",
|
|
127
|
+
"aliases": [
|
|
128
|
+
"back",
|
|
129
|
+
"previous",
|
|
130
|
+
"caret-left"
|
|
131
|
+
],
|
|
132
|
+
"concepts": [
|
|
133
|
+
"previous",
|
|
134
|
+
"back",
|
|
135
|
+
"collapse-left"
|
|
136
|
+
],
|
|
137
|
+
"roles": [
|
|
138
|
+
"navigation",
|
|
139
|
+
"disclosure"
|
|
140
|
+
],
|
|
141
|
+
"useWhen": [
|
|
142
|
+
"Moving backward or collapsing content toward the left."
|
|
143
|
+
],
|
|
144
|
+
"avoidWhen": [
|
|
145
|
+
"A directional arrow represents transfer, movement, or an external link."
|
|
146
|
+
],
|
|
147
|
+
"related": [
|
|
148
|
+
"ChevronRight"
|
|
149
|
+
],
|
|
150
|
+
"status": "stable"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"name": "ChevronRight",
|
|
154
|
+
"category": "system",
|
|
155
|
+
"kebab": "chevron-right",
|
|
156
|
+
"aliases": [
|
|
157
|
+
"next",
|
|
158
|
+
"forward",
|
|
159
|
+
"caret-right"
|
|
160
|
+
],
|
|
161
|
+
"concepts": [
|
|
162
|
+
"next",
|
|
163
|
+
"forward",
|
|
164
|
+
"expand-right"
|
|
165
|
+
],
|
|
166
|
+
"roles": [
|
|
167
|
+
"navigation",
|
|
168
|
+
"disclosure"
|
|
169
|
+
],
|
|
170
|
+
"useWhen": [
|
|
171
|
+
"Moving forward or expanding content toward the right."
|
|
172
|
+
],
|
|
173
|
+
"avoidWhen": [
|
|
174
|
+
"A directional arrow represents transfer, movement, or an external link."
|
|
175
|
+
],
|
|
176
|
+
"related": [
|
|
177
|
+
"ChevronLeft"
|
|
178
|
+
],
|
|
179
|
+
"status": "stable"
|
|
180
|
+
}
|
|
181
|
+
]
|
|
182
|
+
}
|
package/dist/agent.mjs
ADDED
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
const manifest = {
|
|
2
|
+
"schemaVersion": "1.0.0",
|
|
3
|
+
"package": "@ds-mo/icons",
|
|
4
|
+
"packageVersion": "6.2.0",
|
|
5
|
+
"kind": "icons",
|
|
6
|
+
"entries": [
|
|
7
|
+
{
|
|
8
|
+
"name": "Bell",
|
|
9
|
+
"category": "system",
|
|
10
|
+
"kebab": "bell",
|
|
11
|
+
"aliases": [
|
|
12
|
+
"notification",
|
|
13
|
+
"alert",
|
|
14
|
+
"alarm"
|
|
15
|
+
],
|
|
16
|
+
"concepts": [
|
|
17
|
+
"notification"
|
|
18
|
+
],
|
|
19
|
+
"roles": [
|
|
20
|
+
"action",
|
|
21
|
+
"navigation"
|
|
22
|
+
],
|
|
23
|
+
"useWhen": [
|
|
24
|
+
"Opening or representing notifications and alerts."
|
|
25
|
+
],
|
|
26
|
+
"avoidWhen": [
|
|
27
|
+
"Representing validation warnings or errors."
|
|
28
|
+
],
|
|
29
|
+
"related": [
|
|
30
|
+
"BellFilled",
|
|
31
|
+
"BellRinging"
|
|
32
|
+
],
|
|
33
|
+
"status": "stable"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "BellFilled",
|
|
37
|
+
"category": "system",
|
|
38
|
+
"kebab": "bell-filled",
|
|
39
|
+
"aliases": [
|
|
40
|
+
"bell-filled",
|
|
41
|
+
"notification-filled",
|
|
42
|
+
"alert-solid",
|
|
43
|
+
"alarm-solid"
|
|
44
|
+
],
|
|
45
|
+
"concepts": [
|
|
46
|
+
"notification"
|
|
47
|
+
],
|
|
48
|
+
"roles": [
|
|
49
|
+
"status",
|
|
50
|
+
"selected-state"
|
|
51
|
+
],
|
|
52
|
+
"useWhen": [
|
|
53
|
+
"A notification affordance needs a filled or selected visual state."
|
|
54
|
+
],
|
|
55
|
+
"avoidWhen": [
|
|
56
|
+
"The unselected notification action is sufficient."
|
|
57
|
+
],
|
|
58
|
+
"related": [
|
|
59
|
+
"Bell",
|
|
60
|
+
"BellRinging"
|
|
61
|
+
],
|
|
62
|
+
"variantOf": "Bell",
|
|
63
|
+
"status": "stable"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "CheckCircle",
|
|
67
|
+
"category": "system",
|
|
68
|
+
"kebab": "check-circle",
|
|
69
|
+
"aliases": [
|
|
70
|
+
"success",
|
|
71
|
+
"verified",
|
|
72
|
+
"approved"
|
|
73
|
+
],
|
|
74
|
+
"concepts": [
|
|
75
|
+
"success",
|
|
76
|
+
"verified",
|
|
77
|
+
"complete"
|
|
78
|
+
],
|
|
79
|
+
"roles": [
|
|
80
|
+
"status"
|
|
81
|
+
],
|
|
82
|
+
"useWhen": [
|
|
83
|
+
"Representing a successful, verified, approved, or completed state."
|
|
84
|
+
],
|
|
85
|
+
"avoidWhen": [
|
|
86
|
+
"The user is toggling a selectable checkbox control."
|
|
87
|
+
],
|
|
88
|
+
"related": [
|
|
89
|
+
"CheckCircleFilled"
|
|
90
|
+
],
|
|
91
|
+
"status": "stable"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "CheckCircleFilled",
|
|
95
|
+
"category": "system",
|
|
96
|
+
"kebab": "check-circle-filled",
|
|
97
|
+
"aliases": [
|
|
98
|
+
"success-filled",
|
|
99
|
+
"verified-solid",
|
|
100
|
+
"confirmed-selected"
|
|
101
|
+
],
|
|
102
|
+
"concepts": [
|
|
103
|
+
"success",
|
|
104
|
+
"verified",
|
|
105
|
+
"complete"
|
|
106
|
+
],
|
|
107
|
+
"roles": [
|
|
108
|
+
"status",
|
|
109
|
+
"selected-state"
|
|
110
|
+
],
|
|
111
|
+
"useWhen": [
|
|
112
|
+
"A success or completed status needs stronger filled emphasis."
|
|
113
|
+
],
|
|
114
|
+
"avoidWhen": [
|
|
115
|
+
"The user is toggling a selectable checkbox control."
|
|
116
|
+
],
|
|
117
|
+
"related": [
|
|
118
|
+
"CheckCircle"
|
|
119
|
+
],
|
|
120
|
+
"variantOf": "CheckCircle",
|
|
121
|
+
"status": "stable"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"name": "ChevronLeft",
|
|
125
|
+
"category": "system",
|
|
126
|
+
"kebab": "chevron-left",
|
|
127
|
+
"aliases": [
|
|
128
|
+
"back",
|
|
129
|
+
"previous",
|
|
130
|
+
"caret-left"
|
|
131
|
+
],
|
|
132
|
+
"concepts": [
|
|
133
|
+
"previous",
|
|
134
|
+
"back",
|
|
135
|
+
"collapse-left"
|
|
136
|
+
],
|
|
137
|
+
"roles": [
|
|
138
|
+
"navigation",
|
|
139
|
+
"disclosure"
|
|
140
|
+
],
|
|
141
|
+
"useWhen": [
|
|
142
|
+
"Moving backward or collapsing content toward the left."
|
|
143
|
+
],
|
|
144
|
+
"avoidWhen": [
|
|
145
|
+
"A directional arrow represents transfer, movement, or an external link."
|
|
146
|
+
],
|
|
147
|
+
"related": [
|
|
148
|
+
"ChevronRight"
|
|
149
|
+
],
|
|
150
|
+
"status": "stable"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"name": "ChevronRight",
|
|
154
|
+
"category": "system",
|
|
155
|
+
"kebab": "chevron-right",
|
|
156
|
+
"aliases": [
|
|
157
|
+
"next",
|
|
158
|
+
"forward",
|
|
159
|
+
"caret-right"
|
|
160
|
+
],
|
|
161
|
+
"concepts": [
|
|
162
|
+
"next",
|
|
163
|
+
"forward",
|
|
164
|
+
"expand-right"
|
|
165
|
+
],
|
|
166
|
+
"roles": [
|
|
167
|
+
"navigation",
|
|
168
|
+
"disclosure"
|
|
169
|
+
],
|
|
170
|
+
"useWhen": [
|
|
171
|
+
"Moving forward or expanding content toward the right."
|
|
172
|
+
],
|
|
173
|
+
"avoidWhen": [
|
|
174
|
+
"A directional arrow represents transfer, movement, or an external link."
|
|
175
|
+
],
|
|
176
|
+
"related": [
|
|
177
|
+
"ChevronLeft"
|
|
178
|
+
],
|
|
179
|
+
"status": "stable"
|
|
180
|
+
}
|
|
181
|
+
]
|
|
182
|
+
};
|
|
183
|
+
export default manifest;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { createElement } from 'react';
|
|
2
2
|
import { createIcon } from '../createIcon.mjs';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const WifiHorizontal = createIcon('wifi-horizontal', [
|
|
5
5
|
createElement('path', { d: "M1 7.99997C1 10.7404 2.57481 13.1131 4.86883 14.2623L5.31614 13.3677C3.34984 12.3826 2 10.3489 2 7.99997C2 5.651 3.34983 3.6173 5.31614 2.63223L4.86883 1.73761C2.57481 2.88685 1 5.2595 1 7.99997Z", key: "a" }),
|
|
6
6
|
createElement('path', { d: "M10.6839 2.63224C12.6502 3.61731 14 5.651 14 7.99997C14 10.3489 12.6502 12.3826 10.6839 13.3677L11.1312 14.2623C13.4252 13.1131 15 10.7404 15 7.99997C15 5.25951 13.4252 2.88686 11.1312 1.73762L10.6839 2.63224Z", key: "b" }),
|
|
7
7
|
createElement('path', { d: "M4 7.99997C4 9.56596 4.89989 10.9218 6.21076 11.5785L5.76345 12.4731C4.12486 11.6522 3 9.95745 3 7.99997C3 6.0425 4.12486 4.34774 5.76345 3.52686L6.21076 4.42148C4.89989 5.07819 4 6.43399 4 7.99997Z", key: "c" }),
|
|
@@ -9,5 +9,5 @@ const WiFiHorizontal = createIcon('wi-fi-horizontal', [
|
|
|
9
9
|
createElement('path', { d: "M8.00001 9.5C8.82843 9.5 9.50001 8.82843 9.50001 8C9.50001 7.17157 8.82843 6.5 8.00001 6.5C7.17158 6.5 6.50001 7.17157 6.50001 8C6.50001 8.82843 7.17158 9.5 8.00001 9.5Z", key: "e" }),
|
|
10
10
|
]);
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
export {
|
|
12
|
+
WifiHorizontal.displayName = 'WifiHorizontal';
|
|
13
|
+
export { WifiHorizontal };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { IconComponent } from '../createIcon.mjs';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const WifiTower: IconComponent;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { createElement } from 'react';
|
|
2
2
|
import { createIcon } from '../createIcon.mjs';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const WifiTower = createIcon('wifi-tower', [
|
|
5
5
|
createElement('path', { d: "M11 5.00433C11 4.18151 10.6687 3.43606 10.1323 2.89406L10.9027 2.25212C11.5828 2.96917 12 3.93802 12 5.00433C12 6.1089 11.5523 7.1089 10.8284 7.83275L10.1213 7.12565C10.6642 6.58275 11 5.83275 11 5.00433Z", key: "a" }),
|
|
6
6
|
createElement('path', { d: "M5.87868 7.12565C5.33579 6.58275 5 5.83275 5 5.00433C5 4.18151 5.33126 3.43606 5.86768 2.89406L5.09735 2.25212C4.41723 2.96917 4 3.93802 4 5.00433C4 6.1089 4.44771 7.1089 5.17157 7.83275L5.87868 7.12565Z", key: "b" }),
|
|
7
7
|
createElement('path', { d: "M4.46447 8.53986C3.55964 7.63504 3 6.38504 3 5.00433C3 3.69451 3.50365 2.50232 4.32785 1.61087L3.55877 0.969971C2.59028 2.0355 2 3.45098 2 5.00433C2 6.66118 2.67157 8.16118 3.75736 9.24697L4.46447 8.53986Z", key: "c" }),
|
|
@@ -9,5 +9,5 @@ const WiFiTower = createIcon('wi-fi-tower', [
|
|
|
9
9
|
createElement('path', { fillRule: "evenodd", clipRule: "evenodd", d: "M8.78258 5.62694C8.91867 5.45611 9 5.23972 9 5.00433C9 4.45205 8.55228 4.00433 8 4.00433C7.44772 4.00433 7 4.45205 7 5.00433C7 5.23997 7.0815 5.45658 7.21786 5.62749L5.22415 14H6.25211L6.72875 11.9983H9.27144L9.74796 14H10.7759L8.78258 5.62694ZM9.03338 10.9983H6.96688L7.20461 10H8.79571L9.03338 10.9983ZM8.55764 9H7.44274L8.00026 6.6587L8.55764 9Z", key: "e" }),
|
|
10
10
|
]);
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
export {
|
|
12
|
+
WifiTower.displayName = 'WifiTower';
|
|
13
|
+
export { WifiTower };
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -386,8 +386,8 @@ export { WandSparkle } from './WandSparkle.mjs';
|
|
|
386
386
|
export { Waveform } from './Waveform.mjs';
|
|
387
387
|
export { Webhooks } from './Webhooks.mjs';
|
|
388
388
|
export { Whistle } from './Whistle.mjs';
|
|
389
|
-
export {
|
|
390
|
-
export {
|
|
389
|
+
export { WifiHorizontal } from './WifiHorizontal.mjs';
|
|
390
|
+
export { WifiTower } from './WifiTower.mjs';
|
|
391
391
|
export { WifiVertical } from './WifiVertical.mjs';
|
|
392
392
|
export { WifiVerticalFilled } from './WifiVerticalFilled.mjs';
|
|
393
393
|
export { WifiVerticalFilledDisabled } from './WifiVerticalFilledDisabled.mjs';
|
package/dist/icons/index.mjs
CHANGED
|
@@ -386,8 +386,8 @@ export { WandSparkle } from './WandSparkle.mjs';
|
|
|
386
386
|
export { Waveform } from './Waveform.mjs';
|
|
387
387
|
export { Webhooks } from './Webhooks.mjs';
|
|
388
388
|
export { Whistle } from './Whistle.mjs';
|
|
389
|
-
export {
|
|
390
|
-
export {
|
|
389
|
+
export { WifiHorizontal } from './WifiHorizontal.mjs';
|
|
390
|
+
export { WifiTower } from './WifiTower.mjs';
|
|
391
391
|
export { WifiVertical } from './WifiVertical.mjs';
|
|
392
392
|
export { WifiVerticalFilled } from './WifiVerticalFilled.mjs';
|
|
393
393
|
export { WifiVerticalFilledDisabled } from './WifiVerticalFilledDisabled.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -391,8 +391,8 @@ export { WandSparkle } from './icons/WandSparkle.mjs';
|
|
|
391
391
|
export { Waveform } from './icons/Waveform.mjs';
|
|
392
392
|
export { Webhooks } from './icons/Webhooks.mjs';
|
|
393
393
|
export { Whistle } from './icons/Whistle.mjs';
|
|
394
|
-
export {
|
|
395
|
-
export {
|
|
394
|
+
export { WifiHorizontal } from './icons/WifiHorizontal.mjs';
|
|
395
|
+
export { WifiTower } from './icons/WifiTower.mjs';
|
|
396
396
|
export { WifiVertical } from './icons/WifiVertical.mjs';
|
|
397
397
|
export { WifiVerticalFilled } from './icons/WifiVerticalFilled.mjs';
|
|
398
398
|
export { WifiVerticalFilledDisabled } from './icons/WifiVerticalFilledDisabled.mjs';
|
package/dist/index.mjs
CHANGED
|
@@ -389,8 +389,8 @@ export { WandSparkle } from './icons/WandSparkle.mjs';
|
|
|
389
389
|
export { Waveform } from './icons/Waveform.mjs';
|
|
390
390
|
export { Webhooks } from './icons/Webhooks.mjs';
|
|
391
391
|
export { Whistle } from './icons/Whistle.mjs';
|
|
392
|
-
export {
|
|
393
|
-
export {
|
|
392
|
+
export { WifiHorizontal } from './icons/WifiHorizontal.mjs';
|
|
393
|
+
export { WifiTower } from './icons/WifiTower.mjs';
|
|
394
394
|
export { WifiVertical } from './icons/WifiVertical.mjs';
|
|
395
395
|
export { WifiVerticalFilled } from './icons/WifiVerticalFilled.mjs';
|
|
396
396
|
export { WifiVerticalFilledDisabled } from './icons/WifiVerticalFilledDisabled.mjs';
|
package/dist/meta.d.ts
CHANGED
|
@@ -3,10 +3,21 @@ export interface IconMetaEntry {
|
|
|
3
3
|
category: string;
|
|
4
4
|
kebab: string;
|
|
5
5
|
aliases: string[];
|
|
6
|
+
concepts?: string[];
|
|
7
|
+
roles?: string[];
|
|
8
|
+
useWhen?: string[];
|
|
9
|
+
avoidWhen?: string[];
|
|
10
|
+
related?: string[];
|
|
11
|
+
variantOf?: string;
|
|
12
|
+
status?: 'experimental' | 'stable' | 'deprecated' | 'removed';
|
|
13
|
+
replacedBy?: string;
|
|
6
14
|
}
|
|
7
15
|
|
|
8
16
|
export interface IconCategorySummary {
|
|
9
17
|
count: number;
|
|
18
|
+
colorModel: 'monochrome' | 'multicolor' | 'layered';
|
|
19
|
+
motion: 'static' | 'animated';
|
|
20
|
+
/** @deprecated Use colorModel. */
|
|
10
21
|
themeable: boolean;
|
|
11
22
|
}
|
|
12
23
|
|
package/dist/meta.json
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "6.
|
|
2
|
+
"version": "6.2.0",
|
|
3
3
|
"count": 429,
|
|
4
4
|
"categories": {
|
|
5
5
|
"system": {
|
|
6
6
|
"count": 397,
|
|
7
|
+
"colorModel": "monochrome",
|
|
8
|
+
"motion": "static",
|
|
7
9
|
"themeable": true
|
|
8
10
|
},
|
|
9
11
|
"flag": {
|
|
10
12
|
"count": 32,
|
|
13
|
+
"colorModel": "multicolor",
|
|
14
|
+
"motion": "static",
|
|
11
15
|
"themeable": false
|
|
12
16
|
}
|
|
13
17
|
},
|
|
@@ -270,7 +274,25 @@
|
|
|
270
274
|
"notification",
|
|
271
275
|
"alert",
|
|
272
276
|
"alarm"
|
|
273
|
-
]
|
|
277
|
+
],
|
|
278
|
+
"concepts": [
|
|
279
|
+
"notification"
|
|
280
|
+
],
|
|
281
|
+
"roles": [
|
|
282
|
+
"action",
|
|
283
|
+
"navigation"
|
|
284
|
+
],
|
|
285
|
+
"useWhen": [
|
|
286
|
+
"Opening or representing notifications and alerts."
|
|
287
|
+
],
|
|
288
|
+
"avoidWhen": [
|
|
289
|
+
"Representing validation warnings or errors."
|
|
290
|
+
],
|
|
291
|
+
"related": [
|
|
292
|
+
"BellFilled",
|
|
293
|
+
"BellRinging"
|
|
294
|
+
],
|
|
295
|
+
"status": "stable"
|
|
274
296
|
},
|
|
275
297
|
{
|
|
276
298
|
"name": "BellCircle",
|
|
@@ -301,7 +323,26 @@
|
|
|
301
323
|
"notification-filled",
|
|
302
324
|
"alert-solid",
|
|
303
325
|
"alarm-solid"
|
|
304
|
-
]
|
|
326
|
+
],
|
|
327
|
+
"concepts": [
|
|
328
|
+
"notification"
|
|
329
|
+
],
|
|
330
|
+
"roles": [
|
|
331
|
+
"status",
|
|
332
|
+
"selected-state"
|
|
333
|
+
],
|
|
334
|
+
"useWhen": [
|
|
335
|
+
"A notification affordance needs a filled or selected visual state."
|
|
336
|
+
],
|
|
337
|
+
"avoidWhen": [
|
|
338
|
+
"The unselected notification action is sufficient."
|
|
339
|
+
],
|
|
340
|
+
"related": [
|
|
341
|
+
"Bell",
|
|
342
|
+
"BellRinging"
|
|
343
|
+
],
|
|
344
|
+
"variantOf": "Bell",
|
|
345
|
+
"status": "stable"
|
|
305
346
|
},
|
|
306
347
|
{
|
|
307
348
|
"name": "BellRinging",
|
|
@@ -581,7 +622,25 @@
|
|
|
581
622
|
"success",
|
|
582
623
|
"verified",
|
|
583
624
|
"approved"
|
|
584
|
-
]
|
|
625
|
+
],
|
|
626
|
+
"concepts": [
|
|
627
|
+
"success",
|
|
628
|
+
"verified",
|
|
629
|
+
"complete"
|
|
630
|
+
],
|
|
631
|
+
"roles": [
|
|
632
|
+
"status"
|
|
633
|
+
],
|
|
634
|
+
"useWhen": [
|
|
635
|
+
"Representing a successful, verified, approved, or completed state."
|
|
636
|
+
],
|
|
637
|
+
"avoidWhen": [
|
|
638
|
+
"The user is toggling a selectable checkbox control."
|
|
639
|
+
],
|
|
640
|
+
"related": [
|
|
641
|
+
"CheckCircleFilled"
|
|
642
|
+
],
|
|
643
|
+
"status": "stable"
|
|
585
644
|
},
|
|
586
645
|
{
|
|
587
646
|
"name": "CheckCircleFilled",
|
|
@@ -591,7 +650,27 @@
|
|
|
591
650
|
"success-filled",
|
|
592
651
|
"verified-solid",
|
|
593
652
|
"confirmed-selected"
|
|
594
|
-
]
|
|
653
|
+
],
|
|
654
|
+
"concepts": [
|
|
655
|
+
"success",
|
|
656
|
+
"verified",
|
|
657
|
+
"complete"
|
|
658
|
+
],
|
|
659
|
+
"roles": [
|
|
660
|
+
"status",
|
|
661
|
+
"selected-state"
|
|
662
|
+
],
|
|
663
|
+
"useWhen": [
|
|
664
|
+
"A success or completed status needs stronger filled emphasis."
|
|
665
|
+
],
|
|
666
|
+
"avoidWhen": [
|
|
667
|
+
"The user is toggling a selectable checkbox control."
|
|
668
|
+
],
|
|
669
|
+
"related": [
|
|
670
|
+
"CheckCircle"
|
|
671
|
+
],
|
|
672
|
+
"variantOf": "CheckCircle",
|
|
673
|
+
"status": "stable"
|
|
595
674
|
},
|
|
596
675
|
{
|
|
597
676
|
"name": "CheckDouble",
|
|
@@ -621,7 +700,26 @@
|
|
|
621
700
|
"back",
|
|
622
701
|
"previous",
|
|
623
702
|
"caret-left"
|
|
624
|
-
]
|
|
703
|
+
],
|
|
704
|
+
"concepts": [
|
|
705
|
+
"previous",
|
|
706
|
+
"back",
|
|
707
|
+
"collapse-left"
|
|
708
|
+
],
|
|
709
|
+
"roles": [
|
|
710
|
+
"navigation",
|
|
711
|
+
"disclosure"
|
|
712
|
+
],
|
|
713
|
+
"useWhen": [
|
|
714
|
+
"Moving backward or collapsing content toward the left."
|
|
715
|
+
],
|
|
716
|
+
"avoidWhen": [
|
|
717
|
+
"A directional arrow represents transfer, movement, or an external link."
|
|
718
|
+
],
|
|
719
|
+
"related": [
|
|
720
|
+
"ChevronRight"
|
|
721
|
+
],
|
|
722
|
+
"status": "stable"
|
|
625
723
|
},
|
|
626
724
|
{
|
|
627
725
|
"name": "ChevronLeftDouble",
|
|
@@ -641,7 +739,26 @@
|
|
|
641
739
|
"next",
|
|
642
740
|
"forward",
|
|
643
741
|
"caret-right"
|
|
644
|
-
]
|
|
742
|
+
],
|
|
743
|
+
"concepts": [
|
|
744
|
+
"next",
|
|
745
|
+
"forward",
|
|
746
|
+
"expand-right"
|
|
747
|
+
],
|
|
748
|
+
"roles": [
|
|
749
|
+
"navigation",
|
|
750
|
+
"disclosure"
|
|
751
|
+
],
|
|
752
|
+
"useWhen": [
|
|
753
|
+
"Moving forward or expanding content toward the right."
|
|
754
|
+
],
|
|
755
|
+
"avoidWhen": [
|
|
756
|
+
"A directional arrow represents transfer, movement, or an external link."
|
|
757
|
+
],
|
|
758
|
+
"related": [
|
|
759
|
+
"ChevronLeft"
|
|
760
|
+
],
|
|
761
|
+
"status": "stable"
|
|
645
762
|
},
|
|
646
763
|
{
|
|
647
764
|
"name": "ChevronRightDouble",
|
|
@@ -3934,9 +4051,9 @@
|
|
|
3934
4051
|
]
|
|
3935
4052
|
},
|
|
3936
4053
|
{
|
|
3937
|
-
"name": "
|
|
4054
|
+
"name": "WifiHorizontal",
|
|
3938
4055
|
"category": "system",
|
|
3939
|
-
"kebab": "
|
|
4056
|
+
"kebab": "wifi-horizontal",
|
|
3940
4057
|
"aliases": [
|
|
3941
4058
|
"wifi",
|
|
3942
4059
|
"wireless-horizontal",
|
|
@@ -3944,9 +4061,9 @@
|
|
|
3944
4061
|
]
|
|
3945
4062
|
},
|
|
3946
4063
|
{
|
|
3947
|
-
"name": "
|
|
4064
|
+
"name": "WifiTower",
|
|
3948
4065
|
"category": "system",
|
|
3949
|
-
"kebab": "
|
|
4066
|
+
"kebab": "wifi-tower",
|
|
3950
4067
|
"aliases": [
|
|
3951
4068
|
"cell-tower",
|
|
3952
4069
|
"wifi-antenna",
|
package/dist/sprite.svg
CHANGED
|
@@ -1163,10 +1163,10 @@
|
|
|
1163
1163
|
<symbol id="whistle" viewBox="0 0 16 16" fill="currentColor">
|
|
1164
1164
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.60014 1.14819L2.39641 3.35193L5.44202 6.39754C4.11806 7.20249 3.10352 8.70504 3.10352 10.3519C3.10352 12.8372 5.11823 14.8519 7.60352 14.8519C10.0888 14.8519 12.1035 12.8372 12.1035 10.3519C12.1035 9.30338 11.7443 8.33733 11.1425 7.57214L11.1226 7.54685L4.60014 1.14819ZM10.3756 8.21487C10.8322 8.80612 11.1035 9.54667 11.1035 10.3519C11.1035 12.2849 9.53651 13.8519 7.60352 13.8519C5.67052 13.8519 4.10352 12.2849 4.10352 10.3519C4.10352 8.90791 5.16153 7.53036 6.45993 6.99951H6.45264V5.99951H6.45821L3.81062 3.35193L4.60689 2.55567L10.3756 8.21487Z" fill="currentColor"/><path d="M9.10352 2.35193V4.35193H10.1035V2.35193H9.10352Z" fill="currentColor"/><path d="M12.2499 2.99841L10.7499 4.49841L11.457 5.20552L12.957 3.70552L12.2499 2.99841Z" fill="currentColor"/><path d="M11.6035 5.85193H13.6035V6.85193H11.6035V5.85193Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M5.63876 10.3519C5.63876 11.4565 6.53419 12.3519 7.63876 12.3519C8.74333 12.3519 9.63876 11.4565 9.63876 10.3519C9.63876 9.24737 8.74333 8.35194 7.63876 8.35194C6.53419 8.35194 5.63876 9.24737 5.63876 10.3519ZM6.63876 10.3519C6.63876 10.9042 7.08648 11.3519 7.63876 11.3519C8.19105 11.3519 8.63876 10.9042 8.63876 10.3519C8.63876 9.79966 8.19105 9.35194 7.63876 9.35194C7.08648 9.35194 6.63876 9.79966 6.63876 10.3519Z" fill="currentColor"/>
|
|
1165
1165
|
</symbol>
|
|
1166
|
-
<symbol id="
|
|
1166
|
+
<symbol id="wifi-horizontal" viewBox="0 0 16 16" fill="currentColor">
|
|
1167
1167
|
<path d="M1 7.99997C1 10.7404 2.57481 13.1131 4.86883 14.2623L5.31614 13.3677C3.34984 12.3826 2 10.3489 2 7.99997C2 5.651 3.34983 3.6173 5.31614 2.63223L4.86883 1.73761C2.57481 2.88685 1 5.2595 1 7.99997Z" fill="currentColor"/><path d="M10.6839 2.63224C12.6502 3.61731 14 5.651 14 7.99997C14 10.3489 12.6502 12.3826 10.6839 13.3677L11.1312 14.2623C13.4252 13.1131 15 10.7404 15 7.99997C15 5.25951 13.4252 2.88686 11.1312 1.73762L10.6839 2.63224Z" fill="currentColor"/><path d="M4 7.99997C4 9.56596 4.89989 10.9218 6.21076 11.5785L5.76345 12.4731C4.12486 11.6522 3 9.95745 3 7.99997C3 6.0425 4.12486 4.34774 5.76345 3.52686L6.21076 4.42148C4.89989 5.07819 4 6.43399 4 7.99997Z" fill="currentColor"/><path d="M12 7.99997C12 6.434 11.1001 5.0782 9.78925 4.42148L10.2366 3.52686C11.8751 4.34775 13 6.0425 13 7.99997C13 9.95745 11.8751 11.6522 10.2366 12.4731L9.78925 11.5785C11.1001 10.9218 12 9.56595 12 7.99997Z" fill="currentColor"/><path d="M8.00001 9.5C8.82843 9.5 9.50001 8.82843 9.50001 8C9.50001 7.17157 8.82843 6.5 8.00001 6.5C7.17158 6.5 6.50001 7.17157 6.50001 8C6.50001 8.82843 7.17158 9.5 8.00001 9.5Z" fill="currentColor"/>
|
|
1168
1168
|
</symbol>
|
|
1169
|
-
<symbol id="
|
|
1169
|
+
<symbol id="wifi-tower" viewBox="0 0 16 16" fill="currentColor">
|
|
1170
1170
|
<path d="M11 5.00433C11 4.18151 10.6687 3.43606 10.1323 2.89406L10.9027 2.25212C11.5828 2.96917 12 3.93802 12 5.00433C12 6.1089 11.5523 7.1089 10.8284 7.83275L10.1213 7.12565C10.6642 6.58275 11 5.83275 11 5.00433Z" fill="currentColor"/><path d="M5.87868 7.12565C5.33579 6.58275 5 5.83275 5 5.00433C5 4.18151 5.33126 3.43606 5.86768 2.89406L5.09735 2.25212C4.41723 2.96917 4 3.93802 4 5.00433C4 6.1089 4.44771 7.1089 5.17157 7.83275L5.87868 7.12565Z" fill="currentColor"/><path d="M4.46447 8.53986C3.55964 7.63504 3 6.38504 3 5.00433C3 3.69451 3.50365 2.50232 4.32785 1.61087L3.55877 0.969971C2.59028 2.0355 2 3.45098 2 5.00433C2 6.66118 2.67157 8.16118 3.75736 9.24697L4.46447 8.53986Z" fill="currentColor"/><path d="M11.5355 8.53986L12.2426 9.24697C13.3284 8.16118 14 6.66118 14 5.00433C14 3.45098 13.4097 2.0355 12.4412 0.969971L11.6721 1.61087C12.4964 2.50232 13 3.69451 13 5.00433C13 6.38504 12.4404 7.63504 11.5355 8.53986Z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8.78258 5.62694C8.91867 5.45611 9 5.23972 9 5.00433C9 4.45205 8.55228 4.00433 8 4.00433C7.44772 4.00433 7 4.45205 7 5.00433C7 5.23997 7.0815 5.45658 7.21786 5.62749L5.22415 14H6.25211L6.72875 11.9983H9.27144L9.74796 14H10.7759L8.78258 5.62694ZM9.03338 10.9983H6.96688L7.20461 10H8.79571L9.03338 10.9983ZM8.55764 9H7.44274L8.00026 6.6587L8.55764 9Z" fill="currentColor"/>
|
|
1171
1171
|
</symbol>
|
|
1172
1172
|
<symbol id="wifi-vertical" viewBox="0 0 16 16" fill="currentColor">
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const WifiHorizontal: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const
|
|
1
|
+
export const WifiHorizontal = "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M1 7.99997C1 10.7404 2.57481 13.1131 4.86883 14.2623L5.31614 13.3677C3.34984 12.3826 2 10.3489 2 7.99997C2 5.651 3.34983 3.6173 5.31614 2.63223L4.86883 1.73761C2.57481 2.88685 1 5.2595 1 7.99997Z\" fill=\"currentColor\"/><path d=\"M10.6839 2.63224C12.6502 3.61731 14 5.651 14 7.99997C14 10.3489 12.6502 12.3826 10.6839 13.3677L11.1312 14.2623C13.4252 13.1131 15 10.7404 15 7.99997C15 5.25951 13.4252 2.88686 11.1312 1.73762L10.6839 2.63224Z\" fill=\"currentColor\"/><path d=\"M4 7.99997C4 9.56596 4.89989 10.9218 6.21076 11.5785L5.76345 12.4731C4.12486 11.6522 3 9.95745 3 7.99997C3 6.0425 4.12486 4.34774 5.76345 3.52686L6.21076 4.42148C4.89989 5.07819 4 6.43399 4 7.99997Z\" fill=\"currentColor\"/><path d=\"M12 7.99997C12 6.434 11.1001 5.0782 9.78925 4.42148L10.2366 3.52686C11.8751 4.34775 13 6.0425 13 7.99997C13 9.95745 11.8751 11.6522 10.2366 12.4731L9.78925 11.5785C11.1001 10.9218 12 9.56595 12 7.99997Z\" fill=\"currentColor\"/><path d=\"M8.00001 9.5C8.82843 9.5 9.50001 8.82843 9.50001 8C9.50001 7.17157 8.82843 6.5 8.00001 6.5C7.17158 6.5 6.50001 7.17157 6.50001 8C6.50001 8.82843 7.17158 9.5 8.00001 9.5Z\" fill=\"currentColor\"/></svg>";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const WifiTower: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const
|
|
1
|
+
export const WifiTower = "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 5.00433C11 4.18151 10.6687 3.43606 10.1323 2.89406L10.9027 2.25212C11.5828 2.96917 12 3.93802 12 5.00433C12 6.1089 11.5523 7.1089 10.8284 7.83275L10.1213 7.12565C10.6642 6.58275 11 5.83275 11 5.00433Z\" fill=\"currentColor\"/><path d=\"M5.87868 7.12565C5.33579 6.58275 5 5.83275 5 5.00433C5 4.18151 5.33126 3.43606 5.86768 2.89406L5.09735 2.25212C4.41723 2.96917 4 3.93802 4 5.00433C4 6.1089 4.44771 7.1089 5.17157 7.83275L5.87868 7.12565Z\" fill=\"currentColor\"/><path d=\"M4.46447 8.53986C3.55964 7.63504 3 6.38504 3 5.00433C3 3.69451 3.50365 2.50232 4.32785 1.61087L3.55877 0.969971C2.59028 2.0355 2 3.45098 2 5.00433C2 6.66118 2.67157 8.16118 3.75736 9.24697L4.46447 8.53986Z\" fill=\"currentColor\"/><path d=\"M11.5355 8.53986L12.2426 9.24697C13.3284 8.16118 14 6.66118 14 5.00433C14 3.45098 13.4097 2.0355 12.4412 0.969971L11.6721 1.61087C12.4964 2.50232 13 3.69451 13 5.00433C13 6.38504 12.4404 7.63504 11.5355 8.53986Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.78258 5.62694C8.91867 5.45611 9 5.23972 9 5.00433C9 4.45205 8.55228 4.00433 8 4.00433C7.44772 4.00433 7 4.45205 7 5.00433C7 5.23997 7.0815 5.45658 7.21786 5.62749L5.22415 14H6.25211L6.72875 11.9983H9.27144L9.74796 14H10.7759L8.78258 5.62694ZM9.03338 10.9983H6.96688L7.20461 10H8.79571L9.03338 10.9983ZM8.55764 9H7.44274L8.00026 6.6587L8.55764 9Z\" fill=\"currentColor\"/></svg>";
|
package/dist/svg/index.d.ts
CHANGED
|
@@ -386,8 +386,8 @@ export { WandSparkle } from './WandSparkle.mjs';
|
|
|
386
386
|
export { Waveform } from './Waveform.mjs';
|
|
387
387
|
export { Webhooks } from './Webhooks.mjs';
|
|
388
388
|
export { Whistle } from './Whistle.mjs';
|
|
389
|
-
export {
|
|
390
|
-
export {
|
|
389
|
+
export { WifiHorizontal } from './WifiHorizontal.mjs';
|
|
390
|
+
export { WifiTower } from './WifiTower.mjs';
|
|
391
391
|
export { WifiVertical } from './WifiVertical.mjs';
|
|
392
392
|
export { WifiVerticalFilled } from './WifiVerticalFilled.mjs';
|
|
393
393
|
export { WifiVerticalFilledDisabled } from './WifiVerticalFilledDisabled.mjs';
|
package/dist/svg/index.mjs
CHANGED
|
@@ -386,8 +386,8 @@ export { WandSparkle } from './WandSparkle.mjs';
|
|
|
386
386
|
export { Waveform } from './Waveform.mjs';
|
|
387
387
|
export { Webhooks } from './Webhooks.mjs';
|
|
388
388
|
export { Whistle } from './Whistle.mjs';
|
|
389
|
-
export {
|
|
390
|
-
export {
|
|
389
|
+
export { WifiHorizontal } from './WifiHorizontal.mjs';
|
|
390
|
+
export { WifiTower } from './WifiTower.mjs';
|
|
391
391
|
export { WifiVertical } from './WifiVertical.mjs';
|
|
392
392
|
export { WifiVerticalFilled } from './WifiVerticalFilled.mjs';
|
|
393
393
|
export { WifiVerticalFilledDisabled } from './WifiVerticalFilledDisabled.mjs';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ds-mo/icons",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.2.0",
|
|
4
4
|
"description": "IcoMo — 429 SVG icons (397 system icons + 32 country flags) as tree-shakeable React components, framework-agnostic SVG strings, TypeScript definitions, and SVG sprite",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"icons",
|
|
@@ -67,6 +67,12 @@
|
|
|
67
67
|
"default": "./dist/meta.json"
|
|
68
68
|
},
|
|
69
69
|
"./meta.json": "./dist/meta.json",
|
|
70
|
+
"./agent": {
|
|
71
|
+
"import": "./dist/agent.mjs",
|
|
72
|
+
"types": "./dist/agent.d.ts",
|
|
73
|
+
"default": "./dist/agent.json"
|
|
74
|
+
},
|
|
75
|
+
"./agent.json": "./dist/agent.json",
|
|
70
76
|
"./createIcon": {
|
|
71
77
|
"import": "./dist/createIcon.mjs",
|
|
72
78
|
"types": "./dist/createIcon.d.ts"
|
|
@@ -83,11 +89,18 @@
|
|
|
83
89
|
"build": "node scripts/build.mjs",
|
|
84
90
|
"build:docs": "node scripts/build-docs.mjs",
|
|
85
91
|
"build:pdf": "node scripts/generate-pdfs.mjs",
|
|
92
|
+
"validate": "node scripts/validate-source.mjs",
|
|
93
|
+
"test": "node --test tests/*.test.mjs",
|
|
86
94
|
"dev": "node scripts/build.mjs --watch",
|
|
87
95
|
"clean": "rm -rf dist"
|
|
88
96
|
},
|
|
89
97
|
"peerDependencies": {
|
|
90
|
-
"react": "
|
|
98
|
+
"react": "^18 || ^19"
|
|
99
|
+
},
|
|
100
|
+
"peerDependenciesMeta": {
|
|
101
|
+
"react": {
|
|
102
|
+
"optional": true
|
|
103
|
+
}
|
|
91
104
|
},
|
|
92
105
|
"devDependencies": {
|
|
93
106
|
"chokidar": "^5.0.0",
|
|
@@ -95,7 +108,7 @@
|
|
|
95
108
|
"svg-to-pdfkit": "^0.1.8"
|
|
96
109
|
},
|
|
97
110
|
"engines": {
|
|
98
|
-
"node": "
|
|
111
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
99
112
|
},
|
|
100
113
|
"sideEffects": false,
|
|
101
114
|
"publishConfig": {
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const WiFiHorizontal: string;
|
package/dist/svg/WiFiTower.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const WiFiTower: string;
|