@esri/calcite-design-tokens 3.2.0-next.1 → 3.2.0-next.10
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/dark.css +2 -2
- package/dist/css/index.css +10 -10
- package/dist/css/light.css +2 -2
- package/dist/css/semantic.css +0 -22
- package/dist/docs/core.json +464 -1
- package/dist/docs/dark.json +82 -24
- package/dist/docs/global.json +281 -183
- package/dist/docs/light.json +74 -14
- package/dist/docs/semantic.json +132 -572
- package/dist/es6/dark.d.ts +2 -2
- package/dist/es6/dark.js +2 -2
- package/dist/es6/global.d.ts +2 -2
- package/dist/es6/global.js +2 -2
- package/dist/es6/light.d.ts +2 -2
- package/dist/es6/light.js +2 -2
- 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.d.ts +2 -2
- package/dist/js/dark.js +161 -38
- package/dist/js/global.d.ts +10 -10
- package/dist/js/global.js +627 -424
- package/dist/js/light.d.ts +2 -2
- package/dist/js/light.js +137 -16
- package/dist/js/semantic.d.ts +8 -26
- package/dist/js/semantic.js +358 -934
- package/dist/scss/dark.scss +2 -2
- package/dist/scss/index.scss +4 -4
- package/dist/scss/light.scss +2 -2
- package/dist/scss/semantic.scss +0 -22
- package/package.json +6 -6
package/dist/js/dark.d.ts
CHANGED
|
@@ -8,9 +8,9 @@ export const calciteColorBackgroundNone: string;
|
|
|
8
8
|
export const calciteColorForeground1: string;
|
|
9
9
|
export const calciteColorForeground2: string;
|
|
10
10
|
export const calciteColorForeground3: string;
|
|
11
|
-
/** deprecated, use --calcite-color-
|
|
11
|
+
/** deprecated, use --calcite-color-surface-highlight instead */
|
|
12
12
|
export const calciteColorForegroundCurrent: string;
|
|
13
|
-
export const
|
|
13
|
+
export const calciteColorSurfaceHighlight: string;
|
|
14
14
|
export const calciteColorTransparent: string;
|
|
15
15
|
export const calciteColorTransparentHover: string;
|
|
16
16
|
export const calciteColorTransparentPress: string;
|