@atlaskit/textfield 5.1.2
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 +673 -0
- package/LICENSE +13 -0
- package/README.md +13 -0
- package/__perf__/default.tsx +5 -0
- package/__perf__/examples.tsx +58 -0
- package/codemods/5.0.0-lite-mode.tsx +16 -0
- package/codemods/__tests__/5.0.0-lite-mode.tsx +87 -0
- package/codemods/__tests__/remove-imports.tsx +64 -0
- package/codemods/__tests__/remove-prop.tsx +142 -0
- package/codemods/__tests__/rename-imports.tsx +85 -0
- package/codemods/migrations/remove-imports.tsx +8 -0
- package/codemods/migrations/remove-props.tsx +10 -0
- package/codemods/migrations/rename-imports.tsx +15 -0
- package/codemods/migrations/utils.tsx +375 -0
- package/dist/cjs/component-tokens.js +66 -0
- package/dist/cjs/index.js +23 -0
- package/dist/cjs/styles.js +231 -0
- package/dist/cjs/text-field.js +169 -0
- package/dist/cjs/types.js +5 -0
- package/dist/cjs/version.json +5 -0
- package/dist/es2019/component-tokens.js +46 -0
- package/dist/es2019/index.js +2 -0
- package/dist/es2019/styles.js +192 -0
- package/dist/es2019/text-field.js +129 -0
- package/dist/es2019/types.js +1 -0
- package/dist/es2019/version.json +5 -0
- package/dist/esm/component-tokens.js +46 -0
- package/dist/esm/index.js +2 -0
- package/dist/esm/styles.js +206 -0
- package/dist/esm/text-field.js +145 -0
- package/dist/esm/types.js +1 -0
- package/dist/esm/version.json +5 -0
- package/dist/types/component-tokens.d.ts +44 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/styles.d.ts +208 -0
- package/dist/types/text-field.d.ts +14 -0
- package/dist/types/types.d.ts +71 -0
- package/package.json +79 -0
package/package.json
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/textfield",
|
|
3
|
+
"version": "5.1.2",
|
|
4
|
+
"description": "A text field is an input that allows a user to write or edit text.",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"registry": "https://registry.npmjs.org/"
|
|
7
|
+
},
|
|
8
|
+
"repository": "https://bitbucket.org/atlassian/atlassian-frontend",
|
|
9
|
+
"author": "Atlassian Pty Ltd",
|
|
10
|
+
"license": "Apache-2.0",
|
|
11
|
+
"main": "dist/cjs/index.js",
|
|
12
|
+
"module": "dist/esm/index.js",
|
|
13
|
+
"module:es2019": "dist/es2019/index.js",
|
|
14
|
+
"types": "dist/types/index.d.ts",
|
|
15
|
+
"sideEffects": false,
|
|
16
|
+
"atlaskit:src": "src/index.tsx",
|
|
17
|
+
"atlassian": {
|
|
18
|
+
"team": "Design System Team",
|
|
19
|
+
"inPublicMirror": true,
|
|
20
|
+
"releaseModel": "scheduled",
|
|
21
|
+
"website": {
|
|
22
|
+
"name": "Text field"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"af:exports": {
|
|
26
|
+
".": "./src/index.tsx"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@atlaskit/analytics-next": "^8.2.0",
|
|
30
|
+
"@atlaskit/theme": "^12.0.0",
|
|
31
|
+
"@atlaskit/tokens": "^0.2.0",
|
|
32
|
+
"@babel/runtime": "^7.0.0",
|
|
33
|
+
"@emotion/core": "^10.0.9"
|
|
34
|
+
},
|
|
35
|
+
"peerDependencies": {
|
|
36
|
+
"react": "^16.8.0"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@atlaskit/avatar": "^20.5.0",
|
|
40
|
+
"@atlaskit/build-utils": "*",
|
|
41
|
+
"@atlaskit/button": "^16.1.0",
|
|
42
|
+
"@atlaskit/docs": "*",
|
|
43
|
+
"@atlaskit/form": "^8.4.0",
|
|
44
|
+
"@atlaskit/icon": "^21.9.0",
|
|
45
|
+
"@atlaskit/section-message": "^6.1.0",
|
|
46
|
+
"@atlaskit/ssr": "*",
|
|
47
|
+
"@atlaskit/toggle": "^12.3.0",
|
|
48
|
+
"@atlaskit/visual-regression": "*",
|
|
49
|
+
"@atlaskit/webdriver-runner": "*",
|
|
50
|
+
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
|
51
|
+
"@testing-library/dom": "^7.7.3",
|
|
52
|
+
"@testing-library/react": "^8.0.1",
|
|
53
|
+
"jscodeshift": "^0.13.0",
|
|
54
|
+
"react-dom": "^16.8.0",
|
|
55
|
+
"storybook-addon-performance": "^0.16.0",
|
|
56
|
+
"typescript": "3.9.6",
|
|
57
|
+
"wait-for-expect": "^1.2.0"
|
|
58
|
+
},
|
|
59
|
+
"keywords": [
|
|
60
|
+
"atlaskit",
|
|
61
|
+
"react",
|
|
62
|
+
"ui"
|
|
63
|
+
],
|
|
64
|
+
"techstack": {
|
|
65
|
+
"@atlassian/frontend": {
|
|
66
|
+
"import-structure": "atlassian-conventions"
|
|
67
|
+
},
|
|
68
|
+
"@repo/internal": {
|
|
69
|
+
"ui-components": "lite-mode",
|
|
70
|
+
"styling": "emotion",
|
|
71
|
+
"analytics": "analytics-next",
|
|
72
|
+
"theming": "tokens",
|
|
73
|
+
"design-system": "v1",
|
|
74
|
+
"deprecation": "no-deprecated-imports"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"homepage": "https://atlassian.design/components/textfield/",
|
|
78
|
+
"prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1"
|
|
79
|
+
}
|