@synergy-design-system/metadata 3.16.1 → 3.18.0
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 +26 -0
- package/data/core/component/component:syn-button-group.json +0 -5
- package/data/core/component/component:syn-button.json +3 -3
- package/data/core/component/component:syn-chart.json +147 -2
- package/data/core/component/component:syn-radio-button.json +123 -14
- package/data/core/component/component:syn-radio-group.json +11 -0
- package/data/core/setup/setup:angular-components-module.json +1 -1
- package/data/core/setup/setup:angular-forms-module.json +1 -1
- package/data/core/setup/setup:angular-package.json +2 -2
- package/data/core/setup/setup:angular-validators-module.json +1 -1
- package/data/core/setup/setup:components-package.json +2 -2
- package/data/core/setup/setup:react-package.json +2 -2
- package/data/core/setup/setup:tokens-package.json +2 -2
- package/data/core/setup/setup:vue-package.json +2 -2
- package/data/core/token/token:tokens-charts-js-index-d-ts.json +1 -1
- package/data/core/token/token:tokens-charts-js-index-js.json +1 -1
- package/data/core/token/token:tokens-charts-scss-tokens-scss.json +1 -1
- package/data/core/token/token:tokens-charts-themes-sick2025-dark-css.json +1 -1
- package/data/core/token/token:tokens-charts-themes-sick2025-light-css.json +1 -1
- package/data/core/token/token:tokens-figma-variables-sick2018-dark-json.json +1 -1
- package/data/core/token/token:tokens-figma-variables-sick2018-light-json.json +1 -1
- package/data/core/token/token:tokens-figma-variables-sick2025-dark-json.json +1 -1
- package/data/core/token/token:tokens-figma-variables-sick2025-light-json.json +1 -1
- package/data/core/token/token:tokens-js-index-d-ts.json +1 -1
- package/data/core/token/token:tokens-js-index-js.json +1 -1
- package/data/core/token/token:tokens-scss-tokens-scss.json +1 -1
- package/data/core/token/token:tokens-themes-sick2018-dark-css.json +1 -1
- package/data/core/token/token:tokens-themes-sick2018-light-css.json +1 -1
- package/data/core/token/token:tokens-themes-sick2025-dark-css.json +1 -1
- package/data/core/token/token:tokens-themes-sick2025-light-css.json +1 -1
- package/data/index.json +3 -2
- package/data/layers/examples/component/component:syn-chart.md +115 -106
- package/data/layers/examples/component/component:syn-checkbox.md +16 -2
- package/data/layers/examples/component/component:syn-combobox.md +10 -21
- package/data/layers/examples/component/component:syn-file.md +16 -10
- package/data/layers/examples/component/component:syn-input.md +10 -3
- package/data/layers/examples/component/component:syn-radio-button.md +200 -0
- package/data/layers/examples/component/component:syn-radio-group.md +27 -2
- package/data/layers/examples/component/component:syn-radio.md +12 -5
- package/data/layers/examples/component/component:syn-range.md +16 -14
- package/data/layers/examples/component/component:syn-select.md +10 -3
- package/data/layers/examples/component/component:syn-switch.md +10 -3
- package/data/layers/examples/component/component:syn-textarea.md +10 -3
- package/data/layers/full/component/component:syn-button/components/button-group.styles.ts +66 -0
- package/data/layers/full/component/component:syn-button/components/button.component.ts +40 -52
- package/data/layers/full/component/component:syn-button/components/button.styles.ts +162 -173
- package/data/layers/full/component/component:syn-button-group/components/button-group.component.ts +22 -18
- package/data/layers/full/component/component:syn-button-group/components/button-group.styles.ts +0 -2
- package/data/layers/full/component/component:syn-chart/angular/chart.component.ts +11 -5
- package/data/layers/full/component/component:syn-chart/components/chart.component.ts +67 -20
- package/data/layers/full/component/component:syn-chart/components/chart.palettes.ts +59 -59
- package/data/layers/full/component/component:syn-chart/components/types.ts +47 -4
- package/data/layers/full/component/component:syn-chart/react/chart.ts +1 -1
- package/data/layers/full/component/component:syn-chart/vue/SynVueChart.vue +11 -5
- package/data/layers/full/component/component:syn-radio-button/angular/radio-button.component.ts +14 -14
- package/data/layers/full/component/component:syn-radio-button/components/radio-button.component.ts +45 -25
- package/data/layers/full/component/component:syn-radio-button/components/radio-button.styles.ts +87 -25
- package/data/layers/full/component/component:syn-radio-button/react/radio-button.ts +1 -1
- package/data/layers/full/component/component:syn-radio-button/vue/SynVueRadioButton.vue +6 -6
- package/data/layers/full/component/component:syn-radio-group/components/radio-group.component.ts +23 -11
- package/data/layers/full/component/component:syn-radio-group/components/radio-group.styles.ts +51 -6
- package/data/layers/full/setup/setup:angular-package/angular/CHANGELOG.md +38 -0
- package/data/layers/full/setup/setup:angular-package/angular/package.json +1 -1
- package/data/layers/full/setup/setup:components-package/components/CHANGELOG.md +36 -0
- package/data/layers/full/setup/setup:components-package/components/package.json +1 -1
- package/data/layers/full/setup/setup:react-package/react/CHANGELOG.md +28 -0
- package/data/layers/full/setup/setup:react-package/react/package.json +1 -1
- package/data/layers/full/setup/setup:react-package/react/syn-jsx-elements.ts +4 -4
- package/data/layers/full/setup/setup:tokens-package/tokens/CHANGELOG.md +31 -0
- package/data/layers/full/setup/setup:tokens-package/tokens/package.json +1 -1
- package/data/layers/full/setup/setup:vue-package/vue/CHANGELOG.md +38 -0
- package/data/layers/full/setup/setup:vue-package/vue/package.json +1 -1
- package/data/layers/full/tokens/charts/js/index.d.ts +275 -265
- package/data/layers/full/tokens/charts/js/index.js +143 -133
- package/data/layers/full/tokens/charts/scss/_tokens.scss +135 -133
- package/data/layers/full/tokens/charts/themes/sick2025_dark.css +135 -133
- package/data/layers/full/tokens/charts/themes/sick2025_light.css +135 -133
- package/data/layers/full/tokens/figma-variables/sick2018-dark.json +20 -0
- package/data/layers/full/tokens/figma-variables/sick2018-light.json +20 -0
- package/data/layers/full/tokens/figma-variables/sick2025-dark.json +20 -0
- package/data/layers/full/tokens/figma-variables/sick2025-light.json +20 -0
- package/data/layers/full/tokens/js/index.d.ts +31 -1
- package/data/layers/full/tokens/js/index.js +31 -1
- package/data/layers/full/tokens/scss/_tokens.scss +7 -1
- package/data/layers/full/tokens/themes/sick2018_dark.css +7 -1
- package/data/layers/full/tokens/themes/sick2018_light.css +7 -1
- package/data/layers/full/tokens/themes/sick2025_dark.css +7 -1
- package/data/layers/full/tokens/themes/sick2025_light.css +7 -1
- package/data/layers/interface/component/component:syn-chart.json +5 -5
- package/data/layers/interface/component/component:syn-chart.md +4 -4
- package/data/layers/interface/component/component:syn-radio-button.json +14 -12
- package/data/layers/interface/component/component:syn-radio-button.md +6 -4
- package/data/layers/rules/component/component:syn-radio-button.md +16 -11
- package/data/manifest.json +1 -1
- package/dist/intentPolicy/domains/input/capabilities.js +4 -0
- package/dist/intentPolicy/domains/input/patterns.js +9 -0
- package/package.json +5 -5
- package/data/layers/full/component/component:syn-button/components/button.custom.styles.ts +0 -245
- package/data/layers/full/component/component:syn-button-group/components/button-group.custom.styles.ts +0 -5
|
@@ -1,664 +1,674 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @synergy-design-system/tokens version 3.
|
|
2
|
+
* @synergy-design-system/tokens version 3.17.0
|
|
3
3
|
* SICK Global UX Foundation
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* @type {string}
|
|
8
8
|
*/
|
|
9
|
-
export const
|
|
9
|
+
export const SynChartCategorical10 = 'var(--syn-chart-categorical-10)';
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
12
|
* @type {string}
|
|
13
13
|
*/
|
|
14
|
-
export const
|
|
14
|
+
export const SynChartCategorical11 = 'var(--syn-chart-categorical-11)';
|
|
15
15
|
|
|
16
16
|
/**
|
|
17
17
|
* @type {string}
|
|
18
18
|
*/
|
|
19
|
-
export const
|
|
19
|
+
export const SynChartCategorical12 = 'var(--syn-chart-categorical-12)';
|
|
20
20
|
|
|
21
21
|
/**
|
|
22
22
|
* @type {string}
|
|
23
23
|
*/
|
|
24
|
-
export const
|
|
24
|
+
export const SynChartCategorical01 = 'var(--syn-chart-categorical-01)';
|
|
25
25
|
|
|
26
26
|
/**
|
|
27
27
|
* @type {string}
|
|
28
28
|
*/
|
|
29
|
-
export const
|
|
29
|
+
export const SynChartCategorical02 = 'var(--syn-chart-categorical-02)';
|
|
30
30
|
|
|
31
31
|
/**
|
|
32
32
|
* @type {string}
|
|
33
33
|
*/
|
|
34
|
-
export const
|
|
34
|
+
export const SynChartCategorical03 = 'var(--syn-chart-categorical-03)';
|
|
35
35
|
|
|
36
36
|
/**
|
|
37
37
|
* @type {string}
|
|
38
38
|
*/
|
|
39
|
-
export const
|
|
39
|
+
export const SynChartCategorical04 = 'var(--syn-chart-categorical-04)';
|
|
40
40
|
|
|
41
41
|
/**
|
|
42
42
|
* @type {string}
|
|
43
43
|
*/
|
|
44
|
-
export const
|
|
44
|
+
export const SynChartCategorical05 = 'var(--syn-chart-categorical-05)';
|
|
45
45
|
|
|
46
46
|
/**
|
|
47
47
|
* @type {string}
|
|
48
48
|
*/
|
|
49
|
-
export const
|
|
49
|
+
export const SynChartCategorical06 = 'var(--syn-chart-categorical-06)';
|
|
50
50
|
|
|
51
51
|
/**
|
|
52
52
|
* @type {string}
|
|
53
53
|
*/
|
|
54
|
-
export const
|
|
54
|
+
export const SynChartCategorical07 = 'var(--syn-chart-categorical-07)';
|
|
55
55
|
|
|
56
56
|
/**
|
|
57
57
|
* @type {string}
|
|
58
58
|
*/
|
|
59
|
-
export const
|
|
59
|
+
export const SynChartCategorical08 = 'var(--syn-chart-categorical-08)';
|
|
60
60
|
|
|
61
61
|
/**
|
|
62
62
|
* @type {string}
|
|
63
63
|
*/
|
|
64
|
-
export const
|
|
64
|
+
export const SynChartCategorical09 = 'var(--syn-chart-categorical-09)';
|
|
65
65
|
|
|
66
66
|
/**
|
|
67
67
|
* @type {string}
|
|
68
68
|
*/
|
|
69
|
-
export const
|
|
69
|
+
export const SynChartGridLinesColor = 'var(--syn-chart-grid-lines-color)';
|
|
70
70
|
|
|
71
71
|
/**
|
|
72
72
|
* @type {string}
|
|
73
73
|
*/
|
|
74
|
-
export const
|
|
74
|
+
export const SynChartGridLinesColorEmphasize = 'var(--syn-chart-grid-lines-color-emphasize)';
|
|
75
75
|
|
|
76
76
|
/**
|
|
77
77
|
* @type {string}
|
|
78
78
|
*/
|
|
79
|
-
export const
|
|
79
|
+
export const SynChartSequential01_10 = 'var(--syn-chart-sequential-01-10)';
|
|
80
80
|
|
|
81
81
|
/**
|
|
82
82
|
* @type {string}
|
|
83
83
|
*/
|
|
84
|
-
export const
|
|
84
|
+
export const SynChartSequential01_20 = 'var(--syn-chart-sequential-01-20)';
|
|
85
85
|
|
|
86
86
|
/**
|
|
87
87
|
* @type {string}
|
|
88
88
|
*/
|
|
89
|
-
export const
|
|
89
|
+
export const SynChartSequential01_30 = 'var(--syn-chart-sequential-01-30)';
|
|
90
90
|
|
|
91
91
|
/**
|
|
92
92
|
* @type {string}
|
|
93
93
|
*/
|
|
94
|
-
export const
|
|
94
|
+
export const SynChartSequential01_40 = 'var(--syn-chart-sequential-01-40)';
|
|
95
95
|
|
|
96
96
|
/**
|
|
97
97
|
* @type {string}
|
|
98
98
|
*/
|
|
99
|
-
export const
|
|
99
|
+
export const SynChartSequential01_50 = 'var(--syn-chart-sequential-01-50)';
|
|
100
100
|
|
|
101
101
|
/**
|
|
102
102
|
* @type {string}
|
|
103
103
|
*/
|
|
104
|
-
export const
|
|
104
|
+
export const SynChartSequential01_60 = 'var(--syn-chart-sequential-01-60)';
|
|
105
105
|
|
|
106
106
|
/**
|
|
107
107
|
* @type {string}
|
|
108
108
|
*/
|
|
109
|
-
export const
|
|
109
|
+
export const SynChartSequential01_70 = 'var(--syn-chart-sequential-01-70)';
|
|
110
110
|
|
|
111
111
|
/**
|
|
112
112
|
* @type {string}
|
|
113
113
|
*/
|
|
114
|
-
export const
|
|
114
|
+
export const SynChartSequential01_80 = 'var(--syn-chart-sequential-01-80)';
|
|
115
115
|
|
|
116
116
|
/**
|
|
117
117
|
* @type {string}
|
|
118
118
|
*/
|
|
119
|
-
export const
|
|
119
|
+
export const SynChartSequential01_90 = 'var(--syn-chart-sequential-01-90)';
|
|
120
120
|
|
|
121
121
|
/**
|
|
122
122
|
* @type {string}
|
|
123
123
|
*/
|
|
124
|
-
export const
|
|
124
|
+
export const SynChartSequential01_100 = 'var(--syn-chart-sequential-01-100)';
|
|
125
125
|
|
|
126
126
|
/**
|
|
127
127
|
* @type {string}
|
|
128
128
|
*/
|
|
129
|
-
export const
|
|
129
|
+
export const SynChartSequential02_10 = 'var(--syn-chart-sequential-02-10)';
|
|
130
130
|
|
|
131
131
|
/**
|
|
132
132
|
* @type {string}
|
|
133
133
|
*/
|
|
134
|
-
export const
|
|
134
|
+
export const SynChartSequential02_20 = 'var(--syn-chart-sequential-02-20)';
|
|
135
135
|
|
|
136
136
|
/**
|
|
137
137
|
* @type {string}
|
|
138
138
|
*/
|
|
139
|
-
export const
|
|
139
|
+
export const SynChartSequential02_30 = 'var(--syn-chart-sequential-02-30)';
|
|
140
140
|
|
|
141
141
|
/**
|
|
142
142
|
* @type {string}
|
|
143
143
|
*/
|
|
144
|
-
export const
|
|
144
|
+
export const SynChartSequential02_40 = 'var(--syn-chart-sequential-02-40)';
|
|
145
145
|
|
|
146
146
|
/**
|
|
147
147
|
* @type {string}
|
|
148
148
|
*/
|
|
149
|
-
export const
|
|
149
|
+
export const SynChartSequential02_50 = 'var(--syn-chart-sequential-02-50)';
|
|
150
150
|
|
|
151
151
|
/**
|
|
152
152
|
* @type {string}
|
|
153
153
|
*/
|
|
154
|
-
export const
|
|
154
|
+
export const SynChartSequential02_60 = 'var(--syn-chart-sequential-02-60)';
|
|
155
155
|
|
|
156
156
|
/**
|
|
157
157
|
* @type {string}
|
|
158
158
|
*/
|
|
159
|
-
export const
|
|
159
|
+
export const SynChartSequential02_70 = 'var(--syn-chart-sequential-02-70)';
|
|
160
160
|
|
|
161
161
|
/**
|
|
162
162
|
* @type {string}
|
|
163
163
|
*/
|
|
164
|
-
export const
|
|
164
|
+
export const SynChartSequential02_80 = 'var(--syn-chart-sequential-02-80)';
|
|
165
165
|
|
|
166
166
|
/**
|
|
167
167
|
* @type {string}
|
|
168
168
|
*/
|
|
169
|
-
export const
|
|
169
|
+
export const SynChartSequential02_90 = 'var(--syn-chart-sequential-02-90)';
|
|
170
170
|
|
|
171
171
|
/**
|
|
172
172
|
* @type {string}
|
|
173
173
|
*/
|
|
174
|
-
export const
|
|
174
|
+
export const SynChartSequential02_100 = 'var(--syn-chart-sequential-02-100)';
|
|
175
175
|
|
|
176
176
|
/**
|
|
177
177
|
* @type {string}
|
|
178
178
|
*/
|
|
179
|
-
export const
|
|
179
|
+
export const SynChartSequential03_10 = 'var(--syn-chart-sequential-03-10)';
|
|
180
180
|
|
|
181
181
|
/**
|
|
182
182
|
* @type {string}
|
|
183
183
|
*/
|
|
184
|
-
export const
|
|
184
|
+
export const SynChartSequential03_20 = 'var(--syn-chart-sequential-03-20)';
|
|
185
185
|
|
|
186
186
|
/**
|
|
187
187
|
* @type {string}
|
|
188
188
|
*/
|
|
189
|
-
export const
|
|
189
|
+
export const SynChartSequential03_30 = 'var(--syn-chart-sequential-03-30)';
|
|
190
190
|
|
|
191
191
|
/**
|
|
192
192
|
* @type {string}
|
|
193
193
|
*/
|
|
194
|
-
export const
|
|
194
|
+
export const SynChartSequential03_40 = 'var(--syn-chart-sequential-03-40)';
|
|
195
195
|
|
|
196
196
|
/**
|
|
197
197
|
* @type {string}
|
|
198
198
|
*/
|
|
199
|
-
export const
|
|
199
|
+
export const SynChartSequential03_50 = 'var(--syn-chart-sequential-03-50)';
|
|
200
200
|
|
|
201
201
|
/**
|
|
202
202
|
* @type {string}
|
|
203
203
|
*/
|
|
204
|
-
export const
|
|
204
|
+
export const SynChartSequential03_60 = 'var(--syn-chart-sequential-03-60)';
|
|
205
205
|
|
|
206
206
|
/**
|
|
207
207
|
* @type {string}
|
|
208
208
|
*/
|
|
209
|
-
export const
|
|
209
|
+
export const SynChartSequential03_70 = 'var(--syn-chart-sequential-03-70)';
|
|
210
210
|
|
|
211
211
|
/**
|
|
212
212
|
* @type {string}
|
|
213
213
|
*/
|
|
214
|
-
export const
|
|
214
|
+
export const SynChartSequential03_80 = 'var(--syn-chart-sequential-03-80)';
|
|
215
215
|
|
|
216
216
|
/**
|
|
217
217
|
* @type {string}
|
|
218
218
|
*/
|
|
219
|
-
export const
|
|
219
|
+
export const SynChartSequential03_90 = 'var(--syn-chart-sequential-03-90)';
|
|
220
220
|
|
|
221
221
|
/**
|
|
222
222
|
* @type {string}
|
|
223
223
|
*/
|
|
224
|
-
export const
|
|
224
|
+
export const SynChartSequential03_100 = 'var(--syn-chart-sequential-03-100)';
|
|
225
225
|
|
|
226
226
|
/**
|
|
227
227
|
* @type {string}
|
|
228
228
|
*/
|
|
229
|
-
export const
|
|
229
|
+
export const SynChartSequential04_10 = 'var(--syn-chart-sequential-04-10)';
|
|
230
230
|
|
|
231
231
|
/**
|
|
232
232
|
* @type {string}
|
|
233
233
|
*/
|
|
234
|
-
export const
|
|
234
|
+
export const SynChartSequential04_20 = 'var(--syn-chart-sequential-04-20)';
|
|
235
235
|
|
|
236
236
|
/**
|
|
237
237
|
* @type {string}
|
|
238
238
|
*/
|
|
239
|
-
export const
|
|
239
|
+
export const SynChartSequential04_30 = 'var(--syn-chart-sequential-04-30)';
|
|
240
240
|
|
|
241
241
|
/**
|
|
242
242
|
* @type {string}
|
|
243
243
|
*/
|
|
244
|
-
export const
|
|
244
|
+
export const SynChartSequential04_40 = 'var(--syn-chart-sequential-04-40)';
|
|
245
245
|
|
|
246
246
|
/**
|
|
247
247
|
* @type {string}
|
|
248
248
|
*/
|
|
249
|
-
export const
|
|
249
|
+
export const SynChartSequential04_50 = 'var(--syn-chart-sequential-04-50)';
|
|
250
250
|
|
|
251
251
|
/**
|
|
252
252
|
* @type {string}
|
|
253
253
|
*/
|
|
254
|
-
export const
|
|
254
|
+
export const SynChartSequential04_60 = 'var(--syn-chart-sequential-04-60)';
|
|
255
255
|
|
|
256
256
|
/**
|
|
257
257
|
* @type {string}
|
|
258
258
|
*/
|
|
259
|
-
export const
|
|
259
|
+
export const SynChartSequential04_70 = 'var(--syn-chart-sequential-04-70)';
|
|
260
260
|
|
|
261
261
|
/**
|
|
262
262
|
* @type {string}
|
|
263
263
|
*/
|
|
264
|
-
export const
|
|
264
|
+
export const SynChartSequential04_80 = 'var(--syn-chart-sequential-04-80)';
|
|
265
265
|
|
|
266
266
|
/**
|
|
267
267
|
* @type {string}
|
|
268
268
|
*/
|
|
269
|
-
export const
|
|
269
|
+
export const SynChartSequential04_90 = 'var(--syn-chart-sequential-04-90)';
|
|
270
270
|
|
|
271
271
|
/**
|
|
272
272
|
* @type {string}
|
|
273
273
|
*/
|
|
274
|
-
export const
|
|
274
|
+
export const SynChartSequential04_100 = 'var(--syn-chart-sequential-04-100)';
|
|
275
275
|
|
|
276
276
|
/**
|
|
277
277
|
* @type {string}
|
|
278
278
|
*/
|
|
279
|
-
export const
|
|
279
|
+
export const SynChartSequential05_10 = 'var(--syn-chart-sequential-05-10)';
|
|
280
280
|
|
|
281
281
|
/**
|
|
282
282
|
* @type {string}
|
|
283
283
|
*/
|
|
284
|
-
export const
|
|
284
|
+
export const SynChartSequential05_20 = 'var(--syn-chart-sequential-05-20)';
|
|
285
285
|
|
|
286
286
|
/**
|
|
287
287
|
* @type {string}
|
|
288
288
|
*/
|
|
289
|
-
export const
|
|
289
|
+
export const SynChartSequential05_30 = 'var(--syn-chart-sequential-05-30)';
|
|
290
290
|
|
|
291
291
|
/**
|
|
292
292
|
* @type {string}
|
|
293
293
|
*/
|
|
294
|
-
export const
|
|
294
|
+
export const SynChartSequential05_40 = 'var(--syn-chart-sequential-05-40)';
|
|
295
295
|
|
|
296
296
|
/**
|
|
297
297
|
* @type {string}
|
|
298
298
|
*/
|
|
299
|
-
export const
|
|
299
|
+
export const SynChartSequential05_50 = 'var(--syn-chart-sequential-05-50)';
|
|
300
300
|
|
|
301
301
|
/**
|
|
302
302
|
* @type {string}
|
|
303
303
|
*/
|
|
304
|
-
export const
|
|
304
|
+
export const SynChartSequential05_60 = 'var(--syn-chart-sequential-05-60)';
|
|
305
305
|
|
|
306
306
|
/**
|
|
307
307
|
* @type {string}
|
|
308
308
|
*/
|
|
309
|
-
export const
|
|
309
|
+
export const SynChartSequential05_70 = 'var(--syn-chart-sequential-05-70)';
|
|
310
310
|
|
|
311
311
|
/**
|
|
312
312
|
* @type {string}
|
|
313
313
|
*/
|
|
314
|
-
export const
|
|
314
|
+
export const SynChartSequential05_80 = 'var(--syn-chart-sequential-05-80)';
|
|
315
315
|
|
|
316
316
|
/**
|
|
317
317
|
* @type {string}
|
|
318
318
|
*/
|
|
319
|
-
export const
|
|
319
|
+
export const SynChartSequential05_90 = 'var(--syn-chart-sequential-05-90)';
|
|
320
320
|
|
|
321
321
|
/**
|
|
322
322
|
* @type {string}
|
|
323
323
|
*/
|
|
324
|
-
export const
|
|
324
|
+
export const SynChartSequential05_100 = 'var(--syn-chart-sequential-05-100)';
|
|
325
325
|
|
|
326
326
|
/**
|
|
327
327
|
* @type {string}
|
|
328
328
|
*/
|
|
329
|
-
export const
|
|
329
|
+
export const SynChartSequential06_10 = 'var(--syn-chart-sequential-06-10)';
|
|
330
330
|
|
|
331
331
|
/**
|
|
332
332
|
* @type {string}
|
|
333
333
|
*/
|
|
334
|
-
export const
|
|
334
|
+
export const SynChartSequential06_20 = 'var(--syn-chart-sequential-06-20)';
|
|
335
335
|
|
|
336
336
|
/**
|
|
337
337
|
* @type {string}
|
|
338
338
|
*/
|
|
339
|
-
export const
|
|
339
|
+
export const SynChartSequential06_30 = 'var(--syn-chart-sequential-06-30)';
|
|
340
340
|
|
|
341
341
|
/**
|
|
342
342
|
* @type {string}
|
|
343
343
|
*/
|
|
344
|
-
export const
|
|
344
|
+
export const SynChartSequential06_40 = 'var(--syn-chart-sequential-06-40)';
|
|
345
345
|
|
|
346
346
|
/**
|
|
347
347
|
* @type {string}
|
|
348
348
|
*/
|
|
349
|
-
export const
|
|
349
|
+
export const SynChartSequential06_50 = 'var(--syn-chart-sequential-06-50)';
|
|
350
350
|
|
|
351
351
|
/**
|
|
352
352
|
* @type {string}
|
|
353
353
|
*/
|
|
354
|
-
export const
|
|
354
|
+
export const SynChartSequential06_60 = 'var(--syn-chart-sequential-06-60)';
|
|
355
355
|
|
|
356
356
|
/**
|
|
357
357
|
* @type {string}
|
|
358
358
|
*/
|
|
359
|
-
export const
|
|
359
|
+
export const SynChartSequential06_70 = 'var(--syn-chart-sequential-06-70)';
|
|
360
360
|
|
|
361
361
|
/**
|
|
362
362
|
* @type {string}
|
|
363
363
|
*/
|
|
364
|
-
export const
|
|
364
|
+
export const SynChartSequential06_80 = 'var(--syn-chart-sequential-06-80)';
|
|
365
365
|
|
|
366
366
|
/**
|
|
367
367
|
* @type {string}
|
|
368
368
|
*/
|
|
369
|
-
export const
|
|
369
|
+
export const SynChartSequential06_90 = 'var(--syn-chart-sequential-06-90)';
|
|
370
370
|
|
|
371
371
|
/**
|
|
372
372
|
* @type {string}
|
|
373
373
|
*/
|
|
374
|
-
export const
|
|
374
|
+
export const SynChartSequential06_100 = 'var(--syn-chart-sequential-06-100)';
|
|
375
375
|
|
|
376
376
|
/**
|
|
377
377
|
* @type {string}
|
|
378
378
|
*/
|
|
379
|
-
export const
|
|
379
|
+
export const SynChartSequential07_10 = 'var(--syn-chart-sequential-07-10)';
|
|
380
380
|
|
|
381
381
|
/**
|
|
382
382
|
* @type {string}
|
|
383
383
|
*/
|
|
384
|
-
export const
|
|
384
|
+
export const SynChartSequential07_20 = 'var(--syn-chart-sequential-07-20)';
|
|
385
385
|
|
|
386
386
|
/**
|
|
387
387
|
* @type {string}
|
|
388
388
|
*/
|
|
389
|
-
export const
|
|
389
|
+
export const SynChartSequential07_30 = 'var(--syn-chart-sequential-07-30)';
|
|
390
390
|
|
|
391
391
|
/**
|
|
392
392
|
* @type {string}
|
|
393
393
|
*/
|
|
394
|
-
export const
|
|
394
|
+
export const SynChartSequential07_40 = 'var(--syn-chart-sequential-07-40)';
|
|
395
395
|
|
|
396
396
|
/**
|
|
397
397
|
* @type {string}
|
|
398
398
|
*/
|
|
399
|
-
export const
|
|
399
|
+
export const SynChartSequential07_50 = 'var(--syn-chart-sequential-07-50)';
|
|
400
400
|
|
|
401
401
|
/**
|
|
402
402
|
* @type {string}
|
|
403
403
|
*/
|
|
404
|
-
export const
|
|
404
|
+
export const SynChartSequential07_60 = 'var(--syn-chart-sequential-07-60)';
|
|
405
405
|
|
|
406
406
|
/**
|
|
407
407
|
* @type {string}
|
|
408
408
|
*/
|
|
409
|
-
export const
|
|
409
|
+
export const SynChartSequential07_70 = 'var(--syn-chart-sequential-07-70)';
|
|
410
410
|
|
|
411
411
|
/**
|
|
412
412
|
* @type {string}
|
|
413
413
|
*/
|
|
414
|
-
export const
|
|
414
|
+
export const SynChartSequential07_80 = 'var(--syn-chart-sequential-07-80)';
|
|
415
415
|
|
|
416
416
|
/**
|
|
417
417
|
* @type {string}
|
|
418
418
|
*/
|
|
419
|
-
export const
|
|
419
|
+
export const SynChartSequential07_90 = 'var(--syn-chart-sequential-07-90)';
|
|
420
420
|
|
|
421
421
|
/**
|
|
422
422
|
* @type {string}
|
|
423
423
|
*/
|
|
424
|
-
export const
|
|
424
|
+
export const SynChartSequential07_100 = 'var(--syn-chart-sequential-07-100)';
|
|
425
425
|
|
|
426
426
|
/**
|
|
427
427
|
* @type {string}
|
|
428
428
|
*/
|
|
429
|
-
export const
|
|
429
|
+
export const SynChartSequentialStatusCritical10 = 'var(--syn-chart-sequential-status-critical-10)';
|
|
430
430
|
|
|
431
431
|
/**
|
|
432
432
|
* @type {string}
|
|
433
433
|
*/
|
|
434
|
-
export const
|
|
434
|
+
export const SynChartSequentialStatusCritical20 = 'var(--syn-chart-sequential-status-critical-20)';
|
|
435
435
|
|
|
436
436
|
/**
|
|
437
437
|
* @type {string}
|
|
438
438
|
*/
|
|
439
|
-
export const
|
|
439
|
+
export const SynChartSequentialStatusCritical30 = 'var(--syn-chart-sequential-status-critical-30)';
|
|
440
440
|
|
|
441
441
|
/**
|
|
442
442
|
* @type {string}
|
|
443
443
|
*/
|
|
444
|
-
export const
|
|
444
|
+
export const SynChartSequentialStatusCritical40 = 'var(--syn-chart-sequential-status-critical-40)';
|
|
445
445
|
|
|
446
446
|
/**
|
|
447
447
|
* @type {string}
|
|
448
448
|
*/
|
|
449
|
-
export const
|
|
449
|
+
export const SynChartSequentialStatusCritical50 = 'var(--syn-chart-sequential-status-critical-50)';
|
|
450
450
|
|
|
451
451
|
/**
|
|
452
452
|
* @type {string}
|
|
453
453
|
*/
|
|
454
|
-
export const
|
|
454
|
+
export const SynChartSequentialStatusCritical60 = 'var(--syn-chart-sequential-status-critical-60)';
|
|
455
455
|
|
|
456
456
|
/**
|
|
457
457
|
* @type {string}
|
|
458
458
|
*/
|
|
459
|
-
export const
|
|
459
|
+
export const SynChartSequentialStatusCritical70 = 'var(--syn-chart-sequential-status-critical-70)';
|
|
460
460
|
|
|
461
461
|
/**
|
|
462
462
|
* @type {string}
|
|
463
463
|
*/
|
|
464
|
-
export const
|
|
464
|
+
export const SynChartSequentialStatusCritical80 = 'var(--syn-chart-sequential-status-critical-80)';
|
|
465
465
|
|
|
466
466
|
/**
|
|
467
467
|
* @type {string}
|
|
468
468
|
*/
|
|
469
|
-
export const
|
|
469
|
+
export const SynChartSequentialStatusCritical90 = 'var(--syn-chart-sequential-status-critical-90)';
|
|
470
470
|
|
|
471
471
|
/**
|
|
472
472
|
* @type {string}
|
|
473
473
|
*/
|
|
474
|
-
export const
|
|
474
|
+
export const SynChartSequentialStatusCritical100 = 'var(--syn-chart-sequential-status-critical-100)';
|
|
475
475
|
|
|
476
476
|
/**
|
|
477
477
|
* @type {string}
|
|
478
478
|
*/
|
|
479
|
-
export const
|
|
479
|
+
export const SynChartSequentialStatusError10 = 'var(--syn-chart-sequential-status-error-10)';
|
|
480
480
|
|
|
481
481
|
/**
|
|
482
482
|
* @type {string}
|
|
483
483
|
*/
|
|
484
|
-
export const
|
|
484
|
+
export const SynChartSequentialStatusError20 = 'var(--syn-chart-sequential-status-error-20)';
|
|
485
485
|
|
|
486
486
|
/**
|
|
487
487
|
* @type {string}
|
|
488
488
|
*/
|
|
489
|
-
export const
|
|
489
|
+
export const SynChartSequentialStatusError30 = 'var(--syn-chart-sequential-status-error-30)';
|
|
490
490
|
|
|
491
491
|
/**
|
|
492
492
|
* @type {string}
|
|
493
493
|
*/
|
|
494
|
-
export const
|
|
494
|
+
export const SynChartSequentialStatusError40 = 'var(--syn-chart-sequential-status-error-40)';
|
|
495
495
|
|
|
496
496
|
/**
|
|
497
497
|
* @type {string}
|
|
498
498
|
*/
|
|
499
|
-
export const
|
|
499
|
+
export const SynChartSequentialStatusError50 = 'var(--syn-chart-sequential-status-error-50)';
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
502
|
* @type {string}
|
|
503
503
|
*/
|
|
504
|
-
export const
|
|
504
|
+
export const SynChartSequentialStatusError60 = 'var(--syn-chart-sequential-status-error-60)';
|
|
505
505
|
|
|
506
506
|
/**
|
|
507
507
|
* @type {string}
|
|
508
508
|
*/
|
|
509
|
-
export const
|
|
509
|
+
export const SynChartSequentialStatusError70 = 'var(--syn-chart-sequential-status-error-70)';
|
|
510
510
|
|
|
511
511
|
/**
|
|
512
512
|
* @type {string}
|
|
513
513
|
*/
|
|
514
|
-
export const
|
|
514
|
+
export const SynChartSequentialStatusError80 = 'var(--syn-chart-sequential-status-error-80)';
|
|
515
515
|
|
|
516
516
|
/**
|
|
517
517
|
* @type {string}
|
|
518
518
|
*/
|
|
519
|
-
export const
|
|
519
|
+
export const SynChartSequentialStatusError90 = 'var(--syn-chart-sequential-status-error-90)';
|
|
520
520
|
|
|
521
521
|
/**
|
|
522
522
|
* @type {string}
|
|
523
523
|
*/
|
|
524
|
-
export const
|
|
524
|
+
export const SynChartSequentialStatusError100 = 'var(--syn-chart-sequential-status-error-100)';
|
|
525
525
|
|
|
526
526
|
/**
|
|
527
527
|
* @type {string}
|
|
528
528
|
*/
|
|
529
|
-
export const
|
|
529
|
+
export const SynChartSequentialStatusInfo10 = 'var(--syn-chart-sequential-status-info-10)';
|
|
530
530
|
|
|
531
531
|
/**
|
|
532
532
|
* @type {string}
|
|
533
533
|
*/
|
|
534
|
-
export const
|
|
534
|
+
export const SynChartSequentialStatusInfo20 = 'var(--syn-chart-sequential-status-info-20)';
|
|
535
535
|
|
|
536
536
|
/**
|
|
537
537
|
* @type {string}
|
|
538
538
|
*/
|
|
539
|
-
export const
|
|
539
|
+
export const SynChartSequentialStatusInfo30 = 'var(--syn-chart-sequential-status-info-30)';
|
|
540
540
|
|
|
541
541
|
/**
|
|
542
542
|
* @type {string}
|
|
543
543
|
*/
|
|
544
|
-
export const
|
|
544
|
+
export const SynChartSequentialStatusInfo40 = 'var(--syn-chart-sequential-status-info-40)';
|
|
545
545
|
|
|
546
546
|
/**
|
|
547
547
|
* @type {string}
|
|
548
548
|
*/
|
|
549
|
-
export const
|
|
549
|
+
export const SynChartSequentialStatusInfo50 = 'var(--syn-chart-sequential-status-info-50)';
|
|
550
550
|
|
|
551
551
|
/**
|
|
552
552
|
* @type {string}
|
|
553
553
|
*/
|
|
554
|
-
export const
|
|
554
|
+
export const SynChartSequentialStatusInfo60 = 'var(--syn-chart-sequential-status-info-60)';
|
|
555
555
|
|
|
556
556
|
/**
|
|
557
557
|
* @type {string}
|
|
558
558
|
*/
|
|
559
|
-
export const
|
|
559
|
+
export const SynChartSequentialStatusInfo70 = 'var(--syn-chart-sequential-status-info-70)';
|
|
560
560
|
|
|
561
561
|
/**
|
|
562
562
|
* @type {string}
|
|
563
563
|
*/
|
|
564
|
-
export const
|
|
564
|
+
export const SynChartSequentialStatusInfo80 = 'var(--syn-chart-sequential-status-info-80)';
|
|
565
565
|
|
|
566
566
|
/**
|
|
567
567
|
* @type {string}
|
|
568
568
|
*/
|
|
569
|
-
export const
|
|
569
|
+
export const SynChartSequentialStatusInfo90 = 'var(--syn-chart-sequential-status-info-90)';
|
|
570
570
|
|
|
571
571
|
/**
|
|
572
572
|
* @type {string}
|
|
573
573
|
*/
|
|
574
|
-
export const
|
|
574
|
+
export const SynChartSequentialStatusInfo100 = 'var(--syn-chart-sequential-status-info-100)';
|
|
575
575
|
|
|
576
576
|
/**
|
|
577
577
|
* @type {string}
|
|
578
578
|
*/
|
|
579
|
-
export const
|
|
579
|
+
export const SynChartSequentialStatusSuccess10 = 'var(--syn-chart-sequential-status-success-10)';
|
|
580
580
|
|
|
581
581
|
/**
|
|
582
582
|
* @type {string}
|
|
583
583
|
*/
|
|
584
|
-
export const
|
|
584
|
+
export const SynChartSequentialStatusSuccess20 = 'var(--syn-chart-sequential-status-success-20)';
|
|
585
585
|
|
|
586
586
|
/**
|
|
587
587
|
* @type {string}
|
|
588
588
|
*/
|
|
589
|
-
export const
|
|
589
|
+
export const SynChartSequentialStatusSuccess30 = 'var(--syn-chart-sequential-status-success-30)';
|
|
590
590
|
|
|
591
591
|
/**
|
|
592
592
|
* @type {string}
|
|
593
593
|
*/
|
|
594
|
-
export const
|
|
594
|
+
export const SynChartSequentialStatusSuccess40 = 'var(--syn-chart-sequential-status-success-40)';
|
|
595
595
|
|
|
596
596
|
/**
|
|
597
597
|
* @type {string}
|
|
598
598
|
*/
|
|
599
|
-
export const
|
|
599
|
+
export const SynChartSequentialStatusSuccess50 = 'var(--syn-chart-sequential-status-success-50)';
|
|
600
600
|
|
|
601
601
|
/**
|
|
602
602
|
* @type {string}
|
|
603
603
|
*/
|
|
604
|
-
export const
|
|
604
|
+
export const SynChartSequentialStatusSuccess60 = 'var(--syn-chart-sequential-status-success-60)';
|
|
605
605
|
|
|
606
606
|
/**
|
|
607
607
|
* @type {string}
|
|
608
608
|
*/
|
|
609
|
-
export const
|
|
609
|
+
export const SynChartSequentialStatusSuccess70 = 'var(--syn-chart-sequential-status-success-70)';
|
|
610
610
|
|
|
611
611
|
/**
|
|
612
612
|
* @type {string}
|
|
613
613
|
*/
|
|
614
|
-
export const
|
|
614
|
+
export const SynChartSequentialStatusSuccess80 = 'var(--syn-chart-sequential-status-success-80)';
|
|
615
615
|
|
|
616
616
|
/**
|
|
617
617
|
* @type {string}
|
|
618
618
|
*/
|
|
619
|
-
export const
|
|
619
|
+
export const SynChartSequentialStatusSuccess90 = 'var(--syn-chart-sequential-status-success-90)';
|
|
620
620
|
|
|
621
621
|
/**
|
|
622
622
|
* @type {string}
|
|
623
623
|
*/
|
|
624
|
-
export const
|
|
624
|
+
export const SynChartSequentialStatusSuccess100 = 'var(--syn-chart-sequential-status-success-100)';
|
|
625
625
|
|
|
626
626
|
/**
|
|
627
627
|
* @type {string}
|
|
628
628
|
*/
|
|
629
|
-
export const
|
|
629
|
+
export const SynChartSequentialStatusWarning10 = 'var(--syn-chart-sequential-status-warning-10)';
|
|
630
630
|
|
|
631
631
|
/**
|
|
632
632
|
* @type {string}
|
|
633
633
|
*/
|
|
634
|
-
export const
|
|
634
|
+
export const SynChartSequentialStatusWarning20 = 'var(--syn-chart-sequential-status-warning-20)';
|
|
635
635
|
|
|
636
636
|
/**
|
|
637
637
|
* @type {string}
|
|
638
638
|
*/
|
|
639
|
-
export const
|
|
639
|
+
export const SynChartSequentialStatusWarning30 = 'var(--syn-chart-sequential-status-warning-30)';
|
|
640
640
|
|
|
641
641
|
/**
|
|
642
642
|
* @type {string}
|
|
643
643
|
*/
|
|
644
|
-
export const
|
|
644
|
+
export const SynChartSequentialStatusWarning40 = 'var(--syn-chart-sequential-status-warning-40)';
|
|
645
645
|
|
|
646
646
|
/**
|
|
647
647
|
* @type {string}
|
|
648
648
|
*/
|
|
649
|
-
export const
|
|
649
|
+
export const SynChartSequentialStatusWarning50 = 'var(--syn-chart-sequential-status-warning-50)';
|
|
650
650
|
|
|
651
651
|
/**
|
|
652
652
|
* @type {string}
|
|
653
653
|
*/
|
|
654
|
-
export const
|
|
654
|
+
export const SynChartSequentialStatusWarning60 = 'var(--syn-chart-sequential-status-warning-60)';
|
|
655
655
|
|
|
656
656
|
/**
|
|
657
657
|
* @type {string}
|
|
658
658
|
*/
|
|
659
|
-
export const
|
|
659
|
+
export const SynChartSequentialStatusWarning70 = 'var(--syn-chart-sequential-status-warning-70)';
|
|
660
660
|
|
|
661
661
|
/**
|
|
662
662
|
* @type {string}
|
|
663
663
|
*/
|
|
664
|
-
export const
|
|
664
|
+
export const SynChartSequentialStatusWarning80 = 'var(--syn-chart-sequential-status-warning-80)';
|
|
665
|
+
|
|
666
|
+
/**
|
|
667
|
+
* @type {string}
|
|
668
|
+
*/
|
|
669
|
+
export const SynChartSequentialStatusWarning90 = 'var(--syn-chart-sequential-status-warning-90)';
|
|
670
|
+
|
|
671
|
+
/**
|
|
672
|
+
* @type {string}
|
|
673
|
+
*/
|
|
674
|
+
export const SynChartSequentialStatusWarning100 = 'var(--syn-chart-sequential-status-warning-100)';
|