@atlassian/aui 8.7.3 → 8.8.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-prototyping.css +1 -1
- package/dist/aui/aui-prototyping.js +1 -1
- package/dist/aui/aui-prototyping.js.map +1 -1
- package/dist/aui/aui-prototyping.nodeps.css +1 -1
- package/dist/aui/aui-prototyping.nodeps.js +1 -1
- package/dist/aui/aui-prototyping.nodeps.js.map +1 -1
- package/entry/aui.batch.prototyping.js +1 -1
- package/entry/behaviours/aui.behaviour.i18n.js +1 -1
- package/package.json +2 -2
- package/src/js/aui/tabs.js +3 -3
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * from './aui.side-effects';
|
|
2
2
|
export { log, error, warn } from './behaviours/aui.behaviour.logger';
|
|
3
|
-
import {
|
|
3
|
+
import { I18n } from './behaviours/aui.behaviour.i18n';
|
|
4
4
|
import './aui.batch.page';
|
|
5
5
|
import './aui.batch.patterns';
|
|
6
6
|
import './aui.batch.iconography';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { I18n } from '@atlassian/aui/src/js/aui/i18n';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlassian/aui",
|
|
3
3
|
"description": "Atlassian User Interface library",
|
|
4
|
-
"version": "8.
|
|
4
|
+
"version": "8.8.2",
|
|
5
5
|
"author": "Atlassian Pty Ltd.",
|
|
6
6
|
"homepage": "https://aui.atlassian.com",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"skatejs": "0.13.17",
|
|
44
44
|
"skatejs-template-html": "0.0.0",
|
|
45
45
|
"trim-extra-html-whitespace": "1.3.0",
|
|
46
|
-
"underscore": "1.
|
|
46
|
+
"underscore": "1.13.1"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@atlassian/adg-server-iconfont": "3.1.0",
|
package/src/js/aui/tabs.js
CHANGED
|
@@ -214,7 +214,7 @@ function calculateResponsiveTabs(tabsContainer, index) {
|
|
|
214
214
|
}
|
|
215
215
|
|
|
216
216
|
if (!$tabsContainer.hasClass('aui-tabs-disabled')) {
|
|
217
|
-
$dropdown.on('click', 'a', handleTabClick);
|
|
217
|
+
$dropdown.on('click.aui-tabs', 'a', handleTabClick);
|
|
218
218
|
}
|
|
219
219
|
|
|
220
220
|
/* Workaround for bug in Edge where the dom is just not being re-rendered properly
|
|
@@ -372,7 +372,7 @@ function getResponsiveTabs () {
|
|
|
372
372
|
function initWindow () {
|
|
373
373
|
const handler = debounce(responsiveResizeHandler, 200);
|
|
374
374
|
handler(getResponsiveTabs());
|
|
375
|
-
$(window).on('resize', () => handler(getResponsiveTabs()));
|
|
375
|
+
$(window).on('resize.aui-tabs', () => handler(getResponsiveTabs()));
|
|
376
376
|
}
|
|
377
377
|
|
|
378
378
|
function initTab (tab) {
|
|
@@ -393,7 +393,7 @@ function initTab (tab) {
|
|
|
393
393
|
});
|
|
394
394
|
|
|
395
395
|
// Set up click event for tabs
|
|
396
|
-
$tabMenu.on('click', 'a', handleTabClick);
|
|
396
|
+
$tabMenu.on('click.aui-tabs', 'a', handleTabClick);
|
|
397
397
|
$tab.data('aui-tab-events-bound', true);
|
|
398
398
|
|
|
399
399
|
initPanes(tab);
|