@fluentui/react-link 0.0.0-nightly-20220302-0405.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.json +3523 -0
- package/CHANGELOG.md +1263 -0
- package/LICENSE +15 -0
- package/MIGRATION.md +33 -0
- package/README.md +32 -0
- package/SPEC.md +210 -0
- package/dist/react-link.d.ts +69 -0
- package/lib/Link.d.ts +1 -0
- package/lib/Link.js +2 -0
- package/lib/Link.js.map +1 -0
- package/lib/components/Link/Link.d.ts +6 -0
- package/lib/components/Link/Link.js +15 -0
- package/lib/components/Link/Link.js.map +1 -0
- package/lib/components/Link/Link.types.d.ts +33 -0
- package/lib/components/Link/Link.types.js +2 -0
- package/lib/components/Link/Link.types.js.map +1 -0
- package/lib/components/Link/index.d.ts +6 -0
- package/lib/components/Link/index.js +7 -0
- package/lib/components/Link/index.js.map +1 -0
- package/lib/components/Link/renderLink.d.ts +5 -0
- package/lib/components/Link/renderLink.js +15 -0
- package/lib/components/Link/renderLink.js.map +1 -0
- package/lib/components/Link/useLink.d.ts +8 -0
- package/lib/components/Link/useLink.js +36 -0
- package/lib/components/Link/useLink.js.map +1 -0
- package/lib/components/Link/useLinkState.d.ts +6 -0
- package/lib/components/Link/useLinkState.js +59 -0
- package/lib/components/Link/useLinkState.js.map +1 -0
- package/lib/components/Link/useLinkStyles.d.ts +3 -0
- package/lib/components/Link/useLinkStyles.js +83 -0
- package/lib/components/Link/useLinkStyles.js.map +1 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -0
- package/lib/index.js.map +1 -0
- package/lib/tsdoc-metadata.json +11 -0
- package/lib-commonjs/Link.d.ts +1 -0
- package/lib-commonjs/Link.js +10 -0
- package/lib-commonjs/Link.js.map +1 -0
- package/lib-commonjs/components/Link/Link.d.ts +6 -0
- package/lib-commonjs/components/Link/Link.js +26 -0
- package/lib-commonjs/components/Link/Link.js.map +1 -0
- package/lib-commonjs/components/Link/Link.types.d.ts +33 -0
- package/lib-commonjs/components/Link/Link.types.js +6 -0
- package/lib-commonjs/components/Link/Link.types.js.map +1 -0
- package/lib-commonjs/components/Link/index.d.ts +6 -0
- package/lib-commonjs/components/Link/index.js +20 -0
- package/lib-commonjs/components/Link/index.js.map +1 -0
- package/lib-commonjs/components/Link/renderLink.d.ts +5 -0
- package/lib-commonjs/components/Link/renderLink.js +26 -0
- package/lib-commonjs/components/Link/renderLink.js.map +1 -0
- package/lib-commonjs/components/Link/useLink.d.ts +8 -0
- package/lib-commonjs/components/Link/useLink.js +47 -0
- package/lib-commonjs/components/Link/useLink.js.map +1 -0
- package/lib-commonjs/components/Link/useLinkState.d.ts +6 -0
- package/lib-commonjs/components/Link/useLinkState.js +69 -0
- package/lib-commonjs/components/Link/useLinkState.js.map +1 -0
- package/lib-commonjs/components/Link/useLinkStyles.d.ts +3 -0
- package/lib-commonjs/components/Link/useLinkStyles.js +95 -0
- package/lib-commonjs/components/Link/useLinkStyles.js.map +1 -0
- package/lib-commonjs/index.d.ts +1 -0
- package/lib-commonjs/index.js +10 -0
- package/lib-commonjs/index.js.map +1 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fluentui/react-link",
|
|
3
|
+
"version": "0.0.0-nightly-20220302-0405.1",
|
|
4
|
+
"description": "Fluent UI React Link component",
|
|
5
|
+
"main": "lib-commonjs/index.js",
|
|
6
|
+
"module": "lib/index.js",
|
|
7
|
+
"typings": "lib/index.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/microsoft/fluentui"
|
|
12
|
+
},
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "just-scripts build",
|
|
16
|
+
"bundle-size": "bundle-size measure",
|
|
17
|
+
"clean": "just-scripts clean",
|
|
18
|
+
"code-style": "just-scripts code-style",
|
|
19
|
+
"just": "just-scripts",
|
|
20
|
+
"lint": "just-scripts lint",
|
|
21
|
+
"start": "yarn storybook",
|
|
22
|
+
"test": "jest --passWithNoTests",
|
|
23
|
+
"docs": "api-extractor run --config=config/api-extractor.local.json --local",
|
|
24
|
+
"build:local": "tsc -p ./tsconfig.lib.json --module esnext --emitDeclarationOnly && node ../../scripts/typescript/normalize-import --output ./dist/packages/react-link/src && yarn docs",
|
|
25
|
+
"storybook": "node ../../scripts/storybook/runner",
|
|
26
|
+
"type-check": "tsc -b tsconfig.json"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@fluentui/a11y-testing": "^0.1.0",
|
|
30
|
+
"@fluentui/eslint-plugin": "*",
|
|
31
|
+
"@fluentui/react-conformance": "*",
|
|
32
|
+
"@fluentui/react-conformance-griffel": "0.0.0-nightly-20220302-0405.1",
|
|
33
|
+
"@fluentui/scripts": "^1.0.0",
|
|
34
|
+
"@types/enzyme": "3.10.3",
|
|
35
|
+
"@types/enzyme-adapter-react-16": "1.0.3",
|
|
36
|
+
"@types/react": "16.9.42",
|
|
37
|
+
"@types/react-dom": "16.9.10",
|
|
38
|
+
"@types/react-test-renderer": "^16.0.0",
|
|
39
|
+
"enzyme": "~3.10.0",
|
|
40
|
+
"enzyme-adapter-react-16": "^1.15.0",
|
|
41
|
+
"react": "16.8.6",
|
|
42
|
+
"react-dom": "16.8.6",
|
|
43
|
+
"react-test-renderer": "^16.3.0"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@fluentui/keyboard-keys": "0.0.0-nightly-20220302-0405.1",
|
|
47
|
+
"@fluentui/react-tabster": "0.0.0-nightly-20220302-0405.1",
|
|
48
|
+
"@fluentui/react-theme": "0.0.0-nightly-20220302-0405.1",
|
|
49
|
+
"@fluentui/react-utilities": "0.0.0-nightly-20220302-0405.1",
|
|
50
|
+
"@griffel/react": "1.0.0",
|
|
51
|
+
"tslib": "^2.1.0"
|
|
52
|
+
},
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"@types/react": ">=16.8.0 <18.0.0",
|
|
55
|
+
"@types/react-dom": ">=16.8.0 <18.0.0",
|
|
56
|
+
"react": ">=16.8.0 <18.0.0",
|
|
57
|
+
"react-dom": ">=16.8.0 <18.0.0"
|
|
58
|
+
},
|
|
59
|
+
"beachball": {
|
|
60
|
+
"disallowedChangeTypes": [
|
|
61
|
+
"major",
|
|
62
|
+
"minor",
|
|
63
|
+
"patch"
|
|
64
|
+
]
|
|
65
|
+
}
|
|
66
|
+
}
|