@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.
- package/dist/base.css +133 -10
- package/dist/base.min.css +1 -1
- package/dist/builder.css +130 -12
- package/dist/builder.min.css +1 -1
- package/dist/toolbar.css +161 -111
- package/dist/toolbar.min.css +1 -1
- package/dist/utility.css +193 -1
- package/dist/utility.min.css +1 -1
- package/package.json +2 -2
- package/src/css/all.css +3 -0
- package/src/css/builds/base.css +129 -7
- package/src/css/builds/builder.css +112 -12
- package/src/css/builds/toolbar.css +175 -126
- package/src/css/helpers/_layout.css +26 -17
- package/src/css/medias.css +2 -2
- package/src/css/utilities/_whitespace.css +1 -0
- package/src/preset.js +2 -2
- package/src/properties.js +19 -13
- package/types/globals.d.ts +81 -0
- package/types/index.d.ts +1 -1
- package/types/types.d.ts +4 -1
package/types/globals.d.ts
CHANGED
|
@@ -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
package/types/types.d.ts
CHANGED