@100mslive/roomkit-react 0.1.9-alpha.1 → 0.1.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (62) hide show
  1. package/dist/{HLSView-4JC65BAY.js → HLSView-7WXNI2WP.js} +14 -10
  2. package/dist/HLSView-7WXNI2WP.js.map +7 -0
  3. package/dist/Modal/Dialog.d.ts +878 -9
  4. package/dist/Modal/DialogContent.d.ts +2 -2
  5. package/dist/Prebuilt/components/Leave/DesktopLeaveRoom.d.ts +4 -4
  6. package/dist/Prebuilt/components/Leave/EndSessionContent.d.ts +3 -3
  7. package/dist/Prebuilt/components/Leave/LeaveSessionContent.d.ts +3 -3
  8. package/dist/Prebuilt/components/Leave/MwebLeaveRoom.d.ts +4 -4
  9. package/dist/Prebuilt/components/VirtualBackground/VBCollection.d.ts +13 -0
  10. package/dist/Prebuilt/components/VirtualBackground/VBOption.d.ts +15 -0
  11. package/dist/Prebuilt/components/VirtualBackground/constants.d.ts +9 -0
  12. package/dist/Prebuilt/components/hooks/useRedirectToLeave.d.ts +1 -1
  13. package/dist/Prebuilt/layouts/SidePane.d.ts +2 -2
  14. package/dist/{chunk-322YFA55.js → chunk-N5HPVHTK.js} +6113 -4910
  15. package/dist/chunk-N5HPVHTK.js.map +7 -0
  16. package/dist/index.cjs.js +5262 -5095
  17. package/dist/index.cjs.js.map +4 -4
  18. package/dist/index.js +11 -13
  19. package/dist/meta.cjs.json +1525 -1328
  20. package/dist/meta.esbuild.json +1745 -1624
  21. package/package.json +6 -6
  22. package/src/Modal/Dialog.tsx +3 -11
  23. package/src/Modal/DialogContent.tsx +4 -4
  24. package/src/Prebuilt/AppStateContext.tsx +3 -4
  25. package/src/Prebuilt/common/constants.js +3 -0
  26. package/src/Prebuilt/components/AppData/AppData.jsx +4 -11
  27. package/src/Prebuilt/components/AppData/useSidepane.js +6 -5
  28. package/src/Prebuilt/components/Connection/ConnectionIndicator.tsx +2 -2
  29. package/src/Prebuilt/components/Footer/Footer.tsx +4 -8
  30. package/src/Prebuilt/components/Footer/ParticipantList.jsx +1 -6
  31. package/src/Prebuilt/components/Header/Header.tsx +2 -2
  32. package/src/Prebuilt/components/Header/common.jsx +46 -23
  33. package/src/Prebuilt/components/Leave/DesktopLeaveRoom.tsx +5 -5
  34. package/src/Prebuilt/components/Leave/EndSessionContent.tsx +2 -2
  35. package/src/Prebuilt/components/Leave/LeaveRoom.tsx +11 -8
  36. package/src/Prebuilt/components/Leave/LeaveSessionContent.tsx +2 -2
  37. package/src/Prebuilt/components/Leave/MwebLeaveRoom.tsx +3 -3
  38. package/src/Prebuilt/components/MwebLandscapePrompt.tsx +10 -4
  39. package/src/Prebuilt/components/Notifications/HLSFailureModal.tsx +1 -4
  40. package/src/Prebuilt/components/Notifications/Notifications.tsx +1 -1
  41. package/src/Prebuilt/components/Polls/CreatePollQuiz/PollsQuizMenu.jsx +5 -1
  42. package/src/Prebuilt/components/Polls/CreateQuestions/QuestionForm.jsx +6 -2
  43. package/src/Prebuilt/components/Polls/Voting/Voting.jsx +1 -1
  44. package/src/Prebuilt/components/Preview/PreviewForm.tsx +7 -2
  45. package/src/Prebuilt/components/Preview/PreviewJoin.tsx +62 -57
  46. package/src/Prebuilt/components/RoleChangeRequest/RequestPrompt.tsx +2 -3
  47. package/src/Prebuilt/components/Settings/DeviceSettings.jsx +11 -0
  48. package/src/Prebuilt/components/VirtualBackground/VBCollection.tsx +50 -0
  49. package/src/Prebuilt/components/VirtualBackground/VBOption.tsx +50 -0
  50. package/src/Prebuilt/components/VirtualBackground/VBPicker.jsx +165 -0
  51. package/src/Prebuilt/components/VirtualBackground/VBToggle.jsx +25 -0
  52. package/src/Prebuilt/components/VirtualBackground/constants.ts +26 -0
  53. package/src/Prebuilt/components/hooks/useAutoStartStreaming.tsx +4 -7
  54. package/src/Prebuilt/components/hooks/useRedirectToLeave.tsx +5 -8
  55. package/src/Prebuilt/layouts/HLSView.jsx +7 -1
  56. package/src/Prebuilt/layouts/SidePane.tsx +21 -5
  57. package/dist/HLSView-4JC65BAY.js.map +0 -7
  58. package/dist/VirtualBackground-MIRXD2HZ.js +0 -175
  59. package/dist/VirtualBackground-MIRXD2HZ.js.map +0 -7
  60. package/dist/chunk-322YFA55.js.map +0 -7
  61. package/dist/chunk-6UGU3UJL.js +0 -962
  62. package/dist/chunk-6UGU3UJL.js.map +0 -7
