@fluentui/web-components 3.0.0-beta.8 → 3.0.0-beta.9
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 +12 -2
- package/dist/dts/theme/design-tokens.d.ts +53 -1
- package/dist/dts/utils/benchmark-dependencies/tokens.d.ts +1 -0
- package/dist/dts/utils/benchmark-wrapper.d.ts +2 -0
- package/dist/esm/theme/design-tokens.js +53 -1
- package/dist/esm/theme/design-tokens.js.map +1 -1
- package/dist/esm/utils/benchmark-dependencies/tokens.js +2 -0
- package/dist/esm/utils/benchmark-dependencies/tokens.js.map +1 -0
- package/dist/esm/utils/benchmark-wrapper.js +18 -0
- package/dist/esm/utils/benchmark-wrapper.js.map +1 -0
- package/dist/storybook/{711.b5d63aa3.iframe.bundle.js → 284.0946b1fb.iframe.bundle.js} +2 -2
- package/dist/storybook/iframe.html +1 -1
- package/dist/storybook/{main.588112e6.iframe.bundle.js → main.59da076f.iframe.bundle.js} +2 -2
- package/dist/storybook/project.json +1 -1
- package/dist/web-components.js +106 -2
- package/dist/web-components.min.js +33 -33
- package/package.json +5 -2
- package/tensile.config.js +24 -0
- /package/dist/storybook/{711.b5d63aa3.iframe.bundle.js.LICENSE.txt → 284.0946b1fb.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/dist/storybook/{main.588112e6.iframe.bundle.js.LICENSE.txt → main.59da076f.iframe.bundle.js.LICENSE.txt} +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluentui/web-components",
|
|
3
3
|
"description": "A library of Fluent Web Components",
|
|
4
|
-
"version": "3.0.0-beta.
|
|
4
|
+
"version": "3.0.0-beta.9",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Microsoft",
|
|
7
7
|
"url": "https://discord.gg/FcSNfg4"
|
|
@@ -178,7 +178,9 @@
|
|
|
178
178
|
"scripts": {
|
|
179
179
|
"tsc": "tsc",
|
|
180
180
|
"api-extractor": "api-extractor",
|
|
181
|
+
"benchmark": "yarn clean && yarn compile:benchmark && yarn compile && node ./scripts/run-benchmarks",
|
|
181
182
|
"compile": "node ./scripts/compile",
|
|
183
|
+
"compile:benchmark": "rollup -c rollup.bench.js",
|
|
182
184
|
"clean": "node ./scripts/clean dist",
|
|
183
185
|
"generate-api": "api-extractor run --local",
|
|
184
186
|
"build": "yarn compile && rollup -c && yarn generate-api",
|
|
@@ -197,6 +199,7 @@
|
|
|
197
199
|
"devDependencies": {
|
|
198
200
|
"@microsoft/api-extractor": "7.31.2",
|
|
199
201
|
"@storybook/html": "6.5.15",
|
|
202
|
+
"@tensile-perf/web-components": "~0.1.13",
|
|
200
203
|
"rimraf": "^3.0.2",
|
|
201
204
|
"typescript": "4.7.4"
|
|
202
205
|
},
|
|
@@ -204,7 +207,7 @@
|
|
|
204
207
|
"@microsoft/fast-element": "2.0.0-beta.26",
|
|
205
208
|
"@microsoft/fast-foundation": "3.0.0-alpha.31",
|
|
206
209
|
"@microsoft/fast-web-utilities": "^6.0.0",
|
|
207
|
-
"@fluentui/tokens": "1.0.0-alpha.
|
|
210
|
+
"@fluentui/tokens": "1.0.0-alpha.16",
|
|
208
211
|
"tslib": "^2.1.0"
|
|
209
212
|
},
|
|
210
213
|
"beachball": {
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
const config = {
|
|
2
|
+
// Browsers to test against
|
|
3
|
+
browsers: ['chrome'],
|
|
4
|
+
|
|
5
|
+
// Importmaps for your test.
|
|
6
|
+
// See: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script/type/importmap
|
|
7
|
+
imports: {
|
|
8
|
+
'@tensile-perf/web-components': '/node_modules/@tensile-perf/web-components/lib/index.js',
|
|
9
|
+
'@microsoft/fast-element': '/node_modules/@microsoft/fast-element/dist/fast-element.min.js',
|
|
10
|
+
'@microsoft/fast-element/utilities.js': '/node_modules/@microsoft/fast-element/dist/esm/utilities.js',
|
|
11
|
+
'@microsoft/fast-foundation': '/node_modules/@microsoft/fast-foundation/dist/esm/index.js',
|
|
12
|
+
'@microsoft/fast-foundation/utilities.js': '/node_modules/@microsoft/fast-foundation/dist/esm/utilities/index.js',
|
|
13
|
+
'@microsoft/fast-web-utilities': '/node_modules/@microsoft/fast-web-utilities/dist/index.js',
|
|
14
|
+
'@fluentui/tokens': '/tensile-assets/benchmark-dependencies/tokens.js',
|
|
15
|
+
'@fluentui/web-components': '/node_modules/@fluentui/web-components/dist/esm/index.js',
|
|
16
|
+
'@floating-ui/dom': '/node_modules/@floating-ui/dom/dist/floating-ui.dom.esm.js',
|
|
17
|
+
'@floating-ui/core': '/node_modules/@floating-ui/core/dist/floating-ui.core.esm.js',
|
|
18
|
+
'exenv-es6': '/node_modules/exenv-es6/dist/index.js',
|
|
19
|
+
tabbable: '/node_modules/tabbable/dist/index.esm.js',
|
|
20
|
+
tslib: '/node_modules/tslib/tslib.es6.js',
|
|
21
|
+
},
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export default config;
|
|
File without changes
|
|
File without changes
|