@atlaskit/tokens 0.8.1 → 0.8.2
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/CHANGELOG.md +6 -0
- package/css/atlassian-dark.css +3 -3
- package/css/atlassian-light.css +3 -3
- package/dist/cjs/artifacts/token-default-values.js +3 -3
- package/dist/cjs/artifacts/tokens-raw/atlassian-dark.js +6 -6
- package/dist/cjs/artifacts/tokens-raw/atlassian-light.js +6 -6
- package/dist/cjs/get-token.js +1 -1
- package/dist/cjs/tokens/atlassian-dark/color/background.js +3 -3
- package/dist/cjs/tokens/atlassian-light/color/background.js +3 -3
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/artifacts/token-default-values.js +3 -3
- package/dist/es2019/artifacts/tokens-raw/atlassian-dark.js +6 -6
- package/dist/es2019/artifacts/tokens-raw/atlassian-light.js +6 -6
- package/dist/es2019/get-token.js +1 -1
- package/dist/es2019/tokens/atlassian-dark/color/background.js +3 -3
- package/dist/es2019/tokens/atlassian-light/color/background.js +3 -3
- package/dist/es2019/version.json +1 -1
- package/dist/esm/artifacts/token-default-values.js +3 -3
- package/dist/esm/artifacts/tokens-raw/atlassian-dark.js +6 -6
- package/dist/esm/artifacts/tokens-raw/atlassian-light.js +6 -6
- package/dist/esm/get-token.js +1 -1
- package/dist/esm/tokens/atlassian-dark/color/background.js +3 -3
- package/dist/esm/tokens/atlassian-light/color/background.js +3 -3
- package/dist/esm/version.json +1 -1
- package/dist/types/artifacts/token-default-values.d.ts +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/tokens
|
|
2
2
|
|
|
3
|
+
## 0.8.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`b170565a618`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b170565a618) - [ux] Update to input token colors: `color.background.input`, `color.background.input.hovered`, `color.background.input.pressed`.
|
|
8
|
+
|
|
3
9
|
## 0.8.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/css/atlassian-dark.css
CHANGED
|
@@ -128,9 +128,9 @@ html[data-theme="dark"] {
|
|
|
128
128
|
--ds-background-accent-magenta-bold: #AE4787;
|
|
129
129
|
--ds-background-disabled: #A1BDD914;
|
|
130
130
|
--ds-background-inverse: #ffffff33;
|
|
131
|
-
--ds-background-input: #
|
|
132
|
-
--ds-background-input-hovered: #
|
|
133
|
-
--ds-background-input-pressed: #
|
|
131
|
+
--ds-background-input: #1D2125;
|
|
132
|
+
--ds-background-input-hovered: #22272B;
|
|
133
|
+
--ds-background-input-pressed: #1D2125;
|
|
134
134
|
--ds-background-neutral: #A1BDD914;
|
|
135
135
|
--ds-background-neutral-hovered: #A6C5E229;
|
|
136
136
|
--ds-background-neutral-pressed: #BFDBF847;
|
package/css/atlassian-light.css
CHANGED
|
@@ -128,9 +128,9 @@
|
|
|
128
128
|
--ds-background-accent-magenta-bold: #E774BB;
|
|
129
129
|
--ds-background-disabled: #091E420F;
|
|
130
130
|
--ds-background-inverse: #00000029;
|
|
131
|
-
--ds-background-input: #
|
|
132
|
-
--ds-background-input-hovered: #
|
|
133
|
-
--ds-background-input-pressed: #
|
|
131
|
+
--ds-background-input: #FFFFFF;
|
|
132
|
+
--ds-background-input-hovered: #F7F8F9;
|
|
133
|
+
--ds-background-input-pressed: #FFFFFF;
|
|
134
134
|
--ds-background-neutral: #091E420F;
|
|
135
135
|
--ds-background-neutral-hovered: #091E4224;
|
|
136
136
|
--ds-background-neutral-pressed: #091E424F;
|
|
@@ -138,9 +138,9 @@ var defaultTokenValues = {
|
|
|
138
138
|
'color.background.accent.magenta.bold': '#E774BB',
|
|
139
139
|
'color.background.disabled': '#091E420F',
|
|
140
140
|
'color.background.inverse': '#00000029',
|
|
141
|
-
'color.background.input': '#
|
|
142
|
-
'color.background.input.hovered': '#
|
|
143
|
-
'color.background.input.pressed': '#
|
|
141
|
+
'color.background.input': '#FFFFFF',
|
|
142
|
+
'color.background.input.hovered': '#F7F8F9',
|
|
143
|
+
'color.background.input.pressed': '#FFFFFF',
|
|
144
144
|
'color.background.neutral': '#091E420F',
|
|
145
145
|
'color.background.neutral.hovered': '#091E4224',
|
|
146
146
|
'color.background.neutral.pressed': '#091E424F',
|
|
@@ -2475,7 +2475,7 @@ var tokens = [{
|
|
|
2475
2475
|
"state": "active",
|
|
2476
2476
|
"description": "Use for background of form UI elements, such as text fields, checkboxes, and radio buttons."
|
|
2477
2477
|
},
|
|
2478
|
-
"value": "#
|
|
2478
|
+
"value": "#1D2125",
|
|
2479
2479
|
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
2480
2480
|
"isSource": true,
|
|
2481
2481
|
"original": {
|
|
@@ -2484,7 +2484,7 @@ var tokens = [{
|
|
|
2484
2484
|
"state": "active",
|
|
2485
2485
|
"description": "Use for background of form UI elements, such as text fields, checkboxes, and radio buttons."
|
|
2486
2486
|
},
|
|
2487
|
-
"value": "
|
|
2487
|
+
"value": "DN100"
|
|
2488
2488
|
},
|
|
2489
2489
|
"name": "color.background.input.[default]",
|
|
2490
2490
|
"path": ["color", "background", "input", "[default]"]
|
|
@@ -2494,7 +2494,7 @@ var tokens = [{
|
|
|
2494
2494
|
"state": "active",
|
|
2495
2495
|
"description": "Hovered state for color.background.input"
|
|
2496
2496
|
},
|
|
2497
|
-
"value": "#
|
|
2497
|
+
"value": "#22272B",
|
|
2498
2498
|
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
2499
2499
|
"isSource": true,
|
|
2500
2500
|
"original": {
|
|
@@ -2503,7 +2503,7 @@ var tokens = [{
|
|
|
2503
2503
|
"state": "active",
|
|
2504
2504
|
"description": "Hovered state for color.background.input"
|
|
2505
2505
|
},
|
|
2506
|
-
"value": "
|
|
2506
|
+
"value": "DN200"
|
|
2507
2507
|
},
|
|
2508
2508
|
"name": "color.background.input.hovered",
|
|
2509
2509
|
"path": ["color", "background", "input", "hovered"]
|
|
@@ -2513,7 +2513,7 @@ var tokens = [{
|
|
|
2513
2513
|
"state": "active",
|
|
2514
2514
|
"description": "Pressed state for color.background.input"
|
|
2515
2515
|
},
|
|
2516
|
-
"value": "#
|
|
2516
|
+
"value": "#1D2125",
|
|
2517
2517
|
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
2518
2518
|
"isSource": true,
|
|
2519
2519
|
"original": {
|
|
@@ -2522,7 +2522,7 @@ var tokens = [{
|
|
|
2522
2522
|
"state": "active",
|
|
2523
2523
|
"description": "Pressed state for color.background.input"
|
|
2524
2524
|
},
|
|
2525
|
-
"value": "
|
|
2525
|
+
"value": "DN100"
|
|
2526
2526
|
},
|
|
2527
2527
|
"name": "color.background.input.pressed",
|
|
2528
2528
|
"path": ["color", "background", "input", "pressed"]
|
|
@@ -2475,7 +2475,7 @@ var tokens = [{
|
|
|
2475
2475
|
"state": "active",
|
|
2476
2476
|
"description": "Use for background of form UI elements, such as text fields, checkboxes, and radio buttons."
|
|
2477
2477
|
},
|
|
2478
|
-
"value": "#
|
|
2478
|
+
"value": "#FFFFFF",
|
|
2479
2479
|
"filePath": "src/tokens/atlassian-light/color/background.tsx",
|
|
2480
2480
|
"isSource": true,
|
|
2481
2481
|
"original": {
|
|
@@ -2484,7 +2484,7 @@ var tokens = [{
|
|
|
2484
2484
|
"state": "active",
|
|
2485
2485
|
"description": "Use for background of form UI elements, such as text fields, checkboxes, and radio buttons."
|
|
2486
2486
|
},
|
|
2487
|
-
"value": "
|
|
2487
|
+
"value": "N0"
|
|
2488
2488
|
},
|
|
2489
2489
|
"name": "color.background.input.[default]",
|
|
2490
2490
|
"path": ["color", "background", "input", "[default]"]
|
|
@@ -2494,7 +2494,7 @@ var tokens = [{
|
|
|
2494
2494
|
"state": "active",
|
|
2495
2495
|
"description": "Hovered state for color.background.input"
|
|
2496
2496
|
},
|
|
2497
|
-
"value": "#
|
|
2497
|
+
"value": "#F7F8F9",
|
|
2498
2498
|
"filePath": "src/tokens/atlassian-light/color/background.tsx",
|
|
2499
2499
|
"isSource": true,
|
|
2500
2500
|
"original": {
|
|
@@ -2503,7 +2503,7 @@ var tokens = [{
|
|
|
2503
2503
|
"state": "active",
|
|
2504
2504
|
"description": "Hovered state for color.background.input"
|
|
2505
2505
|
},
|
|
2506
|
-
"value": "
|
|
2506
|
+
"value": "N100"
|
|
2507
2507
|
},
|
|
2508
2508
|
"name": "color.background.input.hovered",
|
|
2509
2509
|
"path": ["color", "background", "input", "hovered"]
|
|
@@ -2513,7 +2513,7 @@ var tokens = [{
|
|
|
2513
2513
|
"state": "active",
|
|
2514
2514
|
"description": "Pressed state for color.background.input"
|
|
2515
2515
|
},
|
|
2516
|
-
"value": "#
|
|
2516
|
+
"value": "#FFFFFF",
|
|
2517
2517
|
"filePath": "src/tokens/atlassian-light/color/background.tsx",
|
|
2518
2518
|
"isSource": true,
|
|
2519
2519
|
"original": {
|
|
@@ -2522,7 +2522,7 @@ var tokens = [{
|
|
|
2522
2522
|
"state": "active",
|
|
2523
2523
|
"description": "Pressed state for color.background.input"
|
|
2524
2524
|
},
|
|
2525
|
-
"value": "
|
|
2525
|
+
"value": "N0"
|
|
2526
2526
|
},
|
|
2527
2527
|
"name": "color.background.input.pressed",
|
|
2528
2528
|
"path": ["color", "background", "input", "pressed"]
|
package/dist/cjs/get-token.js
CHANGED
|
@@ -12,7 +12,7 @@ var _warnOnce = _interopRequireDefault(require("@atlaskit/ds-lib/warn-once"));
|
|
|
12
12
|
var _tokenNames = _interopRequireDefault(require("./artifacts/token-names"));
|
|
13
13
|
|
|
14
14
|
var name = "@atlaskit/tokens";
|
|
15
|
-
var version = "0.8.
|
|
15
|
+
var version = "0.8.2";
|
|
16
16
|
|
|
17
17
|
function token(path, fallback) {
|
|
18
18
|
var token = _tokenNames.default[path];
|
package/dist/cjs/version.json
CHANGED
|
@@ -132,9 +132,9 @@ const defaultTokenValues = {
|
|
|
132
132
|
'color.background.accent.magenta.bold': '#E774BB',
|
|
133
133
|
'color.background.disabled': '#091E420F',
|
|
134
134
|
'color.background.inverse': '#00000029',
|
|
135
|
-
'color.background.input': '#
|
|
136
|
-
'color.background.input.hovered': '#
|
|
137
|
-
'color.background.input.pressed': '#
|
|
135
|
+
'color.background.input': '#FFFFFF',
|
|
136
|
+
'color.background.input.hovered': '#F7F8F9',
|
|
137
|
+
'color.background.input.pressed': '#FFFFFF',
|
|
138
138
|
'color.background.neutral': '#091E420F',
|
|
139
139
|
'color.background.neutral.hovered': '#091E4224',
|
|
140
140
|
'color.background.neutral.pressed': '#091E424F',
|
|
@@ -2469,7 +2469,7 @@ const tokens = [{
|
|
|
2469
2469
|
"state": "active",
|
|
2470
2470
|
"description": "Use for background of form UI elements, such as text fields, checkboxes, and radio buttons."
|
|
2471
2471
|
},
|
|
2472
|
-
"value": "#
|
|
2472
|
+
"value": "#1D2125",
|
|
2473
2473
|
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
2474
2474
|
"isSource": true,
|
|
2475
2475
|
"original": {
|
|
@@ -2478,7 +2478,7 @@ const tokens = [{
|
|
|
2478
2478
|
"state": "active",
|
|
2479
2479
|
"description": "Use for background of form UI elements, such as text fields, checkboxes, and radio buttons."
|
|
2480
2480
|
},
|
|
2481
|
-
"value": "
|
|
2481
|
+
"value": "DN100"
|
|
2482
2482
|
},
|
|
2483
2483
|
"name": "color.background.input.[default]",
|
|
2484
2484
|
"path": ["color", "background", "input", "[default]"]
|
|
@@ -2488,7 +2488,7 @@ const tokens = [{
|
|
|
2488
2488
|
"state": "active",
|
|
2489
2489
|
"description": "Hovered state for color.background.input"
|
|
2490
2490
|
},
|
|
2491
|
-
"value": "#
|
|
2491
|
+
"value": "#22272B",
|
|
2492
2492
|
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
2493
2493
|
"isSource": true,
|
|
2494
2494
|
"original": {
|
|
@@ -2497,7 +2497,7 @@ const tokens = [{
|
|
|
2497
2497
|
"state": "active",
|
|
2498
2498
|
"description": "Hovered state for color.background.input"
|
|
2499
2499
|
},
|
|
2500
|
-
"value": "
|
|
2500
|
+
"value": "DN200"
|
|
2501
2501
|
},
|
|
2502
2502
|
"name": "color.background.input.hovered",
|
|
2503
2503
|
"path": ["color", "background", "input", "hovered"]
|
|
@@ -2507,7 +2507,7 @@ const tokens = [{
|
|
|
2507
2507
|
"state": "active",
|
|
2508
2508
|
"description": "Pressed state for color.background.input"
|
|
2509
2509
|
},
|
|
2510
|
-
"value": "#
|
|
2510
|
+
"value": "#1D2125",
|
|
2511
2511
|
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
2512
2512
|
"isSource": true,
|
|
2513
2513
|
"original": {
|
|
@@ -2516,7 +2516,7 @@ const tokens = [{
|
|
|
2516
2516
|
"state": "active",
|
|
2517
2517
|
"description": "Pressed state for color.background.input"
|
|
2518
2518
|
},
|
|
2519
|
-
"value": "
|
|
2519
|
+
"value": "DN100"
|
|
2520
2520
|
},
|
|
2521
2521
|
"name": "color.background.input.pressed",
|
|
2522
2522
|
"path": ["color", "background", "input", "pressed"]
|
|
@@ -2469,7 +2469,7 @@ const tokens = [{
|
|
|
2469
2469
|
"state": "active",
|
|
2470
2470
|
"description": "Use for background of form UI elements, such as text fields, checkboxes, and radio buttons."
|
|
2471
2471
|
},
|
|
2472
|
-
"value": "#
|
|
2472
|
+
"value": "#FFFFFF",
|
|
2473
2473
|
"filePath": "src/tokens/atlassian-light/color/background.tsx",
|
|
2474
2474
|
"isSource": true,
|
|
2475
2475
|
"original": {
|
|
@@ -2478,7 +2478,7 @@ const tokens = [{
|
|
|
2478
2478
|
"state": "active",
|
|
2479
2479
|
"description": "Use for background of form UI elements, such as text fields, checkboxes, and radio buttons."
|
|
2480
2480
|
},
|
|
2481
|
-
"value": "
|
|
2481
|
+
"value": "N0"
|
|
2482
2482
|
},
|
|
2483
2483
|
"name": "color.background.input.[default]",
|
|
2484
2484
|
"path": ["color", "background", "input", "[default]"]
|
|
@@ -2488,7 +2488,7 @@ const tokens = [{
|
|
|
2488
2488
|
"state": "active",
|
|
2489
2489
|
"description": "Hovered state for color.background.input"
|
|
2490
2490
|
},
|
|
2491
|
-
"value": "#
|
|
2491
|
+
"value": "#F7F8F9",
|
|
2492
2492
|
"filePath": "src/tokens/atlassian-light/color/background.tsx",
|
|
2493
2493
|
"isSource": true,
|
|
2494
2494
|
"original": {
|
|
@@ -2497,7 +2497,7 @@ const tokens = [{
|
|
|
2497
2497
|
"state": "active",
|
|
2498
2498
|
"description": "Hovered state for color.background.input"
|
|
2499
2499
|
},
|
|
2500
|
-
"value": "
|
|
2500
|
+
"value": "N100"
|
|
2501
2501
|
},
|
|
2502
2502
|
"name": "color.background.input.hovered",
|
|
2503
2503
|
"path": ["color", "background", "input", "hovered"]
|
|
@@ -2507,7 +2507,7 @@ const tokens = [{
|
|
|
2507
2507
|
"state": "active",
|
|
2508
2508
|
"description": "Pressed state for color.background.input"
|
|
2509
2509
|
},
|
|
2510
|
-
"value": "#
|
|
2510
|
+
"value": "#FFFFFF",
|
|
2511
2511
|
"filePath": "src/tokens/atlassian-light/color/background.tsx",
|
|
2512
2512
|
"isSource": true,
|
|
2513
2513
|
"original": {
|
|
@@ -2516,7 +2516,7 @@ const tokens = [{
|
|
|
2516
2516
|
"state": "active",
|
|
2517
2517
|
"description": "Pressed state for color.background.input"
|
|
2518
2518
|
},
|
|
2519
|
-
"value": "
|
|
2519
|
+
"value": "N0"
|
|
2520
2520
|
},
|
|
2521
2521
|
"name": "color.background.input.pressed",
|
|
2522
2522
|
"path": ["color", "background", "input", "pressed"]
|
package/dist/es2019/get-token.js
CHANGED
package/dist/es2019/version.json
CHANGED
|
@@ -132,9 +132,9 @@ var defaultTokenValues = {
|
|
|
132
132
|
'color.background.accent.magenta.bold': '#E774BB',
|
|
133
133
|
'color.background.disabled': '#091E420F',
|
|
134
134
|
'color.background.inverse': '#00000029',
|
|
135
|
-
'color.background.input': '#
|
|
136
|
-
'color.background.input.hovered': '#
|
|
137
|
-
'color.background.input.pressed': '#
|
|
135
|
+
'color.background.input': '#FFFFFF',
|
|
136
|
+
'color.background.input.hovered': '#F7F8F9',
|
|
137
|
+
'color.background.input.pressed': '#FFFFFF',
|
|
138
138
|
'color.background.neutral': '#091E420F',
|
|
139
139
|
'color.background.neutral.hovered': '#091E4224',
|
|
140
140
|
'color.background.neutral.pressed': '#091E424F',
|
|
@@ -2469,7 +2469,7 @@ var tokens = [{
|
|
|
2469
2469
|
"state": "active",
|
|
2470
2470
|
"description": "Use for background of form UI elements, such as text fields, checkboxes, and radio buttons."
|
|
2471
2471
|
},
|
|
2472
|
-
"value": "#
|
|
2472
|
+
"value": "#1D2125",
|
|
2473
2473
|
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
2474
2474
|
"isSource": true,
|
|
2475
2475
|
"original": {
|
|
@@ -2478,7 +2478,7 @@ var tokens = [{
|
|
|
2478
2478
|
"state": "active",
|
|
2479
2479
|
"description": "Use for background of form UI elements, such as text fields, checkboxes, and radio buttons."
|
|
2480
2480
|
},
|
|
2481
|
-
"value": "
|
|
2481
|
+
"value": "DN100"
|
|
2482
2482
|
},
|
|
2483
2483
|
"name": "color.background.input.[default]",
|
|
2484
2484
|
"path": ["color", "background", "input", "[default]"]
|
|
@@ -2488,7 +2488,7 @@ var tokens = [{
|
|
|
2488
2488
|
"state": "active",
|
|
2489
2489
|
"description": "Hovered state for color.background.input"
|
|
2490
2490
|
},
|
|
2491
|
-
"value": "#
|
|
2491
|
+
"value": "#22272B",
|
|
2492
2492
|
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
2493
2493
|
"isSource": true,
|
|
2494
2494
|
"original": {
|
|
@@ -2497,7 +2497,7 @@ var tokens = [{
|
|
|
2497
2497
|
"state": "active",
|
|
2498
2498
|
"description": "Hovered state for color.background.input"
|
|
2499
2499
|
},
|
|
2500
|
-
"value": "
|
|
2500
|
+
"value": "DN200"
|
|
2501
2501
|
},
|
|
2502
2502
|
"name": "color.background.input.hovered",
|
|
2503
2503
|
"path": ["color", "background", "input", "hovered"]
|
|
@@ -2507,7 +2507,7 @@ var tokens = [{
|
|
|
2507
2507
|
"state": "active",
|
|
2508
2508
|
"description": "Pressed state for color.background.input"
|
|
2509
2509
|
},
|
|
2510
|
-
"value": "#
|
|
2510
|
+
"value": "#1D2125",
|
|
2511
2511
|
"filePath": "src/tokens/atlassian-dark/color/background.tsx",
|
|
2512
2512
|
"isSource": true,
|
|
2513
2513
|
"original": {
|
|
@@ -2516,7 +2516,7 @@ var tokens = [{
|
|
|
2516
2516
|
"state": "active",
|
|
2517
2517
|
"description": "Pressed state for color.background.input"
|
|
2518
2518
|
},
|
|
2519
|
-
"value": "
|
|
2519
|
+
"value": "DN100"
|
|
2520
2520
|
},
|
|
2521
2521
|
"name": "color.background.input.pressed",
|
|
2522
2522
|
"path": ["color", "background", "input", "pressed"]
|
|
@@ -2469,7 +2469,7 @@ var tokens = [{
|
|
|
2469
2469
|
"state": "active",
|
|
2470
2470
|
"description": "Use for background of form UI elements, such as text fields, checkboxes, and radio buttons."
|
|
2471
2471
|
},
|
|
2472
|
-
"value": "#
|
|
2472
|
+
"value": "#FFFFFF",
|
|
2473
2473
|
"filePath": "src/tokens/atlassian-light/color/background.tsx",
|
|
2474
2474
|
"isSource": true,
|
|
2475
2475
|
"original": {
|
|
@@ -2478,7 +2478,7 @@ var tokens = [{
|
|
|
2478
2478
|
"state": "active",
|
|
2479
2479
|
"description": "Use for background of form UI elements, such as text fields, checkboxes, and radio buttons."
|
|
2480
2480
|
},
|
|
2481
|
-
"value": "
|
|
2481
|
+
"value": "N0"
|
|
2482
2482
|
},
|
|
2483
2483
|
"name": "color.background.input.[default]",
|
|
2484
2484
|
"path": ["color", "background", "input", "[default]"]
|
|
@@ -2488,7 +2488,7 @@ var tokens = [{
|
|
|
2488
2488
|
"state": "active",
|
|
2489
2489
|
"description": "Hovered state for color.background.input"
|
|
2490
2490
|
},
|
|
2491
|
-
"value": "#
|
|
2491
|
+
"value": "#F7F8F9",
|
|
2492
2492
|
"filePath": "src/tokens/atlassian-light/color/background.tsx",
|
|
2493
2493
|
"isSource": true,
|
|
2494
2494
|
"original": {
|
|
@@ -2497,7 +2497,7 @@ var tokens = [{
|
|
|
2497
2497
|
"state": "active",
|
|
2498
2498
|
"description": "Hovered state for color.background.input"
|
|
2499
2499
|
},
|
|
2500
|
-
"value": "
|
|
2500
|
+
"value": "N100"
|
|
2501
2501
|
},
|
|
2502
2502
|
"name": "color.background.input.hovered",
|
|
2503
2503
|
"path": ["color", "background", "input", "hovered"]
|
|
@@ -2507,7 +2507,7 @@ var tokens = [{
|
|
|
2507
2507
|
"state": "active",
|
|
2508
2508
|
"description": "Pressed state for color.background.input"
|
|
2509
2509
|
},
|
|
2510
|
-
"value": "#
|
|
2510
|
+
"value": "#FFFFFF",
|
|
2511
2511
|
"filePath": "src/tokens/atlassian-light/color/background.tsx",
|
|
2512
2512
|
"isSource": true,
|
|
2513
2513
|
"original": {
|
|
@@ -2516,7 +2516,7 @@ var tokens = [{
|
|
|
2516
2516
|
"state": "active",
|
|
2517
2517
|
"description": "Pressed state for color.background.input"
|
|
2518
2518
|
},
|
|
2519
|
-
"value": "
|
|
2519
|
+
"value": "N0"
|
|
2520
2520
|
},
|
|
2521
2521
|
"name": "color.background.input.pressed",
|
|
2522
2522
|
"path": ["color", "background", "input", "pressed"]
|
package/dist/esm/get-token.js
CHANGED
package/dist/esm/version.json
CHANGED
|
@@ -129,9 +129,9 @@ declare const defaultTokenValues: {
|
|
|
129
129
|
readonly 'color.background.accent.magenta.bold': "#E774BB";
|
|
130
130
|
readonly 'color.background.disabled': "#091E420F";
|
|
131
131
|
readonly 'color.background.inverse': "#00000029";
|
|
132
|
-
readonly 'color.background.input': "#
|
|
133
|
-
readonly 'color.background.input.hovered': "#
|
|
134
|
-
readonly 'color.background.input.pressed': "#
|
|
132
|
+
readonly 'color.background.input': "#FFFFFF";
|
|
133
|
+
readonly 'color.background.input.hovered': "#F7F8F9";
|
|
134
|
+
readonly 'color.background.input.pressed': "#FFFFFF";
|
|
135
135
|
readonly 'color.background.neutral': "#091E420F";
|
|
136
136
|
readonly 'color.background.neutral.hovered': "#091E4224";
|
|
137
137
|
readonly 'color.background.neutral.pressed': "#091E424F";
|