@loja-integrada/admin-components 0.18.10 → 0.18.12
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/admin-components.cjs.development.js +30 -0
- package/dist/admin-components.cjs.development.js.map +1 -1
- package/dist/admin-components.cjs.production.min.js +1 -1
- package/dist/admin-components.cjs.production.min.js.map +1 -1
- package/dist/admin-components.esm.js +30 -0
- package/dist/admin-components.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/Indicators/Tooltip/style.scss +28 -45
- package/dist/admin-components.cjs.development.css +0 -1
- package/dist/admin-components.esm.css +0 -1
- package/dist/tailwind.css +0 -1
- package/src/tailwind.css +0 -7
|
@@ -30941,6 +30941,36 @@ function cov_1ubkigkubq() {
|
|
|
30941
30941
|
|
|
30942
30942
|
cov_1ubkigkubq();
|
|
30943
30943
|
|
|
30944
|
+
function styleInject(css, ref) {
|
|
30945
|
+
if ( ref === void 0 ) ref = {};
|
|
30946
|
+
var insertAt = ref.insertAt;
|
|
30947
|
+
|
|
30948
|
+
if (!css || typeof document === 'undefined') { return; }
|
|
30949
|
+
|
|
30950
|
+
var head = document.head || document.getElementsByTagName('head')[0];
|
|
30951
|
+
var style = document.createElement('style');
|
|
30952
|
+
style.type = 'text/css';
|
|
30953
|
+
|
|
30954
|
+
if (insertAt === 'top') {
|
|
30955
|
+
if (head.firstChild) {
|
|
30956
|
+
head.insertBefore(style, head.firstChild);
|
|
30957
|
+
} else {
|
|
30958
|
+
head.appendChild(style);
|
|
30959
|
+
}
|
|
30960
|
+
} else {
|
|
30961
|
+
head.appendChild(style);
|
|
30962
|
+
}
|
|
30963
|
+
|
|
30964
|
+
if (style.styleSheet) {
|
|
30965
|
+
style.styleSheet.cssText = css;
|
|
30966
|
+
} else {
|
|
30967
|
+
style.appendChild(document.createTextNode(css));
|
|
30968
|
+
}
|
|
30969
|
+
}
|
|
30970
|
+
|
|
30971
|
+
var css_248z = ".tippy-box{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(var(--color-inverted-1)/var(--tw-bg-opacity));border-radius:.25rem;color:rgb(var(--color-base-1)/var(--tw-text-opacity));font-size:.75rem;letter-spacing:-.025rem;line-height:1rem;outline-width:0;position:relative;transition-duration:.2s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}.tippy-box [data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{border-top-color:initial;border-width:8px 8px 0;bottom:-.5rem;left:0;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{border-bottom-color:initial;border-width:0 8px 8px;left:0;top:-.5rem;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-left-color:initial;border-width:8px 0 8px 8px;right:-.5rem;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{border-right-color:initial;border-width:8px 8px 8px 0;left:-.5rem;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-box .tippy-arrow{--tw-text-opacity:1;color:rgb(var(--color-inverted-1)/var(--tw-text-opacity));height:1rem;width:1rem}.tippy-box .tippy-arrow:before{border-color:transparent;border-style:solid;content:\"\";position:absolute}.tippy-box .tippy-content{padding:.75rem .5rem;position:relative;z-index:1}";
|
|
30972
|
+
styleInject(css_248z,{"insertAt":"top"});
|
|
30973
|
+
|
|
30944
30974
|
function cov_pl86i0mw8() {
|
|
30945
30975
|
var path = "/home/runner/work/admin-components/admin-components/styleguide/src/Indicators/Tooltip/Tooltip.tsx";
|
|
30946
30976
|
var hash = "c83e898932a3819ae7f92fa010a4612fcee3bd2a";
|