@acorex/components 19.5.0 → 19.6.1
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/bottom-navigation/lib/bottom-navigation.component.d.ts +5 -5
- package/fesm2022/acorex-components-bottom-navigation.mjs +6 -6
- package/fesm2022/acorex-components-bottom-navigation.mjs.map +1 -1
- package/fesm2022/acorex-components-drawer.mjs +1 -1
- package/fesm2022/acorex-components-drawer.mjs.map +1 -1
- package/fesm2022/acorex-components-form.mjs +30 -26
- package/fesm2022/acorex-components-form.mjs.map +1 -1
- package/fesm2022/acorex-components-map.mjs +406 -128
- package/fesm2022/acorex-components-map.mjs.map +1 -1
- package/fesm2022/acorex-components-otp.mjs +2 -2
- package/fesm2022/acorex-components-otp.mjs.map +1 -1
- package/fesm2022/acorex-components-phone-box.mjs +2 -2
- package/fesm2022/acorex-components-phone-box.mjs.map +1 -1
- package/fesm2022/acorex-components-side-menu.mjs +2 -2
- package/fesm2022/acorex-components-side-menu.mjs.map +1 -1
- package/fesm2022/acorex-components-step-wizard.mjs +8 -6
- package/fesm2022/acorex-components-step-wizard.mjs.map +1 -1
- package/fesm2022/acorex-components-toolbar.mjs +2 -2
- package/fesm2022/acorex-components-toolbar.mjs.map +1 -1
- package/form/lib/form.component.d.ts +4 -2
- package/map/index.d.ts +1 -0
- package/map/lib/map.component.d.ts +63 -12
- package/map/lib/map.service.d.ts +124 -19
- package/map/lib/map.type.d.ts +20 -0
- package/package.json +1 -5
- package/side-menu/lib/side-menu.component.d.ts +1 -1
- package/step-wizard/lib/step-wizard-item/step-wizard-item.component.d.ts +2 -2
- package/step-wizard/lib/step-wizard.component.d.ts +2 -1
- package/fesm2022/acorex-components-nav.mjs +0 -101
- package/fesm2022/acorex-components-nav.mjs.map +0 -1
- package/nav/README.md +0 -3
- package/nav/index.d.ts +0 -3
- package/nav/lib/nav-item/nav-item.component.d.ts +0 -37
- package/nav/lib/nav.component.d.ts +0 -10
- package/nav/lib/nav.module.d.ts +0 -10
@@ -1,101 +0,0 @@
|
|
1
|
-
import { MXInteractiveComponent, MXBaseComponent, AXCommonModule } from '@acorex/components/common';
|
2
|
-
import * as i0 from '@angular/core';
|
3
|
-
import { EventEmitter, Component, ChangeDetectionStrategy, ViewEncapsulation, Output, Input, NgModule } from '@angular/core';
|
4
|
-
import { classes } from 'polytype';
|
5
|
-
import { CommonModule } from '@angular/common';
|
6
|
-
|
7
|
-
/**
|
8
|
-
* @category Components
|
9
|
-
* A component represents an individual item within the navigation interface, supporting customization options such as disabling and color changes.
|
10
|
-
*/
|
11
|
-
class AXNavItemComponent extends classes(MXInteractiveComponent) {
|
12
|
-
constructor() {
|
13
|
-
super(...arguments);
|
14
|
-
/**
|
15
|
-
* Emits an event when the navigation item is clicked.
|
16
|
-
* @event
|
17
|
-
*/
|
18
|
-
this.onClick = new EventEmitter();
|
19
|
-
/**
|
20
|
-
* Emits when the active state changes.
|
21
|
-
* @event
|
22
|
-
*/
|
23
|
-
this.activeChange = new EventEmitter();
|
24
|
-
/** @ignore */
|
25
|
-
this._active = false;
|
26
|
-
}
|
27
|
-
/**
|
28
|
-
* Gets or sets the active state of the component.
|
29
|
-
* @param {boolean} v
|
30
|
-
*/
|
31
|
-
get active() {
|
32
|
-
return this._active;
|
33
|
-
}
|
34
|
-
/**
|
35
|
-
* Sets the active state of the component.
|
36
|
-
* @param {boolean} v
|
37
|
-
*/
|
38
|
-
set active(v) {
|
39
|
-
this.setOption({
|
40
|
-
name: 'active',
|
41
|
-
value: v,
|
42
|
-
});
|
43
|
-
}
|
44
|
-
/** @ignore */
|
45
|
-
_handleClickEvent(e) {
|
46
|
-
this.onClick.emit({
|
47
|
-
component: this,
|
48
|
-
htmlElement: this.getHostElement(),
|
49
|
-
nativeEvent: e,
|
50
|
-
});
|
51
|
-
}
|
52
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXNavItemComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
53
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.3", type: AXNavItemComponent, isStandalone: false, selector: "ax-nav-item", inputs: { disabled: "disabled", color: "color", active: "active" }, outputs: { onClick: "onClick", activeChange: "activeChange" }, usesInheritance: true, ngImport: i0, template: "<ng-content select=\"ax-title\"></ng-content>\n\n<li class=\"ax-nav-li\" [class.ax-state-disabled]=\"disabled\" [class.ax-state-active]=\"active\"\n (click)=\"_handleClickEvent($event)\">\n <div class=\"ax-start-nav\">\n <ng-content select=\"ax-prefix\"></ng-content>\n </div>\n <ng-content></ng-content>\n <div class=\"ax-end-nav\">\n <ng-content select=\"ax-suffix\"></ng-content>\n </div>\n</li>\n\n<ul class=\"ax-nav-children\">\n <ng-content select=\"ax-side-menu-item, ng-container\"></ng-content>\n</ul>", changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
54
|
-
}
|
55
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXNavItemComponent, decorators: [{
|
56
|
-
type: Component,
|
57
|
-
args: [{ selector: 'ax-nav-item', inputs: ['disabled', 'color'], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, standalone: false, template: "<ng-content select=\"ax-title\"></ng-content>\n\n<li class=\"ax-nav-li\" [class.ax-state-disabled]=\"disabled\" [class.ax-state-active]=\"active\"\n (click)=\"_handleClickEvent($event)\">\n <div class=\"ax-start-nav\">\n <ng-content select=\"ax-prefix\"></ng-content>\n </div>\n <ng-content></ng-content>\n <div class=\"ax-end-nav\">\n <ng-content select=\"ax-suffix\"></ng-content>\n </div>\n</li>\n\n<ul class=\"ax-nav-children\">\n <ng-content select=\"ax-side-menu-item, ng-container\"></ng-content>\n</ul>" }]
|
58
|
-
}], propDecorators: { onClick: [{
|
59
|
-
type: Output
|
60
|
-
}], activeChange: [{
|
61
|
-
type: Output
|
62
|
-
}], active: [{
|
63
|
-
type: Input
|
64
|
-
}] } });
|
65
|
-
|
66
|
-
/**
|
67
|
-
* @category Components
|
68
|
-
* A navigation component provides a customizable navigation interface with optimized change detection.
|
69
|
-
*/
|
70
|
-
class AXNavComponent extends MXBaseComponent {
|
71
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXNavComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
72
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.3", type: AXNavComponent, isStandalone: false, selector: "ax-nav", usesInheritance: true, ngImport: i0, template: "<ul>\n <ng-content select=\"ax-nav-item,ax-title,ng-container\"></ng-content>\n</ul>\n", styles: ["ax-nav{display:flex;flex-direction:column;overflow-y:auto}ax-nav ax-title{margin-bottom:.5rem;display:block;padding:.15rem .5rem;line-height:1rem;font-weight:500;font-size:.75rem}ax-nav ax-nav-item .ax-nav-li{position:relative;min-width:140px;padding:.15rem .5rem;margin-bottom:.25rem;display:flex;cursor:pointer;align-items:center;justify-content:flex-start;overflow:hidden;font-size:.875rem;font-weight:400;transition-property:all;transition-duration:.15s;border-inline-start:1px solid transparent;color:rgba(var(--ax-color-neutral-500))}ax-nav ax-nav-item .ax-nav-li.ax-state-disabled{cursor:not-allowed;opacity:.5!important}ax-nav ax-nav-item .ax-nav-li:hover:not(ax-nav ax-nav-item .ax-nav-li:hover.ax-state-disabled){border-inline-start-color:rgba(var(--ax-color-primary-400));color:rgba(var(--ax-color-primary-400))}ax-nav ax-nav-item .ax-nav-li.ax-state-active:not(ax-nav ax-nav-item .ax-nav-li.ax-state-active.ax-state-disabled){border-inline-start-color:rgba(var(--ax-color-primary-500));color:rgba(var(--ax-color-primary-500))}ax-nav ax-nav-item .ax-nav-li .ax-start-nav{display:flex;align-items:center;gap:.5rem}ax-nav ax-nav-item .ax-nav-li .ax-start-nav ax-prefix{margin-inline-end:.5rem}ax-nav ax-nav-item .ax-nav-li .ax-end-nav{display:flex;align-items:center;gap:.5rem}ax-nav ax-nav-item .ax-nav-li .ax-end-nav ax-suffix{margin-inline-start:.5rem}ax-nav ax-nav-item .ax-nav-children{overflow:hidden}ax-nav ax-nav-item .ax-nav-children ax-nav-item .ax-nav-li{padding:.15rem 1rem}.ax-dark ax-nav ax-nav-item .ax-nav-li{color:rgba(var(--ax-color-neutral-300))}.ax-dark ax-nav ax-nav-item .ax-nav-li:hover:not(.ax-dark ax-nav ax-nav-item .ax-nav-li:hover.ax-state-disabled){border-inline-start-color:rgba(var(--ax-color-primary-300));color:rgba(var(--ax-color-primary-300))}.ax-dark ax-nav ax-nav-item .ax-nav-li.ax-state-active:not(.ax-dark ax-nav ax-nav-item .ax-nav-li.ax-state-active.ax-state-disabled){border-inline-start-color:rgba(var(--ax-color-primary-300));color:rgba(var(--ax-color-primary-200))}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
73
|
-
}
|
74
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXNavComponent, decorators: [{
|
75
|
-
type: Component,
|
76
|
-
args: [{ selector: 'ax-nav', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, standalone: false, template: "<ul>\n <ng-content select=\"ax-nav-item,ax-title,ng-container\"></ng-content>\n</ul>\n", styles: ["ax-nav{display:flex;flex-direction:column;overflow-y:auto}ax-nav ax-title{margin-bottom:.5rem;display:block;padding:.15rem .5rem;line-height:1rem;font-weight:500;font-size:.75rem}ax-nav ax-nav-item .ax-nav-li{position:relative;min-width:140px;padding:.15rem .5rem;margin-bottom:.25rem;display:flex;cursor:pointer;align-items:center;justify-content:flex-start;overflow:hidden;font-size:.875rem;font-weight:400;transition-property:all;transition-duration:.15s;border-inline-start:1px solid transparent;color:rgba(var(--ax-color-neutral-500))}ax-nav ax-nav-item .ax-nav-li.ax-state-disabled{cursor:not-allowed;opacity:.5!important}ax-nav ax-nav-item .ax-nav-li:hover:not(ax-nav ax-nav-item .ax-nav-li:hover.ax-state-disabled){border-inline-start-color:rgba(var(--ax-color-primary-400));color:rgba(var(--ax-color-primary-400))}ax-nav ax-nav-item .ax-nav-li.ax-state-active:not(ax-nav ax-nav-item .ax-nav-li.ax-state-active.ax-state-disabled){border-inline-start-color:rgba(var(--ax-color-primary-500));color:rgba(var(--ax-color-primary-500))}ax-nav ax-nav-item .ax-nav-li .ax-start-nav{display:flex;align-items:center;gap:.5rem}ax-nav ax-nav-item .ax-nav-li .ax-start-nav ax-prefix{margin-inline-end:.5rem}ax-nav ax-nav-item .ax-nav-li .ax-end-nav{display:flex;align-items:center;gap:.5rem}ax-nav ax-nav-item .ax-nav-li .ax-end-nav ax-suffix{margin-inline-start:.5rem}ax-nav ax-nav-item .ax-nav-children{overflow:hidden}ax-nav ax-nav-item .ax-nav-children ax-nav-item .ax-nav-li{padding:.15rem 1rem}.ax-dark ax-nav ax-nav-item .ax-nav-li{color:rgba(var(--ax-color-neutral-300))}.ax-dark ax-nav ax-nav-item .ax-nav-li:hover:not(.ax-dark ax-nav ax-nav-item .ax-nav-li:hover.ax-state-disabled){border-inline-start-color:rgba(var(--ax-color-primary-300));color:rgba(var(--ax-color-primary-300))}.ax-dark ax-nav ax-nav-item .ax-nav-li.ax-state-active:not(.ax-dark ax-nav ax-nav-item .ax-nav-li.ax-state-active.ax-state-disabled){border-inline-start-color:rgba(var(--ax-color-primary-300));color:rgba(var(--ax-color-primary-200))}\n"] }]
|
77
|
-
}] });
|
78
|
-
|
79
|
-
const COMPONENT = [AXNavComponent, AXNavItemComponent];
|
80
|
-
const MODULES = [CommonModule, AXCommonModule];
|
81
|
-
class AXNavModule {
|
82
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXNavModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
83
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.3", ngImport: i0, type: AXNavModule, declarations: [AXNavComponent, AXNavItemComponent], imports: [CommonModule, AXCommonModule], exports: [AXNavComponent, AXNavItemComponent] }); }
|
84
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXNavModule, imports: [MODULES] }); }
|
85
|
-
}
|
86
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXNavModule, decorators: [{
|
87
|
-
type: NgModule,
|
88
|
-
args: [{
|
89
|
-
declarations: [...COMPONENT],
|
90
|
-
imports: [...MODULES],
|
91
|
-
exports: [...COMPONENT],
|
92
|
-
providers: [],
|
93
|
-
}]
|
94
|
-
}] });
|
95
|
-
|
96
|
-
/**
|
97
|
-
* Generated bundle index. Do not edit.
|
98
|
-
*/
|
99
|
-
|
100
|
-
export { AXNavComponent, AXNavItemComponent, AXNavModule };
|
101
|
-
//# sourceMappingURL=acorex-components-nav.mjs.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"acorex-components-nav.mjs","sources":["../../../../libs/components/nav/src/lib/nav-item/nav-item.component.ts","../../../../libs/components/nav/src/lib/nav-item/nav-item.component.html","../../../../libs/components/nav/src/lib/nav.component.ts","../../../../libs/components/nav/src/lib/nav.component.html","../../../../libs/components/nav/src/lib/nav.module.ts","../../../../libs/components/nav/src/acorex-components-nav.ts"],"sourcesContent":["import { AXClickEvent, MXInteractiveComponent } from '@acorex/components/common';\nimport { ChangeDetectionStrategy, Component, EventEmitter, Input, Output, ViewEncapsulation } from '@angular/core';\nimport { classes } from 'polytype';\n\n/**\n * @category Components\n * A component represents an individual item within the navigation interface, supporting customization options such as disabling and color changes.\n */\n@Component({\n selector: 'ax-nav-item',\n inputs: ['disabled', 'color'],\n templateUrl: './nav-item.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n encapsulation: ViewEncapsulation.None,\n standalone: false\n})\nexport class AXNavItemComponent extends classes(MXInteractiveComponent) {\n\n /**\n * Emits an event when the navigation item is clicked.\n * @event\n */\n @Output()\n onClick: EventEmitter<AXClickEvent> = new EventEmitter<AXClickEvent>();\n\n /**\n * Emits when the active state changes.\n * @event\n */\n @Output()\n activeChange: EventEmitter<boolean> = new EventEmitter<boolean>();\n\n /** @ignore */\n private _active = false;\n\n/**\n * Gets or sets the active state of the component.\n * @param {boolean} v \n */\n @Input()\n public get active(): boolean {\n return this._active;\n }\n\n /**\n * Sets the active state of the component.\n * @param {boolean} v \n */\n public set active(v: boolean) {\n this.setOption({\n name: 'active',\n value: v,\n });\n }\n\n /** @ignore */\n _handleClickEvent(e: MouseEvent) {\n this.onClick.emit({\n component: this,\n htmlElement: this.getHostElement(),\n nativeEvent: e,\n });\n }\n}\n","<ng-content select=\"ax-title\"></ng-content>\n\n<li class=\"ax-nav-li\" [class.ax-state-disabled]=\"disabled\" [class.ax-state-active]=\"active\"\n (click)=\"_handleClickEvent($event)\">\n <div class=\"ax-start-nav\">\n <ng-content select=\"ax-prefix\"></ng-content>\n </div>\n <ng-content></ng-content>\n <div class=\"ax-end-nav\">\n <ng-content select=\"ax-suffix\"></ng-content>\n </div>\n</li>\n\n<ul class=\"ax-nav-children\">\n <ng-content select=\"ax-side-menu-item, ng-container\"></ng-content>\n</ul>","import { MXBaseComponent } from '@acorex/components/common';\nimport { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';\n\n/**\n * @category Components\n * A navigation component provides a customizable navigation interface with optimized change detection.\n */\n@Component({\n selector: 'ax-nav',\n templateUrl: './nav.component.html',\n styleUrls: ['./nav.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n encapsulation: ViewEncapsulation.None,\n standalone: false\n})\nexport class AXNavComponent extends MXBaseComponent {}\n","<ul>\n <ng-content select=\"ax-nav-item,ax-title,ng-container\"></ng-content>\n</ul>\n","import { AXCommonModule } from '@acorex/components/common';\nimport { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { AXNavItemComponent } from './nav-item/nav-item.component';\nimport { AXNavComponent } from './nav.component';\n\nconst COMPONENT = [AXNavComponent, AXNavItemComponent];\nconst MODULES = [CommonModule, AXCommonModule];\n\n@NgModule({\n declarations: [...COMPONENT],\n imports: [...MODULES],\n exports: [...COMPONENT],\n providers: [],\n})\nexport class AXNavModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;AAIA;;;AAGG;MASU,kBAAmB,SAAQ,OAAO,CAAC,sBAAsB,CAAC,CAAA;AARvE,IAAA,WAAA,GAAA;;AAUE;;;AAGC;AAED,QAAA,IAAA,CAAA,OAAO,GAA+B,IAAI,YAAY,EAAgB;AAEtE;;;AAGC;AAED,QAAA,IAAA,CAAA,YAAY,GAA0B,IAAI,YAAY,EAAW;;QAGzD,IAAO,CAAA,OAAA,GAAG,KAAK;AA8BxB;AA5BD;;;AAGG;AACD,IAAA,IACW,MAAM,GAAA;QACf,OAAO,IAAI,CAAC,OAAO;;AAGrB;;;AAGC;IACD,IAAW,MAAM,CAAC,CAAU,EAAA;QAC1B,IAAI,CAAC,SAAS,CAAC;AACb,YAAA,IAAI,EAAE,QAAQ;AACd,YAAA,KAAK,EAAE,CAAC;AACT,SAAA,CAAC;;;AAIJ,IAAA,iBAAiB,CAAC,CAAa,EAAA;AAC7B,QAAA,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC;AAChB,YAAA,SAAS,EAAE,IAAI;AACf,YAAA,WAAW,EAAE,IAAI,CAAC,cAAc,EAAE;AAClC,YAAA,WAAW,EAAE,CAAC;AACf,SAAA,CAAC;;8GA7CO,kBAAkB,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAlB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,kBAAkB,kOChB/B,6gBAeK,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,aAAA,EAAA,EAAA,CAAA,iBAAA,CAAA,IAAA,EAAA,CAAA,CAAA;;2FDCQ,kBAAkB,EAAA,UAAA,EAAA,CAAA;kBAR9B,SAAS;AACI,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,aAAa,EACf,MAAA,EAAA,CAAC,UAAU,EAAE,OAAO,CAAC,EAAA,eAAA,EAEZ,uBAAuB,CAAC,MAAM,EAChC,aAAA,EAAA,iBAAiB,CAAC,IAAI,cACzB,KAAK,EAAA,QAAA,EAAA,6gBAAA,EAAA;8BASnB,OAAO,EAAA,CAAA;sBADN;gBAQD,YAAY,EAAA,CAAA;sBADX;gBAWU,MAAM,EAAA,CAAA;sBADhB;;;AEpCH;;;AAGG;AASG,MAAO,cAAe,SAAQ,eAAe,CAAA;8GAAtC,cAAc,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAd,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,cAAc,0FCf3B,yFAGA,EAAA,MAAA,EAAA,CAAA,w+DAAA,CAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,aAAA,EAAA,EAAA,CAAA,iBAAA,CAAA,IAAA,EAAA,CAAA,CAAA;;2FDYa,cAAc,EAAA,UAAA,EAAA,CAAA;kBAR1B,SAAS;+BACI,QAAQ,EAAA,eAAA,EAGD,uBAAuB,CAAC,MAAM,iBAChC,iBAAiB,CAAC,IAAI,EAAA,UAAA,EACzB,KAAK,EAAA,QAAA,EAAA,yFAAA,EAAA,MAAA,EAAA,CAAA,w+DAAA,CAAA,EAAA;;;AEPrB,MAAM,SAAS,GAAG,CAAC,cAAc,EAAE,kBAAkB,CAAC;AACtD,MAAM,OAAO,GAAG,CAAC,YAAY,EAAE,cAAc,CAAC;MAQjC,WAAW,CAAA;8GAAX,WAAW,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;+GAAX,WAAW,EAAA,YAAA,EAAA,CATL,cAAc,EAAE,kBAAkB,CAAA,EAAA,OAAA,EAAA,CACpC,YAAY,EAAE,cAAc,CAAA,EAAA,OAAA,EAAA,CAD1B,cAAc,EAAE,kBAAkB,CAAA,EAAA,CAAA,CAAA;AASxC,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAW,YAJT,OAAO,CAAA,EAAA,CAAA,CAAA;;2FAIT,WAAW,EAAA,UAAA,EAAA,CAAA;kBANvB,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE,CAAC,GAAG,SAAS,CAAC;AAC5B,oBAAA,OAAO,EAAE,CAAC,GAAG,OAAO,CAAC;AACrB,oBAAA,OAAO,EAAE,CAAC,GAAG,SAAS,CAAC;AACvB,oBAAA,SAAS,EAAE,EAAE;AACd,iBAAA;;;ACdD;;AAEG;;;;"}
|
package/nav/README.md
DELETED
package/nav/index.d.ts
DELETED
@@ -1,37 +0,0 @@
|
|
1
|
-
import { AXClickEvent, MXInteractiveComponent } from '@acorex/components/common';
|
2
|
-
import { EventEmitter } from '@angular/core';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
declare const AXNavItemComponent_base: import("polytype").Polytype.ClusteredConstructor<[typeof MXInteractiveComponent]>;
|
5
|
-
/**
|
6
|
-
* @category Components
|
7
|
-
* A component represents an individual item within the navigation interface, supporting customization options such as disabling and color changes.
|
8
|
-
*/
|
9
|
-
export declare class AXNavItemComponent extends AXNavItemComponent_base {
|
10
|
-
/**
|
11
|
-
* Emits an event when the navigation item is clicked.
|
12
|
-
* @event
|
13
|
-
*/
|
14
|
-
onClick: EventEmitter<AXClickEvent>;
|
15
|
-
/**
|
16
|
-
* Emits when the active state changes.
|
17
|
-
* @event
|
18
|
-
*/
|
19
|
-
activeChange: EventEmitter<boolean>;
|
20
|
-
/** @ignore */
|
21
|
-
private _active;
|
22
|
-
/**
|
23
|
-
* Gets or sets the active state of the component.
|
24
|
-
* @param {boolean} v
|
25
|
-
*/
|
26
|
-
get active(): boolean;
|
27
|
-
/**
|
28
|
-
* Sets the active state of the component.
|
29
|
-
* @param {boolean} v
|
30
|
-
*/
|
31
|
-
set active(v: boolean);
|
32
|
-
/** @ignore */
|
33
|
-
_handleClickEvent(e: MouseEvent): void;
|
34
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AXNavItemComponent, never>;
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXNavItemComponent, "ax-nav-item", never, { "disabled": { "alias": "disabled"; "required": false; }; "color": { "alias": "color"; "required": false; }; "active": { "alias": "active"; "required": false; }; }, { "onClick": "onClick"; "activeChange": "activeChange"; }, never, ["ax-title", "ax-prefix", "*", "ax-suffix", "ax-side-menu-item, ng-container"], false, never>;
|
36
|
-
}
|
37
|
-
export {};
|
@@ -1,10 +0,0 @@
|
|
1
|
-
import { MXBaseComponent } from '@acorex/components/common';
|
2
|
-
import * as i0 from "@angular/core";
|
3
|
-
/**
|
4
|
-
* @category Components
|
5
|
-
* A navigation component provides a customizable navigation interface with optimized change detection.
|
6
|
-
*/
|
7
|
-
export declare class AXNavComponent extends MXBaseComponent {
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AXNavComponent, never>;
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXNavComponent, "ax-nav", never, {}, {}, never, ["ax-nav-item,ax-title,ng-container"], false, never>;
|
10
|
-
}
|
package/nav/lib/nav.module.d.ts
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
import * as i0 from "@angular/core";
|
2
|
-
import * as i1 from "./nav.component";
|
3
|
-
import * as i2 from "./nav-item/nav-item.component";
|
4
|
-
import * as i3 from "@angular/common";
|
5
|
-
import * as i4 from "@acorex/components/common";
|
6
|
-
export declare class AXNavModule {
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AXNavModule, never>;
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXNavModule, [typeof i1.AXNavComponent, typeof i2.AXNavItemComponent], [typeof i3.CommonModule, typeof i4.AXCommonModule], [typeof i1.AXNavComponent, typeof i2.AXNavItemComponent]>;
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<AXNavModule>;
|
10
|
-
}
|