@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.
Files changed (63) hide show
  1. package/CHANGELOG.json +3523 -0
  2. package/CHANGELOG.md +1263 -0
  3. package/LICENSE +15 -0
  4. package/MIGRATION.md +33 -0
  5. package/README.md +32 -0
  6. package/SPEC.md +210 -0
  7. package/dist/react-link.d.ts +69 -0
  8. package/lib/Link.d.ts +1 -0
  9. package/lib/Link.js +2 -0
  10. package/lib/Link.js.map +1 -0
  11. package/lib/components/Link/Link.d.ts +6 -0
  12. package/lib/components/Link/Link.js +15 -0
  13. package/lib/components/Link/Link.js.map +1 -0
  14. package/lib/components/Link/Link.types.d.ts +33 -0
  15. package/lib/components/Link/Link.types.js +2 -0
  16. package/lib/components/Link/Link.types.js.map +1 -0
  17. package/lib/components/Link/index.d.ts +6 -0
  18. package/lib/components/Link/index.js +7 -0
  19. package/lib/components/Link/index.js.map +1 -0
  20. package/lib/components/Link/renderLink.d.ts +5 -0
  21. package/lib/components/Link/renderLink.js +15 -0
  22. package/lib/components/Link/renderLink.js.map +1 -0
  23. package/lib/components/Link/useLink.d.ts +8 -0
  24. package/lib/components/Link/useLink.js +36 -0
  25. package/lib/components/Link/useLink.js.map +1 -0
  26. package/lib/components/Link/useLinkState.d.ts +6 -0
  27. package/lib/components/Link/useLinkState.js +59 -0
  28. package/lib/components/Link/useLinkState.js.map +1 -0
  29. package/lib/components/Link/useLinkStyles.d.ts +3 -0
  30. package/lib/components/Link/useLinkStyles.js +83 -0
  31. package/lib/components/Link/useLinkStyles.js.map +1 -0
  32. package/lib/index.d.ts +1 -0
  33. package/lib/index.js +2 -0
  34. package/lib/index.js.map +1 -0
  35. package/lib/tsdoc-metadata.json +11 -0
  36. package/lib-commonjs/Link.d.ts +1 -0
  37. package/lib-commonjs/Link.js +10 -0
  38. package/lib-commonjs/Link.js.map +1 -0
  39. package/lib-commonjs/components/Link/Link.d.ts +6 -0
  40. package/lib-commonjs/components/Link/Link.js +26 -0
  41. package/lib-commonjs/components/Link/Link.js.map +1 -0
  42. package/lib-commonjs/components/Link/Link.types.d.ts +33 -0
  43. package/lib-commonjs/components/Link/Link.types.js +6 -0
  44. package/lib-commonjs/components/Link/Link.types.js.map +1 -0
  45. package/lib-commonjs/components/Link/index.d.ts +6 -0
  46. package/lib-commonjs/components/Link/index.js +20 -0
  47. package/lib-commonjs/components/Link/index.js.map +1 -0
  48. package/lib-commonjs/components/Link/renderLink.d.ts +5 -0
  49. package/lib-commonjs/components/Link/renderLink.js +26 -0
  50. package/lib-commonjs/components/Link/renderLink.js.map +1 -0
  51. package/lib-commonjs/components/Link/useLink.d.ts +8 -0
  52. package/lib-commonjs/components/Link/useLink.js +47 -0
  53. package/lib-commonjs/components/Link/useLink.js.map +1 -0
  54. package/lib-commonjs/components/Link/useLinkState.d.ts +6 -0
  55. package/lib-commonjs/components/Link/useLinkState.js +69 -0
  56. package/lib-commonjs/components/Link/useLinkState.js.map +1 -0
  57. package/lib-commonjs/components/Link/useLinkStyles.d.ts +3 -0
  58. package/lib-commonjs/components/Link/useLinkStyles.js +95 -0
  59. package/lib-commonjs/components/Link/useLinkStyles.js.map +1 -0
  60. package/lib-commonjs/index.d.ts +1 -0
  61. package/lib-commonjs/index.js +10 -0
  62. package/lib-commonjs/index.js.map +1 -0
  63. 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
+ }