@haiilo/catalyst-tokens 0.1.4 → 0.1.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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2018
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -131,6 +131,8 @@
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;
134
136
  --cat-color-ui-background-notification: 217, 52, 13;
135
137
  --cat-color-ui-background-skeleton: 235, 236, 240;
136
138
  --cat-color-ui-background-skeleton-highlight: 215, 219, 224;
@@ -130,6 +130,8 @@ 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;
133
135
  export const ColorUiBackgroundNotification : string;
134
136
  export const ColorUiBackgroundSkeleton : string;
135
137
  export const ColorUiBackgroundSkeletonHighlight : string;
@@ -130,6 +130,8 @@ 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";
133
135
  export const ColorUiBackgroundNotification = "#d9340d";
134
136
  export const ColorUiBackgroundSkeleton = "#ebecf0";
135
137
  export const ColorUiBackgroundSkeletonHighlight = "#d7dbe0";
@@ -160,6 +160,8 @@ $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;
163
165
  $cat-color-ui-background-interaction: $cat-color-base-brand-400 !default;
164
166
  $cat-color-ui-background-body: $cat-color-base-neutral-0 !default;
165
167
  $cat-color-ui-background-canvas: var(--cat-bg, $cat-color-base-neutral-100) !default;
@@ -377,6 +379,8 @@ $tokens: (
377
379
  'canvas': $cat-color-ui-background-canvas,
378
380
  'body': $cat-color-ui-background-body,
379
381
  'interaction': $cat-color-ui-background-interaction,
382
+ 'input': $cat-color-ui-background-input,
383
+ 'inputPrefix': $cat-color-ui-background-input-prefix,
380
384
  'notification': $cat-color-ui-background-notification,
381
385
  'skeleton': $cat-color-ui-background-skeleton,
382
386
  '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.4",
3
+ "version": "0.1.5",
4
4
  "description": "Design tokens for Catalyst Design System",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -28,5 +28,6 @@
28
28
  "standard-version": "^9.3.2",
29
29
  "style-dictionary": "^3.1.1",
30
30
  "tinycolor2": "^1.4.2"
31
- }
31
+ },
32
+ "gitHead": "3bd083786a1df0a2de5b5d4a5eb557b44fb97800"
32
33
  }