@acorex/components 5.0.60 → 5.1.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/esm2020/lib/base/events.class.mjs +7 -1
- package/esm2020/lib/base/mixin/base-menu-mixin.class.mjs +135 -0
- package/esm2020/lib/base/mixin/mixin.class.mjs +4 -3
- package/esm2020/lib/calendar/calendar.class.mjs +16 -4
- package/esm2020/lib/calendar/calendar.component.mjs +33 -13
- package/esm2020/lib/carousel/carousel-arrows.component.mjs +11 -10
- package/esm2020/lib/carousel/carousel-pager.component.mjs +5 -5
- package/esm2020/lib/carousel/carousel-splidejs.class.mjs +11 -5
- package/esm2020/lib/carousel/carousel.class.mjs +1 -1
- package/esm2020/lib/carousel/carousel.component.mjs +164 -13
- package/esm2020/lib/carousel/carousel.module.mjs +1 -1
- package/esm2020/lib/datepicker/datepicker.component.mjs +20 -9
- package/esm2020/lib/menu/menu.component.mjs +39 -27
- package/esm2020/lib/menu/menu.module.mjs +6 -4
- package/esm2020/lib/picker/index.mjs +3 -0
- package/esm2020/lib/picker/picker.component.mjs +24 -0
- package/esm2020/lib/picker/picker.module.mjs +20 -0
- package/esm2020/lib/result/index.mjs +1 -1
- package/esm2020/lib/tabs/tab-item.component.mjs +7 -4
- package/esm2020/lib/tabs/tabs.component.mjs +4 -3
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/acorex-components.mjs +470 -86
- package/fesm2015/acorex-components.mjs.map +1 -1
- package/fesm2020/acorex-components.mjs +467 -84
- package/fesm2020/acorex-components.mjs.map +1 -1
- package/lib/base/events.class.d.ts +14 -0
- package/lib/base/mixin/base-menu-mixin.class.d.ts +51 -0
- package/lib/base/mixin/datalist-component.class.d.ts +8 -8
- package/lib/base/mixin/interactive-mixin.class.d.ts +2 -2
- package/lib/base/mixin/mixin.class.d.ts +72 -26
- package/lib/base/mixin/value-mixin.class.d.ts +8 -8
- package/lib/button/button-item.component.d.ts +2 -2
- package/lib/calendar/calendar.class.d.ts +9 -1
- package/lib/calendar/calendar.component.d.ts +4 -4
- package/lib/carousel/carousel-arrows.component.d.ts +1 -1
- package/lib/carousel/carousel.class.d.ts +20 -2
- package/lib/carousel/carousel.component.d.ts +41 -5
- package/lib/datepicker/datepicker.component.d.ts +22 -19
- package/lib/menu/menu.component.d.ts +9 -12
- package/lib/menu/menu.module.d.ts +3 -1
- package/lib/picker/index.d.ts +2 -0
- package/lib/picker/picker.component.d.ts +18 -0
- package/lib/picker/picker.module.d.ts +9 -0
- package/lib/tabs/tab-item.component.d.ts +1 -1
- package/lib/tabs/tabs.component.d.ts +1 -0
- package/package.json +2 -2
- package/public-api.d.ts +1 -0
|
@@ -2,8 +2,10 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./menu.component";
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
4
|
import * as i3 from "../icon/icon.module";
|
|
5
|
+
import * as i4 from "../loading/loading.module";
|
|
6
|
+
import * as i5 from "@acorex/core";
|
|
5
7
|
export declare class AXMenuModule {
|
|
6
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXMenuModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMenuModule, [typeof i1.AXMenuComponent], [typeof i2.CommonModule, typeof i3.AXIconModule], [typeof i1.AXMenuComponent]>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMenuModule, [typeof i1.AXMenuComponent], [typeof i2.CommonModule, typeof i3.AXIconModule, typeof i4.AXLoadingModule, typeof i5.AXTranslationModule], [typeof i1.AXMenuComponent]>;
|
|
8
10
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXMenuModule>;
|
|
9
11
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
2
|
+
import { AXBaseComponent } from '../base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export interface PickerItem {
|
|
5
|
+
id?: string;
|
|
6
|
+
name?: string;
|
|
7
|
+
text?: string;
|
|
8
|
+
active?: boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare class AXPickerComponent extends AXBaseComponent {
|
|
11
|
+
items: PickerItem[];
|
|
12
|
+
/**
|
|
13
|
+
* @ignore
|
|
14
|
+
*/
|
|
15
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPickerComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPickerComponent, "ax-picker", never, { "items": "items"; }, {}, never, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./picker.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../carousel/carousel.module";
|
|
5
|
+
export declare class AXPickerModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPickerModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXPickerModule, [typeof i1.AXPickerComponent], [typeof i2.CommonModule, typeof i3.AXCarouselModule], [typeof i1.AXPickerComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXPickerModule>;
|
|
9
|
+
}
|
|
@@ -29,7 +29,7 @@ export declare const AXBaseTabItemMixin: {
|
|
|
29
29
|
};
|
|
30
30
|
} & typeof AXBaseComponent;
|
|
31
31
|
export declare class AXTabItemComponent extends AXBaseTabItemMixin {
|
|
32
|
-
constructor(
|
|
32
|
+
constructor(_elementRef: ElementRef, _cdr: ChangeDetectorRef);
|
|
33
33
|
text: string;
|
|
34
34
|
key: string;
|
|
35
35
|
template: TemplateRef<any>;
|
|
@@ -12,6 +12,7 @@ export declare class AXTabsComponent extends AXBaseComponent {
|
|
|
12
12
|
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
13
13
|
private _isUserInteraction;
|
|
14
14
|
get items(): AXTabItemComponent[];
|
|
15
|
+
private _selectedItem;
|
|
15
16
|
get selectedIndex(): number;
|
|
16
17
|
get selectedItem(): AXTabItemComponent;
|
|
17
18
|
onActiveTabChanged: EventEmitter<AXTabStripChangedEvent>;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/components",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.1.2",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^13.3.2",
|
|
6
6
|
"@angular/core": "^13.3.2",
|
|
7
7
|
"@angular/cdk": "^13.3.2",
|
|
8
|
-
"@splidejs/splide": "^
|
|
8
|
+
"@splidejs/splide": "^4.0.1",
|
|
9
9
|
"ngx-mask": "^12.0.0",
|
|
10
10
|
"angular-imask": "^6.3.0-alpha.0"
|
|
11
11
|
},
|
package/public-api.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ export * from "./lib/menu";
|
|
|
28
28
|
export * from "./lib/number-box";
|
|
29
29
|
export * from "./lib/page";
|
|
30
30
|
export * from "./lib/password-box";
|
|
31
|
+
export * from "./lib/picker";
|
|
31
32
|
export * from "./lib/popover";
|
|
32
33
|
export * from "./lib/popup";
|
|
33
34
|
export * from "./lib/progress-bar";
|