@atlaskit/link-create 5.1.3 → 5.2.0
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/modal-create/package.json +17 -0
- package/package.json +7 -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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/link-create
|
|
2
2
|
|
|
3
|
+
## 5.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`d91e676ebe778`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d91e676ebe778) -
|
|
8
|
+
Mark barrel exports as deprecated and add new entry points
|
|
9
|
+
|
|
10
|
+
## 5.1.4
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
3
16
|
## 5.1.3
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/link-create/async-select",
|
|
3
|
+
"main": "../dist/cjs/entry-points/async-select.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/async-select.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/async-select.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/async-select.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/async-select.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/link-create/callback-context",
|
|
3
|
+
"main": "../dist/cjs/entry-points/callback-context.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/callback-context.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/callback-context.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/callback-context.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/callback-context.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/link-create/create-field",
|
|
3
|
+
"main": "../dist/cjs/entry-points/create-field.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/create-field.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/create-field.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/create-field.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/create-field.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/link-create/create-form",
|
|
3
|
+
"main": "../dist/cjs/entry-points/create-form.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/create-form.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/create-form.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/create-form.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/create-form.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -16,7 +16,7 @@ var CREATE_FORM_MIN_HEIGHT_IN_PX = exports.CREATE_FORM_MIN_HEIGHT_IN_PX = '200';
|
|
|
16
16
|
var LINK_CREATE_FORM_POST_CREATE_FIELD = exports.LINK_CREATE_FORM_POST_CREATE_FIELD = '__post_create__';
|
|
17
17
|
var PACKAGE_DATA = exports.PACKAGE_DATA = {
|
|
18
18
|
packageName: "@atlaskit/link-create" || '',
|
|
19
|
-
packageVersion: "5.1.
|
|
19
|
+
packageVersion: "5.1.4" || '',
|
|
20
20
|
component: COMPONENT_NAME,
|
|
21
21
|
componentName: COMPONENT_NAME
|
|
22
22
|
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "AsyncSelect", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _asyncSelect.AsyncSelect;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _asyncSelect = require("../ui/create-form/async-select");
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "LinkCreateCallbackProvider", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _callbackContext.LinkCreateCallbackProvider;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "useLinkCreateCallback", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function get() {
|
|
15
|
+
return _callbackContext.useLinkCreateCallback;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
var _callbackContext = require("../controllers/callback-context");
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "CreateField", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _createField.CreateField;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _createField = require("../controllers/create-field");
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "CreateForm", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _main.CreateForm;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _main = require("../ui/create-form/main");
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "LinkCreateExitWarningProvider", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _exitWarningModalContext.ExitWarningModalProvider;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "useWithExitWarning", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function get() {
|
|
15
|
+
return _exitWarningModalContext.useWithExitWarning;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
var _exitWarningModalContext = require("../controllers/exit-warning-modal-context");
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "FORM_ERROR", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _finalForm.FORM_ERROR;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _finalForm = require("final-form");
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "CreateFormLoader", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _formLoader.CreateFormLoader;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _formLoader = require("../ui/create-form/form-loader");
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "FormSpy", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _formSpy.FormSpy;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _formSpy = require("../ui/create-form/form-spy");
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "LiveDocIcon", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _icon.LiveDocIcon;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "PageIcon", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function get() {
|
|
15
|
+
return _icon.PageIcon;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
Object.defineProperty(exports, "UrlIcon", {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: function get() {
|
|
21
|
+
return _icon.UrlIcon;
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
var _icon = require("../common/ui/icon");
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "InlineCreate", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _inlineCreate.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _inlineCreate = _interopRequireDefault(require("../ui/inline-create"));
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "default", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _modalCreate.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _modalCreate = _interopRequireDefault(require("../ui/modal-create"));
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "Select", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _select.Select;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "SiteSelect", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function get() {
|
|
15
|
+
return _select.SiteSelect;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
var _select = require("../ui/create-form/select");
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "TextField", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _textfield.TextField;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _textfield = require("../ui/create-form/textfield");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "UserPicker", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _userPicker.UserPicker;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _userPicker = require("../ui/create-form/user-picker");
|
package/dist/cjs/index.js
CHANGED
|
@@ -7,25 +7,25 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
7
7
|
Object.defineProperty(exports, "AsyncSelect", {
|
|
8
8
|
enumerable: true,
|
|
9
9
|
get: function get() {
|
|
10
|
-
return
|
|
10
|
+
return _ui.AsyncSelect;
|
|
11
11
|
}
|
|
12
12
|
});
|
|
13
13
|
Object.defineProperty(exports, "CreateField", {
|
|
14
14
|
enumerable: true,
|
|
15
15
|
get: function get() {
|
|
16
|
-
return
|
|
16
|
+
return _index.CreateField;
|
|
17
17
|
}
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "CreateForm", {
|
|
20
20
|
enumerable: true,
|
|
21
21
|
get: function get() {
|
|
22
|
-
return
|
|
22
|
+
return _ui.CreateForm;
|
|
23
23
|
}
|
|
24
24
|
});
|
|
25
25
|
Object.defineProperty(exports, "CreateFormLoader", {
|
|
26
26
|
enumerable: true,
|
|
27
27
|
get: function get() {
|
|
28
|
-
return
|
|
28
|
+
return _ui.CreateFormLoader;
|
|
29
29
|
}
|
|
30
30
|
});
|
|
31
31
|
Object.defineProperty(exports, "FORM_ERROR", {
|
|
@@ -37,13 +37,13 @@ Object.defineProperty(exports, "FORM_ERROR", {
|
|
|
37
37
|
Object.defineProperty(exports, "FormSpy", {
|
|
38
38
|
enumerable: true,
|
|
39
39
|
get: function get() {
|
|
40
|
-
return
|
|
40
|
+
return _ui.FormSpy;
|
|
41
41
|
}
|
|
42
42
|
});
|
|
43
43
|
Object.defineProperty(exports, "InlineCreate", {
|
|
44
44
|
enumerable: true,
|
|
45
45
|
get: function get() {
|
|
46
|
-
return
|
|
46
|
+
return _ui.InlineCreate;
|
|
47
47
|
}
|
|
48
48
|
});
|
|
49
49
|
Object.defineProperty(exports, "LinkCreateCallbackProvider", {
|
|
@@ -73,19 +73,19 @@ Object.defineProperty(exports, "PageIcon", {
|
|
|
73
73
|
Object.defineProperty(exports, "Select", {
|
|
74
74
|
enumerable: true,
|
|
75
75
|
get: function get() {
|
|
76
|
-
return
|
|
76
|
+
return _ui.Select;
|
|
77
77
|
}
|
|
78
78
|
});
|
|
79
79
|
Object.defineProperty(exports, "SiteSelect", {
|
|
80
80
|
enumerable: true,
|
|
81
81
|
get: function get() {
|
|
82
|
-
return
|
|
82
|
+
return _ui.SiteSelect;
|
|
83
83
|
}
|
|
84
84
|
});
|
|
85
85
|
Object.defineProperty(exports, "TextField", {
|
|
86
86
|
enumerable: true,
|
|
87
87
|
get: function get() {
|
|
88
|
-
return
|
|
88
|
+
return _ui.TextField;
|
|
89
89
|
}
|
|
90
90
|
});
|
|
91
91
|
Object.defineProperty(exports, "UrlIcon", {
|
|
@@ -97,13 +97,13 @@ Object.defineProperty(exports, "UrlIcon", {
|
|
|
97
97
|
Object.defineProperty(exports, "UserPicker", {
|
|
98
98
|
enumerable: true,
|
|
99
99
|
get: function get() {
|
|
100
|
-
return
|
|
100
|
+
return _ui.UserPicker;
|
|
101
101
|
}
|
|
102
102
|
});
|
|
103
103
|
Object.defineProperty(exports, "default", {
|
|
104
104
|
enumerable: true,
|
|
105
105
|
get: function get() {
|
|
106
|
-
return
|
|
106
|
+
return _ui.default;
|
|
107
107
|
}
|
|
108
108
|
});
|
|
109
109
|
Object.defineProperty(exports, "useLinkCreateCallback", {
|
|
@@ -118,10 +118,10 @@ Object.defineProperty(exports, "useWithExitWarning", {
|
|
|
118
118
|
return _exitWarningModalContext.useWithExitWarning;
|
|
119
119
|
}
|
|
120
120
|
});
|
|
121
|
-
var
|
|
121
|
+
var _ui = _interopRequireWildcard(require("./ui"));
|
|
122
122
|
var _callbackContext = require("./controllers/callback-context");
|
|
123
123
|
var _exitWarningModalContext = require("./controllers/exit-warning-modal-context");
|
|
124
124
|
var _finalForm = require("final-form");
|
|
125
125
|
var _icon = require("./common/ui/icon");
|
|
126
|
-
var
|
|
126
|
+
var _index = require("./controllers/create-field/index");
|
|
127
127
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
@@ -10,7 +10,7 @@ export const CREATE_FORM_MIN_HEIGHT_IN_PX = '200';
|
|
|
10
10
|
export const LINK_CREATE_FORM_POST_CREATE_FIELD = '__post_create__';
|
|
11
11
|
export const PACKAGE_DATA = {
|
|
12
12
|
packageName: "@atlaskit/link-create" || '',
|
|
13
|
-
packageVersion: "5.1.
|
|
13
|
+
packageVersion: "5.1.4" || '',
|
|
14
14
|
component: COMPONENT_NAME,
|
|
15
15
|
componentName: COMPONENT_NAME
|
|
16
16
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { AsyncSelect } from '../ui/create-form/async-select';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { LinkCreateCallbackProvider, useLinkCreateCallback } from '../controllers/callback-context';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CreateField } from '../controllers/create-field';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CreateForm } from '../ui/create-form/main';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ExitWarningModalProvider as LinkCreateExitWarningProvider, useWithExitWarning } from '../controllers/exit-warning-modal-context';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { FORM_ERROR } from 'final-form';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CreateFormLoader } from '../ui/create-form/form-loader';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { FormSpy } from '../ui/create-form/form-spy';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { PageIcon, UrlIcon, LiveDocIcon } from '../common/ui/icon';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as InlineCreate } from '../ui/inline-create';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../ui/modal-create';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Select, SiteSelect } from '../ui/create-form/select';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { TextField } from '../ui/create-form/textfield';
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { UserPicker } from '../ui/create-form/user-picker';
|
package/dist/es2019/index.js
CHANGED
|
@@ -1,6 +1,43 @@
|
|
|
1
|
-
|
|
1
|
+
/** @deprecated Use @atlaskit/link-create/types */
|
|
2
|
+
|
|
3
|
+
/** @deprecated Use @atlaskit/link-create/create-form */
|
|
4
|
+
|
|
5
|
+
/** @deprecated Use @atlaskit/link-create/async-select */
|
|
6
|
+
export { AsyncSelect } from './ui';
|
|
7
|
+
|
|
8
|
+
/** @deprecated Use @atlaskit/link-create/create-form */
|
|
9
|
+
export { CreateForm } from './ui';
|
|
10
|
+
|
|
11
|
+
/** @deprecated Use @atlaskit/link-create/form-loader */
|
|
12
|
+
export { CreateFormLoader } from './ui';
|
|
13
|
+
|
|
14
|
+
/** @deprecated Use @atlaskit/link-create/form-spy */
|
|
15
|
+
export { FormSpy } from './ui';
|
|
16
|
+
|
|
17
|
+
/** @deprecated Use @atlaskit/link-create/select */
|
|
18
|
+
export { Select, SiteSelect } from './ui';
|
|
19
|
+
|
|
20
|
+
/** @deprecated Use @atlaskit/link-create/text-field */
|
|
21
|
+
export { TextField } from './ui';
|
|
22
|
+
|
|
23
|
+
/** @deprecated Use @atlaskit/link-create/inline-create */
|
|
24
|
+
export { InlineCreate } from './ui';
|
|
25
|
+
|
|
26
|
+
/** @deprecated Use @atlaskit/link-create/user-picker */
|
|
27
|
+
export { UserPicker } from './ui';
|
|
28
|
+
|
|
29
|
+
/** @deprecated Use @atlaskit/link-create/modal-create */
|
|
30
|
+
export { default } from './ui';
|
|
31
|
+
|
|
32
|
+
/** @deprecated Use @atlaskit/link-create/callback-context */
|
|
2
33
|
export { LinkCreateCallbackProvider, useLinkCreateCallback } from './controllers/callback-context';
|
|
34
|
+
/** @deprecated Use @atlaskit/link-create/exit-warning-modal */
|
|
3
35
|
export { ExitWarningModalProvider as LinkCreateExitWarningProvider, useWithExitWarning } from './controllers/exit-warning-modal-context';
|
|
36
|
+
/** @deprecated Use @atlaskit/link-create/types */
|
|
37
|
+
|
|
38
|
+
/** @deprecated Use @atlaskit/link-create/final-form */
|
|
4
39
|
export { FORM_ERROR } from 'final-form';
|
|
40
|
+
/** @deprecated Use @atlaskit/link-create/icons */
|
|
5
41
|
export { PageIcon, UrlIcon, LiveDocIcon } from './common/ui/icon';
|
|
42
|
+
/** @deprecated Use @atlaskit/link-create/create-field */
|
|
6
43
|
export { CreateField } from './controllers/create-field/index';
|
|
@@ -10,7 +10,7 @@ export var CREATE_FORM_MIN_HEIGHT_IN_PX = '200';
|
|
|
10
10
|
export var LINK_CREATE_FORM_POST_CREATE_FIELD = '__post_create__';
|
|
11
11
|
export var PACKAGE_DATA = {
|
|
12
12
|
packageName: "@atlaskit/link-create" || '',
|
|
13
|
-
packageVersion: "5.1.
|
|
13
|
+
packageVersion: "5.1.4" || '',
|
|
14
14
|
component: COMPONENT_NAME,
|
|
15
15
|
componentName: COMPONENT_NAME
|
|
16
16
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { AsyncSelect } from '../ui/create-form/async-select';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { LinkCreateCallbackProvider, useLinkCreateCallback } from '../controllers/callback-context';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CreateField } from '../controllers/create-field';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CreateForm } from '../ui/create-form/main';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ExitWarningModalProvider as LinkCreateExitWarningProvider, useWithExitWarning } from '../controllers/exit-warning-modal-context';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { FORM_ERROR } from 'final-form';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CreateFormLoader } from '../ui/create-form/form-loader';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { FormSpy } from '../ui/create-form/form-spy';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { PageIcon, UrlIcon, LiveDocIcon } from '../common/ui/icon';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as InlineCreate } from '../ui/inline-create';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../ui/modal-create';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Select, SiteSelect } from '../ui/create-form/select';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { TextField } from '../ui/create-form/textfield';
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { UserPicker } from '../ui/create-form/user-picker';
|
package/dist/esm/index.js
CHANGED
|
@@ -1,6 +1,43 @@
|
|
|
1
|
-
|
|
1
|
+
/** @deprecated Use @atlaskit/link-create/types */
|
|
2
|
+
|
|
3
|
+
/** @deprecated Use @atlaskit/link-create/create-form */
|
|
4
|
+
|
|
5
|
+
/** @deprecated Use @atlaskit/link-create/async-select */
|
|
6
|
+
export { AsyncSelect } from './ui';
|
|
7
|
+
|
|
8
|
+
/** @deprecated Use @atlaskit/link-create/create-form */
|
|
9
|
+
export { CreateForm } from './ui';
|
|
10
|
+
|
|
11
|
+
/** @deprecated Use @atlaskit/link-create/form-loader */
|
|
12
|
+
export { CreateFormLoader } from './ui';
|
|
13
|
+
|
|
14
|
+
/** @deprecated Use @atlaskit/link-create/form-spy */
|
|
15
|
+
export { FormSpy } from './ui';
|
|
16
|
+
|
|
17
|
+
/** @deprecated Use @atlaskit/link-create/select */
|
|
18
|
+
export { Select, SiteSelect } from './ui';
|
|
19
|
+
|
|
20
|
+
/** @deprecated Use @atlaskit/link-create/text-field */
|
|
21
|
+
export { TextField } from './ui';
|
|
22
|
+
|
|
23
|
+
/** @deprecated Use @atlaskit/link-create/inline-create */
|
|
24
|
+
export { InlineCreate } from './ui';
|
|
25
|
+
|
|
26
|
+
/** @deprecated Use @atlaskit/link-create/user-picker */
|
|
27
|
+
export { UserPicker } from './ui';
|
|
28
|
+
|
|
29
|
+
/** @deprecated Use @atlaskit/link-create/modal-create */
|
|
30
|
+
export { default } from './ui';
|
|
31
|
+
|
|
32
|
+
/** @deprecated Use @atlaskit/link-create/callback-context */
|
|
2
33
|
export { LinkCreateCallbackProvider, useLinkCreateCallback } from './controllers/callback-context';
|
|
34
|
+
/** @deprecated Use @atlaskit/link-create/exit-warning-modal */
|
|
3
35
|
export { ExitWarningModalProvider as LinkCreateExitWarningProvider, useWithExitWarning } from './controllers/exit-warning-modal-context';
|
|
36
|
+
/** @deprecated Use @atlaskit/link-create/types */
|
|
37
|
+
|
|
38
|
+
/** @deprecated Use @atlaskit/link-create/final-form */
|
|
4
39
|
export { FORM_ERROR } from 'final-form';
|
|
40
|
+
/** @deprecated Use @atlaskit/link-create/icons */
|
|
5
41
|
export { PageIcon, UrlIcon, LiveDocIcon } from './common/ui/icon';
|
|
42
|
+
/** @deprecated Use @atlaskit/link-create/create-field */
|
|
6
43
|
export { CreateField } from './controllers/create-field/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { AsyncSelect } from '../ui/create-form/async-select';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { LinkCreateCallbackProvider, useLinkCreateCallback } from '../controllers/callback-context';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CreateField } from '../controllers/create-field';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ExitWarningModalProvider as LinkCreateExitWarningProvider, useWithExitWarning, } from '../controllers/exit-warning-modal-context';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { FORM_ERROR } from 'final-form';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CreateFormLoader } from '../ui/create-form/form-loader';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { FormSpy } from '../ui/create-form/form-spy';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { PageIcon, UrlIcon, LiveDocIcon } from '../common/ui/icon';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as InlineCreate } from '../ui/inline-create';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../ui/modal-create';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { TextField } from '../ui/create-form/textfield';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { CreatePayload, EditViewProps, LinkCreatePlugin, LinkCreateProps, LinkCreateWithModalProps, Validator, ValidatorMap } from '../common/types';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { UserPicker } from '../ui/create-form/user-picker';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,9 +1,34 @@
|
|
|
1
|
+
/** @deprecated Use @atlaskit/link-create/types */
|
|
1
2
|
export type { CreatePayload, EditViewProps, LinkCreatePlugin, LinkCreateProps, LinkCreateWithModalProps, } from './common/types';
|
|
3
|
+
/** @deprecated Use @atlaskit/link-create/create-form */
|
|
2
4
|
export type { CreateFormProps } from './ui/index';
|
|
3
|
-
|
|
5
|
+
/** @deprecated Use @atlaskit/link-create/async-select */
|
|
6
|
+
export { AsyncSelect } from './ui';
|
|
7
|
+
/** @deprecated Use @atlaskit/link-create/create-form */
|
|
8
|
+
export { CreateForm } from './ui';
|
|
9
|
+
/** @deprecated Use @atlaskit/link-create/form-loader */
|
|
10
|
+
export { CreateFormLoader } from './ui';
|
|
11
|
+
/** @deprecated Use @atlaskit/link-create/form-spy */
|
|
12
|
+
export { FormSpy } from './ui';
|
|
13
|
+
/** @deprecated Use @atlaskit/link-create/select */
|
|
14
|
+
export { Select, SiteSelect, type SitePickerOptionType } from './ui';
|
|
15
|
+
/** @deprecated Use @atlaskit/link-create/text-field */
|
|
16
|
+
export { TextField } from './ui';
|
|
17
|
+
/** @deprecated Use @atlaskit/link-create/inline-create */
|
|
18
|
+
export { InlineCreate } from './ui';
|
|
19
|
+
/** @deprecated Use @atlaskit/link-create/user-picker */
|
|
20
|
+
export { UserPicker } from './ui';
|
|
21
|
+
/** @deprecated Use @atlaskit/link-create/modal-create */
|
|
22
|
+
export { default } from './ui';
|
|
23
|
+
/** @deprecated Use @atlaskit/link-create/callback-context */
|
|
4
24
|
export { LinkCreateCallbackProvider, useLinkCreateCallback } from './controllers/callback-context';
|
|
25
|
+
/** @deprecated Use @atlaskit/link-create/exit-warning-modal */
|
|
5
26
|
export { ExitWarningModalProvider as LinkCreateExitWarningProvider, useWithExitWarning, } from './controllers/exit-warning-modal-context';
|
|
27
|
+
/** @deprecated Use @atlaskit/link-create/types */
|
|
6
28
|
export type { Validator, ValidatorMap } from './common/types';
|
|
29
|
+
/** @deprecated Use @atlaskit/link-create/final-form */
|
|
7
30
|
export { FORM_ERROR } from 'final-form';
|
|
31
|
+
/** @deprecated Use @atlaskit/link-create/icons */
|
|
8
32
|
export { PageIcon, UrlIcon, LiveDocIcon } from './common/ui/icon';
|
|
33
|
+
/** @deprecated Use @atlaskit/link-create/create-field */
|
|
9
34
|
export { CreateField } from './controllers/create-field/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { AsyncSelect } from '../ui/create-form/async-select';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { LinkCreateCallbackProvider, useLinkCreateCallback } from '../controllers/callback-context';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CreateField } from '../controllers/create-field';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ExitWarningModalProvider as LinkCreateExitWarningProvider, useWithExitWarning, } from '../controllers/exit-warning-modal-context';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { FORM_ERROR } from 'final-form';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CreateFormLoader } from '../ui/create-form/form-loader';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { FormSpy } from '../ui/create-form/form-spy';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { PageIcon, UrlIcon, LiveDocIcon } from '../common/ui/icon';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as InlineCreate } from '../ui/inline-create';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../ui/modal-create';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { TextField } from '../ui/create-form/textfield';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { CreatePayload, EditViewProps, LinkCreatePlugin, LinkCreateProps, LinkCreateWithModalProps, Validator, ValidatorMap } from '../common/types';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { UserPicker } from '../ui/create-form/user-picker';
|
|
@@ -1,9 +1,34 @@
|
|
|
1
|
+
/** @deprecated Use @atlaskit/link-create/types */
|
|
1
2
|
export type { CreatePayload, EditViewProps, LinkCreatePlugin, LinkCreateProps, LinkCreateWithModalProps, } from './common/types';
|
|
3
|
+
/** @deprecated Use @atlaskit/link-create/create-form */
|
|
2
4
|
export type { CreateFormProps } from './ui/index';
|
|
3
|
-
|
|
5
|
+
/** @deprecated Use @atlaskit/link-create/async-select */
|
|
6
|
+
export { AsyncSelect } from './ui';
|
|
7
|
+
/** @deprecated Use @atlaskit/link-create/create-form */
|
|
8
|
+
export { CreateForm } from './ui';
|
|
9
|
+
/** @deprecated Use @atlaskit/link-create/form-loader */
|
|
10
|
+
export { CreateFormLoader } from './ui';
|
|
11
|
+
/** @deprecated Use @atlaskit/link-create/form-spy */
|
|
12
|
+
export { FormSpy } from './ui';
|
|
13
|
+
/** @deprecated Use @atlaskit/link-create/select */
|
|
14
|
+
export { Select, SiteSelect, type SitePickerOptionType } from './ui';
|
|
15
|
+
/** @deprecated Use @atlaskit/link-create/text-field */
|
|
16
|
+
export { TextField } from './ui';
|
|
17
|
+
/** @deprecated Use @atlaskit/link-create/inline-create */
|
|
18
|
+
export { InlineCreate } from './ui';
|
|
19
|
+
/** @deprecated Use @atlaskit/link-create/user-picker */
|
|
20
|
+
export { UserPicker } from './ui';
|
|
21
|
+
/** @deprecated Use @atlaskit/link-create/modal-create */
|
|
22
|
+
export { default } from './ui';
|
|
23
|
+
/** @deprecated Use @atlaskit/link-create/callback-context */
|
|
4
24
|
export { LinkCreateCallbackProvider, useLinkCreateCallback } from './controllers/callback-context';
|
|
25
|
+
/** @deprecated Use @atlaskit/link-create/exit-warning-modal */
|
|
5
26
|
export { ExitWarningModalProvider as LinkCreateExitWarningProvider, useWithExitWarning, } from './controllers/exit-warning-modal-context';
|
|
27
|
+
/** @deprecated Use @atlaskit/link-create/types */
|
|
6
28
|
export type { Validator, ValidatorMap } from './common/types';
|
|
29
|
+
/** @deprecated Use @atlaskit/link-create/final-form */
|
|
7
30
|
export { FORM_ERROR } from 'final-form';
|
|
31
|
+
/** @deprecated Use @atlaskit/link-create/icons */
|
|
8
32
|
export { PageIcon, UrlIcon, LiveDocIcon } from './common/ui/icon';
|
|
33
|
+
/** @deprecated Use @atlaskit/link-create/create-field */
|
|
9
34
|
export { CreateField } from './controllers/create-field/index';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/link-create/exit-warning-modal",
|
|
3
|
+
"main": "../dist/cjs/entry-points/exit-warning-modal.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/exit-warning-modal.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/exit-warning-modal.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/exit-warning-modal.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/exit-warning-modal.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/link-create/final-form",
|
|
3
|
+
"main": "../dist/cjs/entry-points/final-form.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/final-form.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/final-form.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/final-form.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/final-form.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/link-create/form-loader",
|
|
3
|
+
"main": "../dist/cjs/entry-points/form-loader.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/form-loader.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/form-loader.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/form-loader.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/form-loader.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/link-create/form-spy",
|
|
3
|
+
"main": "../dist/cjs/entry-points/form-spy.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/form-spy.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/form-spy.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/form-spy.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/form-spy.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/link-create/icons",
|
|
3
|
+
"main": "../dist/cjs/entry-points/icons.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/icons.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/icons.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/icons.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/icons.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/link-create/inline-create",
|
|
3
|
+
"main": "../dist/cjs/entry-points/inline-create.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/inline-create.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/inline-create.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/inline-create.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/inline-create.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/link-create/modal-create",
|
|
3
|
+
"main": "../dist/cjs/entry-points/modal-create.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/modal-create.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/modal-create.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/modal-create.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/modal-create.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-create",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.2.0",
|
|
4
4
|
"description": "The driver component of meta creation flow",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -51,15 +51,15 @@
|
|
|
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.1.0",
|
|
55
55
|
"@atlaskit/object": "^1.0.0",
|
|
56
56
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
57
57
|
"@atlaskit/primitives": "^19.0.0",
|
|
58
58
|
"@atlaskit/select": "^21.12.0",
|
|
59
|
-
"@atlaskit/smart-user-picker": "^10.
|
|
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": "^24.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.20.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:^",
|
|
@@ -86,6 +86,7 @@
|
|
|
86
86
|
"@testing-library/user-event": "^14.4.3",
|
|
87
87
|
"@types/debounce-promise": "^3.1.2",
|
|
88
88
|
"fetch-mock": "^8.0.0",
|
|
89
|
+
"react": "^18.2.0",
|
|
89
90
|
"react-dom": "^18.2.0",
|
|
90
91
|
"react-intl": "^6.6.2",
|
|
91
92
|
"wait-for-expect": "^1.2.0"
|
|
@@ -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
|
+
}
|