analytica-frontend-lib 1.0.79 → 1.0.81
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/Accordation/index.js +166 -0
- package/dist/Accordation/index.js.map +1 -1
- package/dist/Accordation/index.mjs +166 -0
- package/dist/Accordation/index.mjs.map +1 -1
- package/dist/Alternative/index.js +6 -0
- package/dist/Alternative/index.js.map +1 -1
- package/dist/Alternative/index.mjs +6 -0
- package/dist/Alternative/index.mjs.map +1 -1
- package/dist/Badge/index.d.mts +1 -1
- package/dist/Badge/index.d.ts +1 -1
- package/dist/Badge/index.js +6 -0
- package/dist/Badge/index.js.map +1 -1
- package/dist/Badge/index.mjs +6 -0
- package/dist/Badge/index.mjs.map +1 -1
- package/dist/Card/index.d.mts +19 -1
- package/dist/Card/index.d.ts +19 -1
- package/dist/Card/index.js +168 -0
- package/dist/Card/index.js.map +1 -1
- package/dist/Card/index.mjs +167 -0
- package/dist/Card/index.mjs.map +1 -1
- package/dist/index.css +38 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +168 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +167 -0
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +38 -0
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -526,6 +526,9 @@
|
|
|
526
526
|
.right-\[10px\] {
|
|
527
527
|
right: 10px;
|
|
528
528
|
}
|
|
529
|
+
.bottom-0 {
|
|
530
|
+
bottom: calc(var(--spacing) * 0);
|
|
531
|
+
}
|
|
529
532
|
.bottom-4 {
|
|
530
533
|
bottom: calc(var(--spacing) * 4);
|
|
531
534
|
}
|
|
@@ -538,6 +541,9 @@
|
|
|
538
541
|
.left-1\/2 {
|
|
539
542
|
left: calc(1/2 * 100%);
|
|
540
543
|
}
|
|
544
|
+
.left-2 {
|
|
545
|
+
left: calc(var(--spacing) * 2);
|
|
546
|
+
}
|
|
541
547
|
.left-3 {
|
|
542
548
|
left: calc(var(--spacing) * 3);
|
|
543
549
|
}
|
|
@@ -849,6 +855,9 @@
|
|
|
849
855
|
.min-h-\[50px\] {
|
|
850
856
|
min-height: 50px;
|
|
851
857
|
}
|
|
858
|
+
.min-h-\[61px\] {
|
|
859
|
+
min-height: 61px;
|
|
860
|
+
}
|
|
852
861
|
.min-h-\[67px\] {
|
|
853
862
|
min-height: 67px;
|
|
854
863
|
}
|
|
@@ -906,6 +915,9 @@
|
|
|
906
915
|
.w-10 {
|
|
907
916
|
width: calc(var(--spacing) * 10);
|
|
908
917
|
}
|
|
918
|
+
.w-11 {
|
|
919
|
+
width: calc(var(--spacing) * 11);
|
|
920
|
+
}
|
|
909
921
|
.w-20 {
|
|
910
922
|
width: calc(var(--spacing) * 20);
|
|
911
923
|
}
|
|
@@ -1024,6 +1036,9 @@
|
|
|
1024
1036
|
.max-w-\[970px\] {
|
|
1025
1037
|
max-width: 970px;
|
|
1026
1038
|
}
|
|
1039
|
+
.max-w-\[992px\] {
|
|
1040
|
+
max-width: 992px;
|
|
1041
|
+
}
|
|
1027
1042
|
.max-w-\[1000px\] {
|
|
1028
1043
|
max-width: 1000px;
|
|
1029
1044
|
}
|
|
@@ -1113,6 +1128,12 @@
|
|
|
1113
1128
|
--tw-translate-y: calc(var(--spacing) * 1);
|
|
1114
1129
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1115
1130
|
}
|
|
1131
|
+
.scale-75 {
|
|
1132
|
+
--tw-scale-x: 75%;
|
|
1133
|
+
--tw-scale-y: 75%;
|
|
1134
|
+
--tw-scale-z: 75%;
|
|
1135
|
+
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
1136
|
+
}
|
|
1116
1137
|
.-rotate-90 {
|
|
1117
1138
|
rotate: calc(90deg * -1);
|
|
1118
1139
|
}
|
|
@@ -1128,6 +1149,9 @@
|
|
|
1128
1149
|
.transform {
|
|
1129
1150
|
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
1130
1151
|
}
|
|
1152
|
+
.transform-gpu {
|
|
1153
|
+
transform: translateZ(0) var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
1154
|
+
}
|
|
1131
1155
|
.animate-pulse {
|
|
1132
1156
|
animation: var(--animate-pulse);
|
|
1133
1157
|
}
|
|
@@ -1382,6 +1406,10 @@
|
|
|
1382
1406
|
.rounded-xs {
|
|
1383
1407
|
border-radius: var(--radius-xs);
|
|
1384
1408
|
}
|
|
1409
|
+
.rounded-t-3xl {
|
|
1410
|
+
border-top-left-radius: var(--radius-3xl);
|
|
1411
|
+
border-top-right-radius: var(--radius-3xl);
|
|
1412
|
+
}
|
|
1385
1413
|
.rounded-t-xl {
|
|
1386
1414
|
border-top-left-radius: var(--radius-xl);
|
|
1387
1415
|
border-top-right-radius: var(--radius-xl);
|
|
@@ -1390,6 +1418,10 @@
|
|
|
1390
1418
|
border-top-left-radius: var(--radius-xl);
|
|
1391
1419
|
border-bottom-left-radius: var(--radius-xl);
|
|
1392
1420
|
}
|
|
1421
|
+
.rounded-b-3xl {
|
|
1422
|
+
border-bottom-right-radius: var(--radius-3xl);
|
|
1423
|
+
border-bottom-left-radius: var(--radius-3xl);
|
|
1424
|
+
}
|
|
1393
1425
|
.border {
|
|
1394
1426
|
border-style: var(--tw-border-style);
|
|
1395
1427
|
border-width: 1px;
|
|
@@ -8383,6 +8415,9 @@
|
|
|
8383
8415
|
@property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
|
|
8384
8416
|
@property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
|
|
8385
8417
|
@property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
|
|
8418
|
+
@property --tw-scale-x { syntax: "*"; inherits: false; initial-value: 1; }
|
|
8419
|
+
@property --tw-scale-y { syntax: "*"; inherits: false; initial-value: 1; }
|
|
8420
|
+
@property --tw-scale-z { syntax: "*"; inherits: false; initial-value: 1; }
|
|
8386
8421
|
@property --tw-rotate-x { syntax: "*"; inherits: false; }
|
|
8387
8422
|
@property --tw-rotate-y { syntax: "*"; inherits: false; }
|
|
8388
8423
|
@property --tw-rotate-z { syntax: "*"; inherits: false; }
|
|
@@ -8456,6 +8491,9 @@
|
|
|
8456
8491
|
--tw-translate-x: 0;
|
|
8457
8492
|
--tw-translate-y: 0;
|
|
8458
8493
|
--tw-translate-z: 0;
|
|
8494
|
+
--tw-scale-x: 1;
|
|
8495
|
+
--tw-scale-y: 1;
|
|
8496
|
+
--tw-scale-z: 1;
|
|
8459
8497
|
--tw-rotate-x: initial;
|
|
8460
8498
|
--tw-rotate-y: initial;
|
|
8461
8499
|
--tw-rotate-z: initial;
|