@fluentui/react-motion-components-preview 0.0.0-nightly-20240716-0408.1

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 ADDED
@@ -0,0 +1,25 @@
1
+ # Change Log - @fluentui/react-motion-components-preview
2
+
3
+ This log was last generated on Tue, 16 Jul 2024 04:18:43 GMT and should not be manually modified.
4
+
5
+ <!-- Start content -->
6
+
7
+ ## [0.0.0-nightly-20240716-0408.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-motion-components-preview_v0.0.0-nightly-20240716-0408.1)
8
+
9
+ Tue, 16 Jul 2024 04:18:43 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-motion-components-preview_v0.1.0..@fluentui/react-motion-components-preview_v0.0.0-nightly-20240716-0408.1)
11
+
12
+ ### Changes
13
+
14
+ - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/not available) by fluentui-internal@service.microsoft.com)
15
+ - Bump @fluentui/react-motion to v0.0.0-nightly-20240716-0408.1 ([commit](https://github.com/microsoft/fluentui/commit/065d6f514f238566b6bd9ea4c6e3f7a9688ff122) by beachball)
16
+ - Bump @fluentui/react-conformance to v0.0.0-nightly-20240716-0408.1 ([commit](https://github.com/microsoft/fluentui/commit/065d6f514f238566b6bd9ea4c6e3f7a9688ff122) by beachball)
17
+ - Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20240716-0408.1 ([commit](https://github.com/microsoft/fluentui/commit/065d6f514f238566b6bd9ea4c6e3f7a9688ff122) by beachball)
18
+
19
+ ## [0.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-motion-components-preview_v0.1.0)
20
+
21
+ Mon, 15 Jul 2024 17:25:37 GMT
22
+
23
+ ### Minor changes
24
+
25
+ - feat: release preview package ([PR #31998](https://github.com/microsoft/fluentui/pull/31998) by olkatruk@microsoft.com)
package/LICENSE ADDED
@@ -0,0 +1,15 @@
1
+ @fluentui/react-motion-components-preview
2
+
3
+ Copyright (c) Microsoft Corporation
4
+
5
+ All rights reserved.
6
+
7
+ MIT License
8
+
9
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
14
+
15
+ Note: Usage of the fonts and icons referenced in Fluent UI React is subject to the terms listed at https://aka.ms/fluentui-assets-license
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @fluentui/react-motion-components-preview
2
+
3
+ **React Motion Components for [Fluent UI React](https://react.fluentui.dev/)**
4
+
5
+ These are not production-ready components and **should never be used in product**. This space is useful for testing new components whose APIs might change before final release.
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@fluentui/react-motion-components-preview",
3
+ "version": "0.0.0-nightly-20240716-0408.1",
4
+ "description": "A preview package for Fluent UI motion components, providing a collection of components",
5
+ "main": "lib-commonjs/index.js",
6
+ "module": "lib/index.js",
7
+ "typings": "./dist/index.d.ts",
8
+ "sideEffects": false,
9
+ "files": [
10
+ "*.md",
11
+ "dist/*.d.ts",
12
+ "lib",
13
+ "lib-commonjs"
14
+ ],
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/microsoft/fluentui"
18
+ },
19
+ "license": "MIT",
20
+ "scripts": {
21
+ "build": "just-scripts build",
22
+ "clean": "just-scripts clean",
23
+ "generate-api": "just-scripts generate-api",
24
+ "lint": "just-scripts lint",
25
+ "start": "yarn storybook",
26
+ "storybook": "yarn --cwd ../stories storybook",
27
+ "test": "jest --passWithNoTests",
28
+ "type-check": "just-scripts type-check"
29
+ },
30
+ "devDependencies": {
31
+ "@fluentui/eslint-plugin": "*",
32
+ "@fluentui/react-conformance": "0.0.0-nightly-20240716-0408.1",
33
+ "@fluentui/react-conformance-griffel": "0.0.0-nightly-20240716-0408.1",
34
+ "@fluentui/scripts-api-extractor": "*",
35
+ "@fluentui/scripts-tasks": "*"
36
+ },
37
+ "dependencies": {
38
+ "@fluentui/react-motion": "0.0.0-nightly-20240716-0408.1",
39
+ "@swc/helpers": "^0.5.1"
40
+ },
41
+ "peerDependencies": {
42
+ "@types/react": ">=16.14.0 <19.0.0",
43
+ "@types/react-dom": ">=16.9.0 <19.0.0",
44
+ "react": ">=16.14.0 <19.0.0",
45
+ "react-dom": ">=16.14.0 <19.0.0"
46
+ },
47
+ "exports": {
48
+ ".": {
49
+ "types": "./dist/index.d.ts",
50
+ "node": "./lib-commonjs/index.js",
51
+ "import": "./lib/index.js",
52
+ "require": "./lib-commonjs/index.js"
53
+ },
54
+ "./package.json": "./package.json"
55
+ },
56
+ "beachball": {}
57
+ }