@nswds/app 1.93.0 → 1.94.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 +65 -60
- package/dist/index.cjs +14 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +14 -9
- package/dist/index.js.map +1 -1
- package/dist/styles.css +127 -57
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
package/dist/globals.css
CHANGED
|
@@ -2470,12 +2470,6 @@
|
|
|
2470
2470
|
border-color: color-mix(in oklab, var(--color-grey-950) 5%, transparent);
|
|
2471
2471
|
}
|
|
2472
2472
|
}
|
|
2473
|
-
.border-grey-950\/10 {
|
|
2474
|
-
border-color: var(--color-grey-950);
|
|
2475
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2476
|
-
border-color: color-mix(in oklab, var(--color-grey-950) 10%, transparent);
|
|
2477
|
-
}
|
|
2478
|
-
}
|
|
2479
2473
|
.border-inherit {
|
|
2480
2474
|
border-color: inherit;
|
|
2481
2475
|
}
|
|
@@ -2674,15 +2668,6 @@
|
|
|
2674
2668
|
.bg-grey-800 {
|
|
2675
2669
|
background-color: var(--color-grey-800);
|
|
2676
2670
|
}
|
|
2677
|
-
.bg-grey-950 {
|
|
2678
|
-
background-color: var(--color-grey-950);
|
|
2679
|
-
}
|
|
2680
|
-
.bg-grey-950\/\[2\.5\%\] {
|
|
2681
|
-
background-color: var(--color-grey-950);
|
|
2682
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2683
|
-
background-color: color-mix(in oklab, var(--color-grey-950) 2.5%, transparent);
|
|
2684
|
-
}
|
|
2685
|
-
}
|
|
2686
2671
|
.bg-lime-500 {
|
|
2687
2672
|
background-color: var(--color-lime-500);
|
|
2688
2673
|
}
|
|
@@ -2995,9 +2980,6 @@
|
|
|
2995
2980
|
.px-0 {
|
|
2996
2981
|
padding-inline: calc(var(--spacing) * 0);
|
|
2997
2982
|
}
|
|
2998
|
-
.px-0\.5 {
|
|
2999
|
-
padding-inline: calc(var(--spacing) * 0.5);
|
|
3000
|
-
}
|
|
3001
2983
|
.px-1 {
|
|
3002
2984
|
padding-inline: calc(var(--spacing) * 1);
|
|
3003
2985
|
}
|
|
@@ -9588,14 +9570,6 @@
|
|
|
9588
9570
|
}
|
|
9589
9571
|
}
|
|
9590
9572
|
}
|
|
9591
|
-
.dark\:border-white\/20 {
|
|
9592
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
9593
|
-
border-color: color-mix(in srgb, #fff 20%, transparent);
|
|
9594
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
9595
|
-
border-color: color-mix(in oklab, var(--color-white) 20%, transparent);
|
|
9596
|
-
}
|
|
9597
|
-
}
|
|
9598
|
-
}
|
|
9599
9573
|
.dark\:bg-\(--badge-bg\) {
|
|
9600
9574
|
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
9601
9575
|
background-color: var(--badge-bg);
|
|
@@ -10703,6 +10677,23 @@
|
|
|
10703
10677
|
}
|
|
10704
10678
|
}
|
|
10705
10679
|
}
|
|
10680
|
+
.dark\:focus\:bg-primary-200\/10 {
|
|
10681
|
+
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
10682
|
+
&:focus {
|
|
10683
|
+
background-color: var(--color-primary-200);
|
|
10684
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
10685
|
+
background-color: color-mix(in oklab, var(--color-primary-200) 10%, transparent);
|
|
10686
|
+
}
|
|
10687
|
+
}
|
|
10688
|
+
}
|
|
10689
|
+
}
|
|
10690
|
+
.dark\:focus\:text-primary-200 {
|
|
10691
|
+
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
10692
|
+
&:focus {
|
|
10693
|
+
color: var(--color-primary-200);
|
|
10694
|
+
}
|
|
10695
|
+
}
|
|
10696
|
+
}
|
|
10706
10697
|
.dark\:focus\:ring-primary-700\/30 {
|
|
10707
10698
|
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
10708
10699
|
&:focus {
|
|
@@ -10895,6 +10886,13 @@
|
|
|
10895
10886
|
}
|
|
10896
10887
|
}
|
|
10897
10888
|
}
|
|
10889
|
+
.dark\:data-\[placeholder\]\:text-grey-400 {
|
|
10890
|
+
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
10891
|
+
&[data-placeholder] {
|
|
10892
|
+
color: var(--color-grey-400);
|
|
10893
|
+
}
|
|
10894
|
+
}
|
|
10895
|
+
}
|
|
10898
10896
|
.dark\:\*\:data-\[slot\=icon\]\:fill-zinc-400 {
|
|
10899
10897
|
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
10900
10898
|
:is(& > *) {
|
|
@@ -11651,6 +11649,13 @@
|
|
|
11651
11649
|
color: var(--muted-foreground);
|
|
11652
11650
|
}
|
|
11653
11651
|
}
|
|
11652
|
+
.dark\:\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-grey-400 {
|
|
11653
|
+
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
11654
|
+
& svg:not([class*='text-']) {
|
|
11655
|
+
color: var(--color-grey-400);
|
|
11656
|
+
}
|
|
11657
|
+
}
|
|
11658
|
+
}
|
|
11654
11659
|
.\[\&_svg\:not\(\[class\*\=\\\"size-\\\"\]\)\]\:size-4 {
|
|
11655
11660
|
& svg:not([class*=\"size-\"]) {
|
|
11656
11661
|
width: calc(var(--spacing) * 4);
|
|
@@ -12975,138 +12980,138 @@
|
|
|
12975
12980
|
bottom: 0;
|
|
12976
12981
|
right: 0;
|
|
12977
12982
|
}
|
|
12978
|
-
.dark .code-responsive-wrapper {
|
|
12983
|
+
.dark .code-responsive-wrapper, [data-theme='dark'] .code-responsive-wrapper {
|
|
12979
12984
|
background-color: #111827;
|
|
12980
12985
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fillRule='evenodd'%3E%3Cg fill='%236b7280' fill-opacity='0.4'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
|
|
12981
12986
|
}
|
|
12982
|
-
.dark code[class*='language-'], .dark pre[class*='language-'], pre.dark[class*='language-'] {
|
|
12987
|
+
.dark code[class*='language-'], .dark pre[class*='language-'], pre.dark[class*='language-'], [data-theme='dark'] code[class*='language-'], [data-theme='dark'] pre[class*='language-'], pre[data-theme='dark'][class*='language-'] {
|
|
12983
12988
|
--tw-text-opacity: 1;
|
|
12984
12989
|
color: rgb(241 126 184 / var(--tw-text-opacity, 1));
|
|
12985
12990
|
}
|
|
12986
|
-
.dark .highlight-line {
|
|
12991
|
+
.dark .highlight-line, [data-theme='dark'] .highlight-line {
|
|
12987
12992
|
--tw-bg-opacity: 1;
|
|
12988
12993
|
background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
|
|
12989
12994
|
}
|
|
12990
|
-
.dark .code-preview-wrapper + .code-syntax-wrapper > .code-syntax > .relative > [data-code-wrapper] > .highlight > pre[class*='language-'], .dark .highlight pre[class*='language-'], .dark :not(pre) > code[class*='language-'], .dark pre[class*='language-'], pre.dark[class*='language-'] {
|
|
12995
|
+
.dark .code-preview-wrapper + .code-syntax-wrapper > .code-syntax > .relative > [data-code-wrapper] > .highlight > pre[class*='language-'], [data-theme='dark'] .code-preview-wrapper + .code-syntax-wrapper > .code-syntax > .relative > [data-code-wrapper] > .highlight > pre[class*='language-'], .dark .highlight pre[class*='language-'], [data-theme='dark'] .highlight pre[class*='language-'], .dark :not(pre) > code[class*='language-'], [data-theme='dark'] :not(pre) > code[class*='language-'], .dark pre[class*='language-'], [data-theme='dark'] pre[class*='language-'], pre.dark[class*='language-'], pre[data-theme='dark'][class*='language-'] {
|
|
12991
12996
|
--tw-bg-opacity: 1;
|
|
12992
12997
|
background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
|
|
12993
12998
|
}
|
|
12994
|
-
.dark .token.cdata, .dark .token.comment, .dark .token.doctype, .dark .token.prolog {
|
|
12999
|
+
.dark .token.cdata, .dark .token.comment, .dark .token.doctype, .dark .token.prolog, [data-theme='dark'] .token.cdata, [data-theme='dark'] .token.comment, [data-theme='dark'] .token.doctype, [data-theme='dark'] .token.prolog {
|
|
12995
13000
|
--tw-text-opacity: 1;
|
|
12996
13001
|
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
12997
13002
|
}
|
|
12998
|
-
.dark .token.punctuation {
|
|
13003
|
+
.dark .token.punctuation, [data-theme='dark'] .token.punctuation {
|
|
12999
13004
|
--tw-text-opacity: 1;
|
|
13000
13005
|
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
13001
13006
|
}
|
|
13002
|
-
.dark .token.class-name, .dark .token.keyword, .dark .token.property, .dark .token.tag {
|
|
13007
|
+
.dark .token.class-name, .dark .token.keyword, .dark .token.property, .dark .token.tag, [data-theme='dark'] .token.class-name, [data-theme='dark'] .token.keyword, [data-theme='dark'] .token.property, [data-theme='dark'] .token.tag {
|
|
13003
13008
|
--tw-text-opacity: 1;
|
|
13004
13009
|
color: rgb(172 148 250 / var(--tw-text-opacity, 1));
|
|
13005
13010
|
}
|
|
13006
|
-
.dark .token.boolean, .dark .token.constant {
|
|
13011
|
+
.dark .token.boolean, .dark .token.constant, [data-theme='dark'] .token.boolean, [data-theme='dark'] .token.constant {
|
|
13007
13012
|
--tw-text-opacity: 1;
|
|
13008
13013
|
color: rgb(52 211 153 / var(--tw-text-opacity, 1));
|
|
13009
13014
|
}
|
|
13010
|
-
.dark .token.deleted, .dark .token.symbol {
|
|
13015
|
+
.dark .token.deleted, .dark .token.symbol, [data-theme='dark'] .token.deleted, [data-theme='dark'] .token.symbol {
|
|
13011
13016
|
--tw-text-opacity: 1;
|
|
13012
13017
|
color: rgb(249 128 128 / var(--tw-text-opacity, 1));
|
|
13013
13018
|
}
|
|
13014
|
-
.dark .token.number {
|
|
13019
|
+
.dark .token.number, [data-theme='dark'] .token.number {
|
|
13015
13020
|
--tw-text-opacity: 1;
|
|
13016
13021
|
color: rgb(241 126 184 / var(--tw-text-opacity, 1));
|
|
13017
13022
|
}
|
|
13018
|
-
.dark .token.attr-name, .dark .token.builtin, .dark .token.char, .dark .token.inserted, .dark .token.selector, .dark .token.string {
|
|
13023
|
+
.dark .token.attr-name, .dark .token.builtin, .dark .token.char, .dark .token.inserted, .dark .token.selector, .dark .token.string, [data-theme='dark'] .token.attr-name, [data-theme='dark'] .token.builtin, [data-theme='dark'] .token.char, [data-theme='dark'] .token.inserted, [data-theme='dark'] .token.selector, [data-theme='dark'] .token.string {
|
|
13019
13024
|
--tw-text-opacity: 1;
|
|
13020
13025
|
color: rgb(56 189 248 / var(--tw-text-opacity, 1));
|
|
13021
13026
|
}
|
|
13022
|
-
.dark .token.variable {
|
|
13027
|
+
.dark .token.variable, [data-theme='dark'] .token.variable {
|
|
13023
13028
|
--tw-text-opacity: 1;
|
|
13024
13029
|
color: rgb(172 148 250 / var(--tw-text-opacity, 1));
|
|
13025
13030
|
}
|
|
13026
|
-
.dark .token.operator {
|
|
13031
|
+
.dark .token.operator, [data-theme='dark'] .token.operator {
|
|
13027
13032
|
--tw-text-opacity: 1;
|
|
13028
13033
|
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
13029
13034
|
}
|
|
13030
|
-
.dark .token.entity {
|
|
13035
|
+
.dark .token.entity, [data-theme='dark'] .token.entity {
|
|
13031
13036
|
--tw-text-opacity: 1;
|
|
13032
13037
|
color: rgb(250 202 21 / var(--tw-text-opacity, 1));
|
|
13033
13038
|
}
|
|
13034
|
-
.dark .token.url {
|
|
13039
|
+
.dark .token.url, [data-theme='dark'] .token.url {
|
|
13035
13040
|
--tw-text-opacity: 1;
|
|
13036
13041
|
color: rgb(6 182 212 / var(--tw-text-opacity, 1));
|
|
13037
13042
|
}
|
|
13038
|
-
.dark .language-css .token.string, .dark .style .token.string {
|
|
13043
|
+
.dark .language-css .token.string, .dark .style .token.string, [data-theme='dark'] .language-css .token.string, [data-theme='dark'] .style .token.string {
|
|
13039
13044
|
--tw-text-opacity: 1;
|
|
13040
13045
|
color: rgb(249 128 128 / var(--tw-text-opacity, 1));
|
|
13041
13046
|
}
|
|
13042
|
-
.dark .token.atrule, .dark .token.attr-value {
|
|
13047
|
+
.dark .token.atrule, .dark .token.attr-value, [data-theme='dark'] .token.atrule, [data-theme='dark'] .token.attr-value {
|
|
13043
13048
|
--tw-text-opacity: 1;
|
|
13044
13049
|
color: rgb(110 231 183 / var(--tw-text-opacity, 1));
|
|
13045
13050
|
}
|
|
13046
|
-
.dark .token.function {
|
|
13051
|
+
.dark .token.function, [data-theme='dark'] .token.function {
|
|
13047
13052
|
--tw-text-opacity: 1;
|
|
13048
13053
|
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
13049
13054
|
}
|
|
13050
|
-
.dark .token {
|
|
13055
|
+
.dark .token, [data-theme='dark'] .token {
|
|
13051
13056
|
--tw-text-opacity: 1;
|
|
13052
13057
|
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
13053
13058
|
}
|
|
13054
|
-
.dark code.language-bash, .dark code.language-tsx, .dark pre.language-bash {
|
|
13059
|
+
.dark code.language-bash, .dark code.language-tsx, .dark pre.language-bash, [data-theme='dark'] code.language-bash, [data-theme='dark'] code.language-tsx, [data-theme='dark'] pre.language-bash {
|
|
13055
13060
|
--tw-text-opacity: 1;
|
|
13056
13061
|
color: rgb(34 211 238 / var(--tw-text-opacity, 1));
|
|
13057
13062
|
}
|
|
13058
|
-
.dark code.language-tsx .token.function {
|
|
13063
|
+
.dark code.language-tsx .token.function, [data-theme='dark'] code.language-tsx .token.function {
|
|
13059
13064
|
--tw-text-opacity: 1;
|
|
13060
13065
|
color: rgb(132 225 188 / var(--tw-text-opacity, 1));
|
|
13061
13066
|
}
|
|
13062
|
-
.dark code.language-tsx .token.punctuation {
|
|
13067
|
+
.dark code.language-tsx .token.punctuation, [data-theme='dark'] code.language-tsx .token.punctuation {
|
|
13063
13068
|
--tw-text-opacity: 1;
|
|
13064
13069
|
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
13065
13070
|
}
|
|
13066
|
-
.dark code.language-tsx .token.keyword {
|
|
13071
|
+
.dark code.language-tsx .token.keyword, [data-theme='dark'] code.language-tsx .token.keyword {
|
|
13067
13072
|
--tw-text-opacity: 1;
|
|
13068
13073
|
color: rgb(232 121 249 / var(--tw-text-opacity, 1));
|
|
13069
13074
|
}
|
|
13070
|
-
.dark code.language-tsx .token.comment {
|
|
13075
|
+
.dark code.language-tsx .token.comment, [data-theme='dark'] code.language-tsx .token.comment {
|
|
13071
13076
|
--tw-text-opacity: 1;
|
|
13072
13077
|
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
13073
13078
|
}
|
|
13074
|
-
.dark code.language-tsx .token.class-name, .dark code.language-tsx .token.string {
|
|
13079
|
+
.dark code.language-tsx .token.class-name, .dark code.language-tsx .token.string, [data-theme='dark'] code.language-tsx .token.class-name, [data-theme='dark'] code.language-tsx .token.string {
|
|
13075
13080
|
--tw-text-opacity: 1;
|
|
13076
13081
|
color: rgb(172 148 250 / var(--tw-text-opacity, 1));
|
|
13077
13082
|
}
|
|
13078
|
-
.dark code.language-html .token.tag {
|
|
13083
|
+
.dark code.language-html .token.tag, [data-theme='dark'] code.language-html .token.tag {
|
|
13079
13084
|
--tw-text-opacity: 1;
|
|
13080
13085
|
color: rgb(232 121 249 / var(--tw-text-opacity, 1));
|
|
13081
13086
|
}
|
|
13082
|
-
.dark code.language-html .token.attr-name {
|
|
13087
|
+
.dark code.language-html .token.attr-name, [data-theme='dark'] code.language-html .token.attr-name {
|
|
13083
13088
|
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
13084
13089
|
}
|
|
13085
|
-
.dark code.language-html .token.attr-value {
|
|
13090
|
+
.dark code.language-html .token.attr-value, [data-theme='dark'] code.language-html .token.attr-value {
|
|
13086
13091
|
--tw-text-opacity: 1;
|
|
13087
13092
|
color: rgb(34 211 238 / var(--tw-text-opacity, 1));
|
|
13088
13093
|
}
|
|
13089
|
-
.dark code.language-html .token.punctuation {
|
|
13094
|
+
.dark code.language-html .token.punctuation, [data-theme='dark'] code.language-html .token.punctuation {
|
|
13090
13095
|
--tw-text-opacity: 1;
|
|
13091
13096
|
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
13092
13097
|
}
|
|
13093
|
-
.dark code.language-html .token.attr-name {
|
|
13098
|
+
.dark code.language-html .token.attr-name, [data-theme='dark'] code.language-html .token.attr-name {
|
|
13094
13099
|
--tw-text-opacity: 1;
|
|
13095
13100
|
color: rgb(49 196 141 / var(--tw-text-opacity, 1));
|
|
13096
13101
|
}
|
|
13097
|
-
.dark code.language-html .token.comment {
|
|
13102
|
+
.dark code.language-html .token.comment, [data-theme='dark'] code.language-html .token.comment {
|
|
13098
13103
|
--tw-text-opacity: 1;
|
|
13099
13104
|
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
13100
13105
|
}
|
|
13101
|
-
.dark #carbonads {
|
|
13106
|
+
.dark #carbonads, [data-theme='dark'] #carbonads {
|
|
13102
13107
|
--tw-bg-opacity: 1;
|
|
13103
13108
|
--tw-text-opacity: 1;
|
|
13104
13109
|
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
13105
13110
|
}
|
|
13106
|
-
.dark #carbonads, .dark #carbonads .carbon-poweredby {
|
|
13111
|
+
.dark #carbonads, .dark #carbonads .carbon-poweredby, [data-theme='dark'] #carbonads, [data-theme='dark'] #carbonads .carbon-poweredby {
|
|
13107
13112
|
background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
|
|
13108
13113
|
}
|
|
13109
|
-
.dark #carbonads .carbon-poweredby {
|
|
13114
|
+
.dark #carbonads .carbon-poweredby, [data-theme='dark'] #carbonads .carbon-poweredby {
|
|
13110
13115
|
--tw-bg-opacity: 1;
|
|
13111
13116
|
}
|
|
13112
13117
|
.prose {
|
package/dist/index.cjs
CHANGED
|
@@ -13737,7 +13737,7 @@ function SelectTrigger({
|
|
|
13737
13737
|
"data-size": size,
|
|
13738
13738
|
className: cn(
|
|
13739
13739
|
// Base styles
|
|
13740
|
-
"flex w-full items-center justify-between gap-2 rounded-sm border border-grey-600 bg-transparent px-3 py-2 text-sm whitespace-nowrap shadow-xs transition-[color,box-shadow] *:data-[slot=select-value]:line-clamp-1 *:data-[slot=select-value]:flex *:data-[slot=select-value]:items-center *:data-[slot=select-value]:gap-2 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 [&_svg:not([class*='text-'])]:text-grey-600",
|
|
13740
|
+
"flex w-full items-center justify-between gap-2 rounded-sm border border-grey-600 bg-transparent px-3 py-2 text-sm whitespace-nowrap shadow-xs transition-[color,box-shadow] *:data-[slot=select-value]:line-clamp-1 *:data-[slot=select-value]:flex *:data-[slot=select-value]:items-center *:data-[slot=select-value]:gap-2 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 [&_svg:not([class*='text-'])]:text-grey-600 dark:[&_svg:not([class*='text-'])]:text-grey-400",
|
|
13741
13741
|
// Disabled styles
|
|
13742
13742
|
"disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50",
|
|
13743
13743
|
// aria-invalid styles
|
|
@@ -13745,9 +13745,9 @@ function SelectTrigger({
|
|
|
13745
13745
|
// Focus styles
|
|
13746
13746
|
"focus:outline focus:outline-2 focus:outline-offset-2 focus:outline-primary-650/70",
|
|
13747
13747
|
// Placeholder styles
|
|
13748
|
-
"data-[placeholder]:text-grey-600",
|
|
13748
|
+
"data-[placeholder]:text-grey-600 dark:data-[placeholder]:text-grey-400",
|
|
13749
13749
|
// Dark mode styles
|
|
13750
|
-
"dark:bg-input/30 dark:hover:bg-input/50",
|
|
13750
|
+
"dark:bg-input/30 dark:hover:bg-input/50 dark:border-grey-700",
|
|
13751
13751
|
// Size styles
|
|
13752
13752
|
"data-[size=default]:h-12 data-[size=sm]:h-9",
|
|
13753
13753
|
className
|
|
@@ -13772,7 +13772,7 @@ function SelectContent({
|
|
|
13772
13772
|
"data-slot": "select-content",
|
|
13773
13773
|
className: cn(
|
|
13774
13774
|
// Base styles
|
|
13775
|
-
"relative z-50 max-h-(--radix-select-content-available-height) min-w-[8rem] origin-(--radix-select-content-transform-origin) overflow-x-hidden overflow-y-auto rounded-sm border border-grey-200 bg-white text-grey-800 shadow-md",
|
|
13775
|
+
"relative z-50 max-h-(--radix-select-content-available-height) min-w-[8rem] origin-(--radix-select-content-transform-origin) overflow-x-hidden overflow-y-auto rounded-sm border border-grey-200 bg-white text-grey-800 shadow-md dark:border-grey-700 dark:bg-grey-900 dark:text-grey-100",
|
|
13776
13776
|
// State styles
|
|
13777
13777
|
"data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95",
|
|
13778
13778
|
position === "popper" && "data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",
|
|
@@ -13802,7 +13802,7 @@ function SelectLabel({ className, ...props }) {
|
|
|
13802
13802
|
SelectPrimitive__namespace.Label,
|
|
13803
13803
|
{
|
|
13804
13804
|
"data-slot": "select-label",
|
|
13805
|
-
className: cn("px-2 py-1.5 text-xs text-grey-600", className),
|
|
13805
|
+
className: cn("px-2 py-1.5 text-xs text-grey-600 dark:text-grey-400", className),
|
|
13806
13806
|
...props
|
|
13807
13807
|
}
|
|
13808
13808
|
);
|
|
@@ -13817,7 +13817,7 @@ function SelectItem({
|
|
|
13817
13817
|
{
|
|
13818
13818
|
"data-slot": "select-item",
|
|
13819
13819
|
className: cn(
|
|
13820
|
-
"relative flex w-full cursor-default items-center gap-2 rounded-sm py-1.5 pr-8 pl-2 text-sm outline-hidden select-none focus:bg-primary-800/10 focus:font-bold focus:text-primary-800 data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-6 [&_svg:not([class*='text-'])]:text-grey-600 *:[span]:last:flex *:[span]:last:items-center *:[span]:last:gap-2",
|
|
13820
|
+
"relative flex w-full cursor-default items-center gap-2 rounded-sm py-1.5 pr-8 pl-2 text-sm outline-hidden select-none focus:bg-primary-800/10 focus:font-bold focus:text-primary-800 dark:focus:bg-primary-200/10 dark:focus:text-primary-200 data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-6 [&_svg:not([class*='text-'])]:text-grey-600 dark:[&_svg:not([class*='text-'])]:text-grey-400 *:[span]:last:flex *:[span]:last:items-center *:[span]:last:gap-2",
|
|
13821
13821
|
className
|
|
13822
13822
|
),
|
|
13823
13823
|
...props,
|
|
@@ -13836,7 +13836,10 @@ function SelectSeparator({
|
|
|
13836
13836
|
SelectPrimitive__namespace.Separator,
|
|
13837
13837
|
{
|
|
13838
13838
|
"data-slot": "select-separator",
|
|
13839
|
-
className: cn(
|
|
13839
|
+
className: cn(
|
|
13840
|
+
"pointer-events-none -mx-1 my-1 h-px bg-primary-800/20 dark:bg-grey-700",
|
|
13841
|
+
className
|
|
13842
|
+
),
|
|
13840
13843
|
...props
|
|
13841
13844
|
}
|
|
13842
13845
|
);
|
|
@@ -17593,7 +17596,7 @@ function FormatToggle({ format, setFormat }) {
|
|
|
17593
17596
|
|
|
17594
17597
|
// package.json
|
|
17595
17598
|
var package_default = {
|
|
17596
|
-
version: "1.
|
|
17599
|
+
version: "1.93.0"};
|
|
17597
17600
|
var SluggerContext = React5__namespace.default.createContext(null);
|
|
17598
17601
|
function flattenText(nodes) {
|
|
17599
17602
|
if (nodes == null || typeof nodes === "boolean") return "";
|
|
@@ -18997,13 +19000,15 @@ function Strong({ className, ...props }) {
|
|
|
18997
19000
|
return /* @__PURE__ */ jsxRuntime.jsx("strong", { ...props, className: clsx12__default.default(className, "font-medium text-grey-950 dark:text-white") });
|
|
18998
19001
|
}
|
|
18999
19002
|
function Code({ className, ...props }) {
|
|
19003
|
+
const hasLanguageClass = typeof className === "string" && className.includes("language-");
|
|
19000
19004
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
19001
19005
|
"code",
|
|
19002
19006
|
{
|
|
19003
19007
|
...props,
|
|
19004
19008
|
className: clsx12__default.default(
|
|
19005
19009
|
className,
|
|
19006
|
-
|
|
19010
|
+
!hasLanguageClass && "language-plaintext",
|
|
19011
|
+
"text-sm sm:text-[0.8125rem]"
|
|
19007
19012
|
)
|
|
19008
19013
|
}
|
|
19009
19014
|
);
|