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