@cypress-design/react-statusicon 1.0.2 → 2.0.0-next.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/.turbo/turbo-build.log +4 -2
- package/CHANGELOG.md +11 -0
- package/dist/index.es.mjs +593 -111
- package/dist/index.es.mjs.map +1 -1
- package/dist/index.umd.js +749 -267
- package/dist/index.umd.js.map +1 -1
- package/package.json +4 -4
- package/rollup.config.mjs +1 -1
package/dist/index.umd.js
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var React = require('react');
|
|
6
|
-
var iconRegistry = require('@cypress-design/icon-registry');
|
|
7
6
|
var reactIcon = require('@cypress-design/react-icon');
|
|
7
|
+
var iconRegistry = require('@cypress-design/icon-registry');
|
|
8
8
|
|
|
9
9
|
function _interopNamespaceDefault(e) {
|
|
10
10
|
var n = Object.create(null);
|
|
@@ -83,382 +83,864 @@ typeof SuppressedError === "function" ? SuppressedError : function (error, suppr
|
|
|
83
83
|
/**
|
|
84
84
|
* This "const" is used to create the list of statuses
|
|
85
85
|
*/
|
|
86
|
+
// <tw-keep strokeColor="indigo-400" />
|
|
87
|
+
// <tw-keep fillColor="gray-100" />
|
|
88
|
+
// <tw-keep strokeColor="red-400" />
|
|
89
|
+
// <tw-keep fillColor="gray-100" />
|
|
90
|
+
// <tw-keep strokeColor="jade-400" />
|
|
91
|
+
// <tw-keep strokeColor="red-400" />
|
|
92
|
+
// <tw-keep strokeColor="gray-100" />
|
|
93
|
+
// <tw-keep strokeColor="gray-300" />
|
|
94
|
+
// <tw-keep strokeColor="gray-300" />
|
|
95
|
+
// <tw-keep strokeColor="orange-400" />
|
|
96
|
+
// <tw-keep strokeColor="orange-400" />
|
|
97
|
+
// <tw-keep strokeColor="orange-400" />
|
|
98
|
+
// <tw-keep strokeColor="orange-400" />
|
|
99
|
+
// <tw-keep strokeColor="gray-400" />
|
|
100
|
+
// <tw-keep strokeColor="gray-300" />
|
|
101
|
+
/**
|
|
102
|
+
* The status we have here, allow us to check the validity of the constant
|
|
103
|
+
*/
|
|
104
|
+
|
|
105
|
+
|
|
86
106
|
const constStatuses = {
|
|
87
107
|
running: {
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
// <tw-keep fillColor="gray-100" />
|
|
93
|
-
secondaryColor: 'gray-100',
|
|
108
|
+
color: "indigo-400",
|
|
109
|
+
use: "Runs, specs, groups, test results",
|
|
110
|
+
variants: ["outline"],
|
|
111
|
+
secondaryColor: "gray-100"
|
|
94
112
|
},
|
|
113
|
+
|
|
95
114
|
failing: {
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
// <tw-keep fillColor="gray-100" />
|
|
101
|
-
secondaryColor: 'gray-100',
|
|
115
|
+
color: "red-400",
|
|
116
|
+
use: "Runs, specs, groups, test results",
|
|
117
|
+
variants: ["outline"],
|
|
118
|
+
secondaryColor: "gray-100"
|
|
102
119
|
},
|
|
120
|
+
|
|
103
121
|
passed: {
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
variants: ['outline', 'simple', 'solid'],
|
|
122
|
+
color: "jade-400",
|
|
123
|
+
use: "Runs, specs, groups, test results",
|
|
124
|
+
link: "https://docs.cypress.io/guides/core-concepts/writing-and-organizing-tests#Passed",
|
|
125
|
+
variants: ["outline", "simple", "solid"]
|
|
109
126
|
},
|
|
127
|
+
|
|
110
128
|
failed: {
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
variants: ['outline', 'simple', 'solid'],
|
|
129
|
+
color: "red-400",
|
|
130
|
+
use: "Runs, specs, groups, test results",
|
|
131
|
+
link: "https://docs.cypress.io/guides/core-concepts/writing-and-organizing-tests#Failed",
|
|
132
|
+
variants: ["outline", "simple", "solid"]
|
|
116
133
|
},
|
|
134
|
+
|
|
117
135
|
unclaimed: {
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
variants: ['outline'],
|
|
136
|
+
color: "gray-100",
|
|
137
|
+
use: "Specs",
|
|
138
|
+
variants: ["outline"]
|
|
122
139
|
},
|
|
140
|
+
|
|
123
141
|
placeholder: {
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
variants: ['solid'],
|
|
142
|
+
color: "gray-300",
|
|
143
|
+
use: "Placeholder",
|
|
144
|
+
variants: ["solid"]
|
|
128
145
|
},
|
|
146
|
+
|
|
129
147
|
cancelled: {
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
variants: ['outline', 'solid'],
|
|
148
|
+
color: "gray-300",
|
|
149
|
+
use: "Runs, specs, groups, test results",
|
|
150
|
+
variants: ["outline", "solid"]
|
|
134
151
|
},
|
|
152
|
+
|
|
135
153
|
noTests: {
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
variants: ['outline', 'solid'],
|
|
154
|
+
color: "orange-400",
|
|
155
|
+
use: "Runs, specs, groups",
|
|
156
|
+
variants: ["outline", "solid"]
|
|
140
157
|
},
|
|
158
|
+
|
|
141
159
|
errored: {
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
variants: ['outline', 'solid'],
|
|
160
|
+
color: "orange-400",
|
|
161
|
+
use: "Runs, specs, groups, test results",
|
|
162
|
+
variants: ["outline", "solid"]
|
|
146
163
|
},
|
|
164
|
+
|
|
147
165
|
timedOut: {
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
variants: ['outline', 'solid'],
|
|
166
|
+
color: "orange-400",
|
|
167
|
+
use: "Runs, specs, groups, test results",
|
|
168
|
+
variants: ["outline", "solid"]
|
|
152
169
|
},
|
|
170
|
+
|
|
153
171
|
overLimit: {
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
variants: ['outline', 'solid'],
|
|
172
|
+
color: "orange-400",
|
|
173
|
+
use: "Runs, specs, groups",
|
|
174
|
+
link: "https://docs.cypress.io/faq/questions/dashboard-faq#What-happens-once-I-reach-the-test-results-limit",
|
|
175
|
+
variants: ["outline", "solid"]
|
|
159
176
|
},
|
|
177
|
+
|
|
160
178
|
skipped: {
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
variants: ['outline'],
|
|
179
|
+
color: "gray-400",
|
|
180
|
+
use: "Test results",
|
|
181
|
+
link: "https://docs.cypress.io/guides/core-concepts/writing-and-organizing-tests#Skipped",
|
|
182
|
+
variants: ["outline"]
|
|
166
183
|
},
|
|
184
|
+
|
|
167
185
|
pending: {
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
},
|
|
186
|
+
color: "gray-300",
|
|
187
|
+
use: "Test results",
|
|
188
|
+
link: "https://docs.cypress.io/guides/core-concepts/writing-and-organizing-tests#Pending",
|
|
189
|
+
variants: ["outline"]
|
|
190
|
+
}
|
|
174
191
|
};
|
|
192
|
+
|
|
193
|
+
const statuses$3 = constStatuses;
|
|
194
|
+
|
|
195
|
+
// THIS FILE IS AUTO GENERATED BY build-icons.mjs
|
|
175
196
|
/**
|
|
176
|
-
*
|
|
197
|
+
* All possible prop names for icon colors
|
|
177
198
|
*/
|
|
178
|
-
const
|
|
199
|
+
const cyStatusCancelledOutlineX16 = {
|
|
200
|
+
name: 'statusCancelledOutlineX16',
|
|
201
|
+
data: `<path d="M6 8h4m-2 6A6 6 0 1 1 8 2a6 6 0 0 1 0 12Z" stroke="currentColor" class="icon-dark" stroke-width="2" stroke-linecap="round"/>`,
|
|
202
|
+
};
|
|
203
|
+
const cyStatusCancelledOutlineX24 = {
|
|
204
|
+
name: 'statusCancelledOutlineX24',
|
|
205
|
+
data: `<path d="M8 12h8m-4 9a9 9 0 1 1 0-18 9 9 0 0 1 0 18Z" stroke="currentColor" class="icon-dark" stroke-width="2" stroke-linecap="round"/>`,
|
|
206
|
+
};
|
|
207
|
+
const cyStatusCancelledSimpleX4 = {
|
|
208
|
+
name: 'statusCancelledSimpleX4',
|
|
209
|
+
data: `<circle cx="2" cy="2" r="1.5" stroke="currentColor" class="icon-dark"/>`,
|
|
210
|
+
};
|
|
211
|
+
const cyStatusCancelledSimpleX8 = {
|
|
212
|
+
name: 'statusCancelledSimpleX8',
|
|
213
|
+
data: `<path d="M1 4h6" stroke="currentColor" class="icon-dark" stroke-width="2" stroke-linecap="round"/>`,
|
|
214
|
+
};
|
|
215
|
+
const cyStatusCancelledSolidX12 = {
|
|
216
|
+
name: 'statusCancelledSolidX12',
|
|
217
|
+
data: `<path d="M2 6h8" stroke="currentColor" class="icon-dark" stroke-width="2" stroke-linecap="round"/>`,
|
|
218
|
+
};
|
|
219
|
+
const cyStatusCancelledSolidX16 = {
|
|
220
|
+
name: 'statusCancelledSolidX16',
|
|
221
|
+
data: `<path fill-rule="evenodd" clip-rule="evenodd" d="M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8Zm4-1a1 1 0 0 0 0 2h6a1 1 0 1 0 0-2H5Z" fill="#AFB3C7"/>`,
|
|
222
|
+
};
|
|
223
|
+
const cyStatusCancelledSolidX24 = {
|
|
224
|
+
name: 'statusCancelledSolidX24',
|
|
225
|
+
data: `<path fill-rule="evenodd" clip-rule="evenodd" d="M2 12c0 5.523 4.477 10 10 10s10-4.477 10-10S17.523 2 12 2 2 6.477 2 12Zm6-1a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2H8Z" fill="#AFB3C7"/>`,
|
|
226
|
+
};
|
|
227
|
+
const cyStatusErroredOutlineX16 = {
|
|
228
|
+
name: 'statusErroredOutlineX16',
|
|
229
|
+
data: `<path fill-rule="evenodd" clip-rule="evenodd" d="M2 8a6 6 0 1 1 12 0A6 6 0 0 1 2 8Zm6-8a8 8 0 1 0 0 16A8 8 0 0 0 8 0Zm1 5a1 1 0 0 0-2 0v3a1 1 0 0 0 2 0V5Zm-1 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" fill="currentColor" class="icon-dark"/>`,
|
|
230
|
+
};
|
|
231
|
+
const cyStatusErroredOutlineX24 = {
|
|
232
|
+
name: 'statusErroredOutlineX24',
|
|
233
|
+
data: `<circle cx="12" cy="12" r="9" stroke="currentColor" class="icon-dark" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path fill-rule="evenodd" clip-rule="evenodd" d="M12 7a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1Z" fill="currentColor" class="icon-dark"/><path d="M13 16a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" fill="currentColor" class="icon-dark"/>`,
|
|
234
|
+
};
|
|
235
|
+
const cyStatusErroredSimpleX4 = {
|
|
236
|
+
name: 'statusErroredSimpleX4',
|
|
237
|
+
data: `<circle cx="2" cy="2" r="2" fill="currentColor" class="icon-dark"/>`,
|
|
238
|
+
};
|
|
239
|
+
const cyStatusErroredSimpleX8 = {
|
|
240
|
+
name: 'statusErroredSimpleX8',
|
|
241
|
+
data: `<path fill-rule="evenodd" clip-rule="evenodd" d="M4 0a1 1 0 0 1 1 1v3a1 1 0 0 1-2 0V1a1 1 0 0 1 1-1Z" fill="currentColor" class="icon-dark"/><path d="M5 7a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" fill="currentColor" class="icon-dark"/>`,
|
|
242
|
+
};
|
|
243
|
+
const cyStatusErroredSolidX12 = {
|
|
244
|
+
name: 'statusErroredSolidX12',
|
|
245
|
+
data: `<path fill-rule="evenodd" clip-rule="evenodd" d="M6 1a1 1 0 0 1 1 1v5a1 1 0 0 1-2 0V2a1 1 0 0 1 1-1Z" fill="currentColor" class="icon-dark"/><path d="M7 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" fill="currentColor" class="icon-dark"/>`,
|
|
246
|
+
};
|
|
247
|
+
const cyStatusErroredSolidX16 = {
|
|
248
|
+
name: 'statusErroredSolidX16',
|
|
249
|
+
data: `<path fill-rule="evenodd" clip-rule="evenodd" d="M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14ZM9 5a1 1 0 0 0-2 0v3a1 1 0 0 0 2 0V5Zm-1 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" fill="currentColor" class="icon-dark"/>`,
|
|
250
|
+
};
|
|
251
|
+
const cyStatusErroredSolidX24 = {
|
|
252
|
+
name: 'statusErroredSolidX24',
|
|
253
|
+
data: `<path fill-rule="evenodd" clip-rule="evenodd" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm1-14a1 1 0 1 0-2 0v5a1 1 0 1 0 2 0V8Zm-1 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" fill="currentColor" class="icon-dark"/>`,
|
|
254
|
+
};
|
|
255
|
+
const cyStatusFailedOutlineX16 = {
|
|
256
|
+
name: 'statusFailedOutlineX16',
|
|
257
|
+
data: `<path d="M6.707 5.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm2.586 5.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-4a1 1 0 0 0-1.414-1.414l1.414 1.414ZM5.293 9.293a1 1 0 0 0 1.414 1.414L5.293 9.293ZM13 8a5 5 0 0 1-5 5v2a7 7 0 0 0 7-7h-2Zm-5 5a5 5 0 0 1-5-5H1a7 7 0 0 0 7 7v-2ZM3 8a5 5 0 0 1 5-5V1a7 7 0 0 0-7 7h2Zm5-5a5 5 0 0 1 5 5h2a7 7 0 0 0-7-7v2ZM5.293 6.707l2 2 1.414-1.414-2-2-1.414 1.414Zm2 2 2 2 1.414-1.414-2-2-1.414 1.414Zm2-3.414-2 2 1.414 1.414 2-2-1.414-1.414Zm-2 2-2 2 1.414 1.414 2-2-1.414-1.414Z" fill="currentColor" class="icon-dark"/>`,
|
|
258
|
+
};
|
|
259
|
+
const cyStatusFailedOutlineX24 = {
|
|
260
|
+
name: 'statusFailedOutlineX24',
|
|
261
|
+
data: `<path d="M9.707 8.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm4.586 7.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-6a1 1 0 0 0-1.414-1.414l1.414 1.414Zm-7.414 4.586a1 1 0 1 0 1.414 1.414l-1.414-1.414Zm0-4.586 3 3 1.414-1.414-3-3-1.414 1.414Zm3 3 3 3 1.414-1.414-3-3-1.414 1.414Zm3-4.414-3 3 1.414 1.414 3-3-1.414-1.414Zm-3 3-3 3 1.414 1.414 3-3-1.414-1.414ZM20 12a8 8 0 0 1-8 8v2c5.523 0 10-4.477 10-10h-2Zm-8 8a8 8 0 0 1-8-8H2c0 5.523 4.477 10 10 10v-2Zm-8-8a8 8 0 0 1 8-8V2C6.477 2 2 6.477 2 12h2Zm8-8a8 8 0 0 1 8 8h2c0-5.523-4.477-10-10-10v2Z" fill="currentColor" class="icon-dark"/>`,
|
|
262
|
+
};
|
|
263
|
+
const cyStatusFailedSimpleX12 = {
|
|
264
|
+
name: 'statusFailedSimpleX12',
|
|
265
|
+
data: `<path d="M3.707 2.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm4.586 7.414a1 1 0 0 0 1.414-1.414L8.293 9.707Zm1.414-6a1 1 0 0 0-1.414-1.414l1.414 1.414ZM2.293 8.293a1 1 0 0 0 1.414 1.414L2.293 8.293Zm0-4.586 6 6 1.414-1.414-6-6-1.414 1.414Zm6-1.414-6 6 1.414 1.414 6-6-1.414-1.414Z" fill="currentColor" class="icon-dark"/>`,
|
|
266
|
+
};
|
|
267
|
+
const cyStatusFailedSimpleX16 = {
|
|
268
|
+
name: 'statusFailedSimpleX16',
|
|
269
|
+
data: `<path d="M4.707 3.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm6.586 9.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-8a1 1 0 0 0-1.414-1.414l1.414 1.414Zm-9.414 6.586a1 1 0 1 0 1.414 1.414l-1.414-1.414Zm0-6.586 4 4 1.414-1.414-4-4-1.414 1.414Zm4 4 4 4 1.414-1.414-4-4-1.414 1.414Zm4-5.414-4 4 1.414 1.414 4-4-1.414-1.414Zm-4 4-4 4 1.414 1.414 4-4-1.414-1.414Z" fill="currentColor" class="icon-dark"/>`,
|
|
270
|
+
};
|
|
271
|
+
const cyStatusFailedSimpleX24 = {
|
|
272
|
+
name: 'statusFailedSimpleX24',
|
|
273
|
+
data: `<path d="M6.707 5.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm10.586 13.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-12a1 1 0 0 0-1.414-1.414l1.414 1.414ZM5.293 17.293a1 1 0 1 0 1.414 1.414l-1.414-1.414Zm0-10.586 6 6 1.414-1.414-6-6-1.414 1.414Zm6 6 6 6 1.414-1.414-6-6-1.414 1.414Zm6-7.414-6 6 1.414 1.414 6-6-1.414-1.414Zm-6 6-6 6 1.414 1.414 6-6-1.414-1.414Z" fill="currentColor" class="icon-dark"/>`,
|
|
274
|
+
};
|
|
275
|
+
const cyStatusFailedSimpleX4 = {
|
|
276
|
+
name: 'statusFailedSimpleX4',
|
|
277
|
+
data: `<circle cx="2" cy="2" r="2" fill="currentColor" class="icon-dark"/>`,
|
|
278
|
+
};
|
|
279
|
+
const cyStatusFailedSimpleX8 = {
|
|
280
|
+
name: 'statusFailedSimpleX8',
|
|
281
|
+
data: `<path d="M2.707 1.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm2.586 5.414a1 1 0 0 0 1.414-1.414L5.293 6.707Zm1.414-4a1 1 0 0 0-1.414-1.414l1.414 1.414ZM1.293 5.293a1 1 0 0 0 1.414 1.414L1.293 5.293Zm0-2.586 4 4 1.414-1.414-4-4-1.414 1.414Zm4-1.414-4 4 1.414 1.414 4-4-1.414-1.414Z" fill="currentColor" class="icon-dark"/>`,
|
|
282
|
+
};
|
|
283
|
+
const cyStatusFailedSolidX16 = {
|
|
284
|
+
name: 'statusFailedSolidX16',
|
|
285
|
+
data: `<circle cx="8" cy="8" r="7" fill="currentColor" class="icon-dark"/><path d="M6.707 5.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm2.586 5.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-4a1 1 0 0 0-1.414-1.414l1.414 1.414ZM5.293 9.293a1 1 0 0 0 1.414 1.414L5.293 9.293Zm0-2.586 4 4 1.414-1.414-4-4-1.414 1.414Zm4-1.414-4 4 1.414 1.414 4-4-1.414-1.414Z" fill="#fff"/>`,
|
|
286
|
+
};
|
|
287
|
+
const cyStatusFailedSolidX24 = {
|
|
288
|
+
name: 'statusFailedSolidX24',
|
|
289
|
+
data: `<path fill-rule="evenodd" clip-rule="evenodd" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10ZM9.707 8.293a1 1 0 0 0-1.414 1.414L10.586 12l-2.293 2.293a1 1 0 1 0 1.414 1.414L12 13.414l2.293 2.293a1 1 0 0 0 1.414-1.414L13.414 12l2.293-2.293a1 1 0 0 0-1.414-1.414L12 10.586 9.707 8.293Z" fill="currentColor" class="icon-dark"/>`,
|
|
290
|
+
};
|
|
291
|
+
const cyStatusFailingOutlineX16 = {
|
|
292
|
+
name: 'statusFailingOutlineX16',
|
|
293
|
+
data: `<path d="M6.707 5.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm2.586 5.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-4a1 1 0 0 0-1.414-1.414l1.414 1.414ZM5.293 9.293a1 1 0 0 0 1.414 1.414L5.293 9.293Zm0-2.586 4 4 1.414-1.414-4-4-1.414 1.414Zm4-1.414-4 4 1.414 1.414 4-4-1.414-1.414Z" fill="currentColor" class="icon-dark"/><circle cx="8" cy="8" r="6" stroke="#E1E3ED" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon-light"/><circle cx="8" cy="8" r="6" stroke="currentColor" stroke-width="2" stroke-dasharray="10 28" stroke-linecap="round" stroke-linejoin="round" class="icon-dark"><animate attributeName="stroke-dashoffset" values="36.6;0" dur="1s" repeatCount="indefinite"/></circle>`,
|
|
294
|
+
};
|
|
295
|
+
const cyStatusFailingOutlineX24 = {
|
|
296
|
+
name: 'statusFailingOutlineX24',
|
|
297
|
+
data: `<path d="M9.707 8.293a1 1 0 0 0-1.414 1.414l1.414-1.414Zm4.586 7.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm1.414-6a1 1 0 0 0-1.414-1.414l1.414 1.414Zm-7.414 4.586a1 1 0 1 0 1.414 1.414l-1.414-1.414Zm0-4.586 3 3 1.414-1.414-3-3-1.414 1.414Zm3 3 3 3 1.414-1.414-3-3-1.414 1.414Zm3-4.414-3 3 1.414 1.414 3-3-1.414-1.414Zm-3 3-3 3 1.414 1.414 3-3-1.414-1.414ZM20 12" fill="currentColor" class="icon-dark"/><circle cx="12" cy="12" r="9" stroke="#E1E3ED" stroke-width="2" class="icon-light"/><circle cx="12" cy="12" r="9" stroke="currentColor" stroke-width="2" stroke-dasharray="15 42" stroke-linecap="round" stroke-linejoin="round" class="icon-dark"><animate attributeName="stroke-dashoffset" values="57;0" dur="1s" repeatCount="indefinite"/></circle>`,
|
|
298
|
+
};
|
|
299
|
+
const cyStatusPassedOutlineX16 = {
|
|
300
|
+
name: 'statusPassedOutlineX16',
|
|
301
|
+
data: `<circle cx="8" cy="8" r="6" stroke="currentColor" class="icon-dark" stroke-width="2"/><path d="m10 6-2.5 4L6 8.5" stroke="currentColor" class="icon-dark" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>`,
|
|
302
|
+
};
|
|
303
|
+
const cyStatusPassedOutlineX24 = {
|
|
304
|
+
name: 'statusPassedOutlineX24',
|
|
305
|
+
data: `<path fill-rule="evenodd" clip-rule="evenodd" d="M4 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-10C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Zm3.864 7.504a1 1 0 0 0-1.728-1.008l-2.846 4.88-1.583-1.583a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.57-.203l3.5-6Z" fill="currentColor" class="icon-dark"/>`,
|
|
306
|
+
};
|
|
307
|
+
const cyStatusPassedSimpleX12 = {
|
|
308
|
+
name: 'statusPassedSimpleX12',
|
|
309
|
+
data: `<path d="M9 3 5 9 3 6.5" stroke="currentColor" class="icon-dark" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>`,
|
|
310
|
+
};
|
|
311
|
+
const cyStatusPassedSimpleX16 = {
|
|
312
|
+
name: 'statusPassedSimpleX16',
|
|
313
|
+
data: `<path d="M4 8.667 7.333 12 12 4" stroke="currentColor" class="icon-dark" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>`,
|
|
314
|
+
};
|
|
315
|
+
const cyStatusPassedSimpleX24 = {
|
|
316
|
+
name: 'statusPassedSimpleX24',
|
|
317
|
+
data: `<path fill-rule="evenodd" clip-rule="evenodd" d="M15.504 8.136a1 1 0 0 1 .36 1.368l-3.5 6a1 1 0 0 1-1.571.203l-2.5-2.5a1 1 0 1 1 1.414-1.414l1.583 1.583 2.846-4.88a1 1 0 0 1 1.368-.36Z" fill="currentColor" class="icon-dark"/>`,
|
|
318
|
+
};
|
|
319
|
+
const cyStatusPassedSimpleX4 = {
|
|
320
|
+
name: 'statusPassedSimpleX4',
|
|
321
|
+
data: `<circle cx="2" cy="2" r="2" fill="currentColor" class="icon-dark"/>`,
|
|
322
|
+
};
|
|
323
|
+
const cyStatusPassedSimpleX8 = {
|
|
324
|
+
name: 'statusPassedSimpleX8',
|
|
325
|
+
data: `<path d="M6 2 3.5 6 2 4.5" stroke="currentColor" class="icon-dark" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>`,
|
|
326
|
+
};
|
|
327
|
+
const cyStatusPassedSolidX16 = {
|
|
328
|
+
name: 'statusPassedSolidX16',
|
|
329
|
+
data: `<circle cx="8" cy="8" r="7" fill="currentColor" class="icon-dark"/><path d="m10 6-2.5 4L6 8.5" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>`,
|
|
330
|
+
};
|
|
331
|
+
const cyStatusPassedSolidX24 = {
|
|
332
|
+
name: 'statusPassedSolidX24',
|
|
333
|
+
data: `<path fill-rule="evenodd" clip-rule="evenodd" d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm3.864-12.496a1 1 0 0 0-1.728-1.008l-2.846 4.88-1.583-1.583a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.57-.203l3.5-6Z" fill="currentColor" class="icon-dark"/>`,
|
|
334
|
+
};
|
|
335
|
+
const cyStatusPendingOutlineX12 = {
|
|
336
|
+
name: 'statusPendingOutlineX12',
|
|
337
|
+
data: `<path d="M4.47 2.305a4 4 0 1 0 3.061 0" stroke="currentColor" class="icon-dark" stroke-width="2"/>`,
|
|
338
|
+
};
|
|
339
|
+
const cyStatusPendingOutlineX16 = {
|
|
340
|
+
name: 'statusPendingOutlineX16',
|
|
341
|
+
data: `<path d="M5.706 2.46a5.998 5.998 0 1 0 4.59 0" stroke="currentColor" class="icon-dark" stroke-width="2"/>`,
|
|
342
|
+
};
|
|
343
|
+
const cyStatusPendingOutlineX24 = {
|
|
344
|
+
name: 'statusPendingOutlineX24',
|
|
345
|
+
data: `<path d="M8.555 3.685a8.999 8.999 0 1 0 6.887 0" stroke="currentColor" class="icon-dark" stroke-width="2"/>`,
|
|
346
|
+
};
|
|
347
|
+
const cyStatusPendingSimpleX4 = {
|
|
348
|
+
name: 'statusPendingSimpleX4',
|
|
349
|
+
data: `<circle cx="2" cy="2" r="1.5" stroke="currentColor" class="icon-dark"/>`,
|
|
350
|
+
};
|
|
351
|
+
const cyStatusPendingSimpleX8 = {
|
|
352
|
+
name: 'statusPendingSimpleX8',
|
|
353
|
+
data: `<path d="M2.852 1.228a3 3 0 1 0 2.296 0" stroke="currentColor" class="icon-dark" stroke-width="2"/>`,
|
|
354
|
+
};
|
|
355
|
+
const cyStatusPlaceholderSimpleX4 = {
|
|
356
|
+
name: 'statusPlaceholderSimpleX4',
|
|
357
|
+
data: `<circle cx="2" cy="2" r="2" fill="currentColor" class="icon-dark"/>`,
|
|
358
|
+
};
|
|
359
|
+
const cyStatusPlaceholderSimpleX8 = {
|
|
360
|
+
name: 'statusPlaceholderSimpleX8',
|
|
361
|
+
data: `<circle cx="4" cy="4" r="3" fill="currentColor" class="icon-dark"/>`,
|
|
362
|
+
};
|
|
363
|
+
const cyStatusPlaceholderSolidX12 = {
|
|
364
|
+
name: 'statusPlaceholderSolidX12',
|
|
365
|
+
data: `<circle cx="6" cy="6" r="5" fill="currentColor" class="icon-dark"/>`,
|
|
366
|
+
};
|
|
367
|
+
const cyStatusPlaceholderSolidX16 = {
|
|
368
|
+
name: 'statusPlaceholderSolidX16',
|
|
369
|
+
data: `<circle cx="8" cy="8" r="7" fill="currentColor" class="icon-dark"/>`,
|
|
370
|
+
};
|
|
371
|
+
const cyStatusPlaceholderSolidX24 = {
|
|
372
|
+
name: 'statusPlaceholderSolidX24',
|
|
373
|
+
data: `<circle cx="12" cy="12" r="10" fill="currentColor" class="icon-dark"/>`,
|
|
374
|
+
};
|
|
375
|
+
const cyStatusQueuedOutlineX12 = {
|
|
376
|
+
name: 'statusQueuedOutlineX12',
|
|
377
|
+
data: `<circle cx="6" cy="6" r="4" stroke="currentColor" class="icon-dark" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>`,
|
|
378
|
+
};
|
|
379
|
+
const cyStatusQueuedOutlineX16 = {
|
|
380
|
+
name: 'statusQueuedOutlineX16',
|
|
381
|
+
data: `<circle cx="8" cy="8" r="6" stroke="currentColor" class="icon-dark" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>`,
|
|
382
|
+
};
|
|
383
|
+
const cyStatusQueuedOutlineX24 = {
|
|
384
|
+
name: 'statusQueuedOutlineX24',
|
|
385
|
+
data: `<circle cx="12" cy="12" r="9" stroke="currentColor" class="icon-dark" stroke-width="2"/>`,
|
|
386
|
+
};
|
|
387
|
+
const cyStatusQueuedSimpleX4 = {
|
|
388
|
+
name: 'statusQueuedSimpleX4',
|
|
389
|
+
data: `<circle cx="2" cy="2" r="1.5" stroke="currentColor" class="icon-dark"/>`,
|
|
390
|
+
};
|
|
391
|
+
const cyStatusQueuedSimpleX8 = {
|
|
392
|
+
name: 'statusQueuedSimpleX8',
|
|
393
|
+
data: `<circle cx="4" cy="4" r="3" stroke="currentColor" class="icon-dark" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>`,
|
|
394
|
+
};
|
|
395
|
+
const cyStatusRunningOutlineX12 = {
|
|
396
|
+
name: 'statusRunningOutlineX12',
|
|
397
|
+
data: `<circle cx="6" cy="6" r="4" stroke="#E1E3ED" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon-light"/><circle cx="6" cy="6" r="4" stroke="currentColor" stroke-width="2" stroke-dasharray="5 20" stroke-linecap="round" stroke-linejoin="round" class="icon-dark"><animate attributeName="stroke-dashoffset" values="25;0" dur="1s" repeatCount="indefinite"/></circle>`,
|
|
398
|
+
};
|
|
399
|
+
const cyStatusRunningOutlineX16 = {
|
|
400
|
+
name: 'statusRunningOutlineX16',
|
|
401
|
+
data: `<circle cx="8" cy="8" r="6" stroke="#E1E3ED" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon-light"/><circle cx="8" cy="8" r="6" stroke="currentColor" stroke-width="2" stroke-dasharray="10 28" stroke-linecap="round" stroke-linejoin="round" class="icon-dark"><animate attributeName="stroke-dashoffset" values="36.6;0" dur="1s" repeatCount="indefinite"/></circle>`,
|
|
402
|
+
};
|
|
403
|
+
const cyStatusRunningOutlineX24 = {
|
|
404
|
+
name: 'statusRunningOutlineX24',
|
|
405
|
+
data: `<circle cx="12" cy="12" r="9" stroke="#E1E3ED" stroke-width="2" class="icon-light"/><circle cx="12" cy="12" r="9" stroke="currentColor" stroke-width="2" stroke-dasharray="15 42" stroke-linecap="round" stroke-linejoin="round" class="icon-dark"><animate attributeName="stroke-dashoffset" values="57;0" dur="1s" repeatCount="indefinite"/></circle>`,
|
|
406
|
+
};
|
|
407
|
+
const cyStatusRunningSimpleX4 = {
|
|
408
|
+
name: 'statusRunningSimpleX4',
|
|
409
|
+
data: `<circle cx="2" cy="2" r="1.5" fill="#C5C9FD" stroke="currentColor" class="icon-dark-stroke icon-light-fill"><animate attributeName="stroke-width" values="2;1;2" dur="1.5s" repeatCount="indefinite"/><animate attributeName="r" values="1;1.5;1" dur="1.5s" repeatCount="indefinite"/></circle>`,
|
|
410
|
+
};
|
|
411
|
+
const cyStatusRunningSimpleX8 = {
|
|
412
|
+
name: 'statusRunningSimpleX8',
|
|
413
|
+
data: `<circle cx="4" cy="4" r="3" stroke="#E1E3ED" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon-light"/><circle cx="4" cy="4" r="3" stroke="currentColor" stroke-width="2" stroke-dasharray="5 14" stroke-linecap="round" stroke-linejoin="round" class="icon-dark"><animate attributeName="stroke-dashoffset" values="18.3;0" dur="1s" repeatCount="indefinite"/></circle>`,
|
|
414
|
+
};
|
|
415
|
+
const cyStatusSkippedOutlineX12 = {
|
|
416
|
+
name: 'statusSkippedOutlineX12',
|
|
417
|
+
data: `<path d="M3.172 8.828a4 4 0 0 0 5.656-5.656M3.172 8.828a4 4 0 0 1 5.656-5.656M3.172 8.828l5.656-5.656" stroke="currentColor" class="icon-dark" stroke-width="2"/>`,
|
|
418
|
+
};
|
|
419
|
+
const cyStatusSkippedOutlineX16 = {
|
|
420
|
+
name: 'statusSkippedOutlineX16',
|
|
421
|
+
data: `<path d="M3.757 12.243a6 6 0 1 0 8.486-8.486m-8.486 8.486a6 6 0 1 1 8.486-8.486m-8.486 8.486 8.486-8.486" stroke="currentColor" class="icon-dark" stroke-width="2"/>`,
|
|
422
|
+
};
|
|
423
|
+
const cyStatusSkippedOutlineX24 = {
|
|
424
|
+
name: 'statusSkippedOutlineX24',
|
|
425
|
+
data: `<path d="M5.636 18.364A9 9 0 0 0 18.364 5.636M5.636 18.364A9 9 0 0 1 18.364 5.636M5.636 18.364 18.364 5.636" stroke="currentColor" class="icon-dark" stroke-width="2"/>`,
|
|
426
|
+
};
|
|
427
|
+
const cyStatusSkippedSimpleX4 = {
|
|
428
|
+
name: 'statusSkippedSimpleX4',
|
|
429
|
+
data: `<circle cx="2" cy="2" r="1.5" stroke="currentColor" class="icon-dark"/>`,
|
|
430
|
+
};
|
|
431
|
+
const cyStatusSkippedSimpleX8 = {
|
|
432
|
+
name: 'statusSkippedSimpleX8',
|
|
433
|
+
data: `<path d="M1.879 6.121A3 3 0 0 0 6.12 1.88M1.88 6.12A3 3 0 1 1 6.12 1.88M1.88 6.12 6.12 1.88" stroke="currentColor" class="icon-dark" stroke-width="2"/>`,
|
|
434
|
+
};
|
|
435
|
+
|
|
436
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
437
|
+
var e = new Error(message);
|
|
438
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
439
|
+
};
|
|
440
|
+
|
|
441
|
+
/** Detect free variable `global` from Node.js. */
|
|
442
|
+
var freeGlobal = typeof global == 'object' && global && global.Object === Object && global;
|
|
443
|
+
|
|
444
|
+
/** Detect free variable `self`. */
|
|
445
|
+
var freeSelf = typeof self == 'object' && self && self.Object === Object && self;
|
|
446
|
+
|
|
447
|
+
/** Used as a reference to the global object. */
|
|
448
|
+
var root = freeGlobal || freeSelf || Function('return this')();
|
|
449
|
+
|
|
450
|
+
/** Built-in value references. */
|
|
451
|
+
var Symbol = root.Symbol;
|
|
452
|
+
|
|
453
|
+
/** Built-in value references. */
|
|
454
|
+
Symbol ? Symbol.toStringTag : undefined;
|
|
455
|
+
|
|
456
|
+
/** Built-in value references. */
|
|
457
|
+
Symbol ? Symbol.toStringTag : undefined;
|
|
458
|
+
|
|
459
|
+
/** Used to convert symbols to primitives and strings. */
|
|
460
|
+
var symbolProto = Symbol ? Symbol.prototype : undefined;
|
|
461
|
+
symbolProto ? symbolProto.toString : undefined;
|
|
462
|
+
const cyColors = {
|
|
463
|
+
jade: {
|
|
464
|
+
50: '#E4FBF2',
|
|
465
|
+
100: '#C2F1DE',
|
|
466
|
+
200: '#A3E7CB',
|
|
467
|
+
300: '#69D3A7',
|
|
468
|
+
400: '#1FA971',
|
|
469
|
+
500: '#00814D',
|
|
470
|
+
600: '#005F39',
|
|
471
|
+
700: '#00442A',
|
|
472
|
+
800: '#003220',
|
|
473
|
+
900: '#00291B',
|
|
474
|
+
1000: '#00261A',
|
|
475
|
+
},
|
|
476
|
+
red: {
|
|
477
|
+
50: '#FBEFF1',
|
|
478
|
+
100: '#FAD9DF',
|
|
479
|
+
200: '#F8C4CD',
|
|
480
|
+
300: '#F59AA9',
|
|
481
|
+
400: '#E45770',
|
|
482
|
+
500: '#C62B49',
|
|
483
|
+
600: '#9F1331',
|
|
484
|
+
700: '#7A0723',
|
|
485
|
+
800: '#5E021B',
|
|
486
|
+
900: '#4F0018',
|
|
487
|
+
1000: '#490018',
|
|
488
|
+
},
|
|
489
|
+
orange: {
|
|
490
|
+
50: '#F5F4D7',
|
|
491
|
+
100: '#F3ECB3',
|
|
492
|
+
200: '#F1E08F',
|
|
493
|
+
300: '#EDBB4A',
|
|
494
|
+
400: '#DB7903',
|
|
495
|
+
500: '#BD5800',
|
|
496
|
+
600: '#963F00',
|
|
497
|
+
700: '#702C00',
|
|
498
|
+
800: '#521F00',
|
|
499
|
+
900: '#411800',
|
|
500
|
+
1000: '#391500',
|
|
501
|
+
},
|
|
502
|
+
indigo: {
|
|
503
|
+
50: '#F0F1FF',
|
|
504
|
+
100: '#DADDFE',
|
|
505
|
+
200: '#C5C9FD',
|
|
506
|
+
300: '#9AA2FC',
|
|
507
|
+
400: '#6470F3',
|
|
508
|
+
500: '#4956E3',
|
|
509
|
+
600: '#3A46CC',
|
|
510
|
+
700: '#2F3AB0',
|
|
511
|
+
800: '#252E8F',
|
|
512
|
+
900: '#1C236D',
|
|
513
|
+
1000: '#151A50',
|
|
514
|
+
},
|
|
515
|
+
gray: {
|
|
516
|
+
25: '#FAFAFC',
|
|
517
|
+
50: '#F3F4FA',
|
|
518
|
+
100: '#E1E3ED',
|
|
519
|
+
200: '#D0D2E0',
|
|
520
|
+
300: '#BFC2D4',
|
|
521
|
+
400: '#AFB3C7',
|
|
522
|
+
500: '#9095AD',
|
|
523
|
+
600: '#747994',
|
|
524
|
+
700: '#5A5F7A',
|
|
525
|
+
800: '#434861',
|
|
526
|
+
900: '#2E3247',
|
|
527
|
+
950: '#25283C',
|
|
528
|
+
1000: '#1B1E2E',
|
|
529
|
+
},
|
|
530
|
+
teal: {
|
|
531
|
+
50: '#E0F6FA',
|
|
532
|
+
100: '#B7E7F0',
|
|
533
|
+
200: '#90D9E6',
|
|
534
|
+
300: '#4BBFD2',
|
|
535
|
+
400: '#0097A8',
|
|
536
|
+
500: '#007780',
|
|
537
|
+
600: '#00595D',
|
|
538
|
+
700: '#004143',
|
|
539
|
+
800: '#003131',
|
|
540
|
+
900: '#002828',
|
|
541
|
+
1000: '#002525',
|
|
542
|
+
},
|
|
543
|
+
purple: {
|
|
544
|
+
50: '#F5F0FB',
|
|
545
|
+
100: '#E9DDFA',
|
|
546
|
+
200: '#DECBF8',
|
|
547
|
+
300: '#C8A7F5',
|
|
548
|
+
400: '#A06CE4',
|
|
549
|
+
500: '#7F43C9',
|
|
550
|
+
600: '#632AA6',
|
|
551
|
+
700: '#4B1A83',
|
|
552
|
+
800: '#3B1268',
|
|
553
|
+
900: '#320E58',
|
|
554
|
+
1000: '#2F0C52',
|
|
555
|
+
},
|
|
556
|
+
green: {
|
|
557
|
+
50: '#F5F5D0',
|
|
558
|
+
100: '#E7E8AB',
|
|
559
|
+
200: '#DADC89',
|
|
560
|
+
300: '#BDC44D',
|
|
561
|
+
400: '#849706',
|
|
562
|
+
500: '#5B7100',
|
|
563
|
+
600: '#405500',
|
|
564
|
+
700: '#2E4000',
|
|
565
|
+
800: '#233200',
|
|
566
|
+
900: '#1C2A00',
|
|
567
|
+
1000: '#192500',
|
|
568
|
+
},
|
|
569
|
+
fuchsia: {
|
|
570
|
+
50: '#FAEFFB',
|
|
571
|
+
100: '#F7DAF9',
|
|
572
|
+
200: '#F3C6F8',
|
|
573
|
+
300: '#ED9FF4',
|
|
574
|
+
400: '#D65FE3',
|
|
575
|
+
500: '#B735C7',
|
|
576
|
+
600: '#901CA2',
|
|
577
|
+
700: '#6C0F7E',
|
|
578
|
+
800: '#510862',
|
|
579
|
+
900: '#400651',
|
|
580
|
+
1000: '#39054A',
|
|
581
|
+
},
|
|
582
|
+
magenta: {
|
|
583
|
+
50: '#FCEEF5',
|
|
584
|
+
100: '#FADAEA',
|
|
585
|
+
200: '#F9C5DF',
|
|
586
|
+
300: '#F69ECA',
|
|
587
|
+
400: '#E45DA3',
|
|
588
|
+
500: '#C53282',
|
|
589
|
+
600: '#9C1964',
|
|
590
|
+
700: '#750C4D',
|
|
591
|
+
800: '#59063D',
|
|
592
|
+
900: '#490435',
|
|
593
|
+
1000: '#420333',
|
|
594
|
+
},
|
|
595
|
+
};
|
|
596
|
+
({
|
|
597
|
+
// TODO: are these actual concepts from the design system?
|
|
598
|
+
primary: Object.assign(Object.assign({}, cyColors.indigo), { DEFAULT: cyColors.indigo[500] }),
|
|
599
|
+
secondary: Object.assign(Object.assign({}, cyColors.indigo), { DEFAULT: cyColors.indigo[50] }),
|
|
600
|
+
error: Object.assign(Object.assign({}, cyColors.red), { DEFAULT: cyColors.red[400] }),
|
|
601
|
+
caution: Object.assign(Object.assign({}, cyColors.red), { DEFAULT: cyColors.red[500] }),
|
|
602
|
+
info: Object.assign(Object.assign({}, cyColors.indigo), { DEFAULT: cyColors.indigo[500] }),
|
|
603
|
+
warning: Object.assign(Object.assign({}, cyColors.orange), { DEFAULT: cyColors.orange[500] }),
|
|
604
|
+
'warning-light': Object.assign(Object.assign({}, cyColors.orange), { DEFAULT: cyColors.orange[400] }),
|
|
605
|
+
success: Object.assign(Object.assign({}, cyColors.jade), { DEFAULT: cyColors.jade[400] }),
|
|
606
|
+
'success-light': Object.assign(Object.assign({}, cyColors.jade), { DEFAULT: cyColors.jade[300] }),
|
|
607
|
+
confirm: Object.assign(Object.assign({}, cyColors.jade), { DEFAULT: cyColors.jade[500] }),
|
|
608
|
+
'body-gray': Object.assign(Object.assign({}, cyColors.gray), { DEFAULT: cyColors.gray[600] }),
|
|
609
|
+
});
|
|
179
610
|
|
|
180
611
|
const statuses$2 = {
|
|
181
612
|
running: {
|
|
182
|
-
size4Icon:
|
|
183
|
-
size8Icon:
|
|
184
|
-
size12Icon:
|
|
185
|
-
size16Icon:
|
|
186
|
-
size24Icon:
|
|
613
|
+
size4Icon: cyStatusRunningSimpleX4,
|
|
614
|
+
size8Icon: cyStatusRunningSimpleX8,
|
|
615
|
+
size12Icon: cyStatusRunningOutlineX12,
|
|
616
|
+
size16Icon: cyStatusRunningOutlineX16,
|
|
617
|
+
size24Icon: cyStatusRunningOutlineX24
|
|
187
618
|
},
|
|
619
|
+
|
|
188
620
|
failing: {
|
|
189
|
-
size4Icon:
|
|
190
|
-
size8Icon:
|
|
191
|
-
size12Icon:
|
|
192
|
-
size16Icon:
|
|
193
|
-
size24Icon:
|
|
621
|
+
size4Icon: cyStatusRunningSimpleX4,
|
|
622
|
+
size8Icon: cyStatusRunningSimpleX8,
|
|
623
|
+
size12Icon: cyStatusRunningOutlineX12,
|
|
624
|
+
size16Icon: cyStatusFailingOutlineX16,
|
|
625
|
+
size24Icon: cyStatusFailingOutlineX24
|
|
194
626
|
},
|
|
627
|
+
|
|
195
628
|
passed: {
|
|
196
|
-
size4Icon:
|
|
197
|
-
size8Icon:
|
|
198
|
-
size12Icon:
|
|
199
|
-
size16Icon:
|
|
200
|
-
size24Icon:
|
|
629
|
+
size4Icon: cyStatusPassedSimpleX4,
|
|
630
|
+
size8Icon: cyStatusPassedSimpleX8,
|
|
631
|
+
size12Icon: cyStatusPassedSimpleX12,
|
|
632
|
+
size16Icon: cyStatusPassedOutlineX16,
|
|
633
|
+
size24Icon: cyStatusPassedOutlineX24
|
|
201
634
|
},
|
|
635
|
+
|
|
202
636
|
failed: {
|
|
203
|
-
size4Icon:
|
|
204
|
-
size8Icon:
|
|
205
|
-
size12Icon:
|
|
206
|
-
size16Icon:
|
|
207
|
-
size24Icon:
|
|
637
|
+
size4Icon: cyStatusFailedSimpleX4,
|
|
638
|
+
size8Icon: cyStatusFailedSimpleX8,
|
|
639
|
+
size12Icon: cyStatusFailedSimpleX12,
|
|
640
|
+
size16Icon: cyStatusFailedOutlineX16,
|
|
641
|
+
size24Icon: cyStatusFailedOutlineX24
|
|
208
642
|
},
|
|
643
|
+
|
|
209
644
|
unclaimed: {
|
|
210
|
-
size4Icon:
|
|
211
|
-
size8Icon:
|
|
212
|
-
size12Icon:
|
|
213
|
-
size16Icon:
|
|
214
|
-
size24Icon:
|
|
645
|
+
size4Icon: cyStatusQueuedSimpleX4,
|
|
646
|
+
size8Icon: cyStatusQueuedSimpleX8,
|
|
647
|
+
size12Icon: cyStatusQueuedOutlineX12,
|
|
648
|
+
size16Icon: cyStatusQueuedOutlineX16,
|
|
649
|
+
size24Icon: cyStatusQueuedOutlineX24
|
|
215
650
|
},
|
|
651
|
+
|
|
216
652
|
placeholder: {
|
|
217
|
-
size4Icon:
|
|
218
|
-
size8Icon:
|
|
219
|
-
size12Icon:
|
|
220
|
-
size16Icon:
|
|
221
|
-
size24Icon:
|
|
653
|
+
size4Icon: cyStatusPlaceholderSimpleX4,
|
|
654
|
+
size8Icon: cyStatusPlaceholderSimpleX8,
|
|
655
|
+
size12Icon: cyStatusPlaceholderSolidX12,
|
|
656
|
+
size16Icon: cyStatusPlaceholderSolidX16,
|
|
657
|
+
size24Icon: cyStatusPlaceholderSolidX24
|
|
222
658
|
},
|
|
659
|
+
|
|
223
660
|
cancelled: {
|
|
224
|
-
size4Icon:
|
|
225
|
-
size8Icon:
|
|
226
|
-
size12Icon:
|
|
227
|
-
size16Icon:
|
|
228
|
-
size24Icon:
|
|
661
|
+
size4Icon: cyStatusCancelledSimpleX4,
|
|
662
|
+
size8Icon: cyStatusCancelledSimpleX8,
|
|
663
|
+
size12Icon: cyStatusCancelledSolidX12,
|
|
664
|
+
size16Icon: cyStatusCancelledOutlineX16,
|
|
665
|
+
size24Icon: cyStatusCancelledOutlineX24
|
|
229
666
|
},
|
|
667
|
+
|
|
230
668
|
noTests: {
|
|
231
|
-
size4Icon:
|
|
232
|
-
size8Icon:
|
|
233
|
-
size12Icon:
|
|
234
|
-
size16Icon:
|
|
235
|
-
size24Icon:
|
|
669
|
+
size4Icon: cyStatusErroredSimpleX4,
|
|
670
|
+
size8Icon: cyStatusErroredSimpleX8,
|
|
671
|
+
size12Icon: cyStatusErroredSolidX12,
|
|
672
|
+
size16Icon: cyStatusErroredOutlineX16,
|
|
673
|
+
size24Icon: cyStatusErroredOutlineX24
|
|
236
674
|
},
|
|
675
|
+
|
|
237
676
|
errored: {
|
|
238
|
-
size4Icon:
|
|
239
|
-
size8Icon:
|
|
240
|
-
size12Icon:
|
|
241
|
-
size16Icon:
|
|
242
|
-
size24Icon:
|
|
677
|
+
size4Icon: cyStatusErroredSimpleX4,
|
|
678
|
+
size8Icon: cyStatusErroredSimpleX8,
|
|
679
|
+
size12Icon: cyStatusErroredSolidX12,
|
|
680
|
+
size16Icon: cyStatusErroredOutlineX16,
|
|
681
|
+
size24Icon: cyStatusErroredOutlineX24
|
|
243
682
|
},
|
|
683
|
+
|
|
244
684
|
timedOut: {
|
|
245
|
-
size4Icon:
|
|
246
|
-
size8Icon:
|
|
247
|
-
size12Icon:
|
|
248
|
-
size16Icon:
|
|
249
|
-
size24Icon:
|
|
685
|
+
size4Icon: cyStatusErroredSimpleX4,
|
|
686
|
+
size8Icon: cyStatusErroredSimpleX8,
|
|
687
|
+
size12Icon: cyStatusErroredSolidX12,
|
|
688
|
+
size16Icon: cyStatusErroredOutlineX16,
|
|
689
|
+
size24Icon: cyStatusErroredOutlineX24
|
|
250
690
|
},
|
|
691
|
+
|
|
251
692
|
overLimit: {
|
|
252
|
-
size4Icon:
|
|
253
|
-
size8Icon:
|
|
254
|
-
size12Icon:
|
|
255
|
-
size16Icon:
|
|
256
|
-
size24Icon:
|
|
693
|
+
size4Icon: cyStatusErroredSimpleX4,
|
|
694
|
+
size8Icon: cyStatusErroredSimpleX8,
|
|
695
|
+
size12Icon: cyStatusErroredSolidX12,
|
|
696
|
+
size16Icon: cyStatusErroredOutlineX16,
|
|
697
|
+
size24Icon: cyStatusErroredOutlineX24
|
|
257
698
|
},
|
|
699
|
+
|
|
258
700
|
skipped: {
|
|
259
|
-
size4Icon:
|
|
260
|
-
size8Icon:
|
|
261
|
-
size12Icon:
|
|
262
|
-
size16Icon:
|
|
263
|
-
size24Icon:
|
|
701
|
+
size4Icon: cyStatusSkippedSimpleX4,
|
|
702
|
+
size8Icon: cyStatusSkippedSimpleX8,
|
|
703
|
+
size12Icon: cyStatusSkippedOutlineX12,
|
|
704
|
+
size16Icon: cyStatusSkippedOutlineX16,
|
|
705
|
+
size24Icon: cyStatusSkippedOutlineX24
|
|
264
706
|
},
|
|
707
|
+
|
|
265
708
|
pending: {
|
|
266
|
-
size4Icon:
|
|
267
|
-
size8Icon:
|
|
268
|
-
size12Icon:
|
|
269
|
-
size16Icon:
|
|
270
|
-
size24Icon:
|
|
271
|
-
}
|
|
709
|
+
size4Icon: cyStatusPendingSimpleX4,
|
|
710
|
+
size8Icon: cyStatusPendingSimpleX8,
|
|
711
|
+
size12Icon: cyStatusPendingOutlineX12,
|
|
712
|
+
size16Icon: cyStatusPendingOutlineX16,
|
|
713
|
+
size24Icon: cyStatusPendingOutlineX24
|
|
714
|
+
}
|
|
272
715
|
};
|
|
273
716
|
|
|
717
|
+
var outlineImports = /*#__PURE__*/Object.freeze({
|
|
718
|
+
__proto__: null,
|
|
719
|
+
statuses: statuses$2
|
|
720
|
+
});
|
|
721
|
+
|
|
274
722
|
const statuses$1 = {
|
|
275
723
|
running: {
|
|
276
|
-
size4Icon:
|
|
277
|
-
size8Icon:
|
|
278
|
-
size12Icon:
|
|
279
|
-
size16Icon:
|
|
280
|
-
size24Icon:
|
|
724
|
+
size4Icon: cyStatusRunningSimpleX4,
|
|
725
|
+
size8Icon: cyStatusRunningSimpleX8,
|
|
726
|
+
size12Icon: cyStatusRunningOutlineX12,
|
|
727
|
+
size16Icon: cyStatusRunningOutlineX16,
|
|
728
|
+
size24Icon: cyStatusRunningOutlineX24
|
|
281
729
|
},
|
|
730
|
+
|
|
282
731
|
failing: {
|
|
283
|
-
size4Icon:
|
|
284
|
-
size8Icon:
|
|
285
|
-
size12Icon:
|
|
286
|
-
size16Icon:
|
|
287
|
-
size24Icon:
|
|
732
|
+
size4Icon: cyStatusRunningSimpleX4,
|
|
733
|
+
size8Icon: cyStatusRunningSimpleX8,
|
|
734
|
+
size12Icon: cyStatusRunningOutlineX12,
|
|
735
|
+
size16Icon: cyStatusFailingOutlineX16,
|
|
736
|
+
size24Icon: cyStatusFailingOutlineX24
|
|
288
737
|
},
|
|
738
|
+
|
|
289
739
|
passed: {
|
|
290
|
-
size4Icon:
|
|
291
|
-
size8Icon:
|
|
292
|
-
size12Icon:
|
|
293
|
-
size16Icon:
|
|
294
|
-
size24Icon:
|
|
740
|
+
size4Icon: cyStatusPassedSimpleX4,
|
|
741
|
+
size8Icon: cyStatusPassedSimpleX8,
|
|
742
|
+
size12Icon: cyStatusPassedSimpleX12,
|
|
743
|
+
size16Icon: cyStatusPassedSimpleX16,
|
|
744
|
+
size24Icon: cyStatusPassedSimpleX24
|
|
295
745
|
},
|
|
746
|
+
|
|
296
747
|
failed: {
|
|
297
|
-
size4Icon:
|
|
298
|
-
size8Icon:
|
|
299
|
-
size12Icon:
|
|
300
|
-
size16Icon:
|
|
301
|
-
size24Icon:
|
|
748
|
+
size4Icon: cyStatusFailedSimpleX4,
|
|
749
|
+
size8Icon: cyStatusFailedSimpleX8,
|
|
750
|
+
size12Icon: cyStatusFailedSimpleX12,
|
|
751
|
+
size16Icon: cyStatusFailedSimpleX16,
|
|
752
|
+
size24Icon: cyStatusFailedSimpleX24
|
|
302
753
|
},
|
|
754
|
+
|
|
303
755
|
unclaimed: {
|
|
304
|
-
size4Icon:
|
|
305
|
-
size8Icon:
|
|
306
|
-
size12Icon:
|
|
307
|
-
size16Icon:
|
|
308
|
-
size24Icon:
|
|
756
|
+
size4Icon: cyStatusQueuedSimpleX4,
|
|
757
|
+
size8Icon: cyStatusQueuedSimpleX8,
|
|
758
|
+
size12Icon: cyStatusQueuedOutlineX12,
|
|
759
|
+
size16Icon: cyStatusQueuedOutlineX16,
|
|
760
|
+
size24Icon: cyStatusQueuedOutlineX24
|
|
309
761
|
},
|
|
762
|
+
|
|
310
763
|
placeholder: {
|
|
311
|
-
size4Icon:
|
|
312
|
-
size8Icon:
|
|
313
|
-
size12Icon:
|
|
314
|
-
size16Icon:
|
|
315
|
-
size24Icon:
|
|
764
|
+
size4Icon: cyStatusPlaceholderSimpleX4,
|
|
765
|
+
size8Icon: cyStatusPlaceholderSimpleX8,
|
|
766
|
+
size12Icon: cyStatusPlaceholderSolidX12,
|
|
767
|
+
size16Icon: cyStatusPlaceholderSolidX16,
|
|
768
|
+
size24Icon: cyStatusPlaceholderSolidX24
|
|
316
769
|
},
|
|
770
|
+
|
|
317
771
|
cancelled: {
|
|
318
|
-
size4Icon:
|
|
319
|
-
size8Icon:
|
|
320
|
-
size12Icon:
|
|
321
|
-
size16Icon:
|
|
322
|
-
size24Icon:
|
|
772
|
+
size4Icon: cyStatusCancelledSimpleX4,
|
|
773
|
+
size8Icon: cyStatusCancelledSimpleX8,
|
|
774
|
+
size12Icon: cyStatusCancelledSolidX12,
|
|
775
|
+
size16Icon: cyStatusCancelledSolidX16,
|
|
776
|
+
size24Icon: cyStatusCancelledSolidX24
|
|
323
777
|
},
|
|
778
|
+
|
|
324
779
|
noTests: {
|
|
325
|
-
size4Icon:
|
|
326
|
-
size8Icon:
|
|
327
|
-
size12Icon:
|
|
328
|
-
size16Icon:
|
|
329
|
-
size24Icon:
|
|
780
|
+
size4Icon: cyStatusErroredSimpleX4,
|
|
781
|
+
size8Icon: cyStatusErroredSimpleX8,
|
|
782
|
+
size12Icon: cyStatusErroredSolidX12,
|
|
783
|
+
size16Icon: cyStatusErroredSolidX16,
|
|
784
|
+
size24Icon: cyStatusErroredSolidX24
|
|
330
785
|
},
|
|
786
|
+
|
|
331
787
|
errored: {
|
|
332
|
-
size4Icon:
|
|
333
|
-
size8Icon:
|
|
334
|
-
size12Icon:
|
|
335
|
-
size16Icon:
|
|
336
|
-
size24Icon:
|
|
788
|
+
size4Icon: cyStatusErroredSimpleX4,
|
|
789
|
+
size8Icon: cyStatusErroredSimpleX8,
|
|
790
|
+
size12Icon: cyStatusErroredSolidX12,
|
|
791
|
+
size16Icon: cyStatusErroredSolidX16,
|
|
792
|
+
size24Icon: cyStatusErroredSolidX24
|
|
337
793
|
},
|
|
794
|
+
|
|
338
795
|
timedOut: {
|
|
339
|
-
size4Icon:
|
|
340
|
-
size8Icon:
|
|
341
|
-
size12Icon:
|
|
342
|
-
size16Icon:
|
|
343
|
-
size24Icon:
|
|
796
|
+
size4Icon: cyStatusErroredSimpleX4,
|
|
797
|
+
size8Icon: cyStatusErroredSimpleX8,
|
|
798
|
+
size12Icon: cyStatusErroredSolidX12,
|
|
799
|
+
size16Icon: cyStatusErroredSolidX16,
|
|
800
|
+
size24Icon: cyStatusErroredSolidX24
|
|
344
801
|
},
|
|
802
|
+
|
|
345
803
|
overLimit: {
|
|
346
|
-
size4Icon:
|
|
347
|
-
size8Icon:
|
|
348
|
-
size12Icon:
|
|
349
|
-
size16Icon:
|
|
350
|
-
size24Icon:
|
|
804
|
+
size4Icon: cyStatusErroredSimpleX4,
|
|
805
|
+
size8Icon: cyStatusErroredSimpleX8,
|
|
806
|
+
size12Icon: cyStatusErroredSolidX12,
|
|
807
|
+
size16Icon: cyStatusErroredSolidX16,
|
|
808
|
+
size24Icon: cyStatusErroredSolidX24
|
|
351
809
|
},
|
|
810
|
+
|
|
352
811
|
skipped: {
|
|
353
|
-
size4Icon:
|
|
354
|
-
size8Icon:
|
|
355
|
-
size12Icon:
|
|
356
|
-
size16Icon:
|
|
357
|
-
size24Icon:
|
|
812
|
+
size4Icon: cyStatusSkippedSimpleX4,
|
|
813
|
+
size8Icon: cyStatusSkippedSimpleX8,
|
|
814
|
+
size12Icon: cyStatusSkippedOutlineX12,
|
|
815
|
+
size16Icon: cyStatusSkippedOutlineX16,
|
|
816
|
+
size24Icon: cyStatusSkippedOutlineX24
|
|
358
817
|
},
|
|
818
|
+
|
|
359
819
|
pending: {
|
|
360
|
-
size4Icon:
|
|
361
|
-
size8Icon:
|
|
362
|
-
size12Icon:
|
|
363
|
-
size16Icon:
|
|
364
|
-
size24Icon:
|
|
365
|
-
}
|
|
820
|
+
size4Icon: cyStatusPendingSimpleX4,
|
|
821
|
+
size8Icon: cyStatusPendingSimpleX8,
|
|
822
|
+
size12Icon: cyStatusPendingOutlineX12,
|
|
823
|
+
size16Icon: cyStatusPendingOutlineX16,
|
|
824
|
+
size24Icon: cyStatusPendingOutlineX24
|
|
825
|
+
}
|
|
366
826
|
};
|
|
367
827
|
|
|
828
|
+
var simpleImports = /*#__PURE__*/Object.freeze({
|
|
829
|
+
__proto__: null,
|
|
830
|
+
statuses: statuses$1
|
|
831
|
+
});
|
|
832
|
+
|
|
368
833
|
const statuses = {
|
|
369
834
|
running: {
|
|
370
|
-
size4Icon:
|
|
371
|
-
size8Icon:
|
|
372
|
-
size12Icon:
|
|
373
|
-
size16Icon:
|
|
374
|
-
size24Icon:
|
|
835
|
+
size4Icon: cyStatusRunningSimpleX4,
|
|
836
|
+
size8Icon: cyStatusRunningSimpleX8,
|
|
837
|
+
size12Icon: cyStatusRunningOutlineX12,
|
|
838
|
+
size16Icon: cyStatusRunningOutlineX16,
|
|
839
|
+
size24Icon: cyStatusRunningOutlineX24
|
|
375
840
|
},
|
|
841
|
+
|
|
376
842
|
failing: {
|
|
377
|
-
size4Icon:
|
|
378
|
-
size8Icon:
|
|
379
|
-
size12Icon:
|
|
380
|
-
size16Icon:
|
|
381
|
-
size24Icon:
|
|
843
|
+
size4Icon: cyStatusRunningSimpleX4,
|
|
844
|
+
size8Icon: cyStatusRunningSimpleX8,
|
|
845
|
+
size12Icon: cyStatusRunningOutlineX12,
|
|
846
|
+
size16Icon: cyStatusFailingOutlineX16,
|
|
847
|
+
size24Icon: cyStatusFailingOutlineX24
|
|
382
848
|
},
|
|
849
|
+
|
|
383
850
|
passed: {
|
|
384
|
-
size4Icon:
|
|
385
|
-
size8Icon:
|
|
386
|
-
size12Icon:
|
|
387
|
-
size16Icon:
|
|
388
|
-
size24Icon:
|
|
851
|
+
size4Icon: cyStatusPassedSimpleX4,
|
|
852
|
+
size8Icon: cyStatusPassedSimpleX8,
|
|
853
|
+
size12Icon: cyStatusPassedSimpleX12,
|
|
854
|
+
size16Icon: cyStatusPassedSolidX16,
|
|
855
|
+
size24Icon: cyStatusPassedSolidX24
|
|
389
856
|
},
|
|
857
|
+
|
|
390
858
|
failed: {
|
|
391
|
-
size4Icon:
|
|
392
|
-
size8Icon:
|
|
393
|
-
size12Icon:
|
|
394
|
-
size16Icon:
|
|
395
|
-
size24Icon:
|
|
859
|
+
size4Icon: cyStatusFailedSimpleX4,
|
|
860
|
+
size8Icon: cyStatusFailedSimpleX8,
|
|
861
|
+
size12Icon: cyStatusFailedSimpleX12,
|
|
862
|
+
size16Icon: cyStatusFailedSolidX16,
|
|
863
|
+
size24Icon: cyStatusFailedSolidX24
|
|
396
864
|
},
|
|
865
|
+
|
|
397
866
|
unclaimed: {
|
|
398
|
-
size4Icon:
|
|
399
|
-
size8Icon:
|
|
400
|
-
size12Icon:
|
|
401
|
-
size16Icon:
|
|
402
|
-
size24Icon:
|
|
867
|
+
size4Icon: cyStatusQueuedSimpleX4,
|
|
868
|
+
size8Icon: cyStatusQueuedSimpleX8,
|
|
869
|
+
size12Icon: cyStatusQueuedOutlineX12,
|
|
870
|
+
size16Icon: cyStatusQueuedOutlineX16,
|
|
871
|
+
size24Icon: cyStatusQueuedOutlineX24
|
|
403
872
|
},
|
|
873
|
+
|
|
404
874
|
placeholder: {
|
|
405
|
-
size4Icon:
|
|
406
|
-
size8Icon:
|
|
407
|
-
size12Icon:
|
|
408
|
-
size16Icon:
|
|
409
|
-
size24Icon:
|
|
875
|
+
size4Icon: cyStatusPlaceholderSimpleX4,
|
|
876
|
+
size8Icon: cyStatusPlaceholderSimpleX8,
|
|
877
|
+
size12Icon: cyStatusPlaceholderSolidX12,
|
|
878
|
+
size16Icon: cyStatusPlaceholderSolidX16,
|
|
879
|
+
size24Icon: cyStatusPlaceholderSolidX24
|
|
410
880
|
},
|
|
881
|
+
|
|
411
882
|
cancelled: {
|
|
412
|
-
size4Icon:
|
|
413
|
-
size8Icon:
|
|
414
|
-
size12Icon:
|
|
415
|
-
size16Icon:
|
|
416
|
-
size24Icon:
|
|
883
|
+
size4Icon: cyStatusCancelledSimpleX4,
|
|
884
|
+
size8Icon: cyStatusCancelledSimpleX8,
|
|
885
|
+
size12Icon: cyStatusCancelledSolidX12,
|
|
886
|
+
size16Icon: cyStatusCancelledSolidX16,
|
|
887
|
+
size24Icon: cyStatusCancelledSolidX24
|
|
417
888
|
},
|
|
889
|
+
|
|
418
890
|
noTests: {
|
|
419
|
-
size4Icon:
|
|
420
|
-
size8Icon:
|
|
421
|
-
size12Icon:
|
|
422
|
-
size16Icon:
|
|
423
|
-
size24Icon:
|
|
891
|
+
size4Icon: cyStatusErroredSimpleX4,
|
|
892
|
+
size8Icon: cyStatusErroredSimpleX8,
|
|
893
|
+
size12Icon: cyStatusErroredSolidX12,
|
|
894
|
+
size16Icon: cyStatusErroredSolidX16,
|
|
895
|
+
size24Icon: cyStatusErroredSolidX24
|
|
424
896
|
},
|
|
897
|
+
|
|
425
898
|
errored: {
|
|
426
|
-
size4Icon:
|
|
427
|
-
size8Icon:
|
|
428
|
-
size12Icon:
|
|
429
|
-
size16Icon:
|
|
430
|
-
size24Icon:
|
|
899
|
+
size4Icon: cyStatusErroredSimpleX4,
|
|
900
|
+
size8Icon: cyStatusErroredSimpleX8,
|
|
901
|
+
size12Icon: cyStatusErroredSolidX12,
|
|
902
|
+
size16Icon: cyStatusErroredSolidX16,
|
|
903
|
+
size24Icon: cyStatusErroredSolidX24
|
|
431
904
|
},
|
|
905
|
+
|
|
432
906
|
timedOut: {
|
|
433
|
-
size4Icon:
|
|
434
|
-
size8Icon:
|
|
435
|
-
size12Icon:
|
|
436
|
-
size16Icon:
|
|
437
|
-
size24Icon:
|
|
907
|
+
size4Icon: cyStatusErroredSimpleX4,
|
|
908
|
+
size8Icon: cyStatusErroredSimpleX8,
|
|
909
|
+
size12Icon: cyStatusErroredSolidX12,
|
|
910
|
+
size16Icon: cyStatusErroredSolidX16,
|
|
911
|
+
size24Icon: cyStatusErroredSolidX24
|
|
438
912
|
},
|
|
913
|
+
|
|
439
914
|
overLimit: {
|
|
440
|
-
size4Icon:
|
|
441
|
-
size8Icon:
|
|
442
|
-
size12Icon:
|
|
443
|
-
size16Icon:
|
|
444
|
-
size24Icon:
|
|
915
|
+
size4Icon: cyStatusErroredSimpleX4,
|
|
916
|
+
size8Icon: cyStatusErroredSimpleX8,
|
|
917
|
+
size12Icon: cyStatusErroredSolidX12,
|
|
918
|
+
size16Icon: cyStatusErroredSolidX16,
|
|
919
|
+
size24Icon: cyStatusErroredSolidX24
|
|
445
920
|
},
|
|
921
|
+
|
|
446
922
|
skipped: {
|
|
447
|
-
size4Icon:
|
|
448
|
-
size8Icon:
|
|
449
|
-
size12Icon:
|
|
450
|
-
size16Icon:
|
|
451
|
-
size24Icon:
|
|
923
|
+
size4Icon: cyStatusSkippedSimpleX4,
|
|
924
|
+
size8Icon: cyStatusSkippedSimpleX8,
|
|
925
|
+
size12Icon: cyStatusSkippedOutlineX12,
|
|
926
|
+
size16Icon: cyStatusSkippedOutlineX16,
|
|
927
|
+
size24Icon: cyStatusSkippedOutlineX24
|
|
452
928
|
},
|
|
929
|
+
|
|
453
930
|
pending: {
|
|
454
|
-
size4Icon:
|
|
455
|
-
size8Icon:
|
|
456
|
-
size12Icon:
|
|
457
|
-
size16Icon:
|
|
458
|
-
size24Icon:
|
|
459
|
-
}
|
|
931
|
+
size4Icon: cyStatusPendingSimpleX4,
|
|
932
|
+
size8Icon: cyStatusPendingSimpleX8,
|
|
933
|
+
size12Icon: cyStatusPendingOutlineX12,
|
|
934
|
+
size16Icon: cyStatusPendingOutlineX16,
|
|
935
|
+
size24Icon: cyStatusPendingOutlineX24
|
|
936
|
+
}
|
|
460
937
|
};
|
|
461
938
|
|
|
939
|
+
var solidImports = /*#__PURE__*/Object.freeze({
|
|
940
|
+
__proto__: null,
|
|
941
|
+
statuses: statuses
|
|
942
|
+
});
|
|
943
|
+
|
|
462
944
|
var compileProps = function (_a) {
|
|
463
945
|
var status = _a.status, statuses = _a.statuses, className = _a.className, size = _a.size, variantName = _a.variantName;
|
|
464
946
|
var statusInfo = status ? statuses[status] : statuses.placeholder;
|
|
@@ -483,7 +965,7 @@ var OutlineStatusIcon = function (_a) {
|
|
|
483
965
|
var _b = _a.size, size = _b === void 0 ? '24' : _b, _c = _a.status, status = _c === void 0 ? 'placeholder' : _c, rest = __rest(_a, ["size", "status"]);
|
|
484
966
|
return React__namespace.createElement('svg', __assign(__assign({}, rest), compileProps({
|
|
485
967
|
status: status,
|
|
486
|
-
statuses: statuses
|
|
968
|
+
statuses: outlineImports.statuses,
|
|
487
969
|
className: rest.className,
|
|
488
970
|
size: size,
|
|
489
971
|
variantName: 'outline',
|
|
@@ -494,7 +976,7 @@ var SimpleStatusIcon = function (_a) {
|
|
|
494
976
|
var _b = _a.size, size = _b === void 0 ? '24' : _b, _c = _a.status, status = _c === void 0 ? 'placeholder' : _c, rest = __rest(_a, ["size", "status"]);
|
|
495
977
|
return React__namespace.createElement('svg', __assign(__assign({}, rest), compileProps({
|
|
496
978
|
status: status,
|
|
497
|
-
statuses: statuses
|
|
979
|
+
statuses: simpleImports.statuses,
|
|
498
980
|
className: rest.className,
|
|
499
981
|
size: size,
|
|
500
982
|
variantName: 'simple',
|
|
@@ -505,7 +987,7 @@ var SolidStatusIcon = function (_a) {
|
|
|
505
987
|
var _b = _a.size, size = _b === void 0 ? '24' : _b, _c = _a.status, status = _c === void 0 ? 'placeholder' : _c, rest = __rest(_a, ["size", "status"]);
|
|
506
988
|
return React__namespace.createElement('svg', __assign(__assign({}, rest), compileProps({
|
|
507
989
|
status: status,
|
|
508
|
-
statuses: statuses,
|
|
990
|
+
statuses: solidImports.statuses,
|
|
509
991
|
className: rest.className,
|
|
510
992
|
size: size,
|
|
511
993
|
variantName: 'solid',
|
|
@@ -529,4 +1011,4 @@ exports.SolidStatusIcon = SolidStatusIcon;
|
|
|
529
1011
|
exports.default = StatusIcon;
|
|
530
1012
|
//# sourceMappingURL=index.umd.js.map
|
|
531
1013
|
|
|
532
|
-
/* <wind-keep class="outline inline-block
|
|
1014
|
+
/* <wind-keep class="outline inline-block"> */
|