@fluentui/react-theme-sass 9.0.0-alpha.19 → 9.0.0-alpha.20
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 +10 -1
- package/package.json +9 -2
- package/sass/Sass.test.ts +14 -0
- package/CHANGELOG.json +0 -494
package/CHANGELOG.md
CHANGED
@@ -1,9 +1,18 @@
|
|
1
1
|
# Change Log - @fluentui/react-theme-sass
|
2
2
|
|
3
|
-
This log was last generated on
|
3
|
+
This log was last generated on Thu, 09 Nov 2023 17:23:15 GMT and should not be manually modified.
|
4
4
|
|
5
5
|
<!-- Start content -->
|
6
6
|
|
7
|
+
## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.20)
|
8
|
+
|
9
|
+
Thu, 09 Nov 2023 17:23:15 GMT
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.18..@fluentui/react-theme-sass_v9.0.0-alpha.20)
|
11
|
+
|
12
|
+
### Changes
|
13
|
+
|
14
|
+
- chore: use package.json#files setup instead of npmignore for all v9 libraries ([PR #29734](https://github.com/microsoft/fluentui/pull/29734) by martinhochel@microsoft.com)
|
15
|
+
|
7
16
|
## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.18)
|
8
17
|
|
9
18
|
Tue, 26 Sep 2023 17:49:13 GMT
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fluentui/react-theme-sass",
|
3
|
-
"version": "9.0.0-alpha.
|
3
|
+
"version": "9.0.0-alpha.20",
|
4
4
|
"description": "SASS variables referencing react-theme design tokens injected to DOM by react-provider.",
|
5
5
|
"main": "lib-commonjs/index.js",
|
6
6
|
"module": "lib/index.js",
|
@@ -48,5 +48,12 @@
|
|
48
48
|
"require": "./lib-commonjs/index.js"
|
49
49
|
},
|
50
50
|
"./package.json": "./package.json"
|
51
|
-
}
|
51
|
+
},
|
52
|
+
"files": [
|
53
|
+
"*.md",
|
54
|
+
"dist/*.d.ts",
|
55
|
+
"lib",
|
56
|
+
"lib-commonjs",
|
57
|
+
"sass"
|
58
|
+
]
|
52
59
|
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { compileString } from 'sass';
|
2
|
+
import { webLightTheme } from '@fluentui/react-theme';
|
3
|
+
|
4
|
+
describe('Sass tokens', () => {
|
5
|
+
// by referencing all react-theme tokens as SCSS variables, verifies that all the variables are exported
|
6
|
+
it('exist for all theme tokens', () => {
|
7
|
+
const data = [
|
8
|
+
'@import "sass/tokens.scss";',
|
9
|
+
...Object.keys(webLightTheme).map(tokenName => `$expected__${tokenName}: $${tokenName};`),
|
10
|
+
].join('\n');
|
11
|
+
|
12
|
+
compileString(data, { loadPaths: ['.'] });
|
13
|
+
});
|
14
|
+
});
|
package/CHANGELOG.json
DELETED
@@ -1,494 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"name": "@fluentui/react-theme-sass",
|
3
|
-
"entries": [
|
4
|
-
{
|
5
|
-
"date": "Tue, 26 Sep 2023 17:49:13 GMT",
|
6
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.18",
|
7
|
-
"version": "9.0.0-alpha.18",
|
8
|
-
"comments": {
|
9
|
-
"prerelease": [
|
10
|
-
{
|
11
|
-
"author": "yuanboxue@microsoft.com",
|
12
|
-
"package": "@fluentui/react-theme-sass",
|
13
|
-
"commit": "05a23f6f5f331841c9ac9fb63764440c543f791d",
|
14
|
-
"comment": "chore: trigger manual version bump after broken release"
|
15
|
-
}
|
16
|
-
]
|
17
|
-
}
|
18
|
-
},
|
19
|
-
{
|
20
|
-
"date": "Tue, 26 Sep 2023 15:31:43 GMT",
|
21
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.17",
|
22
|
-
"version": "9.0.0-alpha.17",
|
23
|
-
"comments": {
|
24
|
-
"prerelease": [
|
25
|
-
{
|
26
|
-
"author": "martinhochel@microsoft.com",
|
27
|
-
"package": "@fluentui/react-theme-sass",
|
28
|
-
"commit": "e61473fa10195f6ebf2308205c1e72e91b711831",
|
29
|
-
"comment": "fix: bump swc core to mitigate transpilation memory leaks"
|
30
|
-
}
|
31
|
-
]
|
32
|
-
}
|
33
|
-
},
|
34
|
-
{
|
35
|
-
"date": "Tue, 05 Sep 2023 13:29:09 GMT",
|
36
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.16",
|
37
|
-
"version": "9.0.0-alpha.16",
|
38
|
-
"comments": {
|
39
|
-
"prerelease": [
|
40
|
-
{
|
41
|
-
"author": "bernardo.sunderhus@gmail.com",
|
42
|
-
"package": "@fluentui/react-theme-sass",
|
43
|
-
"commit": "b93c2ac22355b6cb6f33dd509c6cd9c21f4fffc8",
|
44
|
-
"comment": "bumps @swc/helpers version to 0.5.1"
|
45
|
-
}
|
46
|
-
]
|
47
|
-
}
|
48
|
-
},
|
49
|
-
{
|
50
|
-
"date": "Wed, 09 Aug 2023 13:17:08 GMT",
|
51
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.15",
|
52
|
-
"version": "9.0.0-alpha.15",
|
53
|
-
"comments": {
|
54
|
-
"prerelease": [
|
55
|
-
{
|
56
|
-
"author": "miroslav.stastny@microsoft.com",
|
57
|
-
"package": "@fluentui/react-theme-sass",
|
58
|
-
"commit": "3df6e4cf274b9811b7a279d9f611d8a6c20fdab8",
|
59
|
-
"comment": "feat(tokens): add durationGentle"
|
60
|
-
}
|
61
|
-
]
|
62
|
-
}
|
63
|
-
},
|
64
|
-
{
|
65
|
-
"date": "Fri, 04 Aug 2023 08:52:56 GMT",
|
66
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.14",
|
67
|
-
"version": "9.0.0-alpha.14",
|
68
|
-
"comments": {
|
69
|
-
"prerelease": [
|
70
|
-
{
|
71
|
-
"author": "miroslav.stastny@microsoft.com",
|
72
|
-
"package": "@fluentui/react-theme-sass",
|
73
|
-
"commit": "01cc58f793345482d293c6837db64f85f552562d",
|
74
|
-
"comment": "feat(tokens): Add colorBrandStroke2Contrast and colorNeutralStrokeAlpha2"
|
75
|
-
},
|
76
|
-
{
|
77
|
-
"author": "miroslav.stastny@microsoft.com",
|
78
|
-
"package": "@fluentui/react-theme-sass",
|
79
|
-
"commit": "141424a604b98ea762cfa375fe78df8c9e6bdec8",
|
80
|
-
"comment": "feat(tokens): add status color tokens"
|
81
|
-
}
|
82
|
-
]
|
83
|
-
}
|
84
|
-
},
|
85
|
-
{
|
86
|
-
"date": "Thu, 13 Jul 2023 21:25:47 GMT",
|
87
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.13",
|
88
|
-
"version": "9.0.0-alpha.13",
|
89
|
-
"comments": {
|
90
|
-
"none": [
|
91
|
-
{
|
92
|
-
"author": "martinhochel@microsoft.com",
|
93
|
-
"package": "@fluentui/react-theme-sass",
|
94
|
-
"commit": "8a9e1018f2abb2c7608c49d32acf44e93c43cba6",
|
95
|
-
"comment": "chore: update devDependencies to use * for inner workspace dependencies"
|
96
|
-
}
|
97
|
-
]
|
98
|
-
}
|
99
|
-
},
|
100
|
-
{
|
101
|
-
"date": "Wed, 28 Jun 2023 11:12:34 GMT",
|
102
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.13",
|
103
|
-
"version": "9.0.0-alpha.13",
|
104
|
-
"comments": {
|
105
|
-
"none": [
|
106
|
-
{
|
107
|
-
"author": "martinhochel@microsoft.com",
|
108
|
-
"package": "@fluentui/react-theme-sass",
|
109
|
-
"commit": "fbe878e9c9785588197481f172c42c2c0a230292",
|
110
|
-
"comment": "fix: update .npmignore to unify v8 packages and exclude project.json"
|
111
|
-
}
|
112
|
-
]
|
113
|
-
}
|
114
|
-
},
|
115
|
-
{
|
116
|
-
"date": "Tue, 20 Jun 2023 12:39:05 GMT",
|
117
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.13",
|
118
|
-
"version": "9.0.0-alpha.13",
|
119
|
-
"comments": {
|
120
|
-
"prerelease": [
|
121
|
-
{
|
122
|
-
"author": "miroslav.stastny@microsoft.com",
|
123
|
-
"package": "@fluentui/react-theme-sass",
|
124
|
-
"commit": "7516a6bde1bd7b8c957ca479ffcb0e737e9ca693",
|
125
|
-
"comment": "Add theme tokens"
|
126
|
-
},
|
127
|
-
{
|
128
|
-
"author": "beachball",
|
129
|
-
"package": "@fluentui/react-theme-sass",
|
130
|
-
"comment": "Bump @fluentui/react-theme to v9.1.9",
|
131
|
-
"commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
|
132
|
-
}
|
133
|
-
]
|
134
|
-
}
|
135
|
-
},
|
136
|
-
{
|
137
|
-
"date": "Wed, 24 May 2023 20:45:36 GMT",
|
138
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.12",
|
139
|
-
"version": "9.0.0-alpha.12",
|
140
|
-
"comments": {
|
141
|
-
"none": [
|
142
|
-
{
|
143
|
-
"author": "olfedias@microsoft.com",
|
144
|
-
"package": "@fluentui/react-theme-sass",
|
145
|
-
"commit": "69e0617a93cb44ef42f3bd19284b7dc5fe27fed3",
|
146
|
-
"comment": "chore: update test-ssr script"
|
147
|
-
}
|
148
|
-
]
|
149
|
-
}
|
150
|
-
},
|
151
|
-
{
|
152
|
-
"date": "Thu, 18 May 2023 00:39:18 GMT",
|
153
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.12",
|
154
|
-
"version": "9.0.0-alpha.12",
|
155
|
-
"comments": {
|
156
|
-
"none": [
|
157
|
-
{
|
158
|
-
"author": "olfedias@microsoft.com",
|
159
|
-
"package": "@fluentui/react-theme-sass",
|
160
|
-
"commit": "06cd515eda59a3078bfe32f9cc7c1f281cd20208",
|
161
|
-
"comment": "chore: add test-ssr script to v9 packages"
|
162
|
-
}
|
163
|
-
]
|
164
|
-
}
|
165
|
-
},
|
166
|
-
{
|
167
|
-
"date": "Fri, 12 May 2023 20:27:57 GMT",
|
168
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.12",
|
169
|
-
"version": "9.0.0-alpha.12",
|
170
|
-
"comments": {
|
171
|
-
"prerelease": [
|
172
|
-
{
|
173
|
-
"author": "olfedias@microsoft.com",
|
174
|
-
"package": "@fluentui/react-theme-sass",
|
175
|
-
"commit": "c28decb23d191a0daaaf6d5d1832429715102129",
|
176
|
-
"comment": "chore: exclude .swcrc from being published"
|
177
|
-
},
|
178
|
-
{
|
179
|
-
"author": "beachball",
|
180
|
-
"package": "@fluentui/react-theme-sass",
|
181
|
-
"comment": "Bump @fluentui/react-theme to v9.1.8",
|
182
|
-
"commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
|
183
|
-
}
|
184
|
-
],
|
185
|
-
"none": [
|
186
|
-
{
|
187
|
-
"author": "martinhochel@microsoft.com",
|
188
|
-
"package": "@fluentui/react-theme-sass",
|
189
|
-
"commit": "dbda7fa69e3000aaf8dd4a061e254ebd35198b8e",
|
190
|
-
"comment": "fix: update npmignore files to fix npm8/node16 regression how npm publish works"
|
191
|
-
}
|
192
|
-
]
|
193
|
-
}
|
194
|
-
},
|
195
|
-
{
|
196
|
-
"date": "Mon, 17 Apr 2023 17:54:00 GMT",
|
197
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.11",
|
198
|
-
"version": "9.0.0-alpha.11",
|
199
|
-
"comments": {
|
200
|
-
"prerelease": [
|
201
|
-
{
|
202
|
-
"author": "olfedias@microsoft.com",
|
203
|
-
"package": "@fluentui/react-theme-sass",
|
204
|
-
"commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8",
|
205
|
-
"comment": "fix: add \"style\" to exports field"
|
206
|
-
}
|
207
|
-
]
|
208
|
-
}
|
209
|
-
},
|
210
|
-
{
|
211
|
-
"date": "Tue, 21 Mar 2023 21:23:11 GMT",
|
212
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.10",
|
213
|
-
"version": "9.0.0-alpha.10",
|
214
|
-
"comments": {
|
215
|
-
"prerelease": [
|
216
|
-
{
|
217
|
-
"author": "tristan.watanabe@gmail.com",
|
218
|
-
"package": "@fluentui/react-theme-sass",
|
219
|
-
"commit": "ead1c6d4c2ac3f3596b62b8cbc07b0a03041f11f",
|
220
|
-
"comment": "fix: add node field to package.json exports map."
|
221
|
-
},
|
222
|
-
{
|
223
|
-
"author": "tristan.watanabe@gmail.com",
|
224
|
-
"package": "@fluentui/react-theme-sass",
|
225
|
-
"commit": "2fac1a139149bd13b76b1306207bc988dca9c72c",
|
226
|
-
"comment": "chore: migrate to swc transpilation approach."
|
227
|
-
},
|
228
|
-
{
|
229
|
-
"author": "beachball",
|
230
|
-
"package": "@fluentui/react-theme-sass",
|
231
|
-
"comment": "Bump @fluentui/react-theme to v9.1.7",
|
232
|
-
"commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
|
233
|
-
}
|
234
|
-
]
|
235
|
-
}
|
236
|
-
},
|
237
|
-
{
|
238
|
-
"date": "Wed, 15 Mar 2023 10:19:53 GMT",
|
239
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.9",
|
240
|
-
"version": "9.0.0-alpha.9",
|
241
|
-
"comments": {
|
242
|
-
"prerelease": [
|
243
|
-
{
|
244
|
-
"author": "miroslav.stastny@microsoft.com",
|
245
|
-
"package": "@fluentui/react-theme-sass",
|
246
|
-
"commit": "76e6598eae0c9247fb7f8834c1e24d8e864bf5df",
|
247
|
-
"comment": "feat(tokens): Add colorNeutralBackgroundAlpha and colorNeutralStrokeAlpha tokens"
|
248
|
-
},
|
249
|
-
{
|
250
|
-
"author": "beachball",
|
251
|
-
"package": "@fluentui/react-theme-sass",
|
252
|
-
"comment": "Bump @fluentui/react-theme to v9.1.6",
|
253
|
-
"commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
|
254
|
-
}
|
255
|
-
]
|
256
|
-
}
|
257
|
-
},
|
258
|
-
{
|
259
|
-
"date": "Mon, 16 Jan 2023 08:38:51 GMT",
|
260
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.8",
|
261
|
-
"version": "9.0.0-alpha.8",
|
262
|
-
"comments": {
|
263
|
-
"none": [
|
264
|
-
{
|
265
|
-
"author": "martinhochel@microsoft.com",
|
266
|
-
"package": "@fluentui/react-theme-sass",
|
267
|
-
"commit": "64bb45980d68de1219c6b36a7db5363f0a9cff9f",
|
268
|
-
"comment": "chore: migrate to packaged scripts"
|
269
|
-
}
|
270
|
-
]
|
271
|
-
}
|
272
|
-
},
|
273
|
-
{
|
274
|
-
"date": "Wed, 04 Jan 2023 01:40:39 GMT",
|
275
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.7",
|
276
|
-
"version": "9.0.0-alpha.7",
|
277
|
-
"comments": {
|
278
|
-
"none": [
|
279
|
-
{
|
280
|
-
"author": "martinhochel@microsoft.com",
|
281
|
-
"package": "@fluentui/react-theme-sass",
|
282
|
-
"commit": "4ec2b998b294d6d9c3196d3d82893bdd97d0c105",
|
283
|
-
"comment": "chore(scripts): move index.ts to to follow sub-folder domain packaging"
|
284
|
-
},
|
285
|
-
{
|
286
|
-
"author": "martinhochel@microsoft.com",
|
287
|
-
"package": "@fluentui/react-theme-sass",
|
288
|
-
"commit": "194b0cf0cc27c1c1233aa945f09b3ad29778d8ca",
|
289
|
-
"comment": "chore(scripts): use for @fluentui/scripts version within all package.json"
|
290
|
-
}
|
291
|
-
]
|
292
|
-
}
|
293
|
-
},
|
294
|
-
{
|
295
|
-
"date": "Wed, 21 Dec 2022 10:20:33 GMT",
|
296
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.7",
|
297
|
-
"version": "9.0.0-alpha.7",
|
298
|
-
"comments": {
|
299
|
-
"prerelease": [
|
300
|
-
{
|
301
|
-
"author": "beachball",
|
302
|
-
"package": "@fluentui/react-theme-sass",
|
303
|
-
"comment": "Bump @fluentui/react-theme to v9.1.5",
|
304
|
-
"commit": "66bf89f634cad4a275e957d7a2214c7e73ff8c2e"
|
305
|
-
}
|
306
|
-
]
|
307
|
-
}
|
308
|
-
},
|
309
|
-
{
|
310
|
-
"date": "Tue, 20 Dec 2022 14:59:31 GMT",
|
311
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.6",
|
312
|
-
"version": "9.0.0-alpha.6",
|
313
|
-
"comments": {
|
314
|
-
"prerelease": [
|
315
|
-
{
|
316
|
-
"author": "miroslav.stastny@microsoft.com",
|
317
|
-
"package": "@fluentui/react-theme-sass",
|
318
|
-
"commit": "43e7eb9324b43d02d8d828ff722ed3f3858f3d30",
|
319
|
-
"comment": "feat: add new tokens"
|
320
|
-
},
|
321
|
-
{
|
322
|
-
"author": "beachball",
|
323
|
-
"package": "@fluentui/react-theme-sass",
|
324
|
-
"comment": "Bump @fluentui/react-theme to v9.1.4",
|
325
|
-
"commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
|
326
|
-
}
|
327
|
-
]
|
328
|
-
}
|
329
|
-
},
|
330
|
-
{
|
331
|
-
"date": "Mon, 05 Dec 2022 18:29:37 GMT",
|
332
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.5",
|
333
|
-
"version": "9.0.0-alpha.5",
|
334
|
-
"comments": {
|
335
|
-
"none": [
|
336
|
-
{
|
337
|
-
"author": "tristan.watanabe@gmail.com",
|
338
|
-
"package": "@fluentui/react-theme-sass",
|
339
|
-
"commit": "109f6e6966ce703169c98134f1aedbaec17d6f93",
|
340
|
-
"comment": "chore: Migrate to new package structure."
|
341
|
-
}
|
342
|
-
],
|
343
|
-
"prerelease": [
|
344
|
-
{
|
345
|
-
"author": "beachball",
|
346
|
-
"package": "@fluentui/react-theme-sass",
|
347
|
-
"comment": "Bump @fluentui/react-theme to v9.1.3",
|
348
|
-
"commit": "4c29542a51bf068e171690cc8e59c14489883912"
|
349
|
-
}
|
350
|
-
]
|
351
|
-
}
|
352
|
-
},
|
353
|
-
{
|
354
|
-
"date": "Thu, 17 Nov 2022 23:05:50 GMT",
|
355
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.4",
|
356
|
-
"version": "9.0.0-alpha.4",
|
357
|
-
"comments": {
|
358
|
-
"none": [
|
359
|
-
{
|
360
|
-
"author": "martinhochel@microsoft.com",
|
361
|
-
"package": "@fluentui/react-theme-sass",
|
362
|
-
"commit": "ea768501802d65d63ddc63fff3816fb6b5008ae4",
|
363
|
-
"comment": "chore: update package scaffold"
|
364
|
-
}
|
365
|
-
]
|
366
|
-
}
|
367
|
-
},
|
368
|
-
{
|
369
|
-
"date": "Fri, 11 Nov 2022 14:57:47 GMT",
|
370
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.4",
|
371
|
-
"version": "9.0.0-alpha.4",
|
372
|
-
"comments": {
|
373
|
-
"prerelease": [
|
374
|
-
{
|
375
|
-
"author": "martinhochel@microsoft.com",
|
376
|
-
"package": "@fluentui/react-theme-sass",
|
377
|
-
"commit": "b3907043bd8d7b650c55e8e7c3119b14f2606c38",
|
378
|
-
"comment": "fix: create valid export maps"
|
379
|
-
},
|
380
|
-
{
|
381
|
-
"author": "beachball",
|
382
|
-
"package": "@fluentui/react-theme-sass",
|
383
|
-
"comment": "Bump @fluentui/react-theme to v9.1.2",
|
384
|
-
"commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
|
385
|
-
}
|
386
|
-
]
|
387
|
-
}
|
388
|
-
},
|
389
|
-
{
|
390
|
-
"date": "Tue, 25 Oct 2022 00:35:38 GMT",
|
391
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.3",
|
392
|
-
"version": "9.0.0-alpha.3",
|
393
|
-
"comments": {
|
394
|
-
"none": [
|
395
|
-
{
|
396
|
-
"author": "miroslav.stastny@microsoft.com",
|
397
|
-
"package": "@fluentui/react-theme-sass",
|
398
|
-
"commit": "6ced976a8d0e6a0e2e207da8fe0eb810e2bd19bc",
|
399
|
-
"comment": "Update package readme"
|
400
|
-
}
|
401
|
-
]
|
402
|
-
}
|
403
|
-
},
|
404
|
-
{
|
405
|
-
"date": "Thu, 20 Oct 2022 08:39:59 GMT",
|
406
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.3",
|
407
|
-
"version": "9.0.0-alpha.3",
|
408
|
-
"comments": {
|
409
|
-
"prerelease": [
|
410
|
-
{
|
411
|
-
"author": "beachball",
|
412
|
-
"package": "@fluentui/react-theme-sass",
|
413
|
-
"comment": "Bump @fluentui/react-theme to v9.1.1",
|
414
|
-
"commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
|
415
|
-
}
|
416
|
-
]
|
417
|
-
}
|
418
|
-
},
|
419
|
-
{
|
420
|
-
"date": "Thu, 15 Sep 2022 09:49:39 GMT",
|
421
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.2",
|
422
|
-
"version": "9.0.0-alpha.2",
|
423
|
-
"comments": {
|
424
|
-
"none": [
|
425
|
-
{
|
426
|
-
"author": "martinhochel@microsoft.com",
|
427
|
-
"package": "@fluentui/react-theme-sass",
|
428
|
-
"commit": "e6cf183695d6d67a24e038c49a876224e5ed35e5",
|
429
|
-
"comment": "chore: update package scaffold"
|
430
|
-
},
|
431
|
-
{
|
432
|
-
"author": "miroslav.stastny@microsoft.com",
|
433
|
-
"package": "@fluentui/react-theme-sass",
|
434
|
-
"commit": "9c97dc2efbfe7d22b3686cb765fd93916b303642",
|
435
|
-
"comment": "react-theme-sass dev-depends on react-theme"
|
436
|
-
}
|
437
|
-
],
|
438
|
-
"prerelease": [
|
439
|
-
{
|
440
|
-
"author": "seanmonahan@microsoft.com",
|
441
|
-
"package": "@fluentui/react-theme-sass",
|
442
|
-
"commit": "1d0a72865a151962362aa3e5054ac9bf8178f09c",
|
443
|
-
"comment": "feat: add new color tokens"
|
444
|
-
},
|
445
|
-
{
|
446
|
-
"author": "miroslav.stastny@microsoft.com",
|
447
|
-
"package": "@fluentui/react-theme-sass",
|
448
|
-
"commit": "61557d7e48a7380b2fbf2bcc5c8faa4a3ed7d89f",
|
449
|
-
"comment": "feat: Add fontWeightBold"
|
450
|
-
},
|
451
|
-
{
|
452
|
-
"author": "miroslav.stastny@microsoft.com",
|
453
|
-
"package": "@fluentui/react-theme-sass",
|
454
|
-
"commit": "0137f992b99b3b8ec927be8f7aef751d27cd5830",
|
455
|
-
"comment": "fix: Rename colorNeutralForegroundInvertedStatic token to colorNeutralForegroundStaticInverted"
|
456
|
-
},
|
457
|
-
{
|
458
|
-
"author": "seanmonahan@microsoft.com",
|
459
|
-
"package": "@fluentui/react-theme-sass",
|
460
|
-
"commit": "5c78472d96502d05a10016d9502eceada4edfd8a",
|
461
|
-
"comment": "feat: add color neutral foreground inverted 2 token"
|
462
|
-
},
|
463
|
-
{
|
464
|
-
"author": "beachball",
|
465
|
-
"package": "@fluentui/react-theme-sass",
|
466
|
-
"comment": "Bump @fluentui/react-theme to v9.1.0",
|
467
|
-
"commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
|
468
|
-
}
|
469
|
-
]
|
470
|
-
}
|
471
|
-
},
|
472
|
-
{
|
473
|
-
"date": "Tue, 28 Jun 2022 15:13:22 GMT",
|
474
|
-
"tag": "@fluentui/react-theme-sass_v9.0.0-alpha.1",
|
475
|
-
"version": "9.0.0-alpha.1",
|
476
|
-
"comments": {
|
477
|
-
"prerelease": [
|
478
|
-
{
|
479
|
-
"author": "miroslav.stastny@microsoft.com",
|
480
|
-
"package": "@fluentui/react-theme-sass",
|
481
|
-
"commit": "eeed967f604dc4f6a4b6b32b6347c0ed9360294c",
|
482
|
-
"comment": "Add SASS variables mapped to CSS variables provided by react-theme"
|
483
|
-
},
|
484
|
-
{
|
485
|
-
"author": "miroslav.stastny@microsoft.com",
|
486
|
-
"package": "@fluentui/react-theme-sass",
|
487
|
-
"commit": "03e380fac7237a246774aa83b3771bbbd67be8e6",
|
488
|
-
"comment": "fix(react-theme-sass): Remove color palette tokens which are no longer present in react-theme"
|
489
|
-
}
|
490
|
-
]
|
491
|
-
}
|
492
|
-
}
|
493
|
-
]
|
494
|
-
}
|