@sanity/ui 4.0.0-static.24 → 4.0.0-static.26
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/css/index.css +1 -1
- package/dist/css/index.css.map +1 -1
- package/dist/css/index.d.ts +22 -6
- package/dist/css/index.js +29 -20
- package/dist/css/index.js.map +1 -1
- package/dist/index.d.ts +8 -13
- package/dist/index.js +519 -531
- package/dist/index.js.map +1 -1
- package/exports/css/index.css +1 -0
- package/package.json +12 -12
- package/src/core/components/dialog/__workshop__/Panes.tsx +4 -0
- package/src/core/components/menu/Menu.tsx +0 -4
- package/src/core/components/menu/MenuItem.tsx +1 -1
- package/src/core/components/toast/useToast.ts +2 -2
- package/src/core/primitives/avatar/Avatar.tsx +2 -2
- package/src/core/primitives/avatar/__workshop__/PropsStory.tsx +22 -0
- package/src/core/primitives/avatar/__workshop__/index.ts +5 -0
- package/src/core/primitives/button/Button.tsx +5 -5
- package/src/core/primitives/code/Code.tsx +25 -1
- package/src/core/primitives/heading/Heading.tsx +16 -0
- package/src/core/primitives/label/Label.tsx +16 -0
- package/src/core/primitives/radio/Radio.tsx +2 -2
- package/src/core/primitives/select/Select.tsx +5 -3
- package/src/core/primitives/switch/Switch.tsx +2 -10
- package/src/core/primitives/text/Text.tsx +14 -0
- package/src/core/primitives/textArea/TextArea.tsx +7 -1
- package/src/core/primitives/textInput/TextInput.tsx +18 -17
- package/src/core/types.ts +6 -5
- package/src/core/utils/portal/PortalProvider.tsx +2 -2
- package/src/css/primitives/_input/_input.css.ts +2 -3
- package/src/css/primitives/_input/input.ts +2 -0
- package/src/css/primitives/_input/types.ts +2 -1
- package/src/css/primitives/avatar/avatar.css.ts +8 -0
- package/src/css/primitives/box/box.css.ts +21 -1
- package/src/css/primitives/button/button.css.ts +1 -0
- package/src/css/primitives/card/card.css.ts +0 -60
- package/src/css/primitives/checkbox/checkbox.css.ts +1 -0
- package/src/css/primitives/code/code.ts +4 -0
- package/src/css/primitives/code/types.ts +7 -1
- package/src/css/primitives/heading/heading.ts +4 -0
- package/src/css/primitives/heading/types.ts +7 -1
- package/src/css/primitives/label/label.ts +4 -0
- package/src/css/primitives/label/types.ts +7 -1
- package/src/css/primitives/radio/radio.css.ts +1 -1
- package/src/css/primitives/root/root.css.ts +0 -1
- package/src/css/primitives/select/select.css.ts +7 -1
- package/src/css/primitives/selectable/selectable.css.ts +5 -31
- package/src/css/primitives/switch/switch.css.ts +10 -1
- package/src/css/primitives/text/text.ts +2 -0
- package/src/css/primitives/text/types.ts +6 -1
- package/src/css/primitives/textInput/textInput.css.ts +15 -3
- package/src/css/props/width/types.ts +1 -1
- package/src/css/props/width/width.css.ts +5 -2
- package/src/core/primitives/popover/helpers.ts +0 -32
package/dist/css/index.d.ts
CHANGED
|
@@ -238,7 +238,11 @@ export declare interface CodeSkeletonStyleProps {
|
|
|
238
238
|
}
|
|
239
239
|
|
|
240
240
|
/** @public */
|
|
241
|
-
export declare interface CodeStyleProps
|
|
241
|
+
export declare interface CodeStyleProps
|
|
242
|
+
extends FlexStyleProps,
|
|
243
|
+
Omit<FontStyleProps, 'align'>,
|
|
244
|
+
MarginStyleProps,
|
|
245
|
+
MaxWidthStyleProps {
|
|
242
246
|
className?: string
|
|
243
247
|
size?: ResponsiveProp<FontCodeSize>
|
|
244
248
|
}
|
|
@@ -751,7 +755,11 @@ export declare interface HeadingSkeletonStyleProps {
|
|
|
751
755
|
}
|
|
752
756
|
|
|
753
757
|
/** @public */
|
|
754
|
-
export declare interface HeadingStyleProps
|
|
758
|
+
export declare interface HeadingStyleProps
|
|
759
|
+
extends FontStyleProps,
|
|
760
|
+
FlexStyleProps,
|
|
761
|
+
MarginStyleProps,
|
|
762
|
+
MaxWidthStyleProps {
|
|
755
763
|
align?: TextAlignStyleProps['textAlign']
|
|
756
764
|
className?: string
|
|
757
765
|
muted?: boolean
|
|
@@ -779,7 +787,7 @@ export declare function _inputElement(): string | undefined
|
|
|
779
787
|
export declare function _inputPresentation(): string | undefined
|
|
780
788
|
|
|
781
789
|
/** @public */
|
|
782
|
-
export declare interface InputStyleProps extends RadiusStyleProps, WidthStyleProps {
|
|
790
|
+
export declare interface InputStyleProps extends FlexStyleProps, RadiusStyleProps, WidthStyleProps {
|
|
783
791
|
border?: boolean
|
|
784
792
|
fontSize?: ResponsiveProp<FontTextSize>
|
|
785
793
|
gap?: ResponsiveProp<Space>
|
|
@@ -839,7 +847,11 @@ export declare interface LabelSkeletonStyleProps {
|
|
|
839
847
|
}
|
|
840
848
|
|
|
841
849
|
/** @public */
|
|
842
|
-
export declare interface LabelStyleProps
|
|
850
|
+
export declare interface LabelStyleProps
|
|
851
|
+
extends FlexStyleProps,
|
|
852
|
+
FontStyleProps,
|
|
853
|
+
MarginStyleProps,
|
|
854
|
+
MaxWidthStyleProps {
|
|
843
855
|
align?: TextAlignStyleProps['textAlign']
|
|
844
856
|
className?: string
|
|
845
857
|
muted?: boolean
|
|
@@ -1321,7 +1333,11 @@ export declare interface TextSkeletonStyleProps {
|
|
|
1321
1333
|
}
|
|
1322
1334
|
|
|
1323
1335
|
/** @public */
|
|
1324
|
-
export declare interface TextStyleProps
|
|
1336
|
+
export declare interface TextStyleProps
|
|
1337
|
+
extends FlexStyleProps,
|
|
1338
|
+
FontStyleProps,
|
|
1339
|
+
MarginStyleProps,
|
|
1340
|
+
MaxWidthStyleProps {
|
|
1325
1341
|
align?: TextAlignStyleProps['textAlign']
|
|
1326
1342
|
className?: string
|
|
1327
1343
|
muted?: boolean
|
|
@@ -1385,7 +1401,7 @@ export declare type VariantColorTokens = Record<ElementTone, ElementColorTokens>
|
|
|
1385
1401
|
export declare const vars: ThemeVars
|
|
1386
1402
|
|
|
1387
1403
|
/** @public */
|
|
1388
|
-
export declare type Width = ContainerWidth | 'auto' | 'fill' | 'stretch' | 'min'
|
|
1404
|
+
export declare type Width = ContainerWidth | 'auto' | 'fill' | 'stretch' | 'min' | 'max'
|
|
1389
1405
|
|
|
1390
1406
|
/** @public */
|
|
1391
1407
|
export declare function width(props: WidthStyleProps): string | undefined
|
package/dist/css/index.js
CHANGED
|
@@ -17661,15 +17661,6 @@ function textOverflow(props) {
|
|
|
17661
17661
|
}
|
|
17662
17662
|
var options = {
|
|
17663
17663
|
0: {
|
|
17664
|
-
0: "ui-nswtc7s",
|
|
17665
|
-
1: "ui-nswtc7t",
|
|
17666
|
-
2: "ui-nswtc7u",
|
|
17667
|
-
3: "ui-nswtc7v",
|
|
17668
|
-
4: "ui-nswtc7w",
|
|
17669
|
-
5: "ui-nswtc7x",
|
|
17670
|
-
6: "ui-nswtc7y"
|
|
17671
|
-
},
|
|
17672
|
-
1: {
|
|
17673
17664
|
0: "ui-nswtc7z",
|
|
17674
17665
|
1: "ui-nswtc710",
|
|
17675
17666
|
2: "ui-nswtc711",
|
|
@@ -17678,7 +17669,7 @@ var options = {
|
|
|
17678
17669
|
5: "ui-nswtc714",
|
|
17679
17670
|
6: "ui-nswtc715"
|
|
17680
17671
|
},
|
|
17681
|
-
|
|
17672
|
+
1: {
|
|
17682
17673
|
0: "ui-nswtc716",
|
|
17683
17674
|
1: "ui-nswtc717",
|
|
17684
17675
|
2: "ui-nswtc718",
|
|
@@ -17687,7 +17678,7 @@ var options = {
|
|
|
17687
17678
|
5: "ui-nswtc71b",
|
|
17688
17679
|
6: "ui-nswtc71c"
|
|
17689
17680
|
},
|
|
17690
|
-
|
|
17681
|
+
2: {
|
|
17691
17682
|
0: "ui-nswtc71d",
|
|
17692
17683
|
1: "ui-nswtc71e",
|
|
17693
17684
|
2: "ui-nswtc71f",
|
|
@@ -17696,7 +17687,7 @@ var options = {
|
|
|
17696
17687
|
5: "ui-nswtc71i",
|
|
17697
17688
|
6: "ui-nswtc71j"
|
|
17698
17689
|
},
|
|
17699
|
-
|
|
17690
|
+
3: {
|
|
17700
17691
|
0: "ui-nswtc71k",
|
|
17701
17692
|
1: "ui-nswtc71l",
|
|
17702
17693
|
2: "ui-nswtc71m",
|
|
@@ -17705,7 +17696,7 @@ var options = {
|
|
|
17705
17696
|
5: "ui-nswtc71p",
|
|
17706
17697
|
6: "ui-nswtc71q"
|
|
17707
17698
|
},
|
|
17708
|
-
|
|
17699
|
+
4: {
|
|
17709
17700
|
0: "ui-nswtc71r",
|
|
17710
17701
|
1: "ui-nswtc71s",
|
|
17711
17702
|
2: "ui-nswtc71t",
|
|
@@ -17714,6 +17705,15 @@ var options = {
|
|
|
17714
17705
|
5: "ui-nswtc71w",
|
|
17715
17706
|
6: "ui-nswtc71x"
|
|
17716
17707
|
},
|
|
17708
|
+
5: {
|
|
17709
|
+
0: "ui-nswtc71y",
|
|
17710
|
+
1: "ui-nswtc71z",
|
|
17711
|
+
2: "ui-nswtc720",
|
|
17712
|
+
3: "ui-nswtc721",
|
|
17713
|
+
4: "ui-nswtc722",
|
|
17714
|
+
5: "ui-nswtc723",
|
|
17715
|
+
6: "ui-nswtc724"
|
|
17716
|
+
},
|
|
17717
17717
|
auto: {
|
|
17718
17718
|
0: "ui-nswtc70",
|
|
17719
17719
|
1: "ui-nswtc71",
|
|
@@ -17732,7 +17732,7 @@ var options = {
|
|
|
17732
17732
|
5: "ui-nswtc7c",
|
|
17733
17733
|
6: "ui-nswtc7d"
|
|
17734
17734
|
},
|
|
17735
|
-
|
|
17735
|
+
stretch: {
|
|
17736
17736
|
0: "ui-nswtc7e",
|
|
17737
17737
|
1: "ui-nswtc7f",
|
|
17738
17738
|
2: "ui-nswtc7g",
|
|
@@ -17741,7 +17741,7 @@ var options = {
|
|
|
17741
17741
|
5: "ui-nswtc7j",
|
|
17742
17742
|
6: "ui-nswtc7k"
|
|
17743
17743
|
},
|
|
17744
|
-
|
|
17744
|
+
min: {
|
|
17745
17745
|
0: "ui-nswtc7l",
|
|
17746
17746
|
1: "ui-nswtc7m",
|
|
17747
17747
|
2: "ui-nswtc7n",
|
|
@@ -17749,6 +17749,15 @@ var options = {
|
|
|
17749
17749
|
4: "ui-nswtc7p",
|
|
17750
17750
|
5: "ui-nswtc7q",
|
|
17751
17751
|
6: "ui-nswtc7r"
|
|
17752
|
+
},
|
|
17753
|
+
max: {
|
|
17754
|
+
0: "ui-nswtc7s",
|
|
17755
|
+
1: "ui-nswtc7t",
|
|
17756
|
+
2: "ui-nswtc7u",
|
|
17757
|
+
3: "ui-nswtc7v",
|
|
17758
|
+
4: "ui-nswtc7w",
|
|
17759
|
+
5: "ui-nswtc7x",
|
|
17760
|
+
6: "ui-nswtc7y"
|
|
17752
17761
|
}
|
|
17753
17762
|
};
|
|
17754
17763
|
function width(props) {
|
|
@@ -18000,7 +18009,7 @@ var border = "ui-6kbur21", element$1 = "ui-6kbur22", fontSize = {
|
|
|
18000
18009
|
}
|
|
18001
18010
|
}, presentation$4 = "ui-6kbur23", root$t = "ui-6kbur20";
|
|
18002
18011
|
function _input(props) {
|
|
18003
|
-
return _composeClassNames(root$t, props.border && border, _responsiveClassName(fontSize, props.fontSize ?? 2), _responsiveClassName(padding, props.padding ?? 3), _responsiveClassName(gap, props.gap ?? 3), radius(props), width(props));
|
|
18012
|
+
return _composeClassNames(root$t, props.border && border, _responsiveClassName(fontSize, props.fontSize ?? 2), _responsiveClassName(padding, props.padding ?? 3), _responsiveClassName(gap, props.gap ?? 3), flex(props), radius(props), width(props));
|
|
18004
18013
|
}
|
|
18005
18014
|
function _inputElement() {
|
|
18006
18015
|
return element$1;
|
|
@@ -18197,7 +18206,7 @@ var root$m = "ui-1n68uif0", scale = {
|
|
|
18197
18206
|
function code(props) {
|
|
18198
18207
|
return _composeClassNames(props.className, root$m, _responsiveClassName(scale, props.size ?? 1), display({
|
|
18199
18208
|
display: "block"
|
|
18200
|
-
}), flex(props), font$1(props));
|
|
18209
|
+
}), flex(props), font$1(props), margin(props), maxWidth(props));
|
|
18201
18210
|
}
|
|
18202
18211
|
var root$l = "ui-1c5ddit0";
|
|
18203
18212
|
function container$1(props) {
|
|
@@ -18268,7 +18277,7 @@ var muted$2 = "ui-oee9at1", root$k = "ui-oee9at0", sizes$2 = {
|
|
|
18268
18277
|
function heading(props) {
|
|
18269
18278
|
return _composeClassNames(props.className, root$k, props.muted && muted$2, _responsiveClassName(sizes$2, props.size ?? 1), display({
|
|
18270
18279
|
display: "block"
|
|
18271
|
-
}), flex(props), font$1(props), textAlign({
|
|
18280
|
+
}), flex(props), font$1(props), margin(props), maxWidth(props), textAlign({
|
|
18272
18281
|
textAlign: props.align
|
|
18273
18282
|
}));
|
|
18274
18283
|
}
|
|
@@ -18335,7 +18344,7 @@ var muted$1 = "ui-vdiubu1", root$i = "ui-vdiubu0", sizes$1 = {
|
|
|
18335
18344
|
function label(props) {
|
|
18336
18345
|
return _composeClassNames(props.className, root$i, props.muted && muted$1, _responsiveClassName(sizes$1, props.size ?? 1), display({
|
|
18337
18346
|
display: "block"
|
|
18338
|
-
}), flex(props), font$1(props), textAlign({
|
|
18347
|
+
}), flex(props), font$1(props), margin(props), maxWidth(props), textAlign({
|
|
18339
18348
|
textAlign: props.align
|
|
18340
18349
|
}));
|
|
18341
18350
|
}
|
|
@@ -18463,7 +18472,7 @@ var muted = "ui-jssw1x1", root$8 = "ui-jssw1x0", sizes = {
|
|
|
18463
18472
|
function text(props) {
|
|
18464
18473
|
return _composeClassNames(props.className, root$8, props.muted && muted, _responsiveClassName(sizes, props.size ?? 1), display({
|
|
18465
18474
|
display: "block"
|
|
18466
|
-
}), flex(props), font$1(props), maxWidth(props), textAlign({
|
|
18475
|
+
}), flex(props), font$1(props), margin(props), maxWidth(props), textAlign({
|
|
18467
18476
|
textAlign: props.align
|
|
18468
18477
|
}));
|
|
18469
18478
|
}
|