@acorex/components 18.9.7 → 18.10.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.
Files changed (34) hide show
  1. package/drawer/lib/drawer/drawer-item/drawer.component.d.ts +2 -2
  2. package/esm2022/drawer/lib/drawer/drawer-item/drawer.component.mjs +5 -5
  3. package/esm2022/media-viewer/lib/media-viewer-slider/media-viewer-slider.component.mjs +4 -2
  4. package/esm2022/menu/lib/menu-item/menu-item.component.mjs +42 -35
  5. package/esm2022/menu/lib/menu.component.mjs +104 -10
  6. package/esm2022/menu/lib/menu.module.mjs +5 -4
  7. package/esm2022/menu/lib/menu.service.mjs +6 -2
  8. package/esm2022/qrcode/acorex-components-qrcode.mjs +5 -0
  9. package/esm2022/qrcode/index.mjs +4 -0
  10. package/esm2022/qrcode/lib/qrcode.class.mjs +12 -0
  11. package/esm2022/qrcode/lib/qrcode.component.mjs +108 -0
  12. package/esm2022/qrcode/lib/qrcode.module.mjs +18 -0
  13. package/esm2022/wysiwyg/lib/wysiwyg/wysiwyg-container/wysiwyg-container.component.mjs +6 -1
  14. package/fesm2022/acorex-components-drawer.mjs +4 -4
  15. package/fesm2022/acorex-components-drawer.mjs.map +1 -1
  16. package/fesm2022/acorex-components-media-viewer.mjs +3 -1
  17. package/fesm2022/acorex-components-media-viewer.mjs.map +1 -1
  18. package/fesm2022/acorex-components-menu.mjs +151 -45
  19. package/fesm2022/acorex-components-menu.mjs.map +1 -1
  20. package/fesm2022/acorex-components-qrcode.mjs +142 -0
  21. package/fesm2022/acorex-components-qrcode.mjs.map +1 -0
  22. package/fesm2022/acorex-components-wysiwyg.mjs +5 -0
  23. package/fesm2022/acorex-components-wysiwyg.mjs.map +1 -1
  24. package/menu/lib/menu-item/menu-item.component.d.ts +28 -27
  25. package/menu/lib/menu.component.d.ts +6 -0
  26. package/menu/lib/menu.module.d.ts +2 -1
  27. package/menu/lib/menu.service.d.ts +4 -0
  28. package/package.json +88 -81
  29. package/qrcode/README.md +3 -0
  30. package/qrcode/index.d.ts +3 -0
  31. package/qrcode/lib/qrcode.class.d.ts +3 -0
  32. package/qrcode/lib/qrcode.component.d.ts +58 -0
  33. package/qrcode/lib/qrcode.module.d.ts +8 -0
  34. package/wysiwyg/lib/wysiwyg/wysiwyg-container/wysiwyg-container.component.d.ts +1 -0
@@ -3,6 +3,10 @@ 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[]>;
6
10
  static ɵfac: i0.ɵɵFactoryDeclaration<AXMenuService, never>;
7
11
  static ɵprov: i0.ɵɵInjectableDeclaration<AXMenuService>;
8
12
  }
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "@acorex/components",
3
- "version": "18.9.7",
3
+ "version": "18.10.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=18.2.0",
6
6
  "@angular/core": ">=18.2.0",
7
7
  "@angular/cdk": ">=18.2.0",
8
8
  "polytype": ">=0.17.0",
9
9
  "imask": ">=7.6.1",
10
- "angular-imask": ">=7.6.1"
10
+ "angular-imask": ">=7.6.1",
11
+ "qrcode": "^1.5.4"
11
12
  },
12
13
  "dependencies": {
13
14
  "tslib": "^2.3.0"
@@ -37,17 +38,23 @@
37
38
  "esm": "./esm2022/alert/acorex-components-alert.mjs",
38
39
  "default": "./fesm2022/acorex-components-alert.mjs"
39
40
  },
