@nswds/app 1.59.0 → 1.60.0
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/globals.css +44 -0
- package/dist/index.cjs +414 -426
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +31 -13
- package/dist/index.d.ts +31 -13
- package/dist/index.js +278 -290
- package/dist/index.js.map +1 -1
- package/dist/styles.css +44 -0
- package/dist/styles.css.map +1 -1
- package/dist/styles.d.cts +1 -2
- package/dist/styles.d.ts +1 -2
- package/package.json +7 -6
package/dist/globals.css
CHANGED
|
@@ -2465,6 +2465,12 @@
|
|
|
2465
2465
|
background-color: color-mix(in oklab, var(--color-black) 50%, transparent);
|
|
2466
2466
|
}
|
|
2467
2467
|
}
|
|
2468
|
+
.bg-black\/80 {
|
|
2469
|
+
background-color: color-mix(in srgb, #000 80%, transparent);
|
|
2470
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2471
|
+
background-color: color-mix(in oklab, var(--color-black) 80%, transparent);
|
|
2472
|
+
}
|
|
2473
|
+
}
|
|
2468
2474
|
.bg-blue-50 {
|
|
2469
2475
|
background-color: var(--color-blue-50);
|
|
2470
2476
|
}
|
|
@@ -7237,6 +7243,11 @@
|
|
|
7237
7243
|
--tw-exit-translate-x: -100%;
|
|
7238
7244
|
}
|
|
7239
7245
|
}
|
|
7246
|
+
.data-\[state\=closed\]\:slide-out-to-left-1\/2 {
|
|
7247
|
+
&[data-state="closed"] {
|
|
7248
|
+
--tw-exit-translate-x: -50%;
|
|
7249
|
+
}
|
|
7250
|
+
}
|
|
7240
7251
|
.data-\[state\=closed\]\:slide-out-to-right {
|
|
7241
7252
|
&[data-state="closed"] {
|
|
7242
7253
|
--tw-exit-translate-x: 100%;
|
|
@@ -7247,6 +7258,11 @@
|
|
|
7247
7258
|
--tw-exit-translate-y: -100%;
|
|
7248
7259
|
}
|
|
7249
7260
|
}
|
|
7261
|
+
.data-\[state\=closed\]\:slide-out-to-top-\[48\%\] {
|
|
7262
|
+
&[data-state="closed"] {
|
|
7263
|
+
--tw-exit-translate-y: -48%;
|
|
7264
|
+
}
|
|
7265
|
+
}
|
|
7250
7266
|
.data-\[state\=closed\]\:zoom-out-95 {
|
|
7251
7267
|
&[data-state="closed"] {
|
|
7252
7268
|
--tw-exit-scale: .95;
|
|
@@ -7424,6 +7440,11 @@
|
|
|
7424
7440
|
--tw-enter-translate-x: -100%;
|
|
7425
7441
|
}
|
|
7426
7442
|
}
|
|
7443
|
+
.data-\[state\=open\]\:slide-in-from-left-1\/2 {
|
|
7444
|
+
&[data-state="open"] {
|
|
7445
|
+
--tw-enter-translate-x: -50%;
|
|
7446
|
+
}
|
|
7447
|
+
}
|
|
7427
7448
|
.data-\[state\=open\]\:slide-in-from-right {
|
|
7428
7449
|
&[data-state="open"] {
|
|
7429
7450
|
--tw-enter-translate-x: 100%;
|
|
@@ -7434,6 +7455,11 @@
|
|
|
7434
7455
|
--tw-enter-translate-y: -100%;
|
|
7435
7456
|
}
|
|
7436
7457
|
}
|
|
7458
|
+
.data-\[state\=open\]\:slide-in-from-top-\[48\%\] {
|
|
7459
|
+
&[data-state="open"] {
|
|
7460
|
+
--tw-enter-translate-y: -48%;
|
|
7461
|
+
}
|
|
7462
|
+
}
|
|
7437
7463
|
.data-\[state\=open\]\:zoom-in-90 {
|
|
7438
7464
|
&[data-state="open"] {
|
|
7439
7465
|
--tw-enter-scale: .9;
|
|
@@ -7946,6 +7972,15 @@
|
|
|
7946
7972
|
gap: calc(var(--spacing) * 4);
|
|
7947
7973
|
}
|
|
7948
7974
|
}
|
|
7975
|
+
.sm\:space-x-2 {
|
|
7976
|
+
@media (width >= 40rem) {
|
|
7977
|
+
:where(& > :not(:last-child)) {
|
|
7978
|
+
--tw-space-x-reverse: 0;
|
|
7979
|
+
margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
|
|
7980
|
+
margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
|
|
7981
|
+
}
|
|
7982
|
+
}
|
|
7983
|
+
}
|
|
7949
7984
|
.sm\:divide-x {
|
|
7950
7985
|
@media (width >= 40rem) {
|
|
7951
7986
|
:where(& > :not(:last-child)) {
|
|
@@ -7967,6 +8002,11 @@
|
|
|
7967
8002
|
}
|
|
7968
8003
|
}
|
|
7969
8004
|
}
|
|
8005
|
+
.sm\:rounded-lg {
|
|
8006
|
+
@media (width >= 40rem) {
|
|
8007
|
+
border-radius: var(--radius-lg);
|
|
8008
|
+
}
|
|
8009
|
+
}
|
|
7970
8010
|
.sm\:border-x {
|
|
7971
8011
|
@media (width >= 40rem) {
|
|
7972
8012
|
border-inline-style: var(--tw-border-style);
|
|
@@ -11696,6 +11736,10 @@ body {
|
|
|
11696
11736
|
[inert] ::-webkit-scrollbar {
|
|
11697
11737
|
display: none;
|
|
11698
11738
|
}
|
|
11739
|
+
button:not(:disabled),
|
|
11740
|
+
[role='button']:not(:disabled) {
|
|
11741
|
+
cursor: pointer;
|
|
11742
|
+
}
|
|
11699
11743
|
}
|
|
11700
11744
|
.dark {
|
|
11701
11745
|
--sidebar: hsl(240 5.9% 10%);
|