@apexcura/ui-components 0.0.14-Beta212 → 0.0.14-Beta213
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/index.css +4 -3
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -356,9 +356,6 @@ video {
|
|
|
356
356
|
.grid {
|
|
357
357
|
display: grid;
|
|
358
358
|
}
|
|
359
|
-
.transform {
|
|
360
|
-
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
361
|
-
}
|
|
362
359
|
.rounded-\[8px\] {
|
|
363
360
|
border-radius: 8px;
|
|
364
361
|
}
|
|
@@ -413,6 +410,10 @@ video {
|
|
|
413
410
|
var(--tw-ring-shadow, 0 0 #0000),
|
|
414
411
|
var(--tw-shadow);
|
|
415
412
|
}
|
|
413
|
+
.invert {
|
|
414
|
+
--tw-invert: invert(100%);
|
|
415
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
416
|
+
}
|
|
416
417
|
.filter {
|
|
417
418
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
418
419
|
}
|
package/dist/index.js
CHANGED
|
@@ -401,7 +401,7 @@ var ButtonElement = (props) => {
|
|
|
401
401
|
style: { display: "inline-block" }
|
|
402
402
|
}
|
|
403
403
|
), /* @__PURE__ */ import_react11.default.createElement("style", null, `.${props.iconsClassName}:hover {
|
|
404
|
-
|
|
404
|
+
filter: brightness(0) invert(1);
|
|
405
405
|
}`)), props.label)
|
|
406
406
|
);
|
|
407
407
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -335,7 +335,7 @@ var ButtonElement = (props) => {
|
|
|
335
335
|
style: { display: "inline-block" }
|
|
336
336
|
}
|
|
337
337
|
), /* @__PURE__ */ React11.createElement("style", null, `.${props.iconsClassName}:hover {
|
|
338
|
-
|
|
338
|
+
filter: brightness(0) invert(1);
|
|
339
339
|
}`)), props.label)
|
|
340
340
|
);
|
|
341
341
|
};
|