41
+ "./audio-wave": {
42
+ "types": "./audio-wave/index.d.ts",
43
+ "esm2022": "./esm2022/audio-wave/acorex-components-audio-wave.mjs",
44
+ "esm": "./esm2022/audio-wave/acorex-components-audio-wave.mjs",
45
+ "default": "./fesm2022/acorex-components-audio-wave.mjs"
46
+ },
40
47
  "./badge": {
41
48
  "types": "./badge/index.d.ts",
42
49
  "esm2022": "./esm2022/badge/acorex-components-badge.mjs",
43
50
  "esm": "./esm2022/badge/acorex-components-badge.mjs",
44
51
  "default": "./fesm2022/acorex-components-badge.mjs"
45
52
  },
46
- "./bottom-navigation": {
47
- "types": "./bottom-navigation/index.d.ts",
48
- "esm2022": "./esm2022/bottom-navigation/acorex-components-bottom-navigation.mjs",
49
- "esm": "./esm2022/bottom-navigation/acorex-components-bottom-navigation.mjs",
50
- "default": "./fesm2022/acorex-components-bottom-navigation.mjs"
53
+ "./breadcrumbs": {
54
+ "types": "./breadcrumbs/index.d.ts",
55
+ "esm2022": "./esm2022/breadcrumbs/acorex-components-breadcrumbs.mjs",
56
+ "esm": "./esm2022/breadcrumbs/acorex-components-breadcrumbs.mjs",
57
+ "default": "./fesm2022/acorex-components-breadcrumbs.mjs"
51
58
  },
52
59
  "./avatar": {
53
60
  "types": "./avatar/index.d.ts",
@@ -55,17 +62,11 @@
55
62
  "esm": "./esm2022/avatar/acorex-components-avatar.mjs",
56
63
  "default": "./fesm2022/acorex-components-avatar.mjs"
57
64
  },
58
- "./audio-wave": {
59
- "types": "./audio-wave/index.d.ts",
60
- "esm2022": "./esm2022/audio-wave/acorex-components-audio-wave.mjs",
61
- "esm": "./esm2022/audio-wave/acorex-components-audio-wave.mjs",
62
- "default": "./fesm2022/acorex-components-audio-wave.mjs"
63
- },
64
- "./breadcrumbs": {
65
- "types": "./breadcrumbs/index.d.ts",
66
- "esm2022": "./esm2022/breadcrumbs/acorex-components-breadcrumbs.mjs",
67
- "esm": "./esm2022/breadcrumbs/acorex-components-breadcrumbs.mjs",
68
- "default": "./fesm2022/acorex-components-breadcrumbs.mjs"
65
+ "./bottom-navigation": {
66
+ "types": "./bottom-navigation/index.d.ts",
67
+ "esm2022": "./esm2022/bottom-navigation/acorex-components-bottom-navigation.mjs",
68
+ "esm": "./esm2022/bottom-navigation/acorex-components-bottom-navigation.mjs",
69
+ "default": "./fesm2022/acorex-components-bottom-navigation.mjs"
69
70
  },
70
71
  "./button": {
71
72
  "types": "./button/index.d.ts",
@@ -133,18 +134,18 @@
133
134
  "esm": "./esm2022/common/acorex-components-common.mjs",
134
135
  "default": "./fesm2022/acorex-components-common.mjs"
135
136
  },
136
- "./data-pager": {
137
- "types": "./data-pager/index.d.ts",
138
- "esm2022": "./esm2022/data-pager/acorex-components-data-pager.mjs",
139
- "esm": "./esm2022/data-pager/acorex-components-data-pager.mjs",
140
- "default": "./fesm2022/acorex-components-data-pager.mjs"
141
- },
142
137
  "./conversation": {
143
138
  "types": "./conversation/index.d.ts",
144
139
  "esm2022": "./esm2022/conversation/acorex-components-conversation.mjs",
145
140
  "esm": "./esm2022/conversation/acorex-components-conversation.mjs",
146
141
  "default": "./fesm2022/acorex-components-conversation.mjs"
147
142
  },
143
+ "./data-pager": {
144
+ "types": "./data-pager/index.d.ts",
145
+ "esm2022": "./esm2022/data-pager/acorex-components-data-pager.mjs",
146
+ "esm": "./esm2022/data-pager/acorex-components-data-pager.mjs",
147
+ "default": "./fesm2022/acorex-components-data-pager.mjs"
148
+ },
148
149
  "./data-table": {
149
150
  "types": "./data-table/index.d.ts",
150
151
  "esm2022": "./esm2022/data-table/acorex-components-data-table.mjs",
@@ -181,36 +182,36 @@
181
182
  "esm": "./esm2022/dialog/acorex-components-dialog.mjs",
182
183
  "default": "./fesm2022/acorex-components-dialog.mjs"
183
184
  },
184
- "./drawer": {
185
- "types": "./drawer/index.d.ts",
186
- "esm2022": "./esm2022/drawer/acorex-components-drawer.mjs",
187
- "esm": "./esm2022/drawer/acorex-components-drawer.mjs",
188
- "default": "./fesm2022/acorex-components-drawer.mjs"
189
- },
190
185
  "./dropdown": {
191
186
  "types": "./dropdown/index.d.ts",
192
187
  "esm2022": "./esm2022/dropdown/acorex-components-dropdown.mjs",
193
188
  "esm": "./esm2022/dropdown/acorex-components-dropdown.mjs",
194
189
  "default": "./fesm2022/acorex-components-dropdown.mjs"
195
190
  },
191
+ "./drawer": {
192
+ "types": "./drawer/index.d.ts",
193
+ "esm2022": "./esm2022/drawer/acorex-components-drawer.mjs",
194
+ "esm": "./esm2022/drawer/acorex-components-drawer.mjs",
195
+ "default": "./fesm2022/acorex-components-drawer.mjs"
196
+ },
196
197
  "./dropdown-button": {
197
198
  "types": "./dropdown-button/index.d.ts",
198
199
  "esm2022": "./esm2022/dropdown-button/acorex-components-dropdown-button.mjs",
199
200
  "esm": "./esm2022/dropdown-button/acorex-components-dropdown-button.mjs",
200
201
  "default": "./fesm2022/acorex-components-dropdown-button.mjs"
201
202
  },
202
- "./image": {
203
- "types": "./image/index.d.ts",
204
- "esm2022": "./esm2022/image/acorex-components-image.mjs",
205
- "esm": "./esm2022/image/acorex-components-image.mjs",
206
- "default": "./fesm2022/acorex-components-image.mjs"
207
- },
208
203
  "./form": {
209
204
  "types": "./form/index.d.ts",
210
205
  "esm2022": "./esm2022/form/acorex-components-form.mjs",
211
206
  "esm": "./esm2022/form/acorex-components-form.mjs",
212
207
  "default": "./fesm2022/acorex-components-form.mjs"
213
208
  },
209
+ "./image": {
210
+ "types": "./image/index.d.ts",
211
+ "esm2022": "./esm2022/image/acorex-components-image.mjs",
212
+ "esm": "./esm2022/image/acorex-components-image.mjs",
213
+ "default": "./fesm2022/acorex-components-image.mjs"
214
+ },
214
215
  "./label": {
215
216
  "types": "./label/index.d.ts",
216
217
  "esm2022": "./esm2022/label/acorex-components-label.mjs",
@@ -223,30 +224,30 @@
223
224
  "esm": "./esm2022/list/acorex-components-list.mjs",
224
225
  "default": "./fesm2022/acorex-components-list.mjs"
225
226
  },
226
- "./loading": {
227
- "types": "./loading/index.d.ts",
228
- "esm2022": "./esm2022/loading/acorex-components-loading.mjs",
229
- "esm": "./esm2022/loading/acorex-components-loading.mjs",
230
- "default": "./fesm2022/acorex-components-loading.mjs"
231
- },
232
- "./loading-dialog": {
233
- "types": "./loading-dialog/index.d.ts",
234
- "esm2022": "./esm2022/loading-dialog/acorex-components-loading-dialog.mjs",
235
- "esm": "./esm2022/loading-dialog/acorex-components-loading-dialog.mjs",
236
- "default": "./fesm2022/acorex-components-loading-dialog.mjs"
237
- },
238
227
  "./media-viewer": {
239
228
  "types": "./media-viewer/index.d.ts",
240
229
  "esm2022": "./esm2022/media-viewer/acorex-components-media-viewer.mjs",
241
230
  "esm": "./esm2022/media-viewer/acorex-components-media-viewer.mjs",
242
231
  "default": "./fesm2022/acorex-components-media-viewer.mjs"
243
232
  },
233
+ "./loading": {
234
+ "types": "./loading/index.d.ts",
235
+ "esm2022": "./esm2022/loading/acorex-components-loading.mjs",
236
+ "esm": "./esm2022/loading/acorex-components-loading.mjs",
237
+ "default": "./fesm2022/acorex-components-loading.mjs"
238
+ },
244
239
  "./menu": {
245
240
  "types": "./menu/index.d.ts",
246
241
  "esm2022": "./esm2022/menu/acorex-components-menu.mjs",
247
242
  "esm": "./esm2022/menu/acorex-components-menu.mjs",
248
243
  "default": "./fesm2022/acorex-components-menu.mjs"
249
244
  },
245
+ "./loading-dialog": {
246
+ "types": "./loading-dialog/index.d.ts",
247
+ "esm2022": "./esm2022/loading-dialog/acorex-components-loading-dialog.mjs",
248
+ "esm": "./esm2022/loading-dialog/acorex-components-loading-dialog.mjs",
249
+ "default": "./fesm2022/acorex-components-loading-dialog.mjs"
250
+ },
250
251
  "./nav": {
251
252
  "types": "./nav/index.d.ts",
252
253
  "esm2022": "./esm2022/nav/acorex-components-nav.mjs",
@@ -277,11 +278,11 @@
277
278
  "esm": "./esm2022/otp/acorex-components-otp.mjs",
278
279
  "default": "./fesm2022/acorex-components-otp.mjs"
279
280
  },
280
- "./password-box": {
281
- "types": "./password-box/index.d.ts",
282
- "esm2022": "./esm2022/password-box/acorex-components-password-box.mjs",
283
- "esm": "./esm2022/password-box/acorex-components-password-box.mjs",
284
- "default": "./fesm2022/acorex-components-password-box.mjs"
281
+ "./page": {
282
+ "types": "./page/index.d.ts",
283
+ "esm2022": "./esm2022/page/acorex-components-page.mjs",
284
+ "esm": "./esm2022/page/acorex-components-page.mjs",
285
+ "default": "./fesm2022/acorex-components-page.mjs"
285
286
  },
286
287
  "./paint": {
287
288
  "types": "./paint/index.d.ts",
@@ -289,11 +290,11 @@
289
290
  "esm": "./esm2022/paint/acorex-components-paint.mjs",
290
291
  "default": "./fesm2022/acorex-components-paint.mjs"
291
292
  },
292
- "./page": {
293
- "types": "./page/index.d.ts",
294
- "esm2022": "./esm2022/page/acorex-components-page.mjs",
295
- "esm": "./esm2022/page/acorex-components-page.mjs",
296
- "default": "./fesm2022/acorex-components-page.mjs"
293
+ "./password-box": {
294
+ "types": "./password-box/index.d.ts",
295
+ "esm2022": "./esm2022/password-box/acorex-components-password-box.mjs",
296
+ "esm": "./esm2022/password-box/acorex-components-password-box.mjs",
297
+ "default": "./fesm2022/acorex-components-password-box.mjs"
297
298
  },
298
299
  "./phone-box": {
299
300
  "types": "./phone-box/index.d.ts",
@@ -325,6 +326,12 @@
325
326
  "esm": "./esm2022/progress-bar/acorex-components-progress-bar.mjs",
326
327
  "default": "./fesm2022/acorex-components-progress-bar.mjs"
327
328
  },
329
+ "./qrcode": {
330
+ "types": "./qrcode/index.d.ts",
331
+ "esm2022": "./esm2022/qrcode/acorex-components-qrcode.mjs",
332
+ "esm": "./esm2022/qrcode/acorex-components-qrcode.mjs",
333
+ "default": "./fesm2022/acorex-components-qrcode.mjs"
334
+ },
328
335
  "./radio": {
329
336
  "types": "./radio/index.d.ts",
330
337
  "esm2022": "./esm2022/radio/acorex-components-radio.mjs",
@@ -343,18 +350,18 @@
343
350
  "esm": "./esm2022/result/acorex-components-result.mjs",
344
351
  "default": "./fesm2022/acorex-components-result.mjs"
345
352
  },
346
- "./routing-progress": {
347
- "types": "./routing-progress/index.d.ts",
348
- "esm2022": "./esm2022/routing-progress/acorex-components-routing-progress.mjs",
349
- "esm": "./esm2022/routing-progress/acorex-components-routing-progress.mjs",
350
- "default": "./fesm2022/acorex-components-routing-progress.mjs"
351
- },
352
353
  "./scheduler": {
353
354
  "types": "./scheduler/index.d.ts",
354
355
  "esm2022": "./esm2022/scheduler/acorex-components-scheduler.mjs",
355
356
  "esm": "./esm2022/scheduler/acorex-components-scheduler.mjs",
356
357
  "default": "./fesm2022/acorex-components-scheduler.mjs"
357
358
  },
359
+ "./routing-progress": {
360
+ "types": "./routing-progress/index.d.ts",
361
+ "esm2022": "./esm2022/routing-progress/acorex-components-routing-progress.mjs",
362
+ "esm": "./esm2022/routing-progress/acorex-components-routing-progress.mjs",
363
+ "default": "./fesm2022/acorex-components-routing-progress.mjs"
364
+ },
358
365
  "./scss": {
359
366
  "types": "./scss/index.d.ts",
360
367
  "esm2022": "./esm2022/scss/acorex-components-scss.mjs",
@@ -379,6 +386,12 @@
379
386
  "esm": "./esm2022/selection-list/acorex-components-selection-list.mjs",
380
387
  "default": "./fesm2022/acorex-components-selection-list.mjs"
381
388
  },
389
+ "./slider": {
390
+ "types": "./slider/index.d.ts",
391
+ "esm2022": "./esm2022/slider/acorex-components-slider.mjs",
392
+ "esm": "./esm2022/slider/acorex-components-slider.mjs",
393
+ "default": "./fesm2022/acorex-components-slider.mjs"
394
+ },
382
395
  "./side-menu": {
383
396
  "types": "./side-menu/index.d.ts",
384
397
  "esm2022": "./esm2022/side-menu/acorex-components-side-menu.mjs",
@@ -391,11 +404,11 @@
391
404
  "esm": "./esm2022/skeleton/acorex-components-skeleton.mjs",
392
405
  "default": "./fesm2022/acorex-components-skeleton.mjs"
393
406
  },
394
- "./slider": {
395
- "types": "./slider/index.d.ts",
396
- "esm2022": "./esm2022/slider/acorex-components-slider.mjs",
397
- "esm": "./esm2022/slider/acorex-components-slider.mjs",
398
- "default": "./fesm2022/acorex-components-slider.mjs"
407
+ "./step-wizard": {
408
+ "types": "./step-wizard/index.d.ts",
409
+ "esm2022": "./esm2022/step-wizard/acorex-components-step-wizard.mjs",
410
+ "esm": "./esm2022/step-wizard/acorex-components-step-wizard.mjs",
411
+ "default": "./fesm2022/acorex-components-step-wizard.mjs"
399
412
  },
400
413
  "./switch": {
401
414
  "types": "./switch/index.d.ts",
@@ -403,12 +416,6 @@
403
416
  "esm": "./esm2022/switch/acorex-components-switch.mjs",
404
417
  "default": "./fesm2022/acorex-components-switch.mjs"
405
418
  },
406
- "./step-wizard": {
407
- "types": "./step-wizard/index.d.ts",
408
- "esm2022": "./esm2022/step-wizard/acorex-components-step-wizard.mjs",
409
- "esm": "./esm2022/step-wizard/acorex-components-step-wizard.mjs",
410
- "default": "./fesm2022/acorex-components-step-wizard.mjs"
411
- },
412
419
  "./tabs": {
413
420
  "types": "./tabs/index.d.ts",
414
421
  "esm2022": "./esm2022/tabs/acorex-components-tabs.mjs",
@@ -445,17 +452,17 @@
445
452
  "esm": "./esm2022/tooltip/acorex-components-tooltip.mjs",
446
453
  "default": "./fesm2022/acorex-components-tooltip.mjs"
447
454
  },
448
- "./wysiwyg": {
449
- "types": "./wysiwyg/index.d.ts",
450
- "esm2022": "./esm2022/wysiwyg/acorex-components-wysiwyg.mjs",
451
- "esm": "./esm2022/wysiwyg/acorex-components-wysiwyg.mjs",
452
- "default": "./fesm2022/acorex-components-wysiwyg.mjs"
453
- },
454
455
  "./uploader": {
455
456
  "types": "./uploader/index.d.ts",
456
457
  "esm2022": "./esm2022/uploader/acorex-components-uploader.mjs",
457
458
  "esm": "./esm2022/uploader/acorex-components-uploader.mjs",
458
459
  "default": "./fesm2022/acorex-components-uploader.mjs"
460
+ },
461
+ "./wysiwyg": {
462
+ "types": "./wysiwyg/index.d.ts",
463
+ "esm2022": "./esm2022/wysiwyg/acorex-components-wysiwyg.mjs",
464
+ "esm": "./esm2022/wysiwyg/acorex-components-wysiwyg.mjs",
465
+ "default": "./fesm2022/acorex-components-wysiwyg.mjs"
459
466
  }
460
467
  }
461
468
  }
@@ -0,0 +1,3 @@
1
+ # @acorex/components/qrcode
2
+
3
+ Secondary entry point of `@acorex/components`. It can be used by importing from `@acorex/components/qrcode`.
@@ -0,0 +1,3 @@
1
+ export * from './lib/qrcode.class';
2
+ export * from './lib/qrcode.component';
3
+ export * from './lib/qrcode.module';
@@ -0,0 +1,3 @@
1
+ export type AXQrcodeOutputType = 'canvas' | 'svg' | 'url';
2
+ export type AXQrcodeLevel = 'L' | 'M' | 'Q' | 'H';
3
+ export declare function debounce(func: any, delay: any): (...args: any[]) => void;
@@ -0,0 +1,58 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import { AXQrcodeLevel, AXQrcodeOutputType } from './qrcode.class';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AXQrcodeComponent implements AfterViewInit {
5
+ /**
6
+ * @description Value of QR code
7
+ */
8
+ content: import("@angular/core").InputSignal<string>;
9
+ /**
10
+ * @description Size of the QR code
11
+ * @default 256
12
+ */
13
+ size: import("@angular/core").InputSignal<number>;
14
+ /**
15
+ * @description Error correction level can be 'L' | 'M' | 'Q' | 'H'
16
+ * @default 'M'
17
+ */
18
+ level: import("@angular/core").InputSignal<AXQrcodeLevel>;
19
+ /**
20
+ * @description QR code color, can be a hex code or CSS color name
21
+ * @default '#000000'
22
+ */
23
+ color: import("@angular/core").InputSignal<string>;
24
+ /**
25
+ * @description QR code Background color, can be a hex code or CSS color name
26
+ * @default '#FFFFFF'
27
+ */
28
+ backgroundColor: import("@angular/core").InputSignal<string>;
29
+ /**
30
+ * @description Type of output can be 'canvas' | 'svg' | 'url'
31
+ * @default 'canvas'
32
+ */
33
+ outputType: import("@angular/core").InputSignal<AXQrcodeOutputType>;
34
+ /**
35
+ * @ignore
36
+ */
37
+ /**
38
+ * @description // Holds base64 or URL if outputType is 'url' or 'base64'
39
+ */
40
+ protected qrCodeUrl: import("@angular/core").WritableSignal<string>;
41
+ /**
42
+ * @ignore
43
+ */
44
+ private canvas;
45
+ /**
46
+ * @ignore
47
+ */
48
+ private svg;
49
+ /**
50
+ * @ignore
51
+ */
52
+ calculateLogoSize: import("@angular/core").Signal<number>;
53
+ constructor();
54
+ ngAfterViewInit(): void;
55
+ generate(): void;
56
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXQrcodeComponent, 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>;
58
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./qrcode.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class QrcodeModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<QrcodeModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QrcodeModule, [typeof i1.AXQrcodeComponent], [typeof i2.CommonModule], [typeof i1.AXQrcodeComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<QrcodeModule>;
8
+ }
@@ -22,6 +22,7 @@ export declare class AXWysiwygContainerComponent extends AXWysiwygContainerCompo
22
22
  /** @ignore */
23
23
  protected service: AXWysiwygService;
24
24
  initialValue: import("@angular/core").InputSignal<string>;
25
+ protected setTimeOut: any;
25
26
  /** @ignore */
26
27
  constructor();
27
28
  /** @ignore */