@atlassian/aui 9.5.1 → 9.6.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/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 +19 -19
- 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 +20 -20
- package/dist/aui/aui-prototyping.nodeps.js.map +1 -1
- package/package.json +8 -8
- package/src/css-vendor/jquery/plugins/jquery.select2.css +123 -43
- package/src/js/aui/blanket.js +16 -18
- package/src/js/aui/dialog2.js +97 -19
- package/src/js/aui/dropdown2.js +102 -50
- package/src/js/aui/focus-manager.js +10 -2
- package/src/js/aui/inline-dialog2.js +61 -41
- package/src/js/aui/internal/i18n/aui.js +1 -0
- package/src/js/aui/internal/select/suggestion-model.js +1 -1
- package/src/js/aui/internal/select/suggestions-model.js +4 -4
- package/src/js/aui/internal/select/suggestions-view.js +11 -11
- package/src/js/aui/internal/select/template.js +4 -4
- package/src/js/aui/select.js +67 -47
- package/src/js/aui/tooltip.js +6 -1
- package/src/js-vendor/jquery/plugins/jquery.select2.js +931 -458
- package/src/less/aui-experimental-tooltip.less +1 -0
- package/src/less/dialog2.less +1 -5
- package/src/less/dropdown2.less +12 -0
- package/src/less/forms-current.less +1 -0
- package/src/less/single-select.less +4 -0
package/src/less/dialog2.less
CHANGED
|
@@ -141,10 +141,6 @@
|
|
|
141
141
|
}
|
|
142
142
|
}
|
|
143
143
|
|
|
144
|
-
&[data-aui-modal="true"] &-header-close {
|
|
145
|
-
display: none;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
144
|
&-footer {
|
|
149
145
|
#aui-dialog.aui-dialog-footer-base();
|
|
150
146
|
border-radius: 0 0 @dialog-container-border-radius @dialog-container-border-radius;
|
|
@@ -261,7 +257,7 @@
|
|
|
261
257
|
.make-it-fullscreen();
|
|
262
258
|
}
|
|
263
259
|
|
|
264
|
-
.aui-dialog2-content {
|
|
260
|
+
& .aui-dialog2-content {
|
|
265
261
|
height: calc(~"100vh" - @header-footer-combined-height);
|
|
266
262
|
max-height: none; // otherwise, the footer "creeps up" the dialog and takes up the available space.
|
|
267
263
|
}
|
package/src/less/dropdown2.less
CHANGED
|
@@ -226,6 +226,18 @@
|
|
|
226
226
|
});
|
|
227
227
|
}
|
|
228
228
|
|
|
229
|
+
.aui-dropdown2-trigger[aria-expanded="true"]:not(.aui-dropdown2-trigger-arrowless) {
|
|
230
|
+
.dropdown-icon({
|
|
231
|
+
transform: rotate(180deg);
|
|
232
|
+
});
|
|
233
|
+
|
|
234
|
+
&.aui-dropdown2-sub-trigger {
|
|
235
|
+
.dropdown-icon({
|
|
236
|
+
transform: rotate(90deg);
|
|
237
|
+
});
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
|
|
229
241
|
.aui-dropdown2-sub-trigger {
|
|
230
242
|
--aui-dropdown-ig: @aui-glyph-chevron-right;
|
|
231
243
|
}
|