@cypress-design/react-statusicon 0.4.7 → 0.4.8
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 +1 -1
- package/CHANGELOG.md +7 -0
- package/dist/compileProps.d.ts +36 -30
- package/dist/compileProps.d.ts.map +1 -1
- package/dist/index.es.mjs +16 -6
- package/dist/index.es.mjs.map +1 -1
- package/dist/index.umd.js +16 -6
- package/dist/index.umd.js.map +1 -1
- package/package.json +4 -4
package/dist/index.umd.js
CHANGED
|
@@ -39,7 +39,7 @@ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
|
39
39
|
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
40
40
|
PERFORMANCE OF THIS SOFTWARE.
|
|
41
41
|
***************************************************************************** */
|
|
42
|
-
/* global Reflect, Promise */
|
|
42
|
+
/* global Reflect, Promise, SuppressedError, Symbol */
|
|
43
43
|
|
|
44
44
|
|
|
45
45
|
var __assign$1 = function() {
|
|
@@ -73,7 +73,12 @@ function __spreadArray(to, from, pack) {
|
|
|
73
73
|
}
|
|
74
74
|
}
|
|
75
75
|
return to.concat(ar || Array.prototype.slice.call(from));
|
|
76
|
-
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
79
|
+
var e = new Error(message);
|
|
80
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
81
|
+
};
|
|
77
82
|
|
|
78
83
|
/**
|
|
79
84
|
* This "const" is used to create the list of statuses
|
|
@@ -439,7 +444,7 @@ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
|
439
444
|
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
440
445
|
PERFORMANCE OF THIS SOFTWARE.
|
|
441
446
|
***************************************************************************** */
|
|
442
|
-
/* global Reflect, Promise */
|
|
447
|
+
/* global Reflect, Promise, SuppressedError, Symbol */
|
|
443
448
|
|
|
444
449
|
|
|
445
450
|
var __assign = function() {
|
|
@@ -463,7 +468,12 @@ function __rest(s, e) {
|
|
|
463
468
|
t[p[i]] = s[p[i]];
|
|
464
469
|
}
|
|
465
470
|
return t;
|
|
466
|
-
}
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
474
|
+
var e = new Error(message);
|
|
475
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
476
|
+
};
|
|
467
477
|
|
|
468
478
|
var compileReactIconProperties = function (_a) {
|
|
469
479
|
var body = _a.body, defs = _a.defs, compiledClasses = _a.compiledClasses, size = _a.size, name = _a.name, attributes = __rest(_a, ["body", "defs", "compiledClasses", "size", "name"]);
|
|
@@ -504,7 +514,7 @@ var compileReactIconProperties = function (_a) {
|
|
|
504
514
|
};
|
|
505
515
|
|
|
506
516
|
|
|
507
|
-
/* <wind-keep class="filter"> */
|
|
517
|
+
/* <wind-keep class="filter icon-light-secondary icon-dark-secondary"> */
|
|
508
518
|
|
|
509
519
|
var compileProps = function (_a) {
|
|
510
520
|
var status = _a.status, statuses = _a.statuses, className = _a.className, size = _a.size, variantName = _a.variantName;
|
|
@@ -576,4 +586,4 @@ exports.SolidStatusIcon = SolidStatusIcon;
|
|
|
576
586
|
exports.default = StatusIcon;
|
|
577
587
|
//# sourceMappingURL=index.umd.js.map
|
|
578
588
|
|
|
579
|
-
/* <wind-keep class="outline inline-block"> */
|
|
589
|
+
/* <wind-keep class="outline inline-block icon-dark-indigo-400 icon-light-gray-100 icon-dark-jade-400 icon-dark-red-400 icon-dark-gray-100 icon-dark-gray-300 icon-dark-orange-400 icon-dark-gray-400"> */
|