@juo/orion-extensions 0.8.0-staging.13 → 0.8.0-staging.14
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/extensions.js +2222 -922
- package/dist/style.css +197 -66
- package/package.json +2 -2
package/dist/style.css
CHANGED
|
@@ -109,8 +109,8 @@
|
|
|
109
109
|
--tint-800: oklch(20% 0.05 40);
|
|
110
110
|
--tint-900: oklch(10% 0.055 40);
|
|
111
111
|
}
|
|
112
|
-
/* Tint System -
|
|
113
|
-
[data-tint="
|
|
112
|
+
/* Tint System - cold */
|
|
113
|
+
[data-tint="cold"] {
|
|
114
114
|
--tint-25: oklch(98% 0.005 220);
|
|
115
115
|
--tint-50: oklch(96% 0.01 220);
|
|
116
116
|
--tint-100: oklch(94% 0.015 220);
|
|
@@ -123,6 +123,48 @@
|
|
|
123
123
|
--tint-800: oklch(20% 0.05 220);
|
|
124
124
|
--tint-900: oklch(10% 0.055 220);
|
|
125
125
|
}
|
|
126
|
+
/* Tint System - Custom (derived from --tint-hue and --tint-chroma) */
|
|
127
|
+
[data-tint="custom"] {
|
|
128
|
+
--tint-25: oklch(98% calc(0.005 * var(--tint-chroma, 1)) var(--tint-hue, 0));
|
|
129
|
+
--tint-50: oklch(96% calc(0.01 * var(--tint-chroma, 1)) var(--tint-hue, 0));
|
|
130
|
+
--tint-100: oklch(94% calc(0.015 * var(--tint-chroma, 1)) var(--tint-hue, 0));
|
|
131
|
+
--tint-200: oklch(88% calc(0.02 * var(--tint-chroma, 1)) var(--tint-hue, 0));
|
|
132
|
+
--tint-300: oklch(80% calc(0.025 * var(--tint-chroma, 1)) var(--tint-hue, 0));
|
|
133
|
+
--tint-400: oklch(65% calc(0.03 * var(--tint-chroma, 1)) var(--tint-hue, 0));
|
|
134
|
+
--tint-500: oklch(50% calc(0.035 * var(--tint-chroma, 1)) var(--tint-hue, 0));
|
|
135
|
+
--tint-600: oklch(40% calc(0.04 * var(--tint-chroma, 1)) var(--tint-hue, 0));
|
|
136
|
+
--tint-700: oklch(30% calc(0.045 * var(--tint-chroma, 1)) var(--tint-hue, 0));
|
|
137
|
+
--tint-800: oklch(20% calc(0.05 * var(--tint-chroma, 1)) var(--tint-hue, 0));
|
|
138
|
+
--tint-900: oklch(10% calc(0.055 * var(--tint-chroma, 1)) var(--tint-hue, 0));
|
|
139
|
+
}
|
|
140
|
+
/* Callout Colors - Custom (derived from --callout-hue and --callout-chroma) */
|
|
141
|
+
[data-callout="custom"] {
|
|
142
|
+
--callout-25: oklch(98% calc(0.005 * var(--callout-chroma, 1)) var(--callout-hue, 0));
|
|
143
|
+
--callout-50: oklch(96% calc(0.01 * var(--callout-chroma, 1)) var(--callout-hue, 0));
|
|
144
|
+
--callout-100: oklch(94% calc(0.015 * var(--callout-chroma, 1)) var(--callout-hue, 0));
|
|
145
|
+
--callout-200: oklch(88% calc(0.02 * var(--callout-chroma, 1)) var(--callout-hue, 0));
|
|
146
|
+
--callout-300: oklch(80% calc(0.025 * var(--callout-chroma, 1)) var(--callout-hue, 0));
|
|
147
|
+
--callout-400: oklch(65% calc(0.03 * var(--callout-chroma, 1)) var(--callout-hue, 0));
|
|
148
|
+
--callout-500: oklch(50% calc(0.035 * var(--callout-chroma, 1)) var(--callout-hue, 0));
|
|
149
|
+
--callout-600: oklch(40% calc(0.04 * var(--callout-chroma, 1)) var(--callout-hue, 0));
|
|
150
|
+
--callout-700: oklch(30% calc(0.045 * var(--callout-chroma, 1)) var(--callout-hue, 0));
|
|
151
|
+
--callout-800: oklch(20% calc(0.05 * var(--callout-chroma, 1)) var(--callout-hue, 0));
|
|
152
|
+
--callout-900: oklch(10% calc(0.055 * var(--callout-chroma, 1)) var(--callout-hue, 0));
|
|
153
|
+
}
|
|
154
|
+
/* Accent Colors - Custom (derived from --accent-hue and --accent-chroma) */
|
|
155
|
+
[data-accent="custom"] {
|
|
156
|
+
--accent-25: oklch(98% calc(0.005 * var(--accent-chroma, 1)) var(--accent-hue, 0));
|
|
157
|
+
--accent-50: oklch(96% calc(0.01 * var(--accent-chroma, 1)) var(--accent-hue, 0));
|
|
158
|
+
--accent-100: oklch(94% calc(0.015 * var(--accent-chroma, 1)) var(--accent-hue, 0));
|
|
159
|
+
--accent-200: oklch(88% calc(0.02 * var(--accent-chroma, 1)) var(--accent-hue, 0));
|
|
160
|
+
--accent-300: oklch(80% calc(0.025 * var(--accent-chroma, 1)) var(--accent-hue, 0));
|
|
161
|
+
--accent-400: oklch(65% calc(0.03 * var(--accent-chroma, 1)) var(--accent-hue, 0));
|
|
162
|
+
--accent-500: oklch(50% calc(0.035 * var(--accent-chroma, 1)) var(--accent-hue, 0));
|
|
163
|
+
--accent-600: oklch(40% calc(0.04 * var(--accent-chroma, 1)) var(--accent-hue, 0));
|
|
164
|
+
--accent-700: oklch(30% calc(0.045 * var(--accent-chroma, 1)) var(--accent-hue, 0));
|
|
165
|
+
--accent-800: oklch(20% calc(0.05 * var(--accent-chroma, 1)) var(--accent-hue, 0));
|
|
166
|
+
--accent-900: oklch(10% calc(0.055 * var(--accent-chroma, 1)) var(--accent-hue, 0));
|
|
167
|
+
}
|
|
126
168
|
/* Utility Tokens - Font Size Scale */
|
|
127
169
|
:root,
|
|
128
170
|
[data-variant] {
|
|
@@ -173,6 +215,28 @@
|
|
|
173
215
|
--card-radius-2: var(--radius-sm);
|
|
174
216
|
--card-radius-3: var(--radius-xs);
|
|
175
217
|
}
|
|
218
|
+
/* Component Tokens - Thumbnail Rounding */
|
|
219
|
+
:root,
|
|
220
|
+
[data-thumbnail-rounding="circle"] {
|
|
221
|
+
--thumbnail-rounding: 50%;
|
|
222
|
+
}
|
|
223
|
+
[data-thumbnail-rounding="sharp"] {
|
|
224
|
+
--thumbnail-rounding: 0px;
|
|
225
|
+
}
|
|
226
|
+
[data-thumbnail-rounding="rounding"] {
|
|
227
|
+
--thumbnail-rounding: var(--radius-lg);
|
|
228
|
+
}
|
|
229
|
+
/* Component Tokens - Buttons Rounding */
|
|
230
|
+
:root,
|
|
231
|
+
[data-buttons-rounding="rounding"] {
|
|
232
|
+
--buttons-rounding: var(--radius-xs);
|
|
233
|
+
}
|
|
234
|
+
[data-buttons-rounding="sharp"] {
|
|
235
|
+
--buttons-rounding: 0px;
|
|
236
|
+
}
|
|
237
|
+
[data-buttons-rounding="circle"] {
|
|
238
|
+
--buttons-rounding: 9999px;
|
|
239
|
+
}
|
|
176
240
|
/* Surface Presets - Subtle (Default) */
|
|
177
241
|
:root,
|
|
178
242
|
[data-surface="subtle"] {
|
|
@@ -774,12 +838,6 @@ video {
|
|
|
774
838
|
.right-0 {
|
|
775
839
|
right: 0px;
|
|
776
840
|
}
|
|
777
|
-
.right-1 {
|
|
778
|
-
right: 0.25rem;
|
|
779
|
-
}
|
|
780
|
-
.right-1\.5 {
|
|
781
|
-
right: 0.375rem;
|
|
782
|
-
}
|
|
783
841
|
.right-3 {
|
|
784
842
|
right: 0.75rem;
|
|
785
843
|
}
|
|
@@ -795,12 +853,6 @@ video {
|
|
|
795
853
|
.top-0 {
|
|
796
854
|
top: 0px;
|
|
797
855
|
}
|
|
798
|
-
.top-1 {
|
|
799
|
-
top: 0.25rem;
|
|
800
|
-
}
|
|
801
|
-
.top-1\.5 {
|
|
802
|
-
top: 0.375rem;
|
|
803
|
-
}
|
|
804
856
|
.top-1\/2 {
|
|
805
857
|
top: 50%;
|
|
806
858
|
}
|
|
@@ -870,6 +922,9 @@ video {
|
|
|
870
922
|
.\!ml-10 {
|
|
871
923
|
margin-left: 2.5rem !important;
|
|
872
924
|
}
|
|
925
|
+
.-ml-px {
|
|
926
|
+
margin-left: -1px;
|
|
927
|
+
}
|
|
873
928
|
.mb-0 {
|
|
874
929
|
margin-bottom: 0px;
|
|
875
930
|
}
|
|
@@ -912,6 +967,9 @@ video {
|
|
|
912
967
|
.mr-3 {
|
|
913
968
|
margin-right: 0.75rem;
|
|
914
969
|
}
|
|
970
|
+
.mr-md {
|
|
971
|
+
margin-right: var(--spacing-md);
|
|
972
|
+
}
|
|
915
973
|
.mt-1 {
|
|
916
974
|
margin-top: 0.25rem;
|
|
917
975
|
}
|
|
@@ -966,6 +1024,9 @@ video {
|
|
|
966
1024
|
.aspect-video {
|
|
967
1025
|
aspect-ratio: 16 / 9;
|
|
968
1026
|
}
|
|
1027
|
+
.\!h-7 {
|
|
1028
|
+
height: 1.75rem !important;
|
|
1029
|
+
}
|
|
969
1030
|
.\!h-9 {
|
|
970
1031
|
height: 2.25rem !important;
|
|
971
1032
|
}
|
|
@@ -978,6 +1039,12 @@ video {
|
|
|
978
1039
|
.h-12 {
|
|
979
1040
|
height: 3rem;
|
|
980
1041
|
}
|
|
1042
|
+
.h-2 {
|
|
1043
|
+
height: 0.5rem;
|
|
1044
|
+
}
|
|
1045
|
+
.h-2\.5 {
|
|
1046
|
+
height: 0.625rem;
|
|
1047
|
+
}
|
|
981
1048
|
.h-3 {
|
|
982
1049
|
height: 0.75rem;
|
|
983
1050
|
}
|
|
@@ -1011,12 +1078,21 @@ video {
|
|
|
1011
1078
|
.h-\[150px\] {
|
|
1012
1079
|
height: 150px;
|
|
1013
1080
|
}
|
|
1081
|
+
.h-\[16px\] {
|
|
1082
|
+
height: 16px;
|
|
1083
|
+
}
|
|
1084
|
+
.h-\[18px\] {
|
|
1085
|
+
height: 18px;
|
|
1086
|
+
}
|
|
1014
1087
|
.h-\[200px\] {
|
|
1015
1088
|
height: 200px;
|
|
1016
1089
|
}
|
|
1017
1090
|
.h-\[20px\] {
|
|
1018
1091
|
height: 20px;
|
|
1019
1092
|
}
|
|
1093
|
+
.h-\[24px\] {
|
|
1094
|
+
height: 24px;
|
|
1095
|
+
}
|
|
1020
1096
|
.h-\[250px\] {
|
|
1021
1097
|
height: 250px;
|
|
1022
1098
|
}
|
|
@@ -1029,6 +1105,12 @@ video {
|
|
|
1029
1105
|
.h-\[33px\] {
|
|
1030
1106
|
height: 33px;
|
|
1031
1107
|
}
|
|
1108
|
+
.h-\[360px\] {
|
|
1109
|
+
height: 360px;
|
|
1110
|
+
}
|
|
1111
|
+
.h-\[36px\] {
|
|
1112
|
+
height: 36px;
|
|
1113
|
+
}
|
|
1032
1114
|
.h-\[40px\] {
|
|
1033
1115
|
height: 40px;
|
|
1034
1116
|
}
|
|
@@ -1074,15 +1156,24 @@ video {
|
|
|
1074
1156
|
.max-h-96 {
|
|
1075
1157
|
max-height: 24rem;
|
|
1076
1158
|
}
|
|
1159
|
+
.max-h-\[40\%\] {
|
|
1160
|
+
max-height: 40%;
|
|
1161
|
+
}
|
|
1077
1162
|
.max-h-\[400px\] {
|
|
1078
1163
|
max-height: 400px;
|
|
1079
1164
|
}
|
|
1080
1165
|
.max-h-full {
|
|
1081
1166
|
max-height: 100%;
|
|
1082
1167
|
}
|
|
1168
|
+
.min-h-0 {
|
|
1169
|
+
min-height: 0px;
|
|
1170
|
+
}
|
|
1083
1171
|
.min-h-full {
|
|
1084
1172
|
min-height: 100%;
|
|
1085
1173
|
}
|
|
1174
|
+
.\!w-7 {
|
|
1175
|
+
width: 1.75rem !important;
|
|
1176
|
+
}
|
|
1086
1177
|
.\!w-9 {
|
|
1087
1178
|
width: 2.25rem !important;
|
|
1088
1179
|
}
|
|
@@ -1092,6 +1183,12 @@ video {
|
|
|
1092
1183
|
.w-12 {
|
|
1093
1184
|
width: 3rem;
|
|
1094
1185
|
}
|
|
1186
|
+
.w-2 {
|
|
1187
|
+
width: 0.5rem;
|
|
1188
|
+
}
|
|
1189
|
+
.w-2\.5 {
|
|
1190
|
+
width: 0.625rem;
|
|
1191
|
+
}
|
|
1095
1192
|
.w-3 {
|
|
1096
1193
|
width: 0.75rem;
|
|
1097
1194
|
}
|
|
@@ -1107,18 +1204,27 @@ video {
|
|
|
1107
1204
|
.w-60 {
|
|
1108
1205
|
width: 15rem;
|
|
1109
1206
|
}
|
|
1207
|
+
.w-7 {
|
|
1208
|
+
width: 1.75rem;
|
|
1209
|
+
}
|
|
1110
1210
|
.w-8 {
|
|
1111
1211
|
width: 2rem;
|
|
1112
1212
|
}
|
|
1113
1213
|
.w-80 {
|
|
1114
1214
|
width: 20rem;
|
|
1115
1215
|
}
|
|
1216
|
+
.w-9 {
|
|
1217
|
+
width: 2.25rem;
|
|
1218
|
+
}
|
|
1116
1219
|
.w-\[14px\] {
|
|
1117
1220
|
width: 14px;
|
|
1118
1221
|
}
|
|
1119
1222
|
.w-\[150px\] {
|
|
1120
1223
|
width: 150px;
|
|
1121
1224
|
}
|
|
1225
|
+
.w-\[18px\] {
|
|
1226
|
+
width: 18px;
|
|
1227
|
+
}
|
|
1122
1228
|
.w-\[200px\] {
|
|
1123
1229
|
width: 200px;
|
|
1124
1230
|
}
|
|
@@ -1128,12 +1234,18 @@ video {
|
|
|
1128
1234
|
.w-\[234px\] {
|
|
1129
1235
|
width: 234px;
|
|
1130
1236
|
}
|
|
1237
|
+
.w-\[24px\] {
|
|
1238
|
+
width: 24px;
|
|
1239
|
+
}
|
|
1131
1240
|
.w-\[25\%\] {
|
|
1132
1241
|
width: 25%;
|
|
1133
1242
|
}
|
|
1134
1243
|
.w-\[360px\] {
|
|
1135
1244
|
width: 360px;
|
|
1136
1245
|
}
|
|
1246
|
+
.w-\[36px\] {
|
|
1247
|
+
width: 36px;
|
|
1248
|
+
}
|
|
1137
1249
|
.w-\[404px\] {
|
|
1138
1250
|
width: 404px;
|
|
1139
1251
|
}
|
|
@@ -1321,9 +1433,6 @@ video {
|
|
|
1321
1433
|
.items-center {
|
|
1322
1434
|
align-items: center;
|
|
1323
1435
|
}
|
|
1324
|
-
.items-baseline {
|
|
1325
|
-
align-items: baseline;
|
|
1326
|
-
}
|
|
1327
1436
|
.items-stretch {
|
|
1328
1437
|
align-items: stretch;
|
|
1329
1438
|
}
|
|
@@ -1409,11 +1518,6 @@ video {
|
|
|
1409
1518
|
margin-right: calc(0.75rem * var(--tw-space-x-reverse));
|
|
1410
1519
|
margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1411
1520
|
}
|
|
1412
|
-
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
|
|
1413
|
-
--tw-space-x-reverse: 0;
|
|
1414
|
-
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
|
1415
|
-
margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1416
|
-
}
|
|
1417
1521
|
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1418
1522
|
--tw-space-y-reverse: 0;
|
|
1419
1523
|
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -1430,6 +1534,9 @@ video {
|
|
|
1430
1534
|
.self-end {
|
|
1431
1535
|
align-self: flex-end;
|
|
1432
1536
|
}
|
|
1537
|
+
.self-stretch {
|
|
1538
|
+
align-self: stretch;
|
|
1539
|
+
}
|
|
1433
1540
|
.overflow-hidden {
|
|
1434
1541
|
overflow: hidden;
|
|
1435
1542
|
}
|
|
@@ -1451,9 +1558,6 @@ video {
|
|
|
1451
1558
|
.break-all {
|
|
1452
1559
|
word-break: break-all;
|
|
1453
1560
|
}
|
|
1454
|
-
.\!rounded-none {
|
|
1455
|
-
border-radius: var(--radius-none) !important;
|
|
1456
|
-
}
|
|
1457
1561
|
.rounded {
|
|
1458
1562
|
border-radius: 0.25rem;
|
|
1459
1563
|
}
|
|
@@ -1487,6 +1591,12 @@ video {
|
|
|
1487
1591
|
.rounded-\[9999px\] {
|
|
1488
1592
|
border-radius: 9999px;
|
|
1489
1593
|
}
|
|
1594
|
+
.rounded-buttons {
|
|
1595
|
+
border-radius: var(--buttons-rounding);
|
|
1596
|
+
}
|
|
1597
|
+
.rounded-card-1 {
|
|
1598
|
+
border-radius: var(--card-radius-1);
|
|
1599
|
+
}
|
|
1490
1600
|
.rounded-full {
|
|
1491
1601
|
border-radius: var(--radius-full);
|
|
1492
1602
|
}
|
|
@@ -1499,6 +1609,9 @@ video {
|
|
|
1499
1609
|
.rounded-sm {
|
|
1500
1610
|
border-radius: var(--radius-sm);
|
|
1501
1611
|
}
|
|
1612
|
+
.rounded-thumbnail {
|
|
1613
|
+
border-radius: var(--thumbnail-rounding);
|
|
1614
|
+
}
|
|
1502
1615
|
.rounded-xs {
|
|
1503
1616
|
border-radius: var(--radius-xs);
|
|
1504
1617
|
}
|
|
@@ -1534,6 +1647,14 @@ video {
|
|
|
1534
1647
|
.border-\[0\.5px\] {
|
|
1535
1648
|
border-width: 0.5px;
|
|
1536
1649
|
}
|
|
1650
|
+
.border-x-0 {
|
|
1651
|
+
border-left-width: 0px;
|
|
1652
|
+
border-right-width: 0px;
|
|
1653
|
+
}
|
|
1654
|
+
.border-y {
|
|
1655
|
+
border-top-width: 1px;
|
|
1656
|
+
border-bottom-width: 1px;
|
|
1657
|
+
}
|
|
1537
1658
|
.border-b {
|
|
1538
1659
|
border-bottom-width: 1px;
|
|
1539
1660
|
}
|
|
@@ -1734,6 +1855,9 @@ video {
|
|
|
1734
1855
|
--tw-bg-opacity: 1;
|
|
1735
1856
|
background-color: rgb(37 99 235 / var(--tw-bg-opacity));
|
|
1736
1857
|
}
|
|
1858
|
+
.bg-callout-200 {
|
|
1859
|
+
background-color: var(--callout-200);
|
|
1860
|
+
}
|
|
1737
1861
|
.bg-current {
|
|
1738
1862
|
background-color: currentColor;
|
|
1739
1863
|
}
|
|
@@ -1784,6 +1908,9 @@ video {
|
|
|
1784
1908
|
.bg-tint-50 {
|
|
1785
1909
|
background-color: var(--tint-50);
|
|
1786
1910
|
}
|
|
1911
|
+
.bg-tint-900 {
|
|
1912
|
+
background-color: var(--tint-900);
|
|
1913
|
+
}
|
|
1787
1914
|
.bg-transparent {
|
|
1788
1915
|
background-color: transparent;
|
|
1789
1916
|
}
|
|
@@ -1833,9 +1960,6 @@ video {
|
|
|
1833
1960
|
.p-0 {
|
|
1834
1961
|
padding: 0px;
|
|
1835
1962
|
}
|
|
1836
|
-
.p-1 {
|
|
1837
|
-
padding: 0.25rem;
|
|
1838
|
-
}
|
|
1839
1963
|
.p-2 {
|
|
1840
1964
|
padding: 0.5rem;
|
|
1841
1965
|
}
|
|
@@ -1869,10 +1993,6 @@ video {
|
|
|
1869
1993
|
.p-xl {
|
|
1870
1994
|
padding: var(--padding-xl);
|
|
1871
1995
|
}
|
|
1872
|
-
.\!px-1 {
|
|
1873
|
-
padding-left: 0.25rem !important;
|
|
1874
|
-
padding-right: 0.25rem !important;
|
|
1875
|
-
}
|
|
1876
1996
|
.px-0 {
|
|
1877
1997
|
padding-left: 0px;
|
|
1878
1998
|
padding-right: 0px;
|
|
@@ -2019,6 +2139,9 @@ video {
|
|
|
2019
2139
|
.pb-md {
|
|
2020
2140
|
padding-bottom: var(--padding-md);
|
|
2021
2141
|
}
|
|
2142
|
+
.pb-sm {
|
|
2143
|
+
padding-bottom: var(--padding-sm);
|
|
2144
|
+
}
|
|
2022
2145
|
.pb-xl {
|
|
2023
2146
|
padding-bottom: var(--padding-xl);
|
|
2024
2147
|
}
|
|
@@ -2046,6 +2169,9 @@ video {
|
|
|
2046
2169
|
.pl-lg {
|
|
2047
2170
|
padding-left: var(--padding-lg);
|
|
2048
2171
|
}
|
|
2172
|
+
.pl-xl {
|
|
2173
|
+
padding-left: var(--padding-xl);
|
|
2174
|
+
}
|
|
2049
2175
|
.pr-2 {
|
|
2050
2176
|
padding-right: 0.5rem;
|
|
2051
2177
|
}
|
|
@@ -2055,6 +2181,9 @@ video {
|
|
|
2055
2181
|
.pr-\[8\.5px\] {
|
|
2056
2182
|
padding-right: 8.5px;
|
|
2057
2183
|
}
|
|
2184
|
+
.pr-lg {
|
|
2185
|
+
padding-right: var(--padding-lg);
|
|
2186
|
+
}
|
|
2058
2187
|
.pt-2 {
|
|
2059
2188
|
padding-top: 0.5rem;
|
|
2060
2189
|
}
|
|
@@ -2079,9 +2208,6 @@ video {
|
|
|
2079
2208
|
.text-left {
|
|
2080
2209
|
text-align: left;
|
|
2081
2210
|
}
|
|
2082
|
-
.\!text-center {
|
|
2083
|
-
text-align: center !important;
|
|
2084
|
-
}
|
|
2085
2211
|
.text-center {
|
|
2086
2212
|
text-align: center;
|
|
2087
2213
|
}
|
|
@@ -2124,6 +2250,9 @@ video {
|
|
|
2124
2250
|
.text-\[9px\] {
|
|
2125
2251
|
font-size: 9px;
|
|
2126
2252
|
}
|
|
2253
|
+
.text-\[calc\(var\(--font-size\)\*1\.125\)\] {
|
|
2254
|
+
font-size: calc(var(--font-size) * 1.125);
|
|
2255
|
+
}
|
|
2127
2256
|
.text-base {
|
|
2128
2257
|
font-size: 1rem;
|
|
2129
2258
|
line-height: 1.5rem;
|
|
@@ -2185,6 +2314,9 @@ video {
|
|
|
2185
2314
|
.leading-\[1\.45\] {
|
|
2186
2315
|
line-height: 1.45;
|
|
2187
2316
|
}
|
|
2317
|
+
.leading-\[100\%\] {
|
|
2318
|
+
line-height: 100%;
|
|
2319
|
+
}
|
|
2188
2320
|
.leading-\[135\%\] {
|
|
2189
2321
|
line-height: 135%;
|
|
2190
2322
|
}
|
|
@@ -2197,8 +2329,8 @@ video {
|
|
|
2197
2329
|
.leading-\[14px\] {
|
|
2198
2330
|
line-height: 14px;
|
|
2199
2331
|
}
|
|
2200
|
-
.leading-\[
|
|
2201
|
-
line-height:
|
|
2332
|
+
.leading-\[16px\] {
|
|
2333
|
+
line-height: 16px;
|
|
2202
2334
|
}
|
|
2203
2335
|
.leading-none {
|
|
2204
2336
|
line-height: 1;
|
|
@@ -2218,6 +2350,9 @@ video {
|
|
|
2218
2350
|
.tracking-\[-0\.12px\] {
|
|
2219
2351
|
letter-spacing: -0.12px;
|
|
2220
2352
|
}
|
|
2353
|
+
.tracking-\[-0\.36px\] {
|
|
2354
|
+
letter-spacing: -0.36px;
|
|
2355
|
+
}
|
|
2221
2356
|
.tracking-\[-0\.4px\] {
|
|
2222
2357
|
letter-spacing: -0.4px;
|
|
2223
2358
|
}
|
|
@@ -2294,6 +2429,9 @@ video {
|
|
|
2294
2429
|
--tw-text-opacity: 1;
|
|
2295
2430
|
color: rgb(37 99 235 / var(--tw-text-opacity));
|
|
2296
2431
|
}
|
|
2432
|
+
.text-callout-900 {
|
|
2433
|
+
color: var(--callout-900);
|
|
2434
|
+
}
|
|
2297
2435
|
.text-current {
|
|
2298
2436
|
color: currentColor;
|
|
2299
2437
|
}
|
|
@@ -2350,6 +2488,9 @@ video {
|
|
|
2350
2488
|
.text-tint-300 {
|
|
2351
2489
|
color: var(--tint-300);
|
|
2352
2490
|
}
|
|
2491
|
+
.text-tint-400 {
|
|
2492
|
+
color: var(--tint-400);
|
|
2493
|
+
}
|
|
2353
2494
|
.text-tint-500 {
|
|
2354
2495
|
color: var(--tint-500);
|
|
2355
2496
|
}
|
|
@@ -2388,10 +2529,8 @@ video {
|
|
|
2388
2529
|
.opacity-20 {
|
|
2389
2530
|
opacity: 0.2;
|
|
2390
2531
|
}
|
|
2391
|
-
.
|
|
2392
|
-
|
|
2393
|
-
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
2394
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2532
|
+
.opacity-50 {
|
|
2533
|
+
opacity: 0.5;
|
|
2395
2534
|
}
|
|
2396
2535
|
.shadow-\[-7px_0px_4px_\#CCCCCC40\] {
|
|
2397
2536
|
--tw-shadow: -7px 0px 4px #CCCCCC40;
|
|
@@ -2427,10 +2566,6 @@ video {
|
|
|
2427
2566
|
--tw-blur: blur(8px);
|
|
2428
2567
|
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);
|
|
2429
2568
|
}
|
|
2430
|
-
.drop-shadow-lg {
|
|
2431
|
-
--tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
|
|
2432
|
-
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);
|
|
2433
|
-
}
|
|
2434
2569
|
.filter {
|
|
2435
2570
|
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);
|
|
2436
2571
|
}
|
|
@@ -2505,6 +2640,12 @@ video {
|
|
|
2505
2640
|
.placeholder\:text-tint-500::placeholder {
|
|
2506
2641
|
color: var(--tint-500);
|
|
2507
2642
|
}
|
|
2643
|
+
.placeholder\:text-tint-600::-moz-placeholder {
|
|
2644
|
+
color: var(--tint-600);
|
|
2645
|
+
}
|
|
2646
|
+
.placeholder\:text-tint-600::placeholder {
|
|
2647
|
+
color: var(--tint-600);
|
|
2648
|
+
}
|
|
2508
2649
|
.first\:rounded-t-xs:first-child {
|
|
2509
2650
|
border-top-left-radius: var(--radius-xs);
|
|
2510
2651
|
border-top-right-radius: var(--radius-xs);
|
|
@@ -2565,12 +2706,18 @@ video {
|
|
|
2565
2706
|
--tw-bg-opacity: 1;
|
|
2566
2707
|
background-color: rgb(254 226 226 / var(--tw-bg-opacity));
|
|
2567
2708
|
}
|
|
2709
|
+
.hover\:bg-tint-25:hover {
|
|
2710
|
+
background-color: var(--tint-25);
|
|
2711
|
+
}
|
|
2568
2712
|
.hover\:text-accent-600:hover {
|
|
2569
2713
|
color: var(--accent-600);
|
|
2570
2714
|
}
|
|
2571
2715
|
.hover\:text-tint-900:hover {
|
|
2572
2716
|
color: var(--tint-900);
|
|
2573
2717
|
}
|
|
2718
|
+
.hover\:opacity-100:hover {
|
|
2719
|
+
opacity: 1;
|
|
2720
|
+
}
|
|
2574
2721
|
.focus\:border-\[\#121826\]:focus {
|
|
2575
2722
|
--tw-border-opacity: 1;
|
|
2576
2723
|
border-color: rgb(18 24 38 / var(--tw-border-opacity));
|
|
@@ -2742,10 +2889,6 @@ video {
|
|
|
2742
2889
|
margin-left: 0px;
|
|
2743
2890
|
margin-right: 0px;
|
|
2744
2891
|
}
|
|
2745
|
-
.sm\:my-2xl {
|
|
2746
|
-
margin-top: var(--spacing-2xl);
|
|
2747
|
-
margin-bottom: var(--spacing-2xl);
|
|
2748
|
-
}
|
|
2749
2892
|
.sm\:w-full {
|
|
2750
2893
|
width: 100%;
|
|
2751
2894
|
}
|
|
@@ -2773,9 +2916,6 @@ video {
|
|
|
2773
2916
|
--tw-scale-y: .95;
|
|
2774
2917
|
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));
|
|
2775
2918
|
}
|
|
2776
|
-
.sm\:items-center {
|
|
2777
|
-
align-items: center;
|
|
2778
|
-
}
|
|
2779
2919
|
.sm\:px-0 {
|
|
2780
2920
|
padding-left: 0px;
|
|
2781
2921
|
padding-right: 0px;
|
|
@@ -2894,15 +3034,15 @@ video {
|
|
|
2894
3034
|
--card-radius: var(--card-radius-3);
|
|
2895
3035
|
}
|
|
2896
3036
|
|
|
2897
|
-
.v-enter-active[data-v-
|
|
2898
|
-
.v-leave-active[data-v-
|
|
3037
|
+
.v-enter-active[data-v-944bbf56],
|
|
3038
|
+
.v-leave-active[data-v-944bbf56] {
|
|
2899
3039
|
transition: opacity 0.2s ease-in-out;
|
|
2900
3040
|
}
|
|
2901
|
-
.v-enter-from[data-v-
|
|
2902
|
-
.v-leave-to[data-v-
|
|
3041
|
+
.v-enter-from[data-v-944bbf56],
|
|
3042
|
+
.v-leave-to[data-v-944bbf56] {
|
|
2903
3043
|
opacity: 0;
|
|
2904
3044
|
}
|
|
2905
|
-
.link-underline[data-v-
|
|
3045
|
+
.link-underline[data-v-944bbf56] {
|
|
2906
3046
|
text-decoration-line: underline;
|
|
2907
3047
|
}
|
|
2908
3048
|
|
|
@@ -2918,15 +3058,6 @@ footer[data-v-707bb46f] > * {
|
|
|
2918
3058
|
flex-grow: 1;
|
|
2919
3059
|
}
|
|
2920
3060
|
|
|
2921
|
-
.shadow[data-v-85ae98ed] {
|
|
2922
|
-
box-shadow: 0px 6px 29px rgba(0, 0, 0, 0.05),
|
|
2923
|
-
0px 2.50666px 12.1155px rgba(0, 0, 0, 0.0359427),
|
|
2924
|
-
0px 1.34018px 6.47753px rgba(0, 0, 0, 0.0298054),
|
|
2925
|
-
0px 0.751293px 3.63125px rgba(0, 0, 0, 0.025),
|
|
2926
|
-
0px 0.399006px 1.92853px rgba(0, 0, 0, 0.0201946),
|
|
2927
|
-
0px 0.166035px 0.802504px rgba(0, 0, 0, 0.0140573);
|
|
2928
|
-
}
|
|
2929
|
-
|
|
2930
3061
|
.with-tooltip[data-v-9a6feeac] {
|
|
2931
3062
|
position: relative
|
|
2932
3063
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juo/orion-extensions",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.8.0-staging.
|
|
4
|
+
"version": "0.8.0-staging.14",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"tailwindcss": "3.3.5",
|
|
46
46
|
"vue": "3.5.13",
|
|
47
47
|
"@juo/customer-ui": "0.0.0",
|
|
48
|
-
"@juo/orion-core": "0.12.0-staging.
|
|
48
|
+
"@juo/orion-core": "0.12.0-staging.14"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"dev": "vite build -w",
|