@atlaskit/link-create 5.1.4 → 5.2.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 +13 -0
- package/async-select/package.json +17 -0
- package/callback-context/package.json +17 -0
- package/create-field/package.json +17 -0
- package/create-form/package.json +17 -0
- package/dist/cjs/common/constants.js +1 -1
- package/dist/cjs/entry-points/async-select.js +12 -0
- package/dist/cjs/entry-points/callback-context.js +18 -0
- package/dist/cjs/entry-points/create-field.js +12 -0
- package/dist/cjs/entry-points/create-form.js +12 -0
- package/dist/cjs/entry-points/exit-warning-modal.js +18 -0
- package/dist/cjs/entry-points/final-form.js +12 -0
- package/dist/cjs/entry-points/form-loader.js +12 -0
- package/dist/cjs/entry-points/form-spy.js +12 -0
- package/dist/cjs/entry-points/icons.js +24 -0
- package/dist/cjs/entry-points/inline-create.js +13 -0
- package/dist/cjs/entry-points/modal-create.js +13 -0
- package/dist/cjs/entry-points/select.js +18 -0
- package/dist/cjs/entry-points/text-field.js +12 -0
- package/dist/cjs/entry-points/types.js +1 -0
- package/dist/cjs/entry-points/user-picker.js +12 -0
- package/dist/cjs/index.js +13 -13
- package/dist/es2019/common/constants.js +1 -1
- package/dist/es2019/entry-points/async-select.js +1 -0
- package/dist/es2019/entry-points/callback-context.js +1 -0
- package/dist/es2019/entry-points/create-field.js +1 -0
- package/dist/es2019/entry-points/create-form.js +1 -0
- package/dist/es2019/entry-points/exit-warning-modal.js +1 -0
- package/dist/es2019/entry-points/final-form.js +1 -0
- package/dist/es2019/entry-points/form-loader.js +1 -0
- package/dist/es2019/entry-points/form-spy.js +1 -0
- package/dist/es2019/entry-points/icons.js +1 -0
- package/dist/es2019/entry-points/inline-create.js +1 -0
- package/dist/es2019/entry-points/modal-create.js +1 -0
- package/dist/es2019/entry-points/select.js +1 -0
- package/dist/es2019/entry-points/text-field.js +1 -0
- package/dist/es2019/entry-points/types.js +0 -0
- package/dist/es2019/entry-points/user-picker.js +1 -0
- package/dist/es2019/index.js +38 -1
- package/dist/esm/common/constants.js +1 -1
- package/dist/esm/entry-points/async-select.js +1 -0
- package/dist/esm/entry-points/callback-context.js +1 -0
- package/dist/esm/entry-points/create-field.js +1 -0
- package/dist/esm/entry-points/create-form.js +1 -0
- package/dist/esm/entry-points/exit-warning-modal.js +1 -0
- package/dist/esm/entry-points/final-form.js +1 -0
- package/dist/esm/entry-points/form-loader.js +1 -0
- package/dist/esm/entry-points/form-spy.js +1 -0
- package/dist/esm/entry-points/icons.js +1 -0
- package/dist/esm/entry-points/inline-create.js +1 -0
- package/dist/esm/entry-points/modal-create.js +1 -0
- package/dist/esm/entry-points/select.js +1 -0
- package/dist/esm/entry-points/text-field.js +1 -0
- package/dist/esm/entry-points/types.js +0 -0
- package/dist/esm/entry-points/user-picker.js +1 -0
- package/dist/esm/index.js +38 -1
- package/dist/types/entry-points/async-select.d.ts +1 -0
- package/dist/types/entry-points/callback-context.d.ts +1 -0
- package/dist/types/entry-points/create-field.d.ts +1 -0
- package/dist/types/entry-points/create-form.d.ts +2 -0
- package/dist/types/entry-points/exit-warning-modal.d.ts +1 -0
- package/dist/types/entry-points/final-form.d.ts +1 -0
- package/dist/types/entry-points/form-loader.d.ts +1 -0
- package/dist/types/entry-points/form-spy.d.ts +1 -0
- package/dist/types/entry-points/icons.d.ts +1 -0
- package/dist/types/entry-points/inline-create.d.ts +1 -0
- package/dist/types/entry-points/modal-create.d.ts +1 -0
- package/dist/types/entry-points/select.d.ts +2 -0
- package/dist/types/entry-points/text-field.d.ts +1 -0
- package/dist/types/entry-points/types.d.ts +1 -0
- package/dist/types/entry-points/user-picker.d.ts +1 -0
- package/dist/types/index.d.ts +26 -1
- package/dist/types-ts4.5/entry-points/async-select.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/callback-context.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/create-field.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/create-form.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/exit-warning-modal.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/final-form.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/form-loader.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/form-spy.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/icons.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/inline-create.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/modal-create.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/select.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/text-field.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/types.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/user-picker.d.ts +1 -0
- package/dist/types-ts4.5/index.d.ts +26 -1
- package/exit-warning-modal/package.json +17 -0
- package/final-form/package.json +17 -0
- package/form-loader/package.json +17 -0
- package/form-spy/package.json +17 -0
- package/icons/package.json +17 -0
- package/inline-create/package.json +17 -0
- package/link-create.docs.tsx +307 -302
- package/modal-create/package.json +17 -0
- package/package.json +6 -6
- package/select/package.json +17 -0
- package/text-field/package.json +17 -0
- package/types/package.json +17 -0
- package/user-picker/package.json +17 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-create",
|
|
3
|
-
"version": "5.1
|
|
3
|
+
"version": "5.2.1",
|
|
4
4
|
"description": "The driver component of meta creation flow",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"@atlaskit/css": "^0.19.0",
|
|
47
47
|
"@atlaskit/empty-state": "^10.2.0",
|
|
48
48
|
"@atlaskit/form": "^15.5.0",
|
|
49
|
-
"@atlaskit/icon": "^35.
|
|
49
|
+
"@atlaskit/icon": "^35.1.0",
|
|
50
50
|
"@atlaskit/icon-file-type": "^7.0.0",
|
|
51
51
|
"@atlaskit/intl-messages-provider": "^3.3.0",
|
|
52
52
|
"@atlaskit/link": "^3.4.0",
|
|
53
53
|
"@atlaskit/linking-common": "^9.11.0",
|
|
54
|
-
"@atlaskit/modal-dialog": "^15.
|
|
54
|
+
"@atlaskit/modal-dialog": "^15.2.0",
|
|
55
55
|
"@atlaskit/object": "^1.0.0",
|
|
56
56
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
57
57
|
"@atlaskit/primitives": "^19.0.0",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"@atlaskit/smart-user-picker": "^10.1.0",
|
|
60
60
|
"@atlaskit/spinner": "^19.1.0",
|
|
61
61
|
"@atlaskit/textfield": "^8.3.0",
|
|
62
|
-
"@atlaskit/theme": "^
|
|
62
|
+
"@atlaskit/theme": "^25.0.0",
|
|
63
63
|
"@atlaskit/tokens": "^13.0.0",
|
|
64
64
|
"@babel/runtime": "^7.0.0",
|
|
65
65
|
"@compiled/react": "^0.20.0",
|
|
@@ -76,8 +76,8 @@
|
|
|
76
76
|
"@af/integration-testing": "workspace:^",
|
|
77
77
|
"@af/visual-regression": "workspace:^",
|
|
78
78
|
"@atlaskit/drawer": "^12.1.0",
|
|
79
|
-
"@atlaskit/link-test-helpers": "^10.
|
|
80
|
-
"@atlaskit/popup": "^4.
|
|
79
|
+
"@atlaskit/link-test-helpers": "^10.3.0",
|
|
80
|
+
"@atlaskit/popup": "^4.21.0",
|
|
81
81
|
"@atlassian/a11y-jest-testing": "^0.11.0",
|
|
82
82
|
"@atlassian/feature-flags-test-utils": "^1.1.0",
|
|
83
83
|
"@atlassian/react-compiler-gating": "workspace:^",
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/link-create/select",
|
|
3
|
+
"main": "../dist/cjs/entry-points/select.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/select.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/select.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/select.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/select.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/link-create/text-field",
|
|
3
|
+
"main": "../dist/cjs/entry-points/text-field.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/text-field.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/text-field.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/text-field.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/text-field.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/link-create/types",
|
|
3
|
+
"main": "../dist/cjs/entry-points/types.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/types.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/types.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/types.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/types.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/link-create/user-picker",
|
|
3
|
+
"main": "../dist/cjs/entry-points/user-picker.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/user-picker.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/user-picker.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/user-picker.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/user-picker.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|