@atlaskit/link-create 1.15.9 → 2.1.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 +357 -310
- package/CONTRIBUTING.md +3 -0
- package/dist/cjs/common/constants.js +8 -2
- package/dist/cjs/{ui/link-create → common/ui}/confirm-dismiss-dialog/main.js +4 -6
- package/dist/cjs/{ui/link-create → common/ui}/edit-modal/index.js +4 -8
- package/dist/cjs/{ui/link-create → common/ui}/error-boundary/index.js +6 -15
- package/dist/cjs/{controllers → common/ui}/experience-tracker/index.js +3 -3
- package/dist/cjs/common/ui/link-create-content/index.js +21 -0
- package/dist/cjs/{ui/link-create → common/ui}/modal-hero/index.js +1 -3
- package/dist/cjs/controllers/callback-context/main.js +8 -15
- package/dist/cjs/ui/create-form/async-select/main.js +2 -5
- package/dist/cjs/ui/create-form/main.js +3 -4
- package/dist/cjs/ui/index.js +11 -4
- package/dist/cjs/ui/inline-create/index.js +38 -0
- package/dist/cjs/ui/inline-create/main.js +125 -0
- package/dist/cjs/ui/modal-create/index.js +38 -0
- package/dist/cjs/ui/{link-create → modal-create}/main.js +45 -81
- package/dist/es2019/common/constants.js +7 -1
- package/dist/es2019/{ui/link-create → common/ui}/confirm-dismiss-dialog/main.js +4 -7
- package/dist/es2019/{ui/link-create → common/ui}/edit-modal/index.js +4 -10
- package/dist/es2019/{ui/link-create → common/ui}/error-boundary/index.js +6 -15
- package/dist/es2019/{controllers → common/ui}/experience-tracker/index.js +3 -3
- package/dist/es2019/common/ui/link-create-content/index.js +11 -0
- package/dist/es2019/{ui/link-create → common/ui}/modal-hero/index.js +1 -3
- package/dist/es2019/controllers/callback-context/main.js +8 -15
- package/dist/es2019/index.js +4 -1
- package/dist/es2019/ui/create-form/async-select/main.js +2 -5
- package/dist/es2019/ui/create-form/main.js +3 -4
- package/dist/es2019/ui/index.js +2 -1
- package/dist/es2019/ui/inline-create/index.js +30 -0
- package/dist/es2019/ui/inline-create/main.js +100 -0
- package/dist/es2019/ui/modal-create/index.js +30 -0
- package/dist/es2019/ui/{link-create → modal-create}/main.js +22 -40
- package/dist/esm/common/constants.js +7 -1
- package/dist/esm/{ui/link-create → common/ui}/confirm-dismiss-dialog/main.js +4 -6
- package/dist/esm/{ui/link-create → common/ui}/edit-modal/index.js +4 -8
- package/dist/esm/{ui/link-create → common/ui}/error-boundary/index.js +6 -15
- package/dist/esm/{controllers → common/ui}/experience-tracker/index.js +3 -3
- package/dist/esm/common/ui/link-create-content/index.js +12 -0
- package/dist/esm/{ui/link-create → common/ui}/modal-hero/index.js +1 -3
- package/dist/esm/controllers/callback-context/main.js +8 -15
- package/dist/esm/index.js +4 -1
- package/dist/esm/ui/create-form/async-select/main.js +2 -5
- package/dist/esm/ui/create-form/main.js +3 -4
- package/dist/esm/ui/index.js +2 -1
- package/dist/esm/ui/inline-create/index.js +30 -0
- package/dist/esm/ui/inline-create/main.js +119 -0
- package/dist/esm/ui/modal-create/index.js +30 -0
- package/dist/esm/ui/{link-create → modal-create}/main.js +48 -84
- package/dist/types/common/constants.d.ts +2 -0
- package/dist/types/common/types.d.ts +2 -2
- package/dist/types/common/ui/Button/index.d.ts +2 -2
- package/dist/types/common/ui/ModalDialog/index.d.ts +1 -1
- package/dist/types/common/ui/confirm-dismiss-dialog/main.d.ts +7 -0
- package/dist/types/common/ui/edit-modal/index.d.ts +11 -0
- package/dist/types/{ui/link-create → common/ui}/error-boundary/error-boundary-base/index.d.ts +1 -1
- package/dist/types/{ui/link-create → common/ui}/error-boundary/index.d.ts +1 -1
- package/dist/types/common/ui/link-create-content/index.d.ts +8 -0
- package/dist/types/common/utils/analytics/components.d.ts +1 -1
- package/dist/types/common/utils/analytics/context.d.ts +2 -2
- package/dist/types/common/utils/form/index.d.ts +1 -1
- package/dist/types/common/utils/locale/fetch-messages-for-locale.d.ts +1 -1
- package/dist/types/controllers/callback-context/main.d.ts +2 -2
- package/dist/types/controllers/create-field/main.d.ts +1 -1
- package/dist/types/controllers/create-field/types.d.ts +2 -2
- package/dist/types/controllers/edit-post-create-context/index.d.ts +1 -1
- package/dist/types/controllers/form-context/main.d.ts +2 -2
- package/dist/types/controllers/plugin-context/index.d.ts +1 -1
- package/dist/types/ui/create-form/async-select/main.d.ts +2 -2
- package/dist/types/ui/create-form/async-select/types.d.ts +2 -2
- package/dist/types/ui/create-form/form-loader/main.d.ts +1 -1
- package/dist/types/ui/create-form/main.d.ts +1 -1
- package/dist/types/ui/create-form/select/main.d.ts +2 -2
- package/dist/types/ui/create-form/select/types.d.ts +2 -2
- package/dist/types/ui/create-form/textfield/main.d.ts +1 -1
- package/dist/types/ui/create-form/textfield/types.d.ts +2 -2
- package/dist/types/ui/create-form/utils/index.d.ts +1 -1
- package/dist/types/ui/index.d.ts +2 -1
- package/dist/types/ui/inline-create/index.d.ts +5 -0
- package/dist/types/ui/inline-create/main.d.ts +5 -0
- package/dist/types/ui/modal-create/index.d.ts +5 -0
- package/dist/{types-ts4.5/ui/link-create → types/ui/modal-create}/main.d.ts +1 -1
- package/dist/types-ts4.5/common/constants.d.ts +2 -0
- package/dist/types-ts4.5/common/types.d.ts +2 -2
- package/dist/types-ts4.5/common/ui/Button/index.d.ts +2 -2
- package/dist/types-ts4.5/common/ui/ModalDialog/index.d.ts +1 -1
- package/dist/types-ts4.5/common/ui/confirm-dismiss-dialog/main.d.ts +7 -0
- package/dist/types-ts4.5/common/ui/edit-modal/index.d.ts +11 -0
- package/dist/types-ts4.5/{ui/link-create → common/ui}/error-boundary/error-boundary-base/index.d.ts +1 -1
- package/dist/types-ts4.5/{ui/link-create → common/ui}/error-boundary/index.d.ts +1 -1
- package/dist/types-ts4.5/common/ui/link-create-content/index.d.ts +8 -0
- package/dist/types-ts4.5/common/utils/analytics/components.d.ts +1 -1
- package/dist/types-ts4.5/common/utils/analytics/context.d.ts +2 -2
- package/dist/types-ts4.5/common/utils/form/index.d.ts +1 -1
- package/dist/types-ts4.5/common/utils/locale/fetch-messages-for-locale.d.ts +1 -1
- package/dist/types-ts4.5/controllers/callback-context/main.d.ts +2 -2
- package/dist/types-ts4.5/controllers/create-field/main.d.ts +1 -1
- package/dist/types-ts4.5/controllers/create-field/types.d.ts +2 -2
- package/dist/types-ts4.5/controllers/edit-post-create-context/index.d.ts +1 -1
- package/dist/types-ts4.5/controllers/form-context/main.d.ts +2 -2
- package/dist/types-ts4.5/controllers/plugin-context/index.d.ts +1 -1
- package/dist/types-ts4.5/ui/create-form/async-select/main.d.ts +2 -2
- package/dist/types-ts4.5/ui/create-form/async-select/types.d.ts +2 -2
- package/dist/types-ts4.5/ui/create-form/form-loader/main.d.ts +1 -1
- package/dist/types-ts4.5/ui/create-form/main.d.ts +1 -1
- package/dist/types-ts4.5/ui/create-form/select/main.d.ts +2 -2
- package/dist/types-ts4.5/ui/create-form/select/types.d.ts +2 -2
- package/dist/types-ts4.5/ui/create-form/textfield/main.d.ts +1 -1
- package/dist/types-ts4.5/ui/create-form/textfield/types.d.ts +2 -2
- package/dist/types-ts4.5/ui/create-form/utils/index.d.ts +1 -1
- package/dist/types-ts4.5/ui/index.d.ts +2 -1
- package/dist/types-ts4.5/ui/{main.d.ts → inline-create/index.d.ts} +1 -3
- package/dist/types-ts4.5/ui/inline-create/main.d.ts +5 -0
- package/dist/{types/ui/main.d.ts → types-ts4.5/ui/modal-create/index.d.ts} +1 -3
- package/dist/{types/ui/link-create → types-ts4.5/ui/modal-create}/main.d.ts +1 -1
- package/example-helpers/mock-plugin-form.tsx +2 -2
- package/package.json +9 -19
- package/dist/cjs/ui/link-create/index.js +0 -13
- package/dist/cjs/ui/main.js +0 -46
- package/dist/es2019/ui/link-create/index.js +0 -1
- package/dist/es2019/ui/main.js +0 -38
- package/dist/esm/ui/link-create/index.js +0 -1
- package/dist/esm/ui/main.js +0 -38
- package/dist/types/ui/link-create/confirm-dismiss-dialog/main.d.ts +0 -6
- package/dist/types/ui/link-create/edit-modal/index.d.ts +0 -8
- package/dist/types/ui/link-create/index.d.ts +0 -1
- package/dist/types-ts4.5/ui/link-create/confirm-dismiss-dialog/main.d.ts +0 -6
- package/dist/types-ts4.5/ui/link-create/edit-modal/index.d.ts +0 -8
- package/dist/types-ts4.5/ui/link-create/index.d.ts +0 -1
- /package/dist/cjs/{ui/link-create → common/ui}/confirm-dismiss-dialog/index.js +0 -0
- /package/dist/cjs/{ui/link-create → common/ui}/confirm-dismiss-dialog/messages.js +0 -0
- /package/dist/cjs/{ui/link-create → common/ui}/error-boundary/error-boundary-base/index.js +0 -0
- /package/dist/cjs/ui/{link-create → modal-create}/messages.js +0 -0
- /package/dist/es2019/{ui/link-create → common/ui}/confirm-dismiss-dialog/index.js +0 -0
- /package/dist/es2019/{ui/link-create → common/ui}/confirm-dismiss-dialog/messages.js +0 -0
- /package/dist/es2019/{ui/link-create → common/ui}/error-boundary/error-boundary-base/index.js +0 -0
- /package/dist/es2019/ui/{link-create → modal-create}/messages.js +0 -0
- /package/dist/esm/{ui/link-create → common/ui}/confirm-dismiss-dialog/index.js +0 -0
- /package/dist/esm/{ui/link-create → common/ui}/confirm-dismiss-dialog/messages.js +0 -0
- /package/dist/esm/{ui/link-create → common/ui}/error-boundary/error-boundary-base/index.js +0 -0
- /package/dist/esm/ui/{link-create → modal-create}/messages.js +0 -0
- /package/dist/types/{ui/link-create → common/ui}/confirm-dismiss-dialog/index.d.ts +0 -0
- /package/dist/types/{ui/link-create → common/ui}/confirm-dismiss-dialog/messages.d.ts +0 -0
- /package/dist/types/{controllers → common/ui}/experience-tracker/index.d.ts +0 -0
- /package/dist/types/{ui/link-create → common/ui}/modal-hero/index.d.ts +0 -0
- /package/dist/types/ui/{link-create → modal-create}/messages.d.ts +0 -0
- /package/dist/types-ts4.5/{ui/link-create → common/ui}/confirm-dismiss-dialog/index.d.ts +0 -0
- /package/dist/types-ts4.5/{ui/link-create → common/ui}/confirm-dismiss-dialog/messages.d.ts +0 -0
- /package/dist/types-ts4.5/{controllers → common/ui}/experience-tracker/index.d.ts +0 -0
- /package/dist/types-ts4.5/{ui/link-create → common/ui}/modal-hero/index.d.ts +0 -0
- /package/dist/types-ts4.5/ui/{link-create → modal-create}/messages.d.ts +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,779 +1,826 @@
|
|
|
1
1
|
# @atlaskit/link-create
|
|
2
2
|
|
|
3
|
+
## 2.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#105452](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/105452)
|
|
8
|
+
[`29a14c8d1f23`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/29a14c8d1f23) -
|
|
9
|
+
Add inline create component and internal refactor for link-create
|
|
10
|
+
|
|
11
|
+
## 2.0.0
|
|
12
|
+
|
|
13
|
+
### Major Changes
|
|
14
|
+
|
|
15
|
+
- [#89064](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/89064)
|
|
16
|
+
[`545c87a31801`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/545c87a31801) -
|
|
17
|
+
Cleans up the feature flag implemented in 1.11.0 which is now a breaking change for plugins (not
|
|
18
|
+
for direct consumers).
|
|
19
|
+
|
|
20
|
+
Improves observability over failure cases when plugins call `onFailure()`, or throw an error to be
|
|
21
|
+
caught by `<LinkCreate />`'s internal error boundary.
|
|
22
|
+
|
|
23
|
+
Errors provided via `onFailure()` from plugins no longer play a role in displaying an error
|
|
24
|
+
message to users in the `<CreateForm />`.
|
|
25
|
+
|
|
26
|
+
When handling form submission errors, plugin should return an object of error messages in the
|
|
27
|
+
`onSubmit()` handler provided to the `CreateForm`. To set a generic error, use the newly exposed
|
|
28
|
+
`FORM_ERROR`
|
|
29
|
+
[see react-final-form](https://final-form.org/docs/react-final-form/types/FormProps#submission-errors)
|
|
30
|
+
to define an error message on the object resolved `onSubmit`.
|
|
31
|
+
|
|
32
|
+
Example:
|
|
33
|
+
|
|
34
|
+
```tsx
|
|
35
|
+
import { FORM_ERROR } from '@atlaskit/link-create';
|
|
36
|
+
|
|
37
|
+
<CreateForm
|
|
38
|
+
onSubmit={(data) => {
|
|
39
|
+
return {
|
|
40
|
+
[FORM_ERROR]: 'Something bad happened!',
|
|
41
|
+
};
|
|
42
|
+
}}
|
|
43
|
+
/>;
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
### Minor Changes
|
|
47
|
+
|
|
48
|
+
- [#89064](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/89064)
|
|
49
|
+
[`1a6df7c186bf`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1a6df7c186bf) -
|
|
50
|
+
Adds required fields instruction to start of link create form.
|
|
51
|
+
|
|
3
52
|
## 1.15.9
|
|
4
53
|
|
|
5
54
|
### Patch Changes
|
|
6
55
|
|
|
7
|
-
-
|
|
56
|
+
- Updated dependencies
|
|
8
57
|
|
|
9
58
|
## 1.15.8
|
|
10
59
|
|
|
11
60
|
### Patch Changes
|
|
12
61
|
|
|
13
|
-
-
|
|
62
|
+
- Updated dependencies
|
|
14
63
|
|
|
15
64
|
## 1.15.7
|
|
16
65
|
|
|
17
66
|
### Patch Changes
|
|
18
67
|
|
|
19
|
-
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
-
|
|
68
|
+
- [#92007](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92007)
|
|
69
|
+
[`85525725cb0d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/85525725cb0d) -
|
|
70
|
+
Migrated to the new button component
|
|
71
|
+
- Updated dependencies
|
|
23
72
|
|
|
24
73
|
## 1.15.6
|
|
25
74
|
|
|
26
75
|
### Patch Changes
|
|
27
76
|
|
|
28
|
-
-
|
|
29
|
-
|
|
30
|
-
|
|
77
|
+
- [#91203](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91203)
|
|
78
|
+
[`3c8348468618`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3c8348468618) -
|
|
79
|
+
Minor Typescript changes to improve compatibility with React 18
|
|
31
80
|
|
|
32
81
|
## 1.15.5
|
|
33
82
|
|
|
34
83
|
### Patch Changes
|
|
35
84
|
|
|
36
|
-
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
-
|
|
85
|
+
- [#88102](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/88102)
|
|
86
|
+
[`e424cbf4d842`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e424cbf4d842) -
|
|
87
|
+
Cleans up internal observability feature flag. No expected functional changes.
|
|
88
|
+
- Updated dependencies
|
|
40
89
|
|
|
41
90
|
## 1.15.4
|
|
42
91
|
|
|
43
92
|
### Patch Changes
|
|
44
93
|
|
|
45
|
-
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
94
|
+
- [#87422](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/87422)
|
|
95
|
+
[`54c6f458dbd6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/54c6f458dbd6) -
|
|
96
|
+
Cleansup ff platform.linking-platform.link-create.enable-sentry-client, enabling sentry client to
|
|
97
|
+
capture exceptions
|
|
49
98
|
|
|
50
99
|
## 1.15.3
|
|
51
100
|
|
|
52
101
|
### Patch Changes
|
|
53
102
|
|
|
54
|
-
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
103
|
+
- [#86416](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86416)
|
|
104
|
+
[`91c59efc1417`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/91c59efc1417) -
|
|
105
|
+
Cleans up feature flag platform.linking-platform.link-create.slo-ignore-failed-fetch permanently
|
|
106
|
+
marking failed to fetch errors to be ignored for SLO metrics.
|
|
58
107
|
|
|
59
108
|
## 1.15.2
|
|
60
109
|
|
|
61
110
|
### Patch Changes
|
|
62
111
|
|
|
63
|
-
-
|
|
64
|
-
|
|
65
|
-
|
|
112
|
+
- [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
|
|
113
|
+
[`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
|
|
114
|
+
Upgrade Typescript from `4.9.5` to `5.4.2`
|
|
66
115
|
|
|
67
116
|
## 1.15.1
|
|
68
117
|
|
|
69
118
|
### Patch Changes
|
|
70
119
|
|
|
71
|
-
-
|
|
120
|
+
- Updated dependencies
|
|
72
121
|
|
|
73
122
|
## 1.15.0
|
|
74
123
|
|
|
75
124
|
### Minor Changes
|
|
76
125
|
|
|
77
|
-
-
|
|
78
|
-
|
|
79
|
-
|
|
126
|
+
- [#81320](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81320)
|
|
127
|
+
[`d26f355c6fa9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d26f355c6fa9) -
|
|
128
|
+
allow rendering of ModalHero in LinkCreate modal
|
|
80
129
|
|
|
81
130
|
## 1.14.6
|
|
82
131
|
|
|
83
132
|
### Patch Changes
|
|
84
133
|
|
|
85
|
-
-
|
|
86
|
-
|
|
87
|
-
|
|
134
|
+
- [#80085](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80085)
|
|
135
|
+
[`7febfed958dd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7febfed958dd) -
|
|
136
|
+
Update usage of `React.FC` to explicity include `children`
|
|
88
137
|
|
|
89
138
|
## 1.14.5
|
|
90
139
|
|
|
91
140
|
### Patch Changes
|
|
92
141
|
|
|
93
|
-
-
|
|
142
|
+
- Updated dependencies
|
|
94
143
|
|
|
95
144
|
## 1.14.4
|
|
96
145
|
|
|
97
146
|
### Patch Changes
|
|
98
147
|
|
|
99
|
-
-
|
|
148
|
+
- Updated dependencies
|
|
100
149
|
|
|
101
150
|
## 1.14.3
|
|
102
151
|
|
|
103
152
|
### Patch Changes
|
|
104
153
|
|
|
105
|
-
-
|
|
154
|
+
- Updated dependencies
|
|
106
155
|
|
|
107
156
|
## 1.14.2
|
|
108
157
|
|
|
109
158
|
### Patch Changes
|
|
110
159
|
|
|
111
|
-
-
|
|
112
|
-
|
|
113
|
-
|
|
160
|
+
- [#68142](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68142)
|
|
161
|
+
[`eeee0117234f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/eeee0117234f) -
|
|
162
|
+
EDM-9179: under FF update form error messages and move error messages from form footer to fields
|
|
114
163
|
|
|
115
164
|
## 1.14.1
|
|
116
165
|
|
|
117
166
|
### Patch Changes
|
|
118
167
|
|
|
119
|
-
-
|
|
120
|
-
|
|
121
|
-
|
|
168
|
+
- [#68013](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68013)
|
|
169
|
+
[`a23882ab49f8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a23882ab49f8) -
|
|
170
|
+
Upgrade depdendency `final-form` for bugfix.
|
|
122
171
|
|
|
123
172
|
## 1.14.0
|
|
124
173
|
|
|
125
174
|
### Minor Changes
|
|
126
175
|
|
|
127
|
-
-
|
|
128
|
-
|
|
129
|
-
|
|
176
|
+
- [#66763](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66763)
|
|
177
|
+
[`496a3feac442`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/496a3feac442) -
|
|
178
|
+
Update `LinkPickerPlugin` Type to take a generic `entityKey` type
|
|
130
179
|
|
|
131
180
|
## 1.13.3
|
|
132
181
|
|
|
133
182
|
### Patch Changes
|
|
134
183
|
|
|
135
|
-
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
184
|
+
- [#64291](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64291)
|
|
185
|
+
[`c44535acbea9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c44535acbea9) -
|
|
186
|
+
remove platform.linking-platform.link-create.tmp-fix-translations to permanently return undefined
|
|
187
|
+
in the loaderFn when dynamic import of locale messages fail.
|
|
139
188
|
|
|
140
189
|
## 1.13.2
|
|
141
190
|
|
|
142
191
|
### Patch Changes
|
|
143
192
|
|
|
144
|
-
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
-
|
|
193
|
+
- [#64870](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64870)
|
|
194
|
+
[`0f1f6c106355`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0f1f6c106355) -
|
|
195
|
+
Adds analytics attribute to help exclude expected errors from SLIs, behind ff
|
|
196
|
+
- Updated dependencies
|
|
148
197
|
|
|
149
198
|
## 1.13.1
|
|
150
199
|
|
|
151
200
|
### Patch Changes
|
|
152
201
|
|
|
153
|
-
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
-
|
|
202
|
+
- [#63626](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63626)
|
|
203
|
+
[`e71c8f5f586e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e71c8f5f586e) -
|
|
204
|
+
loaderFn returns undefined if failed to dynamicaly import locale messages - fixes issue in Jira
|
|
205
|
+
where default English replaces languages chunk.
|
|
206
|
+
- Updated dependencies
|
|
158
207
|
|
|
159
208
|
## 1.13.0
|
|
160
209
|
|
|
161
210
|
### Minor Changes
|
|
162
211
|
|
|
163
|
-
-
|
|
164
|
-
|
|
165
|
-
|
|
212
|
+
- [#63972](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63972)
|
|
213
|
+
[`3fe8708a6cf0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3fe8708a6cf0) -
|
|
214
|
+
Log error message on experience failure for debugging purposes, when ff is enabled.
|
|
166
215
|
|
|
167
216
|
## 1.12.1
|
|
168
217
|
|
|
169
218
|
### Patch Changes
|
|
170
219
|
|
|
171
|
-
-
|
|
220
|
+
- Updated dependencies
|
|
172
221
|
|
|
173
222
|
## 1.12.0
|
|
174
223
|
|
|
175
224
|
### Minor Changes
|
|
176
225
|
|
|
177
|
-
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
226
|
+
- [#60340](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60340)
|
|
227
|
+
[`480de4a70eed`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/480de4a70eed) -
|
|
228
|
+
EDM-8657: remove platform.linking-platform.link-create.enable-edit feature flag, to permanently
|
|
229
|
+
enable the use of create and open (edit) flow in link create / link create confluence.
|
|
181
230
|
|
|
182
231
|
## 1.11.6
|
|
183
232
|
|
|
184
233
|
### Patch Changes
|
|
185
234
|
|
|
186
|
-
-
|
|
235
|
+
- Updated dependencies
|
|
187
236
|
|
|
188
237
|
## 1.11.5
|
|
189
238
|
|
|
190
239
|
### Patch Changes
|
|
191
240
|
|
|
192
|
-
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
-
|
|
241
|
+
- [#59772](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59772)
|
|
242
|
+
[`64c93d86d9fa`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/64c93d86d9fa) -
|
|
243
|
+
Cleans up FF: platform.linking-platform.link-create.confirm-dismiss-dialog permanently enabling
|
|
244
|
+
the exit warning dialog
|
|
245
|
+
- Updated dependencies
|
|
197
246
|
|
|
198
247
|
## 1.11.4
|
|
199
248
|
|
|
200
249
|
### Patch Changes
|
|
201
250
|
|
|
202
|
-
-
|
|
203
|
-
|
|
204
|
-
|
|
251
|
+
- [#60029](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60029)
|
|
252
|
+
[`b9826ea49c47`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b9826ea49c47) -
|
|
253
|
+
Update dependencies that were impacted by HOT-106483 to latest.
|
|
205
254
|
|
|
206
255
|
## 1.11.3
|
|
207
256
|
|
|
208
257
|
### Patch Changes
|
|
209
258
|
|
|
210
|
-
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
-
|
|
259
|
+
- [#57917](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/57917)
|
|
260
|
+
[`61a45bf00e72`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/61a45bf00e72) -
|
|
261
|
+
Enrol @atlaskit/link-create to push model in Jira Frontend.
|
|
262
|
+
- Updated dependencies
|
|
214
263
|
|
|
215
264
|
## 1.11.2
|
|
216
265
|
|
|
217
266
|
### Patch Changes
|
|
218
267
|
|
|
219
|
-
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
-
|
|
268
|
+
- [#57729](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/57729)
|
|
269
|
+
[`3778c5a24fc1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3778c5a24fc1) -
|
|
270
|
+
Fix bug with available sites filtering in Jira Create plugin
|
|
271
|
+
- Updated dependencies
|
|
223
272
|
|
|
224
273
|
## 1.11.1
|
|
225
274
|
|
|
226
275
|
### Patch Changes
|
|
227
276
|
|
|
228
|
-
-
|
|
229
|
-
|
|
230
|
-
|
|
277
|
+
- [#56657](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/56657)
|
|
278
|
+
[`3d2d5c5602fb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3d2d5c5602fb) - remove
|
|
279
|
+
actionSubjectId from operational analytics event
|
|
231
280
|
|
|
232
281
|
## 1.11.0
|
|
233
282
|
|
|
234
283
|
### Minor Changes
|
|
235
284
|
|
|
236
|
-
-
|
|
237
|
-
|
|
238
|
-
|
|
285
|
+
- [#43513](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43513)
|
|
286
|
+
[`3b056e3b332`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3b056e3b332) - ###
|
|
287
|
+
Improved Observability
|
|
239
288
|
|
|
240
|
-
|
|
241
|
-
|
|
289
|
+
Improves observability over failure cases when plugins call `onFailure()`, or throw an error to be
|
|
290
|
+
caught by `<LinkCreate />`'s internal error boundary.
|
|
242
291
|
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
292
|
+
When `platform.linking-platform.link-create.better-observability` feature flag is enabled, errors
|
|
293
|
+
provided via `onFailure()` from plugins no longer play a role in displaying an error message to
|
|
294
|
+
users in the `<CreateForm />`.
|
|
246
295
|
|
|
247
|
-
|
|
296
|
+
### Improved Create Form error handling
|
|
248
297
|
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
298
|
+
Allows plugins to return an object of error messages in the `onSubmit()` handler provided to the
|
|
299
|
+
`CreateForm`. To set a generic error, use the newly exposed `FORM_ERROR`
|
|
300
|
+
[see react-final-form](https://final-form.org/docs/react-final-form/types/FormProps#submission-errors)
|
|
301
|
+
to define an error message on the object resolved `onSubmit`.
|
|
253
302
|
|
|
254
|
-
|
|
303
|
+
Example:
|
|
255
304
|
|
|
256
|
-
|
|
257
|
-
|
|
305
|
+
```tsx
|
|
306
|
+
import { FORM_ERROR } from '@atlaskit/link-create'
|
|
258
307
|
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
308
|
+
<CreateForm onSubmit={(data) => {
|
|
309
|
+
return {
|
|
310
|
+
[FORM_ERROR]: "Something bad happened!"
|
|
311
|
+
}
|
|
312
|
+
} />
|
|
313
|
+
```
|
|
265
314
|
|
|
266
|
-
|
|
267
|
-
|
|
315
|
+
The error message returned by the plugin will be displayed in the form footer when the
|
|
316
|
+
`platform.linking-platform.link-create.better-observability` feature flag is enabled.
|
|
268
317
|
|
|
269
318
|
### Patch Changes
|
|
270
319
|
|
|
271
|
-
-
|
|
320
|
+
- Updated dependencies
|
|
272
321
|
|
|
273
322
|
## 1.10.0
|
|
274
323
|
|
|
275
324
|
### Minor Changes
|
|
276
325
|
|
|
277
|
-
-
|
|
278
|
-
|
|
279
|
-
|
|
326
|
+
- [#43692](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43692)
|
|
327
|
+
[`6f2a46c60f3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6f2a46c60f3) - NOISSUE
|
|
328
|
+
Make undefinable ari optional in link create payload
|
|
280
329
|
|
|
281
330
|
### Patch Changes
|
|
282
331
|
|
|
283
|
-
-
|
|
284
|
-
|
|
285
|
-
|
|
332
|
+
- [#43685](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43685)
|
|
333
|
+
[`315e88c6400`](https://bitbucket.org/atlassian/atlassian-frontend/commits/315e88c6400) -
|
|
334
|
+
EDM-8558: rename label of edit button to 'create + open'
|
|
286
335
|
|
|
287
336
|
## 1.9.5
|
|
288
337
|
|
|
289
338
|
### Patch Changes
|
|
290
339
|
|
|
291
|
-
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
flow
|
|
340
|
+
- [#43257](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43257)
|
|
341
|
+
[`cf4d4a94b14`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf4d4a94b14) -
|
|
342
|
+
EDM-8493: fire analytics event for modal screens and buttons associated with link-create edit flow
|
|
295
343
|
|
|
296
344
|
## 1.9.4
|
|
297
345
|
|
|
298
346
|
### Patch Changes
|
|
299
347
|
|
|
300
|
-
-
|
|
348
|
+
- Updated dependencies
|
|
301
349
|
|
|
302
350
|
## 1.9.3
|
|
303
351
|
|
|
304
352
|
### Patch Changes
|
|
305
353
|
|
|
306
|
-
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
-
|
|
354
|
+
- [#43347](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43347)
|
|
355
|
+
[`378d75bbaad`](https://bitbucket.org/atlassian/atlassian-frontend/commits/378d75bbaad) - Clean up
|
|
356
|
+
outer error boundary feature flag
|
|
357
|
+
- Updated dependencies
|
|
310
358
|
|
|
311
359
|
## 1.9.2
|
|
312
360
|
|
|
313
361
|
### Patch Changes
|
|
314
362
|
|
|
315
|
-
-
|
|
363
|
+
- Updated dependencies
|
|
316
364
|
|
|
317
365
|
## 1.9.1
|
|
318
366
|
|
|
319
367
|
### Patch Changes
|
|
320
368
|
|
|
321
|
-
-
|
|
322
|
-
|
|
323
|
-
|
|
369
|
+
- [#43170](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43170)
|
|
370
|
+
[`959e2b89af9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/959e2b89af9) - Change
|
|
371
|
+
exit warning modal to show only when fields have been modified by user
|
|
324
372
|
|
|
325
373
|
## 1.9.0
|
|
326
374
|
|
|
327
375
|
### Minor Changes
|
|
328
376
|
|
|
329
|
-
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
377
|
+
- [#43068](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43068)
|
|
378
|
+
[`76817bfbd5d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76817bfbd5d) -
|
|
379
|
+
EDM-8402: under a FF platform.linking-platform.link-create.enable-edit internally refactor
|
|
380
|
+
onCloseComplete hook to be conditionally called when active prop is false
|
|
333
381
|
|
|
334
382
|
### Patch Changes
|
|
335
383
|
|
|
336
|
-
-
|
|
384
|
+
- Updated dependencies
|
|
337
385
|
|
|
338
386
|
## 1.8.1
|
|
339
387
|
|
|
340
388
|
### Patch Changes
|
|
341
389
|
|
|
342
|
-
-
|
|
343
|
-
|
|
344
|
-
|
|
390
|
+
- [#43001](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43001)
|
|
391
|
+
[`7eed2972d58`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7eed2972d58) - Internal
|
|
392
|
+
refactor moving show exit warning modal conditions to React context
|
|
345
393
|
|
|
346
394
|
## 1.8.0
|
|
347
395
|
|
|
348
396
|
### Minor Changes
|
|
349
397
|
|
|
350
|
-
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
398
|
+
- [#42777](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42777)
|
|
399
|
+
[`fe571895d1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe571895d1f) -
|
|
400
|
+
EDM-8401: Introduce the onComplete props to LinkCreateProps which is a callback function to be
|
|
401
|
+
called when the link create experience is completed. This prop allows a post-create edit flow to
|
|
402
|
+
be added into the link create experience before completion.
|
|
355
403
|
|
|
356
404
|
## 1.7.2
|
|
357
405
|
|
|
358
406
|
### Patch Changes
|
|
359
407
|
|
|
360
|
-
-
|
|
408
|
+
- Updated dependencies
|
|
361
409
|
|
|
362
410
|
## 1.7.1
|
|
363
411
|
|
|
364
412
|
### Patch Changes
|
|
365
413
|
|
|
366
|
-
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
-
|
|
414
|
+
- [#42758](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42758)
|
|
415
|
+
[`67953559475`](https://bitbucket.org/atlassian/atlassian-frontend/commits/67953559475) - Updates
|
|
416
|
+
error boundary to captureException to Sentry behind a feature flag.
|
|
417
|
+
- Updated dependencies
|
|
370
418
|
|
|
371
419
|
## 1.7.0
|
|
372
420
|
|
|
373
421
|
### Minor Changes
|
|
374
422
|
|
|
375
|
-
-
|
|
376
|
-
|
|
377
|
-
|
|
423
|
+
- [#42674](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42674)
|
|
424
|
+
[`2fd5dd27ec2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2fd5dd27ec2) -
|
|
425
|
+
EDM-8373: export editViewProps type
|
|
378
426
|
|
|
379
427
|
## 1.6.0
|
|
380
428
|
|
|
381
429
|
### Minor Changes
|
|
382
430
|
|
|
383
|
-
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
431
|
+
- [#42487](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42487)
|
|
432
|
+
[`0b6245f9d18`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0b6245f9d18) -
|
|
433
|
+
EDM-8376: Introduces a editView field to the LinkCreatePlugin interface which will allow plugins
|
|
434
|
+
to register a screen to edit objects post-creation in a future release.
|
|
387
435
|
|
|
388
436
|
## 1.5.1
|
|
389
437
|
|
|
390
438
|
### Patch Changes
|
|
391
439
|
|
|
392
|
-
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
-
|
|
440
|
+
- [#42575](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42575)
|
|
441
|
+
[`d7338b9229e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d7338b9229e) - Updates
|
|
442
|
+
exit warning dialog to fire analytics on open, and button clicks
|
|
443
|
+
- [#42553](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42553)
|
|
444
|
+
[`76b95198067`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76b95198067) - Add
|
|
445
|
+
error boundary to catch unhandled errors outside the link create modal
|
|
446
|
+
- Updated dependencies
|
|
399
447
|
|
|
400
448
|
## 1.5.0
|
|
401
449
|
|
|
402
450
|
### Minor Changes
|
|
403
451
|
|
|
404
|
-
-
|
|
405
|
-
|
|
406
|
-
|
|
452
|
+
- [#42436](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42436)
|
|
453
|
+
[`08c8e861177`](https://bitbucket.org/atlassian/atlassian-frontend/commits/08c8e861177) -
|
|
454
|
+
EDM-8371: internal refactor under feature flag platform.linking-platform.link-create.enable-edit
|
|
407
455
|
|
|
408
456
|
## 1.4.0
|
|
409
457
|
|
|
410
458
|
### Minor Changes
|
|
411
459
|
|
|
412
|
-
-
|
|
413
|
-
|
|
414
|
-
|
|
460
|
+
- [#42119](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42119)
|
|
461
|
+
[`fbb3d5ea801`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fbb3d5ea801) - Displays
|
|
462
|
+
a confirm dismiss dialog when user clicks cancel and made changes to form
|
|
415
463
|
|
|
416
464
|
## 1.3.0
|
|
417
465
|
|
|
418
466
|
### Minor Changes
|
|
419
467
|
|
|
420
|
-
-
|
|
421
|
-
|
|
422
|
-
|
|
468
|
+
- [#41722](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41722)
|
|
469
|
+
[`0bcdc0cc988`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0bcdc0cc988) - EDM-8055
|
|
470
|
+
Add ARI to link create callback
|
|
423
471
|
|
|
424
472
|
## 1.2.0
|
|
425
473
|
|
|
426
474
|
### Minor Changes
|
|
427
475
|
|
|
428
|
-
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
476
|
+
- [#42356](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42356)
|
|
477
|
+
[`db060471faf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db060471faf) -
|
|
478
|
+
EDM-7905: an internal refactor for a new experimental feature under a feature flag
|
|
479
|
+
platform.linking-platform.link-create.enable-edit
|
|
432
480
|
|
|
433
481
|
## 1.1.2
|
|
434
482
|
|
|
435
483
|
### Patch Changes
|
|
436
484
|
|
|
437
|
-
-
|
|
438
|
-
|
|
439
|
-
|
|
485
|
+
- [#41867](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41867)
|
|
486
|
+
[`2fb6074140b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2fb6074140b) - Add
|
|
487
|
+
default value to environment variable
|
|
440
488
|
|
|
441
489
|
## 1.1.1
|
|
442
490
|
|
|
443
491
|
### Patch Changes
|
|
444
492
|
|
|
445
|
-
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
493
|
+
- [#40368](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40368)
|
|
494
|
+
[`b77b38f55e3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b77b38f55e3) -
|
|
495
|
+
EDM-7921: fire ui analytics event for error component in jira-issue-form and add new error type
|
|
496
|
+
and handling for NO_JIRA_SITE_FOUND_ERROR
|
|
449
497
|
|
|
450
498
|
## 1.1.0
|
|
451
499
|
|
|
452
500
|
### Minor Changes
|
|
453
501
|
|
|
454
|
-
-
|
|
455
|
-
|
|
456
|
-
|
|
502
|
+
- [#39079](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39079)
|
|
503
|
+
[`d3b95d820f7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3b95d820f7) - EDM-7280
|
|
504
|
+
Add analytics for Jira link create
|
|
457
505
|
|
|
458
506
|
## 1.0.3
|
|
459
507
|
|
|
460
508
|
### Patch Changes
|
|
461
509
|
|
|
462
|
-
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
-
|
|
510
|
+
- [#38162](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38162)
|
|
511
|
+
[`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete
|
|
512
|
+
version.json
|
|
513
|
+
- Updated dependencies
|
|
466
514
|
|
|
467
515
|
## 1.0.2
|
|
468
516
|
|
|
469
517
|
### Patch Changes
|
|
470
518
|
|
|
471
|
-
-
|
|
472
|
-
|
|
473
|
-
|
|
519
|
+
- [#37925](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37925)
|
|
520
|
+
[`f01deb5e6ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f01deb5e6ab) - Use
|
|
521
|
+
injected env vars instead of version.json
|
|
474
522
|
|
|
475
523
|
## 1.0.1
|
|
476
524
|
|
|
477
525
|
### Patch Changes
|
|
478
526
|
|
|
479
|
-
-
|
|
480
|
-
|
|
481
|
-
|
|
527
|
+
- [#38070](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38070)
|
|
528
|
+
[`572ea7d92bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/572ea7d92bd) - revised
|
|
529
|
+
form mutator types
|
|
482
530
|
|
|
483
531
|
## 1.0.0
|
|
484
532
|
|
|
485
533
|
### Major Changes
|
|
486
534
|
|
|
487
|
-
-
|
|
488
|
-
|
|
489
|
-
|
|
535
|
+
- [#37475](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37475)
|
|
536
|
+
[`687749df97a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/687749df97a) - Refactor
|
|
537
|
+
form components to use react-final-form
|
|
490
538
|
|
|
491
539
|
## 0.10.0
|
|
492
540
|
|
|
493
541
|
### Minor Changes
|
|
494
542
|
|
|
495
|
-
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
failure
|
|
543
|
+
- [#37341](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37341)
|
|
544
|
+
[`dc546d1044a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dc546d1044a) - Update
|
|
545
|
+
failure handler in link-create API to take Error instead of string, and fire analytics on failure
|
|
499
546
|
|
|
500
547
|
## 0.9.1
|
|
501
548
|
|
|
502
549
|
### Patch Changes
|
|
503
550
|
|
|
504
|
-
-
|
|
505
|
-
|
|
506
|
-
|
|
551
|
+
- [#36913](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36913)
|
|
552
|
+
[`84b33e5a4b6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/84b33e5a4b6) -
|
|
553
|
+
EDM-6544: minor internal refactors with no expected functional change
|
|
507
554
|
|
|
508
555
|
## 0.9.0
|
|
509
556
|
|
|
510
557
|
### Minor Changes
|
|
511
558
|
|
|
512
|
-
-
|
|
513
|
-
|
|
514
|
-
|
|
559
|
+
- [#36926](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36926)
|
|
560
|
+
[`c209f670761`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c209f670761) - Improved
|
|
561
|
+
testIds
|
|
515
562
|
|
|
516
563
|
## 0.8.2
|
|
517
564
|
|
|
518
565
|
### Patch Changes
|
|
519
566
|
|
|
520
|
-
-
|
|
521
|
-
|
|
522
|
-
|
|
567
|
+
- [#36843](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36843)
|
|
568
|
+
[`90ad796d91c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/90ad796d91c) - Fix
|
|
569
|
+
fetching hyphened locales to underscores
|
|
523
570
|
|
|
524
571
|
## 0.8.1
|
|
525
572
|
|
|
526
573
|
### Patch Changes
|
|
527
574
|
|
|
528
|
-
-
|
|
529
|
-
|
|
530
|
-
|
|
575
|
+
- [#36761](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36761)
|
|
576
|
+
[`70b0f95345a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70b0f95345a) - Add
|
|
577
|
+
support for i18n
|
|
531
578
|
|
|
532
579
|
## 0.8.0
|
|
533
580
|
|
|
534
581
|
### Minor Changes
|
|
535
582
|
|
|
536
|
-
-
|
|
537
|
-
|
|
538
|
-
|
|
583
|
+
- [#36304](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36304)
|
|
584
|
+
[`f3acb380cb2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f3acb380cb2) -
|
|
585
|
+
EDM-7064: remove FormContextProvider export to prevent usage in external packages.
|
|
539
586
|
|
|
540
587
|
## 0.7.1
|
|
541
588
|
|
|
542
589
|
### Patch Changes
|
|
543
590
|
|
|
544
|
-
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
591
|
+
- [#35576](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35576)
|
|
592
|
+
[`41d73aab05c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41d73aab05c) -
|
|
593
|
+
EDM-6938: pass spaceName into onCreate submit for confluence-create and pass as optional meta data
|
|
594
|
+
into link-create."
|
|
548
595
|
|
|
549
596
|
## 0.7.0
|
|
550
597
|
|
|
551
598
|
### Minor Changes
|
|
552
599
|
|
|
553
|
-
-
|
|
554
|
-
|
|
555
|
-
|
|
600
|
+
- [#35134](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35134)
|
|
601
|
+
[`eb070266532`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eb070266532) - Expose
|
|
602
|
+
Modal callbacks and Add modalTitle to the linkCreate Props
|
|
556
603
|
|
|
557
604
|
## 0.6.0
|
|
558
605
|
|
|
559
606
|
### Minor Changes
|
|
560
607
|
|
|
561
|
-
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
608
|
+
- [#35035](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35035)
|
|
609
|
+
[`ac3927f0650`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac3927f0650) - Make
|
|
610
|
+
modal 480px wide, Update TextField to take isRequired prop w/o default browser validation, remove
|
|
611
|
+
extra internal spacing in the create form
|
|
565
612
|
|
|
566
613
|
## 0.5.7
|
|
567
614
|
|
|
568
615
|
### Patch Changes
|
|
569
616
|
|
|
570
|
-
-
|
|
571
|
-
|
|
572
|
-
|
|
617
|
+
- [#34925](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34925)
|
|
618
|
+
[`ffb87e553ea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ffb87e553ea) - Hides
|
|
619
|
+
the validation error when user edits the field
|
|
573
620
|
|
|
574
621
|
## 0.5.6
|
|
575
622
|
|
|
576
623
|
### Patch Changes
|
|
577
624
|
|
|
578
|
-
-
|
|
579
|
-
|
|
580
|
-
|
|
625
|
+
- [#34759](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34759)
|
|
626
|
+
[`a02d619af5c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a02d619af5c) - Changed
|
|
627
|
+
onCreate to return a possible Promise to hold the create button spinner while submitting
|
|
581
628
|
|
|
582
629
|
## 0.5.5
|
|
583
630
|
|
|
584
631
|
### Patch Changes
|
|
585
632
|
|
|
586
|
-
-
|
|
587
|
-
|
|
588
|
-
|
|
633
|
+
- [#34750](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34750)
|
|
634
|
+
[`7b5fb18bb63`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7b5fb18bb63) - Update
|
|
635
|
+
screen event to UI
|
|
589
636
|
|
|
590
637
|
## 0.5.4
|
|
591
638
|
|
|
592
639
|
### Patch Changes
|
|
593
640
|
|
|
594
|
-
-
|
|
595
|
-
|
|
596
|
-
|
|
641
|
+
- [#34443](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34443)
|
|
642
|
+
[`61cb5313358`](https://bitbucket.org/atlassian/atlassian-frontend/commits/61cb5313358) - Removing
|
|
643
|
+
unused dependencies and dev dependencies
|
|
597
644
|
|
|
598
645
|
## 0.5.3
|
|
599
646
|
|
|
600
647
|
### Patch Changes
|
|
601
648
|
|
|
602
|
-
-
|
|
603
|
-
|
|
604
|
-
|
|
649
|
+
- [#34463](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34463)
|
|
650
|
+
[`ae5ac36af00`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ae5ac36af00) - Updates
|
|
651
|
+
analytics codegen to support screen events.
|
|
605
652
|
|
|
606
653
|
## 0.5.2
|
|
607
654
|
|
|
608
655
|
### Patch Changes
|
|
609
656
|
|
|
610
|
-
-
|
|
611
|
-
|
|
612
|
-
|
|
657
|
+
- [#34207](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34207)
|
|
658
|
+
[`7734ef0bdb4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7734ef0bdb4) - allowing
|
|
659
|
+
default values in confluence creation form.
|
|
613
660
|
|
|
614
661
|
## 0.5.1
|
|
615
662
|
|
|
616
663
|
### Patch Changes
|
|
617
664
|
|
|
618
|
-
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
665
|
+
- [#33671](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33671)
|
|
666
|
+
[`2d812255401`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2d812255401) -
|
|
667
|
+
EDM-6561: add an autofocus on title field in create modal and change cancel button labeling to
|
|
668
|
+
close
|
|
622
669
|
|
|
623
670
|
## 0.5.0
|
|
624
671
|
|
|
625
672
|
### Minor Changes
|
|
626
673
|
|
|
627
|
-
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
674
|
+
- [#33735](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33735)
|
|
675
|
+
[`ad753581e70`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ad753581e70) - [ux]
|
|
676
|
+
Moves the FormFooter out of CreateForm and provides a new CreateFormLoader component & now we
|
|
677
|
+
handle the submitting state in the form context
|
|
631
678
|
|
|
632
679
|
## 0.4.4
|
|
633
680
|
|
|
634
681
|
### Patch Changes
|
|
635
682
|
|
|
636
|
-
-
|
|
637
|
-
|
|
638
|
-
|
|
683
|
+
- [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
|
|
684
|
+
[`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
|
|
685
|
+
legacy types are published for TS 4.5-4.8
|
|
639
686
|
|
|
640
687
|
## 0.4.3
|
|
641
688
|
|
|
642
689
|
### Patch Changes
|
|
643
690
|
|
|
644
|
-
-
|
|
645
|
-
|
|
646
|
-
|
|
691
|
+
- [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
|
|
692
|
+
[`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade
|
|
693
|
+
Typescript from `4.5.5` to `4.9.5`
|
|
647
694
|
|
|
648
695
|
## 0.4.2
|
|
649
696
|
|
|
650
697
|
### Patch Changes
|
|
651
698
|
|
|
652
|
-
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
699
|
+
- [#33372](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33372)
|
|
700
|
+
[`93af54caca2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/93af54caca2) -
|
|
701
|
+
EDM-6553: no functionality change, just updating UI so that there is padding between the cancel
|
|
702
|
+
and create button for link-create. Also updated the dropdown error message.
|
|
656
703
|
|
|
657
704
|
## 0.4.1
|
|
658
705
|
|
|
659
706
|
### Patch Changes
|
|
660
707
|
|
|
661
|
-
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
708
|
+
- [#33186](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33186)
|
|
709
|
+
[`3c5946b6cdf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c5946b6cdf) -
|
|
710
|
+
EDM-6524: remove isRequired prop from textfield in create component as browser validation will not
|
|
711
|
+
be used, also spread AKTextfield props to stop exposure of testid and placeholder props.
|
|
665
712
|
|
|
666
713
|
## 0.4.0
|
|
667
714
|
|
|
668
715
|
### Minor Changes
|
|
669
716
|
|
|
670
|
-
-
|
|
671
|
-
|
|
672
|
-
|
|
717
|
+
- [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
|
|
718
|
+
[`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
|
|
719
|
+
minor dependency bump
|
|
673
720
|
|
|
674
721
|
### Patch Changes
|
|
675
722
|
|
|
676
|
-
-
|
|
723
|
+
- Updated dependencies
|
|
677
724
|
|
|
678
725
|
## 0.3.3
|
|
679
726
|
|
|
680
727
|
### Patch Changes
|
|
681
728
|
|
|
682
|
-
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
729
|
+
- [#32602](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32602)
|
|
730
|
+
[`5cbb3a0f20c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5cbb3a0f20c) - Fix
|
|
731
|
+
tangerine lint warnings & fix SVG id not unique & add VR test for dropdowns in modal & handle
|
|
732
|
+
plugin errors
|
|
686
733
|
|
|
687
734
|
## 0.3.2
|
|
688
735
|
|
|
689
736
|
### Patch Changes
|
|
690
737
|
|
|
691
|
-
-
|
|
692
|
-
|
|
693
|
-
|
|
738
|
+
- [#32501](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32501)
|
|
739
|
+
[`1600a0d171f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1600a0d171f) - Adds
|
|
740
|
+
various eslint-ignores for tokens-related warnings
|
|
694
741
|
|
|
695
742
|
## 0.3.1
|
|
696
743
|
|
|
697
744
|
### Patch Changes
|
|
698
745
|
|
|
699
|
-
-
|
|
700
|
-
|
|
701
|
-
|
|
746
|
+
- [#32659](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32659)
|
|
747
|
+
[`9e1c1e92771`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e1c1e92771) - Fire
|
|
748
|
+
analytics
|
|
702
749
|
|
|
703
750
|
## 0.3.0
|
|
704
751
|
|
|
705
752
|
### Minor Changes
|
|
706
753
|
|
|
707
|
-
-
|
|
708
|
-
|
|
709
|
-
|
|
754
|
+
- [#32457](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32457)
|
|
755
|
+
[`29dfee4c540`](https://bitbucket.org/atlassian/atlassian-frontend/commits/29dfee4c540) - Adds
|
|
756
|
+
global error boundary and fixes footer padding
|
|
710
757
|
|
|
711
758
|
## 0.2.1
|
|
712
759
|
|
|
713
760
|
### Patch Changes
|
|
714
761
|
|
|
715
|
-
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
-
|
|
762
|
+
- [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424)
|
|
763
|
+
[`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY
|
|
764
|
+
remove before merging to master; dupe adf-schema via adf-utils
|
|
765
|
+
- Updated dependencies
|
|
719
766
|
|
|
720
767
|
## 0.2.0
|
|
721
768
|
|
|
722
769
|
### Minor Changes
|
|
723
770
|
|
|
724
|
-
-
|
|
725
|
-
|
|
726
|
-
|
|
771
|
+
- [#30840](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30840)
|
|
772
|
+
[`a765caedf71`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a765caedf71) - EDM-5666
|
|
773
|
+
Implement Create Confluence Plugin
|
|
727
774
|
|
|
728
775
|
### Patch Changes
|
|
729
776
|
|
|
730
|
-
-
|
|
731
|
-
|
|
777
|
+
- [`430f0f27c63`](https://bitbucket.org/atlassian/atlassian-frontend/commits/430f0f27c63) - Use
|
|
778
|
+
FormSection instead of ModalSection
|
|
732
779
|
|
|
733
780
|
## 0.1.2
|
|
734
781
|
|
|
735
782
|
### Patch Changes
|
|
736
783
|
|
|
737
|
-
-
|
|
738
|
-
|
|
739
|
-
|
|
784
|
+
- [#31972](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31972)
|
|
785
|
+
[`5da1c8f4422`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5da1c8f4422) -
|
|
786
|
+
Integrate with link-create-presets
|
|
740
787
|
|
|
741
788
|
## 0.1.1
|
|
742
789
|
|
|
743
790
|
### Patch Changes
|
|
744
791
|
|
|
745
|
-
-
|
|
746
|
-
|
|
747
|
-
|
|
792
|
+
- [#31721](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31721)
|
|
793
|
+
[`63acd1bc789`](https://bitbucket.org/atlassian/atlassian-frontend/commits/63acd1bc789) - Update
|
|
794
|
+
examples with presets
|
|
748
795
|
|
|
749
796
|
## 0.1.0
|
|
750
797
|
|
|
751
798
|
### Minor Changes
|
|
752
799
|
|
|
753
|
-
-
|
|
754
|
-
|
|
755
|
-
|
|
800
|
+
- [#30674](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30674)
|
|
801
|
+
[`7e7ca45dbe4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e7ca45dbe4) - Exports
|
|
802
|
+
LinkCreateProps and LinkCreatePlugin Types
|
|
756
803
|
|
|
757
804
|
## 0.0.4
|
|
758
805
|
|
|
759
806
|
### Patch Changes
|
|
760
807
|
|
|
761
|
-
-
|
|
762
|
-
|
|
763
|
-
|
|
808
|
+
- [#30194](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30194)
|
|
809
|
+
[`09697a312bc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/09697a312bc) - EDM-5657
|
|
810
|
+
EDM-5661 Implement Select and Textfield components
|
|
764
811
|
|
|
765
812
|
## 0.0.3
|
|
766
813
|
|
|
767
814
|
### Patch Changes
|
|
768
815
|
|
|
769
|
-
-
|
|
770
|
-
|
|
771
|
-
|
|
816
|
+
- [#30122](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30122)
|
|
817
|
+
[`4b8910b3460`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4b8910b3460) - Add
|
|
818
|
+
link-create-confluence package
|
|
772
819
|
|
|
773
820
|
## 0.0.2
|
|
774
821
|
|
|
775
822
|
### Patch Changes
|
|
776
823
|
|
|
777
|
-
-
|
|
778
|
-
|
|
779
|
-
|
|
824
|
+
- [#29757](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29757)
|
|
825
|
+
[`d7724023d26`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d7724023d26) - Initial
|
|
826
|
+
version of Create component
|