@@ -1,5 +1,4 @@
1
1
  import React, { ReactNode } from 'react';
2
- import { CSS } from '../Theme';
3
2
  export declare const Dialog: {
4
3
  Root: import("@stitches/react/types/styled-component").StyledComponent<React.FC<import("@radix-ui/react-dialog").DialogProps>, {}, {}, import("@stitches/react/types/css-util").CSS<{}, {}, {}, {}>>;
5
4
  Trigger: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<import("@radix-ui/react-dialog").DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>, {}, {
@@ -441,14 +440,884 @@ export declare const Dialog: {
441
440
  };
442
441
  };
443
442
  }>>;
444
- Overlay: ({ css }: {
445
- css?: CSS | undefined;
446
- }) => React.JSX.Element;
447
- Content: ({ children, props, css }: {
448
- children: ReactNode;
449
- props?: any;
450
- css?: CSS | undefined;
451
- }) => React.JSX.Element;
443
+ Overlay: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<import("@radix-ui/react-dialog").DialogOverlayProps & React.RefAttributes<HTMLDivElement>>, {}, {
444
+ allowMotion: string;
445
+ sm: string;
446
+ md: string;
447
+ lg: string;
448
+ xl: string;
449
+ '2xl': string;
450
+ ls: string;
451
+ }, import("@stitches/react/types/css-util").CSS<{
452
+ allowMotion: string;
453
+ sm: string;
454
+ md: string;
455
+ lg: string;
456
+ xl: string;
457
+ '2xl': string;
458
+ ls: string;
459
+ }, {
460
+ colors: {
461
+ primary_default: string;
462
+ primary_bright: string;
463
+ primary_dim: string;
464
+ primary_disabled: string;
465
+ on_primary_high: string;
466
+ on_primary_medium: string;
467
+ on_primary_low: string;
468
+ secondary_default: string;
469
+ secondary_bright: string;
470
+ secondary_dim: string;
471
+ secondary_disabled: string;
472
+ on_secondary_high: string;
473
+ on_secondary_medium: string;
474
+ on_secondary_low: string;
475
+ background_default: string;
476
+ background_dim: string;
477
+ surface_default: string;
478
+ surface_bright: string;
479
+ surface_brighter: string;
480
+ surface_dim: string;
481
+ on_surface_high: string;
482
+ on_surface_medium: string;
483
+ on_surface_low: string;
484
+ border_default: string;
485
+ border_bright: string;
486
+ alert_success: string;
487
+ alert_warning: string;
488
+ alert_error_default: string;
489
+ alert_error_bright: string;
490
+ alert_error_brighter: string;
491
+ alert_error_dim: string;
492
+ };
493
+ shadows: {
494
+ sm: string;
495
+ md: string;
496
+ };
497
+ fonts: {
498
+ sans: string;
499
+ };
500
+ fontSizes: {
501
+ h1: string;
502
+ h2: string;
503
+ h3: string;
504
+ h4: string;
505
+ h5: string;
506
+ h6: string;
507
+ tiny: string;
508
+ xs: string;
509
+ sm: string;
510
+ md: string;
511
+ lg: string;
512
+ };
513
+ fontWeights: {
514
+ semiBold: number;
515
+ medium: number;
516
+ regular: number;
517
+ };
518
+ lineHeights: {
519
+ h1: string;
520
+ h2: string;
521
+ h3: string;
522
+ h4: string;
523
+ h5: string;
524
+ h6: string;
525
+ tiny: string;
526
+ xs: string;
527
+ sm: string;
528
+ md: string;
529
+ };
530
+ radii: {
531
+ '0': string;
532
+ '1': string;
533
+ '2': string;
534
+ '3': string;
535
+ '4': string;
536
+ round: string;
537
+ };
538
+ space: {
539
+ 0: string;
540
+ xs: string;
541
+ sm: string;
542
+ md: string;
543
+ lg: string;
544
+ xl: string;
545
+ px: string;
546
+ 1: string;
547
+ 2: string;
548
+ 3: string;
549
+ 4: string;
550
+ 5: string;
551
+ 6: string;
552
+ 7: string;
553
+ 8: string;
554
+ 9: string;
555
+ 10: string;
556
+ 11: string;
557
+ 12: string;
558
+ 13: string;
559
+ 14: string;
560
+ 15: string;
561
+ 16: string;
562
+ 17: string;
563
+ 18: string;
564
+ 19: string;
565
+ 20: string;
566
+ 24: string;
567
+ 28: string;
568
+ 32: string;
569
+ 36: string;
570
+ 40: string;
571
+ 44: string;
572
+ 48: string;
573
+ 52: string;
574
+ 56: string;
575
+ 60: string;
576
+ 64: string;
577
+ 72: string;
578
+ 80: string;
579
+ 96: string;
580
+ 100: string;
581
+ };
582
+ borderWidths: {
583
+ light: string;
584
+ normal: string;
585
+ bold: string;
586
+ extrabold: string;
587
+ black: string;
588
+ };
589
+ }, {
590
+ width: string;
591
+ height: string;
592
+ minWidth: string;
593
+ maxWidth: string;
594
+ minHeight: string;
595
+ maxHeight: string;
596
+ flexBasis: string;
597
+ gridTemplateColumns: string;
598
+ gridTemplateRows: string;
599
+ blockSize: string;
600
+ minBlockSize: string;
601
+ maxBlockSize: string;
602
+ inlineSize: string;
603
+ minInlineSize: string;
604
+ maxInlineSize: string;
605
+ gap: "space";
606
+ gridGap: "space";
607
+ columnGap: "space";
608
+ gridColumnGap: "space";
609
+ rowGap: "space";
610
+ gridRowGap: "space";
611
+ inset: "space";
612
+ insetBlock: "space";
613
+ insetBlockEnd: "space";
614
+ insetBlockStart: "space";
615
+ insetInline: "space";
616
+ insetInlineEnd: "space";
617
+ insetInlineStart: "space";
618
+ margin: "space";
619
+ marginTop: "space";
620
+ marginRight: "space";
621
+ marginBottom: "space";
622
+ marginLeft: "space";
623
+ marginBlock: "space";
624
+ marginBlockEnd: "space";
625
+ marginBlockStart: "space";
626
+ marginInline: "space";
627
+ marginInlineEnd: "space";
628
+ marginInlineStart: "space";
629
+ padding: "space";
630
+ paddingTop: "space";
631
+ paddingRight: "space";
632
+ paddingBottom: "space";
633
+ paddingLeft: "space";
634
+ paddingBlock: "space";
635
+ paddingBlockEnd: "space";
636
+ paddingBlockStart: "space";
637
+ paddingInline: "space";
638
+ paddingInlineEnd: "space";
639
+ paddingInlineStart: "space";
640
+ scrollMargin: "space";
641
+ scrollMarginTop: "space";
642
+ scrollMarginRight: "space";
643
+ scrollMarginBottom: "space";
644
+ scrollMarginLeft: "space";
645
+ scrollMarginBlock: "space";
646
+ scrollMarginBlockEnd: "space";
647
+ scrollMarginBlockStart: "space";
648
+ scrollMarginInline: "space";
649
+ scrollMarginInlineEnd: "space";
650
+ scrollMarginInlineStart: "space";
651
+ scrollPadding: "space";
652
+ scrollPaddingTop: "space";
653
+ scrollPaddingRight: "space";
654
+ scrollPaddingBottom: "space";
655
+ scrollPaddingLeft: "space";
656
+ scrollPaddingBlock: "space";
657
+ scrollPaddingBlockEnd: "space";
658
+ scrollPaddingBlockStart: "space";
659
+ scrollPaddingInline: "space";
660
+ scrollPaddingInlineEnd: "space";
661
+ scrollPaddingInlineStart: "space";
662
+ top: "space";
663
+ right: "space";
664
+ bottom: "space";
665
+ left: "space";
666
+ fontSize: "fontSizes";
667
+ background: "colors";
668
+ backgroundColor: "colors";
669
+ backgroundImage: "colors";
670
+ borderImage: "colors";
671
+ border: "colors";
672
+ borderBlock: "colors";
673
+ borderBlockEnd: "colors";
674
+ borderBlockStart: "colors";
675
+ borderBottom: "colors";
676
+ borderBottomColor: "colors";
677
+ borderColor: "colors";
678
+ borderInline: "colors";
679
+ borderInlineEnd: "colors";
680
+ borderInlineStart: "colors";
681
+ borderLeft: "colors";
682
+ borderLeftColor: "colors";
683
+ borderRight: "colors";
684
+ borderRightColor: "colors";
685
+ borderTop: "colors";
686
+ borderTopColor: "colors";
687
+ caretColor: "colors";
688
+ color: "colors";
689
+ columnRuleColor: "colors";
690
+ outline: "colors";
691
+ outlineColor: "colors";
692
+ fill: "colors";
693
+ stroke: "colors";
694
+ textDecorationColor: "colors";
695
+ fontFamily: "fonts";
696
+ fontWeight: "fontWeights";
697
+ lineHeight: "lineHeights";
698
+ letterSpacing: "letterSpacings";
699
+ borderWidth: "borderWidths";
700
+ borderTopWidth: "borderWidths";
701
+ borderLeftWidth: "borderWidths";
702
+ borderRightWidth: "borderWidths";
703
+ borderBottomWidth: "borderWidths";
704
+ borderStyle: "borderStyles";
705
+ borderTopStyle: "borderStyles";
706
+ borderLeftStyle: "borderStyles";
707
+ borderRightStyle: "borderStyles";
708
+ borderBottomStyle: "borderStyles";
709
+ borderRadius: "radii";
710
+ borderTopLeftRadius: "radii";
711
+ borderTopRightRadius: "radii";
712
+ borderBottomRightRadius: "radii";
713
+ borderBottomLeftRadius: "radii";
714
+ boxShadow: "shadows";
715
+ textShadow: "shadows";
716
+ transition: "transitions";
717
+ zIndex: "zIndices";
718
+ }, {
719
+ bg: (value: {
720
+ readonly [$$PropertyValue]: "backgroundColor";
721
+ }) => {
722
+ backgroundColor: {
723
+ readonly [$$PropertyValue]: "backgroundColor";
724
+ };
725
+ };
726
+ c: (value: {
727
+ readonly [$$PropertyValue]: "color";
728
+ }) => {
729
+ color: {
730
+ readonly [$$PropertyValue]: "color";
731
+ };
732
+ };
733
+ r: (value: {
734
+ readonly [$$ScaleValue]: "radii";
735
+ }) => {
736
+ borderRadius: {
737
+ readonly [$$ScaleValue]: "radii";
738
+ };
739
+ };
740
+ fs: (value: string | number | {
741
+ readonly [$$PropertyValue]: "fontSize";
742
+ }) => {
743
+ fontSize: string | number | {
744
+ readonly [$$PropertyValue]: "fontSize";
745
+ };
746
+ };
747
+ size: (value: string | number | {
748
+ readonly [$$ScaleValue]: "space";
749
+ }) => {
750
+ height: string | number | {
751
+ readonly [$$ScaleValue]: "space";
752
+ };
753
+ width: string | number | {
754
+ readonly [$$ScaleValue]: "space";
755
+ };
756
+ };
757
+ w: (value: string | number | {
758
+ readonly [$$ScaleValue]: "space";
759
+ }) => {
760
+ width: string | number | {
761
+ readonly [$$ScaleValue]: "space";
762
+ };
763
+ };
764
+ h: (value: string | number | {
765
+ readonly [$$ScaleValue]: "space";
766
+ }) => {
767
+ height: string | number | {
768
+ readonly [$$ScaleValue]: "space";
769
+ };
770
+ };
771
+ p: (value: string | number | {
772
+ readonly [$$ScaleValue]: "space";
773
+ }) => {
774
+ padding: string | number | {
775
+ readonly [$$ScaleValue]: "space";
776
+ };
777
+ };
778
+ pt: (value: string | number | {
779
+ readonly [$$ScaleValue]: "space";
780
+ }) => {
781
+ paddingTop: string | number | {
782
+ readonly [$$ScaleValue]: "space";
783
+ };
784
+ };
785
+ pr: (value: string | number | {
786
+ readonly [$$ScaleValue]: "space";
787
+ }) => {
788
+ paddingRight: string | number | {
789
+ readonly [$$ScaleValue]: "space";
790
+ };
791
+ };
792
+ pb: (value: string | number | {
793
+ readonly [$$ScaleValue]: "space";
794
+ }) => {
795
+ paddingBottom: string | number | {
796
+ readonly [$$ScaleValue]: "space";
797
+ };
798
+ };
799
+ pl: (value: string | number | {
800
+ readonly [$$ScaleValue]: "space";
801
+ }) => {
802
+ paddingLeft: string | number | {
803
+ readonly [$$ScaleValue]: "space";
804
+ };
805
+ };
806
+ px: (value: string | number | {
807
+ readonly [$$ScaleValue]: "space";
808
+ }) => {
809
+ paddingLeft: string | number | {
810
+ readonly [$$ScaleValue]: "space";
811
+ };
812
+ paddingRight: string | number | {
813
+ readonly [$$ScaleValue]: "space";
814
+ };
815
+ };
816
+ py: (value: string | number | {
817
+ readonly [$$ScaleValue]: "space";
818
+ }) => {
819
+ paddingTop: string | number | {
820
+ readonly [$$ScaleValue]: "space";
821
+ };
822
+ paddingBottom: string | number | {
823
+ readonly [$$ScaleValue]: "space";
824
+ };
825
+ };
826
+ m: (value: string | number | {
827
+ readonly [$$ScaleValue]: "space";
828
+ }) => {
829
+ margin: string | number | {
830
+ readonly [$$ScaleValue]: "space";
831
+ };
832
+ };
833
+ mt: (value: string | number | {
834
+ readonly [$$ScaleValue]: "space";
835
+ }) => {
836
+ marginTop: string | number | {
837
+ readonly [$$ScaleValue]: "space";
838
+ };
839
+ };
840
+ mr: (value: string | number | {
841
+ readonly [$$ScaleValue]: "space";
842
+ }) => {
843
+ marginRight: string | number | {
844
+ readonly [$$ScaleValue]: "space";
845
+ };
846
+ };
847
+ mb: (value: string | number | {
848
+ readonly [$$ScaleValue]: "space";
849
+ }) => {
850
+ marginBottom: string | number | {
851
+ readonly [$$ScaleValue]: "space";
852
+ };
853
+ };
854
+ ml: (value: string | number | {
855
+ readonly [$$ScaleValue]: "space";
856
+ }) => {
857
+ marginLeft: string | number | {
858
+ readonly [$$ScaleValue]: "space";
859
+ };
860
+ };
861
+ mx: (value: string | number | {
862
+ readonly [$$ScaleValue]: "space";
863
+ }) => {
864
+ marginLeft: string | number | {
865
+ readonly [$$ScaleValue]: "space";
866
+ };
867
+ marginRight: string | number | {
868
+ readonly [$$ScaleValue]: "space";
869
+ };
870
+ };
871
+ my: (value: string | number | {
872
+ readonly [$$ScaleValue]: "space";
873
+ }) => {
874
+ marginTop: string | number | {
875
+ readonly [$$ScaleValue]: "space";
876
+ };
877
+ marginBottom: string | number | {
878
+ readonly [$$ScaleValue]: "space";
879
+ };
880
+ };
881
+ }>>;
882
+ Content: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<import("@radix-ui/react-dialog").DialogContentProps & React.RefAttributes<HTMLDivElement>>, {}, {
883
+ allowMotion: string;
884
+ sm: string;
885
+ md: string;
886
+ lg: string;
887
+ xl: string;
888
+ '2xl': string;
889
+ ls: string;
890
+ }, import("@stitches/react/types/css-util").CSS<{
891
+ allowMotion: string;
892
+ sm: string;
893
+ md: string;
894
+ lg: string;
895
+ xl: string;
896
+ '2xl': string;
897
+ ls: string;
898
+ }, {
899
+ colors: {
900
+ primary_default: string;
901
+ primary_bright: string;
902
+ primary_dim: string;
903
+ primary_disabled: string;
904
+ on_primary_high: string;
905
+ on_primary_medium: string;
906
+ on_primary_low: string;
907
+ secondary_default: string;
908
+ secondary_bright: string;
909
+ secondary_dim: string;
910
+ secondary_disabled: string;
911
+ on_secondary_high: string;
912
+ on_secondary_medium: string;
913
+ on_secondary_low: string;
914
+ background_default: string;
915
+ background_dim: string;
916
+ surface_default: string;
917
+ surface_bright: string;
918
+ surface_brighter: string;
919
+ surface_dim: string;
920
+ on_surface_high: string;
921
+ on_surface_medium: string;
922
+ on_surface_low: string;
923
+ border_default: string;
924
+ border_bright: string;
925
+ alert_success: string;
926
+ alert_warning: string;
927
+ alert_error_default: string;
928
+ alert_error_bright: string;
929
+ alert_error_brighter: string;
930
+ alert_error_dim: string;
931
+ };
932
+ shadows: {
933
+ sm: string;
934
+ md: string;
935
+ };
936
+ fonts: {
937
+ sans: string;
938
+ };
939
+ fontSizes: {
940
+ h1: string;
941
+ h2: string;
942
+ h3: string;
943
+ h4: string;
944
+ h5: string;
945
+ h6: string;
946
+ tiny: string;
947
+ xs: string;
948
+ sm: string;
949
+ md: string;
950
+ lg: string;
951
+ };
952
+ fontWeights: {
953
+ semiBold: number;
954
+ medium: number;
955
+ regular: number;
956
+ };
957
+ lineHeights: {
958
+ h1: string;
959
+ h2: string;
960
+ h3: string;
961
+ h4: string;
962
+ h5: string;
963
+ h6: string;
964
+ tiny: string;
965
+ xs: string;
966
+ sm: string;
967
+ md: string;
968
+ };
969
+ radii: {
970
+ '0': string;
971
+ '1': string;
972
+ '2': string;
973
+ '3': string;
974
+ '4': string;
975
+ round: string;
976
+ };
977
+ space: {
978
+ 0: string;
979
+ xs: string;
980
+ sm: string;
981
+ md: string;
982
+ lg: string;
983
+ xl: string;
984
+ px: string;
985
+ 1: string;
986
+ 2: string;
987
+ 3: string;
988
+ 4: string;
989
+ 5: string;
990
+ 6: string;
991
+ 7: string;
992
+ 8: string;
993
+ 9: string;
994
+ 10: string;
995
+ 11: string;
996
+ 12: string;
997
+ 13: string;
998
+ 14: string;
999
+ 15: string;
1000
+ 16: string;
1001
+ 17: string;
1002
+ 18: string;
1003
+ 19: string;
1004
+ 20: string;
1005
+ 24: string;
1006
+ 28: string;
1007
+ 32: string;
1008
+ 36: string;
1009
+ 40: string;
1010
+ 44: string;
1011
+ 48: string;
1012
+ 52: string;
1013
+ 56: string;
1014
+ 60: string;
1015
+ 64: string;
1016
+ 72: string;
1017
+ 80: string;
1018
+ 96: string;
1019
+ 100: string;
1020
+ };
1021
+ borderWidths: {
1022
+ light: string;
1023
+ normal: string;
1024
+ bold: string;
1025
+ extrabold: string;
1026
+ black: string;
1027
+ };
1028
+ }, {
1029
+ width: string;
1030
+ height: string;
1031
+ minWidth: string;
1032
+ maxWidth: string;
1033
+ minHeight: string;
1034
+ maxHeight: string;
1035
+ flexBasis: string;
1036
+ gridTemplateColumns: string;
1037
+ gridTemplateRows: string;
1038
+ blockSize: string;
1039
+ minBlockSize: string;
1040
+ maxBlockSize: string;
1041
+ inlineSize: string;
1042
+ minInlineSize: string;
1043
+ maxInlineSize: string;
1044
+ gap: "space";
1045
+ gridGap: "space";
1046
+ columnGap: "space";
1047
+ gridColumnGap: "space";
1048
+ rowGap: "space";
1049
+ gridRowGap: "space";
1050
+ inset: "space";
1051
+ insetBlock: "space";
1052
+ insetBlockEnd: "space";
1053
+ insetBlockStart: "space";
1054
+ insetInline: "space";
1055
+ insetInlineEnd: "space";
1056
+ insetInlineStart: "space";
1057
+ margin: "space";
1058
+ marginTop: "space";
1059
+ marginRight: "space";
1060
+ marginBottom: "space";
1061
+ marginLeft: "space";
1062
+ marginBlock: "space";
1063
+ marginBlockEnd: "space";
1064
+ marginBlockStart: "space";
1065
+ marginInline: "space";
1066
+ marginInlineEnd: "space";
1067
+ marginInlineStart: "space";
1068
+ padding: "space";
1069
+ paddingTop: "space";
1070
+ paddingRight: "space";
1071
+ paddingBottom: "space";
1072
+ paddingLeft: "space";
1073
+ paddingBlock: "space";
1074
+ paddingBlockEnd: "space";
1075
+ paddingBlockStart: "space";
1076
+ paddingInline: "space";
1077
+ paddingInlineEnd: "space";
1078
+ paddingInlineStart: "space";
1079
+ scrollMargin: "space";
1080
+ scrollMarginTop: "space";
1081
+ scrollMarginRight: "space";
1082
+ scrollMarginBottom: "space";
1083
+ scrollMarginLeft: "space";
1084
+ scrollMarginBlock: "space";
1085
+ scrollMarginBlockEnd: "space";
1086
+ scrollMarginBlockStart: "space";
1087
+ scrollMarginInline: "space";
1088
+ scrollMarginInlineEnd: "space";
1089
+ scrollMarginInlineStart: "space";
1090
+ scrollPadding: "space";
1091
+ scrollPaddingTop: "space";
1092
+ scrollPaddingRight: "space";
1093
+ scrollPaddingBottom: "space";
1094
+ scrollPaddingLeft: "space";
1095
+ scrollPaddingBlock: "space";
1096
+ scrollPaddingBlockEnd: "space";
1097
+ scrollPaddingBlockStart: "space";
1098
+ scrollPaddingInline: "space";
1099
+ scrollPaddingInlineEnd: "space";
1100
+ scrollPaddingInlineStart: "space";
1101
+ top: "space";
1102
+ right: "space";
1103
+ bottom: "space";
1104
+ left: "space";
1105
+ fontSize: "fontSizes";
1106
+ background: "colors";
1107
+ backgroundColor: "colors";
1108
+ backgroundImage: "colors";
1109
+ borderImage: "colors";
1110
+ border: "colors";
1111
+ borderBlock: "colors";
1112
+ borderBlockEnd: "colors";
1113
+ borderBlockStart: "colors";
1114
+ borderBottom: "colors";
1115
+ borderBottomColor: "colors";
1116
+ borderColor: "colors";
1117
+ borderInline: "colors";
1118
+ borderInlineEnd: "colors";
1119
+ borderInlineStart: "colors";
1120
+ borderLeft: "colors";
1121
+ borderLeftColor: "colors";
1122
+ borderRight: "colors";
1123
+ borderRightColor: "colors";
1124
+ borderTop: "colors";
1125
+ borderTopColor: "colors";
1126
+ caretColor: "colors";
1127
+ color: "colors";
1128
+ columnRuleColor: "colors";
1129
+ outline: "colors";
1130
+ outlineColor: "colors";
1131
+ fill: "colors";
1132
+ stroke: "colors";
1133
+ textDecorationColor: "colors";
1134
+ fontFamily: "fonts";
1135
+ fontWeight: "fontWeights";
1136
+ lineHeight: "lineHeights";
1137
+ letterSpacing: "letterSpacings";
1138
+ borderWidth: "borderWidths";
1139
+ borderTopWidth: "borderWidths";
1140
+ borderLeftWidth: "borderWidths";
1141
+ borderRightWidth: "borderWidths";
1142
+ borderBottomWidth: "borderWidths";
1143
+ borderStyle: "borderStyles";
1144
+ borderTopStyle: "borderStyles";
1145
+ borderLeftStyle: "borderStyles";
1146
+ borderRightStyle: "borderStyles";
1147
+ borderBottomStyle: "borderStyles";
1148
+ borderRadius: "radii";
1149
+ borderTopLeftRadius: "radii";
1150
+ borderTopRightRadius: "radii";
1151
+ borderBottomRightRadius: "radii";
1152
+ borderBottomLeftRadius: "radii";
1153
+ boxShadow: "shadows";
1154
+ textShadow: "shadows";
1155
+ transition: "transitions";
1156
+ zIndex: "zIndices";
1157
+ }, {
1158
+ bg: (value: {
1159
+ readonly [$$PropertyValue]: "backgroundColor";
1160
+ }) => {
1161
+ backgroundColor: {
1162
+ readonly [$$PropertyValue]: "backgroundColor";
1163
+ };
1164
+ };
1165
+ c: (value: {
1166
+ readonly [$$PropertyValue]: "color";
1167
+ }) => {
1168
+ color: {
1169
+ readonly [$$PropertyValue]: "color";
1170
+ };
1171
+ };
1172
+ r: (value: {
1173
+ readonly [$$ScaleValue]: "radii";
1174
+ }) => {
1175
+ borderRadius: {
1176
+ readonly [$$ScaleValue]: "radii";
1177
+ };
1178
+ };
1179
+ fs: (value: string | number | {
1180
+ readonly [$$PropertyValue]: "fontSize";
1181
+ }) => {
1182
+ fontSize: string | number | {
1183
+ readonly [$$PropertyValue]: "fontSize";
1184
+ };
1185
+ };
1186
+ size: (value: string | number | {
1187
+ readonly [$$ScaleValue]: "space";
1188
+ }) => {
1189
+ height: string | number | {
1190
+ readonly [$$ScaleValue]: "space";
1191
+ };
1192
+ width: string | number | {
1193
+ readonly [$$ScaleValue]: "space";
1194
+ };
1195
+ };
1196
+ w: (value: string | number | {
1197
+ readonly [$$ScaleValue]: "space";
1198
+ }) => {
1199
+ width: string | number | {
1200
+ readonly [$$ScaleValue]: "space";
1201
+ };
1202
+ };
1203
+ h: (value: string | number | {
1204
+ readonly [$$ScaleValue]: "space";
1205
+ }) => {
1206
+ height: string | number | {
1207
+ readonly [$$ScaleValue]: "space";
1208
+ };
1209
+ };
1210
+ p: (value: string | number | {
1211
+ readonly [$$ScaleValue]: "space";
1212
+ }) => {
1213
+ padding: string | number | {
1214
+ readonly [$$ScaleValue]: "space";
1215
+ };
1216
+ };
1217
+ pt: (value: string | number | {
1218
+ readonly [$$ScaleValue]: "space";
1219
+ }) => {
1220
+ paddingTop: string | number | {
1221
+ readonly [$$ScaleValue]: "space";
1222
+ };
1223
+ };
1224
+ pr: (value: string | number | {
1225
+ readonly [$$ScaleValue]: "space";
1226
+ }) => {
1227
+ paddingRight: string | number | {
1228
+ readonly [$$ScaleValue]: "space";
1229
+ };
1230
+ };
1231
+ pb: (value: string | number | {
1232
+ readonly [$$ScaleValue]: "space";
1233
+ }) => {
1234
+ paddingBottom: string | number | {
1235
+ readonly [$$ScaleValue]: "space";
1236
+ };
1237
+ };
1238
+ pl: (value: string | number | {
1239
+ readonly [$$ScaleValue]: "space";
1240
+ }) => {
1241
+ paddingLeft: string | number | {
1242
+ readonly [$$ScaleValue]: "space";
1243
+ };
1244
+ };
1245
+ px: (value: string | number | {
1246
+ readonly [$$ScaleValue]: "space";
1247
+ }) => {
1248
+ paddingLeft: string | number | {
1249
+ readonly [$$ScaleValue]: "space";
1250
+ };
1251
+ paddingRight: string | number | {
1252
+ readonly [$$ScaleValue]: "space";
1253
+ };
1254
+ };
1255
+ py: (value: string | number | {
1256
+ readonly [$$ScaleValue]: "space";
1257
+ }) => {
1258
+ paddingTop: string | number | {
1259
+ readonly [$$ScaleValue]: "space";
1260
+ };
1261
+ paddingBottom: string | number | {
1262
+ readonly [$$ScaleValue]: "space";
1263
+ };
1264
+ };
1265
+ m: (value: string | number | {
1266
+ readonly [$$ScaleValue]: "space";
1267
+ }) => {
1268
+ margin: string | number | {
1269
+ readonly [$$ScaleValue]: "space";
1270
+ };
1271
+ };
1272
+ mt: (value: string | number | {
1273
+ readonly [$$ScaleValue]: "space";
1274
+ }) => {
1275
+ marginTop: string | number | {
1276
+ readonly [$$ScaleValue]: "space";
1277
+ };
1278
+ };
1279
+ mr: (value: string | number | {
1280
+ readonly [$$ScaleValue]: "space";
1281
+ }) => {
1282
+ marginRight: string | number | {
1283
+ readonly [$$ScaleValue]: "space";
1284
+ };
1285
+ };
1286
+ mb: (value: string | number | {
1287
+ readonly [$$ScaleValue]: "space";
1288
+ }) => {
1289
+ marginBottom: string | number | {
1290
+ readonly [$$ScaleValue]: "space";
1291
+ };
1292
+ };
1293
+ ml: (value: string | number | {
1294
+ readonly [$$ScaleValue]: "space";
1295
+ }) => {
1296
+ marginLeft: string | number | {
1297
+ readonly [$$ScaleValue]: "space";
1298
+ };
1299
+ };
1300
+ mx: (value: string | number | {
1301
+ readonly [$$ScaleValue]: "space";
1302
+ }) => {
1303
+ marginLeft: string | number | {
1304
+ readonly [$$ScaleValue]: "space";
1305
+ };
1306
+ marginRight: string | number | {
1307
+ readonly [$$ScaleValue]: "space";
1308
+ };
1309
+ };
1310
+ my: (value: string | number | {
1311
+ readonly [$$ScaleValue]: "space";
1312
+ }) => {
1313
+ marginTop: string | number | {
1314
+ readonly [$$ScaleValue]: "space";
1315
+ };
1316
+ marginBottom: string | number | {
1317
+ readonly [$$ScaleValue]: "space";
1318
+ };
1319
+ };
1320
+ }>>;
452
1321
  Title: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<import("@radix-ui/react-dialog").DialogTitleProps & React.RefAttributes<HTMLHeadingElement>>, {}, {
453
1322
  allowMotion: string;
454
1323
  sm: string;