@acorex/components 18.9.0 → 18.9.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. package/common/lib/classes/styles.class.d.ts +1 -0
  2. package/common/lib/components/base-component.class.d.ts +4 -4
  3. package/esm2022/common/lib/classes/styles.class.mjs +2 -1
  4. package/esm2022/common/lib/components/base-component.class.mjs +6 -6
  5. package/esm2022/conversation/lib/conversation-message/conversation-message.component.mjs +2 -2
  6. package/esm2022/conversation/lib/conversation.module.mjs +2 -2
  7. package/esm2022/media-viewer/acorex-components-media-viewer.mjs +5 -0
  8. package/esm2022/media-viewer/index.mjs +10 -0
  9. package/esm2022/media-viewer/lib/media-viewer-container/media-viewer-container.component.mjs +35 -0
  10. package/esm2022/media-viewer/lib/media-viewer-slider/media-viewer-slider.component.mjs +35 -0
  11. package/esm2022/media-viewer/lib/media-viewer-thumbnail/media-viewer-thumbnail.component.mjs +23 -0
  12. package/esm2022/media-viewer/lib/media-viewer-tools/audio-player/audio-player.component.mjs +19 -0
  13. package/esm2022/media-viewer/lib/media-viewer-tools/image-viewer/image-viewer.component.mjs +19 -0
  14. package/esm2022/media-viewer/lib/media-viewer-tools/pdf-reader/pdf-reader.component.mjs +23 -0
  15. package/esm2022/media-viewer/lib/media-viewer-tools/video-player/video-player.component.mjs +19 -0
  16. package/esm2022/media-viewer/lib/media-viewer-type-registry.service.mjs +20 -0
  17. package/esm2022/media-viewer/lib/media-viewer-types.mjs +10 -0
  18. package/esm2022/media-viewer/lib/media-viewer.module.mjs +113 -0
  19. package/esm2022/media-viewer/lib/media-viewer.service.mjs +14 -0
  20. package/esm2022/range-slider/lib/range-slider.component.mjs +2 -2
  21. package/fesm2022/acorex-components-common.mjs +6 -5
  22. package/fesm2022/acorex-components-common.mjs.map +1 -1
  23. package/fesm2022/acorex-components-conversation.mjs +1 -1
  24. package/fesm2022/acorex-components-conversation.mjs.map +1 -1
  25. package/fesm2022/acorex-components-media-viewer.mjs +298 -0
  26. package/fesm2022/acorex-components-media-viewer.mjs.map +1 -0
  27. package/fesm2022/acorex-components-range-slider.mjs +1 -1
  28. package/fesm2022/acorex-components-range-slider.mjs.map +1 -1
  29. package/media-viewer/README.md +3 -0
  30. package/media-viewer/index.d.ts +9 -0
  31. package/media-viewer/lib/media-viewer-container/media-viewer-container.component.d.ts +15 -0
  32. package/media-viewer/lib/media-viewer-slider/media-viewer-slider.component.d.ts +19 -0
  33. package/media-viewer/lib/media-viewer-thumbnail/media-viewer-thumbnail.component.d.ts +11 -0
  34. package/media-viewer/lib/media-viewer-tools/audio-player/audio-player.component.d.ts +8 -0
  35. package/media-viewer/lib/media-viewer-tools/image-viewer/image-viewer.component.d.ts +8 -0
  36. package/media-viewer/lib/media-viewer-tools/pdf-reader/pdf-reader.component.d.ts +7 -0
  37. package/media-viewer/lib/media-viewer-tools/video-player/video-player.component.d.ts +8 -0
  38. package/media-viewer/lib/media-viewer-type-registry.service.d.ts +9 -0
  39. package/media-viewer/lib/media-viewer-types.d.ts +17 -0
  40. package/media-viewer/lib/media-viewer.module.d.ts +26 -0
  41. package/media-viewer/lib/media-viewer.service.d.ts +8 -0
  42. package/package.json +53 -47
