@esri/calcite-design-tokens 3.2.0-next.3 → 3.2.0-next.5
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/css/semantic.css +0 -22
- package/dist/docs/core.json +464 -1
- package/dist/docs/dark.json +69 -11
- package/dist/docs/global.json +230 -132
- package/dist/docs/light.json +61 -1
- package/dist/docs/semantic.json +114 -554
- package/dist/es6/semantic.d.ts +0 -24
- package/dist/es6/semantic.js +0 -12
- package/dist/js/core.js +926 -0
- package/dist/js/dark.js +144 -22
- package/dist/js/global.d.ts +8 -10
- package/dist/js/global.js +554 -352
- package/dist/js/light.js +120 -0
- package/dist/js/semantic.d.ts +8 -26
- package/dist/js/semantic.js +322 -898
- package/dist/scss/semantic.scss +0 -22
- package/package.json +2 -2
package/dist/css/semantic.css
CHANGED
|
@@ -4,8 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
7
|
-
--calcite-container-size-height-xxs-min: 0; /** Small handheld devices and mini-windows */
|
|
8
|
-
--calcite-container-size-width-xxs-min: 0; /** Small handheld devices and mini-windows */
|
|
9
7
|
--calcite-border-width-none: 0;
|
|
10
8
|
--calcite-border-width-sm: 1px;
|
|
11
9
|
--calcite-border-width-md: 2px;
|
|
@@ -113,26 +111,6 @@
|
|
|
113
111
|
--calcite-z-index-modal: 800;
|
|
114
112
|
--calcite-z-index-popup: 900;
|
|
115
113
|
--calcite-z-index-tooltip: 901;
|
|
116
|
-
--calcite-container-size-height-xxs-max: 154px; /** Small handheld devices and mini-windows */
|
|
117
|
-
--calcite-container-size-height-xs-min: 155px; /** Handheld devices */
|
|
118
|
-
--calcite-container-size-height-xs-max: 328px; /** Handheld devices */
|
|
119
|
-
--calcite-container-size-height-sm-min: 329px; /** Small tablets */
|
|
120
|
-
--calcite-container-size-height-sm-max: 504px; /** Small tablets */
|
|
121
|
-
--calcite-container-size-height-md-min: 505px; /** Small laptops */
|
|
122
|
-
--calcite-container-size-height-md-max: 678px; /** Small laptops */
|
|
123
|
-
--calcite-container-size-height-lg-min: 679px; /** Large laptops and desktop computers */
|
|
124
|
-
--calcite-container-size-height-lg-max: 854px; /** Large laptops and desktop computers */
|
|
125
|
-
--calcite-container-size-height-xl-min: 855px; /** Projectors and televisions */
|
|
126
|
-
--calcite-container-size-width-xxs-max: 320px; /** Small handheld devices and mini-windows */
|
|
127
|
-
--calcite-container-size-width-xs-min: 321px; /** Handheld devices */
|
|
128
|
-
--calcite-container-size-width-xs-max: 476px; /** Handheld devices */
|
|
129
|
-
--calcite-container-size-width-sm-min: 477px; /** Small tablets */
|
|
130
|
-
--calcite-container-size-width-sm-max: 768px; /** Small tablets */
|
|
131
|
-
--calcite-container-size-width-md-min: 769px; /** Small laptops */
|
|
132
|
-
--calcite-container-size-width-md-max: 1152px; /** Small laptops */
|
|
133
|
-
--calcite-container-size-width-lg-min: 1153px; /** Large laptops and desktop computers */
|
|
134
|
-
--calcite-container-size-width-lg-max: 1440px; /** Large laptops and desktop computers */
|
|
135
|
-
--calcite-container-size-width-xl-min: 1441px; /** Projectors and televisions */
|
|
136
114
|
--calcite-corner-radius: var(--calcite-corner-radius-none);
|
|
137
115
|
--calcite-shadow-none: 0 0 0 0 rgba(0, 0, 0, 0);
|
|
138
116
|
--calcite-shadow-sm: 0 2px 8px 0 rgba(0, 0, 0, 0.04), 0 4px 16px 0 rgba(0, 0, 0, 0.08);
|