@gem-sdk/styles 2.0.0-dev.895 → 2.0.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.
@@ -955,6 +955,33 @@ declare namespace React {
955
955
  '--hvr-gg-mobile'?: CSSProperties['gridGap'];
956
956
  '--focus-gg-mobile'?: CSSProperties['gridGap'];
957
957
 
958
+ /**
959
+ * **CSS Property**: `grid-row`
960
+ *
961
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row
962
+ */
963
+
964
+ '--gr'?: CSSProperties['gridRow'];
965
+ '--hvr-gr'?: CSSProperties['gridRow'];
966
+ '--focus-gr'?: CSSProperties['gridRow'];
967
+
968
+ /**
969
+ * **CSS Property**: `grid-row`
970
+ *
971
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row
972
+ */
973
+ '--gr-tablet'?: CSSProperties['gridRow'];
974
+ '--hvr-gr-tablet'?: CSSProperties['gridRow'];
975
+ '--focus-gr-tablet'?: CSSProperties['gridRow'];
976
+ /**
977
+ * **CSS Property**: `grid-row`
978
+ *
979
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row
980
+ */
981
+ '--gr-mobile'?: CSSProperties['gridRow'];
982
+ '--hvr-gr-mobile'?: CSSProperties['gridRow'];
983
+ '--focus-gr-mobile'?: CSSProperties['gridRow'];
984
+
958
985
  /**
959
986
  * **CSS Property**: `grid-template-columns`
960
987
  *
@@ -2008,6 +2035,33 @@ declare namespace React {
2008
2035
  '--hvr-v-mobile'?: CSSProperties['visibility'];
2009
2036
  '--focus-v-mobile'?: CSSProperties['visibility'];
2010
2037
 
2038
+ /**
2039
+ * **CSS Property**: `white-space`
2040
+ *
2041
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/white-space
2042
+ */
2043
+
2044
+ '--ws'?: CSSProperties['whiteSpace'];
2045
+ '--hvr-ws'?: CSSProperties['whiteSpace'];
2046
+ '--focus-ws'?: CSSProperties['whiteSpace'];
2047
+
2048
+ /**
2049
+ * **CSS Property**: `white-space`
2050
+ *
2051
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/white-space
2052
+ */
2053
+ '--ws-tablet'?: CSSProperties['whiteSpace'];
2054
+ '--hvr-ws-tablet'?: CSSProperties['whiteSpace'];
2055
+ '--focus-ws-tablet'?: CSSProperties['whiteSpace'];
2056
+ /**
2057
+ * **CSS Property**: `white-space`
2058
+ *
2059
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/white-space
2060
+ */
2061
+ '--ws-mobile'?: CSSProperties['whiteSpace'];
2062
+ '--hvr-ws-mobile'?: CSSProperties['whiteSpace'];
2063
+ '--focus-ws-mobile'?: CSSProperties['whiteSpace'];
2064
+
2011
2065
  /**
2012
2066
  * **CSS Property**: `width`
2013
2067
  *
@@ -2062,6 +2116,33 @@ declare namespace React {
2062
2116
  '--hvr-z-mobile'?: CSSProperties['zIndex'];
2063
2117
  '--focus-z-mobile'?: CSSProperties['zIndex'];
2064
2118
 
2119
+ /**
2120
+ * **CSS Property**: `writing-mode`
2121
+ *
2122
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/writing-mode
2123
+ */
2124
+
2125
+ '--wm'?: CSSProperties['writingMode'];
2126
+ '--hvr-wm'?: CSSProperties['writingMode'];
2127
+ '--focus-wm'?: CSSProperties['writingMode'];
2128
+
2129
+ /**
2130
+ * **CSS Property**: `writing-mode`
2131
+ *
2132
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/writing-mode
2133
+ */
2134
+ '--wm-tablet'?: CSSProperties['writingMode'];
2135
+ '--hvr-wm-tablet'?: CSSProperties['writingMode'];
2136
+ '--focus-wm-tablet'?: CSSProperties['writingMode'];
2137
+ /**
2138
+ * **CSS Property**: `writing-mode`
2139
+ *
2140
+ * **Reference**: https://developer.mozilla.org/en-US/docs/Web/CSS/writing-mode
2141
+ */
2142
+ '--wm-mobile'?: CSSProperties['writingMode'];
2143
+ '--hvr-wm-mobile'?: CSSProperties['writingMode'];
2144
+ '--focus-wm-mobile'?: CSSProperties['writingMode'];
2145
+
2065
2146
  [key: string]: any;
2066
2147
  }
2067
2148
  }
package/types/index.d.ts CHANGED
@@ -6,4 +6,4 @@ declare const preset: Config;
6
6
  declare const properties: Options;
7
7
  export { preset, properties };
8
8
 
9
- export default preset;
9
+ export default preset;
package/types/types.d.ts CHANGED
@@ -34,6 +34,7 @@ export type ShortHandProperty =
34
34
  | 'weight'
35
35
  | 'fs'
36
36
  | 'gg'
37
+ | 'gr'
37
38
  | 'gtc'
38
39
  | 'gtr'
39
40
  | 'h'
@@ -73,5 +74,7 @@ export type ShortHandProperty =
73
74
  | 'top'
74
75
  | 't'
75
76
  | 'v'
77
+ | 'ws'
76
78
  | 'w'
77
- | 'z';
79
+ | 'z'
80
+ | 'wm';