@@ -0,0 +1,3 @@
1
+ # @acorex/components/media-viewer
2
+
3
+ Secondary entry point of `@acorex/components`. It can be used by importing from `@acorex/components/media-viewer`.
@@ -0,0 +1,9 @@
1
+ export * from './lib/media-viewer-container/media-viewer-container.component';
2
+ export * from './lib/media-viewer-slider/media-viewer-slider.component';
3
+ export * from './lib/media-viewer-thumbnail/media-viewer-thumbnail.component';
4
+ export * from './lib/media-viewer-tools/audio-player/audio-player.component';
5
+ export * from './lib/media-viewer-tools/image-viewer/image-viewer.component';
6
+ export * from './lib/media-viewer-tools/pdf-reader/pdf-reader.component';
7
+ export * from './lib/media-viewer-tools/video-player/video-player.component';
8
+ export * from './lib/media-viewer-types';
9
+ export * from './lib/media-viewer.module';
@@ -0,0 +1,15 @@
1
+ import { AXMediaViewerData } from '../media-viewer-types';
2
+ import { AXMediaViewerService } from '../media-viewer.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AXMediaViewerContainerComponent {
5
+ dataArray: import("@angular/core").InputSignal<AXMediaViewerData[]>;
6
+ protected service: AXMediaViewerService;
7
+ protected arrayLength: import("@angular/core").Signal<number>;
8
+ protected arrayIndex: import("@angular/core").Signal<number>;
9
+ protected showComponent: import("@angular/core").Signal<AXMediaViewerData>;
10
+ constructor();
11
+ protected nextHandler(): void;
12
+ protected backHandler(): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMediaViewerContainerComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXMediaViewerContainerComponent, "ax-media-viewer-container", never, { "dataArray": { "alias": "dataArray"; "required": false; "isSignal": true; }; }, {}, never, ["ax-prefix", "ax-suffix"], false, never>;
15
+ }
@@ -0,0 +1,19 @@
1
+ import { CdkPortalOutletAttachedRef, ComponentPortal } from '@angular/cdk/portal';
2
+ import { AXMediaViewerTypeRegistryService } from '../media-viewer-type-registry.service';
3
+ import { AXMediaViewerData } from '../media-viewer-types';
4
+ import { AXMediaViewerService } from '../media-viewer.service';
5
+ import * as i0 from "@angular/core";
6
+ export declare class AXMediaViewerSliderComponent {
7
+ protected service: AXMediaViewerService;
8
+ dataObject: import("@angular/core").InputSignal<AXMediaViewerData>;
9
+ /** @ignore */
10
+ protected portal: import("@angular/core").WritableSignal<ComponentPortal<any>>;
11
+ /** @ignore */
12
+ protected registryService: AXMediaViewerTypeRegistryService;
13
+ /** @ignore */
14
+ constructor();
15
+ /** @ignore */
16
+ protected _handleAttached(ref: CdkPortalOutletAttachedRef): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMediaViewerSliderComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXMediaViewerSliderComponent, "ax-media-viewer-slider", never, { "dataObject": { "alias": "dataObject"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
19
+ }
@@ -0,0 +1,11 @@
1
+ import { AXMediaViewerData } from '../media-viewer-types';
2
+ import { AXMediaViewerService } from '../media-viewer.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AXMediaViewerThumbnailComponent {
5
+ protected service: AXMediaViewerService;
6
+ protected data: import("@angular/core").WritableSignal<AXMediaViewerData[]>;
7
+ constructor();
8
+ protected clickHandler(i: number): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMediaViewerThumbnailComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXMediaViewerThumbnailComponent, "ax-media-viewer-thumbnail", never, {}, {}, never, never, false, never>;
11
+ }
@@ -0,0 +1,8 @@
1
+ import { AXMediaViewerBaseComponent, AXMediaViewerData } from '../../media-viewer-types';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AXAudioPlayerComponent extends AXMediaViewerBaseComponent {
4
+ dataObject: import("@angular/core").WritableSignal<AXMediaViewerData>;
5
+ constructor();
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXAudioPlayerComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXAudioPlayerComponent, "ax-audio-player", never, {}, {}, never, never, false, never>;
8
+ }
@@ -0,0 +1,8 @@
1
+ import { AXMediaViewerBaseComponent, AXMediaViewerData } from '../../media-viewer-types';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AXImageViewerComponent extends AXMediaViewerBaseComponent {
4
+ dataObject: import("@angular/core").WritableSignal<AXMediaViewerData>;
5
+ constructor();
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXImageViewerComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXImageViewerComponent, "ax-image-viewer", never, {}, {}, never, never, false, never>;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { AXMediaViewerBaseComponent } from '../../media-viewer-types';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AXPdfReaderComponent extends AXMediaViewerBaseComponent {
4
+ constructor();
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXPdfReaderComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXPdfReaderComponent, "ax-pdf-reader", never, {}, {}, never, never, false, never>;
7
+ }
@@ -0,0 +1,8 @@
1
+ import { AXMediaViewerBaseComponent, AXMediaViewerData } from '../../media-viewer-types';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AXVideoPlayerComponent extends AXMediaViewerBaseComponent {
4
+ dataObject: import("@angular/core").WritableSignal<AXMediaViewerData>;
5
+ constructor();
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXVideoPlayerComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXVideoPlayerComponent, "ax-video-player", never, {}, {}, never, never, false, never>;
8
+ }
@@ -0,0 +1,9 @@
1
+ import { AXMediaViewerType } from './media-viewer-types';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AXMediaViewerTypeRegistryService {
4
+ private plugins;
5
+ register(...plugins: AXMediaViewerType[]): void;
6
+ resolve(name: string): AXMediaViewerType | undefined;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMediaViewerTypeRegistryService, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<AXMediaViewerTypeRegistryService>;
9
+ }
@@ -0,0 +1,17 @@
1
+ import { Type } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export interface AXMediaViewerType {
4
+ name: string;
5
+ component: Type<any>;
6
+ }
7
+ export type AXMediaViewerData = {
8
+ id: string;
9
+ type: 'image' | 'audio' | 'pdf' | 'video';
10
+ url: string;
11
+ thumbnail: string;
12
+ };
13
+ export declare class AXMediaViewerBaseComponent {
14
+ message: AXMediaViewerData;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMediaViewerBaseComponent, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<AXMediaViewerBaseComponent>;
17
+ }
@@ -0,0 +1,26 @@
1
+ import { ModuleWithProviders } from '@angular/core';
2
+ import { AXMediaViewerType } from './media-viewer-types';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "./media-viewer-container/media-viewer-container.component";
5
+ import * as i2 from "./media-viewer-slider/media-viewer-slider.component";
6
+ import * as i3 from "./media-viewer-thumbnail/media-viewer-thumbnail.component";
7
+ import * as i4 from "./media-viewer-tools/audio-player/audio-player.component";
8
+ import * as i5 from "./media-viewer-tools/image-viewer/image-viewer.component";
9
+ import * as i6 from "./media-viewer-tools/pdf-reader/pdf-reader.component";
10
+ import * as i7 from "./media-viewer-tools/video-player/video-player.component";
11
+ import * as i8 from "@angular/common";
12
+ import * as i9 from "@acorex/components/button";
13
+ import * as i10 from "@acorex/components/decorators";
14
+ import * as i11 from "@angular/cdk/portal";
15
+ import * as i12 from "@angular/forms";
16
+ export interface AXMediaViewerModuleConfig {
17
+ types: AXMediaViewerType[];
18
+ }
19
+ export declare class AXMediaViewerModule {
20
+ constructor(instances: any[]);
21
+ static forRoot(config?: AXMediaViewerModuleConfig): ModuleWithProviders<AXMediaViewerModule>;
22
+ static forChild(config?: AXMediaViewerModuleConfig): ModuleWithProviders<AXMediaViewerModule>;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMediaViewerModule, [{ optional: true; }]>;
24
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXMediaViewerModule, [typeof i1.AXMediaViewerContainerComponent, typeof i2.AXMediaViewerSliderComponent, typeof i3.AXMediaViewerThumbnailComponent, typeof i4.AXAudioPlayerComponent, typeof i5.AXImageViewerComponent, typeof i6.AXPdfReaderComponent, typeof i7.AXVideoPlayerComponent], [typeof i8.CommonModule, typeof i9.AXButtonModule, typeof i10.AXDecoratorModule, typeof i11.CdkPortalOutlet, typeof i12.FormsModule], [typeof i1.AXMediaViewerContainerComponent, typeof i2.AXMediaViewerSliderComponent, typeof i3.AXMediaViewerThumbnailComponent, typeof i4.AXAudioPlayerComponent, typeof i5.AXImageViewerComponent, typeof i6.AXPdfReaderComponent, typeof i7.AXVideoPlayerComponent]>;
25
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXMediaViewerModule>;
26
+ }
@@ -0,0 +1,8 @@
1
+ import { AXMediaViewerData } from './media-viewer-types';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AXMediaViewerService {
4
+ dataArray: import("@angular/core").WritableSignal<AXMediaViewerData[]>;
5
+ selectedIndex: import("@angular/core").WritableSignal<number>;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMediaViewerService, never>;
7
+ static ɵprov: i0.ɵɵInjectableDeclaration<AXMediaViewerService>;
8
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/components",
3
- "version": "18.9.0",
3
+ "version": "18.9.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=18.2.0",
6
6
  "@angular/core": ">=18.2.0",
@@ -37,17 +37,23 @@
37
37
  "esm": "./esm2022/alert/acorex-components-alert.mjs",
38
38
  "default": "./fesm2022/acorex-components-alert.mjs"
39
39
  },
40
+ "./audio-wave": {
41
+ "types": "./audio-wave/index.d.ts",
42
+ "esm2022": "./esm2022/audio-wave/acorex-components-audio-wave.mjs",
43
+ "esm": "./esm2022/audio-wave/acorex-components-audio-wave.mjs",
44
+ "default": "./fesm2022/acorex-components-audio-wave.mjs"
45
+ },
40
46
  "./avatar": {
41
47
  "types": "./avatar/index.d.ts",
42
48
  "esm2022": "./esm2022/avatar/acorex-components-avatar.mjs",
43
49
  "esm": "./esm2022/avatar/acorex-components-avatar.mjs",
44
50
  "default": "./fesm2022/acorex-components-avatar.mjs"
45
51
  },
46
- "./breadcrumbs": {
47
- "types": "./breadcrumbs/index.d.ts",
48
- "esm2022": "./esm2022/breadcrumbs/acorex-components-breadcrumbs.mjs",
49
- "esm": "./esm2022/breadcrumbs/acorex-components-breadcrumbs.mjs",
50
- "default": "./fesm2022/acorex-components-breadcrumbs.mjs"
52
+ "./bottom-navigation": {
53
+ "types": "./bottom-navigation/index.d.ts",
54
+ "esm2022": "./esm2022/bottom-navigation/acorex-components-bottom-navigation.mjs",
55
+ "esm": "./esm2022/bottom-navigation/acorex-components-bottom-navigation.mjs",
56
+ "default": "./fesm2022/acorex-components-bottom-navigation.mjs"
51
57
  },
52
58
  "./badge": {
53
59
  "types": "./badge/index.d.ts",
@@ -55,17 +61,11 @@
55
61
  "esm": "./esm2022/badge/acorex-components-badge.mjs",
56
62
  "default": "./fesm2022/acorex-components-badge.mjs"
57
63
  },
58
- "./bottom-navigation": {
59
- "types": "./bottom-navigation/index.d.ts",
60
- "esm2022": "./esm2022/bottom-navigation/acorex-components-bottom-navigation.mjs",
61
- "esm": "./esm2022/bottom-navigation/acorex-components-bottom-navigation.mjs",
62
- "default": "./fesm2022/acorex-components-bottom-navigation.mjs"
63
- },
64
- "./audio-wave": {
65
- "types": "./audio-wave/index.d.ts",
66
- "esm2022": "./esm2022/audio-wave/acorex-components-audio-wave.mjs",
67
- "esm": "./esm2022/audio-wave/acorex-components-audio-wave.mjs",
68
- "default": "./fesm2022/acorex-components-audio-wave.mjs"
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"
69
69
  },
70
70
  "./button": {
71
71
  "types": "./button/index.d.ts",
@@ -79,36 +79,36 @@
79
79
  "esm": "./esm2022/button-group/acorex-components-button-group.mjs",
80
80
  "default": "./fesm2022/acorex-components-button-group.mjs"
81
81
  },
82
- "./calendar": {
83
- "types": "./calendar/index.d.ts",
84
- "esm2022": "./esm2022/calendar/acorex-components-calendar.mjs",
85
- "esm": "./esm2022/calendar/acorex-components-calendar.mjs",
86
- "default": "./fesm2022/acorex-components-calendar.mjs"
87
- },
88
82
  "./check-box": {
89
83
  "types": "./check-box/index.d.ts",
90
84
  "esm2022": "./esm2022/check-box/acorex-components-check-box.mjs",
91
85
  "esm": "./esm2022/check-box/acorex-components-check-box.mjs",
92
86
  "default": "./fesm2022/acorex-components-check-box.mjs"
93
87
  },
88
+ "./calendar": {
89
+ "types": "./calendar/index.d.ts",
90
+ "esm2022": "./esm2022/calendar/acorex-components-calendar.mjs",
91
+ "esm": "./esm2022/calendar/acorex-components-calendar.mjs",
92
+ "default": "./fesm2022/acorex-components-calendar.mjs"
93
+ },
94
94
  "./chips": {
95
95
  "types": "./chips/index.d.ts",
96
96
  "esm2022": "./esm2022/chips/acorex-components-chips.mjs",
97
97
  "esm": "./esm2022/chips/acorex-components-chips.mjs",
98
98
  "default": "./fesm2022/acorex-components-chips.mjs"
99
99
  },
100
- "./circular-progress": {
101
- "types": "./circular-progress/index.d.ts",
102
- "esm2022": "./esm2022/circular-progress/acorex-components-circular-progress.mjs",
103
- "esm": "./esm2022/circular-progress/acorex-components-circular-progress.mjs",
104
- "default": "./fesm2022/acorex-components-circular-progress.mjs"
105
- },
106
100
  "./collapse": {
107
101
  "types": "./collapse/index.d.ts",
108
102
  "esm2022": "./esm2022/collapse/acorex-components-collapse.mjs",
109
103
  "esm": "./esm2022/collapse/acorex-components-collapse.mjs",
110
104
  "default": "./fesm2022/acorex-components-collapse.mjs"
111
105
  },
106
+ "./circular-progress": {
107
+ "types": "./circular-progress/index.d.ts",
108
+ "esm2022": "./esm2022/circular-progress/acorex-components-circular-progress.mjs",
109
+ "esm": "./esm2022/circular-progress/acorex-components-circular-progress.mjs",
110
+ "default": "./fesm2022/acorex-components-circular-progress.mjs"
111
+ },
112
112
  "./color-box": {
113
113
  "types": "./color-box/index.d.ts",
114
114
  "esm2022": "./esm2022/color-box/acorex-components-color-box.mjs",
@@ -187,18 +187,18 @@
187
187
  "esm": "./esm2022/drawer/acorex-components-drawer.mjs",
188
188
  "default": "./fesm2022/acorex-components-drawer.mjs"
189
189
  },
190
- "./dropdown-button": {
191
- "types": "./dropdown-button/index.d.ts",
192
- "esm2022": "./esm2022/dropdown-button/acorex-components-dropdown-button.mjs",
193
- "esm": "./esm2022/dropdown-button/acorex-components-dropdown-button.mjs",
194
- "default": "./fesm2022/acorex-components-dropdown-button.mjs"
195
- },
196
190
  "./dropdown": {
197
191
  "types": "./dropdown/index.d.ts",
198
192
  "esm2022": "./esm2022/dropdown/acorex-components-dropdown.mjs",
199
193
  "esm": "./esm2022/dropdown/acorex-components-dropdown.mjs",
200
194
  "default": "./fesm2022/acorex-components-dropdown.mjs"
201
195
  },
196
+ "./dropdown-button": {
197
+ "types": "./dropdown-button/index.d.ts",
198
+ "esm2022": "./esm2022/dropdown-button/acorex-components-dropdown-button.mjs",
199
+ "esm": "./esm2022/dropdown-button/acorex-components-dropdown-button.mjs",
200
+ "default": "./fesm2022/acorex-components-dropdown-button.mjs"
201
+ },
202
202
  "./form": {
203
203
  "types": "./form/index.d.ts",
204
204
  "esm2022": "./esm2022/form/acorex-components-form.mjs",
@@ -211,18 +211,18 @@
211
211
  "esm": "./esm2022/image/acorex-components-image.mjs",
212
212
  "default": "./fesm2022/acorex-components-image.mjs"
213
213
  },
214
- "./label": {
215
- "types": "./label/index.d.ts",
216
- "esm2022": "./esm2022/label/acorex-components-label.mjs",
217
- "esm": "./esm2022/label/acorex-components-label.mjs",
218
- "default": "./fesm2022/acorex-components-label.mjs"
219
- },
220
214
  "./list": {
221
215
  "types": "./list/index.d.ts",
222
216
  "esm2022": "./esm2022/list/acorex-components-list.mjs",
223
217
  "esm": "./esm2022/list/acorex-components-list.mjs",
224
218
  "default": "./fesm2022/acorex-components-list.mjs"
225
219
  },
220
+ "./label": {
221
+ "types": "./label/index.d.ts",
222
+ "esm2022": "./esm2022/label/acorex-components-label.mjs",
223
+ "esm": "./esm2022/label/acorex-components-label.mjs",
224
+ "default": "./fesm2022/acorex-components-label.mjs"
225
+ },
226
226
  "./loading": {
227
227
  "types": "./loading/index.d.ts",
228
228
  "esm2022": "./esm2022/loading/acorex-components-loading.mjs",
@@ -235,6 +235,12 @@
235
235
  "esm": "./esm2022/loading-dialog/acorex-components-loading-dialog.mjs",
236
236
  "default": "./fesm2022/acorex-components-loading-dialog.mjs"
237
237
  },
238
+ "./media-viewer": {
239
+ "types": "./media-viewer/index.d.ts",
240
+ "esm2022": "./esm2022/media-viewer/acorex-components-media-viewer.mjs",
241
+ "esm": "./esm2022/media-viewer/acorex-components-media-viewer.mjs",
242
+ "default": "./fesm2022/acorex-components-media-viewer.mjs"
243
+ },
238
244
  "./menu": {
239
245
  "types": "./menu/index.d.ts",
240
246
  "esm2022": "./esm2022/menu/acorex-components-menu.mjs",
@@ -277,18 +283,18 @@
277
283
  "esm": "./esm2022/page/acorex-components-page.mjs",
278
284
  "default": "./fesm2022/acorex-components-page.mjs"
279
285
  },
280
- "./paint": {
281
- "types": "./paint/index.d.ts",
282
- "esm2022": "./esm2022/paint/acorex-components-paint.mjs",
283
- "esm": "./esm2022/paint/acorex-components-paint.mjs",
284
- "default": "./fesm2022/acorex-components-paint.mjs"
285
- },
286
286
  "./password-box": {
287
287
  "types": "./password-box/index.d.ts",
288
288
  "esm2022": "./esm2022/password-box/acorex-components-password-box.mjs",
289
289
  "esm": "./esm2022/password-box/acorex-components-password-box.mjs",
290
290
  "default": "./fesm2022/acorex-components-password-box.mjs"
291
291
  },
292
+ "./paint": {
293
+ "types": "./paint/index.d.ts",
294
+ "esm2022": "./esm2022/paint/acorex-components-paint.mjs",
295
+ "esm": "./esm2022/paint/acorex-components-paint.mjs",
296
+ "default": "./fesm2022/acorex-components-paint.mjs"
297
+ },
292
298
  "./phone-box": {
293
299
  "types": "./phone-box/index.d.ts",
294
300
  "esm2022": "./esm2022/phone-box/acorex-components-phone-box.mjs",