@nswds/app 1.65.4 → 1.66.1
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 +76 -1
- package/dist/index.cjs +15 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +14 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +15 -1
- package/dist/index.js.map +1 -1
- package/dist/styles.css +73 -1
- package/dist/styles.css.map +1 -1
- package/package.json +4 -4
package/dist/styles.css
CHANGED
|
@@ -350,6 +350,9 @@
|
|
|
350
350
|
::-webkit-datetime-edit-meridiem-field {
|
|
351
351
|
padding-block: 0;
|
|
352
352
|
}
|
|
353
|
+
::-webkit-calendar-picker-indicator {
|
|
354
|
+
line-height: 1;
|
|
355
|
+
}
|
|
353
356
|
:-moz-ui-invalid {
|
|
354
357
|
box-shadow: none;
|
|
355
358
|
}
|
|
@@ -598,6 +601,12 @@
|
|
|
598
601
|
.-mx-1 {
|
|
599
602
|
margin-inline: calc(var(--spacing) * -1);
|
|
600
603
|
}
|
|
604
|
+
.-mx-2 {
|
|
605
|
+
margin-inline: calc(var(--spacing) * -2);
|
|
606
|
+
}
|
|
607
|
+
.-mx-6 {
|
|
608
|
+
margin-inline: calc(var(--spacing) * -6);
|
|
609
|
+
}
|
|
601
610
|
.mx-1 {
|
|
602
611
|
margin-inline: calc(var(--spacing) * 1);
|
|
603
612
|
}
|
|
@@ -2063,6 +2072,9 @@
|
|
|
2063
2072
|
.gap-x-2\.5 {
|
|
2064
2073
|
column-gap: calc(var(--spacing) * 2.5);
|
|
2065
2074
|
}
|
|
2075
|
+
.gap-x-3 {
|
|
2076
|
+
column-gap: calc(var(--spacing) * 3);
|
|
2077
|
+
}
|
|
2066
2078
|
.gap-x-4 {
|
|
2067
2079
|
column-gap: calc(var(--spacing) * 4);
|
|
2068
2080
|
}
|
|
@@ -2126,6 +2138,9 @@
|
|
|
2126
2138
|
.gap-y-3 {
|
|
2127
2139
|
row-gap: calc(var(--spacing) * 3);
|
|
2128
2140
|
}
|
|
2141
|
+
.gap-y-7 {
|
|
2142
|
+
row-gap: calc(var(--spacing) * 7);
|
|
2143
|
+
}
|
|
2129
2144
|
.divide-y {
|
|
2130
2145
|
:where(& > :not(:last-child)) {
|
|
2131
2146
|
--tw-divide-y-reverse: 0;
|
|
@@ -2541,6 +2556,9 @@
|
|
|
2541
2556
|
.bg-fuchsia-500 {
|
|
2542
2557
|
background-color: var(--color-fuchsia-500);
|
|
2543
2558
|
}
|
|
2559
|
+
.bg-gray-50 {
|
|
2560
|
+
background-color: var(--color-gray-50);
|
|
2561
|
+
}
|
|
2544
2562
|
.bg-gray-400 {
|
|
2545
2563
|
background-color: var(--color-gray-400);
|
|
2546
2564
|
}
|
|
@@ -3123,6 +3141,9 @@
|
|
|
3123
3141
|
.pl-8 {
|
|
3124
3142
|
padding-left: calc(var(--spacing) * 8);
|
|
3125
3143
|
}
|
|
3144
|
+
.pl-9 {
|
|
3145
|
+
padding-left: calc(var(--spacing) * 9);
|
|
3146
|
+
}
|
|
3126
3147
|
.pl-10 {
|
|
3127
3148
|
padding-left: calc(var(--spacing) * 10);
|
|
3128
3149
|
}
|
|
@@ -3805,9 +3826,18 @@
|
|
|
3805
3826
|
outline-style: var(--tw-outline-style);
|
|
3806
3827
|
outline-width: 0px;
|
|
3807
3828
|
}
|
|
3829
|
+
.-outline-offset-1 {
|
|
3830
|
+
outline-offset: calc(1px * -1);
|
|
3831
|
+
}
|
|
3808
3832
|
.outline-offset-2 {
|
|
3809
3833
|
outline-offset: 2px;
|
|
3810
3834
|
}
|
|
3835
|
+
.outline-black\/5 {
|
|
3836
|
+
outline-color: color-mix(in srgb, #000 5%, transparent);
|
|
3837
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3838
|
+
outline-color: color-mix(in oklab, var(--color-black) 5%, transparent);
|
|
3839
|
+
}
|
|
3840
|
+
}
|
|
3811
3841
|
.outline-primary-500 {
|
|
3812
3842
|
outline-color: oklch(0.719602022988773 0.1609881523353869 242.17574150873253);
|
|
3813
3843
|
}
|
|
@@ -4700,6 +4730,16 @@
|
|
|
4700
4730
|
}
|
|
4701
4731
|
}
|
|
4702
4732
|
}
|
|
4733
|
+
.group-data-open\:rotate-90 {
|
|
4734
|
+
&:is(:where(.group)[data-open] *) {
|
|
4735
|
+
rotate: 90deg;
|
|
4736
|
+
}
|
|
4737
|
+
}
|
|
4738
|
+
.group-data-open\:text-gray-500 {
|
|
4739
|
+
&:is(:where(.group)[data-open] *) {
|
|
4740
|
+
color: var(--color-gray-500);
|
|
4741
|
+
}
|
|
4742
|
+
}
|
|
4703
4743
|
.group-data-selected\/option\:inline {
|
|
4704
4744
|
&:is(:where(.group\/option)[data-selected] *) {
|
|
4705
4745
|
display: inline;
|
|
@@ -9537,6 +9577,11 @@
|
|
|
9537
9577
|
}
|
|
9538
9578
|
}
|
|
9539
9579
|
}
|
|
9580
|
+
.dark\:text-current {
|
|
9581
|
+
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
9582
|
+
color: currentcolor;
|
|
9583
|
+
}
|
|
9584
|
+
}
|
|
9540
9585
|
.dark\:text-gray-50 {
|
|
9541
9586
|
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
9542
9587
|
color: var(--color-gray-50);
|
|
@@ -9685,6 +9730,14 @@
|
|
|
9685
9730
|
outline-color: oklch(0.719602022988773 0.1609881523353869 242.17574150873253);
|
|
9686
9731
|
}
|
|
9687
9732
|
}
|
|
9733
|
+
.dark\:outline-white\/10 {
|
|
9734
|
+
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
9735
|
+
outline-color: color-mix(in srgb, #fff 10%, transparent);
|
|
9736
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
9737
|
+
outline-color: color-mix(in oklab, var(--color-white) 10%, transparent);
|
|
9738
|
+
}
|
|
9739
|
+
}
|
|
9740
|
+
}
|
|
9688
9741
|
.dark\:backdrop-blur-sm {
|
|
9689
9742
|
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
9690
9743
|
--tw-backdrop-blur: blur(var(--blur-sm));
|
|
@@ -9991,6 +10044,13 @@
|
|
|
9991
10044
|
}
|
|
9992
10045
|
}
|
|
9993
10046
|
}
|
|
10047
|
+
.dark\:group-data-open\:text-gray-400 {
|
|
10048
|
+
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
10049
|
+
&:is(:where(.group)[data-open] *) {
|
|
10050
|
+
color: var(--color-gray-400);
|
|
10051
|
+
}
|
|
10052
|
+
}
|
|
10053
|
+
}
|
|
9994
10054
|
.dark\:group-data-\[disabled\=true\]\:text-grey-400 {
|
|
9995
10055
|
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
9996
10056
|
&:is(:where(.group)[data-disabled=true] *) {
|
|
@@ -10129,6 +10189,18 @@
|
|
|
10129
10189
|
}
|
|
10130
10190
|
}
|
|
10131
10191
|
}
|
|
10192
|
+
.dark\:hover\:bg-white\/5 {
|
|
10193
|
+
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
10194
|
+
&:hover {
|
|
10195
|
+
@media (hover: hover) {
|
|
10196
|
+
background-color: color-mix(in srgb, #fff 5%, transparent);
|
|
10197
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
10198
|
+
background-color: color-mix(in oklab, var(--color-white) 5%, transparent);
|
|
10199
|
+
}
|
|
10200
|
+
}
|
|
10201
|
+
}
|
|
10202
|
+
}
|
|
10203
|
+
}
|
|
10132
10204
|
.dark\:hover\:bg-white\/10 {
|
|
10133
10205
|
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
10134
10206
|
&:hover {
|
|
@@ -12448,5 +12520,5 @@ body {
|
|
|
12448
12520
|
}
|
|
12449
12521
|
}
|
|
12450
12522
|
}
|
|
12451
|
-
/*! tailwindcss v4.1.
|
|
12523
|
+
/*! tailwindcss v4.1.12 | MIT License | https://tailwindcss.com */
|
|
12452
12524
|
/*# sourceMappingURL=styles.css.map */
|