@syncfusion/ej2-navigations 33.2.8 → 33.2.15
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/ej2-navigations.min.js +10 -1
- package/dist/ej2-navigations.umd.min.js +10 -1
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +6 -0
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +6 -0
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +10 -1
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +9 -0
- package/package.json +4 -4
- package/src/accordion/accordion.js +3 -0
- package/src/common/menu-base.js +3 -0
- package/styles/accordion/_layout.scss +5 -0
- package/styles/accordion/_theme.scss +17 -0
- package/styles/accordion/bds.css +14 -0
- package/styles/accordion/bootstrap-dark.css +14 -0
- package/styles/accordion/bootstrap.css +14 -0
- package/styles/accordion/bootstrap4.css +14 -0
- package/styles/accordion/bootstrap5-dark.css +14 -0
- package/styles/accordion/bootstrap5.3.css +14 -0
- package/styles/accordion/bootstrap5.css +14 -0
- package/styles/accordion/fabric-dark.css +14 -0
- package/styles/accordion/fabric.css +14 -0
- package/styles/accordion/fluent-dark.css +14 -0
- package/styles/accordion/fluent.css +14 -0
- package/styles/accordion/fluent2.css +22 -0
- package/styles/accordion/highcontrast-light.css +14 -0
- package/styles/accordion/highcontrast.css +14 -0
- package/styles/accordion/material-dark.css +14 -0
- package/styles/accordion/material.css +14 -0
- package/styles/accordion/material3-dark.css +14 -0
- package/styles/accordion/material3.css +14 -0
- package/styles/accordion/tailwind-dark.css +14 -0
- package/styles/accordion/tailwind.css +14 -0
- package/styles/accordion/tailwind3.css +22 -0
- package/styles/bds-lite.css +14 -0
- package/styles/bds.css +14 -0
- package/styles/bootstrap-dark-lite.css +14 -0
- package/styles/bootstrap-dark.css +14 -0
- package/styles/bootstrap-lite.css +14 -0
- package/styles/bootstrap.css +14 -0
- package/styles/bootstrap4-lite.css +14 -0
- package/styles/bootstrap4.css +14 -0
- package/styles/bootstrap5-dark-lite.css +14 -0
- package/styles/bootstrap5-dark.css +14 -0
- package/styles/bootstrap5-lite.css +14 -0
- package/styles/bootstrap5.3-lite.css +14 -0
- package/styles/bootstrap5.3.css +14 -0
- package/styles/bootstrap5.css +14 -0
- package/styles/fabric-dark-lite.css +14 -0
- package/styles/fabric-dark.css +14 -0
- package/styles/fabric-lite.css +14 -0
- package/styles/fabric.css +14 -0
- package/styles/fluent-dark-lite.css +14 -0
- package/styles/fluent-dark.css +14 -0
- package/styles/fluent-lite.css +14 -0
- package/styles/fluent.css +14 -0
- package/styles/fluent2-lite.css +23 -1
- package/styles/fluent2.css +24 -2
- package/styles/highcontrast-light-lite.css +14 -0
- package/styles/highcontrast-light.css +14 -0
- package/styles/highcontrast-lite.css +14 -0
- package/styles/highcontrast.css +14 -0
- package/styles/material-dark-lite.css +14 -0
- package/styles/material-dark.css +14 -0
- package/styles/material-lite.css +14 -0
- package/styles/material.css +14 -0
- package/styles/material3-dark-lite.css +14 -0
- package/styles/material3-dark.css +14 -0
- package/styles/material3-lite.css +14 -0
- package/styles/material3.css +14 -0
- package/styles/menu/_fluent2-definition.scss +2 -2
- package/styles/menu/fluent2.css +2 -2
- package/styles/tailwind-dark-lite.css +14 -0
- package/styles/tailwind-dark.css +14 -0
- package/styles/tailwind-lite.css +14 -0
- package/styles/tailwind.css +14 -0
- package/styles/tailwind3-lite.css +22 -0
- package/styles/tailwind3.css +22 -0
|
@@ -1341,6 +1341,9 @@ var MenuBase = /** @__PURE__ @class */ (function (_super) {
|
|
|
1341
1341
|
}
|
|
1342
1342
|
}
|
|
1343
1343
|
this.defaultOption = this.showItemOnClick;
|
|
1344
|
+
if (isNullOrUndefined(this.animation)) {
|
|
1345
|
+
this.animation = new Animation({});
|
|
1346
|
+
}
|
|
1344
1347
|
};
|
|
1345
1348
|
MenuBase.prototype.renderItems = function () {
|
|
1346
1349
|
if (!this.items.length) {
|
|
@@ -6293,6 +6296,7 @@ var __decorate$4 = (undefined && undefined.__decorate) || function (decorators,
|
|
|
6293
6296
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6294
6297
|
};
|
|
6295
6298
|
var CLS_ACRDN_ROOT = 'e-acrdn-root';
|
|
6299
|
+
var CLS_ACRDN_CTRL = 'e-acrdn-ctrl';
|
|
6296
6300
|
var CLS_ROOT$2 = 'e-accordion';
|
|
6297
6301
|
var CLS_ITEM$1 = 'e-acrdn-item';
|
|
6298
6302
|
var CLS_ITEMFOCUS = 'e-item-focus';
|
|
@@ -6445,6 +6449,7 @@ var Accordion = /** @__PURE__ @class */ (function (_super) {
|
|
|
6445
6449
|
this.ctrlTem = null;
|
|
6446
6450
|
}
|
|
6447
6451
|
ele.classList.remove(CLS_ACRDN_ROOT);
|
|
6452
|
+
ele.classList.remove(CLS_ACRDN_CTRL);
|
|
6448
6453
|
ele.removeAttribute('style');
|
|
6449
6454
|
this.element.removeAttribute('data-ripple');
|
|
6450
6455
|
if (!this.isNested && isRippleEnabled) {
|
|
@@ -6470,6 +6475,7 @@ var Accordion = /** @__PURE__ @class */ (function (_super) {
|
|
|
6470
6475
|
if (this.enableRtl) {
|
|
6471
6476
|
this.add(this.element, CLS_RTL$3);
|
|
6472
6477
|
}
|
|
6478
|
+
this.element.classList.add(CLS_ACRDN_CTRL);
|
|
6473
6479
|
};
|
|
6474
6480
|
Accordion.prototype.add = function (ele, val) {
|
|
6475
6481
|
ele.classList.add(val);
|