@atlassian/aui 9.5.0 → 9.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/aui/aui-css-deprecations.js.map +1 -1
- package/dist/aui/aui-prototyping.css +4 -4
- package/dist/aui/aui-prototyping.css.map +1 -1
- package/dist/aui/aui-prototyping.js +35 -16
- package/dist/aui/aui-prototyping.js.map +1 -1
- package/dist/aui/aui-prototyping.nodeps.css +4 -4
- package/dist/aui/aui-prototyping.nodeps.css.map +1 -1
- package/dist/aui/aui-prototyping.nodeps.js +35 -16
- package/dist/aui/aui-prototyping.nodeps.js.map +1 -1
- package/package.json +3 -2
- package/src/css-vendor/jquery/plugins/jquery.select2.css +0 -3
- package/src/js/aui/dropdown2.js +21 -2
- package/src/js/aui/forms/create-forms-component-body.js +37 -0
- package/src/js/aui/forms/custom-checkbox.js +6 -12
- package/src/js/aui/forms/custom-radio.js +6 -12
- package/src/js/aui/internal/detect-children-change.js +35 -0
- package/src/js/aui/internal/select/suggestion-model.js +1 -1
- package/src/js/aui/sidebar.js +7 -0
- package/src/js/aui/tooltip.js +21 -5
- package/src/js/aui/when-i-type.js +36 -27
- package/src/js-vendor/jquery/jquery.tablesorter.js +1645 -2663
- package/src/less/aui-experimental-tooltip.less +1 -0
- package/src/less/dialog2.less +1 -1
- package/src/less/forms-radios-and-checkboxes.less +19 -26
package/src/less/dialog2.less
CHANGED
|
@@ -261,7 +261,7 @@
|
|
|
261
261
|
.make-it-fullscreen();
|
|
262
262
|
}
|
|
263
263
|
|
|
264
|
-
.aui-dialog2-content {
|
|
264
|
+
& .aui-dialog2-content {
|
|
265
265
|
height: calc(~"100vh" - @header-footer-combined-height);
|
|
266
266
|
max-height: none; // otherwise, the footer "creeps up" the dialog and takes up the available space.
|
|
267
267
|
}
|
|
@@ -200,6 +200,21 @@ form.aui:not(.aui-legacy-forms) {
|
|
|
200
200
|
.aui-checkbox-disabled-style();
|
|
201
201
|
}
|
|
202
202
|
}
|
|
203
|
+
|
|
204
|
+
&:focus + .aui-form-glyph::after {
|
|
205
|
+
.aui-radio-focus-size();
|
|
206
|
+
.aui-radio-focus-position();
|
|
207
|
+
|
|
208
|
+
content: "";
|
|
209
|
+
|
|
210
|
+
border: @button-focus-border;
|
|
211
|
+
border-radius: @aui-form-button-size;
|
|
212
|
+
background-color: transparent;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
&:focus + .aui-form-glyph::before {
|
|
216
|
+
border-color: @button-focus-border-color;
|
|
217
|
+
}
|
|
203
218
|
}
|
|
204
219
|
}
|
|
205
220
|
|
|
@@ -255,6 +270,10 @@ form.aui:not(.aui-legacy-forms) {
|
|
|
255
270
|
.aui-checkbox-disabled-style();
|
|
256
271
|
}
|
|
257
272
|
}
|
|
273
|
+
|
|
274
|
+
&:focus + .aui-form-glyph::before {
|
|
275
|
+
border-color: @button-focus-border-color;
|
|
276
|
+
}
|
|
258
277
|
}
|
|
259
278
|
}
|
|
260
279
|
|
|
@@ -273,30 +292,4 @@ form.aui:not(.aui-legacy-forms) {
|
|
|
273
292
|
top: @radio-offset-top - 1px;
|
|
274
293
|
}
|
|
275
294
|
|
|
276
|
-
.radio {
|
|
277
|
-
input {
|
|
278
|
-
&:focus + .aui-form-glyph::after {
|
|
279
|
-
.aui-radio-focus-size();
|
|
280
|
-
.aui-radio-focus-position();
|
|
281
|
-
|
|
282
|
-
content: "";
|
|
283
|
-
|
|
284
|
-
border: @button-focus-border;
|
|
285
|
-
border-radius: @aui-form-button-size;
|
|
286
|
-
background-color: transparent;
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
&:focus + .aui-form-glyph::before {
|
|
290
|
-
border-color: @button-focus-border-color;
|
|
291
|
-
}
|
|
292
|
-
}
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
.checkbox {
|
|
296
|
-
input {
|
|
297
|
-
&:focus + .aui-form-glyph::before {
|
|
298
|
-
border-color: @button-focus-border-color;
|
|
299
|
-
}
|
|
300
|
-
}
|
|
301
|
-
}
|
|
302
295
|
}
|