@fluentui/web-components 2.5.3 → 2.5.4
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.json +46 -1
- package/CHANGELOG.md +11 -2
- package/dist/web-components.js +193 -43
- package/dist/web-components.min.js +21 -21
- package/package.json +5 -6
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@fluentui/web-components",
|
|
3
3
|
"description": "A library of Fluent Web Components",
|
|
4
4
|
"sideEffects": false,
|
|
5
|
-
"version": "2.5.
|
|
5
|
+
"version": "2.5.4",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Microsoft",
|
|
8
8
|
"url": "https://discord.gg/FcSNfg4"
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"prettier": "prettier --config ../../prettier.config.js --write 'src/**/(*.ts|*.html)' --ignore-path ../../.prettierignore",
|
|
32
32
|
"prettier:diff": "prettier --config ../../prettier.config.js 'src/**/(*.ts|*.html)' --ignore-path ../../.prettierignore --list-different",
|
|
33
33
|
"code-style": "npm run prettier && npm run lint",
|
|
34
|
-
"start": "yarn start-storybook -p 6006
|
|
34
|
+
"start": "yarn start-storybook -p 6006 --docs",
|
|
35
35
|
"start-storybook": "node node_modules/@storybook/html/bin/index.js",
|
|
36
|
-
"build-storybook": "node node_modules/@storybook/html/bin/build.js -o ./dist/storybook --docs
|
|
36
|
+
"build-storybook": "node node_modules/@storybook/html/bin/build.js -o ./dist/storybook --docs",
|
|
37
37
|
"test": "yarn doc:ci && yarn test-chrome:verbose",
|
|
38
38
|
"test-node": "mocha --reporter min --exit dist/esm/__test__/setup-node.js './dist/esm/**/*.spec.js'",
|
|
39
39
|
"test-node:verbose": "mocha --reporter spec --exit dist/esm/__test__/setup-node.js './dist/esm/**/*.spec.js'",
|
|
@@ -82,13 +82,12 @@
|
|
|
82
82
|
"source-map": "^0.7.3",
|
|
83
83
|
"source-map-loader": "^0.2.4",
|
|
84
84
|
"ts-loader": "^7.0.2",
|
|
85
|
-
"ts-node": "^8.0.0",
|
|
86
85
|
"webpack": "^4.43.0"
|
|
87
86
|
},
|
|
88
87
|
"dependencies": {
|
|
89
88
|
"@microsoft/fast-colors": "^5.3.0",
|
|
90
|
-
"@microsoft/fast-element": "^1.10.
|
|
91
|
-
"@microsoft/fast-foundation": "^2.46.
|
|
89
|
+
"@microsoft/fast-element": "^1.10.5",
|
|
90
|
+
"@microsoft/fast-foundation": "^2.46.13",
|
|
92
91
|
"@microsoft/fast-web-utilities": "^5.4.0",
|
|
93
92
|
"tslib": "^1.13.0"
|
|
94
93
|
}
|