@yahoo/uds 3.140.0 → 3.142.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/automated-config/dist/utils/getConfigVariantProperties.d.cts +2 -2
- package/dist/automated-config/dist/utils/getConfigVariantProperties.d.ts +2 -2
- package/dist/automated-config/dist/utils/index.cjs +1 -1
- package/dist/automated-config/dist/utils/index.js +1 -1
- package/dist/components/Divider/Divider.cjs +86 -5
- package/dist/components/Divider/Divider.d.cts +15 -4
- package/dist/components/Divider/Divider.d.ts +15 -4
- package/dist/components/Divider/Divider.js +88 -7
- package/dist/components/Divider/DividerLabel.cjs +30 -0
- package/dist/components/Divider/DividerLabel.d.cts +18 -0
- package/dist/components/Divider/DividerLabel.d.ts +18 -0
- package/dist/components/Divider/DividerLabel.js +28 -0
- package/dist/components/Divider/DividerLine.cjs +41 -0
- package/dist/components/Divider/DividerLine.d.cts +19 -0
- package/dist/components/Divider/DividerLine.d.ts +19 -0
- package/dist/components/Divider/DividerLine.js +39 -0
- package/dist/components/Divider/index.cjs +4 -0
- package/dist/components/Divider/index.d.cts +4 -1
- package/dist/components/Divider/index.d.ts +4 -1
- package/dist/components/Divider/index.js +3 -1
- package/dist/components/Divider/types.cjs +1 -0
- package/dist/components/Divider/types.d.cts +38 -0
- package/dist/components/Divider/types.d.ts +38 -0
- package/dist/components/Divider/types.js +1 -0
- package/dist/components/Divider/utils.cjs +33 -0
- package/dist/components/Divider/utils.d.cts +11 -0
- package/dist/components/Divider/utils.d.ts +11 -0
- package/dist/components/Divider/utils.js +29 -0
- package/dist/components/client/Menu/Menu.Divider.cjs +2 -2
- package/dist/components/client/Menu/Menu.Divider.js +2 -2
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.cts +1 -1
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.ts +1 -1
- package/dist/components/client/Toast/UDSToastConfigProvider.d.cts +1 -1
- package/dist/components/client/Toast/UDSToastConfigProvider.d.ts +1 -1
- package/dist/components/index.cjs +6 -0
- package/dist/components/index.d.cts +3 -1
- package/dist/components/index.d.ts +3 -1
- package/dist/components/index.js +5 -1
- package/dist/index.cjs +5 -1
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +4 -2
- package/dist/styles/styler.d.cts +37 -37
- package/dist/styles/styler.d.ts +37 -37
- package/dist/tailwind/dist/automated-config/dist/utils/index.cjs +1 -1
- package/dist/tailwind/dist/automated-config/dist/utils/index.js +1 -1
- package/dist/tailwind/dist/automated-config/dist/utils/index.js.map +1 -1
- package/dist/tokens/automation/index.cjs +1 -1
- package/dist/tokens/automation/index.js +1 -1
- package/dist/tokens/index.cjs +1 -1
- package/dist/tokens/index.js +1 -1
- package/dist/uds/generated/componentData.cjs +582 -580
- package/dist/uds/generated/componentData.js +579 -577
- package/dist/uds/generated/tailwindPurge.cjs +1688 -50
- package/dist/uds/generated/tailwindPurge.js +1688 -50
- package/dist/uds/package.cjs +1 -2
- package/dist/uds/package.js +1 -2
- package/generated/componentData.json +887 -874
- package/generated/tailwindPurge.ts +3 -3
- package/package.json +2 -3
- package/dist/components/Divider/DividerCore.cjs +0 -83
- package/dist/components/Divider/DividerCore.d.cts +0 -22
- package/dist/components/Divider/DividerCore.d.ts +0 -22
- package/dist/components/Divider/DividerCore.js +0 -81
- package/dist/components/Divider/DividerInternal.cjs +0 -31
- package/dist/components/Divider/DividerInternal.d.cts +0 -13
- package/dist/components/Divider/DividerInternal.d.ts +0 -13
- package/dist/components/Divider/DividerInternal.js +0 -29
|
@@ -363,61 +363,131 @@ var BannerTitle = {
|
|
|
363
363
|
};
|
|
364
364
|
var Divider = {
|
|
365
365
|
"name": "Divider",
|
|
366
|
-
"defaultProps": {
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
"internalComponentProps": {},
|
|
371
|
-
"propToVariantKeys": {},
|
|
372
|
-
"runtimeConfigDefaultProps": {},
|
|
373
|
-
"runtimeConfigGetStyles": {},
|
|
374
|
-
"runtimeConfigInternalComponentProps": {},
|
|
375
|
-
"motionVarPrefixes": []
|
|
376
|
-
};
|
|
377
|
-
var DividerCore = {
|
|
378
|
-
"name": "DividerCore",
|
|
379
|
-
"defaultProps": { "contentPosition": "center" },
|
|
366
|
+
"defaultProps": {
|
|
367
|
+
"variant": "primary",
|
|
368
|
+
"contentPosition": "center"
|
|
369
|
+
},
|
|
380
370
|
"getStylesLiterals": {},
|
|
381
|
-
"cxLiterals": [],
|
|
371
|
+
"cxLiterals": ["inherit"],
|
|
382
372
|
"internalComponents": [
|
|
383
|
-
"
|
|
384
|
-
"
|
|
373
|
+
"DividerLine",
|
|
374
|
+
"DividerLabel",
|
|
385
375
|
"InternalComponent",
|
|
386
|
-
"
|
|
376
|
+
"Box"
|
|
387
377
|
],
|
|
388
378
|
"internalComponentProps": {
|
|
389
|
-
"Box": {
|
|
390
|
-
"flex": ["1", "none"],
|
|
391
|
-
"display": ["flex"]
|
|
392
|
-
},
|
|
393
379
|
"InternalComponent": {
|
|
394
|
-
"
|
|
395
|
-
"
|
|
380
|
+
"alignItems": ["center"],
|
|
381
|
+
"flex": ["1"]
|
|
396
382
|
},
|
|
397
|
-
"
|
|
398
|
-
"
|
|
399
|
-
"
|
|
400
|
-
"variant": ["inherit"]
|
|
383
|
+
"Box": {
|
|
384
|
+
"display": ["flex"],
|
|
385
|
+
"flex": ["none"]
|
|
401
386
|
}
|
|
402
387
|
},
|
|
403
|
-
"propToVariantKeys": {},
|
|
388
|
+
"propToVariantKeys": { "variant": ["dividerVariantRoot"] },
|
|
389
|
+
"runtimeConfigDefaultProps": {},
|
|
390
|
+
"runtimeConfigGetStyles": {},
|
|
391
|
+
"runtimeConfigInternalComponentProps": {},
|
|
392
|
+
"motionVarPrefixes": []
|
|
393
|
+
};
|
|
394
|
+
var DividerLabel = {
|
|
395
|
+
"name": "DividerLabel",
|
|
396
|
+
"defaultProps": {
|
|
397
|
+
"variant": "primary",
|
|
398
|
+
"textVariant": "inherit",
|
|
399
|
+
"color": "inherit",
|
|
400
|
+
"as": "span"
|
|
401
|
+
},
|
|
402
|
+
"getStylesLiterals": {},
|
|
403
|
+
"cxLiterals": ["inherit"],
|
|
404
|
+
"internalComponents": ["Text"],
|
|
405
|
+
"internalComponentProps": {},
|
|
406
|
+
"propToVariantKeys": {
|
|
407
|
+
"variant": ["dividerVariantLabel"],
|
|
408
|
+
"textVariant": ["variant"]
|
|
409
|
+
},
|
|
404
410
|
"runtimeConfigDefaultProps": {},
|
|
405
411
|
"runtimeConfigGetStyles": {},
|
|
406
412
|
"runtimeConfigInternalComponentProps": {},
|
|
407
413
|
"motionVarPrefixes": []
|
|
408
414
|
};
|
|
409
|
-
var
|
|
410
|
-
"name": "
|
|
415
|
+
var DividerLine = {
|
|
416
|
+
"name": "DividerLine",
|
|
411
417
|
"defaultProps": { "variant": "primary" },
|
|
412
418
|
"getStylesLiterals": {},
|
|
413
419
|
"cxLiterals": ["inherit"],
|
|
414
|
-
"internalComponents": ["
|
|
420
|
+
"internalComponents": ["Box"],
|
|
421
|
+
"internalComponentProps": { "Box": { "flex": ["1"] } },
|
|
422
|
+
"propToVariantKeys": { "variant": ["dividerVariantLine"] },
|
|
423
|
+
"runtimeConfigDefaultProps": {},
|
|
424
|
+
"runtimeConfigGetStyles": {},
|
|
425
|
+
"runtimeConfigInternalComponentProps": {},
|
|
426
|
+
"motionVarPrefixes": []
|
|
427
|
+
};
|
|
428
|
+
var Spinner = {
|
|
429
|
+
"name": "Spinner",
|
|
430
|
+
"defaultProps": {
|
|
431
|
+
"color": "primary",
|
|
432
|
+
"size": "lg"
|
|
433
|
+
},
|
|
434
|
+
"getStylesLiterals": {},
|
|
435
|
+
"cxLiterals": [
|
|
436
|
+
"self-center",
|
|
437
|
+
"relative",
|
|
438
|
+
"sr-only"
|
|
439
|
+
],
|
|
440
|
+
"internalComponents": ["Icon"],
|
|
441
|
+
"internalComponentProps": { "Icon": {
|
|
442
|
+
"role": ["img"],
|
|
443
|
+
"className": ["animate-spin"],
|
|
444
|
+
"aria-hidden": ["true"]
|
|
445
|
+
} },
|
|
446
|
+
"propToVariantKeys": {},
|
|
447
|
+
"runtimeConfigDefaultProps": {},
|
|
448
|
+
"runtimeConfigGetStyles": {},
|
|
449
|
+
"runtimeConfigInternalComponentProps": {},
|
|
450
|
+
"motionVarPrefixes": []
|
|
451
|
+
};
|
|
452
|
+
var Table_mocks = {
|
|
453
|
+
"name": "Table.mocks",
|
|
454
|
+
"defaultProps": {},
|
|
455
|
+
"getStylesLiterals": {},
|
|
456
|
+
"cxLiterals": [],
|
|
457
|
+
"internalComponents": [],
|
|
415
458
|
"internalComponentProps": {},
|
|
416
|
-
"propToVariantKeys": {
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
]
|
|
459
|
+
"propToVariantKeys": {},
|
|
460
|
+
"runtimeConfigDefaultProps": {},
|
|
461
|
+
"runtimeConfigGetStyles": {},
|
|
462
|
+
"runtimeConfigInternalComponentProps": {},
|
|
463
|
+
"motionVarPrefixes": []
|
|
464
|
+
};
|
|
465
|
+
var Table = {
|
|
466
|
+
"name": "Table",
|
|
467
|
+
"defaultProps": {
|
|
468
|
+
"display": "table-cell",
|
|
469
|
+
"overflow": "hidden",
|
|
470
|
+
"borderColor": "muted",
|
|
471
|
+
"borderRadius": "md",
|
|
472
|
+
"spacing": "3",
|
|
473
|
+
"borderBottomColor": "muted",
|
|
474
|
+
"borderBottomWidth": "thin",
|
|
475
|
+
"color": "primary"
|
|
476
|
+
},
|
|
477
|
+
"getStylesLiterals": { "textAlign": "start" },
|
|
478
|
+
"cxLiterals": [],
|
|
479
|
+
"internalComponents": [
|
|
480
|
+
"CellComponent",
|
|
481
|
+
"Box",
|
|
482
|
+
"Text",
|
|
483
|
+
"Table.Root",
|
|
484
|
+
"Table.Header",
|
|
485
|
+
"Table.Row",
|
|
486
|
+
"Table.Cell",
|
|
487
|
+
"Table.Body"
|
|
488
|
+
],
|
|
489
|
+
"internalComponentProps": { "Table.Cell": { "asHeaderCell": ["column"] } },
|
|
490
|
+
"propToVariantKeys": {},
|
|
421
491
|
"runtimeConfigDefaultProps": {},
|
|
422
492
|
"runtimeConfigGetStyles": {},
|
|
423
493
|
"runtimeConfigInternalComponentProps": {},
|
|
@@ -760,32 +830,59 @@ var Switch = {
|
|
|
760
830
|
"runtimeConfigInternalComponentProps": {},
|
|
761
831
|
"motionVarPrefixes": ["--uds-motion-bouncy-4-", "--uds-motion-smooth-3-"]
|
|
762
832
|
};
|
|
763
|
-
var
|
|
764
|
-
"name": "
|
|
833
|
+
var Accordion = {
|
|
834
|
+
"name": "Accordion",
|
|
765
835
|
"defaultProps": {
|
|
766
|
-
"
|
|
767
|
-
"
|
|
836
|
+
"spacingHorizontal": "4",
|
|
837
|
+
"spacingVertical": "4"
|
|
768
838
|
},
|
|
769
839
|
"getStylesLiterals": {},
|
|
770
|
-
"cxLiterals": [
|
|
771
|
-
|
|
772
|
-
"
|
|
773
|
-
"
|
|
840
|
+
"cxLiterals": ["hover:bg-secondary/80", "w-full"],
|
|
841
|
+
"internalComponents": [
|
|
842
|
+
"Icon",
|
|
843
|
+
"SpringMotionConfig",
|
|
844
|
+
"Pressable",
|
|
845
|
+
"Text",
|
|
846
|
+
"HStack",
|
|
847
|
+
"AnimatePresence",
|
|
848
|
+
"VStack"
|
|
774
849
|
],
|
|
775
|
-
"
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
850
|
+
"internalComponentProps": {
|
|
851
|
+
"Icon": {
|
|
852
|
+
"variant": ["fill"],
|
|
853
|
+
"size": ["sm"],
|
|
854
|
+
"color": ["primary"]
|
|
855
|
+
},
|
|
856
|
+
"SpringMotionConfig": {
|
|
857
|
+
"layoutVariant": ["smooth"],
|
|
858
|
+
"layoutSpeed": ["3"]
|
|
859
|
+
},
|
|
860
|
+
"Pressable": {
|
|
861
|
+
"display": ["flex"],
|
|
862
|
+
"flexDirection": ["row"],
|
|
863
|
+
"alignItems": ["center"],
|
|
864
|
+
"justifyContent": ["space-between"],
|
|
865
|
+
"borderRadius": ["md"]
|
|
866
|
+
},
|
|
867
|
+
"Text": {
|
|
868
|
+
"variant": ["title4"],
|
|
869
|
+
"color": ["primary"]
|
|
870
|
+
},
|
|
871
|
+
"HStack": {
|
|
872
|
+
"display": ["flex"],
|
|
873
|
+
"alignItems": ["center"],
|
|
874
|
+
"justifyContent": ["space-between"],
|
|
875
|
+
"columnGap": ["2.5"]
|
|
876
|
+
}
|
|
877
|
+
},
|
|
781
878
|
"propToVariantKeys": {},
|
|
782
879
|
"runtimeConfigDefaultProps": {},
|
|
783
880
|
"runtimeConfigGetStyles": {},
|
|
784
881
|
"runtimeConfigInternalComponentProps": {},
|
|
785
|
-
"motionVarPrefixes": []
|
|
882
|
+
"motionVarPrefixes": ["--uds-motion-smooth-3-"]
|
|
786
883
|
};
|
|
787
|
-
var
|
|
788
|
-
"name": "
|
|
884
|
+
var AvoidMotionLibraryProvider = {
|
|
885
|
+
"name": "AvoidMotionLibraryProvider",
|
|
789
886
|
"defaultProps": {},
|
|
790
887
|
"getStylesLiterals": {},
|
|
791
888
|
"cxLiterals": [],
|
|
@@ -797,45 +894,171 @@ var Table_mocks = {
|
|
|
797
894
|
"runtimeConfigInternalComponentProps": {},
|
|
798
895
|
"motionVarPrefixes": []
|
|
799
896
|
};
|
|
800
|
-
var
|
|
801
|
-
"name": "
|
|
802
|
-
"defaultProps": {
|
|
803
|
-
|
|
804
|
-
"
|
|
897
|
+
var SegmentedControl = {
|
|
898
|
+
"name": "SegmentedControl",
|
|
899
|
+
"defaultProps": { "textVariant": "label2" },
|
|
900
|
+
"getStylesLiterals": {
|
|
901
|
+
"display": "flex",
|
|
902
|
+
"alignItems": "center",
|
|
903
|
+
"backgroundColor": "primary",
|
|
904
|
+
"spacingVertical": "1",
|
|
905
|
+
"spacingHorizontal": "3",
|
|
906
|
+
"columnGap": "1.5",
|
|
907
|
+
"borderWidth": "thin",
|
|
908
|
+
"borderRadius": "full",
|
|
805
909
|
"borderColor": "muted",
|
|
806
|
-
"
|
|
807
|
-
"
|
|
808
|
-
"
|
|
809
|
-
"
|
|
810
|
-
"color": "primary"
|
|
910
|
+
"borderColor:1": "transparent",
|
|
911
|
+
"color": "primary",
|
|
912
|
+
"color:1": "tertiary",
|
|
913
|
+
"color:2": "muted"
|
|
811
914
|
},
|
|
812
|
-
"
|
|
813
|
-
|
|
915
|
+
"cxLiterals": [
|
|
916
|
+
"uds-ring",
|
|
917
|
+
"cursor-not-allowed",
|
|
918
|
+
"opacity-50",
|
|
919
|
+
"pointer-events-none",
|
|
920
|
+
"hover:bg-primary"
|
|
921
|
+
],
|
|
814
922
|
"internalComponents": [
|
|
815
|
-
"
|
|
816
|
-
"
|
|
817
|
-
"
|
|
818
|
-
"
|
|
819
|
-
"
|
|
820
|
-
"
|
|
821
|
-
"
|
|
822
|
-
"
|
|
923
|
+
"TextVariant",
|
|
924
|
+
"Radio",
|
|
925
|
+
"Icon",
|
|
926
|
+
"RadioProvider",
|
|
927
|
+
"HStack",
|
|
928
|
+
"RadioGroup",
|
|
929
|
+
"Pressable",
|
|
930
|
+
"Text"
|
|
823
931
|
],
|
|
824
|
-
"internalComponentProps": {
|
|
825
|
-
|
|
932
|
+
"internalComponentProps": {
|
|
933
|
+
"Icon": {
|
|
934
|
+
"size": ["sm"],
|
|
935
|
+
"color": ["current"],
|
|
936
|
+
"aria-hidden": ["true"]
|
|
937
|
+
},
|
|
938
|
+
"HStack": {
|
|
939
|
+
"spacing": ["1"],
|
|
940
|
+
"gap": ["1"],
|
|
941
|
+
"backgroundColor": ["secondary"],
|
|
942
|
+
"borderRadius": ["full"],
|
|
943
|
+
"display": ["inline-flex"]
|
|
944
|
+
},
|
|
945
|
+
"Text": { "color": ["current"] }
|
|
946
|
+
},
|
|
947
|
+
"propToVariantKeys": {
|
|
948
|
+
"value": ["key"],
|
|
949
|
+
"label": ["aria-label"],
|
|
950
|
+
"textVariant": ["variant"]
|
|
951
|
+
},
|
|
826
952
|
"runtimeConfigDefaultProps": {},
|
|
827
953
|
"runtimeConfigGetStyles": {},
|
|
828
954
|
"runtimeConfigInternalComponentProps": {},
|
|
829
955
|
"motionVarPrefixes": []
|
|
830
956
|
};
|
|
831
|
-
var
|
|
832
|
-
"name": "
|
|
833
|
-
"defaultProps": {
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
"
|
|
838
|
-
|
|
957
|
+
var SwitchV2 = {
|
|
958
|
+
"name": "SwitchV2",
|
|
959
|
+
"defaultProps": {
|
|
960
|
+
"labelPosition": "start",
|
|
961
|
+
"size": "md"
|
|
962
|
+
},
|
|
963
|
+
"getStylesLiterals": {
|
|
964
|
+
"switchVariantRoot": "default",
|
|
965
|
+
"switchVariantActiveRoot": "on",
|
|
966
|
+
"switchVariantActiveRoot:1": "off",
|
|
967
|
+
"switchVariantSwitch": "default",
|
|
968
|
+
"switchVariantActiveSwitch": "on",
|
|
969
|
+
"switchVariantActiveSwitch:1": "off",
|
|
970
|
+
"switchVariantActiveHandle": "on",
|
|
971
|
+
"switchVariantActiveHandle:1": "off",
|
|
972
|
+
"switchVariantHandle": "default",
|
|
973
|
+
"switchVariantHandleIcon": "default",
|
|
974
|
+
"switchVariantActiveHandleIcon": "on",
|
|
975
|
+
"switchVariantActiveHandleIcon:1": "off"
|
|
976
|
+
},
|
|
977
|
+
"cxLiterals": [
|
|
978
|
+
"group",
|
|
979
|
+
"flex",
|
|
980
|
+
"items-center",
|
|
981
|
+
"flex-row",
|
|
982
|
+
"flex-row-reverse",
|
|
983
|
+
"uds-ring",
|
|
984
|
+
"uds-ring-within",
|
|
985
|
+
"relative",
|
|
986
|
+
"uds-border-radius-full",
|
|
987
|
+
"transition-[background-color,box-shadow]",
|
|
988
|
+
"pointer-events-none",
|
|
989
|
+
"w-full",
|
|
990
|
+
"h-full",
|
|
991
|
+
"absolute",
|
|
992
|
+
"top-0",
|
|
993
|
+
"bottom-0",
|
|
994
|
+
"right-0",
|
|
995
|
+
"left-0",
|
|
996
|
+
"overflow-hidden",
|
|
997
|
+
"group-hover:scale-105",
|
|
998
|
+
"opacity-95",
|
|
999
|
+
"group-hover:opacity-100",
|
|
1000
|
+
"transition-[transform,opacity]",
|
|
1001
|
+
"opacity-0",
|
|
1002
|
+
"top-1/2",
|
|
1003
|
+
"left-1/2",
|
|
1004
|
+
"transform",
|
|
1005
|
+
"translate-x-[-50%]",
|
|
1006
|
+
"translate-y-[-50%]",
|
|
1007
|
+
"transition-opacity",
|
|
1008
|
+
"cursor-[inherit]",
|
|
1009
|
+
"w-[calc(100%+2px)]",
|
|
1010
|
+
"h-[calc(100%+2px)]",
|
|
1011
|
+
"text-start",
|
|
1012
|
+
"text-end",
|
|
1013
|
+
"opacity-100"
|
|
1014
|
+
],
|
|
1015
|
+
"internalComponents": [
|
|
1016
|
+
"IconSlot",
|
|
1017
|
+
"Box",
|
|
1018
|
+
"FormLabel",
|
|
1019
|
+
"SpringMotionConfig",
|
|
1020
|
+
"RootElement",
|
|
1021
|
+
"MotionBox"
|
|
1022
|
+
],
|
|
1023
|
+
"internalComponentProps": {
|
|
1024
|
+
"IconSlot": { "data-testid": ["on-icon", "off-icon"] },
|
|
1025
|
+
"FormLabel": {
|
|
1026
|
+
"as": ["div"],
|
|
1027
|
+
"variant": ["inherit"],
|
|
1028
|
+
"color": ["inherit"]
|
|
1029
|
+
},
|
|
1030
|
+
"SpringMotionConfig": {
|
|
1031
|
+
"layoutVariant": ["bouncy"],
|
|
1032
|
+
"layoutSpeed": ["4"]
|
|
1033
|
+
},
|
|
1034
|
+
"RootElement": { "data-testid": ["switch-root"] },
|
|
1035
|
+
"MotionBox": { "layout": ["position"] }
|
|
1036
|
+
},
|
|
1037
|
+
"propToVariantKeys": {
|
|
1038
|
+
"size": [
|
|
1039
|
+
"switchSizeRoot",
|
|
1040
|
+
"switchSizeSwitch",
|
|
1041
|
+
"switchSizeHandle",
|
|
1042
|
+
"switchSizeHandleIcon"
|
|
1043
|
+
],
|
|
1044
|
+
"onIcon": ["icon"],
|
|
1045
|
+
"offIcon": ["icon"],
|
|
1046
|
+
"reduceMotion": ["reducedMotion"],
|
|
1047
|
+
"isOn": ["layoutDependency"]
|
|
1048
|
+
},
|
|
1049
|
+
"runtimeConfigDefaultProps": {},
|
|
1050
|
+
"runtimeConfigGetStyles": {},
|
|
1051
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1052
|
+
"motionVarPrefixes": ["--uds-motion-bouncy-4-", "--uds-motion-smooth-3-"]
|
|
1053
|
+
};
|
|
1054
|
+
var Avatar = {
|
|
1055
|
+
"name": "Avatar",
|
|
1056
|
+
"defaultProps": {},
|
|
1057
|
+
"getStylesLiterals": {},
|
|
1058
|
+
"cxLiterals": [],
|
|
1059
|
+
"internalComponents": ["AvatarImage"],
|
|
1060
|
+
"internalComponentProps": {},
|
|
1061
|
+
"propToVariantKeys": {},
|
|
839
1062
|
"runtimeConfigDefaultProps": {},
|
|
840
1063
|
"runtimeConfigGetStyles": {},
|
|
841
1064
|
"runtimeConfigInternalComponentProps": {},
|
|
@@ -1126,6 +1349,134 @@ var UDSBottomSheetConfigProvider = {
|
|
|
1126
1349
|
"runtimeConfigInternalComponentProps": {},
|
|
1127
1350
|
"motionVarPrefixes": []
|
|
1128
1351
|
};
|
|
1352
|
+
var Chip = {
|
|
1353
|
+
"name": "Chip",
|
|
1354
|
+
"defaultProps": {},
|
|
1355
|
+
"getStylesLiterals": {},
|
|
1356
|
+
"cxLiterals": [],
|
|
1357
|
+
"internalComponents": [
|
|
1358
|
+
"ChipDismissible",
|
|
1359
|
+
"ChipToggle",
|
|
1360
|
+
"ChipLink",
|
|
1361
|
+
"ChipButton"
|
|
1362
|
+
],
|
|
1363
|
+
"internalComponentProps": {},
|
|
1364
|
+
"propToVariantKeys": {},
|
|
1365
|
+
"runtimeConfigDefaultProps": {},
|
|
1366
|
+
"runtimeConfigGetStyles": {},
|
|
1367
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1368
|
+
"motionVarPrefixes": []
|
|
1369
|
+
};
|
|
1370
|
+
var ChipBase = {
|
|
1371
|
+
"name": "ChipBase",
|
|
1372
|
+
"defaultProps": {
|
|
1373
|
+
"size": "md",
|
|
1374
|
+
"as": "div"
|
|
1375
|
+
},
|
|
1376
|
+
"getStylesLiterals": {},
|
|
1377
|
+
"cxLiterals": [
|
|
1378
|
+
"pointer-events-none",
|
|
1379
|
+
"cursor-default",
|
|
1380
|
+
"opacity-50",
|
|
1381
|
+
"inline-flex",
|
|
1382
|
+
"items-center",
|
|
1383
|
+
"transition-[background-color,outline-color,box-shadow]",
|
|
1384
|
+
"truncate",
|
|
1385
|
+
"whitespace-nowrap",
|
|
1386
|
+
"text-center",
|
|
1387
|
+
"flex-1"
|
|
1388
|
+
],
|
|
1389
|
+
"internalComponents": [
|
|
1390
|
+
"IconSlot",
|
|
1391
|
+
"HStack",
|
|
1392
|
+
"As",
|
|
1393
|
+
"Text"
|
|
1394
|
+
],
|
|
1395
|
+
"internalComponentProps": { "Text": {
|
|
1396
|
+
"as": ["span"],
|
|
1397
|
+
"color": ["current"],
|
|
1398
|
+
"variant": ["inherit"]
|
|
1399
|
+
} },
|
|
1400
|
+
"propToVariantKeys": {
|
|
1401
|
+
"size": ["chipSizeRoot", "chipSizeIcon"],
|
|
1402
|
+
"startIcon": ["icon"],
|
|
1403
|
+
"endIcon": ["icon"]
|
|
1404
|
+
},
|
|
1405
|
+
"runtimeConfigDefaultProps": {},
|
|
1406
|
+
"runtimeConfigGetStyles": {},
|
|
1407
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1408
|
+
"motionVarPrefixes": []
|
|
1409
|
+
};
|
|
1410
|
+
var ChipButton = {
|
|
1411
|
+
"name": "ChipButton",
|
|
1412
|
+
"defaultProps": { "variant": "primary" },
|
|
1413
|
+
"getStylesLiterals": {},
|
|
1414
|
+
"cxLiterals": ["uds-ring"],
|
|
1415
|
+
"internalComponents": ["ChipBase"],
|
|
1416
|
+
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1417
|
+
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1418
|
+
"runtimeConfigDefaultProps": {},
|
|
1419
|
+
"runtimeConfigGetStyles": {},
|
|
1420
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1421
|
+
"motionVarPrefixes": []
|
|
1422
|
+
};
|
|
1423
|
+
var ChipDismissible = {
|
|
1424
|
+
"name": "ChipDismissible",
|
|
1425
|
+
"defaultProps": { "variant": "primary" },
|
|
1426
|
+
"getStylesLiterals": {},
|
|
1427
|
+
"cxLiterals": [
|
|
1428
|
+
"uds-chip-dismissible-button",
|
|
1429
|
+
"uds-hit-target",
|
|
1430
|
+
"uds-ring",
|
|
1431
|
+
"rounded-full"
|
|
1432
|
+
],
|
|
1433
|
+
"internalComponents": [
|
|
1434
|
+
"ChipBase",
|
|
1435
|
+
"IconSlot",
|
|
1436
|
+
"Pressable"
|
|
1437
|
+
],
|
|
1438
|
+
"internalComponentProps": {},
|
|
1439
|
+
"propToVariantKeys": {
|
|
1440
|
+
"variant": ["chipDismissibleVariantRoot", "chipDismissibleVariantIcon"],
|
|
1441
|
+
"dismissButtonAriaLabel": ["aria-label"]
|
|
1442
|
+
},
|
|
1443
|
+
"runtimeConfigDefaultProps": {},
|
|
1444
|
+
"runtimeConfigGetStyles": {},
|
|
1445
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1446
|
+
"motionVarPrefixes": []
|
|
1447
|
+
};
|
|
1448
|
+
var ChipLink = {
|
|
1449
|
+
"name": "ChipLink",
|
|
1450
|
+
"defaultProps": { "variant": "primary" },
|
|
1451
|
+
"getStylesLiterals": {},
|
|
1452
|
+
"cxLiterals": ["uds-ring"],
|
|
1453
|
+
"internalComponents": ["ChipBase"],
|
|
1454
|
+
"internalComponentProps": { "ChipBase": { "as": ["a"] } },
|
|
1455
|
+
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1456
|
+
"runtimeConfigDefaultProps": {},
|
|
1457
|
+
"runtimeConfigGetStyles": {},
|
|
1458
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1459
|
+
"motionVarPrefixes": []
|
|
1460
|
+
};
|
|
1461
|
+
var ChipToggle = {
|
|
1462
|
+
"name": "ChipToggle",
|
|
1463
|
+
"defaultProps": {
|
|
1464
|
+
"variant": "primary",
|
|
1465
|
+
"role": "checkbox"
|
|
1466
|
+
},
|
|
1467
|
+
"getStylesLiterals": {
|
|
1468
|
+
"chipToggleVariantActiveRoot": "on",
|
|
1469
|
+
"chipToggleVariantActiveRoot:1": "off"
|
|
1470
|
+
},
|
|
1471
|
+
"cxLiterals": ["uds-ring"],
|
|
1472
|
+
"internalComponents": ["ChipBase"],
|
|
1473
|
+
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1474
|
+
"propToVariantKeys": { "variant": ["chipToggleVariantRoot", "chipToggleVariantIcon"] },
|
|
1475
|
+
"runtimeConfigDefaultProps": {},
|
|
1476
|
+
"runtimeConfigGetStyles": {},
|
|
1477
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1478
|
+
"motionVarPrefixes": []
|
|
1479
|
+
};
|
|
1129
1480
|
var Menu_Content = {
|
|
1130
1481
|
"name": "Menu.Content",
|
|
1131
1482
|
"defaultProps": {
|
|
@@ -1175,8 +1526,8 @@ var Menu_Divider = {
|
|
|
1175
1526
|
"menuitemDividerVariantLine": "default"
|
|
1176
1527
|
},
|
|
1177
1528
|
"cxLiterals": [],
|
|
1178
|
-
"internalComponents": ["
|
|
1179
|
-
"internalComponentProps": { "
|
|
1529
|
+
"internalComponents": ["Divider"],
|
|
1530
|
+
"internalComponentProps": { "Divider": { "variant": ["inherit"] } },
|
|
1180
1531
|
"propToVariantKeys": {},
|
|
1181
1532
|
"runtimeConfigDefaultProps": {},
|
|
1182
1533
|
"runtimeConfigGetStyles": {},
|
|
@@ -1344,136 +1695,8 @@ var Menu = {
|
|
|
1344
1695
|
"runtimeConfigInternalComponentProps": {},
|
|
1345
1696
|
"motionVarPrefixes": []
|
|
1346
1697
|
};
|
|
1347
|
-
var
|
|
1348
|
-
"name": "
|
|
1349
|
-
"defaultProps": {},
|
|
1350
|
-
"getStylesLiterals": {},
|
|
1351
|
-
"cxLiterals": [],
|
|
1352
|
-
"internalComponents": [
|
|
1353
|
-
"ChipDismissible",
|
|
1354
|
-
"ChipToggle",
|
|
1355
|
-
"ChipLink",
|
|
1356
|
-
"ChipButton"
|
|
1357
|
-
],
|
|
1358
|
-
"internalComponentProps": {},
|
|
1359
|
-
"propToVariantKeys": {},
|
|
1360
|
-
"runtimeConfigDefaultProps": {},
|
|
1361
|
-
"runtimeConfigGetStyles": {},
|
|
1362
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1363
|
-
"motionVarPrefixes": []
|
|
1364
|
-
};
|
|
1365
|
-
var ChipBase = {
|
|
1366
|
-
"name": "ChipBase",
|
|
1367
|
-
"defaultProps": {
|
|
1368
|
-
"size": "md",
|
|
1369
|
-
"as": "div"
|
|
1370
|
-
},
|
|
1371
|
-
"getStylesLiterals": {},
|
|
1372
|
-
"cxLiterals": [
|
|
1373
|
-
"pointer-events-none",
|
|
1374
|
-
"cursor-default",
|
|
1375
|
-
"opacity-50",
|
|
1376
|
-
"inline-flex",
|
|
1377
|
-
"items-center",
|
|
1378
|
-
"transition-[background-color,outline-color,box-shadow]",
|
|
1379
|
-
"truncate",
|
|
1380
|
-
"whitespace-nowrap",
|
|
1381
|
-
"text-center",
|
|
1382
|
-
"flex-1"
|
|
1383
|
-
],
|
|
1384
|
-
"internalComponents": [
|
|
1385
|
-
"IconSlot",
|
|
1386
|
-
"HStack",
|
|
1387
|
-
"As",
|
|
1388
|
-
"Text"
|
|
1389
|
-
],
|
|
1390
|
-
"internalComponentProps": { "Text": {
|
|
1391
|
-
"as": ["span"],
|
|
1392
|
-
"color": ["current"],
|
|
1393
|
-
"variant": ["inherit"]
|
|
1394
|
-
} },
|
|
1395
|
-
"propToVariantKeys": {
|
|
1396
|
-
"size": ["chipSizeRoot", "chipSizeIcon"],
|
|
1397
|
-
"startIcon": ["icon"],
|
|
1398
|
-
"endIcon": ["icon"]
|
|
1399
|
-
},
|
|
1400
|
-
"runtimeConfigDefaultProps": {},
|
|
1401
|
-
"runtimeConfigGetStyles": {},
|
|
1402
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1403
|
-
"motionVarPrefixes": []
|
|
1404
|
-
};
|
|
1405
|
-
var ChipButton = {
|
|
1406
|
-
"name": "ChipButton",
|
|
1407
|
-
"defaultProps": { "variant": "primary" },
|
|
1408
|
-
"getStylesLiterals": {},
|
|
1409
|
-
"cxLiterals": ["uds-ring"],
|
|
1410
|
-
"internalComponents": ["ChipBase"],
|
|
1411
|
-
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1412
|
-
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1413
|
-
"runtimeConfigDefaultProps": {},
|
|
1414
|
-
"runtimeConfigGetStyles": {},
|
|
1415
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1416
|
-
"motionVarPrefixes": []
|
|
1417
|
-
};
|
|
1418
|
-
var ChipDismissible = {
|
|
1419
|
-
"name": "ChipDismissible",
|
|
1420
|
-
"defaultProps": { "variant": "primary" },
|
|
1421
|
-
"getStylesLiterals": {},
|
|
1422
|
-
"cxLiterals": [
|
|
1423
|
-
"uds-chip-dismissible-button",
|
|
1424
|
-
"uds-hit-target",
|
|
1425
|
-
"uds-ring",
|
|
1426
|
-
"rounded-full"
|
|
1427
|
-
],
|
|
1428
|
-
"internalComponents": [
|
|
1429
|
-
"ChipBase",
|
|
1430
|
-
"IconSlot",
|
|
1431
|
-
"Pressable"
|
|
1432
|
-
],
|
|
1433
|
-
"internalComponentProps": {},
|
|
1434
|
-
"propToVariantKeys": {
|
|
1435
|
-
"variant": ["chipDismissibleVariantRoot", "chipDismissibleVariantIcon"],
|
|
1436
|
-
"dismissButtonAriaLabel": ["aria-label"]
|
|
1437
|
-
},
|
|
1438
|
-
"runtimeConfigDefaultProps": {},
|
|
1439
|
-
"runtimeConfigGetStyles": {},
|
|
1440
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1441
|
-
"motionVarPrefixes": []
|
|
1442
|
-
};
|
|
1443
|
-
var ChipLink = {
|
|
1444
|
-
"name": "ChipLink",
|
|
1445
|
-
"defaultProps": { "variant": "primary" },
|
|
1446
|
-
"getStylesLiterals": {},
|
|
1447
|
-
"cxLiterals": ["uds-ring"],
|
|
1448
|
-
"internalComponents": ["ChipBase"],
|
|
1449
|
-
"internalComponentProps": { "ChipBase": { "as": ["a"] } },
|
|
1450
|
-
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1451
|
-
"runtimeConfigDefaultProps": {},
|
|
1452
|
-
"runtimeConfigGetStyles": {},
|
|
1453
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1454
|
-
"motionVarPrefixes": []
|
|
1455
|
-
};
|
|
1456
|
-
var ChipToggle = {
|
|
1457
|
-
"name": "ChipToggle",
|
|
1458
|
-
"defaultProps": {
|
|
1459
|
-
"variant": "primary",
|
|
1460
|
-
"role": "checkbox"
|
|
1461
|
-
},
|
|
1462
|
-
"getStylesLiterals": {
|
|
1463
|
-
"chipToggleVariantActiveRoot": "on",
|
|
1464
|
-
"chipToggleVariantActiveRoot:1": "off"
|
|
1465
|
-
},
|
|
1466
|
-
"cxLiterals": ["uds-ring"],
|
|
1467
|
-
"internalComponents": ["ChipBase"],
|
|
1468
|
-
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1469
|
-
"propToVariantKeys": { "variant": ["chipToggleVariantRoot", "chipToggleVariantIcon"] },
|
|
1470
|
-
"runtimeConfigDefaultProps": {},
|
|
1471
|
-
"runtimeConfigGetStyles": {},
|
|
1472
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1473
|
-
"motionVarPrefixes": []
|
|
1474
|
-
};
|
|
1475
|
-
var Modal = {
|
|
1476
|
-
"name": "Modal",
|
|
1698
|
+
var Modal = {
|
|
1699
|
+
"name": "Modal",
|
|
1477
1700
|
"defaultProps": {
|
|
1478
1701
|
"closeAriaLabel": "Close",
|
|
1479
1702
|
"maxWidth": "auto",
|
|
@@ -1935,6 +2158,119 @@ var UDSPopoverConfigProvider = {
|
|
|
1935
2158
|
"runtimeConfigInternalComponentProps": {},
|
|
1936
2159
|
"motionVarPrefixes": []
|
|
1937
2160
|
};
|
|
2161
|
+
var Radio = {
|
|
2162
|
+
"name": "Radio",
|
|
2163
|
+
"defaultProps": {
|
|
2164
|
+
"labelPosition": "start",
|
|
2165
|
+
"variant": "primary",
|
|
2166
|
+
"size": "md",
|
|
2167
|
+
"value": ""
|
|
2168
|
+
},
|
|
2169
|
+
"getStylesLiterals": {
|
|
2170
|
+
"radioVariantValueRoot": "checked",
|
|
2171
|
+
"radioVariantValueRoot:1": "unchecked",
|
|
2172
|
+
"display": "flex",
|
|
2173
|
+
"flexDirection": "row",
|
|
2174
|
+
"flexDirection:1": "row-reverse",
|
|
2175
|
+
"alignItems": "center",
|
|
2176
|
+
"radioVariantValueRadio": "checked",
|
|
2177
|
+
"radioVariantValueRadio:1": "unchecked",
|
|
2178
|
+
"radioVariantValueRadioCircle": "checked",
|
|
2179
|
+
"radioVariantValueRadioCircle:1": "unchecked"
|
|
2180
|
+
},
|
|
2181
|
+
"cxLiterals": [
|
|
2182
|
+
"cursor-pointer",
|
|
2183
|
+
"cursor-default",
|
|
2184
|
+
"opacity-50",
|
|
2185
|
+
"border",
|
|
2186
|
+
"uds-ring",
|
|
2187
|
+
"uds-ring-within",
|
|
2188
|
+
"transition-[background-color,border-color]",
|
|
2189
|
+
"transition-shadow",
|
|
2190
|
+
"pointer-events-none",
|
|
2191
|
+
"w-[8px]",
|
|
2192
|
+
"h-[8px]",
|
|
2193
|
+
"transition-opacity",
|
|
2194
|
+
"cursor-[inherit]",
|
|
2195
|
+
"absolute",
|
|
2196
|
+
"opacity-0",
|
|
2197
|
+
"top-1/2",
|
|
2198
|
+
"left-1/2",
|
|
2199
|
+
"w-[calc(100%+2px)]",
|
|
2200
|
+
"h-[calc(100%+2px)]",
|
|
2201
|
+
"transform",
|
|
2202
|
+
"translate-x-[-50%]",
|
|
2203
|
+
"translate-y-[-50%]",
|
|
2204
|
+
"text-start",
|
|
2205
|
+
"text-end"
|
|
2206
|
+
],
|
|
2207
|
+
"internalComponents": [
|
|
2208
|
+
"Box",
|
|
2209
|
+
"FormLabel",
|
|
2210
|
+
"SpringMotionConfig",
|
|
2211
|
+
"RootElement",
|
|
2212
|
+
"MotionBox"
|
|
2213
|
+
],
|
|
2214
|
+
"internalComponentProps": {
|
|
2215
|
+
"Box": { "borderRadius": ["full"] },
|
|
2216
|
+
"FormLabel": {
|
|
2217
|
+
"as": ["div"],
|
|
2218
|
+
"variant": ["inherit"],
|
|
2219
|
+
"color": ["inherit"]
|
|
2220
|
+
},
|
|
2221
|
+
"RootElement": { "data-testid": ["container"] },
|
|
2222
|
+
"MotionBox": {
|
|
2223
|
+
"position": ["relative"],
|
|
2224
|
+
"borderRadius": ["full"],
|
|
2225
|
+
"alignItems": ["center"],
|
|
2226
|
+
"justifyContent": ["center"],
|
|
2227
|
+
"flex": ["none"]
|
|
2228
|
+
}
|
|
2229
|
+
},
|
|
2230
|
+
"propToVariantKeys": {
|
|
2231
|
+
"size": ["radioSizeRoot", "radioSizeRadio"],
|
|
2232
|
+
"variant": [
|
|
2233
|
+
"radioVariantRoot",
|
|
2234
|
+
"radioVariantRadio",
|
|
2235
|
+
"radioVariantRadioCircle"
|
|
2236
|
+
],
|
|
2237
|
+
"reduceMotion": ["reducedMotion"]
|
|
2238
|
+
},
|
|
2239
|
+
"runtimeConfigDefaultProps": {},
|
|
2240
|
+
"runtimeConfigGetStyles": {},
|
|
2241
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2242
|
+
"motionVarPrefixes": ["--uds-motion-subtle-3-", "--uds-motion-smooth-3-"]
|
|
2243
|
+
};
|
|
2244
|
+
var RadioGroupProvider = {
|
|
2245
|
+
"name": "RadioGroupProvider",
|
|
2246
|
+
"defaultProps": {},
|
|
2247
|
+
"getStylesLiterals": {},
|
|
2248
|
+
"cxLiterals": [],
|
|
2249
|
+
"internalComponents": [
|
|
2250
|
+
"DivProps",
|
|
2251
|
+
"Comp",
|
|
2252
|
+
"RadioGroupContext.Provider"
|
|
2253
|
+
],
|
|
2254
|
+
"internalComponentProps": { "Comp": { "role": ["radiogroup"] } },
|
|
2255
|
+
"propToVariantKeys": {},
|
|
2256
|
+
"runtimeConfigDefaultProps": {},
|
|
2257
|
+
"runtimeConfigGetStyles": {},
|
|
2258
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2259
|
+
"motionVarPrefixes": []
|
|
2260
|
+
};
|
|
2261
|
+
var RadioGroupStore = {
|
|
2262
|
+
"name": "RadioGroupStore",
|
|
2263
|
+
"defaultProps": {},
|
|
2264
|
+
"getStylesLiterals": {},
|
|
2265
|
+
"cxLiterals": [],
|
|
2266
|
+
"internalComponents": [],
|
|
2267
|
+
"internalComponentProps": {},
|
|
2268
|
+
"propToVariantKeys": {},
|
|
2269
|
+
"runtimeConfigDefaultProps": {},
|
|
2270
|
+
"runtimeConfigGetStyles": {},
|
|
2271
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2272
|
+
"motionVarPrefixes": []
|
|
2273
|
+
};
|
|
1938
2274
|
var Tab = {
|
|
1939
2275
|
"name": "Tab",
|
|
1940
2276
|
"defaultProps": { "variant": "primary" },
|
|
@@ -2064,127 +2400,14 @@ var Tabs = {
|
|
|
2064
2400
|
"runtimeConfigInternalComponentProps": {},
|
|
2065
2401
|
"motionVarPrefixes": []
|
|
2066
2402
|
};
|
|
2067
|
-
var
|
|
2068
|
-
"name": "
|
|
2069
|
-
"defaultProps": {
|
|
2070
|
-
"labelPosition": "start",
|
|
2071
|
-
"variant": "primary",
|
|
2072
|
-
"size": "md",
|
|
2073
|
-
"value": ""
|
|
2074
|
-
},
|
|
2403
|
+
var Toast = {
|
|
2404
|
+
"name": "Toast",
|
|
2405
|
+
"defaultProps": {},
|
|
2075
2406
|
"getStylesLiterals": {
|
|
2076
|
-
"
|
|
2077
|
-
"
|
|
2078
|
-
"
|
|
2079
|
-
"
|
|
2080
|
-
"flexDirection:1": "row-reverse",
|
|
2081
|
-
"alignItems": "center",
|
|
2082
|
-
"radioVariantValueRadio": "checked",
|
|
2083
|
-
"radioVariantValueRadio:1": "unchecked",
|
|
2084
|
-
"radioVariantValueRadioCircle": "checked",
|
|
2085
|
-
"radioVariantValueRadioCircle:1": "unchecked"
|
|
2086
|
-
},
|
|
2087
|
-
"cxLiterals": [
|
|
2088
|
-
"cursor-pointer",
|
|
2089
|
-
"cursor-default",
|
|
2090
|
-
"opacity-50",
|
|
2091
|
-
"border",
|
|
2092
|
-
"uds-ring",
|
|
2093
|
-
"uds-ring-within",
|
|
2094
|
-
"transition-[background-color,border-color]",
|
|
2095
|
-
"transition-shadow",
|
|
2096
|
-
"pointer-events-none",
|
|
2097
|
-
"w-[8px]",
|
|
2098
|
-
"h-[8px]",
|
|
2099
|
-
"transition-opacity",
|
|
2100
|
-
"cursor-[inherit]",
|
|
2101
|
-
"absolute",
|
|
2102
|
-
"opacity-0",
|
|
2103
|
-
"top-1/2",
|
|
2104
|
-
"left-1/2",
|
|
2105
|
-
"w-[calc(100%+2px)]",
|
|
2106
|
-
"h-[calc(100%+2px)]",
|
|
2107
|
-
"transform",
|
|
2108
|
-
"translate-x-[-50%]",
|
|
2109
|
-
"translate-y-[-50%]",
|
|
2110
|
-
"text-start",
|
|
2111
|
-
"text-end"
|
|
2112
|
-
],
|
|
2113
|
-
"internalComponents": [
|
|
2114
|
-
"Box",
|
|
2115
|
-
"FormLabel",
|
|
2116
|
-
"SpringMotionConfig",
|
|
2117
|
-
"RootElement",
|
|
2118
|
-
"MotionBox"
|
|
2119
|
-
],
|
|
2120
|
-
"internalComponentProps": {
|
|
2121
|
-
"Box": { "borderRadius": ["full"] },
|
|
2122
|
-
"FormLabel": {
|
|
2123
|
-
"as": ["div"],
|
|
2124
|
-
"variant": ["inherit"],
|
|
2125
|
-
"color": ["inherit"]
|
|
2126
|
-
},
|
|
2127
|
-
"RootElement": { "data-testid": ["container"] },
|
|
2128
|
-
"MotionBox": {
|
|
2129
|
-
"position": ["relative"],
|
|
2130
|
-
"borderRadius": ["full"],
|
|
2131
|
-
"alignItems": ["center"],
|
|
2132
|
-
"justifyContent": ["center"],
|
|
2133
|
-
"flex": ["none"]
|
|
2134
|
-
}
|
|
2135
|
-
},
|
|
2136
|
-
"propToVariantKeys": {
|
|
2137
|
-
"size": ["radioSizeRoot", "radioSizeRadio"],
|
|
2138
|
-
"variant": [
|
|
2139
|
-
"radioVariantRoot",
|
|
2140
|
-
"radioVariantRadio",
|
|
2141
|
-
"radioVariantRadioCircle"
|
|
2142
|
-
],
|
|
2143
|
-
"reduceMotion": ["reducedMotion"]
|
|
2144
|
-
},
|
|
2145
|
-
"runtimeConfigDefaultProps": {},
|
|
2146
|
-
"runtimeConfigGetStyles": {},
|
|
2147
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2148
|
-
"motionVarPrefixes": ["--uds-motion-subtle-3-", "--uds-motion-smooth-3-"]
|
|
2149
|
-
};
|
|
2150
|
-
var RadioGroupProvider = {
|
|
2151
|
-
"name": "RadioGroupProvider",
|
|
2152
|
-
"defaultProps": {},
|
|
2153
|
-
"getStylesLiterals": {},
|
|
2154
|
-
"cxLiterals": [],
|
|
2155
|
-
"internalComponents": [
|
|
2156
|
-
"DivProps",
|
|
2157
|
-
"Comp",
|
|
2158
|
-
"RadioGroupContext.Provider"
|
|
2159
|
-
],
|
|
2160
|
-
"internalComponentProps": { "Comp": { "role": ["radiogroup"] } },
|
|
2161
|
-
"propToVariantKeys": {},
|
|
2162
|
-
"runtimeConfigDefaultProps": {},
|
|
2163
|
-
"runtimeConfigGetStyles": {},
|
|
2164
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2165
|
-
"motionVarPrefixes": []
|
|
2166
|
-
};
|
|
2167
|
-
var RadioGroupStore = {
|
|
2168
|
-
"name": "RadioGroupStore",
|
|
2169
|
-
"defaultProps": {},
|
|
2170
|
-
"getStylesLiterals": {},
|
|
2171
|
-
"cxLiterals": [],
|
|
2172
|
-
"internalComponents": [],
|
|
2173
|
-
"internalComponentProps": {},
|
|
2174
|
-
"propToVariantKeys": {},
|
|
2175
|
-
"runtimeConfigDefaultProps": {},
|
|
2176
|
-
"runtimeConfigGetStyles": {},
|
|
2177
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2178
|
-
"motionVarPrefixes": []
|
|
2179
|
-
};
|
|
2180
|
-
var Toast = {
|
|
2181
|
-
"name": "Toast",
|
|
2182
|
-
"defaultProps": {},
|
|
2183
|
-
"getStylesLiterals": {
|
|
2184
|
-
"className": "animate-spin",
|
|
2185
|
-
"className:1": "flex-none",
|
|
2186
|
-
"spacing": "2",
|
|
2187
|
-
"borderRadius": "full"
|
|
2407
|
+
"className": "animate-spin",
|
|
2408
|
+
"className:1": "flex-none",
|
|
2409
|
+
"spacing": "2",
|
|
2410
|
+
"borderRadius": "full"
|
|
2188
2411
|
},
|
|
2189
2412
|
"cxLiterals": [
|
|
2190
2413
|
"duration-0",
|
|
@@ -2432,227 +2655,6 @@ var UDSConfigProvider = {
|
|
|
2432
2655
|
"runtimeConfigInternalComponentProps": {},
|
|
2433
2656
|
"motionVarPrefixes": []
|
|
2434
2657
|
};
|
|
2435
|
-
var Accordion = {
|
|
2436
|
-
"name": "Accordion",
|
|
2437
|
-
"defaultProps": {
|
|
2438
|
-
"spacingHorizontal": "4",
|
|
2439
|
-
"spacingVertical": "4"
|
|
2440
|
-
},
|
|
2441
|
-
"getStylesLiterals": {},
|
|
2442
|
-
"cxLiterals": ["hover:bg-secondary/80", "w-full"],
|
|
2443
|
-
"internalComponents": [
|
|
2444
|
-
"Icon",
|
|
2445
|
-
"SpringMotionConfig",
|
|
2446
|
-
"Pressable",
|
|
2447
|
-
"Text",
|
|
2448
|
-
"HStack",
|
|
2449
|
-
"AnimatePresence",
|
|
2450
|
-
"VStack"
|
|
2451
|
-
],
|
|
2452
|
-
"internalComponentProps": {
|
|
2453
|
-
"Icon": {
|
|
2454
|
-
"variant": ["fill"],
|
|
2455
|
-
"size": ["sm"],
|
|
2456
|
-
"color": ["primary"]
|
|
2457
|
-
},
|
|
2458
|
-
"SpringMotionConfig": {
|
|
2459
|
-
"layoutVariant": ["smooth"],
|
|
2460
|
-
"layoutSpeed": ["3"]
|
|
2461
|
-
},
|
|
2462
|
-
"Pressable": {
|
|
2463
|
-
"display": ["flex"],
|
|
2464
|
-
"flexDirection": ["row"],
|
|
2465
|
-
"alignItems": ["center"],
|
|
2466
|
-
"justifyContent": ["space-between"],
|
|
2467
|
-
"borderRadius": ["md"]
|
|
2468
|
-
},
|
|
2469
|
-
"Text": {
|
|
2470
|
-
"variant": ["title4"],
|
|
2471
|
-
"color": ["primary"]
|
|
2472
|
-
},
|
|
2473
|
-
"HStack": {
|
|
2474
|
-
"display": ["flex"],
|
|
2475
|
-
"alignItems": ["center"],
|
|
2476
|
-
"justifyContent": ["space-between"],
|
|
2477
|
-
"columnGap": ["2.5"]
|
|
2478
|
-
}
|
|
2479
|
-
},
|
|
2480
|
-
"propToVariantKeys": {},
|
|
2481
|
-
"runtimeConfigDefaultProps": {},
|
|
2482
|
-
"runtimeConfigGetStyles": {},
|
|
2483
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2484
|
-
"motionVarPrefixes": ["--uds-motion-smooth-3-"]
|
|
2485
|
-
};
|
|
2486
|
-
var AvoidMotionLibraryProvider = {
|
|
2487
|
-
"name": "AvoidMotionLibraryProvider",
|
|
2488
|
-
"defaultProps": {},
|
|
2489
|
-
"getStylesLiterals": {},
|
|
2490
|
-
"cxLiterals": [],
|
|
2491
|
-
"internalComponents": [],
|
|
2492
|
-
"internalComponentProps": {},
|
|
2493
|
-
"propToVariantKeys": {},
|
|
2494
|
-
"runtimeConfigDefaultProps": {},
|
|
2495
|
-
"runtimeConfigGetStyles": {},
|
|
2496
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2497
|
-
"motionVarPrefixes": []
|
|
2498
|
-
};
|
|
2499
|
-
var SegmentedControl = {
|
|
2500
|
-
"name": "SegmentedControl",
|
|
2501
|
-
"defaultProps": { "textVariant": "label2" },
|
|
2502
|
-
"getStylesLiterals": {
|
|
2503
|
-
"display": "flex",
|
|
2504
|
-
"alignItems": "center",
|
|
2505
|
-
"backgroundColor": "primary",
|
|
2506
|
-
"spacingVertical": "1",
|
|
2507
|
-
"spacingHorizontal": "3",
|
|
2508
|
-
"columnGap": "1.5",
|
|
2509
|
-
"borderWidth": "thin",
|
|
2510
|
-
"borderRadius": "full",
|
|
2511
|
-
"borderColor": "muted",
|
|
2512
|
-
"borderColor:1": "transparent",
|
|
2513
|
-
"color": "primary",
|
|
2514
|
-
"color:1": "tertiary",
|
|
2515
|
-
"color:2": "muted"
|
|
2516
|
-
},
|
|
2517
|
-
"cxLiterals": [
|
|
2518
|
-
"uds-ring",
|
|
2519
|
-
"cursor-not-allowed",
|
|
2520
|
-
"opacity-50",
|
|
2521
|
-
"pointer-events-none",
|
|
2522
|
-
"hover:bg-primary"
|
|
2523
|
-
],
|
|
2524
|
-
"internalComponents": [
|
|
2525
|
-
"TextVariant",
|
|
2526
|
-
"Radio",
|
|
2527
|
-
"Icon",
|
|
2528
|
-
"RadioProvider",
|
|
2529
|
-
"HStack",
|
|
2530
|
-
"RadioGroup",
|
|
2531
|
-
"Pressable",
|
|
2532
|
-
"Text"
|
|
2533
|
-
],
|
|
2534
|
-
"internalComponentProps": {
|
|
2535
|
-
"Icon": {
|
|
2536
|
-
"size": ["sm"],
|
|
2537
|
-
"color": ["current"],
|
|
2538
|
-
"aria-hidden": ["true"]
|
|
2539
|
-
},
|
|
2540
|
-
"HStack": {
|
|
2541
|
-
"spacing": ["1"],
|
|
2542
|
-
"gap": ["1"],
|
|
2543
|
-
"backgroundColor": ["secondary"],
|
|
2544
|
-
"borderRadius": ["full"],
|
|
2545
|
-
"display": ["inline-flex"]
|
|
2546
|
-
},
|
|
2547
|
-
"Text": { "color": ["current"] }
|
|
2548
|
-
},
|
|
2549
|
-
"propToVariantKeys": {
|
|
2550
|
-
"value": ["key"],
|
|
2551
|
-
"label": ["aria-label"],
|
|
2552
|
-
"textVariant": ["variant"]
|
|
2553
|
-
},
|
|
2554
|
-
"runtimeConfigDefaultProps": {},
|
|
2555
|
-
"runtimeConfigGetStyles": {},
|
|
2556
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2557
|
-
"motionVarPrefixes": []
|
|
2558
|
-
};
|
|
2559
|
-
var SwitchV2 = {
|
|
2560
|
-
"name": "SwitchV2",
|
|
2561
|
-
"defaultProps": {
|
|
2562
|
-
"labelPosition": "start",
|
|
2563
|
-
"size": "md"
|
|
2564
|
-
},
|
|
2565
|
-
"getStylesLiterals": {
|
|
2566
|
-
"switchVariantRoot": "default",
|
|
2567
|
-
"switchVariantActiveRoot": "on",
|
|
2568
|
-
"switchVariantActiveRoot:1": "off",
|
|
2569
|
-
"switchVariantSwitch": "default",
|
|
2570
|
-
"switchVariantActiveSwitch": "on",
|
|
2571
|
-
"switchVariantActiveSwitch:1": "off",
|
|
2572
|
-
"switchVariantActiveHandle": "on",
|
|
2573
|
-
"switchVariantActiveHandle:1": "off",
|
|
2574
|
-
"switchVariantHandle": "default",
|
|
2575
|
-
"switchVariantHandleIcon": "default",
|
|
2576
|
-
"switchVariantActiveHandleIcon": "on",
|
|
2577
|
-
"switchVariantActiveHandleIcon:1": "off"
|
|
2578
|
-
},
|
|
2579
|
-
"cxLiterals": [
|
|
2580
|
-
"group",
|
|
2581
|
-
"flex",
|
|
2582
|
-
"items-center",
|
|
2583
|
-
"flex-row",
|
|
2584
|
-
"flex-row-reverse",
|
|
2585
|
-
"uds-ring",
|
|
2586
|
-
"uds-ring-within",
|
|
2587
|
-
"relative",
|
|
2588
|
-
"uds-border-radius-full",
|
|
2589
|
-
"transition-[background-color,box-shadow]",
|
|
2590
|
-
"pointer-events-none",
|
|
2591
|
-
"w-full",
|
|
2592
|
-
"h-full",
|
|
2593
|
-
"absolute",
|
|
2594
|
-
"top-0",
|
|
2595
|
-
"bottom-0",
|
|
2596
|
-
"right-0",
|
|
2597
|
-
"left-0",
|
|
2598
|
-
"overflow-hidden",
|
|
2599
|
-
"group-hover:scale-105",
|
|
2600
|
-
"opacity-95",
|
|
2601
|
-
"group-hover:opacity-100",
|
|
2602
|
-
"transition-[transform,opacity]",
|
|
2603
|
-
"opacity-0",
|
|
2604
|
-
"top-1/2",
|
|
2605
|
-
"left-1/2",
|
|
2606
|
-
"transform",
|
|
2607
|
-
"translate-x-[-50%]",
|
|
2608
|
-
"translate-y-[-50%]",
|
|
2609
|
-
"transition-opacity",
|
|
2610
|
-
"cursor-[inherit]",
|
|
2611
|
-
"w-[calc(100%+2px)]",
|
|
2612
|
-
"h-[calc(100%+2px)]",
|
|
2613
|
-
"text-start",
|
|
2614
|
-
"text-end",
|
|
2615
|
-
"opacity-100"
|
|
2616
|
-
],
|
|
2617
|
-
"internalComponents": [
|
|
2618
|
-
"IconSlot",
|
|
2619
|
-
"Box",
|
|
2620
|
-
"FormLabel",
|
|
2621
|
-
"SpringMotionConfig",
|
|
2622
|
-
"RootElement",
|
|
2623
|
-
"MotionBox"
|
|
2624
|
-
],
|
|
2625
|
-
"internalComponentProps": {
|
|
2626
|
-
"IconSlot": { "data-testid": ["on-icon", "off-icon"] },
|
|
2627
|
-
"FormLabel": {
|
|
2628
|
-
"as": ["div"],
|
|
2629
|
-
"variant": ["inherit"],
|
|
2630
|
-
"color": ["inherit"]
|
|
2631
|
-
},
|
|
2632
|
-
"SpringMotionConfig": {
|
|
2633
|
-
"layoutVariant": ["bouncy"],
|
|
2634
|
-
"layoutSpeed": ["4"]
|
|
2635
|
-
},
|
|
2636
|
-
"RootElement": { "data-testid": ["switch-root"] },
|
|
2637
|
-
"MotionBox": { "layout": ["position"] }
|
|
2638
|
-
},
|
|
2639
|
-
"propToVariantKeys": {
|
|
2640
|
-
"size": [
|
|
2641
|
-
"switchSizeRoot",
|
|
2642
|
-
"switchSizeSwitch",
|
|
2643
|
-
"switchSizeHandle",
|
|
2644
|
-
"switchSizeHandleIcon"
|
|
2645
|
-
],
|
|
2646
|
-
"onIcon": ["icon"],
|
|
2647
|
-
"offIcon": ["icon"],
|
|
2648
|
-
"reduceMotion": ["reducedMotion"],
|
|
2649
|
-
"isOn": ["layoutDependency"]
|
|
2650
|
-
},
|
|
2651
|
-
"runtimeConfigDefaultProps": {},
|
|
2652
|
-
"runtimeConfigGetStyles": {},
|
|
2653
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2654
|
-
"motionVarPrefixes": ["--uds-motion-bouncy-4-", "--uds-motion-smooth-3-"]
|
|
2655
|
-
};
|
|
2656
2658
|
var componentData_default = {
|
|
2657
2659
|
Box,
|
|
2658
2660
|
FormLabel,
|
|
@@ -2670,8 +2672,11 @@ var componentData_default = {
|
|
|
2670
2672
|
BannerDescription,
|
|
2671
2673
|
BannerTitle,
|
|
2672
2674
|
Divider,
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
+
DividerLabel,
|
|
2676
|
+
DividerLine,
|
|
2677
|
+
Spinner,
|
|
2678
|
+
"Table.mocks": Table_mocks,
|
|
2679
|
+
Table,
|
|
2675
2680
|
AnimateHeightChange,
|
|
2676
2681
|
Badge,
|
|
2677
2682
|
Button,
|
|
@@ -2680,9 +2685,10 @@ var componentData_default = {
|
|
|
2680
2685
|
Pressable,
|
|
2681
2686
|
SpringMotionConfig,
|
|
2682
2687
|
Switch,
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2688
|
+
Accordion,
|
|
2689
|
+
AvoidMotionLibraryProvider,
|
|
2690
|
+
SegmentedControl,
|
|
2691
|
+
SwitchV2,
|
|
2686
2692
|
Avatar,
|
|
2687
2693
|
AvatarIcon,
|
|
2688
2694
|
AvatarImage,
|
|
@@ -2696,6 +2702,12 @@ var componentData_default = {
|
|
|
2696
2702
|
BottomSheetProvider,
|
|
2697
2703
|
BottomSheetTrigger,
|
|
2698
2704
|
UDSBottomSheetConfigProvider,
|
|
2705
|
+
Chip,
|
|
2706
|
+
ChipBase,
|
|
2707
|
+
ChipButton,
|
|
2708
|
+
ChipDismissible,
|
|
2709
|
+
ChipLink,
|
|
2710
|
+
ChipToggle,
|
|
2699
2711
|
"Menu.Content": Menu_Content,
|
|
2700
2712
|
"Menu.Divider": Menu_Divider,
|
|
2701
2713
|
"Menu.Item": Menu_Item,
|
|
@@ -2705,12 +2717,6 @@ var componentData_default = {
|
|
|
2705
2717
|
"Menu.Trigger": Menu_Trigger,
|
|
2706
2718
|
"Menu.index": Menu_index,
|
|
2707
2719
|
Menu,
|
|
2708
|
-
Chip,
|
|
2709
|
-
ChipBase,
|
|
2710
|
-
ChipButton,
|
|
2711
|
-
ChipDismissible,
|
|
2712
|
-
ChipLink,
|
|
2713
|
-
ChipToggle,
|
|
2714
2720
|
Modal,
|
|
2715
2721
|
ModalActions,
|
|
2716
2722
|
ModalContent,
|
|
@@ -2726,13 +2732,13 @@ var componentData_default = {
|
|
|
2726
2732
|
PopoverContext,
|
|
2727
2733
|
PopoverTrigger,
|
|
2728
2734
|
UDSPopoverConfigProvider,
|
|
2735
|
+
Radio,
|
|
2736
|
+
RadioGroupProvider,
|
|
2737
|
+
RadioGroupStore,
|
|
2729
2738
|
Tab,
|
|
2730
2739
|
TabList,
|
|
2731
2740
|
TabPanel,
|
|
2732
2741
|
Tabs,
|
|
2733
|
-
Radio,
|
|
2734
|
-
RadioGroupProvider,
|
|
2735
|
-
RadioGroupStore,
|
|
2736
2742
|
Toast,
|
|
2737
2743
|
ToastContainer,
|
|
2738
2744
|
ToastPortal,
|
|
@@ -2742,11 +2748,7 @@ var componentData_default = {
|
|
|
2742
2748
|
TooltipTrigger,
|
|
2743
2749
|
UDSTooltipConfigProvider,
|
|
2744
2750
|
UDSBreakpointsConfigProvider,
|
|
2745
|
-
UDSConfigProvider
|
|
2746
|
-
Accordion,
|
|
2747
|
-
AvoidMotionLibraryProvider,
|
|
2748
|
-
SegmentedControl,
|
|
2749
|
-
SwitchV2
|
|
2751
|
+
UDSConfigProvider
|
|
2750
2752
|
};
|
|
2751
2753
|
//#endregion
|
|
2752
2754
|
Object.defineProperty(exports, "Accordion", {
|
|
@@ -2929,16 +2931,16 @@ Object.defineProperty(exports, "Divider", {
|
|
|
2929
2931
|
return Divider;
|
|
2930
2932
|
}
|
|
2931
2933
|
});
|
|
2932
|
-
Object.defineProperty(exports, "
|
|
2934
|
+
Object.defineProperty(exports, "DividerLabel", {
|
|
2933
2935
|
enumerable: true,
|
|
2934
2936
|
get: function() {
|
|
2935
|
-
return
|
|
2937
|
+
return DividerLabel;
|
|
2936
2938
|
}
|
|
2937
2939
|
});
|
|
2938
|
-
Object.defineProperty(exports, "
|
|
2940
|
+
Object.defineProperty(exports, "DividerLine", {
|
|
2939
2941
|
enumerable: true,
|
|
2940
2942
|
get: function() {
|
|
2941
|
-
return
|
|
2943
|
+
return DividerLine;
|
|
2942
2944
|
}
|
|
2943
2945
|
});
|
|
2944
2946
|
Object.defineProperty(exports, "FormLabel", {
|