@acorex/components 18.9.8 → 18.10.2
Sign up to get free protection for your applications and to get access to all the features.
- package/calendar/lib/calendar-range.component.d.ts +2 -1
- package/drawer/lib/drawer/drawer-item/drawer.component.d.ts +2 -2
- package/esm2022/calendar/lib/calendar-range.component.mjs +8 -4
- package/esm2022/drawer/lib/drawer/drawer-item/drawer.component.mjs +5 -5
- package/esm2022/media-viewer/lib/media-viewer-slider/media-viewer-slider.component.mjs +4 -2
- package/esm2022/menu/lib/menu-item/menu-item.component.mjs +46 -38
- package/esm2022/menu/lib/menu.component.mjs +109 -9
- package/esm2022/menu/lib/menu.module.mjs +5 -4
- package/esm2022/menu/lib/menu.service.mjs +7 -2
- package/esm2022/qrcode/lib/qrcode.class.mjs +3 -5
- package/esm2022/qrcode/lib/qrcode.component.mjs +32 -53
- package/esm2022/qrcode/lib/qrcode.module.mjs +6 -6
- package/esm2022/wysiwyg/lib/wysiwyg/wysiwyg-container/wysiwyg-container.component.mjs +3 -6
- package/fesm2022/acorex-components-calendar.mjs +6 -2
- package/fesm2022/acorex-components-calendar.mjs.map +1 -1
- package/fesm2022/acorex-components-drawer.mjs +4 -4
- package/fesm2022/acorex-components-drawer.mjs.map +1 -1
- package/fesm2022/acorex-components-media-viewer.mjs +3 -1
- package/fesm2022/acorex-components-media-viewer.mjs.map +1 -1
- package/fesm2022/acorex-components-menu.mjs +161 -47
- package/fesm2022/acorex-components-menu.mjs.map +1 -1
- package/fesm2022/acorex-components-qrcode.mjs +39 -62
- package/fesm2022/acorex-components-qrcode.mjs.map +1 -1
- package/fesm2022/acorex-components-wysiwyg.mjs +2 -5
- package/fesm2022/acorex-components-wysiwyg.mjs.map +1 -1
- package/menu/lib/menu-item/menu-item.component.d.ts +29 -28
- package/menu/lib/menu.component.d.ts +8 -1
- package/menu/lib/menu.module.d.ts +2 -1
- package/menu/lib/menu.service.d.ts +5 -0
- package/package.json +54 -54
- package/qrcode/lib/qrcode.class.d.ts +1 -1
- package/qrcode/lib/qrcode.component.d.ts +3 -2
- package/qrcode/lib/qrcode.module.d.ts +4 -4
- package/wysiwyg/lib/wysiwyg/wysiwyg-container/wysiwyg-container.component.d.ts +1 -2
@@ -8,69 +8,70 @@ import * as i0 from "@angular/core";
|
|
8
8
|
* @category Components
|
9
9
|
*/
|
10
10
|
export declare class AXMenuItemComponent extends MXInteractiveComponent {
|
11
|
+
service: AXMenuService;
|
11
12
|
/** @ignore */
|
12
13
|
/** @ignore */
|
13
14
|
private popover;
|
14
15
|
/**
|
15
|
-
|
16
|
-
|
16
|
+
* Injects the `AXMenuService` for managing menu interactions.
|
17
|
+
*/
|
17
18
|
menuService: AXMenuService;
|
18
19
|
/**
|
19
|
-
|
20
|
-
|
20
|
+
* The vertical offset for positioning, initialized to 0.
|
21
|
+
*/
|
21
22
|
offsetY: import("@angular/core").WritableSignal<number>;
|
22
23
|
/**
|
23
|
-
|
24
|
-
|
24
|
+
* The horizontal offset for positioning, initialized to 0.
|
25
|
+
*/
|
25
26
|
offsetX: import("@angular/core").WritableSignal<number>;
|
26
27
|
/**
|
27
|
-
|
28
|
-
|
28
|
+
* The text content, initialized to an empty string.
|
29
|
+
*/
|
29
30
|
text: import("@angular/core").InputSignal<string>;
|
30
31
|
/**
|
31
|
-
|
32
|
-
|
32
|
+
* Indicates whether the item is active.
|
33
|
+
*/
|
33
34
|
active: import("@angular/core").InputSignal<boolean>;
|
34
35
|
/**
|
35
|
-
|
36
|
-
|
36
|
+
* Emitted when the active state changes.
|
37
|
+
*/
|
37
38
|
activeChange: import("@angular/core").OutputEmitterRef<boolean>;
|
38
39
|
/**
|
39
|
-
|
40
|
-
|
40
|
+
* Emitted when the element is clicked.
|
41
|
+
*/
|
41
42
|
onClick: import("@angular/core").OutputEmitterRef<AXClickEvent>;
|
42
43
|
/**
|
43
|
-
|
44
|
-
|
45
|
-
|
44
|
+
* Indicates whether the component is a root menu item.
|
45
|
+
* @defaultValue false
|
46
|
+
*/
|
46
47
|
isRoot: boolean;
|
47
48
|
/**
|
48
|
-
|
49
|
-
|
49
|
+
* The parent menu item component, if any.
|
50
|
+
*/
|
50
51
|
parent?: AXMenuItemComponent;
|
51
52
|
/**
|
52
|
-
|
53
|
-
|
53
|
+
* Injects the root menu service.
|
54
|
+
*/
|
54
55
|
rootMenu: AXRootMenu;
|
55
56
|
/** @ignore */
|
56
57
|
children: QueryList<AXMenuItemComponent>;
|
57
58
|
/** @ignore */
|
58
59
|
constructor();
|
59
60
|
/**
|
60
|
-
|
61
|
-
|
61
|
+
* Closes the popover if it is open.
|
62
|
+
*/
|
62
63
|
close(): void;
|
63
64
|
/** @ignore */
|
64
65
|
_handleOnOpened(): void;
|
65
66
|
/** @ignore */
|
66
67
|
_handleOnClosed(): void;
|
67
68
|
/**
|
68
|
-
|
69
|
-
|
70
|
-
getIcon(): "ax-icon-
|
69
|
+
* Returns the icon based on the orientation of the root menu.
|
70
|
+
*/
|
71
|
+
getIcon(): "ax-icon-chevron-right" | "ax-icon-chevron-down";
|
71
72
|
/**
|
72
|
-
|
73
|
-
|
73
|
+
* Determines the placement based on the root menu's orientation: 'bottom-start' for horizontal root, 'end-top' otherwise.
|
74
|
+
*/
|
74
75
|
getPlacement(): "bottom-start" | "end-top";
|
75
76
|
/** @ignore */
|
76
77
|
get __hostClass(): string[];
|
@@ -2,6 +2,7 @@ import { AXOrientation, MXBaseComponent } from '@acorex/components/common';
|
|
2
2
|
import { AfterViewInit, QueryList } from '@angular/core';
|
3
3
|
import { AXMenuPopoverTrigger } from './class/popover.class';
|
4
4
|
import { AXMenuItemComponent } from './menu-item/menu-item.component';
|
5
|
+
import { AXMenuService } from './menu.service';
|
5
6
|
import * as i0 from "@angular/core";
|
6
7
|
/**
|
7
8
|
* Represents a menu component that displays menu items.
|
@@ -10,12 +11,18 @@ import * as i0 from "@angular/core";
|
|
10
11
|
export declare class AXMenuComponent extends MXBaseComponent implements AfterViewInit {
|
11
12
|
orientation: import("@angular/core").InputSignal<AXOrientation>;
|
12
13
|
openOn: import("@angular/core").InputSignal<AXMenuPopoverTrigger>;
|
14
|
+
service: AXMenuService;
|
15
|
+
menuHeight: import("@angular/core").WritableSignal<string>;
|
16
|
+
isMenuOpen: import("@angular/core").WritableSignal<boolean>;
|
17
|
+
truncateMenu: import("@angular/core").InputSignal<boolean>;
|
13
18
|
/** @ignore */
|
14
19
|
children: QueryList<AXMenuItemComponent>;
|
20
|
+
constructor();
|
21
|
+
showMenuHandler(): void;
|
15
22
|
/** @ignore */
|
16
23
|
ngAfterViewInit(): void;
|
17
24
|
/** @ignore */
|
18
25
|
get __hostClass(): string;
|
19
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXMenuComponent, never>;
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXMenuComponent, "ax-menu", never, { "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "openOn": { "alias": "openOn"; "required": false; "isSignal": true; }; }, {}, ["children"], ["ax-menu-item,ng-container"], false, never>;
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXMenuComponent, "ax-menu", never, { "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "openOn": { "alias": "openOn"; "required": false; "isSignal": true; }; "truncateMenu": { "alias": "truncateMenu"; "required": false; "isSignal": true; }; }, {}, ["children"], ["ax-menu-item,ng-container"], false, never>;
|
21
28
|
}
|
@@ -7,8 +7,9 @@ import * as i5 from "@acorex/components/loading";
|
|
7
7
|
import * as i6 from "@acorex/core/translation";
|
8
8
|
import * as i7 from "@angular/cdk/overlay";
|
9
9
|
import * as i8 from "@acorex/components/popover";
|
10
|
+
import * as i9 from "@acorex/components/button";
|
10
11
|
export declare class AXMenuModule {
|
11
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXMenuModule, never>;
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMenuModule, [typeof i1.AXMenuItemComponent, typeof i2.AXMenuComponent], [typeof i3.CommonModule, typeof i4.AXDecoratorModule, typeof i5.AXLoadingModule, typeof i6.AXTranslationModule, typeof i7.OverlayModule, typeof i8.AXPopoverModule], [typeof i1.AXMenuItemComponent, typeof i2.AXMenuComponent]>;
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMenuModule, [typeof i1.AXMenuItemComponent, typeof i2.AXMenuComponent], [typeof i3.CommonModule, typeof i4.AXDecoratorModule, typeof i5.AXLoadingModule, typeof i6.AXTranslationModule, typeof i7.OverlayModule, typeof i8.AXPopoverModule, typeof i9.AXButtonModule], [typeof i1.AXMenuItemComponent, typeof i2.AXMenuComponent]>;
|
13
14
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXMenuModule>;
|
14
15
|
}
|
@@ -3,6 +3,11 @@ import { AXMenuItemComponent } from './menu-item/menu-item.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare class AXMenuService {
|
5
5
|
activeMenus$: BehaviorSubject<AXMenuItemComponent[]>;
|
6
|
+
rightOverflow: import("@angular/core").WritableSignal<number>;
|
7
|
+
leftOverflow: import("@angular/core").WritableSignal<number>;
|
8
|
+
overflowElements: import("@angular/core").WritableSignal<HTMLElement[]>;
|
9
|
+
notOverflowElements: import("@angular/core").WritableSignal<HTMLElement[]>;
|
10
|
+
isOverflowExist: import("@angular/core").WritableSignal<boolean>;
|
6
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXMenuService, never>;
|
7
12
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXMenuService>;
|
8
13
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@acorex/components",
|
3
|
-
"version": "18.
|
3
|
+
"version": "18.10.2",
|
4
4
|
"peerDependencies": {
|
5
5
|
"@angular/common": ">=18.2.0",
|
6
6
|
"@angular/core": ">=18.2.0",
|
@@ -32,17 +32,11 @@
|
|
32
32
|
"esm": "./esm2022/action-sheet/acorex-components-action-sheet.mjs",
|
33
33
|
"default": "./fesm2022/acorex-components-action-sheet.mjs"
|
34
34
|
},
|
35
|
-
"./
|
36
|
-
"types": "./
|
37
|
-
"esm2022": "./esm2022/
|
38
|
-
"esm": "./esm2022/
|
39
|
-
"default": "./fesm2022/acorex-components-
|
40
|
-
},
|
41
|
-
"./badge": {
|
42
|
-
"types": "./badge/index.d.ts",
|
43
|
-
"esm2022": "./esm2022/badge/acorex-components-badge.mjs",
|
44
|
-
"esm": "./esm2022/badge/acorex-components-badge.mjs",
|
45
|
-
"default": "./fesm2022/acorex-components-badge.mjs"
|
35
|
+
"./alert": {
|
36
|
+
"types": "./alert/index.d.ts",
|
37
|
+
"esm2022": "./esm2022/alert/acorex-components-alert.mjs",
|
38
|
+
"esm": "./esm2022/alert/acorex-components-alert.mjs",
|
39
|
+
"default": "./fesm2022/acorex-components-alert.mjs"
|
46
40
|
},
|
47
41
|
"./bottom-navigation": {
|
48
42
|
"types": "./bottom-navigation/index.d.ts",
|
@@ -56,18 +50,24 @@
|
|
56
50
|
"esm": "./esm2022/breadcrumbs/acorex-components-breadcrumbs.mjs",
|
57
51
|
"default": "./fesm2022/acorex-components-breadcrumbs.mjs"
|
58
52
|
},
|
59
|
-
"./alert": {
|
60
|
-
"types": "./alert/index.d.ts",
|
61
|
-
"esm2022": "./esm2022/alert/acorex-components-alert.mjs",
|
62
|
-
"esm": "./esm2022/alert/acorex-components-alert.mjs",
|
63
|
-
"default": "./fesm2022/acorex-components-alert.mjs"
|
64
|
-
},
|
65
53
|
"./avatar": {
|
66
54
|
"types": "./avatar/index.d.ts",
|
67
55
|
"esm2022": "./esm2022/avatar/acorex-components-avatar.mjs",
|
68
56
|
"esm": "./esm2022/avatar/acorex-components-avatar.mjs",
|
69
57
|
"default": "./fesm2022/acorex-components-avatar.mjs"
|
70
58
|
},
|
59
|
+
"./badge": {
|
60
|
+
"types": "./badge/index.d.ts",
|
61
|
+
"esm2022": "./esm2022/badge/acorex-components-badge.mjs",
|
62
|
+
"esm": "./esm2022/badge/acorex-components-badge.mjs",
|
63
|
+
"default": "./fesm2022/acorex-components-badge.mjs"
|
64
|
+
},
|
65
|
+
"./audio-wave": {
|
66
|
+
"types": "./audio-wave/index.d.ts",
|
67
|
+
"esm2022": "./esm2022/audio-wave/acorex-components-audio-wave.mjs",
|
68
|
+
"esm": "./esm2022/audio-wave/acorex-components-audio-wave.mjs",
|
69
|
+
"default": "./fesm2022/acorex-components-audio-wave.mjs"
|
70
|
+
},
|
71
71
|
"./button": {
|
72
72
|
"types": "./button/index.d.ts",
|
73
73
|
"esm2022": "./esm2022/button/acorex-components-button.mjs",
|
@@ -104,18 +104,18 @@
|
|
104
104
|
"esm": "./esm2022/circular-progress/acorex-components-circular-progress.mjs",
|
105
105
|
"default": "./fesm2022/acorex-components-circular-progress.mjs"
|
106
106
|
},
|
107
|
-
"./collapse": {
|
108
|
-
"types": "./collapse/index.d.ts",
|
109
|
-
"esm2022": "./esm2022/collapse/acorex-components-collapse.mjs",
|
110
|
-
"esm": "./esm2022/collapse/acorex-components-collapse.mjs",
|
111
|
-
"default": "./fesm2022/acorex-components-collapse.mjs"
|
112
|
-
},
|
113
107
|
"./color-box": {
|
114
108
|
"types": "./color-box/index.d.ts",
|
115
109
|
"esm2022": "./esm2022/color-box/acorex-components-color-box.mjs",
|
116
110
|
"esm": "./esm2022/color-box/acorex-components-color-box.mjs",
|
117
111
|
"default": "./fesm2022/acorex-components-color-box.mjs"
|
118
112
|
},
|
113
|
+
"./collapse": {
|
114
|
+
"types": "./collapse/index.d.ts",
|
115
|
+
"esm2022": "./esm2022/collapse/acorex-components-collapse.mjs",
|
116
|
+
"esm": "./esm2022/collapse/acorex-components-collapse.mjs",
|
117
|
+
"default": "./fesm2022/acorex-components-collapse.mjs"
|
118
|
+
},
|
119
119
|
"./color-palette": {
|
120
120
|
"types": "./color-palette/index.d.ts",
|
121
121
|
"esm2022": "./esm2022/color-palette/acorex-components-color-palette.mjs",
|
@@ -152,36 +152,36 @@
|
|
152
152
|
"esm": "./esm2022/data-table/acorex-components-data-table.mjs",
|
153
153
|
"default": "./fesm2022/acorex-components-data-table.mjs"
|
154
154
|
},
|
155
|
-
"./datetime-box": {
|
156
|
-
"types": "./datetime-box/index.d.ts",
|
157
|
-
"esm2022": "./esm2022/datetime-box/acorex-components-datetime-box.mjs",
|
158
|
-
"esm": "./esm2022/datetime-box/acorex-components-datetime-box.mjs",
|
159
|
-
"default": "./fesm2022/acorex-components-datetime-box.mjs"
|
160
|
-
},
|
161
155
|
"./datetime-input": {
|
162
156
|
"types": "./datetime-input/index.d.ts",
|
163
157
|
"esm2022": "./esm2022/datetime-input/acorex-components-datetime-input.mjs",
|
164
158
|
"esm": "./esm2022/datetime-input/acorex-components-datetime-input.mjs",
|
165
159
|
"default": "./fesm2022/acorex-components-datetime-input.mjs"
|
166
160
|
},
|
161
|
+
"./datetime-box": {
|
162
|
+
"types": "./datetime-box/index.d.ts",
|
163
|
+
"esm2022": "./esm2022/datetime-box/acorex-components-datetime-box.mjs",
|
164
|
+
"esm": "./esm2022/datetime-box/acorex-components-datetime-box.mjs",
|
165
|
+
"default": "./fesm2022/acorex-components-datetime-box.mjs"
|
166
|
+
},
|
167
167
|
"./datetime-picker": {
|
168
168
|
"types": "./datetime-picker/index.d.ts",
|
169
169
|
"esm2022": "./esm2022/datetime-picker/acorex-components-datetime-picker.mjs",
|
170
170
|
"esm": "./esm2022/datetime-picker/acorex-components-datetime-picker.mjs",
|
171
171
|
"default": "./fesm2022/acorex-components-datetime-picker.mjs"
|
172
172
|
},
|
173
|
-
"./dialog": {
|
174
|
-
"types": "./dialog/index.d.ts",
|
175
|
-
"esm2022": "./esm2022/dialog/acorex-components-dialog.mjs",
|
176
|
-
"esm": "./esm2022/dialog/acorex-components-dialog.mjs",
|
177
|
-
"default": "./fesm2022/acorex-components-dialog.mjs"
|
178
|
-
},
|
179
173
|
"./decorators": {
|
180
174
|
"types": "./decorators/index.d.ts",
|
181
175
|
"esm2022": "./esm2022/decorators/acorex-components-decorators.mjs",
|
182
176
|
"esm": "./esm2022/decorators/acorex-components-decorators.mjs",
|
183
177
|
"default": "./fesm2022/acorex-components-decorators.mjs"
|
184
178
|
},
|
179
|
+
"./dialog": {
|
180
|
+
"types": "./dialog/index.d.ts",
|
181
|
+
"esm2022": "./esm2022/dialog/acorex-components-dialog.mjs",
|
182
|
+
"esm": "./esm2022/dialog/acorex-components-dialog.mjs",
|
183
|
+
"default": "./fesm2022/acorex-components-dialog.mjs"
|
184
|
+
},
|
185
185
|
"./drawer": {
|
186
186
|
"types": "./drawer/index.d.ts",
|
187
187
|
"esm2022": "./esm2022/drawer/acorex-components-drawer.mjs",
|
@@ -230,18 +230,18 @@
|
|
230
230
|
"esm": "./esm2022/loading/acorex-components-loading.mjs",
|
231
231
|
"default": "./fesm2022/acorex-components-loading.mjs"
|
232
232
|
},
|
233
|
-
"./loading-dialog": {
|
234
|
-
"types": "./loading-dialog/index.d.ts",
|
235
|
-
"esm2022": "./esm2022/loading-dialog/acorex-components-loading-dialog.mjs",
|
236
|
-
"esm": "./esm2022/loading-dialog/acorex-components-loading-dialog.mjs",
|
237
|
-
"default": "./fesm2022/acorex-components-loading-dialog.mjs"
|
238
|
-
},
|
239
233
|
"./media-viewer": {
|
240
234
|
"types": "./media-viewer/index.d.ts",
|
241
235
|
"esm2022": "./esm2022/media-viewer/acorex-components-media-viewer.mjs",
|
242
236
|
"esm": "./esm2022/media-viewer/acorex-components-media-viewer.mjs",
|
243
237
|
"default": "./fesm2022/acorex-components-media-viewer.mjs"
|
244
238
|
},
|
239
|
+
"./loading-dialog": {
|
240
|
+
"types": "./loading-dialog/index.d.ts",
|
241
|
+
"esm2022": "./esm2022/loading-dialog/acorex-components-loading-dialog.mjs",
|
242
|
+
"esm": "./esm2022/loading-dialog/acorex-components-loading-dialog.mjs",
|
243
|
+
"default": "./fesm2022/acorex-components-loading-dialog.mjs"
|
244
|
+
},
|
245
245
|
"./menu": {
|
246
246
|
"types": "./menu/index.d.ts",
|
247
247
|
"esm2022": "./esm2022/menu/acorex-components-menu.mjs",
|
@@ -296,18 +296,18 @@
|
|
296
296
|
"esm": "./esm2022/password-box/acorex-components-password-box.mjs",
|
297
297
|
"default": "./fesm2022/acorex-components-password-box.mjs"
|
298
298
|
},
|
299
|
-
"./phone-box": {
|
300
|
-
"types": "./phone-box/index.d.ts",
|
301
|
-
"esm2022": "./esm2022/phone-box/acorex-components-phone-box.mjs",
|
302
|
-
"esm": "./esm2022/phone-box/acorex-components-phone-box.mjs",
|
303
|
-
"default": "./fesm2022/acorex-components-phone-box.mjs"
|
304
|
-
},
|
305
299
|
"./picker": {
|
306
300
|
"types": "./picker/index.d.ts",
|
307
301
|
"esm2022": "./esm2022/picker/acorex-components-picker.mjs",
|
308
302
|
"esm": "./esm2022/picker/acorex-components-picker.mjs",
|
309
303
|
"default": "./fesm2022/acorex-components-picker.mjs"
|
310
304
|
},
|
305
|
+
"./phone-box": {
|
306
|
+
"types": "./phone-box/index.d.ts",
|
307
|
+
"esm2022": "./esm2022/phone-box/acorex-components-phone-box.mjs",
|
308
|
+
"esm": "./esm2022/phone-box/acorex-components-phone-box.mjs",
|
309
|
+
"default": "./fesm2022/acorex-components-phone-box.mjs"
|
310
|
+
},
|
311
311
|
"./popover": {
|
312
312
|
"types": "./popover/index.d.ts",
|
313
313
|
"esm2022": "./esm2022/popover/acorex-components-popover.mjs",
|
@@ -380,18 +380,18 @@
|
|
380
380
|
"esm": "./esm2022/select-box/acorex-components-select-box.mjs",
|
381
381
|
"default": "./fesm2022/acorex-components-select-box.mjs"
|
382
382
|
},
|
383
|
-
"./selection-list": {
|
384
|
-
"types": "./selection-list/index.d.ts",
|
385
|
-
"esm2022": "./esm2022/selection-list/acorex-components-selection-list.mjs",
|
386
|
-
"esm": "./esm2022/selection-list/acorex-components-selection-list.mjs",
|
387
|
-
"default": "./fesm2022/acorex-components-selection-list.mjs"
|
388
|
-
},
|
389
383
|
"./side-menu": {
|
390
384
|
"types": "./side-menu/index.d.ts",
|
391
385
|
"esm2022": "./esm2022/side-menu/acorex-components-side-menu.mjs",
|
392
386
|
"esm": "./esm2022/side-menu/acorex-components-side-menu.mjs",
|
393
387
|
"default": "./fesm2022/acorex-components-side-menu.mjs"
|
394
388
|
},
|
389
|
+
"./selection-list": {
|
390
|
+
"types": "./selection-list/index.d.ts",
|
391
|
+
"esm2022": "./esm2022/selection-list/acorex-components-selection-list.mjs",
|
392
|
+
"esm": "./esm2022/selection-list/acorex-components-selection-list.mjs",
|
393
|
+
"default": "./fesm2022/acorex-components-selection-list.mjs"
|
394
|
+
},
|
395
395
|
"./skeleton": {
|
396
396
|
"types": "./skeleton/index.d.ts",
|
397
397
|
"esm2022": "./esm2022/skeleton/acorex-components-skeleton.mjs",
|
@@ -1,3 +1,3 @@
|
|
1
1
|
export type AXQrcodeOutputType = 'canvas' | 'svg' | 'url';
|
2
2
|
export type AXQrcodeLevel = 'L' | 'M' | 'Q' | 'H';
|
3
|
-
export declare function debounce(func: any,
|
3
|
+
export declare function debounce(func: (...args: any) => void, delayMS: number): (...args: any[]) => void;
|
@@ -49,9 +49,10 @@ export declare class AXQrcodeComponent implements AfterViewInit {
|
|
49
49
|
/**
|
50
50
|
* @ignore
|
51
51
|
*/
|
52
|
+
calculateLogoSize: import("@angular/core").Signal<number>;
|
52
53
|
constructor();
|
53
54
|
ngAfterViewInit(): void;
|
54
|
-
|
55
|
+
generate(): void;
|
55
56
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXQrcodeComponent, never>;
|
56
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXQrcodeComponent, "ax-qrcode", never, { "content": { "alias": "content"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "level": { "alias": "level"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; "isSignal": true; }; "outputType": { "alias": "outputType"; "required": false; "isSignal": true; }; }, {}, never,
|
57
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXQrcodeComponent, "ax-qrcode", never, { "content": { "alias": "content"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "level": { "alias": "level"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; "isSignal": true; }; "outputType": { "alias": "outputType"; "required": false; "isSignal": true; }; }, {}, never, ["img"], false, never>;
|
57
58
|
}
|
@@ -1,8 +1,8 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
import * as i1 from "./qrcode.component";
|
3
3
|
import * as i2 from "@angular/common";
|
4
|
-
export declare class
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<
|
4
|
+
export declare class AXQrcodeModule {
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXQrcodeModule, never>;
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXQrcodeModule, [typeof i1.AXQrcodeComponent], [typeof i2.CommonModule], [typeof i1.AXQrcodeComponent]>;
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXQrcodeModule>;
|
8
8
|
}
|
@@ -21,7 +21,6 @@ export declare class AXWysiwygContainerComponent extends AXWysiwygContainerCompo
|
|
21
21
|
protected view: import("@angular/core").WritableSignal<HTMLElement>;
|
22
22
|
/** @ignore */
|
23
23
|
protected service: AXWysiwygService;
|
24
|
-
initialValue: import("@angular/core").InputSignal<string>;
|
25
24
|
protected setTimeOut: any;
|
26
25
|
/** @ignore */
|
27
26
|
constructor();
|
@@ -30,6 +29,6 @@ export declare class AXWysiwygContainerComponent extends AXWysiwygContainerCompo
|
|
30
29
|
/** @ignore */
|
31
30
|
ngOnDestroy(): void;
|
32
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXWysiwygContainerComponent, never>;
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXWysiwygContainerComponent, "ax-wysiwyg-container", never, { "look": { "alias": "look"; "required": false; };
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXWysiwygContainerComponent, "ax-wysiwyg-container", never, { "look": { "alias": "look"; "required": false; }; }, {}, never, ["*", "ax-validation-rule"], false, never>;
|
34
33
|
}
|
35
34
|
export {};
|