@haiilo/catalyst-tokens 0.1.5 → 0.3.1
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/_variables.css
CHANGED
|
@@ -131,8 +131,6 @@
|
|
|
131
131
|
--cat-color-ui-background-canvas: 248, 248, 251;
|
|
132
132
|
--cat-color-ui-background-body: 255, 255, 255;
|
|
133
133
|
--cat-color-ui-background-interaction: 32, 127, 138;
|
|
134
|
-
--cat-color-ui-background-input: 255, 255, 255;
|
|
135
|
-
--cat-color-ui-background-input-prefix: 235, 236, 240;
|
|
136
134
|
--cat-color-ui-background-notification: 217, 52, 13;
|
|
137
135
|
--cat-color-ui-background-skeleton: 235, 236, 240;
|
|
138
136
|
--cat-color-ui-background-skeleton-highlight: 215, 219, 224;
|
package/dist/js/_variables.d.ts
CHANGED
|
@@ -130,8 +130,6 @@ export const ColorThemeDangerTextActive : string;
|
|
|
130
130
|
export const ColorUiBackgroundCanvas : string;
|
|
131
131
|
export const ColorUiBackgroundBody : string;
|
|
132
132
|
export const ColorUiBackgroundInteraction : string;
|
|
133
|
-
export const ColorUiBackgroundInput : string;
|
|
134
|
-
export const ColorUiBackgroundInputPrefix : string;
|
|
135
133
|
export const ColorUiBackgroundNotification : string;
|
|
136
134
|
export const ColorUiBackgroundSkeleton : string;
|
|
137
135
|
export const ColorUiBackgroundSkeletonHighlight : string;
|
package/dist/js/_variables.js
CHANGED
|
@@ -130,8 +130,6 @@ export const ColorThemeDangerTextActive = "#ae2a0a";
|
|
|
130
130
|
export const ColorUiBackgroundCanvas = "#f8f8fb";
|
|
131
131
|
export const ColorUiBackgroundBody = "#ffffff";
|
|
132
132
|
export const ColorUiBackgroundInteraction = "#207f8a";
|
|
133
|
-
export const ColorUiBackgroundInput = "#ffffff";
|
|
134
|
-
export const ColorUiBackgroundInputPrefix = "#ebecf0";
|
|
135
133
|
export const ColorUiBackgroundNotification = "#d9340d";
|
|
136
134
|
export const ColorUiBackgroundSkeleton = "#ebecf0";
|
|
137
135
|
export const ColorUiBackgroundSkeletonHighlight = "#d7dbe0";
|
|
@@ -160,8 +160,6 @@ $cat-color-ui-border-default: $cat-color-base-neutral-200 !default;
|
|
|
160
160
|
$cat-color-ui-background-skeleton-highlight: $cat-color-base-neutral-300 !default;
|
|
161
161
|
$cat-color-ui-background-skeleton: $cat-color-base-neutral-200 !default;
|
|
162
162
|
$cat-color-ui-background-notification: $cat-color-base-red-400 !default;
|
|
163
|
-
$cat-color-ui-background-input-prefix: $cat-color-base-neutral-200 !default;
|
|
164
|
-
$cat-color-ui-background-input: $cat-color-base-neutral-0 !default;
|
|
165
163
|
$cat-color-ui-background-interaction: $cat-color-base-brand-400 !default;
|
|
166
164
|
$cat-color-ui-background-body: $cat-color-base-neutral-0 !default;
|
|
167
165
|
$cat-color-ui-background-canvas: var(--cat-bg, $cat-color-base-neutral-100) !default;
|
|
@@ -379,8 +377,6 @@ $tokens: (
|
|
|
379
377
|
'canvas': $cat-color-ui-background-canvas,
|
|
380
378
|
'body': $cat-color-ui-background-body,
|
|
381
379
|
'interaction': $cat-color-ui-background-interaction,
|
|
382
|
-
'input': $cat-color-ui-background-input,
|
|
383
|
-
'inputPrefix': $cat-color-ui-background-input-prefix,
|
|
384
380
|
'notification': $cat-color-ui-background-notification,
|
|
385
381
|
'skeleton': $cat-color-ui-background-skeleton,
|
|
386
382
|
'skeletonHighlight': $cat-color-ui-background-skeleton-highlight
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@haiilo/catalyst-tokens",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Design tokens for Catalyst Design System",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -17,17 +17,12 @@
|
|
|
17
17
|
"scripts": {
|
|
18
18
|
"prebuild": "npm run clean",
|
|
19
19
|
"build": "style-dictionary build --config config.js",
|
|
20
|
-
"release": "standard-version",
|
|
21
|
-
"release:patch": "standard-version -t @haiilo/catalyst-tokens/v --release-as patch",
|
|
22
|
-
"release:minor": "standard-version -t @haiilo/catalyst-tokens/v --release-as minor",
|
|
23
|
-
"release:major": "standard-version -t @haiilo/catalyst-tokens/v --release-as major",
|
|
24
20
|
"clean": "rm -rf ./dist",
|
|
25
21
|
"reset": "rm -rf ./dist ./node_modules"
|
|
26
22
|
},
|
|
27
23
|
"devDependencies": {
|
|
28
|
-
"standard-version": "^9.3.2",
|
|
29
24
|
"style-dictionary": "^3.1.1",
|
|
30
25
|
"tinycolor2": "^1.4.2"
|
|
31
26
|
},
|
|
32
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "08b8b3a6bd51db9b788faaa73bee02f84d06a200"
|
|
33
28
|
}
|