@rarui/components 1.3.0 → 1.5.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/CHANGELOG.md +15 -1
- package/custom-elements.json +1562 -1201
- package/dist/index.d.ts +4316 -1
- package/dist/index.js +103 -28
- package/package.json +2 -2
package/custom-elements.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
2
|
+
"version": "1.4.0",
|
|
3
3
|
"tags": [
|
|
4
4
|
{
|
|
5
5
|
"name": "rarui-avatar",
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
{
|
|
31
31
|
"name": "rarui-badge",
|
|
32
|
+
"description": "## Rarui Badge\n---\nThe Badge components are only used to transmit dynamic information, such as a connection or status.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/exhibition/badge) for more details.",
|
|
32
33
|
"attributes": [
|
|
33
34
|
{
|
|
34
35
|
"name": "appearance",
|
|
@@ -93,6 +94,102 @@
|
|
|
93
94
|
}
|
|
94
95
|
]
|
|
95
96
|
},
|
|
97
|
+
{
|
|
98
|
+
"name": "rarui-divider",
|
|
99
|
+
"description": "## Rarui Divider\n---\nA Divider is a thin line used to separate or group content in lists and layouts.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/exhibition/divider) for more details.",
|
|
100
|
+
"attributes": [
|
|
101
|
+
{
|
|
102
|
+
"name": "direction",
|
|
103
|
+
"description": "The direction of the Divider.\n\n- horizontal\n- vertical",
|
|
104
|
+
"type": "string",
|
|
105
|
+
"values": [
|
|
106
|
+
{
|
|
107
|
+
"name": "horizontal"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "vertical"
|
|
111
|
+
}
|
|
112
|
+
]
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "size",
|
|
116
|
+
"description": "The **`size`** CSS property sets an element's area.",
|
|
117
|
+
"values": []
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "type",
|
|
121
|
+
"description": "The **`type`** shorthand CSS property sets the line style for all four sides of an element's.\n\nThis property supports responsive values. You can pass a single value like `\"$dashed\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$dashed\",\n\"md\": \"$solid\",\n\"lg\": \"$dashed\",\n\"xl\": \"$solid\"\n}\n```\n\n- $dashed\n- $solid",
|
|
122
|
+
"values": [
|
|
123
|
+
{
|
|
124
|
+
"name": "$dashed"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"name": "$solid"
|
|
128
|
+
}
|
|
129
|
+
]
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"name": "thickness",
|
|
133
|
+
"description": "The **`thickness`** shorthand CSS property sets the width of an element's.\n\nThis property supports responsive values. You can pass a single value like `\"$1\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$1\",\n\"md\": \"$2\",\n\"lg\": \"$1\",\n\"xl\": \"$2\"\n}\n```\n\n- $1\n- $2",
|
|
134
|
+
"values": [
|
|
135
|
+
{
|
|
136
|
+
"name": "$1"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"name": "$2"
|
|
140
|
+
}
|
|
141
|
+
]
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"name": "color",
|
|
145
|
+
"description": "The **`color`** CSS property sets an element's color.\n\nThis property supports responsive values. You can pass a single value like `\"$brand\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$brand\",\n\"md\": \"$brand-alt\",\n\"lg\": \"$disabled\",\n\"xl\": \"$divider\"\n}\n```\n\n- $brand\n- $brand-alt\n- $disabled\n- $divider\n- $error\n- $info\n- $invert\n- $invert-disabled\n- $primary\n- $secondary\n- $subdued\n- $success\n- $transparent\n- $warning",
|
|
146
|
+
"values": [
|
|
147
|
+
{
|
|
148
|
+
"name": "$brand"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"name": "$brand-alt"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"name": "$disabled"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"name": "$divider"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"name": "$error"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"name": "$info"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"name": "$invert"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"name": "$invert-disabled"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"name": "$primary"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"name": "$secondary"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"name": "$subdued"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"name": "$success"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"name": "$transparent"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"name": "$warning"
|
|
188
|
+
}
|
|
189
|
+
]
|
|
190
|
+
}
|
|
191
|
+
]
|
|
192
|
+
},
|
|
96
193
|
{
|
|
97
194
|
"name": "rarui-text",
|
|
98
195
|
"description": "## Rarui Text\n---\nText is a basic component that allows us to write blocks of text and give it formatting to use within other components, sections and pages of our application or website.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/exhibition/typography) for more details.",
|
|
@@ -697,647 +794,396 @@
|
|
|
697
794
|
]
|
|
698
795
|
},
|
|
699
796
|
{
|
|
700
|
-
"name": "rarui-
|
|
797
|
+
"name": "rarui-skeleton",
|
|
798
|
+
"description": "## Rarui Divider\n---\nA Divider is a thin line used to separate or group content in lists and layouts.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/exhibition/divider) for more details.",
|
|
701
799
|
"attributes": [
|
|
702
800
|
{
|
|
703
|
-
"name": "
|
|
704
|
-
"description": "
|
|
705
|
-
"type": "
|
|
801
|
+
"name": "data-testid",
|
|
802
|
+
"description": "This is an attribute used to identify a DOM node for testing purposes.",
|
|
803
|
+
"type": "string"
|
|
706
804
|
},
|
|
707
805
|
{
|
|
708
|
-
"name": "
|
|
709
|
-
"description": "
|
|
710
|
-
"
|
|
806
|
+
"name": "border-radius",
|
|
807
|
+
"description": "The borderRadius property sets the skeleton.",
|
|
808
|
+
"values": []
|
|
711
809
|
},
|
|
712
810
|
{
|
|
713
|
-
"name": "
|
|
714
|
-
"description": "
|
|
715
|
-
"type": "string",
|
|
811
|
+
"name": "width",
|
|
812
|
+
"description": "The **`width`** CSS property sets an element's width. By default, it sets the width of the content area, but if `box-sizing` is set to `border-box`, it sets the width of the border area. It is also possible to pass a specific value.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"fit-content\",\n\"lg\": \"intrinsic\",\n\"xl\": \"max-content\"\n}\n```\n\n- auto\n- fit-content\n- intrinsic\n- max-content\n- min-content\n- min-intrinsic\n- stretch",
|
|
716
813
|
"values": [
|
|
717
814
|
{
|
|
718
|
-
"name": "
|
|
719
|
-
},
|
|
720
|
-
{
|
|
721
|
-
"name": "danger"
|
|
815
|
+
"name": "auto"
|
|
722
816
|
},
|
|
723
817
|
{
|
|
724
|
-
"name": "
|
|
818
|
+
"name": "fit-content"
|
|
725
819
|
},
|
|
726
820
|
{
|
|
727
|
-
"name": "
|
|
821
|
+
"name": "intrinsic"
|
|
728
822
|
},
|
|
729
823
|
{
|
|
730
|
-
"name": "
|
|
824
|
+
"name": "max-content"
|
|
731
825
|
},
|
|
732
826
|
{
|
|
733
|
-
"name": "
|
|
734
|
-
}
|
|
735
|
-
]
|
|
736
|
-
},
|
|
737
|
-
{
|
|
738
|
-
"name": "size",
|
|
739
|
-
"description": "Defines the size of the button component.\n\n- large\n- medium\n- small",
|
|
740
|
-
"type": "string",
|
|
741
|
-
"values": [
|
|
742
|
-
{
|
|
743
|
-
"name": "large",
|
|
744
|
-
"description": "(default)"
|
|
827
|
+
"name": "min-content"
|
|
745
828
|
},
|
|
746
829
|
{
|
|
747
|
-
"name": "
|
|
830
|
+
"name": "min-intrinsic"
|
|
748
831
|
},
|
|
749
832
|
{
|
|
750
|
-
"name": "
|
|
833
|
+
"name": "stretch"
|
|
751
834
|
}
|
|
752
835
|
]
|
|
753
836
|
},
|
|
754
837
|
{
|
|
755
|
-
"name": "
|
|
756
|
-
"description": "
|
|
757
|
-
"type": "string",
|
|
838
|
+
"name": "height",
|
|
839
|
+
"description": "The **`height`** CSS property specifies the height of an element. By default, the property defines the height of the content area. If `box-sizing` is set to `border-box`, however, it instead determines the height of the border area. It is also possible to pass a specific value.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"fit-content\",\n\"lg\": \"max-content\",\n\"xl\": \"min-content\"\n}\n```\n\n- auto\n- fit-content\n- max-content\n- min-content\n- stretch",
|
|
758
840
|
"values": [
|
|
759
841
|
{
|
|
760
|
-
"name": "
|
|
842
|
+
"name": "auto"
|
|
761
843
|
},
|
|
762
844
|
{
|
|
763
|
-
"name": "
|
|
845
|
+
"name": "fit-content"
|
|
764
846
|
},
|
|
765
847
|
{
|
|
766
|
-
"name": "
|
|
848
|
+
"name": "max-content"
|
|
767
849
|
},
|
|
768
850
|
{
|
|
769
|
-
"name": "
|
|
851
|
+
"name": "min-content"
|
|
852
|
+
},
|
|
853
|
+
{
|
|
854
|
+
"name": "stretch"
|
|
770
855
|
}
|
|
771
856
|
]
|
|
772
|
-
}
|
|
773
|
-
]
|
|
774
|
-
},
|
|
775
|
-
{
|
|
776
|
-
"name": "rarui-box",
|
|
777
|
-
"description": "## Rarui Box\n---\nA low-level `utility` component that provides stylized system accessories to allow for custom styling with theme reconfection.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/layout/box) for more details.",
|
|
778
|
-
"attributes": [
|
|
857
|
+
},
|
|
779
858
|
{
|
|
780
|
-
"name": "
|
|
781
|
-
"description": "The
|
|
859
|
+
"name": "max-width",
|
|
860
|
+
"description": "The **`max-width`** CSS property sets the maximum width of an element. It prevents the used value of the `width` property from becoming larger than the value specified by `max-width`. It is also possible to pass a specific value.\n\n\n**Initial value**: `none`\n\nThis property supports responsive values. You can pass a single value like `\"fit-content\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"fit-content\",\n\"md\": \"intrinsic\",\n\"lg\": \"max-content\",\n\"xl\": \"min-content\"\n}\n```\n\n- fit-content\n- intrinsic\n- max-content\n- min-content\n- none\n- stretch",
|
|
782
861
|
"values": [
|
|
783
862
|
{
|
|
784
|
-
"name": "
|
|
863
|
+
"name": "fit-content"
|
|
785
864
|
},
|
|
786
865
|
{
|
|
787
|
-
"name": "
|
|
866
|
+
"name": "intrinsic"
|
|
788
867
|
},
|
|
789
868
|
{
|
|
790
|
-
"name": "
|
|
869
|
+
"name": "max-content"
|
|
791
870
|
},
|
|
792
871
|
{
|
|
793
|
-
"name": "
|
|
872
|
+
"name": "min-content"
|
|
794
873
|
},
|
|
795
874
|
{
|
|
796
|
-
"name": "
|
|
875
|
+
"name": "none"
|
|
797
876
|
},
|
|
798
877
|
{
|
|
799
|
-
"name": "
|
|
800
|
-
}
|
|
878
|
+
"name": "stretch"
|
|
879
|
+
}
|
|
880
|
+
]
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"name": "max-height",
|
|
884
|
+
"description": "The **`max-height`** CSS property sets the maximum height of an element. It prevents the used value of the `height` property from becoming larger than the value specified for `max-height`. It is also possible to pass a specific value.\n\n\n**Initial value**: `none`\n\nThis property supports responsive values. You can pass a single value like `\"fit-content\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"fit-content\",\n\"md\": \"intrinsic\",\n\"lg\": \"max-content\",\n\"xl\": \"min-content\"\n}\n```\n\n- fit-content\n- intrinsic\n- max-content\n- min-content\n- none\n- stretch",
|
|
885
|
+
"values": [
|
|
801
886
|
{
|
|
802
|
-
"name": "
|
|
887
|
+
"name": "fit-content"
|
|
803
888
|
},
|
|
804
889
|
{
|
|
805
|
-
"name": "
|
|
890
|
+
"name": "intrinsic"
|
|
806
891
|
},
|
|
807
892
|
{
|
|
808
|
-
"name": "
|
|
893
|
+
"name": "max-content"
|
|
809
894
|
},
|
|
810
895
|
{
|
|
811
|
-
"name": "
|
|
896
|
+
"name": "min-content"
|
|
812
897
|
},
|
|
813
898
|
{
|
|
814
|
-
"name": "
|
|
899
|
+
"name": "none"
|
|
815
900
|
},
|
|
816
901
|
{
|
|
817
|
-
"name": "
|
|
818
|
-
}
|
|
902
|
+
"name": "stretch"
|
|
903
|
+
}
|
|
904
|
+
]
|
|
905
|
+
},
|
|
906
|
+
{
|
|
907
|
+
"name": "min-width",
|
|
908
|
+
"description": "The **`min-width`** CSS property sets the minimum width of an element. It prevents the used value of the `width` property from becoming smaller than the value specified for `min-width`. It is also possible to pass a specific value.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"fit-content\",\n\"lg\": \"intrinsic\",\n\"xl\": \"max-content\"\n}\n```\n\n- auto\n- fit-content\n- intrinsic\n- max-content\n- min-content\n- min-intrinsic\n- stretch",
|
|
909
|
+
"values": [
|
|
819
910
|
{
|
|
820
|
-
"name": "
|
|
911
|
+
"name": "auto"
|
|
821
912
|
},
|
|
822
913
|
{
|
|
823
|
-
"name": "
|
|
914
|
+
"name": "fit-content"
|
|
824
915
|
},
|
|
825
916
|
{
|
|
826
|
-
"name": "
|
|
917
|
+
"name": "intrinsic"
|
|
827
918
|
},
|
|
828
919
|
{
|
|
829
|
-
"name": "
|
|
920
|
+
"name": "max-content"
|
|
830
921
|
},
|
|
831
922
|
{
|
|
832
|
-
"name": "
|
|
923
|
+
"name": "min-content"
|
|
833
924
|
},
|
|
834
925
|
{
|
|
835
|
-
"name": "
|
|
926
|
+
"name": "min-intrinsic"
|
|
836
927
|
},
|
|
837
928
|
{
|
|
838
|
-
"name": "
|
|
929
|
+
"name": "stretch"
|
|
839
930
|
}
|
|
840
931
|
]
|
|
841
932
|
},
|
|
842
933
|
{
|
|
843
|
-
"name": "
|
|
844
|
-
"description": "The
|
|
934
|
+
"name": "min-height",
|
|
935
|
+
"description": "The **`min-height`** CSS property sets the minimum height of an element. It prevents the used value of the `height` property from becoming smaller than the value specified for `min-height`. It is also possible to pass a specific value.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"fit-content\",\n\"lg\": \"intrinsic\",\n\"xl\": \"max-content\"\n}\n```\n\n- auto\n- fit-content\n- intrinsic\n- max-content\n- min-content\n- stretch",
|
|
845
936
|
"values": [
|
|
846
937
|
{
|
|
847
|
-
"name": "
|
|
938
|
+
"name": "auto"
|
|
848
939
|
},
|
|
849
940
|
{
|
|
850
|
-
"name": "
|
|
941
|
+
"name": "fit-content"
|
|
851
942
|
},
|
|
852
943
|
{
|
|
853
|
-
"name": "
|
|
944
|
+
"name": "intrinsic"
|
|
854
945
|
},
|
|
855
946
|
{
|
|
856
|
-
"name": "
|
|
947
|
+
"name": "max-content"
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
"name": "min-content"
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"name": "stretch"
|
|
857
954
|
}
|
|
858
955
|
]
|
|
956
|
+
}
|
|
957
|
+
]
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
"name": "rarui-button",
|
|
961
|
+
"description": "## Rarui Button\n---\nButton allows the user to perform actions, such as sending a file, advancing a form, sharing a document, or making a comment.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/input/button) for more details.",
|
|
962
|
+
"attributes": [
|
|
963
|
+
{
|
|
964
|
+
"name": "disabled",
|
|
965
|
+
"description": "Disables the button, disallowing user interaction.",
|
|
966
|
+
"type": "boolean"
|
|
859
967
|
},
|
|
860
968
|
{
|
|
861
|
-
"name": "
|
|
862
|
-
"description": "
|
|
969
|
+
"name": "full",
|
|
970
|
+
"description": "Specifies whether the button should take up the full width of its container.\nThis variant is useful when you want to make a button span the entire width of its parent container.",
|
|
971
|
+
"type": "boolean"
|
|
972
|
+
},
|
|
973
|
+
{
|
|
974
|
+
"name": "appearance",
|
|
975
|
+
"description": "Defines the appearance variants for the button component.\nEach appearance variant corresponds to a specific background color, border color, and text color.\n\n- brand\n- danger\n- inverted\n- neutral\n- success\n- warning",
|
|
976
|
+
"type": "string",
|
|
863
977
|
"values": [
|
|
864
978
|
{
|
|
865
|
-
"name": "
|
|
979
|
+
"name": "brand"
|
|
866
980
|
},
|
|
867
981
|
{
|
|
868
|
-
"name": "
|
|
982
|
+
"name": "danger"
|
|
869
983
|
},
|
|
870
984
|
{
|
|
871
|
-
"name": "
|
|
985
|
+
"name": "inverted"
|
|
872
986
|
},
|
|
873
987
|
{
|
|
874
|
-
"name": "
|
|
988
|
+
"name": "neutral"
|
|
875
989
|
},
|
|
876
990
|
{
|
|
877
|
-
"name": "
|
|
991
|
+
"name": "success"
|
|
878
992
|
},
|
|
879
993
|
{
|
|
880
|
-
"name": "
|
|
881
|
-
},
|
|
882
|
-
{
|
|
883
|
-
"name": "$button-l"
|
|
884
|
-
},
|
|
885
|
-
{
|
|
886
|
-
"name": "$button-m"
|
|
887
|
-
},
|
|
888
|
-
{
|
|
889
|
-
"name": "$button-s"
|
|
890
|
-
},
|
|
891
|
-
{
|
|
892
|
-
"name": "$heading-hero"
|
|
893
|
-
},
|
|
894
|
-
{
|
|
895
|
-
"name": "$heading-l"
|
|
896
|
-
},
|
|
897
|
-
{
|
|
898
|
-
"name": "$heading-m"
|
|
899
|
-
},
|
|
900
|
-
{
|
|
901
|
-
"name": "$heading-s"
|
|
902
|
-
},
|
|
903
|
-
{
|
|
904
|
-
"name": "$heading-xl"
|
|
905
|
-
},
|
|
906
|
-
{
|
|
907
|
-
"name": "$heading-xs"
|
|
908
|
-
},
|
|
909
|
-
{
|
|
910
|
-
"name": "$label-l"
|
|
911
|
-
},
|
|
912
|
-
{
|
|
913
|
-
"name": "$label-m"
|
|
914
|
-
},
|
|
915
|
-
{
|
|
916
|
-
"name": "$label-s"
|
|
917
|
-
}
|
|
918
|
-
]
|
|
919
|
-
},
|
|
920
|
-
{
|
|
921
|
-
"name": "m",
|
|
922
|
-
"description": "The m shorthand property sets the margin area on all four sides of an box.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$3xl\",\n\"xl\": \"$3xs\"\n}\n```\n\n- $2xl\n- $2xs\n- $3xl\n- $3xs\n- $4xl\n- $4xs\n- $5xl\n- $6xl\n- $7xl\n- $8xl\n- $auto\n- $lg\n- $md\n- $none\n- $s\n- $xl\n- $xs",
|
|
923
|
-
"values": [
|
|
924
|
-
{
|
|
925
|
-
"name": "$2xl"
|
|
926
|
-
},
|
|
927
|
-
{
|
|
928
|
-
"name": "$2xs"
|
|
929
|
-
},
|
|
930
|
-
{
|
|
931
|
-
"name": "$3xl"
|
|
932
|
-
},
|
|
933
|
-
{
|
|
934
|
-
"name": "$3xs"
|
|
935
|
-
},
|
|
936
|
-
{
|
|
937
|
-
"name": "$4xl"
|
|
938
|
-
},
|
|
939
|
-
{
|
|
940
|
-
"name": "$4xs"
|
|
941
|
-
},
|
|
942
|
-
{
|
|
943
|
-
"name": "$5xl"
|
|
944
|
-
},
|
|
945
|
-
{
|
|
946
|
-
"name": "$6xl"
|
|
947
|
-
},
|
|
948
|
-
{
|
|
949
|
-
"name": "$7xl"
|
|
950
|
-
},
|
|
951
|
-
{
|
|
952
|
-
"name": "$8xl"
|
|
953
|
-
},
|
|
954
|
-
{
|
|
955
|
-
"name": "$auto"
|
|
956
|
-
},
|
|
957
|
-
{
|
|
958
|
-
"name": "$lg"
|
|
959
|
-
},
|
|
960
|
-
{
|
|
961
|
-
"name": "$md"
|
|
962
|
-
},
|
|
963
|
-
{
|
|
964
|
-
"name": "$none"
|
|
965
|
-
},
|
|
966
|
-
{
|
|
967
|
-
"name": "$s"
|
|
968
|
-
},
|
|
969
|
-
{
|
|
970
|
-
"name": "$xl"
|
|
971
|
-
},
|
|
972
|
-
{
|
|
973
|
-
"name": "$xs"
|
|
974
|
-
}
|
|
975
|
-
]
|
|
976
|
-
},
|
|
977
|
-
{
|
|
978
|
-
"name": "font-size",
|
|
979
|
-
"description": "The fontSize property sets the size of the box.\n\nThis property supports responsive values. You can pass a single value like `\"$body-l\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$body-l\",\n\"md\": \"$body-m\",\n\"lg\": \"$body-s\",\n\"xl\": \"$body-xl\"\n}\n```\n\n- $body-l\n- $body-m\n- $body-s\n- $body-xl\n- $body-xs\n- $body-xxs\n- $button-l\n- $button-m\n- $button-s\n- $heading-hero\n- $heading-l\n- $heading-m\n- $heading-s\n- $heading-xl\n- $heading-xs\n- $label-l\n- $label-m\n- $label-s",
|
|
980
|
-
"values": [
|
|
981
|
-
{
|
|
982
|
-
"name": "$body-l"
|
|
983
|
-
},
|
|
984
|
-
{
|
|
985
|
-
"name": "$body-m"
|
|
986
|
-
},
|
|
987
|
-
{
|
|
988
|
-
"name": "$body-s"
|
|
989
|
-
},
|
|
990
|
-
{
|
|
991
|
-
"name": "$body-xl"
|
|
992
|
-
},
|
|
993
|
-
{
|
|
994
|
-
"name": "$body-xs"
|
|
995
|
-
},
|
|
996
|
-
{
|
|
997
|
-
"name": "$body-xxs"
|
|
998
|
-
},
|
|
999
|
-
{
|
|
1000
|
-
"name": "$button-l"
|
|
1001
|
-
},
|
|
1002
|
-
{
|
|
1003
|
-
"name": "$button-m"
|
|
1004
|
-
},
|
|
1005
|
-
{
|
|
1006
|
-
"name": "$button-s"
|
|
1007
|
-
},
|
|
1008
|
-
{
|
|
1009
|
-
"name": "$heading-hero"
|
|
1010
|
-
},
|
|
1011
|
-
{
|
|
1012
|
-
"name": "$heading-l"
|
|
1013
|
-
},
|
|
1014
|
-
{
|
|
1015
|
-
"name": "$heading-m"
|
|
1016
|
-
},
|
|
1017
|
-
{
|
|
1018
|
-
"name": "$heading-s"
|
|
1019
|
-
},
|
|
1020
|
-
{
|
|
1021
|
-
"name": "$heading-xl"
|
|
1022
|
-
},
|
|
1023
|
-
{
|
|
1024
|
-
"name": "$heading-xs"
|
|
1025
|
-
},
|
|
1026
|
-
{
|
|
1027
|
-
"name": "$label-l"
|
|
1028
|
-
},
|
|
1029
|
-
{
|
|
1030
|
-
"name": "$label-m"
|
|
1031
|
-
},
|
|
1032
|
-
{
|
|
1033
|
-
"name": "$label-s"
|
|
994
|
+
"name": "warning"
|
|
1034
995
|
}
|
|
1035
996
|
]
|
|
1036
997
|
},
|
|
1037
998
|
{
|
|
1038
|
-
"name": "
|
|
1039
|
-
"description": "
|
|
999
|
+
"name": "size",
|
|
1000
|
+
"description": "Defines the size of the button component.\n\n- large\n- medium\n- small",
|
|
1001
|
+
"type": "string",
|
|
1040
1002
|
"values": [
|
|
1041
1003
|
{
|
|
1042
|
-
"name": "
|
|
1043
|
-
|
|
1044
|
-
{
|
|
1045
|
-
"name": "end"
|
|
1046
|
-
},
|
|
1047
|
-
{
|
|
1048
|
-
"name": "justify"
|
|
1049
|
-
},
|
|
1050
|
-
{
|
|
1051
|
-
"name": "left"
|
|
1052
|
-
},
|
|
1053
|
-
{
|
|
1054
|
-
"name": "match-parent"
|
|
1004
|
+
"name": "large",
|
|
1005
|
+
"description": "(default)"
|
|
1055
1006
|
},
|
|
1056
1007
|
{
|
|
1057
|
-
"name": "
|
|
1008
|
+
"name": "medium"
|
|
1058
1009
|
},
|
|
1059
1010
|
{
|
|
1060
|
-
"name": "
|
|
1011
|
+
"name": "small"
|
|
1061
1012
|
}
|
|
1062
1013
|
]
|
|
1063
1014
|
},
|
|
1064
1015
|
{
|
|
1065
|
-
"name": "
|
|
1066
|
-
"description": "
|
|
1016
|
+
"name": "variant",
|
|
1017
|
+
"description": "Defines the visual variant of the badge, affecting its background style, border and text.\n\n- outlined\n- solid\n- text\n- tonal",
|
|
1018
|
+
"type": "string",
|
|
1067
1019
|
"values": [
|
|
1068
1020
|
{
|
|
1069
|
-
"name": "
|
|
1070
|
-
},
|
|
1071
|
-
{
|
|
1072
|
-
"name": "blink"
|
|
1073
|
-
},
|
|
1074
|
-
{
|
|
1075
|
-
"name": "dashed"
|
|
1076
|
-
},
|
|
1077
|
-
{
|
|
1078
|
-
"name": "dotted"
|
|
1079
|
-
},
|
|
1080
|
-
{
|
|
1081
|
-
"name": "double"
|
|
1082
|
-
},
|
|
1083
|
-
{
|
|
1084
|
-
"name": "from-font"
|
|
1085
|
-
},
|
|
1086
|
-
{
|
|
1087
|
-
"name": "grammar-error"
|
|
1088
|
-
},
|
|
1089
|
-
{
|
|
1090
|
-
"name": "line-through"
|
|
1091
|
-
},
|
|
1092
|
-
{
|
|
1093
|
-
"name": "none"
|
|
1094
|
-
},
|
|
1095
|
-
{
|
|
1096
|
-
"name": "overline"
|
|
1021
|
+
"name": "outlined"
|
|
1097
1022
|
},
|
|
1098
1023
|
{
|
|
1099
1024
|
"name": "solid"
|
|
1100
1025
|
},
|
|
1101
1026
|
{
|
|
1102
|
-
"name": "
|
|
1103
|
-
},
|
|
1104
|
-
{
|
|
1105
|
-
"name": "underline"
|
|
1106
|
-
},
|
|
1107
|
-
{
|
|
1108
|
-
"name": "wavy"
|
|
1109
|
-
}
|
|
1110
|
-
]
|
|
1111
|
-
},
|
|
1112
|
-
{
|
|
1113
|
-
"name": "width",
|
|
1114
|
-
"description": "The **`width`** CSS property sets an element's width. By default, it sets the width of the content area, but if `box-sizing` is set to `border-box`, it sets the width of the border area. It is also possible to pass a specific value.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"fit-content\",\n\"lg\": \"intrinsic\",\n\"xl\": \"max-content\"\n}\n```\n\n- auto\n- fit-content\n- intrinsic\n- max-content\n- min-content\n- min-intrinsic\n- stretch",
|
|
1115
|
-
"values": [
|
|
1116
|
-
{
|
|
1117
|
-
"name": "auto"
|
|
1118
|
-
},
|
|
1119
|
-
{
|
|
1120
|
-
"name": "fit-content"
|
|
1121
|
-
},
|
|
1122
|
-
{
|
|
1123
|
-
"name": "intrinsic"
|
|
1124
|
-
},
|
|
1125
|
-
{
|
|
1126
|
-
"name": "max-content"
|
|
1127
|
-
},
|
|
1128
|
-
{
|
|
1129
|
-
"name": "min-content"
|
|
1130
|
-
},
|
|
1131
|
-
{
|
|
1132
|
-
"name": "min-intrinsic"
|
|
1027
|
+
"name": "text"
|
|
1133
1028
|
},
|
|
1134
1029
|
{
|
|
1135
|
-
"name": "
|
|
1030
|
+
"name": "tonal"
|
|
1136
1031
|
}
|
|
1137
1032
|
]
|
|
1138
|
-
}
|
|
1033
|
+
}
|
|
1034
|
+
]
|
|
1035
|
+
},
|
|
1036
|
+
{
|
|
1037
|
+
"name": "rarui-checkbox",
|
|
1038
|
+
"description": "## Rarui Checkbox\n---\nThe Checkbox allows users to select one or more items from a set and can be used to enable or disable an option.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/input/checkbox) for more details.",
|
|
1039
|
+
"attributes": [
|
|
1139
1040
|
{
|
|
1140
|
-
"name": "
|
|
1141
|
-
"description": "The
|
|
1142
|
-
"
|
|
1143
|
-
{
|
|
1144
|
-
"name": "auto"
|
|
1145
|
-
},
|
|
1146
|
-
{
|
|
1147
|
-
"name": "clip"
|
|
1148
|
-
},
|
|
1149
|
-
{
|
|
1150
|
-
"name": "hidden"
|
|
1151
|
-
},
|
|
1152
|
-
{
|
|
1153
|
-
"name": "scroll"
|
|
1154
|
-
},
|
|
1155
|
-
{
|
|
1156
|
-
"name": "visible"
|
|
1157
|
-
}
|
|
1158
|
-
]
|
|
1041
|
+
"name": "label",
|
|
1042
|
+
"description": "The label of the checkbox.",
|
|
1043
|
+
"type": "string"
|
|
1159
1044
|
},
|
|
1160
1045
|
{
|
|
1161
|
-
"name": "
|
|
1162
|
-
"description": "The
|
|
1163
|
-
"
|
|
1046
|
+
"name": "id",
|
|
1047
|
+
"description": "The id of the checkbox.",
|
|
1048
|
+
"type": "string"
|
|
1164
1049
|
},
|
|
1165
1050
|
{
|
|
1166
|
-
"name": "
|
|
1167
|
-
"description": "
|
|
1168
|
-
"
|
|
1051
|
+
"name": "error",
|
|
1052
|
+
"description": "Specifies whether the checkbox is in error state",
|
|
1053
|
+
"type": "boolean"
|
|
1169
1054
|
},
|
|
1170
1055
|
{
|
|
1171
|
-
"name": "
|
|
1172
|
-
"description": "
|
|
1056
|
+
"name": "size",
|
|
1057
|
+
"description": "Specifies the size of the checkbox\n\n- large\n- medium",
|
|
1058
|
+
"type": "string",
|
|
1173
1059
|
"values": [
|
|
1174
1060
|
{
|
|
1175
|
-
"name": "
|
|
1176
|
-
},
|
|
1177
|
-
{
|
|
1178
|
-
"name": "center"
|
|
1179
|
-
},
|
|
1180
|
-
{
|
|
1181
|
-
"name": "end"
|
|
1182
|
-
},
|
|
1183
|
-
{
|
|
1184
|
-
"name": "flex-end"
|
|
1185
|
-
},
|
|
1186
|
-
{
|
|
1187
|
-
"name": "flex-start"
|
|
1188
|
-
},
|
|
1189
|
-
{
|
|
1190
|
-
"name": "normal"
|
|
1191
|
-
},
|
|
1192
|
-
{
|
|
1193
|
-
"name": "space-around"
|
|
1194
|
-
},
|
|
1195
|
-
{
|
|
1196
|
-
"name": "space-between"
|
|
1197
|
-
},
|
|
1198
|
-
{
|
|
1199
|
-
"name": "space-evenly"
|
|
1200
|
-
},
|
|
1201
|
-
{
|
|
1202
|
-
"name": "start"
|
|
1061
|
+
"name": "large"
|
|
1203
1062
|
},
|
|
1204
1063
|
{
|
|
1205
|
-
"name": "
|
|
1064
|
+
"name": "medium"
|
|
1206
1065
|
}
|
|
1207
1066
|
]
|
|
1208
1067
|
},
|
|
1209
1068
|
{
|
|
1210
|
-
"name": "
|
|
1211
|
-
"description": "
|
|
1069
|
+
"name": "indeterminate",
|
|
1070
|
+
"description": "Specifies whether the checkbox is indeterminate state",
|
|
1071
|
+
"type": "boolean"
|
|
1072
|
+
}
|
|
1073
|
+
]
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
"name": "rarui-box",
|
|
1077
|
+
"description": "## Rarui Box\n---\nA low-level `utility` component that provides stylized system accessories to allow for custom styling with theme reconfection.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/layout/box) for more details.",
|
|
1078
|
+
"attributes": [
|
|
1079
|
+
{
|
|
1080
|
+
"name": "background-color",
|
|
1081
|
+
"description": "The backgroundColor property sets the background color of the box.\n\nThis property supports responsive values. You can pass a single value like `\"$background\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$background\",\n\"md\": \"$brand\",\n\"lg\": \"$brand-hover\",\n\"xl\": \"$brand-press\"\n}\n```\n\n- $background\n- $brand\n- $brand-hover\n- $brand-press\n- $brand-subdued\n- $disabled\n- $error\n- $error-hover\n- $error-press\n- $error-subdued\n- $hover\n- $info\n- $info-hover\n- $info-press\n- $info-subdued\n- $invert\n- $invert-disabled\n- $invert-hover\n- $invert-press\n- $invert-secondary\n- $overlay\n- $press\n- $primary\n- $secondary\n- $success\n- $success-hover\n- $success-press\n- $success-subdued\n- $transparent\n- $warning\n- $warning-hover\n- $warning-press\n- $warning-subdued",
|
|
1212
1082
|
"values": [
|
|
1213
1083
|
{
|
|
1214
|
-
"name": "
|
|
1215
|
-
},
|
|
1216
|
-
{
|
|
1217
|
-
"name": "center"
|
|
1218
|
-
},
|
|
1219
|
-
{
|
|
1220
|
-
"name": "end"
|
|
1084
|
+
"name": "$background"
|
|
1221
1085
|
},
|
|
1222
1086
|
{
|
|
1223
|
-
"name": "
|
|
1087
|
+
"name": "$brand"
|
|
1224
1088
|
},
|
|
1225
1089
|
{
|
|
1226
|
-
"name": "
|
|
1090
|
+
"name": "$brand-hover"
|
|
1227
1091
|
},
|
|
1228
1092
|
{
|
|
1229
|
-
"name": "
|
|
1093
|
+
"name": "$brand-press"
|
|
1230
1094
|
},
|
|
1231
1095
|
{
|
|
1232
|
-
"name": "
|
|
1096
|
+
"name": "$brand-subdued"
|
|
1233
1097
|
},
|
|
1234
1098
|
{
|
|
1235
|
-
"name": "
|
|
1099
|
+
"name": "$disabled"
|
|
1236
1100
|
},
|
|
1237
1101
|
{
|
|
1238
|
-
"name": "
|
|
1102
|
+
"name": "$error"
|
|
1239
1103
|
},
|
|
1240
1104
|
{
|
|
1241
|
-
"name": "
|
|
1242
|
-
}
|
|
1243
|
-
]
|
|
1244
|
-
},
|
|
1245
|
-
{
|
|
1246
|
-
"name": "align-self",
|
|
1247
|
-
"description": "The **`align-self`** CSS property overrides a grid or flex item's `align-items` value. In Grid, it aligns the item inside the grid area. In Flexbox, it aligns the item on the cross axis.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"baseline\",\n\"lg\": \"center\",\n\"xl\": \"end\"\n}\n```\n\n- auto\n- baseline\n- center\n- end\n- flex-end\n- flex-start\n- normal\n- self-end\n- self-start\n- start\n- stretch",
|
|
1248
|
-
"values": [
|
|
1249
|
-
{
|
|
1250
|
-
"name": "auto"
|
|
1105
|
+
"name": "$error-hover"
|
|
1251
1106
|
},
|
|
1252
1107
|
{
|
|
1253
|
-
"name": "
|
|
1108
|
+
"name": "$error-press"
|
|
1254
1109
|
},
|
|
1255
1110
|
{
|
|
1256
|
-
"name": "
|
|
1111
|
+
"name": "$error-subdued"
|
|
1257
1112
|
},
|
|
1258
1113
|
{
|
|
1259
|
-
"name": "
|
|
1114
|
+
"name": "$hover"
|
|
1260
1115
|
},
|
|
1261
1116
|
{
|
|
1262
|
-
"name": "
|
|
1117
|
+
"name": "$info"
|
|
1263
1118
|
},
|
|
1264
1119
|
{
|
|
1265
|
-
"name": "
|
|
1120
|
+
"name": "$info-hover"
|
|
1266
1121
|
},
|
|
1267
1122
|
{
|
|
1268
|
-
"name": "
|
|
1123
|
+
"name": "$info-press"
|
|
1269
1124
|
},
|
|
1270
1125
|
{
|
|
1271
|
-
"name": "
|
|
1126
|
+
"name": "$info-subdued"
|
|
1272
1127
|
},
|
|
1273
1128
|
{
|
|
1274
|
-
"name": "
|
|
1129
|
+
"name": "$invert"
|
|
1275
1130
|
},
|
|
1276
1131
|
{
|
|
1277
|
-
"name": "
|
|
1132
|
+
"name": "$invert-disabled"
|
|
1278
1133
|
},
|
|
1279
1134
|
{
|
|
1280
|
-
"name": "
|
|
1281
|
-
}
|
|
1282
|
-
]
|
|
1283
|
-
},
|
|
1284
|
-
{
|
|
1285
|
-
"name": "background-blend-mode",
|
|
1286
|
-
"description": "The **`background-blend-mode`** CSS property sets how an element's background images should blend with each other and with the element's background color.\n\n\n**Initial value**: `normal`\n\nThis property supports responsive values. You can pass a single value like `\"color\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"color\",\n\"md\": \"color-burn\",\n\"lg\": \"color-dodge\",\n\"xl\": \"darken\"\n}\n```\n\n- color\n- color-burn\n- color-dodge\n- darken\n- difference\n- exclusion\n- hard-light\n- hue\n- lighten\n- luminosity\n- multiply\n- normal\n- overlay\n- saturation\n- screen\n- soft-light",
|
|
1287
|
-
"values": [
|
|
1288
|
-
{
|
|
1289
|
-
"name": "color"
|
|
1135
|
+
"name": "$invert-hover"
|
|
1290
1136
|
},
|
|
1291
1137
|
{
|
|
1292
|
-
"name": "
|
|
1138
|
+
"name": "$invert-press"
|
|
1293
1139
|
},
|
|
1294
1140
|
{
|
|
1295
|
-
"name": "
|
|
1141
|
+
"name": "$invert-secondary"
|
|
1296
1142
|
},
|
|
1297
1143
|
{
|
|
1298
|
-
"name": "
|
|
1144
|
+
"name": "$overlay"
|
|
1299
1145
|
},
|
|
1300
1146
|
{
|
|
1301
|
-
"name": "
|
|
1147
|
+
"name": "$press"
|
|
1302
1148
|
},
|
|
1303
1149
|
{
|
|
1304
|
-
"name": "
|
|
1150
|
+
"name": "$primary"
|
|
1305
1151
|
},
|
|
1306
1152
|
{
|
|
1307
|
-
"name": "
|
|
1153
|
+
"name": "$secondary"
|
|
1308
1154
|
},
|
|
1309
1155
|
{
|
|
1310
|
-
"name": "
|
|
1156
|
+
"name": "$success"
|
|
1311
1157
|
},
|
|
1312
1158
|
{
|
|
1313
|
-
"name": "
|
|
1159
|
+
"name": "$success-hover"
|
|
1314
1160
|
},
|
|
1315
1161
|
{
|
|
1316
|
-
"name": "
|
|
1162
|
+
"name": "$success-press"
|
|
1317
1163
|
},
|
|
1318
1164
|
{
|
|
1319
|
-
"name": "
|
|
1165
|
+
"name": "$success-subdued"
|
|
1320
1166
|
},
|
|
1321
1167
|
{
|
|
1322
|
-
"name": "
|
|
1168
|
+
"name": "$transparent"
|
|
1323
1169
|
},
|
|
1324
1170
|
{
|
|
1325
|
-
"name": "
|
|
1171
|
+
"name": "$warning"
|
|
1326
1172
|
},
|
|
1327
1173
|
{
|
|
1328
|
-
"name": "
|
|
1174
|
+
"name": "$warning-hover"
|
|
1329
1175
|
},
|
|
1330
1176
|
{
|
|
1331
|
-
"name": "
|
|
1177
|
+
"name": "$warning-press"
|
|
1332
1178
|
},
|
|
1333
1179
|
{
|
|
1334
|
-
"name": "
|
|
1180
|
+
"name": "$warning-subdued"
|
|
1335
1181
|
}
|
|
1336
1182
|
]
|
|
1337
1183
|
},
|
|
1338
1184
|
{
|
|
1339
|
-
"name": "
|
|
1340
|
-
"description": "The
|
|
1185
|
+
"name": "fill",
|
|
1186
|
+
"description": "The fill color property is used to set the color of the box.\n\nThis property supports responsive values. You can pass a single value like `\"$background\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$background\",\n\"md\": \"$brand\",\n\"lg\": \"$brand-hover\",\n\"xl\": \"$brand-press\"\n}\n```\n\n- $background\n- $brand\n- $brand-hover\n- $brand-press\n- $brand-subdued\n- $currentColor\n- $disabled\n- $error\n- $error-hover\n- $error-press\n- $error-subdued\n- $hover\n- $info\n- $info-hover\n- $info-press\n- $info-subdued\n- $invert\n- $invert-disabled\n- $invert-hover\n- $invert-press\n- $invert-secondary\n- $overlay\n- $press\n- $primary\n- $secondary\n- $success\n- $success-hover\n- $success-press\n- $success-subdued\n- $transparent\n- $warning\n- $warning-hover\n- $warning-press\n- $warning-subdued",
|
|
1341
1187
|
"values": [
|
|
1342
1188
|
{
|
|
1343
1189
|
"name": "$background"
|
|
@@ -1354,6 +1200,9 @@
|
|
|
1354
1200
|
{
|
|
1355
1201
|
"name": "$brand-subdued"
|
|
1356
1202
|
},
|
|
1203
|
+
{
|
|
1204
|
+
"name": "$currentColor"
|
|
1205
|
+
},
|
|
1357
1206
|
{
|
|
1358
1207
|
"name": "$disabled"
|
|
1359
1208
|
},
|
|
@@ -1441,88 +1290,230 @@
|
|
|
1441
1290
|
]
|
|
1442
1291
|
},
|
|
1443
1292
|
{
|
|
1444
|
-
"name": "
|
|
1445
|
-
"description": "The
|
|
1446
|
-
"values": [
|
|
1293
|
+
"name": "border-color",
|
|
1294
|
+
"description": "The borderColor property sets the color of the box's four borders.\n\nThis property supports responsive values. You can pass a single value like `\"$brand\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$brand\",\n\"md\": \"$brand-alt\",\n\"lg\": \"$disabled\",\n\"xl\": \"$divider\"\n}\n```\n\n- $brand\n- $brand-alt\n- $disabled\n- $divider\n- $error\n- $info\n- $invert\n- $invert-disabled\n- $primary\n- $secondary\n- $subdued\n- $success\n- $transparent\n- $warning",
|
|
1295
|
+
"values": [
|
|
1296
|
+
{
|
|
1297
|
+
"name": "$brand"
|
|
1298
|
+
},
|
|
1299
|
+
{
|
|
1300
|
+
"name": "$brand-alt"
|
|
1301
|
+
},
|
|
1302
|
+
{
|
|
1303
|
+
"name": "$disabled"
|
|
1304
|
+
},
|
|
1305
|
+
{
|
|
1306
|
+
"name": "$divider"
|
|
1307
|
+
},
|
|
1308
|
+
{
|
|
1309
|
+
"name": "$error"
|
|
1310
|
+
},
|
|
1311
|
+
{
|
|
1312
|
+
"name": "$info"
|
|
1313
|
+
},
|
|
1314
|
+
{
|
|
1315
|
+
"name": "$invert"
|
|
1316
|
+
},
|
|
1317
|
+
{
|
|
1318
|
+
"name": "$invert-disabled"
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
"name": "$primary"
|
|
1322
|
+
},
|
|
1323
|
+
{
|
|
1324
|
+
"name": "$secondary"
|
|
1325
|
+
},
|
|
1326
|
+
{
|
|
1327
|
+
"name": "$subdued"
|
|
1328
|
+
},
|
|
1329
|
+
{
|
|
1330
|
+
"name": "$success"
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
"name": "$transparent"
|
|
1334
|
+
},
|
|
1335
|
+
{
|
|
1336
|
+
"name": "$warning"
|
|
1337
|
+
}
|
|
1338
|
+
]
|
|
1447
1339
|
},
|
|
1448
1340
|
{
|
|
1449
|
-
"name": "
|
|
1450
|
-
"description": "The
|
|
1341
|
+
"name": "color",
|
|
1342
|
+
"description": "The color property is used to set the color of the box.\n\nThis property supports responsive values. You can pass a single value like `\"$brand\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$brand\",\n\"md\": \"$brand-alt\",\n\"lg\": \"$currentColor\",\n\"xl\": \"$disabled\"\n}\n```\n\n- $brand\n- $brand-alt\n- $currentColor\n- $disabled\n- $error\n- $info\n- $invert\n- $invert-disabled\n- $invert-secondary\n- $on-brand\n- $on-error\n- $on-info\n- $on-success\n- $on-warning\n- $primary\n- $secondary\n- $success\n- $warning\n- $warning-alt",
|
|
1451
1343
|
"values": [
|
|
1452
1344
|
{
|
|
1453
|
-
"name": "
|
|
1345
|
+
"name": "$brand"
|
|
1454
1346
|
},
|
|
1455
1347
|
{
|
|
1456
|
-
"name": "
|
|
1348
|
+
"name": "$brand-alt"
|
|
1457
1349
|
},
|
|
1458
1350
|
{
|
|
1459
|
-
"name": "
|
|
1351
|
+
"name": "$currentColor"
|
|
1460
1352
|
},
|
|
1461
1353
|
{
|
|
1462
|
-
"name": "
|
|
1354
|
+
"name": "$disabled"
|
|
1463
1355
|
},
|
|
1464
1356
|
{
|
|
1465
|
-
"name": "
|
|
1357
|
+
"name": "$error"
|
|
1358
|
+
},
|
|
1359
|
+
{
|
|
1360
|
+
"name": "$info"
|
|
1361
|
+
},
|
|
1362
|
+
{
|
|
1363
|
+
"name": "$invert"
|
|
1364
|
+
},
|
|
1365
|
+
{
|
|
1366
|
+
"name": "$invert-disabled"
|
|
1367
|
+
},
|
|
1368
|
+
{
|
|
1369
|
+
"name": "$invert-secondary"
|
|
1370
|
+
},
|
|
1371
|
+
{
|
|
1372
|
+
"name": "$on-brand"
|
|
1373
|
+
},
|
|
1374
|
+
{
|
|
1375
|
+
"name": "$on-error"
|
|
1376
|
+
},
|
|
1377
|
+
{
|
|
1378
|
+
"name": "$on-info"
|
|
1379
|
+
},
|
|
1380
|
+
{
|
|
1381
|
+
"name": "$on-success"
|
|
1382
|
+
},
|
|
1383
|
+
{
|
|
1384
|
+
"name": "$on-warning"
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
"name": "$primary"
|
|
1388
|
+
},
|
|
1389
|
+
{
|
|
1390
|
+
"name": "$secondary"
|
|
1391
|
+
},
|
|
1392
|
+
{
|
|
1393
|
+
"name": "$success"
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
"name": "$warning"
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
"name": "$warning-alt"
|
|
1466
1400
|
}
|
|
1467
1401
|
]
|
|
1468
1402
|
},
|
|
1469
1403
|
{
|
|
1470
|
-
"name": "
|
|
1471
|
-
"description": "The
|
|
1404
|
+
"name": "border-radius",
|
|
1405
|
+
"description": "The borderRadius property rounds the corners of an box's outer border edge.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$button\",\n\"xl\": \"$input\"\n}\n```\n\n- $2xl\n- $2xs\n- $button\n- $input\n- $lg\n- $md\n- $none\n- $pill\n- $sm\n- $xl\n- $xs",
|
|
1472
1406
|
"values": [
|
|
1473
1407
|
{
|
|
1474
|
-
"name": "
|
|
1408
|
+
"name": "$2xl"
|
|
1475
1409
|
},
|
|
1476
1410
|
{
|
|
1477
|
-
"name": "
|
|
1411
|
+
"name": "$2xs"
|
|
1478
1412
|
},
|
|
1479
1413
|
{
|
|
1480
|
-
"name": "
|
|
1414
|
+
"name": "$button"
|
|
1481
1415
|
},
|
|
1482
1416
|
{
|
|
1483
|
-
"name": "
|
|
1417
|
+
"name": "$input"
|
|
1484
1418
|
},
|
|
1485
1419
|
{
|
|
1486
|
-
"name": "
|
|
1420
|
+
"name": "$lg"
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
"name": "$md"
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
"name": "$none"
|
|
1427
|
+
},
|
|
1428
|
+
{
|
|
1429
|
+
"name": "$pill"
|
|
1430
|
+
},
|
|
1431
|
+
{
|
|
1432
|
+
"name": "$sm"
|
|
1433
|
+
},
|
|
1434
|
+
{
|
|
1435
|
+
"name": "$xl"
|
|
1436
|
+
},
|
|
1437
|
+
{
|
|
1438
|
+
"name": "$xs"
|
|
1487
1439
|
}
|
|
1488
1440
|
]
|
|
1489
1441
|
},
|
|
1490
1442
|
{
|
|
1491
|
-
"name": "
|
|
1492
|
-
"description": "The
|
|
1443
|
+
"name": "border-top-left-radius",
|
|
1444
|
+
"description": "The borderTopLeftRadius property rounds the corners of an box's outer border edge.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$button\",\n\"xl\": \"$input\"\n}\n```\n\n- $2xl\n- $2xs\n- $button\n- $input\n- $lg\n- $md\n- $none\n- $pill\n- $sm\n- $xl\n- $xs",
|
|
1493
1445
|
"values": [
|
|
1494
1446
|
{
|
|
1495
|
-
"name": "
|
|
1447
|
+
"name": "$2xl"
|
|
1496
1448
|
},
|
|
1497
1449
|
{
|
|
1498
|
-
"name": "
|
|
1450
|
+
"name": "$2xs"
|
|
1499
1451
|
},
|
|
1500
1452
|
{
|
|
1501
|
-
"name": "
|
|
1453
|
+
"name": "$button"
|
|
1502
1454
|
},
|
|
1503
1455
|
{
|
|
1504
|
-
"name": "
|
|
1456
|
+
"name": "$input"
|
|
1505
1457
|
},
|
|
1506
1458
|
{
|
|
1507
|
-
"name": "
|
|
1459
|
+
"name": "$lg"
|
|
1508
1460
|
},
|
|
1509
1461
|
{
|
|
1510
|
-
"name": "
|
|
1462
|
+
"name": "$md"
|
|
1463
|
+
},
|
|
1464
|
+
{
|
|
1465
|
+
"name": "$none"
|
|
1466
|
+
},
|
|
1467
|
+
{
|
|
1468
|
+
"name": "$pill"
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
"name": "$sm"
|
|
1472
|
+
},
|
|
1473
|
+
{
|
|
1474
|
+
"name": "$xl"
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
"name": "$xs"
|
|
1511
1478
|
}
|
|
1512
1479
|
]
|
|
1513
1480
|
},
|
|
1514
1481
|
{
|
|
1515
|
-
"name": "
|
|
1516
|
-
"description": "The
|
|
1482
|
+
"name": "border-top-right-radius",
|
|
1483
|
+
"description": "The borderTopRightRadius property rounds the corners of an box's outer border edge.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$button\",\n\"xl\": \"$input\"\n}\n```\n\n- $2xl\n- $2xs\n- $button\n- $input\n- $lg\n- $md\n- $none\n- $pill\n- $sm\n- $xl\n- $xs",
|
|
1517
1484
|
"values": [
|
|
1518
1485
|
{
|
|
1519
|
-
"name": "
|
|
1486
|
+
"name": "$2xl"
|
|
1520
1487
|
},
|
|
1521
1488
|
{
|
|
1522
|
-
"name": "
|
|
1489
|
+
"name": "$2xs"
|
|
1523
1490
|
},
|
|
1524
1491
|
{
|
|
1525
|
-
"name": "
|
|
1492
|
+
"name": "$button"
|
|
1493
|
+
},
|
|
1494
|
+
{
|
|
1495
|
+
"name": "$input"
|
|
1496
|
+
},
|
|
1497
|
+
{
|
|
1498
|
+
"name": "$lg"
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
"name": "$md"
|
|
1502
|
+
},
|
|
1503
|
+
{
|
|
1504
|
+
"name": "$none"
|
|
1505
|
+
},
|
|
1506
|
+
{
|
|
1507
|
+
"name": "$pill"
|
|
1508
|
+
},
|
|
1509
|
+
{
|
|
1510
|
+
"name": "$sm"
|
|
1511
|
+
},
|
|
1512
|
+
{
|
|
1513
|
+
"name": "$xl"
|
|
1514
|
+
},
|
|
1515
|
+
{
|
|
1516
|
+
"name": "$xs"
|
|
1526
1517
|
}
|
|
1527
1518
|
]
|
|
1528
1519
|
},
|
|
@@ -1570,37 +1561,85 @@
|
|
|
1570
1561
|
"description": "The borderBottomRightRadius property rounds the corners of an box's outer border edge.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$button\",\n\"xl\": \"$input\"\n}\n```\n\n- $2xl\n- $2xs\n- $button\n- $input\n- $lg\n- $md\n- $none\n- $pill\n- $sm\n- $xl\n- $xs",
|
|
1571
1562
|
"values": [
|
|
1572
1563
|
{
|
|
1573
|
-
"name": "$2xl"
|
|
1564
|
+
"name": "$2xl"
|
|
1565
|
+
},
|
|
1566
|
+
{
|
|
1567
|
+
"name": "$2xs"
|
|
1568
|
+
},
|
|
1569
|
+
{
|
|
1570
|
+
"name": "$button"
|
|
1571
|
+
},
|
|
1572
|
+
{
|
|
1573
|
+
"name": "$input"
|
|
1574
|
+
},
|
|
1575
|
+
{
|
|
1576
|
+
"name": "$lg"
|
|
1577
|
+
},
|
|
1578
|
+
{
|
|
1579
|
+
"name": "$md"
|
|
1580
|
+
},
|
|
1581
|
+
{
|
|
1582
|
+
"name": "$none"
|
|
1583
|
+
},
|
|
1584
|
+
{
|
|
1585
|
+
"name": "$pill"
|
|
1586
|
+
},
|
|
1587
|
+
{
|
|
1588
|
+
"name": "$sm"
|
|
1589
|
+
},
|
|
1590
|
+
{
|
|
1591
|
+
"name": "$xl"
|
|
1592
|
+
},
|
|
1593
|
+
{
|
|
1594
|
+
"name": "$xs"
|
|
1595
|
+
}
|
|
1596
|
+
]
|
|
1597
|
+
},
|
|
1598
|
+
{
|
|
1599
|
+
"name": "border-width",
|
|
1600
|
+
"description": "The borderWidth property sets the width of an box's border.\n\nThis property supports responsive values. You can pass a single value like `\"$1\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$1\",\n\"md\": \"$2\",\n\"lg\": \"$3\",\n\"xl\": \"$4\"\n}\n```\n\n- $1\n- $2\n- $3\n- $4\n- $5\n- $none",
|
|
1601
|
+
"values": [
|
|
1602
|
+
{
|
|
1603
|
+
"name": "$1"
|
|
1574
1604
|
},
|
|
1575
1605
|
{
|
|
1576
|
-
"name": "$
|
|
1606
|
+
"name": "$2"
|
|
1577
1607
|
},
|
|
1578
1608
|
{
|
|
1579
|
-
"name": "$
|
|
1609
|
+
"name": "$3"
|
|
1580
1610
|
},
|
|
1581
1611
|
{
|
|
1582
|
-
"name": "$
|
|
1612
|
+
"name": "$4"
|
|
1583
1613
|
},
|
|
1584
1614
|
{
|
|
1585
|
-
"name": "$
|
|
1615
|
+
"name": "$5"
|
|
1586
1616
|
},
|
|
1587
1617
|
{
|
|
1588
|
-
"name": "$
|
|
1618
|
+
"name": "$none"
|
|
1619
|
+
}
|
|
1620
|
+
]
|
|
1621
|
+
},
|
|
1622
|
+
{
|
|
1623
|
+
"name": "border-top-width",
|
|
1624
|
+
"description": "The borderTopWidth property defines the width of the border at the top of a box.\n\nThis property supports responsive values. You can pass a single value like `\"$1\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$1\",\n\"md\": \"$2\",\n\"lg\": \"$3\",\n\"xl\": \"$4\"\n}\n```\n\n- $1\n- $2\n- $3\n- $4\n- $5\n- $none",
|
|
1625
|
+
"values": [
|
|
1626
|
+
{
|
|
1627
|
+
"name": "$1"
|
|
1589
1628
|
},
|
|
1590
1629
|
{
|
|
1591
|
-
"name": "$
|
|
1630
|
+
"name": "$2"
|
|
1592
1631
|
},
|
|
1593
1632
|
{
|
|
1594
|
-
"name": "$
|
|
1633
|
+
"name": "$3"
|
|
1595
1634
|
},
|
|
1596
1635
|
{
|
|
1597
|
-
"name": "$
|
|
1636
|
+
"name": "$4"
|
|
1598
1637
|
},
|
|
1599
1638
|
{
|
|
1600
|
-
"name": "$
|
|
1639
|
+
"name": "$5"
|
|
1601
1640
|
},
|
|
1602
1641
|
{
|
|
1603
|
-
"name": "$
|
|
1642
|
+
"name": "$none"
|
|
1604
1643
|
}
|
|
1605
1644
|
]
|
|
1606
1645
|
},
|
|
@@ -1677,47 +1716,47 @@
|
|
|
1677
1716
|
]
|
|
1678
1717
|
},
|
|
1679
1718
|
{
|
|
1680
|
-
"name": "
|
|
1681
|
-
"description": "The
|
|
1719
|
+
"name": "box-shadow",
|
|
1720
|
+
"description": "The boxShadow property adds shadow effects around an box's frame.\n\nThis property supports responsive values. You can pass a single value like `\"$bottom-1\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$bottom-1\",\n\"md\": \"$bottom-2\",\n\"lg\": \"$bottom-3\",\n\"xl\": \"$bottom-4\"\n}\n```\n\n- $bottom-1\n- $bottom-2\n- $bottom-3\n- $bottom-4\n- $bottom-5\n- $none\n- $top-1\n- $top-2\n- $top-3\n- $top-4\n- $top-5",
|
|
1682
1721
|
"values": [
|
|
1683
1722
|
{
|
|
1684
|
-
"name": "$
|
|
1723
|
+
"name": "$bottom-1"
|
|
1685
1724
|
},
|
|
1686
1725
|
{
|
|
1687
|
-
"name": "$
|
|
1726
|
+
"name": "$bottom-2"
|
|
1688
1727
|
},
|
|
1689
1728
|
{
|
|
1690
|
-
"name": "$
|
|
1729
|
+
"name": "$bottom-3"
|
|
1691
1730
|
},
|
|
1692
1731
|
{
|
|
1693
|
-
"name": "$
|
|
1732
|
+
"name": "$bottom-4"
|
|
1694
1733
|
},
|
|
1695
1734
|
{
|
|
1696
|
-
"name": "$
|
|
1735
|
+
"name": "$bottom-5"
|
|
1697
1736
|
},
|
|
1698
1737
|
{
|
|
1699
|
-
"name": "$
|
|
1738
|
+
"name": "$none"
|
|
1700
1739
|
},
|
|
1701
1740
|
{
|
|
1702
|
-
"name": "$
|
|
1741
|
+
"name": "$top-1"
|
|
1703
1742
|
},
|
|
1704
1743
|
{
|
|
1705
|
-
"name": "$
|
|
1744
|
+
"name": "$top-2"
|
|
1706
1745
|
},
|
|
1707
1746
|
{
|
|
1708
|
-
"name": "$
|
|
1747
|
+
"name": "$top-3"
|
|
1709
1748
|
},
|
|
1710
1749
|
{
|
|
1711
|
-
"name": "$
|
|
1750
|
+
"name": "$top-4"
|
|
1712
1751
|
},
|
|
1713
1752
|
{
|
|
1714
|
-
"name": "$
|
|
1753
|
+
"name": "$top-5"
|
|
1715
1754
|
}
|
|
1716
1755
|
]
|
|
1717
1756
|
},
|
|
1718
1757
|
{
|
|
1719
|
-
"name": "
|
|
1720
|
-
"description": "The
|
|
1758
|
+
"name": "padding",
|
|
1759
|
+
"description": "The padding properties are used to generate space around an box's content area.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$3xl\",\n\"xl\": \"$3xs\"\n}\n```\n\n- $2xl\n- $2xs\n- $3xl\n- $3xs\n- $4xl\n- $4xs\n- $5xl\n- $6xl\n- $7xl\n- $8xl\n- $lg\n- $md\n- $none\n- $s\n- $xl\n- $xs",
|
|
1721
1760
|
"values": [
|
|
1722
1761
|
{
|
|
1723
1762
|
"name": "$2xl"
|
|
@@ -1726,10 +1765,28 @@
|
|
|
1726
1765
|
"name": "$2xs"
|
|
1727
1766
|
},
|
|
1728
1767
|
{
|
|
1729
|
-
"name": "$
|
|
1768
|
+
"name": "$3xl"
|
|
1730
1769
|
},
|
|
1731
1770
|
{
|
|
1732
|
-
"name": "$
|
|
1771
|
+
"name": "$3xs"
|
|
1772
|
+
},
|
|
1773
|
+
{
|
|
1774
|
+
"name": "$4xl"
|
|
1775
|
+
},
|
|
1776
|
+
{
|
|
1777
|
+
"name": "$4xs"
|
|
1778
|
+
},
|
|
1779
|
+
{
|
|
1780
|
+
"name": "$5xl"
|
|
1781
|
+
},
|
|
1782
|
+
{
|
|
1783
|
+
"name": "$6xl"
|
|
1784
|
+
},
|
|
1785
|
+
{
|
|
1786
|
+
"name": "$7xl"
|
|
1787
|
+
},
|
|
1788
|
+
{
|
|
1789
|
+
"name": "$8xl"
|
|
1733
1790
|
},
|
|
1734
1791
|
{
|
|
1735
1792
|
"name": "$lg"
|
|
@@ -1741,10 +1798,7 @@
|
|
|
1741
1798
|
"name": "$none"
|
|
1742
1799
|
},
|
|
1743
1800
|
{
|
|
1744
|
-
"name": "$
|
|
1745
|
-
},
|
|
1746
|
-
{
|
|
1747
|
-
"name": "$sm"
|
|
1801
|
+
"name": "$s"
|
|
1748
1802
|
},
|
|
1749
1803
|
{
|
|
1750
1804
|
"name": "$xl"
|
|
@@ -1755,532 +1809,563 @@
|
|
|
1755
1809
|
]
|
|
1756
1810
|
},
|
|
1757
1811
|
{
|
|
1758
|
-
"name": "
|
|
1759
|
-
"description": "The
|
|
1812
|
+
"name": "padding-top",
|
|
1813
|
+
"description": "The paddingTop property sets the height of the padding area on the top of an box.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$3xl\",\n\"xl\": \"$3xs\"\n}\n```\n\n- $2xl\n- $2xs\n- $3xl\n- $3xs\n- $4xl\n- $4xs\n- $5xl\n- $6xl\n- $7xl\n- $8xl\n- $lg\n- $md\n- $none\n- $s\n- $xl\n- $xs",
|
|
1760
1814
|
"values": [
|
|
1761
1815
|
{
|
|
1762
|
-
"name": "$
|
|
1816
|
+
"name": "$2xl"
|
|
1763
1817
|
},
|
|
1764
1818
|
{
|
|
1765
|
-
"name": "$
|
|
1819
|
+
"name": "$2xs"
|
|
1766
1820
|
},
|
|
1767
1821
|
{
|
|
1768
|
-
"name": "$
|
|
1822
|
+
"name": "$3xl"
|
|
1769
1823
|
},
|
|
1770
1824
|
{
|
|
1771
|
-
"name": "$
|
|
1825
|
+
"name": "$3xs"
|
|
1772
1826
|
},
|
|
1773
1827
|
{
|
|
1774
|
-
"name": "$
|
|
1828
|
+
"name": "$4xl"
|
|
1829
|
+
},
|
|
1830
|
+
{
|
|
1831
|
+
"name": "$4xs"
|
|
1832
|
+
},
|
|
1833
|
+
{
|
|
1834
|
+
"name": "$5xl"
|
|
1835
|
+
},
|
|
1836
|
+
{
|
|
1837
|
+
"name": "$6xl"
|
|
1838
|
+
},
|
|
1839
|
+
{
|
|
1840
|
+
"name": "$7xl"
|
|
1841
|
+
},
|
|
1842
|
+
{
|
|
1843
|
+
"name": "$8xl"
|
|
1844
|
+
},
|
|
1845
|
+
{
|
|
1846
|
+
"name": "$lg"
|
|
1847
|
+
},
|
|
1848
|
+
{
|
|
1849
|
+
"name": "$md"
|
|
1775
1850
|
},
|
|
1776
1851
|
{
|
|
1777
1852
|
"name": "$none"
|
|
1853
|
+
},
|
|
1854
|
+
{
|
|
1855
|
+
"name": "$s"
|
|
1856
|
+
},
|
|
1857
|
+
{
|
|
1858
|
+
"name": "$xl"
|
|
1859
|
+
},
|
|
1860
|
+
{
|
|
1861
|
+
"name": "$xs"
|
|
1778
1862
|
}
|
|
1779
1863
|
]
|
|
1780
1864
|
},
|
|
1781
1865
|
{
|
|
1782
|
-
"name": "bottom",
|
|
1783
|
-
"description": "The
|
|
1784
|
-
"values": []
|
|
1785
|
-
},
|
|
1786
|
-
{
|
|
1787
|
-
"name": "box-shadow",
|
|
1788
|
-
"description": "The boxShadow property adds shadow effects around an box's frame.\n\nThis property supports responsive values. You can pass a single value like `\"$bottom-1\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$bottom-1\",\n\"md\": \"$bottom-2\",\n\"lg\": \"$bottom-3\",\n\"xl\": \"$bottom-4\"\n}\n```\n\n- $bottom-1\n- $bottom-2\n- $bottom-3\n- $bottom-4\n- $bottom-5\n- $none\n- $top-1\n- $top-2\n- $top-3\n- $top-4\n- $top-5",
|
|
1866
|
+
"name": "padding-bottom",
|
|
1867
|
+
"description": "The paddingBottom property sets the height of the padding area on the bottom of an box.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$3xl\",\n\"xl\": \"$3xs\"\n}\n```\n\n- $2xl\n- $2xs\n- $3xl\n- $3xs\n- $4xl\n- $4xs\n- $5xl\n- $6xl\n- $7xl\n- $8xl\n- $lg\n- $md\n- $none\n- $s\n- $xl\n- $xs",
|
|
1789
1868
|
"values": [
|
|
1790
1869
|
{
|
|
1791
|
-
"name": "$
|
|
1870
|
+
"name": "$2xl"
|
|
1792
1871
|
},
|
|
1793
1872
|
{
|
|
1794
|
-
"name": "$
|
|
1873
|
+
"name": "$2xs"
|
|
1795
1874
|
},
|
|
1796
1875
|
{
|
|
1797
|
-
"name": "$
|
|
1876
|
+
"name": "$3xl"
|
|
1798
1877
|
},
|
|
1799
1878
|
{
|
|
1800
|
-
"name": "$
|
|
1879
|
+
"name": "$3xs"
|
|
1801
1880
|
},
|
|
1802
1881
|
{
|
|
1803
|
-
"name": "$
|
|
1882
|
+
"name": "$4xl"
|
|
1804
1883
|
},
|
|
1805
1884
|
{
|
|
1806
|
-
"name": "$
|
|
1885
|
+
"name": "$4xs"
|
|
1807
1886
|
},
|
|
1808
1887
|
{
|
|
1809
|
-
"name": "$
|
|
1888
|
+
"name": "$5xl"
|
|
1810
1889
|
},
|
|
1811
1890
|
{
|
|
1812
|
-
"name": "$
|
|
1891
|
+
"name": "$6xl"
|
|
1813
1892
|
},
|
|
1814
1893
|
{
|
|
1815
|
-
"name": "$
|
|
1894
|
+
"name": "$7xl"
|
|
1816
1895
|
},
|
|
1817
1896
|
{
|
|
1818
|
-
"name": "$
|
|
1897
|
+
"name": "$8xl"
|
|
1819
1898
|
},
|
|
1820
1899
|
{
|
|
1821
|
-
"name": "$
|
|
1822
|
-
}
|
|
1823
|
-
]
|
|
1824
|
-
},
|
|
1825
|
-
{
|
|
1826
|
-
"name": "box-sizing",
|
|
1827
|
-
"description": "The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.\n\n\n**Initial value**: `content-box`\n\nThis property supports responsive values. You can pass a single value like `\"border-box\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"border-box\",\n\"md\": \"content-box\",\n\"lg\": \"border-box\",\n\"xl\": \"content-box\"\n}\n```\n\n- border-box\n- content-box",
|
|
1828
|
-
"values": [
|
|
1900
|
+
"name": "$lg"
|
|
1901
|
+
},
|
|
1829
1902
|
{
|
|
1830
|
-
"name": "
|
|
1903
|
+
"name": "$md"
|
|
1831
1904
|
},
|
|
1832
1905
|
{
|
|
1833
|
-
"name": "
|
|
1906
|
+
"name": "$none"
|
|
1907
|
+
},
|
|
1908
|
+
{
|
|
1909
|
+
"name": "$s"
|
|
1910
|
+
},
|
|
1911
|
+
{
|
|
1912
|
+
"name": "$xl"
|
|
1913
|
+
},
|
|
1914
|
+
{
|
|
1915
|
+
"name": "$xs"
|
|
1834
1916
|
}
|
|
1835
1917
|
]
|
|
1836
1918
|
},
|
|
1837
1919
|
{
|
|
1838
|
-
"name": "
|
|
1839
|
-
"description": "The
|
|
1920
|
+
"name": "padding-left",
|
|
1921
|
+
"description": "The paddingLeft property sets the width of the padding area to the left of an box.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$3xl\",\n\"xl\": \"$3xs\"\n}\n```\n\n- $2xl\n- $2xs\n- $3xl\n- $3xs\n- $4xl\n- $4xs\n- $5xl\n- $6xl\n- $7xl\n- $8xl\n- $lg\n- $md\n- $none\n- $s\n- $xl\n- $xs",
|
|
1840
1922
|
"values": [
|
|
1841
1923
|
{
|
|
1842
|
-
"name": "
|
|
1924
|
+
"name": "$2xl"
|
|
1843
1925
|
},
|
|
1844
1926
|
{
|
|
1845
|
-
"name": "
|
|
1927
|
+
"name": "$2xs"
|
|
1846
1928
|
},
|
|
1847
1929
|
{
|
|
1848
|
-
"name": "
|
|
1930
|
+
"name": "$3xl"
|
|
1849
1931
|
},
|
|
1850
1932
|
{
|
|
1851
|
-
"name": "
|
|
1933
|
+
"name": "$3xs"
|
|
1852
1934
|
},
|
|
1853
1935
|
{
|
|
1854
|
-
"name": "
|
|
1936
|
+
"name": "$4xl"
|
|
1855
1937
|
},
|
|
1856
1938
|
{
|
|
1857
|
-
"name": "
|
|
1939
|
+
"name": "$4xs"
|
|
1858
1940
|
},
|
|
1859
1941
|
{
|
|
1860
|
-
"name": "
|
|
1942
|
+
"name": "$5xl"
|
|
1861
1943
|
},
|
|
1862
1944
|
{
|
|
1863
|
-
"name": "
|
|
1945
|
+
"name": "$6xl"
|
|
1864
1946
|
},
|
|
1865
1947
|
{
|
|
1866
|
-
"name": "
|
|
1948
|
+
"name": "$7xl"
|
|
1867
1949
|
},
|
|
1868
1950
|
{
|
|
1869
|
-
"name": "
|
|
1951
|
+
"name": "$8xl"
|
|
1870
1952
|
},
|
|
1871
1953
|
{
|
|
1872
|
-
"name": "
|
|
1954
|
+
"name": "$lg"
|
|
1955
|
+
},
|
|
1956
|
+
{
|
|
1957
|
+
"name": "$md"
|
|
1958
|
+
},
|
|
1959
|
+
{
|
|
1960
|
+
"name": "$none"
|
|
1961
|
+
},
|
|
1962
|
+
{
|
|
1963
|
+
"name": "$s"
|
|
1964
|
+
},
|
|
1965
|
+
{
|
|
1966
|
+
"name": "$xl"
|
|
1967
|
+
},
|
|
1968
|
+
{
|
|
1969
|
+
"name": "$xs"
|
|
1970
|
+
}
|
|
1971
|
+
]
|
|
1972
|
+
},
|
|
1973
|
+
{
|
|
1974
|
+
"name": "padding-right",
|
|
1975
|
+
"description": "The paddingLeft property sets the width of the padding area to the right of an box.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$3xl\",\n\"xl\": \"$3xs\"\n}\n```\n\n- $2xl\n- $2xs\n- $3xl\n- $3xs\n- $4xl\n- $4xs\n- $5xl\n- $6xl\n- $7xl\n- $8xl\n- $lg\n- $md\n- $none\n- $s\n- $xl\n- $xs",
|
|
1976
|
+
"values": [
|
|
1977
|
+
{
|
|
1978
|
+
"name": "$2xl"
|
|
1979
|
+
},
|
|
1980
|
+
{
|
|
1981
|
+
"name": "$2xs"
|
|
1982
|
+
},
|
|
1983
|
+
{
|
|
1984
|
+
"name": "$3xl"
|
|
1985
|
+
},
|
|
1986
|
+
{
|
|
1987
|
+
"name": "$3xs"
|
|
1988
|
+
},
|
|
1989
|
+
{
|
|
1990
|
+
"name": "$4xl"
|
|
1991
|
+
},
|
|
1992
|
+
{
|
|
1993
|
+
"name": "$4xs"
|
|
1994
|
+
},
|
|
1995
|
+
{
|
|
1996
|
+
"name": "$5xl"
|
|
1997
|
+
},
|
|
1998
|
+
{
|
|
1999
|
+
"name": "$6xl"
|
|
1873
2000
|
},
|
|
1874
2001
|
{
|
|
1875
|
-
"name": "
|
|
2002
|
+
"name": "$7xl"
|
|
1876
2003
|
},
|
|
1877
2004
|
{
|
|
1878
|
-
"name": "
|
|
2005
|
+
"name": "$8xl"
|
|
1879
2006
|
},
|
|
1880
2007
|
{
|
|
1881
|
-
"name": "
|
|
2008
|
+
"name": "$lg"
|
|
1882
2009
|
},
|
|
1883
2010
|
{
|
|
1884
|
-
"name": "
|
|
2011
|
+
"name": "$md"
|
|
1885
2012
|
},
|
|
1886
2013
|
{
|
|
1887
|
-
"name": "
|
|
2014
|
+
"name": "$none"
|
|
1888
2015
|
},
|
|
1889
2016
|
{
|
|
1890
|
-
"name": "
|
|
2017
|
+
"name": "$s"
|
|
1891
2018
|
},
|
|
1892
2019
|
{
|
|
1893
|
-
"name": "
|
|
2020
|
+
"name": "$xl"
|
|
1894
2021
|
},
|
|
1895
2022
|
{
|
|
1896
|
-
"name": "
|
|
1897
|
-
}
|
|
2023
|
+
"name": "$xs"
|
|
2024
|
+
}
|
|
2025
|
+
]
|
|
2026
|
+
},
|
|
2027
|
+
{
|
|
2028
|
+
"name": "margin",
|
|
2029
|
+
"description": "The margin shorthand property sets the margin area on all four sides of an box.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$3xl\",\n\"xl\": \"$3xs\"\n}\n```\n\n- $2xl\n- $2xs\n- $3xl\n- $3xs\n- $4xl\n- $4xs\n- $5xl\n- $6xl\n- $7xl\n- $8xl\n- $auto\n- $lg\n- $md\n- $none\n- $s\n- $xl\n- $xs",
|
|
2030
|
+
"values": [
|
|
1898
2031
|
{
|
|
1899
|
-
"name": "
|
|
2032
|
+
"name": "$2xl"
|
|
1900
2033
|
},
|
|
1901
2034
|
{
|
|
1902
|
-
"name": "
|
|
2035
|
+
"name": "$2xs"
|
|
1903
2036
|
},
|
|
1904
2037
|
{
|
|
1905
|
-
"name": "
|
|
2038
|
+
"name": "$3xl"
|
|
1906
2039
|
},
|
|
1907
2040
|
{
|
|
1908
|
-
"name": "
|
|
2041
|
+
"name": "$3xs"
|
|
1909
2042
|
},
|
|
1910
2043
|
{
|
|
1911
|
-
"name": "
|
|
2044
|
+
"name": "$4xl"
|
|
1912
2045
|
},
|
|
1913
2046
|
{
|
|
1914
|
-
"name": "
|
|
2047
|
+
"name": "$4xs"
|
|
1915
2048
|
},
|
|
1916
2049
|
{
|
|
1917
|
-
"name": "
|
|
2050
|
+
"name": "$5xl"
|
|
1918
2051
|
},
|
|
1919
2052
|
{
|
|
1920
|
-
"name": "
|
|
2053
|
+
"name": "$6xl"
|
|
1921
2054
|
},
|
|
1922
2055
|
{
|
|
1923
|
-
"name": "
|
|
2056
|
+
"name": "$7xl"
|
|
1924
2057
|
},
|
|
1925
2058
|
{
|
|
1926
|
-
"name": "
|
|
2059
|
+
"name": "$8xl"
|
|
1927
2060
|
},
|
|
1928
2061
|
{
|
|
1929
|
-
"name": "
|
|
2062
|
+
"name": "$auto"
|
|
1930
2063
|
},
|
|
1931
2064
|
{
|
|
1932
|
-
"name": "
|
|
2065
|
+
"name": "$lg"
|
|
1933
2066
|
},
|
|
1934
2067
|
{
|
|
1935
|
-
"name": "
|
|
2068
|
+
"name": "$md"
|
|
1936
2069
|
},
|
|
1937
2070
|
{
|
|
1938
|
-
"name": "
|
|
2071
|
+
"name": "$none"
|
|
1939
2072
|
},
|
|
1940
2073
|
{
|
|
1941
|
-
"name": "
|
|
2074
|
+
"name": "$s"
|
|
1942
2075
|
},
|
|
1943
2076
|
{
|
|
1944
|
-
"name": "
|
|
2077
|
+
"name": "$xl"
|
|
1945
2078
|
},
|
|
1946
2079
|
{
|
|
1947
|
-
"name": "
|
|
2080
|
+
"name": "$xs"
|
|
1948
2081
|
}
|
|
1949
2082
|
]
|
|
1950
2083
|
},
|
|
1951
2084
|
{
|
|
1952
|
-
"name": "
|
|
1953
|
-
"description": "The
|
|
2085
|
+
"name": "margin-top",
|
|
2086
|
+
"description": "The marginTop property sets the margin area on the top of an box.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$3xl\",\n\"xl\": \"$3xs\"\n}\n```\n\n- $2xl\n- $2xs\n- $3xl\n- $3xs\n- $4xl\n- $4xs\n- $5xl\n- $6xl\n- $7xl\n- $8xl\n- $auto\n- $lg\n- $md\n- $none\n- $s\n- $xl\n- $xs",
|
|
1954
2087
|
"values": [
|
|
1955
2088
|
{
|
|
1956
|
-
"name": "
|
|
2089
|
+
"name": "$2xl"
|
|
1957
2090
|
},
|
|
1958
2091
|
{
|
|
1959
|
-
"name": "
|
|
2092
|
+
"name": "$2xs"
|
|
1960
2093
|
},
|
|
1961
2094
|
{
|
|
1962
|
-
"name": "
|
|
2095
|
+
"name": "$3xl"
|
|
1963
2096
|
},
|
|
1964
2097
|
{
|
|
1965
|
-
"name": "
|
|
2098
|
+
"name": "$3xs"
|
|
1966
2099
|
},
|
|
1967
2100
|
{
|
|
1968
|
-
"name": "
|
|
2101
|
+
"name": "$4xl"
|
|
1969
2102
|
},
|
|
1970
2103
|
{
|
|
1971
|
-
"name": "
|
|
2104
|
+
"name": "$4xs"
|
|
1972
2105
|
},
|
|
1973
2106
|
{
|
|
1974
|
-
"name": "
|
|
2107
|
+
"name": "$5xl"
|
|
1975
2108
|
},
|
|
1976
2109
|
{
|
|
1977
|
-
"name": "
|
|
2110
|
+
"name": "$6xl"
|
|
1978
2111
|
},
|
|
1979
2112
|
{
|
|
1980
|
-
"name": "
|
|
2113
|
+
"name": "$7xl"
|
|
1981
2114
|
},
|
|
1982
2115
|
{
|
|
1983
|
-
"name": "
|
|
2116
|
+
"name": "$8xl"
|
|
1984
2117
|
},
|
|
1985
2118
|
{
|
|
1986
|
-
"name": "
|
|
2119
|
+
"name": "$auto"
|
|
1987
2120
|
},
|
|
1988
2121
|
{
|
|
1989
|
-
"name": "
|
|
2122
|
+
"name": "$lg"
|
|
1990
2123
|
},
|
|
1991
2124
|
{
|
|
1992
|
-
"name": "
|
|
2125
|
+
"name": "$md"
|
|
1993
2126
|
},
|
|
1994
2127
|
{
|
|
1995
|
-
"name": "none"
|
|
2128
|
+
"name": "$none"
|
|
1996
2129
|
},
|
|
1997
2130
|
{
|
|
1998
|
-
"name": "
|
|
2131
|
+
"name": "$s"
|
|
1999
2132
|
},
|
|
2000
2133
|
{
|
|
2001
|
-
"name": "
|
|
2134
|
+
"name": "$xl"
|
|
2002
2135
|
},
|
|
2003
2136
|
{
|
|
2004
|
-
"name": "
|
|
2005
|
-
}
|
|
2137
|
+
"name": "$xs"
|
|
2138
|
+
}
|
|
2139
|
+
]
|
|
2140
|
+
},
|
|
2141
|
+
{
|
|
2142
|
+
"name": "margin-bottom",
|
|
2143
|
+
"description": "The marginBottom property sets the margin area on the bottom of an box.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$3xl\",\n\"xl\": \"$3xs\"\n}\n```\n\n- $2xl\n- $2xs\n- $3xl\n- $3xs\n- $4xl\n- $4xs\n- $5xl\n- $6xl\n- $7xl\n- $8xl\n- $auto\n- $lg\n- $md\n- $none\n- $s\n- $xl\n- $xs",
|
|
2144
|
+
"values": [
|
|
2006
2145
|
{
|
|
2007
|
-
"name": "
|
|
2146
|
+
"name": "$2xl"
|
|
2008
2147
|
},
|
|
2009
2148
|
{
|
|
2010
|
-
"name": "
|
|
2149
|
+
"name": "$2xs"
|
|
2011
2150
|
},
|
|
2012
2151
|
{
|
|
2013
|
-
"name": "
|
|
2152
|
+
"name": "$3xl"
|
|
2014
2153
|
},
|
|
2015
2154
|
{
|
|
2016
|
-
"name": "
|
|
2155
|
+
"name": "$3xs"
|
|
2017
2156
|
},
|
|
2018
2157
|
{
|
|
2019
|
-
"name": "
|
|
2158
|
+
"name": "$4xl"
|
|
2020
2159
|
},
|
|
2021
2160
|
{
|
|
2022
|
-
"name": "
|
|
2161
|
+
"name": "$4xs"
|
|
2023
2162
|
},
|
|
2024
2163
|
{
|
|
2025
|
-
"name": "
|
|
2164
|
+
"name": "$5xl"
|
|
2026
2165
|
},
|
|
2027
2166
|
{
|
|
2028
|
-
"name": "
|
|
2167
|
+
"name": "$6xl"
|
|
2029
2168
|
},
|
|
2030
2169
|
{
|
|
2031
|
-
"name": "
|
|
2170
|
+
"name": "$7xl"
|
|
2032
2171
|
},
|
|
2033
2172
|
{
|
|
2034
|
-
"name": "
|
|
2173
|
+
"name": "$8xl"
|
|
2035
2174
|
},
|
|
2036
2175
|
{
|
|
2037
|
-
"name": "
|
|
2176
|
+
"name": "$auto"
|
|
2038
2177
|
},
|
|
2039
2178
|
{
|
|
2040
|
-
"name": "
|
|
2041
|
-
}
|
|
2042
|
-
]
|
|
2043
|
-
},
|
|
2044
|
-
{
|
|
2045
|
-
"name": "flex-basis",
|
|
2046
|
-
"description": "The **`flex-basis`** CSS property sets the initial main size of a flex item. It sets the size of the content box unless otherwise set with `box-sizing`.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"content\",\n\"lg\": \"fit-content\",\n\"xl\": \"max-content\"\n}\n```\n\n- auto\n- content\n- fit-content\n- max-content\n- min-content\n- stretch",
|
|
2047
|
-
"values": [
|
|
2048
|
-
{
|
|
2049
|
-
"name": "auto"
|
|
2179
|
+
"name": "$lg"
|
|
2050
2180
|
},
|
|
2051
2181
|
{
|
|
2052
|
-
"name": "
|
|
2182
|
+
"name": "$md"
|
|
2053
2183
|
},
|
|
2054
2184
|
{
|
|
2055
|
-
"name": "
|
|
2185
|
+
"name": "$none"
|
|
2056
2186
|
},
|
|
2057
2187
|
{
|
|
2058
|
-
"name": "
|
|
2188
|
+
"name": "$s"
|
|
2059
2189
|
},
|
|
2060
2190
|
{
|
|
2061
|
-
"name": "
|
|
2191
|
+
"name": "$xl"
|
|
2062
2192
|
},
|
|
2063
2193
|
{
|
|
2064
|
-
"name": "
|
|
2194
|
+
"name": "$xs"
|
|
2065
2195
|
}
|
|
2066
2196
|
]
|
|
2067
2197
|
},
|
|
2068
2198
|
{
|
|
2069
|
-
"name": "
|
|
2070
|
-
"description": "The
|
|
2199
|
+
"name": "margin-left",
|
|
2200
|
+
"description": "The marginLeft property sets the margin area on the left side of an box.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$3xl\",\n\"xl\": \"$3xs\"\n}\n```\n\n- $2xl\n- $2xs\n- $3xl\n- $3xs\n- $4xl\n- $4xs\n- $5xl\n- $6xl\n- $7xl\n- $8xl\n- $auto\n- $lg\n- $md\n- $none\n- $s\n- $xl\n- $xs",
|
|
2071
2201
|
"values": [
|
|
2072
2202
|
{
|
|
2073
|
-
"name": "
|
|
2203
|
+
"name": "$2xl"
|
|
2074
2204
|
},
|
|
2075
2205
|
{
|
|
2076
|
-
"name": "
|
|
2206
|
+
"name": "$2xs"
|
|
2077
2207
|
},
|
|
2078
2208
|
{
|
|
2079
|
-
"name": "
|
|
2209
|
+
"name": "$3xl"
|
|
2080
2210
|
},
|
|
2081
2211
|
{
|
|
2082
|
-
"name": "
|
|
2083
|
-
}
|
|
2084
|
-
]
|
|
2085
|
-
},
|
|
2086
|
-
{
|
|
2087
|
-
"name": "flex-grow",
|
|
2088
|
-
"description": "The **`flex-grow`** CSS property sets the flex grow factor of a flex item main size.\n\n\n**Initial value**: `0`",
|
|
2089
|
-
"values": []
|
|
2090
|
-
},
|
|
2091
|
-
{
|
|
2092
|
-
"name": "flex-shrink",
|
|
2093
|
-
"description": "The **`flex-shrink`** CSS property sets the flex shrink factor of a flex item. If the size of all flex items is larger than the flex container, items shrink to fit according to `flex-shrink`.\n\n\n**Initial value**: `1`",
|
|
2094
|
-
"values": []
|
|
2095
|
-
},
|
|
2096
|
-
{
|
|
2097
|
-
"name": "flex-wrap",
|
|
2098
|
-
"description": "The **`flex-wrap`** CSS property sets whether flex items are forced onto one line or can wrap onto multiple lines. If wrapping is allowed, it sets the direction that lines are stacked.\n\n\n**Initial value**: `nowrap`\n\nThis property supports responsive values. You can pass a single value like `\"nowrap\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"nowrap\",\n\"md\": \"wrap\",\n\"lg\": \"wrap-reverse\",\n\"xl\": \"nowrap\"\n}\n```\n\n- nowrap\n- wrap\n- wrap-reverse",
|
|
2099
|
-
"values": [
|
|
2100
|
-
{
|
|
2101
|
-
"name": "nowrap"
|
|
2212
|
+
"name": "$3xs"
|
|
2102
2213
|
},
|
|
2103
2214
|
{
|
|
2104
|
-
"name": "
|
|
2215
|
+
"name": "$4xl"
|
|
2105
2216
|
},
|
|
2106
2217
|
{
|
|
2107
|
-
"name": "
|
|
2108
|
-
}
|
|
2109
|
-
]
|
|
2110
|
-
},
|
|
2111
|
-
{
|
|
2112
|
-
"name": "font-family",
|
|
2113
|
-
"description": "The fontFamily property sets the font family of the box.\n\nThis property supports responsive values. You can pass a single value like `\"$body\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$body\",\n\"md\": \"$button\",\n\"lg\": \"$heading\",\n\"xl\": \"$body\"\n}\n```\n\n- $body\n- $button\n- $heading",
|
|
2114
|
-
"values": [
|
|
2115
|
-
{
|
|
2116
|
-
"name": "$body"
|
|
2218
|
+
"name": "$4xs"
|
|
2117
2219
|
},
|
|
2118
2220
|
{
|
|
2119
|
-
"name": "$
|
|
2221
|
+
"name": "$5xl"
|
|
2120
2222
|
},
|
|
2121
2223
|
{
|
|
2122
|
-
"name": "$
|
|
2123
|
-
}
|
|
2124
|
-
]
|
|
2125
|
-
},
|
|
2126
|
-
{
|
|
2127
|
-
"name": "grid-template-areas",
|
|
2128
|
-
"description": "The **`grid-template-areas`** CSS property specifies named grid areas, establishing the cells in the grid and assigning them names.\n\n\n**Initial value**: `none`",
|
|
2129
|
-
"values": []
|
|
2130
|
-
},
|
|
2131
|
-
{
|
|
2132
|
-
"name": "grid-template-columns",
|
|
2133
|
-
"description": "The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns.\n\n\n**Initial value**: `none`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"max-content\",\n\"lg\": \"min-content\",\n\"xl\": \"none\"\n}\n```\n\n- auto\n- max-content\n- min-content\n- none\n- subgrid",
|
|
2134
|
-
"values": [
|
|
2135
|
-
{
|
|
2136
|
-
"name": "auto"
|
|
2224
|
+
"name": "$6xl"
|
|
2137
2225
|
},
|
|
2138
2226
|
{
|
|
2139
|
-
"name": "
|
|
2227
|
+
"name": "$7xl"
|
|
2140
2228
|
},
|
|
2141
2229
|
{
|
|
2142
|
-
"name": "
|
|
2230
|
+
"name": "$8xl"
|
|
2143
2231
|
},
|
|
2144
2232
|
{
|
|
2145
|
-
"name": "
|
|
2233
|
+
"name": "$auto"
|
|
2146
2234
|
},
|
|
2147
2235
|
{
|
|
2148
|
-
"name": "
|
|
2149
|
-
}
|
|
2150
|
-
]
|
|
2151
|
-
},
|
|
2152
|
-
{
|
|
2153
|
-
"name": "grid-template-rows",
|
|
2154
|
-
"description": "The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows.\n\n\n**Initial value**: `none`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"max-content\",\n\"lg\": \"min-content\",\n\"xl\": \"none\"\n}\n```\n\n- auto\n- max-content\n- min-content\n- none\n- subgrid",
|
|
2155
|
-
"values": [
|
|
2236
|
+
"name": "$lg"
|
|
2237
|
+
},
|
|
2156
2238
|
{
|
|
2157
|
-
"name": "
|
|
2239
|
+
"name": "$md"
|
|
2158
2240
|
},
|
|
2159
2241
|
{
|
|
2160
|
-
"name": "
|
|
2242
|
+
"name": "$none"
|
|
2161
2243
|
},
|
|
2162
2244
|
{
|
|
2163
|
-
"name": "
|
|
2245
|
+
"name": "$s"
|
|
2164
2246
|
},
|
|
2165
2247
|
{
|
|
2166
|
-
"name": "
|
|
2248
|
+
"name": "$xl"
|
|
2167
2249
|
},
|
|
2168
2250
|
{
|
|
2169
|
-
"name": "
|
|
2251
|
+
"name": "$xs"
|
|
2170
2252
|
}
|
|
2171
2253
|
]
|
|
2172
2254
|
},
|
|
2173
2255
|
{
|
|
2174
|
-
"name": "
|
|
2175
|
-
"description": "The
|
|
2256
|
+
"name": "margin-right",
|
|
2257
|
+
"description": "The marginRight property sets the margin area on the right side of an box.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$3xl\",\n\"xl\": \"$3xs\"\n}\n```\n\n- $2xl\n- $2xs\n- $3xl\n- $3xs\n- $4xl\n- $4xs\n- $5xl\n- $6xl\n- $7xl\n- $8xl\n- $auto\n- $lg\n- $md\n- $none\n- $s\n- $xl\n- $xs",
|
|
2176
2258
|
"values": [
|
|
2177
2259
|
{
|
|
2178
|
-
"name": "
|
|
2179
|
-
},
|
|
2180
|
-
{
|
|
2181
|
-
"name": "fit-content"
|
|
2260
|
+
"name": "$2xl"
|
|
2182
2261
|
},
|
|
2183
2262
|
{
|
|
2184
|
-
"name": "
|
|
2263
|
+
"name": "$2xs"
|
|
2185
2264
|
},
|
|
2186
2265
|
{
|
|
2187
|
-
"name": "
|
|
2266
|
+
"name": "$3xl"
|
|
2188
2267
|
},
|
|
2189
2268
|
{
|
|
2190
|
-
"name": "
|
|
2191
|
-
}
|
|
2192
|
-
]
|
|
2193
|
-
},
|
|
2194
|
-
{
|
|
2195
|
-
"name": "justify-content",
|
|
2196
|
-
"description": "The CSS **`justify-content`** property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container.\n\n\n**Initial value**: `normal`\n\nThis property supports responsive values. You can pass a single value like `\"center\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"center\",\n\"md\": \"end\",\n\"lg\": \"flex-end\",\n\"xl\": \"flex-start\"\n}\n```\n\n- center\n- end\n- flex-end\n- flex-start\n- left\n- normal\n- right\n- space-around\n- space-between\n- space-evenly\n- start\n- stretch",
|
|
2197
|
-
"values": [
|
|
2269
|
+
"name": "$3xs"
|
|
2270
|
+
},
|
|
2198
2271
|
{
|
|
2199
|
-
"name": "
|
|
2272
|
+
"name": "$4xl"
|
|
2200
2273
|
},
|
|
2201
2274
|
{
|
|
2202
|
-
"name": "
|
|
2275
|
+
"name": "$4xs"
|
|
2203
2276
|
},
|
|
2204
2277
|
{
|
|
2205
|
-
"name": "
|
|
2278
|
+
"name": "$5xl"
|
|
2206
2279
|
},
|
|
2207
2280
|
{
|
|
2208
|
-
"name": "
|
|
2281
|
+
"name": "$6xl"
|
|
2209
2282
|
},
|
|
2210
2283
|
{
|
|
2211
|
-
"name": "
|
|
2284
|
+
"name": "$7xl"
|
|
2212
2285
|
},
|
|
2213
2286
|
{
|
|
2214
|
-
"name": "
|
|
2287
|
+
"name": "$8xl"
|
|
2215
2288
|
},
|
|
2216
2289
|
{
|
|
2217
|
-
"name": "
|
|
2290
|
+
"name": "$auto"
|
|
2218
2291
|
},
|
|
2219
2292
|
{
|
|
2220
|
-
"name": "
|
|
2293
|
+
"name": "$lg"
|
|
2221
2294
|
},
|
|
2222
2295
|
{
|
|
2223
|
-
"name": "
|
|
2296
|
+
"name": "$md"
|
|
2224
2297
|
},
|
|
2225
2298
|
{
|
|
2226
|
-
"name": "
|
|
2299
|
+
"name": "$none"
|
|
2227
2300
|
},
|
|
2228
2301
|
{
|
|
2229
|
-
"name": "
|
|
2302
|
+
"name": "$s"
|
|
2230
2303
|
},
|
|
2231
2304
|
{
|
|
2232
|
-
"name": "
|
|
2305
|
+
"name": "$xl"
|
|
2306
|
+
},
|
|
2307
|
+
{
|
|
2308
|
+
"name": "$xs"
|
|
2233
2309
|
}
|
|
2234
2310
|
]
|
|
2235
2311
|
},
|
|
2236
2312
|
{
|
|
2237
|
-
"name": "
|
|
2238
|
-
"description": "The
|
|
2313
|
+
"name": "gap",
|
|
2314
|
+
"description": "The gap property sets the gaps between rows and columns. It is a shorthand for rowGap and columnGap.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$3xl\",\n\"xl\": \"$3xs\"\n}\n```\n\n- $2xl\n- $2xs\n- $3xl\n- $3xs\n- $4xl\n- $4xs\n- $5xl\n- $6xl\n- $7xl\n- $8xl\n- $lg\n- $md\n- $none\n- $s\n- $xl\n- $xs",
|
|
2239
2315
|
"values": [
|
|
2240
2316
|
{
|
|
2241
|
-
"name": "
|
|
2317
|
+
"name": "$2xl"
|
|
2242
2318
|
},
|
|
2243
2319
|
{
|
|
2244
|
-
"name": "
|
|
2320
|
+
"name": "$2xs"
|
|
2245
2321
|
},
|
|
2246
2322
|
{
|
|
2247
|
-
"name": "
|
|
2323
|
+
"name": "$3xl"
|
|
2248
2324
|
},
|
|
2249
2325
|
{
|
|
2250
|
-
"name": "
|
|
2326
|
+
"name": "$3xs"
|
|
2251
2327
|
},
|
|
2252
2328
|
{
|
|
2253
|
-
"name": "
|
|
2329
|
+
"name": "$4xl"
|
|
2254
2330
|
},
|
|
2255
2331
|
{
|
|
2256
|
-
"name": "
|
|
2332
|
+
"name": "$4xs"
|
|
2257
2333
|
},
|
|
2258
2334
|
{
|
|
2259
|
-
"name": "
|
|
2335
|
+
"name": "$5xl"
|
|
2260
2336
|
},
|
|
2261
2337
|
{
|
|
2262
|
-
"name": "
|
|
2338
|
+
"name": "$6xl"
|
|
2263
2339
|
},
|
|
2264
2340
|
{
|
|
2265
|
-
"name": "
|
|
2341
|
+
"name": "$7xl"
|
|
2266
2342
|
},
|
|
2267
2343
|
{
|
|
2268
|
-
"name": "
|
|
2344
|
+
"name": "$8xl"
|
|
2269
2345
|
},
|
|
2270
2346
|
{
|
|
2271
|
-
"name": "
|
|
2347
|
+
"name": "$lg"
|
|
2272
2348
|
},
|
|
2273
2349
|
{
|
|
2274
|
-
"name": "
|
|
2350
|
+
"name": "$md"
|
|
2275
2351
|
},
|
|
2276
2352
|
{
|
|
2277
|
-
"name": "
|
|
2353
|
+
"name": "$none"
|
|
2354
|
+
},
|
|
2355
|
+
{
|
|
2356
|
+
"name": "$s"
|
|
2357
|
+
},
|
|
2358
|
+
{
|
|
2359
|
+
"name": "$xl"
|
|
2360
|
+
},
|
|
2361
|
+
{
|
|
2362
|
+
"name": "$xs"
|
|
2278
2363
|
}
|
|
2279
2364
|
]
|
|
2280
2365
|
},
|
|
2281
2366
|
{
|
|
2282
|
-
"name": "
|
|
2283
|
-
"description": "The
|
|
2367
|
+
"name": "grid-gap",
|
|
2368
|
+
"description": "The gridGap property sets the gaps between rows and columns. It is a shorthand for rowGap and columnGap.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$3xl\",\n\"xl\": \"$3xs\"\n}\n```\n\n- $2xl\n- $2xs\n- $3xl\n- $3xs\n- $4xl\n- $4xs\n- $5xl\n- $6xl\n- $7xl\n- $8xl\n- $lg\n- $md\n- $none\n- $s\n- $xl\n- $xs",
|
|
2284
2369
|
"values": [
|
|
2285
2370
|
{
|
|
2286
2371
|
"name": "$2xl"
|
|
@@ -2312,9 +2397,6 @@
|
|
|
2312
2397
|
{
|
|
2313
2398
|
"name": "$8xl"
|
|
2314
2399
|
},
|
|
2315
|
-
{
|
|
2316
|
-
"name": "$auto"
|
|
2317
|
-
},
|
|
2318
2400
|
{
|
|
2319
2401
|
"name": "$lg"
|
|
2320
2402
|
},
|
|
@@ -2336,173 +2418,260 @@
|
|
|
2336
2418
|
]
|
|
2337
2419
|
},
|
|
2338
2420
|
{
|
|
2339
|
-
"name": "
|
|
2340
|
-
"description": "The
|
|
2421
|
+
"name": "z-index",
|
|
2422
|
+
"description": "The zIndex property specifies the stack order of the box.\n\nThis property supports responsive values. You can pass a single value like `\"$100\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$100\",\n\"md\": \"$200\",\n\"lg\": \"$300\",\n\"xl\": \"$400\"\n}\n```\n\n- $100\n- $200\n- $300\n- $400\n- $500\n- $600\n- $700\n- $800\n- $900",
|
|
2341
2423
|
"values": [
|
|
2342
2424
|
{
|
|
2343
|
-
"name": "$
|
|
2425
|
+
"name": "$100"
|
|
2344
2426
|
},
|
|
2345
2427
|
{
|
|
2346
|
-
"name": "$
|
|
2428
|
+
"name": "$200"
|
|
2347
2429
|
},
|
|
2348
2430
|
{
|
|
2349
|
-
"name": "$
|
|
2431
|
+
"name": "$300"
|
|
2350
2432
|
},
|
|
2351
2433
|
{
|
|
2352
|
-
"name": "$
|
|
2434
|
+
"name": "$400"
|
|
2353
2435
|
},
|
|
2354
2436
|
{
|
|
2355
|
-
"name": "$
|
|
2437
|
+
"name": "$500"
|
|
2356
2438
|
},
|
|
2357
2439
|
{
|
|
2358
|
-
"name": "$
|
|
2440
|
+
"name": "$600"
|
|
2359
2441
|
},
|
|
2360
2442
|
{
|
|
2361
|
-
"name": "$
|
|
2443
|
+
"name": "$700"
|
|
2362
2444
|
},
|
|
2363
2445
|
{
|
|
2364
|
-
"name": "$
|
|
2446
|
+
"name": "$800"
|
|
2365
2447
|
},
|
|
2366
2448
|
{
|
|
2367
|
-
"name": "$
|
|
2449
|
+
"name": "$900"
|
|
2450
|
+
}
|
|
2451
|
+
]
|
|
2452
|
+
},
|
|
2453
|
+
{
|
|
2454
|
+
"name": "line-height",
|
|
2455
|
+
"description": "The lineHeight property specifies the line height of the box.\n\nThis property supports responsive values. You can pass a single value like `\"$body-l\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$body-l\",\n\"md\": \"$body-m\",\n\"lg\": \"$body-s\",\n\"xl\": \"$body-xl\"\n}\n```\n\n- $body-l\n- $body-m\n- $body-s\n- $body-xl\n- $body-xs\n- $body-xxs\n- $button-l\n- $button-m\n- $button-s\n- $heading-hero\n- $heading-l\n- $heading-m\n- $heading-s\n- $heading-xl\n- $heading-xs\n- $label-l\n- $label-m\n- $label-s",
|
|
2456
|
+
"values": [
|
|
2457
|
+
{
|
|
2458
|
+
"name": "$body-l"
|
|
2368
2459
|
},
|
|
2369
2460
|
{
|
|
2370
|
-
"name": "$
|
|
2461
|
+
"name": "$body-m"
|
|
2371
2462
|
},
|
|
2372
2463
|
{
|
|
2373
|
-
"name": "$
|
|
2464
|
+
"name": "$body-s"
|
|
2374
2465
|
},
|
|
2375
2466
|
{
|
|
2376
|
-
"name": "$
|
|
2467
|
+
"name": "$body-xl"
|
|
2377
2468
|
},
|
|
2378
2469
|
{
|
|
2379
|
-
"name": "$
|
|
2470
|
+
"name": "$body-xs"
|
|
2380
2471
|
},
|
|
2381
2472
|
{
|
|
2382
|
-
"name": "$
|
|
2473
|
+
"name": "$body-xxs"
|
|
2383
2474
|
},
|
|
2384
2475
|
{
|
|
2385
|
-
"name": "$
|
|
2476
|
+
"name": "$button-l"
|
|
2386
2477
|
},
|
|
2387
2478
|
{
|
|
2388
|
-
"name": "$
|
|
2479
|
+
"name": "$button-m"
|
|
2389
2480
|
},
|
|
2390
2481
|
{
|
|
2391
|
-
"name": "$
|
|
2482
|
+
"name": "$button-s"
|
|
2483
|
+
},
|
|
2484
|
+
{
|
|
2485
|
+
"name": "$heading-hero"
|
|
2486
|
+
},
|
|
2487
|
+
{
|
|
2488
|
+
"name": "$heading-l"
|
|
2489
|
+
},
|
|
2490
|
+
{
|
|
2491
|
+
"name": "$heading-m"
|
|
2492
|
+
},
|
|
2493
|
+
{
|
|
2494
|
+
"name": "$heading-s"
|
|
2495
|
+
},
|
|
2496
|
+
{
|
|
2497
|
+
"name": "$heading-xl"
|
|
2498
|
+
},
|
|
2499
|
+
{
|
|
2500
|
+
"name": "$heading-xs"
|
|
2501
|
+
},
|
|
2502
|
+
{
|
|
2503
|
+
"name": "$label-l"
|
|
2504
|
+
},
|
|
2505
|
+
{
|
|
2506
|
+
"name": "$label-m"
|
|
2507
|
+
},
|
|
2508
|
+
{
|
|
2509
|
+
"name": "$label-s"
|
|
2392
2510
|
}
|
|
2393
2511
|
]
|
|
2394
2512
|
},
|
|
2395
2513
|
{
|
|
2396
|
-
"name": "
|
|
2397
|
-
"description": "The
|
|
2514
|
+
"name": "font-weight",
|
|
2515
|
+
"description": "The fontWeight property sets how thick or thin characters in box should be displayed.\n\nThis property supports responsive values. You can pass a single value like `\"$bold\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$bold\",\n\"md\": \"$medium\",\n\"lg\": \"$regular\",\n\"xl\": \"$semiBold\"\n}\n```\n\n- $bold\n- $medium\n- $regular\n- $semiBold",
|
|
2398
2516
|
"values": [
|
|
2399
2517
|
{
|
|
2400
|
-
"name": "$
|
|
2518
|
+
"name": "$bold"
|
|
2401
2519
|
},
|
|
2402
2520
|
{
|
|
2403
|
-
"name": "$
|
|
2521
|
+
"name": "$medium"
|
|
2404
2522
|
},
|
|
2405
2523
|
{
|
|
2406
|
-
"name": "$
|
|
2524
|
+
"name": "$regular"
|
|
2407
2525
|
},
|
|
2408
2526
|
{
|
|
2409
|
-
"name": "$
|
|
2527
|
+
"name": "$semiBold"
|
|
2528
|
+
}
|
|
2529
|
+
]
|
|
2530
|
+
},
|
|
2531
|
+
{
|
|
2532
|
+
"name": "font-size",
|
|
2533
|
+
"description": "The fontSize property sets the size of the box.\n\nThis property supports responsive values. You can pass a single value like `\"$body-l\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$body-l\",\n\"md\": \"$body-m\",\n\"lg\": \"$body-s\",\n\"xl\": \"$body-xl\"\n}\n```\n\n- $body-l\n- $body-m\n- $body-s\n- $body-xl\n- $body-xs\n- $body-xxs\n- $button-l\n- $button-m\n- $button-s\n- $heading-hero\n- $heading-l\n- $heading-m\n- $heading-s\n- $heading-xl\n- $heading-xs\n- $label-l\n- $label-m\n- $label-s",
|
|
2534
|
+
"values": [
|
|
2535
|
+
{
|
|
2536
|
+
"name": "$body-l"
|
|
2410
2537
|
},
|
|
2411
2538
|
{
|
|
2412
|
-
"name": "$
|
|
2539
|
+
"name": "$body-m"
|
|
2413
2540
|
},
|
|
2414
2541
|
{
|
|
2415
|
-
"name": "$
|
|
2542
|
+
"name": "$body-s"
|
|
2416
2543
|
},
|
|
2417
2544
|
{
|
|
2418
|
-
"name": "$
|
|
2545
|
+
"name": "$body-xl"
|
|
2419
2546
|
},
|
|
2420
2547
|
{
|
|
2421
|
-
"name": "$
|
|
2548
|
+
"name": "$body-xs"
|
|
2422
2549
|
},
|
|
2423
2550
|
{
|
|
2424
|
-
"name": "$
|
|
2551
|
+
"name": "$body-xxs"
|
|
2425
2552
|
},
|
|
2426
2553
|
{
|
|
2427
|
-
"name": "$
|
|
2554
|
+
"name": "$button-l"
|
|
2428
2555
|
},
|
|
2429
2556
|
{
|
|
2430
|
-
"name": "$
|
|
2557
|
+
"name": "$button-m"
|
|
2431
2558
|
},
|
|
2432
2559
|
{
|
|
2433
|
-
"name": "$
|
|
2560
|
+
"name": "$button-s"
|
|
2434
2561
|
},
|
|
2435
2562
|
{
|
|
2436
|
-
"name": "$
|
|
2563
|
+
"name": "$heading-hero"
|
|
2437
2564
|
},
|
|
2438
2565
|
{
|
|
2439
|
-
"name": "$
|
|
2566
|
+
"name": "$heading-l"
|
|
2440
2567
|
},
|
|
2441
2568
|
{
|
|
2442
|
-
"name": "$
|
|
2569
|
+
"name": "$heading-m"
|
|
2443
2570
|
},
|
|
2444
2571
|
{
|
|
2445
|
-
"name": "$
|
|
2572
|
+
"name": "$heading-s"
|
|
2446
2573
|
},
|
|
2447
2574
|
{
|
|
2448
|
-
"name": "$
|
|
2575
|
+
"name": "$heading-xl"
|
|
2576
|
+
},
|
|
2577
|
+
{
|
|
2578
|
+
"name": "$heading-xs"
|
|
2579
|
+
},
|
|
2580
|
+
{
|
|
2581
|
+
"name": "$label-l"
|
|
2582
|
+
},
|
|
2583
|
+
{
|
|
2584
|
+
"name": "$label-m"
|
|
2585
|
+
},
|
|
2586
|
+
{
|
|
2587
|
+
"name": "$label-s"
|
|
2449
2588
|
}
|
|
2450
2589
|
]
|
|
2451
2590
|
},
|
|
2452
2591
|
{
|
|
2453
|
-
"name": "
|
|
2454
|
-
"description": "The
|
|
2592
|
+
"name": "font-family",
|
|
2593
|
+
"description": "The fontFamily property sets the font family of the box.\n\nThis property supports responsive values. You can pass a single value like `\"$body\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$body\",\n\"md\": \"$button\",\n\"lg\": \"$heading\",\n\"xl\": \"$body\"\n}\n```\n\n- $body\n- $button\n- $heading",
|
|
2455
2594
|
"values": [
|
|
2456
2595
|
{
|
|
2457
|
-
"name": "$
|
|
2596
|
+
"name": "$body"
|
|
2458
2597
|
},
|
|
2459
2598
|
{
|
|
2460
|
-
"name": "$
|
|
2599
|
+
"name": "$button"
|
|
2461
2600
|
},
|
|
2462
2601
|
{
|
|
2463
|
-
"name": "$
|
|
2602
|
+
"name": "$heading"
|
|
2603
|
+
}
|
|
2604
|
+
]
|
|
2605
|
+
},
|
|
2606
|
+
{
|
|
2607
|
+
"name": "width",
|
|
2608
|
+
"description": "The **`width`** CSS property sets an element's width. By default, it sets the width of the content area, but if `box-sizing` is set to `border-box`, it sets the width of the border area. It is also possible to pass a specific value.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"fit-content\",\n\"lg\": \"intrinsic\",\n\"xl\": \"max-content\"\n}\n```\n\n- auto\n- fit-content\n- intrinsic\n- max-content\n- min-content\n- min-intrinsic\n- stretch",
|
|
2609
|
+
"values": [
|
|
2610
|
+
{
|
|
2611
|
+
"name": "auto"
|
|
2464
2612
|
},
|
|
2465
2613
|
{
|
|
2466
|
-
"name": "
|
|
2614
|
+
"name": "fit-content"
|
|
2467
2615
|
},
|
|
2468
2616
|
{
|
|
2469
|
-
"name": "
|
|
2617
|
+
"name": "intrinsic"
|
|
2470
2618
|
},
|
|
2471
2619
|
{
|
|
2472
|
-
"name": "
|
|
2620
|
+
"name": "max-content"
|
|
2473
2621
|
},
|
|
2474
2622
|
{
|
|
2475
|
-
"name": "
|
|
2623
|
+
"name": "min-content"
|
|
2476
2624
|
},
|
|
2477
2625
|
{
|
|
2478
|
-
"name": "
|
|
2626
|
+
"name": "min-intrinsic"
|
|
2479
2627
|
},
|
|
2480
2628
|
{
|
|
2481
|
-
"name": "
|
|
2629
|
+
"name": "stretch"
|
|
2630
|
+
}
|
|
2631
|
+
]
|
|
2632
|
+
},
|
|
2633
|
+
{
|
|
2634
|
+
"name": "height",
|
|
2635
|
+
"description": "The **`height`** CSS property specifies the height of an element. By default, the property defines the height of the content area. If `box-sizing` is set to `border-box`, however, it instead determines the height of the border area. It is also possible to pass a specific value.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"fit-content\",\n\"lg\": \"max-content\",\n\"xl\": \"min-content\"\n}\n```\n\n- auto\n- fit-content\n- max-content\n- min-content\n- stretch",
|
|
2636
|
+
"values": [
|
|
2637
|
+
{
|
|
2638
|
+
"name": "auto"
|
|
2482
2639
|
},
|
|
2483
2640
|
{
|
|
2484
|
-
"name": "
|
|
2641
|
+
"name": "fit-content"
|
|
2485
2642
|
},
|
|
2486
2643
|
{
|
|
2487
|
-
"name": "
|
|
2644
|
+
"name": "max-content"
|
|
2488
2645
|
},
|
|
2489
2646
|
{
|
|
2490
|
-
"name": "
|
|
2647
|
+
"name": "min-content"
|
|
2648
|
+
},
|
|
2649
|
+
{
|
|
2650
|
+
"name": "stretch"
|
|
2651
|
+
}
|
|
2652
|
+
]
|
|
2653
|
+
},
|
|
2654
|
+
{
|
|
2655
|
+
"name": "max-width",
|
|
2656
|
+
"description": "The **`max-width`** CSS property sets the maximum width of an element. It prevents the used value of the `width` property from becoming larger than the value specified by `max-width`. It is also possible to pass a specific value.\n\n\n**Initial value**: `none`\n\nThis property supports responsive values. You can pass a single value like `\"fit-content\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"fit-content\",\n\"md\": \"intrinsic\",\n\"lg\": \"max-content\",\n\"xl\": \"min-content\"\n}\n```\n\n- fit-content\n- intrinsic\n- max-content\n- min-content\n- none\n- stretch",
|
|
2657
|
+
"values": [
|
|
2658
|
+
{
|
|
2659
|
+
"name": "fit-content"
|
|
2491
2660
|
},
|
|
2492
2661
|
{
|
|
2493
|
-
"name": "
|
|
2662
|
+
"name": "intrinsic"
|
|
2494
2663
|
},
|
|
2495
2664
|
{
|
|
2496
|
-
"name": "
|
|
2665
|
+
"name": "max-content"
|
|
2497
2666
|
},
|
|
2498
2667
|
{
|
|
2499
|
-
"name": "
|
|
2668
|
+
"name": "min-content"
|
|
2500
2669
|
},
|
|
2501
2670
|
{
|
|
2502
|
-
"name": "
|
|
2671
|
+
"name": "none"
|
|
2503
2672
|
},
|
|
2504
2673
|
{
|
|
2505
|
-
"name": "
|
|
2674
|
+
"name": "stretch"
|
|
2506
2675
|
}
|
|
2507
2676
|
]
|
|
2508
2677
|
},
|
|
@@ -2531,9 +2700,12 @@
|
|
|
2531
2700
|
]
|
|
2532
2701
|
},
|
|
2533
2702
|
{
|
|
2534
|
-
"name": "
|
|
2535
|
-
"description": "The **`
|
|
2703
|
+
"name": "min-width",
|
|
2704
|
+
"description": "The **`min-width`** CSS property sets the minimum width of an element. It prevents the used value of the `width` property from becoming smaller than the value specified for `min-width`. It is also possible to pass a specific value.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"fit-content\",\n\"lg\": \"intrinsic\",\n\"xl\": \"max-content\"\n}\n```\n\n- auto\n- fit-content\n- intrinsic\n- max-content\n- min-content\n- min-intrinsic\n- stretch",
|
|
2536
2705
|
"values": [
|
|
2706
|
+
{
|
|
2707
|
+
"name": "auto"
|
|
2708
|
+
},
|
|
2537
2709
|
{
|
|
2538
2710
|
"name": "fit-content"
|
|
2539
2711
|
},
|
|
@@ -2547,7 +2719,7 @@
|
|
|
2547
2719
|
"name": "min-content"
|
|
2548
2720
|
},
|
|
2549
2721
|
{
|
|
2550
|
-
"name": "
|
|
2722
|
+
"name": "min-intrinsic"
|
|
2551
2723
|
},
|
|
2552
2724
|
{
|
|
2553
2725
|
"name": "stretch"
|
|
@@ -2579,17 +2751,37 @@
|
|
|
2579
2751
|
]
|
|
2580
2752
|
},
|
|
2581
2753
|
{
|
|
2582
|
-
"name": "
|
|
2583
|
-
"description": "The **`
|
|
2754
|
+
"name": "bottom",
|
|
2755
|
+
"description": "The **`bottom`** CSS property participates in setting the vertical position of a positioned element. It has no effect on non-positioned elements.\n\n\n**Initial value**: `auto`",
|
|
2756
|
+
"values": []
|
|
2757
|
+
},
|
|
2758
|
+
{
|
|
2759
|
+
"name": "left",
|
|
2760
|
+
"description": "The **`left`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.\n\n\n**Initial value**: `auto`",
|
|
2761
|
+
"values": []
|
|
2762
|
+
},
|
|
2763
|
+
{
|
|
2764
|
+
"name": "right",
|
|
2765
|
+
"description": "The **`right`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.\n\n\n**Initial value**: `auto`",
|
|
2766
|
+
"values": []
|
|
2767
|
+
},
|
|
2768
|
+
{
|
|
2769
|
+
"name": "top",
|
|
2770
|
+
"description": "The **`top`** CSS property participates in specifying the vertical position of a positioned element. It has no effect on non-positioned elements.\n\n\n**Initial value**: `auto`",
|
|
2771
|
+
"values": []
|
|
2772
|
+
},
|
|
2773
|
+
{
|
|
2774
|
+
"name": "flex",
|
|
2775
|
+
"description": "The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"content\",\n\"lg\": \"fit-content\",\n\"xl\": \"max-content\"\n}\n```\n\n- auto\n- content\n- fit-content\n- max-content\n- min-content\n- none\n- stretch",
|
|
2584
2776
|
"values": [
|
|
2585
2777
|
{
|
|
2586
2778
|
"name": "auto"
|
|
2587
2779
|
},
|
|
2588
2780
|
{
|
|
2589
|
-
"name": "
|
|
2781
|
+
"name": "content"
|
|
2590
2782
|
},
|
|
2591
2783
|
{
|
|
2592
|
-
"name": "
|
|
2784
|
+
"name": "fit-content"
|
|
2593
2785
|
},
|
|
2594
2786
|
{
|
|
2595
2787
|
"name": "max-content"
|
|
@@ -2598,7 +2790,7 @@
|
|
|
2598
2790
|
"name": "min-content"
|
|
2599
2791
|
},
|
|
2600
2792
|
{
|
|
2601
|
-
"name": "
|
|
2793
|
+
"name": "none"
|
|
2602
2794
|
},
|
|
2603
2795
|
{
|
|
2604
2796
|
"name": "stretch"
|
|
@@ -2606,604 +2798,583 @@
|
|
|
2606
2798
|
]
|
|
2607
2799
|
},
|
|
2608
2800
|
{
|
|
2609
|
-
"name": "
|
|
2610
|
-
"description": "The **`
|
|
2611
|
-
"values": []
|
|
2612
|
-
},
|
|
2613
|
-
{
|
|
2614
|
-
"name": "order",
|
|
2615
|
-
"description": "The **`order`** CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending `order` value and then by their source code order.\n\n\n**Initial value**: `0`",
|
|
2801
|
+
"name": "grid-template-areas",
|
|
2802
|
+
"description": "The **`grid-template-areas`** CSS property specifies named grid areas, establishing the cells in the grid and assigning them names.\n\n\n**Initial value**: `none`",
|
|
2616
2803
|
"values": []
|
|
2617
2804
|
},
|
|
2618
2805
|
{
|
|
2619
|
-
"name": "
|
|
2620
|
-
"description": "The **`
|
|
2806
|
+
"name": "grid-template-columns",
|
|
2807
|
+
"description": "The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns.\n\n\n**Initial value**: `none`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"max-content\",\n\"lg\": \"min-content\",\n\"xl\": \"none\"\n}\n```\n\n- auto\n- max-content\n- min-content\n- none\n- subgrid",
|
|
2621
2808
|
"values": [
|
|
2622
2809
|
{
|
|
2623
2810
|
"name": "auto"
|
|
2624
2811
|
},
|
|
2625
2812
|
{
|
|
2626
|
-
"name": "
|
|
2813
|
+
"name": "max-content"
|
|
2627
2814
|
},
|
|
2628
2815
|
{
|
|
2629
|
-
"name": "
|
|
2816
|
+
"name": "min-content"
|
|
2630
2817
|
},
|
|
2631
2818
|
{
|
|
2632
|
-
"name": "
|
|
2819
|
+
"name": "none"
|
|
2633
2820
|
},
|
|
2634
2821
|
{
|
|
2635
|
-
"name": "
|
|
2822
|
+
"name": "subgrid"
|
|
2636
2823
|
}
|
|
2637
2824
|
]
|
|
2638
2825
|
},
|
|
2639
2826
|
{
|
|
2640
|
-
"name": "
|
|
2641
|
-
"description": "The **`
|
|
2827
|
+
"name": "grid-template-rows",
|
|
2828
|
+
"description": "The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows.\n\n\n**Initial value**: `none`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"max-content\",\n\"lg\": \"min-content\",\n\"xl\": \"none\"\n}\n```\n\n- auto\n- max-content\n- min-content\n- none\n- subgrid",
|
|
2642
2829
|
"values": [
|
|
2643
2830
|
{
|
|
2644
2831
|
"name": "auto"
|
|
2645
2832
|
},
|
|
2646
2833
|
{
|
|
2647
|
-
"name": "
|
|
2834
|
+
"name": "max-content"
|
|
2648
2835
|
},
|
|
2649
2836
|
{
|
|
2650
|
-
"name": "
|
|
2837
|
+
"name": "min-content"
|
|
2651
2838
|
},
|
|
2652
2839
|
{
|
|
2653
|
-
"name": "
|
|
2840
|
+
"name": "none"
|
|
2654
2841
|
},
|
|
2655
2842
|
{
|
|
2656
|
-
"name": "
|
|
2843
|
+
"name": "subgrid"
|
|
2657
2844
|
}
|
|
2658
2845
|
]
|
|
2659
2846
|
},
|
|
2660
2847
|
{
|
|
2661
|
-
"name": "
|
|
2662
|
-
"description": "The
|
|
2848
|
+
"name": "grid-area",
|
|
2849
|
+
"description": "The **`grid-area`** CSS shorthand property specifies a grid item’s size and location within a grid by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the edges of its grid area.",
|
|
2850
|
+
"values": []
|
|
2851
|
+
},
|
|
2852
|
+
{
|
|
2853
|
+
"name": "flex-shrink",
|
|
2854
|
+
"description": "The **`flex-shrink`** CSS property sets the flex shrink factor of a flex item. If the size of all flex items is larger than the flex container, items shrink to fit according to `flex-shrink`.\n\n\n**Initial value**: `1`",
|
|
2855
|
+
"values": []
|
|
2856
|
+
},
|
|
2857
|
+
{
|
|
2858
|
+
"name": "flex-grow",
|
|
2859
|
+
"description": "The **`flex-grow`** CSS property sets the flex grow factor of a flex item main size.\n\n\n**Initial value**: `0`",
|
|
2860
|
+
"values": []
|
|
2861
|
+
},
|
|
2862
|
+
{
|
|
2863
|
+
"name": "order",
|
|
2864
|
+
"description": "The **`order`** CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending `order` value and then by their source code order.\n\n\n**Initial value**: `0`",
|
|
2865
|
+
"values": []
|
|
2866
|
+
},
|
|
2867
|
+
{
|
|
2868
|
+
"name": "transition-delay",
|
|
2869
|
+
"description": "The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.\n\n\n**Initial value**: `0s`",
|
|
2870
|
+
"type": "string"
|
|
2871
|
+
},
|
|
2872
|
+
{
|
|
2873
|
+
"name": "transition-property",
|
|
2874
|
+
"description": "The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.\n\n\n**Initial value**: all\n\nThis property supports responsive values. You can pass a single value like `\"all\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"all\",\n\"md\": \"none\",\n\"lg\": \"all\",\n\"xl\": \"none\"\n}\n```\n\n- all\n- none",
|
|
2663
2875
|
"values": [
|
|
2664
2876
|
{
|
|
2665
|
-
"name": "
|
|
2877
|
+
"name": "all"
|
|
2666
2878
|
},
|
|
2667
2879
|
{
|
|
2668
|
-
"name": "
|
|
2669
|
-
}
|
|
2880
|
+
"name": "none"
|
|
2881
|
+
}
|
|
2882
|
+
]
|
|
2883
|
+
},
|
|
2884
|
+
{
|
|
2885
|
+
"name": "background-image",
|
|
2886
|
+
"description": "The **`background-image`** CSS property sets one or more background images on an element.\n\n\n**Initial value**: `none`",
|
|
2887
|
+
"values": []
|
|
2888
|
+
},
|
|
2889
|
+
{
|
|
2890
|
+
"name": "background-position",
|
|
2891
|
+
"description": "The **`background-position`** CSS property sets the initial position for each background image. The position is relative to the position layer set by `background-origin`.\n\n\n**Initial value**: `0% 0%`\n\nThis property supports responsive values. You can pass a single value like `\"bottom\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"bottom\",\n\"md\": \"center\",\n\"lg\": \"left\",\n\"xl\": \"right\"\n}\n```\n\n- bottom\n- center\n- left\n- right\n- top",
|
|
2892
|
+
"values": [
|
|
2670
2893
|
{
|
|
2671
|
-
"name": "
|
|
2894
|
+
"name": "bottom"
|
|
2672
2895
|
},
|
|
2673
2896
|
{
|
|
2674
|
-
"name": "
|
|
2897
|
+
"name": "center"
|
|
2675
2898
|
},
|
|
2676
2899
|
{
|
|
2677
|
-
"name": "
|
|
2900
|
+
"name": "left"
|
|
2678
2901
|
},
|
|
2679
2902
|
{
|
|
2680
|
-
"name": "
|
|
2903
|
+
"name": "right"
|
|
2681
2904
|
},
|
|
2682
2905
|
{
|
|
2683
|
-
"name": "
|
|
2684
|
-
}
|
|
2906
|
+
"name": "top"
|
|
2907
|
+
}
|
|
2908
|
+
]
|
|
2909
|
+
},
|
|
2910
|
+
{
|
|
2911
|
+
"name": "background-position-x",
|
|
2912
|
+
"description": "The **`background-position-x`** CSS property sets the initial horizontal position for each background image. The position is relative to the position layer set by `background-origin`.\n\n\n**Initial value**: `left`\n\nThis property supports responsive values. You can pass a single value like `\"center\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"center\",\n\"md\": \"left\",\n\"lg\": \"right\",\n\"xl\": \"x-end\"\n}\n```\n\n- center\n- left\n- right\n- x-end\n- x-start",
|
|
2913
|
+
"values": [
|
|
2685
2914
|
{
|
|
2686
|
-
"name": "
|
|
2915
|
+
"name": "center"
|
|
2687
2916
|
},
|
|
2688
2917
|
{
|
|
2689
|
-
"name": "
|
|
2918
|
+
"name": "left"
|
|
2690
2919
|
},
|
|
2691
2920
|
{
|
|
2692
|
-
"name": "
|
|
2921
|
+
"name": "right"
|
|
2693
2922
|
},
|
|
2694
2923
|
{
|
|
2695
|
-
"name": "
|
|
2924
|
+
"name": "x-end"
|
|
2696
2925
|
},
|
|
2697
2926
|
{
|
|
2698
|
-
"name": "
|
|
2927
|
+
"name": "x-start"
|
|
2928
|
+
}
|
|
2929
|
+
]
|
|
2930
|
+
},
|
|
2931
|
+
{
|
|
2932
|
+
"name": "background-position-y",
|
|
2933
|
+
"description": "The **`background-position-y`** CSS property sets the initial vertical position for each background image. The position is relative to the position layer set by `background-origin`.\n\n\n**Initial value**: `top`\n\nThis property supports responsive values. You can pass a single value like `\"bottom\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"bottom\",\n\"md\": \"center\",\n\"lg\": \"top\",\n\"xl\": \"y-end\"\n}\n```\n\n- bottom\n- center\n- top\n- y-end\n- y-start",
|
|
2934
|
+
"values": [
|
|
2935
|
+
{
|
|
2936
|
+
"name": "bottom"
|
|
2699
2937
|
},
|
|
2700
2938
|
{
|
|
2701
|
-
"name": "
|
|
2939
|
+
"name": "center"
|
|
2702
2940
|
},
|
|
2703
2941
|
{
|
|
2704
|
-
"name": "
|
|
2942
|
+
"name": "top"
|
|
2705
2943
|
},
|
|
2706
2944
|
{
|
|
2707
|
-
"name": "
|
|
2945
|
+
"name": "y-end"
|
|
2708
2946
|
},
|
|
2709
2947
|
{
|
|
2710
|
-
"name": "
|
|
2948
|
+
"name": "y-start"
|
|
2711
2949
|
}
|
|
2712
2950
|
]
|
|
2713
2951
|
},
|
|
2714
2952
|
{
|
|
2715
|
-
"name": "
|
|
2716
|
-
"description": "The
|
|
2953
|
+
"name": "background-blend-mode",
|
|
2954
|
+
"description": "The **`background-blend-mode`** CSS property sets how an element's background images should blend with each other and with the element's background color.\n\n\n**Initial value**: `normal`\n\nThis property supports responsive values. You can pass a single value like `\"color\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"color\",\n\"md\": \"color-burn\",\n\"lg\": \"color-dodge\",\n\"xl\": \"darken\"\n}\n```\n\n- color\n- color-burn\n- color-dodge\n- darken\n- difference\n- exclusion\n- hard-light\n- hue\n- lighten\n- luminosity\n- multiply\n- normal\n- overlay\n- saturation\n- screen\n- soft-light",
|
|
2717
2955
|
"values": [
|
|
2718
2956
|
{
|
|
2719
|
-
"name": "
|
|
2957
|
+
"name": "color"
|
|
2720
2958
|
},
|
|
2721
2959
|
{
|
|
2722
|
-
"name": "
|
|
2960
|
+
"name": "color-burn"
|
|
2723
2961
|
},
|
|
2724
2962
|
{
|
|
2725
|
-
"name": "
|
|
2963
|
+
"name": "color-dodge"
|
|
2726
2964
|
},
|
|
2727
2965
|
{
|
|
2728
|
-
"name": "
|
|
2966
|
+
"name": "darken"
|
|
2729
2967
|
},
|
|
2730
2968
|
{
|
|
2731
|
-
"name": "
|
|
2969
|
+
"name": "difference"
|
|
2732
2970
|
},
|
|
2733
2971
|
{
|
|
2734
|
-
"name": "
|
|
2972
|
+
"name": "exclusion"
|
|
2735
2973
|
},
|
|
2736
2974
|
{
|
|
2737
|
-
"name": "
|
|
2975
|
+
"name": "hard-light"
|
|
2738
2976
|
},
|
|
2739
2977
|
{
|
|
2740
|
-
"name": "
|
|
2978
|
+
"name": "hue"
|
|
2741
2979
|
},
|
|
2742
2980
|
{
|
|
2743
|
-
"name": "
|
|
2981
|
+
"name": "lighten"
|
|
2744
2982
|
},
|
|
2745
2983
|
{
|
|
2746
|
-
"name": "
|
|
2984
|
+
"name": "luminosity"
|
|
2747
2985
|
},
|
|
2748
2986
|
{
|
|
2749
|
-
"name": "
|
|
2987
|
+
"name": "multiply"
|
|
2750
2988
|
},
|
|
2751
2989
|
{
|
|
2752
|
-
"name": "
|
|
2990
|
+
"name": "normal"
|
|
2753
2991
|
},
|
|
2754
2992
|
{
|
|
2755
|
-
"name": "
|
|
2993
|
+
"name": "overlay"
|
|
2756
2994
|
},
|
|
2757
2995
|
{
|
|
2758
|
-
"name": "
|
|
2996
|
+
"name": "saturation"
|
|
2759
2997
|
},
|
|
2760
2998
|
{
|
|
2761
|
-
"name": "
|
|
2999
|
+
"name": "screen"
|
|
2762
3000
|
},
|
|
2763
3001
|
{
|
|
2764
|
-
"name": "
|
|
3002
|
+
"name": "soft-light"
|
|
2765
3003
|
}
|
|
2766
3004
|
]
|
|
2767
3005
|
},
|
|
2768
3006
|
{
|
|
2769
|
-
"name": "
|
|
2770
|
-
"description": "The
|
|
3007
|
+
"name": "background-repeat",
|
|
3008
|
+
"description": "The **`background-repeat`** CSS property sets how background images are repeated. A background image can be repeated along the horizontal and vertical axes, or not repeated at all.\n\n\n**Initial value**: `repeat`\n\nThis property supports responsive values. You can pass a single value like `\"no-repeat\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"no-repeat\",\n\"md\": \"repeat\",\n\"lg\": \"repeat-x\",\n\"xl\": \"repeat-y\"\n}\n```\n\n- no-repeat\n- repeat\n- repeat-x\n- repeat-y\n- round\n- space",
|
|
2771
3009
|
"values": [
|
|
2772
3010
|
{
|
|
2773
|
-
"name": "
|
|
2774
|
-
},
|
|
2775
|
-
{
|
|
2776
|
-
"name": "$2xs"
|
|
2777
|
-
},
|
|
2778
|
-
{
|
|
2779
|
-
"name": "$3xl"
|
|
2780
|
-
},
|
|
2781
|
-
{
|
|
2782
|
-
"name": "$3xs"
|
|
2783
|
-
},
|
|
2784
|
-
{
|
|
2785
|
-
"name": "$4xl"
|
|
2786
|
-
},
|
|
2787
|
-
{
|
|
2788
|
-
"name": "$4xs"
|
|
2789
|
-
},
|
|
2790
|
-
{
|
|
2791
|
-
"name": "$5xl"
|
|
2792
|
-
},
|
|
2793
|
-
{
|
|
2794
|
-
"name": "$6xl"
|
|
3011
|
+
"name": "no-repeat"
|
|
2795
3012
|
},
|
|
2796
3013
|
{
|
|
2797
|
-
"name": "
|
|
3014
|
+
"name": "repeat"
|
|
2798
3015
|
},
|
|
2799
3016
|
{
|
|
2800
|
-
"name": "
|
|
3017
|
+
"name": "repeat-x"
|
|
2801
3018
|
},
|
|
2802
3019
|
{
|
|
2803
|
-
"name": "
|
|
3020
|
+
"name": "repeat-y"
|
|
2804
3021
|
},
|
|
2805
3022
|
{
|
|
2806
|
-
"name": "
|
|
3023
|
+
"name": "round"
|
|
2807
3024
|
},
|
|
2808
3025
|
{
|
|
2809
|
-
"name": "
|
|
2810
|
-
}
|
|
3026
|
+
"name": "space"
|
|
3027
|
+
}
|
|
3028
|
+
]
|
|
3029
|
+
},
|
|
3030
|
+
{
|
|
3031
|
+
"name": "background-size",
|
|
3032
|
+
"description": "The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space.\n\n\n**Initial value**: `auto auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"contain\",\n\"lg\": \"cover\",\n\"xl\": \"auto\"\n}\n```\n\n- auto\n- contain\n- cover",
|
|
3033
|
+
"values": [
|
|
2811
3034
|
{
|
|
2812
|
-
"name": "
|
|
3035
|
+
"name": "auto"
|
|
2813
3036
|
},
|
|
2814
3037
|
{
|
|
2815
|
-
"name": "
|
|
3038
|
+
"name": "contain"
|
|
2816
3039
|
},
|
|
2817
3040
|
{
|
|
2818
|
-
"name": "
|
|
3041
|
+
"name": "cover"
|
|
2819
3042
|
}
|
|
2820
3043
|
]
|
|
2821
3044
|
},
|
|
2822
3045
|
{
|
|
2823
|
-
"name": "
|
|
2824
|
-
"description": "The
|
|
3046
|
+
"name": "display",
|
|
3047
|
+
"description": "The **`display`** CSS property sets whether an element is treated as a block or inline element and the layout used for its children, such as flow layout, grid or flex.\n\n\n**Initial value**: `inline`\n\nThis property supports responsive values. You can pass a single value like `\"block\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"block\",\n\"md\": \"contents\",\n\"lg\": \"flex\",\n\"xl\": \"flow\"\n}\n```\n\n- block\n- contents\n- flex\n- flow\n- flow-root\n- grid\n- inline\n- inline-block\n- inline-flex\n- inline-grid\n- inline-list-item\n- inline-table\n- list-item\n- none\n- ruby\n- ruby-base\n- ruby-base-container\n- ruby-text\n- ruby-text-container\n- run-in\n- table\n- table-caption\n- table-cell\n- table-column\n- table-column-group\n- table-footer-group\n- table-header-group\n- table-row\n- table-row-group",
|
|
2825
3048
|
"values": [
|
|
2826
3049
|
{
|
|
2827
|
-
"name": "
|
|
3050
|
+
"name": "block"
|
|
2828
3051
|
},
|
|
2829
3052
|
{
|
|
2830
|
-
"name": "
|
|
3053
|
+
"name": "contents"
|
|
2831
3054
|
},
|
|
2832
3055
|
{
|
|
2833
|
-
"name": "
|
|
3056
|
+
"name": "flex"
|
|
2834
3057
|
},
|
|
2835
3058
|
{
|
|
2836
|
-
"name": "
|
|
3059
|
+
"name": "flow"
|
|
2837
3060
|
},
|
|
2838
3061
|
{
|
|
2839
|
-
"name": "
|
|
3062
|
+
"name": "flow-root"
|
|
2840
3063
|
},
|
|
2841
3064
|
{
|
|
2842
|
-
"name": "
|
|
3065
|
+
"name": "grid"
|
|
2843
3066
|
},
|
|
2844
3067
|
{
|
|
2845
|
-
"name": "
|
|
3068
|
+
"name": "inline"
|
|
2846
3069
|
},
|
|
2847
3070
|
{
|
|
2848
|
-
"name": "
|
|
3071
|
+
"name": "inline-block"
|
|
2849
3072
|
},
|
|
2850
3073
|
{
|
|
2851
|
-
"name": "
|
|
3074
|
+
"name": "inline-flex"
|
|
2852
3075
|
},
|
|
2853
3076
|
{
|
|
2854
|
-
"name": "
|
|
3077
|
+
"name": "inline-grid"
|
|
2855
3078
|
},
|
|
2856
3079
|
{
|
|
2857
|
-
"name": "
|
|
3080
|
+
"name": "inline-list-item"
|
|
2858
3081
|
},
|
|
2859
3082
|
{
|
|
2860
|
-
"name": "
|
|
3083
|
+
"name": "inline-table"
|
|
2861
3084
|
},
|
|
2862
3085
|
{
|
|
2863
|
-
"name": "
|
|
3086
|
+
"name": "list-item"
|
|
2864
3087
|
},
|
|
2865
3088
|
{
|
|
2866
|
-
"name": "
|
|
3089
|
+
"name": "none"
|
|
2867
3090
|
},
|
|
2868
3091
|
{
|
|
2869
|
-
"name": "
|
|
3092
|
+
"name": "ruby"
|
|
2870
3093
|
},
|
|
2871
3094
|
{
|
|
2872
|
-
"name": "
|
|
2873
|
-
}
|
|
2874
|
-
]
|
|
2875
|
-
},
|
|
2876
|
-
{
|
|
2877
|
-
"name": "pointer-events",
|
|
2878
|
-
"description": "The **`pointer-events`** CSS property sets under what circumstances (if any) a particular graphic element can become the target of pointer events.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"all\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"all\",\n\"md\": \"auto\",\n\"lg\": \"fill\",\n\"xl\": \"inherit\"\n}\n```\n\n- all\n- auto\n- fill\n- inherit\n- none\n- painted\n- stroke\n- visible\n- visibleFill\n- visiblePainted\n- visibleStroke",
|
|
2879
|
-
"values": [
|
|
3095
|
+
"name": "ruby-base"
|
|
3096
|
+
},
|
|
2880
3097
|
{
|
|
2881
|
-
"name": "
|
|
3098
|
+
"name": "ruby-base-container"
|
|
2882
3099
|
},
|
|
2883
3100
|
{
|
|
2884
|
-
"name": "
|
|
3101
|
+
"name": "ruby-text"
|
|
2885
3102
|
},
|
|
2886
3103
|
{
|
|
2887
|
-
"name": "
|
|
3104
|
+
"name": "ruby-text-container"
|
|
2888
3105
|
},
|
|
2889
3106
|
{
|
|
2890
|
-
"name": "
|
|
3107
|
+
"name": "run-in"
|
|
2891
3108
|
},
|
|
2892
3109
|
{
|
|
2893
|
-
"name": "
|
|
3110
|
+
"name": "table"
|
|
2894
3111
|
},
|
|
2895
3112
|
{
|
|
2896
|
-
"name": "
|
|
3113
|
+
"name": "table-caption"
|
|
2897
3114
|
},
|
|
2898
3115
|
{
|
|
2899
|
-
"name": "
|
|
3116
|
+
"name": "table-cell"
|
|
2900
3117
|
},
|
|
2901
3118
|
{
|
|
2902
|
-
"name": "
|
|
3119
|
+
"name": "table-column"
|
|
2903
3120
|
},
|
|
2904
3121
|
{
|
|
2905
|
-
"name": "
|
|
3122
|
+
"name": "table-column-group"
|
|
2906
3123
|
},
|
|
2907
3124
|
{
|
|
2908
|
-
"name": "
|
|
3125
|
+
"name": "table-footer-group"
|
|
2909
3126
|
},
|
|
2910
3127
|
{
|
|
2911
|
-
"name": "
|
|
3128
|
+
"name": "table-header-group"
|
|
3129
|
+
},
|
|
3130
|
+
{
|
|
3131
|
+
"name": "table-row"
|
|
3132
|
+
},
|
|
3133
|
+
{
|
|
3134
|
+
"name": "table-row-group"
|
|
2912
3135
|
}
|
|
2913
3136
|
]
|
|
2914
3137
|
},
|
|
2915
3138
|
{
|
|
2916
|
-
"name": "
|
|
2917
|
-
"description": "The **`
|
|
3139
|
+
"name": "flex-direction",
|
|
3140
|
+
"description": "The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).\n\n\n**Initial value**: `row`\n\nThis property supports responsive values. You can pass a single value like `\"column\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"column\",\n\"md\": \"column-reverse\",\n\"lg\": \"row\",\n\"xl\": \"row-reverse\"\n}\n```\n\n- column\n- column-reverse\n- row\n- row-reverse",
|
|
2918
3141
|
"values": [
|
|
2919
3142
|
{
|
|
2920
|
-
"name": "
|
|
2921
|
-
},
|
|
2922
|
-
{
|
|
2923
|
-
"name": "fixed"
|
|
3143
|
+
"name": "column"
|
|
2924
3144
|
},
|
|
2925
3145
|
{
|
|
2926
|
-
"name": "
|
|
3146
|
+
"name": "column-reverse"
|
|
2927
3147
|
},
|
|
2928
3148
|
{
|
|
2929
|
-
"name": "
|
|
3149
|
+
"name": "row"
|
|
2930
3150
|
},
|
|
2931
3151
|
{
|
|
2932
|
-
"name": "
|
|
3152
|
+
"name": "row-reverse"
|
|
2933
3153
|
}
|
|
2934
3154
|
]
|
|
2935
3155
|
},
|
|
2936
3156
|
{
|
|
2937
|
-
"name": "
|
|
2938
|
-
"description": "The **`
|
|
2939
|
-
"values": []
|
|
2940
|
-
},
|
|
2941
|
-
{
|
|
2942
|
-
"name": "transition-delay",
|
|
2943
|
-
"description": "The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.\n\n\n**Initial value**: `0s`",
|
|
2944
|
-
"type": "string"
|
|
2945
|
-
},
|
|
2946
|
-
{
|
|
2947
|
-
"name": "transition-property",
|
|
2948
|
-
"description": "The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.\n\n\n**Initial value**: all\n\nThis property supports responsive values. You can pass a single value like `\"all\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"all\",\n\"md\": \"none\",\n\"lg\": \"all\",\n\"xl\": \"none\"\n}\n```\n\n- all\n- none",
|
|
3157
|
+
"name": "flex-wrap",
|
|
3158
|
+
"description": "The **`flex-wrap`** CSS property sets whether flex items are forced onto one line or can wrap onto multiple lines. If wrapping is allowed, it sets the direction that lines are stacked.\n\n\n**Initial value**: `nowrap`\n\nThis property supports responsive values. You can pass a single value like `\"nowrap\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"nowrap\",\n\"md\": \"wrap\",\n\"lg\": \"wrap-reverse\",\n\"xl\": \"nowrap\"\n}\n```\n\n- nowrap\n- wrap\n- wrap-reverse",
|
|
2949
3159
|
"values": [
|
|
2950
3160
|
{
|
|
2951
|
-
"name": "
|
|
3161
|
+
"name": "nowrap"
|
|
2952
3162
|
},
|
|
2953
3163
|
{
|
|
2954
|
-
"name": "
|
|
3164
|
+
"name": "wrap"
|
|
3165
|
+
},
|
|
3166
|
+
{
|
|
3167
|
+
"name": "wrap-reverse"
|
|
2955
3168
|
}
|
|
2956
3169
|
]
|
|
2957
3170
|
},
|
|
2958
3171
|
{
|
|
2959
|
-
"name": "
|
|
2960
|
-
"description": "The **`
|
|
3172
|
+
"name": "flex-basis",
|
|
3173
|
+
"description": "The **`flex-basis`** CSS property sets the initial main size of a flex item. It sets the size of the content box unless otherwise set with `box-sizing`.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"content\",\n\"lg\": \"fit-content\",\n\"xl\": \"max-content\"\n}\n```\n\n- auto\n- content\n- fit-content\n- max-content\n- min-content\n- stretch",
|
|
2961
3174
|
"values": [
|
|
2962
3175
|
{
|
|
2963
|
-
"name": "
|
|
2964
|
-
},
|
|
2965
|
-
{
|
|
2966
|
-
"name": "ease-in"
|
|
3176
|
+
"name": "auto"
|
|
2967
3177
|
},
|
|
2968
3178
|
{
|
|
2969
|
-
"name": "
|
|
3179
|
+
"name": "content"
|
|
2970
3180
|
},
|
|
2971
3181
|
{
|
|
2972
|
-
"name": "
|
|
3182
|
+
"name": "fit-content"
|
|
2973
3183
|
},
|
|
2974
3184
|
{
|
|
2975
|
-
"name": "
|
|
3185
|
+
"name": "max-content"
|
|
2976
3186
|
},
|
|
2977
3187
|
{
|
|
2978
|
-
"name": "
|
|
3188
|
+
"name": "min-content"
|
|
2979
3189
|
},
|
|
2980
3190
|
{
|
|
2981
|
-
"name": "
|
|
3191
|
+
"name": "stretch"
|
|
2982
3192
|
}
|
|
2983
3193
|
]
|
|
2984
3194
|
},
|
|
2985
3195
|
{
|
|
2986
|
-
"name": "
|
|
2987
|
-
"description": "The
|
|
3196
|
+
"name": "flex-flow",
|
|
3197
|
+
"description": "The **`flex-flow`** CSS shorthand property specifies the direction of a flex container, as well as its wrapping behavior.\n\nThis property supports responsive values. You can pass a single value like `\"column\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"column\",\n\"md\": \"column-reverse\",\n\"lg\": \"nowrap\",\n\"xl\": \"row\"\n}\n```\n\n- column\n- column-reverse\n- nowrap\n- row\n- row-reverse\n- wrap\n- wrap-reverse",
|
|
2988
3198
|
"values": [
|
|
2989
3199
|
{
|
|
2990
|
-
"name": "
|
|
2991
|
-
},
|
|
2992
|
-
{
|
|
2993
|
-
"name": "$200"
|
|
2994
|
-
},
|
|
2995
|
-
{
|
|
2996
|
-
"name": "$300"
|
|
3200
|
+
"name": "column"
|
|
2997
3201
|
},
|
|
2998
3202
|
{
|
|
2999
|
-
"name": "
|
|
3203
|
+
"name": "column-reverse"
|
|
3000
3204
|
},
|
|
3001
3205
|
{
|
|
3002
|
-
"name": "
|
|
3206
|
+
"name": "nowrap"
|
|
3003
3207
|
},
|
|
3004
3208
|
{
|
|
3005
|
-
"name": "
|
|
3209
|
+
"name": "row"
|
|
3006
3210
|
},
|
|
3007
3211
|
{
|
|
3008
|
-
"name": "
|
|
3212
|
+
"name": "row-reverse"
|
|
3009
3213
|
},
|
|
3010
3214
|
{
|
|
3011
|
-
"name": "
|
|
3215
|
+
"name": "wrap"
|
|
3012
3216
|
},
|
|
3013
3217
|
{
|
|
3014
|
-
"name": "
|
|
3218
|
+
"name": "wrap-reverse"
|
|
3015
3219
|
}
|
|
3016
3220
|
]
|
|
3017
3221
|
},
|
|
3018
3222
|
{
|
|
3019
|
-
"name": "
|
|
3020
|
-
"description": "The **`
|
|
3223
|
+
"name": "justify-content",
|
|
3224
|
+
"description": "The CSS **`justify-content`** property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container.\n\n\n**Initial value**: `normal`\n\nThis property supports responsive values. You can pass a single value like `\"center\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"center\",\n\"md\": \"end\",\n\"lg\": \"flex-end\",\n\"xl\": \"flex-start\"\n}\n```\n\n- center\n- end\n- flex-end\n- flex-start\n- left\n- normal\n- right\n- space-around\n- space-between\n- space-evenly\n- start\n- stretch",
|
|
3021
3225
|
"values": [
|
|
3022
|
-
{
|
|
3023
|
-
"name": "bottom"
|
|
3024
|
-
},
|
|
3025
3226
|
{
|
|
3026
3227
|
"name": "center"
|
|
3027
3228
|
},
|
|
3028
3229
|
{
|
|
3029
|
-
"name": "
|
|
3030
|
-
},
|
|
3031
|
-
{
|
|
3032
|
-
"name": "right"
|
|
3033
|
-
},
|
|
3034
|
-
{
|
|
3035
|
-
"name": "top"
|
|
3036
|
-
}
|
|
3037
|
-
]
|
|
3038
|
-
},
|
|
3039
|
-
{
|
|
3040
|
-
"name": "border-color",
|
|
3041
|
-
"description": "The borderColor property sets the color of the box's four borders.\n\nThis property supports responsive values. You can pass a single value like `\"$brand\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$brand\",\n\"md\": \"$brand-alt\",\n\"lg\": \"$disabled\",\n\"xl\": \"$divider\"\n}\n```\n\n- $brand\n- $brand-alt\n- $disabled\n- $divider\n- $error\n- $info\n- $invert\n- $invert-disabled\n- $primary\n- $secondary\n- $subdued\n- $success\n- $transparent\n- $warning",
|
|
3042
|
-
"values": [
|
|
3043
|
-
{
|
|
3044
|
-
"name": "$brand"
|
|
3045
|
-
},
|
|
3046
|
-
{
|
|
3047
|
-
"name": "$brand-alt"
|
|
3048
|
-
},
|
|
3049
|
-
{
|
|
3050
|
-
"name": "$disabled"
|
|
3051
|
-
},
|
|
3052
|
-
{
|
|
3053
|
-
"name": "$divider"
|
|
3230
|
+
"name": "end"
|
|
3054
3231
|
},
|
|
3055
3232
|
{
|
|
3056
|
-
"name": "
|
|
3233
|
+
"name": "flex-end"
|
|
3057
3234
|
},
|
|
3058
3235
|
{
|
|
3059
|
-
"name": "
|
|
3236
|
+
"name": "flex-start"
|
|
3060
3237
|
},
|
|
3061
3238
|
{
|
|
3062
|
-
"name": "
|
|
3239
|
+
"name": "left"
|
|
3063
3240
|
},
|
|
3064
3241
|
{
|
|
3065
|
-
"name": "
|
|
3242
|
+
"name": "normal"
|
|
3066
3243
|
},
|
|
3067
3244
|
{
|
|
3068
|
-
"name": "
|
|
3245
|
+
"name": "right"
|
|
3069
3246
|
},
|
|
3070
3247
|
{
|
|
3071
|
-
"name": "
|
|
3248
|
+
"name": "space-around"
|
|
3072
3249
|
},
|
|
3073
3250
|
{
|
|
3074
|
-
"name": "
|
|
3251
|
+
"name": "space-between"
|
|
3075
3252
|
},
|
|
3076
3253
|
{
|
|
3077
|
-
"name": "
|
|
3254
|
+
"name": "space-evenly"
|
|
3078
3255
|
},
|
|
3079
3256
|
{
|
|
3080
|
-
"name": "
|
|
3257
|
+
"name": "start"
|
|
3081
3258
|
},
|
|
3082
3259
|
{
|
|
3083
|
-
"name": "
|
|
3260
|
+
"name": "stretch"
|
|
3084
3261
|
}
|
|
3085
3262
|
]
|
|
3086
3263
|
},
|
|
3087
3264
|
{
|
|
3088
|
-
"name": "
|
|
3089
|
-
"description": "The
|
|
3265
|
+
"name": "justify-items",
|
|
3266
|
+
"description": "The CSS **`justify-items`** property defines the default `justify-self` for all items of the box, giving them all a default way of justifying each box along the appropriate axis.\n\n\n**Initial value**: `legacy`\n\nThis property supports responsive values. You can pass a single value like `\"baseline\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"baseline\",\n\"md\": \"center\",\n\"lg\": \"end\",\n\"xl\": \"flex-end\"\n}\n```\n\n- baseline\n- center\n- end\n- flex-end\n- flex-start\n- left\n- legacy\n- normal\n- right\n- self-end\n- self-start\n- start\n- stretch",
|
|
3090
3267
|
"values": [
|
|
3091
3268
|
{
|
|
3092
|
-
"name": "
|
|
3269
|
+
"name": "baseline"
|
|
3093
3270
|
},
|
|
3094
3271
|
{
|
|
3095
|
-
"name": "
|
|
3272
|
+
"name": "center"
|
|
3096
3273
|
},
|
|
3097
3274
|
{
|
|
3098
|
-
"name": "
|
|
3275
|
+
"name": "end"
|
|
3099
3276
|
},
|
|
3100
3277
|
{
|
|
3101
|
-
"name": "
|
|
3278
|
+
"name": "flex-end"
|
|
3102
3279
|
},
|
|
3103
3280
|
{
|
|
3104
|
-
"name": "
|
|
3281
|
+
"name": "flex-start"
|
|
3105
3282
|
},
|
|
3106
3283
|
{
|
|
3107
|
-
"name": "
|
|
3284
|
+
"name": "left"
|
|
3108
3285
|
},
|
|
3109
3286
|
{
|
|
3110
|
-
"name": "
|
|
3287
|
+
"name": "legacy"
|
|
3111
3288
|
},
|
|
3112
3289
|
{
|
|
3113
|
-
"name": "
|
|
3290
|
+
"name": "normal"
|
|
3114
3291
|
},
|
|
3115
3292
|
{
|
|
3116
|
-
"name": "
|
|
3293
|
+
"name": "right"
|
|
3117
3294
|
},
|
|
3118
3295
|
{
|
|
3119
|
-
"name": "
|
|
3296
|
+
"name": "self-end"
|
|
3120
3297
|
},
|
|
3121
3298
|
{
|
|
3122
|
-
"name": "
|
|
3299
|
+
"name": "self-start"
|
|
3300
|
+
},
|
|
3301
|
+
{
|
|
3302
|
+
"name": "start"
|
|
3303
|
+
},
|
|
3304
|
+
{
|
|
3305
|
+
"name": "stretch"
|
|
3123
3306
|
}
|
|
3124
3307
|
]
|
|
3125
3308
|
},
|
|
3126
3309
|
{
|
|
3127
|
-
"name": "
|
|
3128
|
-
"description": "The **`
|
|
3310
|
+
"name": "align-content",
|
|
3311
|
+
"description": "The CSS **`align-content`** property sets the distribution of space between and around content items along a flexbox's cross-axis or a grid's block axis.\n\n\n**Initial value**: `normal`\n\nThis property supports responsive values. You can pass a single value like `\"baseline\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"baseline\",\n\"md\": \"center\",\n\"lg\": \"end\",\n\"xl\": \"flex-end\"\n}\n```\n\n- baseline\n- center\n- end\n- flex-end\n- flex-start\n- normal\n- space-around\n- space-between\n- space-evenly\n- start\n- stretch",
|
|
3129
3312
|
"values": [
|
|
3130
3313
|
{
|
|
3131
|
-
"name": "
|
|
3314
|
+
"name": "baseline"
|
|
3315
|
+
},
|
|
3316
|
+
{
|
|
3317
|
+
"name": "center"
|
|
3132
3318
|
},
|
|
3133
3319
|
{
|
|
3134
|
-
"name": "
|
|
3320
|
+
"name": "end"
|
|
3135
3321
|
},
|
|
3136
3322
|
{
|
|
3137
|
-
"name": "
|
|
3323
|
+
"name": "flex-end"
|
|
3138
3324
|
},
|
|
3139
3325
|
{
|
|
3140
|
-
"name": "
|
|
3326
|
+
"name": "flex-start"
|
|
3141
3327
|
},
|
|
3142
3328
|
{
|
|
3143
|
-
"name": "
|
|
3329
|
+
"name": "normal"
|
|
3144
3330
|
},
|
|
3145
3331
|
{
|
|
3146
|
-
"name": "
|
|
3332
|
+
"name": "space-around"
|
|
3147
3333
|
},
|
|
3148
3334
|
{
|
|
3149
|
-
"name": "
|
|
3335
|
+
"name": "space-between"
|
|
3150
3336
|
},
|
|
3151
3337
|
{
|
|
3152
|
-
"name": "
|
|
3338
|
+
"name": "space-evenly"
|
|
3153
3339
|
},
|
|
3154
3340
|
{
|
|
3155
|
-
"name": "
|
|
3341
|
+
"name": "start"
|
|
3156
3342
|
},
|
|
3157
3343
|
{
|
|
3158
|
-
"name": "
|
|
3344
|
+
"name": "stretch"
|
|
3159
3345
|
}
|
|
3160
3346
|
]
|
|
3161
3347
|
},
|
|
3162
3348
|
{
|
|
3163
|
-
"name": "
|
|
3164
|
-
"description": "The
|
|
3349
|
+
"name": "align-items",
|
|
3350
|
+
"description": "The CSS **`align-items`** property sets the `align-self` value on all direct children as a group. In Flexbox, it controls the alignment of items on the Cross Axis. In Grid Layout, it controls the alignment of items on the Block Axis within their grid area.\n\n\n**Initial value**: `normal`\n\nThis property supports responsive values. You can pass a single value like `\"baseline\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"baseline\",\n\"md\": \"center\",\n\"lg\": \"end\",\n\"xl\": \"flex-end\"\n}\n```\n\n- baseline\n- center\n- end\n- flex-end\n- flex-start\n- normal\n- self-end\n- self-start\n- start\n- stretch",
|
|
3165
3351
|
"values": [
|
|
3166
3352
|
{
|
|
3167
|
-
"name": "
|
|
3168
|
-
},
|
|
3169
|
-
{
|
|
3170
|
-
"name": "$2"
|
|
3171
|
-
},
|
|
3172
|
-
{
|
|
3173
|
-
"name": "$3"
|
|
3353
|
+
"name": "baseline"
|
|
3174
3354
|
},
|
|
3175
3355
|
{
|
|
3176
|
-
"name": "
|
|
3356
|
+
"name": "center"
|
|
3177
3357
|
},
|
|
3178
3358
|
{
|
|
3179
|
-
"name": "
|
|
3359
|
+
"name": "end"
|
|
3180
3360
|
},
|
|
3181
3361
|
{
|
|
3182
|
-
"name": "
|
|
3183
|
-
}
|
|
3184
|
-
]
|
|
3185
|
-
},
|
|
3186
|
-
{
|
|
3187
|
-
"name": "flex",
|
|
3188
|
-
"description": "The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"content\",\n\"lg\": \"fit-content\",\n\"xl\": \"max-content\"\n}\n```\n\n- auto\n- content\n- fit-content\n- max-content\n- min-content\n- none\n- stretch",
|
|
3189
|
-
"values": [
|
|
3190
|
-
{
|
|
3191
|
-
"name": "auto"
|
|
3362
|
+
"name": "flex-end"
|
|
3192
3363
|
},
|
|
3193
3364
|
{
|
|
3194
|
-
"name": "
|
|
3365
|
+
"name": "flex-start"
|
|
3195
3366
|
},
|
|
3196
3367
|
{
|
|
3197
|
-
"name": "
|
|
3368
|
+
"name": "normal"
|
|
3198
3369
|
},
|
|
3199
3370
|
{
|
|
3200
|
-
"name": "
|
|
3371
|
+
"name": "self-end"
|
|
3201
3372
|
},
|
|
3202
3373
|
{
|
|
3203
|
-
"name": "
|
|
3374
|
+
"name": "self-start"
|
|
3204
3375
|
},
|
|
3205
3376
|
{
|
|
3206
|
-
"name": "
|
|
3377
|
+
"name": "start"
|
|
3207
3378
|
},
|
|
3208
3379
|
{
|
|
3209
3380
|
"name": "stretch"
|
|
@@ -3211,364 +3382,436 @@
|
|
|
3211
3382
|
]
|
|
3212
3383
|
},
|
|
3213
3384
|
{
|
|
3214
|
-
"name": "
|
|
3215
|
-
"description": "The **`
|
|
3385
|
+
"name": "align-self",
|
|
3386
|
+
"description": "The **`align-self`** CSS property overrides a grid or flex item's `align-items` value. In Grid, it aligns the item inside the grid area. In Flexbox, it aligns the item on the cross axis.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"baseline\",\n\"lg\": \"center\",\n\"xl\": \"end\"\n}\n```\n\n- auto\n- baseline\n- center\n- end\n- flex-end\n- flex-start\n- normal\n- self-end\n- self-start\n- start\n- stretch",
|
|
3216
3387
|
"values": [
|
|
3217
3388
|
{
|
|
3218
|
-
"name": "
|
|
3389
|
+
"name": "auto"
|
|
3219
3390
|
},
|
|
3220
3391
|
{
|
|
3221
|
-
"name": "
|
|
3392
|
+
"name": "baseline"
|
|
3222
3393
|
},
|
|
3223
3394
|
{
|
|
3224
|
-
"name": "
|
|
3395
|
+
"name": "center"
|
|
3225
3396
|
},
|
|
3226
3397
|
{
|
|
3227
|
-
"name": "
|
|
3398
|
+
"name": "end"
|
|
3228
3399
|
},
|
|
3229
3400
|
{
|
|
3230
|
-
"name": "
|
|
3401
|
+
"name": "flex-end"
|
|
3231
3402
|
},
|
|
3232
3403
|
{
|
|
3233
|
-
"name": "
|
|
3404
|
+
"name": "flex-start"
|
|
3234
3405
|
},
|
|
3235
3406
|
{
|
|
3236
|
-
"name": "
|
|
3237
|
-
}
|
|
3238
|
-
]
|
|
3239
|
-
},
|
|
3240
|
-
{
|
|
3241
|
-
"name": "gap",
|
|
3242
|
-
"description": "The gap property sets the gaps between rows and columns. It is a shorthand for rowGap and columnGap.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$3xl\",\n\"xl\": \"$3xs\"\n}\n```\n\n- $2xl\n- $2xs\n- $3xl\n- $3xs\n- $4xl\n- $4xs\n- $5xl\n- $6xl\n- $7xl\n- $8xl\n- $lg\n- $md\n- $none\n- $s\n- $xl\n- $xs",
|
|
3243
|
-
"values": [
|
|
3244
|
-
{
|
|
3245
|
-
"name": "$2xl"
|
|
3407
|
+
"name": "normal"
|
|
3246
3408
|
},
|
|
3247
3409
|
{
|
|
3248
|
-
"name": "
|
|
3410
|
+
"name": "self-end"
|
|
3249
3411
|
},
|
|
3250
3412
|
{
|
|
3251
|
-
"name": "
|
|
3413
|
+
"name": "self-start"
|
|
3252
3414
|
},
|
|
3253
3415
|
{
|
|
3254
|
-
"name": "
|
|
3416
|
+
"name": "start"
|
|
3255
3417
|
},
|
|
3256
3418
|
{
|
|
3257
|
-
"name": "
|
|
3258
|
-
}
|
|
3419
|
+
"name": "stretch"
|
|
3420
|
+
}
|
|
3421
|
+
]
|
|
3422
|
+
},
|
|
3423
|
+
{
|
|
3424
|
+
"name": "pointer-events",
|
|
3425
|
+
"description": "The **`pointer-events`** CSS property sets under what circumstances (if any) a particular graphic element can become the target of pointer events.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"all\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"all\",\n\"md\": \"auto\",\n\"lg\": \"fill\",\n\"xl\": \"inherit\"\n}\n```\n\n- all\n- auto\n- fill\n- inherit\n- none\n- painted\n- stroke\n- visible\n- visibleFill\n- visiblePainted\n- visibleStroke",
|
|
3426
|
+
"values": [
|
|
3259
3427
|
{
|
|
3260
|
-
"name": "
|
|
3428
|
+
"name": "all"
|
|
3261
3429
|
},
|
|
3262
3430
|
{
|
|
3263
|
-
"name": "
|
|
3431
|
+
"name": "auto"
|
|
3264
3432
|
},
|
|
3265
3433
|
{
|
|
3266
|
-
"name": "
|
|
3434
|
+
"name": "fill"
|
|
3267
3435
|
},
|
|
3268
3436
|
{
|
|
3269
|
-
"name": "
|
|
3437
|
+
"name": "inherit"
|
|
3270
3438
|
},
|
|
3271
3439
|
{
|
|
3272
|
-
"name": "
|
|
3440
|
+
"name": "none"
|
|
3273
3441
|
},
|
|
3274
3442
|
{
|
|
3275
|
-
"name": "
|
|
3443
|
+
"name": "painted"
|
|
3276
3444
|
},
|
|
3277
3445
|
{
|
|
3278
|
-
"name": "
|
|
3446
|
+
"name": "stroke"
|
|
3279
3447
|
},
|
|
3280
3448
|
{
|
|
3281
|
-
"name": "
|
|
3449
|
+
"name": "visible"
|
|
3282
3450
|
},
|
|
3283
3451
|
{
|
|
3284
|
-
"name": "
|
|
3452
|
+
"name": "visibleFill"
|
|
3285
3453
|
},
|
|
3286
3454
|
{
|
|
3287
|
-
"name": "
|
|
3455
|
+
"name": "visiblePainted"
|
|
3288
3456
|
},
|
|
3289
3457
|
{
|
|
3290
|
-
"name": "
|
|
3458
|
+
"name": "visibleStroke"
|
|
3291
3459
|
}
|
|
3292
3460
|
]
|
|
3293
3461
|
},
|
|
3294
3462
|
{
|
|
3295
|
-
"name": "
|
|
3296
|
-
"description": "The **`
|
|
3297
|
-
"values": []
|
|
3298
|
-
},
|
|
3299
|
-
{
|
|
3300
|
-
"name": "margin",
|
|
3301
|
-
"description": "The margin shorthand property sets the margin area on all four sides of an box.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$3xl\",\n\"xl\": \"$3xs\"\n}\n```\n\n- $2xl\n- $2xs\n- $3xl\n- $3xs\n- $4xl\n- $4xs\n- $5xl\n- $6xl\n- $7xl\n- $8xl\n- $auto\n- $lg\n- $md\n- $none\n- $s\n- $xl\n- $xs",
|
|
3463
|
+
"name": "position",
|
|
3464
|
+
"description": "The **`position`** CSS property sets how an element is positioned in a document. The `top`, `right`, `bottom`, and `left` properties determine the final location of positioned elements.\n\n\n**Initial value**: `static`\n\nThis property supports responsive values. You can pass a single value like `\"absolute\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"absolute\",\n\"md\": \"fixed\",\n\"lg\": \"relative\",\n\"xl\": \"static\"\n}\n```\n\n- absolute\n- fixed\n- relative\n- static\n- sticky",
|
|
3302
3465
|
"values": [
|
|
3303
3466
|
{
|
|
3304
|
-
"name": "
|
|
3467
|
+
"name": "absolute"
|
|
3305
3468
|
},
|
|
3306
3469
|
{
|
|
3307
|
-
"name": "
|
|
3470
|
+
"name": "fixed"
|
|
3308
3471
|
},
|
|
3309
3472
|
{
|
|
3310
|
-
"name": "
|
|
3473
|
+
"name": "relative"
|
|
3311
3474
|
},
|
|
3312
3475
|
{
|
|
3313
|
-
"name": "
|
|
3476
|
+
"name": "static"
|
|
3314
3477
|
},
|
|
3315
3478
|
{
|
|
3316
|
-
"name": "
|
|
3317
|
-
}
|
|
3479
|
+
"name": "sticky"
|
|
3480
|
+
}
|
|
3481
|
+
]
|
|
3482
|
+
},
|
|
3483
|
+
{
|
|
3484
|
+
"name": "border-style",
|
|
3485
|
+
"description": "The **`border-style`** shorthand CSS property sets the line style for all four sides of an element's border.\n\nThis property supports responsive values. You can pass a single value like `\"dashed\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"dashed\",\n\"md\": \"dotted\",\n\"lg\": \"double\",\n\"xl\": \"groove\"\n}\n```\n\n- dashed\n- dotted\n- double\n- groove\n- hidden\n- inset\n- none\n- outset\n- ridge\n- solid",
|
|
3486
|
+
"values": [
|
|
3318
3487
|
{
|
|
3319
|
-
"name": "
|
|
3488
|
+
"name": "dashed"
|
|
3320
3489
|
},
|
|
3321
3490
|
{
|
|
3322
|
-
"name": "
|
|
3491
|
+
"name": "dotted"
|
|
3323
3492
|
},
|
|
3324
3493
|
{
|
|
3325
|
-
"name": "
|
|
3494
|
+
"name": "double"
|
|
3326
3495
|
},
|
|
3327
3496
|
{
|
|
3328
|
-
"name": "
|
|
3497
|
+
"name": "groove"
|
|
3329
3498
|
},
|
|
3330
3499
|
{
|
|
3331
|
-
"name": "
|
|
3500
|
+
"name": "hidden"
|
|
3332
3501
|
},
|
|
3333
3502
|
{
|
|
3334
|
-
"name": "
|
|
3503
|
+
"name": "inset"
|
|
3335
3504
|
},
|
|
3336
3505
|
{
|
|
3337
|
-
"name": "
|
|
3506
|
+
"name": "none"
|
|
3338
3507
|
},
|
|
3339
3508
|
{
|
|
3340
|
-
"name": "
|
|
3509
|
+
"name": "outset"
|
|
3341
3510
|
},
|
|
3342
3511
|
{
|
|
3343
|
-
"name": "
|
|
3512
|
+
"name": "ridge"
|
|
3344
3513
|
},
|
|
3345
3514
|
{
|
|
3346
|
-
"name": "
|
|
3347
|
-
}
|
|
3515
|
+
"name": "solid"
|
|
3516
|
+
}
|
|
3517
|
+
]
|
|
3518
|
+
},
|
|
3519
|
+
{
|
|
3520
|
+
"name": "box-sizing",
|
|
3521
|
+
"description": "The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.\n\n\n**Initial value**: `content-box`\n\nThis property supports responsive values. You can pass a single value like `\"border-box\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"border-box\",\n\"md\": \"content-box\",\n\"lg\": \"border-box\",\n\"xl\": \"content-box\"\n}\n```\n\n- border-box\n- content-box",
|
|
3522
|
+
"values": [
|
|
3348
3523
|
{
|
|
3349
|
-
"name": "
|
|
3524
|
+
"name": "border-box"
|
|
3350
3525
|
},
|
|
3351
3526
|
{
|
|
3352
|
-
"name": "
|
|
3527
|
+
"name": "content-box"
|
|
3353
3528
|
}
|
|
3354
3529
|
]
|
|
3355
3530
|
},
|
|
3356
3531
|
{
|
|
3357
|
-
"name": "
|
|
3358
|
-
"description": "The
|
|
3532
|
+
"name": "cursor",
|
|
3533
|
+
"description": "The **`cursor`** CSS property sets the type of mouse cursor, if any, to show when the mouse pointer is over an element.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"alias\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"alias\",\n\"md\": \"all-scroll\",\n\"lg\": \"auto\",\n\"xl\": \"cell\"\n}\n```\n\n- alias\n- all-scroll\n- auto\n- cell\n- col-resize\n- context-menu\n- copy\n- crosshair\n- default\n- e-resize\n- ew-resize\n- grab\n- grabbing\n- help\n- move\n- n-resize\n- ne-resize\n- nesw-resize\n- no-drop\n- none\n- not-allowed\n- ns-resize\n- nw-resize\n- nwse-resize\n- pointer\n- progress\n- row-resize\n- s-resize\n- se-resize\n- sw-resize\n- text\n- vertical-text\n- w-resize\n- wait\n- zoom-in\n- zoom-out",
|
|
3359
3534
|
"values": [
|
|
3360
3535
|
{
|
|
3361
|
-
"name": "
|
|
3536
|
+
"name": "alias"
|
|
3362
3537
|
},
|
|
3363
3538
|
{
|
|
3364
|
-
"name": "
|
|
3539
|
+
"name": "all-scroll"
|
|
3365
3540
|
},
|
|
3366
3541
|
{
|
|
3367
|
-
"name": "
|
|
3542
|
+
"name": "auto"
|
|
3368
3543
|
},
|
|
3369
3544
|
{
|
|
3370
|
-
"name": "
|
|
3545
|
+
"name": "cell"
|
|
3371
3546
|
},
|
|
3372
3547
|
{
|
|
3373
|
-
"name": "
|
|
3548
|
+
"name": "col-resize"
|
|
3374
3549
|
},
|
|
3375
3550
|
{
|
|
3376
|
-
"name": "
|
|
3551
|
+
"name": "context-menu"
|
|
3377
3552
|
},
|
|
3378
3553
|
{
|
|
3379
|
-
"name": "
|
|
3554
|
+
"name": "copy"
|
|
3380
3555
|
},
|
|
3381
3556
|
{
|
|
3382
|
-
"name": "
|
|
3557
|
+
"name": "crosshair"
|
|
3383
3558
|
},
|
|
3384
3559
|
{
|
|
3385
|
-
"name": "
|
|
3560
|
+
"name": "default"
|
|
3386
3561
|
},
|
|
3387
3562
|
{
|
|
3388
|
-
"name": "
|
|
3563
|
+
"name": "e-resize"
|
|
3389
3564
|
},
|
|
3390
3565
|
{
|
|
3391
|
-
"name": "
|
|
3566
|
+
"name": "ew-resize"
|
|
3392
3567
|
},
|
|
3393
3568
|
{
|
|
3394
|
-
"name": "
|
|
3569
|
+
"name": "grab"
|
|
3395
3570
|
},
|
|
3396
3571
|
{
|
|
3397
|
-
"name": "
|
|
3572
|
+
"name": "grabbing"
|
|
3398
3573
|
},
|
|
3399
3574
|
{
|
|
3400
|
-
"name": "
|
|
3575
|
+
"name": "help"
|
|
3401
3576
|
},
|
|
3402
3577
|
{
|
|
3403
|
-
"name": "
|
|
3578
|
+
"name": "move"
|
|
3404
3579
|
},
|
|
3405
3580
|
{
|
|
3406
|
-
"name": "
|
|
3407
|
-
}
|
|
3408
|
-
]
|
|
3409
|
-
},
|
|
3410
|
-
{
|
|
3411
|
-
"name": "fill",
|
|
3412
|
-
"description": "The fill color property is used to set the color of the box.\n\nThis property supports responsive values. You can pass a single value like `\"$background\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$background\",\n\"md\": \"$brand\",\n\"lg\": \"$brand-hover\",\n\"xl\": \"$brand-press\"\n}\n```\n\n- $background\n- $brand\n- $brand-hover\n- $brand-press\n- $brand-subdued\n- $currentColor\n- $disabled\n- $error\n- $error-hover\n- $error-press\n- $error-subdued\n- $hover\n- $info\n- $info-hover\n- $info-press\n- $info-subdued\n- $invert\n- $invert-disabled\n- $invert-hover\n- $invert-press\n- $invert-secondary\n- $overlay\n- $press\n- $primary\n- $secondary\n- $success\n- $success-hover\n- $success-press\n- $success-subdued\n- $transparent\n- $warning\n- $warning-hover\n- $warning-press\n- $warning-subdued",
|
|
3413
|
-
"values": [
|
|
3581
|
+
"name": "n-resize"
|
|
3582
|
+
},
|
|
3414
3583
|
{
|
|
3415
|
-
"name": "
|
|
3584
|
+
"name": "ne-resize"
|
|
3416
3585
|
},
|
|
3417
3586
|
{
|
|
3418
|
-
"name": "
|
|
3587
|
+
"name": "nesw-resize"
|
|
3419
3588
|
},
|
|
3420
3589
|
{
|
|
3421
|
-
"name": "
|
|
3590
|
+
"name": "no-drop"
|
|
3422
3591
|
},
|
|
3423
3592
|
{
|
|
3424
|
-
"name": "
|
|
3593
|
+
"name": "none"
|
|
3425
3594
|
},
|
|
3426
3595
|
{
|
|
3427
|
-
"name": "
|
|
3596
|
+
"name": "not-allowed"
|
|
3428
3597
|
},
|
|
3429
3598
|
{
|
|
3430
|
-
"name": "
|
|
3599
|
+
"name": "ns-resize"
|
|
3431
3600
|
},
|
|
3432
3601
|
{
|
|
3433
|
-
"name": "
|
|
3602
|
+
"name": "nw-resize"
|
|
3434
3603
|
},
|
|
3435
3604
|
{
|
|
3436
|
-
"name": "
|
|
3605
|
+
"name": "nwse-resize"
|
|
3437
3606
|
},
|
|
3438
3607
|
{
|
|
3439
|
-
"name": "
|
|
3608
|
+
"name": "pointer"
|
|
3609
|
+
},
|
|
3610
|
+
{
|
|
3611
|
+
"name": "progress"
|
|
3612
|
+
},
|
|
3613
|
+
{
|
|
3614
|
+
"name": "row-resize"
|
|
3615
|
+
},
|
|
3616
|
+
{
|
|
3617
|
+
"name": "s-resize"
|
|
3618
|
+
},
|
|
3619
|
+
{
|
|
3620
|
+
"name": "se-resize"
|
|
3440
3621
|
},
|
|
3441
3622
|
{
|
|
3442
|
-
"name": "
|
|
3623
|
+
"name": "sw-resize"
|
|
3443
3624
|
},
|
|
3444
3625
|
{
|
|
3445
|
-
"name": "
|
|
3626
|
+
"name": "text"
|
|
3446
3627
|
},
|
|
3447
3628
|
{
|
|
3448
|
-
"name": "
|
|
3629
|
+
"name": "vertical-text"
|
|
3449
3630
|
},
|
|
3450
3631
|
{
|
|
3451
|
-
"name": "
|
|
3632
|
+
"name": "w-resize"
|
|
3452
3633
|
},
|
|
3453
3634
|
{
|
|
3454
|
-
"name": "
|
|
3635
|
+
"name": "wait"
|
|
3455
3636
|
},
|
|
3456
3637
|
{
|
|
3457
|
-
"name": "
|
|
3638
|
+
"name": "zoom-in"
|
|
3458
3639
|
},
|
|
3459
3640
|
{
|
|
3460
|
-
"name": "
|
|
3641
|
+
"name": "zoom-out"
|
|
3642
|
+
}
|
|
3643
|
+
]
|
|
3644
|
+
},
|
|
3645
|
+
{
|
|
3646
|
+
"name": "overflow",
|
|
3647
|
+
"description": "The **`overflow`** CSS shorthand property sets the desired behavior for an element's overflow — i.e. when an element's content is too big to fit in its block formatting context — in both directions.\n\n\n**Initial value**: `visible`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"clip\",\n\"lg\": \"hidden\",\n\"xl\": \"scroll\"\n}\n```\n\n- auto\n- clip\n- hidden\n- scroll\n- visible",
|
|
3648
|
+
"values": [
|
|
3649
|
+
{
|
|
3650
|
+
"name": "auto"
|
|
3461
3651
|
},
|
|
3462
3652
|
{
|
|
3463
|
-
"name": "
|
|
3653
|
+
"name": "clip"
|
|
3464
3654
|
},
|
|
3465
3655
|
{
|
|
3466
|
-
"name": "
|
|
3656
|
+
"name": "hidden"
|
|
3467
3657
|
},
|
|
3468
3658
|
{
|
|
3469
|
-
"name": "
|
|
3659
|
+
"name": "scroll"
|
|
3470
3660
|
},
|
|
3471
3661
|
{
|
|
3472
|
-
"name": "
|
|
3662
|
+
"name": "visible"
|
|
3663
|
+
}
|
|
3664
|
+
]
|
|
3665
|
+
},
|
|
3666
|
+
{
|
|
3667
|
+
"name": "overflow-x",
|
|
3668
|
+
"description": "The **`overflow-x`** CSS property sets what shows when content overflows a block-level element's left and right edges. This may be nothing, a scroll bar, or the overflow content.\n\n\n**Initial value**: `visible`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"clip\",\n\"lg\": \"hidden\",\n\"xl\": \"scroll\"\n}\n```\n\n- auto\n- clip\n- hidden\n- scroll\n- visible",
|
|
3669
|
+
"values": [
|
|
3670
|
+
{
|
|
3671
|
+
"name": "auto"
|
|
3473
3672
|
},
|
|
3474
3673
|
{
|
|
3475
|
-
"name": "
|
|
3674
|
+
"name": "clip"
|
|
3476
3675
|
},
|
|
3477
3676
|
{
|
|
3478
|
-
"name": "
|
|
3677
|
+
"name": "hidden"
|
|
3479
3678
|
},
|
|
3480
3679
|
{
|
|
3481
|
-
"name": "
|
|
3680
|
+
"name": "scroll"
|
|
3482
3681
|
},
|
|
3483
3682
|
{
|
|
3484
|
-
"name": "
|
|
3683
|
+
"name": "visible"
|
|
3684
|
+
}
|
|
3685
|
+
]
|
|
3686
|
+
},
|
|
3687
|
+
{
|
|
3688
|
+
"name": "overflow-y",
|
|
3689
|
+
"description": "The **`overflow-y`** CSS property sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content.\n\n\n**Initial value**: `visible`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"clip\",\n\"lg\": \"hidden\",\n\"xl\": \"scroll\"\n}\n```\n\n- auto\n- clip\n- hidden\n- scroll\n- visible",
|
|
3690
|
+
"values": [
|
|
3691
|
+
{
|
|
3692
|
+
"name": "auto"
|
|
3485
3693
|
},
|
|
3486
3694
|
{
|
|
3487
|
-
"name": "
|
|
3695
|
+
"name": "clip"
|
|
3488
3696
|
},
|
|
3489
3697
|
{
|
|
3490
|
-
"name": "
|
|
3698
|
+
"name": "hidden"
|
|
3491
3699
|
},
|
|
3492
3700
|
{
|
|
3493
|
-
"name": "
|
|
3701
|
+
"name": "scroll"
|
|
3494
3702
|
},
|
|
3495
3703
|
{
|
|
3496
|
-
"name": "
|
|
3704
|
+
"name": "visible"
|
|
3705
|
+
}
|
|
3706
|
+
]
|
|
3707
|
+
},
|
|
3708
|
+
{
|
|
3709
|
+
"name": "transition-timing-function",
|
|
3710
|
+
"description": "The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.\n\n\n**Initial value**: `ease`\n\nThis property supports responsive values. You can pass a single value like `\"ease\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"ease\",\n\"md\": \"ease-in\",\n\"lg\": \"ease-in-out\",\n\"xl\": \"ease-out\"\n}\n```\n\n- ease\n- ease-in\n- ease-in-out\n- ease-out\n- linear\n- step-end\n- step-start",
|
|
3711
|
+
"values": [
|
|
3712
|
+
{
|
|
3713
|
+
"name": "ease"
|
|
3497
3714
|
},
|
|
3498
3715
|
{
|
|
3499
|
-
"name": "
|
|
3716
|
+
"name": "ease-in"
|
|
3500
3717
|
},
|
|
3501
3718
|
{
|
|
3502
|
-
"name": "
|
|
3719
|
+
"name": "ease-in-out"
|
|
3503
3720
|
},
|
|
3504
3721
|
{
|
|
3505
|
-
"name": "
|
|
3722
|
+
"name": "ease-out"
|
|
3506
3723
|
},
|
|
3507
3724
|
{
|
|
3508
|
-
"name": "
|
|
3725
|
+
"name": "linear"
|
|
3509
3726
|
},
|
|
3510
3727
|
{
|
|
3511
|
-
"name": "
|
|
3728
|
+
"name": "step-end"
|
|
3512
3729
|
},
|
|
3513
3730
|
{
|
|
3514
|
-
"name": "
|
|
3731
|
+
"name": "step-start"
|
|
3515
3732
|
}
|
|
3516
3733
|
]
|
|
3517
3734
|
},
|
|
3518
3735
|
{
|
|
3519
|
-
"name": "
|
|
3520
|
-
"description": "The
|
|
3736
|
+
"name": "text-decoration",
|
|
3737
|
+
"description": "The **`text-decoration`** shorthand CSS property sets the appearance of decorative lines on text. It is a shorthand for `text-decoration-line`, `text-decoration-color`, `text-decoration-style`, and the newer `text-decoration-thickness` property.\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"blink\",\n\"lg\": \"dashed\",\n\"xl\": \"dotted\"\n}\n```\n\n- auto\n- blink\n- dashed\n- dotted\n- double\n- from-font\n- grammar-error\n- line-through\n- none\n- overline\n- solid\n- spelling-error\n- underline\n- wavy",
|
|
3521
3738
|
"values": [
|
|
3522
3739
|
{
|
|
3523
|
-
"name": "
|
|
3740
|
+
"name": "auto"
|
|
3524
3741
|
},
|
|
3525
3742
|
{
|
|
3526
|
-
"name": "
|
|
3743
|
+
"name": "blink"
|
|
3527
3744
|
},
|
|
3528
3745
|
{
|
|
3529
|
-
"name": "
|
|
3746
|
+
"name": "dashed"
|
|
3530
3747
|
},
|
|
3531
3748
|
{
|
|
3532
|
-
"name": "
|
|
3749
|
+
"name": "dotted"
|
|
3533
3750
|
},
|
|
3534
3751
|
{
|
|
3535
|
-
"name": "
|
|
3752
|
+
"name": "double"
|
|
3536
3753
|
},
|
|
3537
3754
|
{
|
|
3538
|
-
"name": "
|
|
3755
|
+
"name": "from-font"
|
|
3539
3756
|
},
|
|
3540
3757
|
{
|
|
3541
|
-
"name": "
|
|
3758
|
+
"name": "grammar-error"
|
|
3542
3759
|
},
|
|
3543
3760
|
{
|
|
3544
|
-
"name": "
|
|
3761
|
+
"name": "line-through"
|
|
3545
3762
|
},
|
|
3546
3763
|
{
|
|
3547
|
-
"name": "
|
|
3764
|
+
"name": "none"
|
|
3548
3765
|
},
|
|
3549
3766
|
{
|
|
3550
|
-
"name": "
|
|
3767
|
+
"name": "overline"
|
|
3551
3768
|
},
|
|
3552
3769
|
{
|
|
3553
|
-
"name": "
|
|
3770
|
+
"name": "solid"
|
|
3554
3771
|
},
|
|
3555
3772
|
{
|
|
3556
|
-
"name": "
|
|
3773
|
+
"name": "spelling-error"
|
|
3557
3774
|
},
|
|
3558
3775
|
{
|
|
3559
|
-
"name": "
|
|
3776
|
+
"name": "underline"
|
|
3560
3777
|
},
|
|
3561
3778
|
{
|
|
3562
|
-
"name": "
|
|
3779
|
+
"name": "wavy"
|
|
3780
|
+
}
|
|
3781
|
+
]
|
|
3782
|
+
},
|
|
3783
|
+
{
|
|
3784
|
+
"name": "text-align",
|
|
3785
|
+
"description": "The **`text-align`** CSS property sets the horizontal alignment of a block element or table-cell box. This means it works like `vertical-align` but in the horizontal direction.\n\n\n**Initial value**: `start`, or a nameless value that acts as `left` if _direction_ is `ltr`, `right` if _direction_ is `rtl` if `start` is not supported by the browser.\n\nThis property supports responsive values. You can pass a single value like `\"center\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"center\",\n\"md\": \"end\",\n\"lg\": \"justify\",\n\"xl\": \"left\"\n}\n```\n\n- center\n- end\n- justify\n- left\n- match-parent\n- right\n- start",
|
|
3786
|
+
"values": [
|
|
3787
|
+
{
|
|
3788
|
+
"name": "center"
|
|
3563
3789
|
},
|
|
3564
3790
|
{
|
|
3565
|
-
"name": "
|
|
3791
|
+
"name": "end"
|
|
3566
3792
|
},
|
|
3567
3793
|
{
|
|
3568
|
-
"name": "
|
|
3794
|
+
"name": "justify"
|
|
3795
|
+
},
|
|
3796
|
+
{
|
|
3797
|
+
"name": "left"
|
|
3798
|
+
},
|
|
3799
|
+
{
|
|
3800
|
+
"name": "match-parent"
|
|
3801
|
+
},
|
|
3802
|
+
{
|
|
3803
|
+
"name": "right"
|
|
3804
|
+
},
|
|
3805
|
+
{
|
|
3806
|
+
"name": "start"
|
|
3569
3807
|
}
|
|
3570
3808
|
]
|
|
3571
3809
|
},
|
|
3810
|
+
{
|
|
3811
|
+
"name": "opacity",
|
|
3812
|
+
"description": "The **`opacity`** CSS property sets the opacity of an element. Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency.\n\n\n**Initial value**: `1.0`",
|
|
3813
|
+
"values": []
|
|
3814
|
+
},
|
|
3572
3815
|
{
|
|
3573
3816
|
"name": "border-width-x",
|
|
3574
3817
|
"description": "The borderWidthX shorthand property defines the width of the element's border on the left and right.\n\nThis property supports responsive values. You can pass a single value like `\"$1\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$1\",\n\"md\": \"$2\",\n\"lg\": \"$3\",\n\"xl\": \"$4\"\n}\n```\n\n- $1\n- $2\n- $3\n- $4\n- $5\n- $none",
|
|
@@ -4217,6 +4460,63 @@
|
|
|
4217
4460
|
}
|
|
4218
4461
|
]
|
|
4219
4462
|
},
|
|
4463
|
+
{
|
|
4464
|
+
"name": "m",
|
|
4465
|
+
"description": "The m shorthand property sets the margin area on all four sides of an box.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$3xl\",\n\"xl\": \"$3xs\"\n}\n```\n\n- $2xl\n- $2xs\n- $3xl\n- $3xs\n- $4xl\n- $4xs\n- $5xl\n- $6xl\n- $7xl\n- $8xl\n- $auto\n- $lg\n- $md\n- $none\n- $s\n- $xl\n- $xs",
|
|
4466
|
+
"values": [
|
|
4467
|
+
{
|
|
4468
|
+
"name": "$2xl"
|
|
4469
|
+
},
|
|
4470
|
+
{
|
|
4471
|
+
"name": "$2xs"
|
|
4472
|
+
},
|
|
4473
|
+
{
|
|
4474
|
+
"name": "$3xl"
|
|
4475
|
+
},
|
|
4476
|
+
{
|
|
4477
|
+
"name": "$3xs"
|
|
4478
|
+
},
|
|
4479
|
+
{
|
|
4480
|
+
"name": "$4xl"
|
|
4481
|
+
},
|
|
4482
|
+
{
|
|
4483
|
+
"name": "$4xs"
|
|
4484
|
+
},
|
|
4485
|
+
{
|
|
4486
|
+
"name": "$5xl"
|
|
4487
|
+
},
|
|
4488
|
+
{
|
|
4489
|
+
"name": "$6xl"
|
|
4490
|
+
},
|
|
4491
|
+
{
|
|
4492
|
+
"name": "$7xl"
|
|
4493
|
+
},
|
|
4494
|
+
{
|
|
4495
|
+
"name": "$8xl"
|
|
4496
|
+
},
|
|
4497
|
+
{
|
|
4498
|
+
"name": "$auto"
|
|
4499
|
+
},
|
|
4500
|
+
{
|
|
4501
|
+
"name": "$lg"
|
|
4502
|
+
},
|
|
4503
|
+
{
|
|
4504
|
+
"name": "$md"
|
|
4505
|
+
},
|
|
4506
|
+
{
|
|
4507
|
+
"name": "$none"
|
|
4508
|
+
},
|
|
4509
|
+
{
|
|
4510
|
+
"name": "$s"
|
|
4511
|
+
},
|
|
4512
|
+
{
|
|
4513
|
+
"name": "$xl"
|
|
4514
|
+
},
|
|
4515
|
+
{
|
|
4516
|
+
"name": "$xs"
|
|
4517
|
+
}
|
|
4518
|
+
]
|
|
4519
|
+
},
|
|
4220
4520
|
{
|
|
4221
4521
|
"name": "mr",
|
|
4222
4522
|
"description": "The mr property sets the margin area on the right side of an box.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$3xl\",\n\"xl\": \"$3xs\"\n}\n```\n\n- $2xl\n- $2xs\n- $3xl\n- $3xs\n- $4xl\n- $4xs\n- $5xl\n- $6xl\n- $7xl\n- $8xl\n- $auto\n- $lg\n- $md\n- $none\n- $s\n- $xl\n- $xs",
|
|
@@ -4563,6 +4863,7 @@
|
|
|
4563
4863
|
},
|
|
4564
4864
|
{
|
|
4565
4865
|
"name": "rarui-tabs",
|
|
4866
|
+
"description": "## Rarui Tabs\n---\nThe Tabs are used to switch between different display modes or pages.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/navigation/tabs) for more details.",
|
|
4566
4867
|
"attributes": [
|
|
4567
4868
|
{
|
|
4568
4869
|
"name": "pre-selected-tab",
|
|
@@ -4574,6 +4875,11 @@
|
|
|
4574
4875
|
"description": "Sets the indicated tab as current active tab.\nCan be used to change the active tab from outside of the component",
|
|
4575
4876
|
"type": "number"
|
|
4576
4877
|
},
|
|
4878
|
+
{
|
|
4879
|
+
"name": "underlined",
|
|
4880
|
+
"description": "Determines whether the tabs should have an underline style.",
|
|
4881
|
+
"type": "boolean"
|
|
4882
|
+
},
|
|
4577
4883
|
{
|
|
4578
4884
|
"name": "position",
|
|
4579
4885
|
"description": "Controls where the tab buttons are displayed. This prop accepts one of the following values: \"left\", \"center\", or \"right\".\n\n- center\n- left\n- right",
|
|
@@ -4595,11 +4901,66 @@
|
|
|
4595
4901
|
"name": "full",
|
|
4596
4902
|
"description": "Determines whether the tabs should occupy the full width of their container.",
|
|
4597
4903
|
"type": "boolean"
|
|
4904
|
+
}
|
|
4905
|
+
]
|
|
4906
|
+
},
|
|
4907
|
+
{
|
|
4908
|
+
"name": "rarui-card",
|
|
4909
|
+
"description": "## Rarui Card\n---\nThe Card component contains textual content, images, and actions about a topic.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/surface/card) for more details.",
|
|
4910
|
+
"attributes": [
|
|
4911
|
+
{
|
|
4912
|
+
"name": "padding",
|
|
4913
|
+
"description": "Specifies the padding inside the card.\nThis prop accepts one of the following values: \"none\" or \"base\".\n\n- base\n- none",
|
|
4914
|
+
"type": "string",
|
|
4915
|
+
"values": [
|
|
4916
|
+
{
|
|
4917
|
+
"name": "base",
|
|
4918
|
+
"description": "(default)"
|
|
4919
|
+
},
|
|
4920
|
+
{
|
|
4921
|
+
"name": "none"
|
|
4922
|
+
}
|
|
4923
|
+
]
|
|
4598
4924
|
},
|
|
4599
4925
|
{
|
|
4600
|
-
"name": "
|
|
4601
|
-
"description": "
|
|
4602
|
-
"
|
|
4926
|
+
"name": "background-color",
|
|
4927
|
+
"description": "Specifies the background color of the card.\nThis prop accepts one of the following values: \"$transparent\", \"$background\", \"$primary\", or \"$secondary\"\n\nThis property supports responsive values. You can pass a single value like `\"$background\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$background\",\n\"md\": \"$primary\",\n\"lg\": \"$secondary\",\n\"xl\": \"$transparent\"\n}\n```\n\n- $background\n- $primary\n- $secondary\n- $transparent",
|
|
4928
|
+
"values": [
|
|
4929
|
+
{
|
|
4930
|
+
"name": "$background"
|
|
4931
|
+
},
|
|
4932
|
+
{
|
|
4933
|
+
"name": "$primary",
|
|
4934
|
+
"description": "(default)"
|
|
4935
|
+
},
|
|
4936
|
+
{
|
|
4937
|
+
"name": "$secondary"
|
|
4938
|
+
},
|
|
4939
|
+
{
|
|
4940
|
+
"name": "$transparent"
|
|
4941
|
+
}
|
|
4942
|
+
]
|
|
4943
|
+
}
|
|
4944
|
+
]
|
|
4945
|
+
},
|
|
4946
|
+
{
|
|
4947
|
+
"name": "rarui-card-body",
|
|
4948
|
+
"description": "## Rarui Card Body\n---\nThe Card component contains textual content, images, and actions about a topic.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/surface/card) for more details.",
|
|
4949
|
+
"attributes": []
|
|
4950
|
+
},
|
|
4951
|
+
{
|
|
4952
|
+
"name": "rarui-card-header",
|
|
4953
|
+
"description": "## Rarui Card Header\n---\nThe Card component contains textual content, images, and actions about a topic.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/surface/card) for more details.",
|
|
4954
|
+
"attributes": [
|
|
4955
|
+
{
|
|
4956
|
+
"name": "title",
|
|
4957
|
+
"description": "The title of the card. This is typically displayed prominently in the header section.",
|
|
4958
|
+
"type": "string"
|
|
4959
|
+
},
|
|
4960
|
+
{
|
|
4961
|
+
"name": "description",
|
|
4962
|
+
"description": "The description of the card. This is typically displayed below the title in the header section.",
|
|
4963
|
+
"type": "string"
|
|
4603
4964
|
}
|
|
4604
4965
|
]
|
|
4605
4966
|
}
|