@acorex/components 18.5.16 → 18.5.17
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/action-sheet/lib/action-sheet.component.d.ts +26 -0
- package/alert/lib/alert.component.d.ts +50 -2
- package/audio-wave/lib/audio-wave.component.d.ts +48 -0
- package/avatar/lib/avatar.component.d.ts +20 -1
- package/badge/lib/badge.component.d.ts +8 -0
- package/bottom-navigation/lib/bottom-navigation.component.d.ts +16 -0
- package/breadcrumbs/lib/breadcrumbs-item.component.d.ts +11 -0
- package/breadcrumbs/lib/breadcrumbs.component.d.ts +11 -0
- package/button/lib/button-item-list.component.d.ts +34 -0
- package/button/lib/button-item.component.d.ts +47 -0
- package/button/lib/button.component.d.ts +36 -0
- package/button-group/lib/button-group.component.d.ts +53 -0
- package/calendar/lib/calendar-range.component.d.ts +48 -0
- package/calendar/lib/calendar.component.d.ts +114 -0
- package/check-box/lib/check-box.component.d.ts +36 -0
- package/chips/lib/chips.component.d.ts +13 -0
- package/circular-progress/lib/circular-progress.component.d.ts +67 -1
- package/collapse/lib/collapse-group.component.d.ts +38 -0
- package/collapse/lib/collapse.component.d.ts +55 -0
- package/color-box/lib/color-box.component.d.ts +28 -1
- package/color-palette/lib/color-palette-input.component.d.ts +35 -0
- package/color-palette/lib/color-palette-picker.component.d.ts +53 -0
- package/color-palette/lib/color-palette-preview.component.d.ts +17 -0
- package/color-palette/lib/color-palette-swatches.component.d.ts +30 -0
- package/color-palette/lib/color-palette.component.d.ts +8 -0
- package/comment/lib/comment-container/comment-container.component.d.ts +5 -0
- package/comment/lib/comment-item/comment-item.component.d.ts +16 -2
- package/comment/lib/comment-like/comment-like.component.d.ts +8 -0
- package/comment/lib/comment-reply/comment-reply.component.d.ts +4 -0
- package/comment/lib/comment-view/comment-view.component.d.ts +4 -0
- package/common/lib/components/base-component.class.d.ts +8 -0
- package/common/lib/components/button-base-component.class.d.ts +21 -0
- package/common/lib/components/interactive-component.class.d.ts +15 -0
- package/conversation/lib/conversation-container/conversation-container.component.d.ts +4 -0
- package/conversation/lib/conversation-input/conversation-input.component.d.ts +79 -2
- package/conversation/lib/conversation-message/conversation-message.component.d.ts +41 -0
- package/conversation/lib/conversation-messages/conversation-message-audio/conversation-message-audio.component.d.ts +62 -0
- package/conversation/lib/conversation-messages/conversation-message-file/conversation-message-file.component.d.ts +34 -0
- package/conversation/lib/conversation-messages/conversation-message-image/conversation-message-image.component.d.ts +21 -0
- package/conversation/lib/conversation-messages/conversation-message-image-popup/conversation-message-image-popup.component.d.ts +11 -0
- package/conversation/lib/conversation-messages/conversation-message-text/conversation-message-text.component.d.ts +29 -0
- package/conversation/lib/conversation-messages/conversation-message-video/conversation-message-video.component.d.ts +11 -0
- package/conversation/lib/conversation-messages/conversation-message-voice/conversation-message-voice.component.d.ts +72 -0
- package/conversation/lib/conversation-view/conversation-view.component.d.ts +22 -0
- package/data-pager/lib/data-pager-base.component.d.ts +9 -0
- package/data-pager/lib/data-pager-info.component.d.ts +14 -0
- package/data-pager/lib/data-pager-input-selector.component.d.ts +17 -0
- package/data-pager/lib/data-pager-next-buttons.components.d.ts +20 -0
- package/data-pager/lib/data-pager-numeric-selector.component.d.ts +14 -0
- package/esm2022/action-sheet/lib/action-sheet.component.mjs +21 -1
- package/esm2022/alert/lib/alert.component.mjs +48 -3
- package/esm2022/audio-wave/lib/audio-wave.component.mjs +43 -1
- package/esm2022/avatar/lib/avatar.component.mjs +21 -2
- package/esm2022/badge/lib/badge.component.mjs +9 -1
- package/esm2022/bottom-navigation/lib/bottom-navigation.component.mjs +14 -1
- package/esm2022/breadcrumbs/lib/breadcrumbs-item.component.mjs +9 -1
- package/esm2022/breadcrumbs/lib/breadcrumbs.component.mjs +6 -1
- package/esm2022/button/lib/button-item-list.component.mjs +35 -1
- package/esm2022/button/lib/button-item.component.mjs +36 -1
- package/esm2022/button/lib/button.component.mjs +37 -1
- package/esm2022/button-group/lib/button-group.component.mjs +48 -1
- package/esm2022/calendar/lib/calendar-range.component.mjs +46 -1
- package/esm2022/calendar/lib/calendar.component.mjs +112 -1
- package/esm2022/check-box/lib/check-box.component.mjs +34 -1
- package/esm2022/chips/lib/chips.component.mjs +14 -1
- package/esm2022/circular-progress/lib/circular-progress.component.mjs +69 -1
- package/esm2022/collapse/lib/collapse-group.component.mjs +39 -1
- package/esm2022/collapse/lib/collapse.component.mjs +53 -1
- package/esm2022/color-box/lib/color-box.component.mjs +23 -2
- package/esm2022/color-palette/lib/color-palette-input.component.mjs +36 -1
- package/esm2022/color-palette/lib/color-palette-picker.component.mjs +54 -1
- package/esm2022/color-palette/lib/color-palette-preview.component.mjs +18 -1
- package/esm2022/color-palette/lib/color-palette-swatches.component.mjs +28 -1
- package/esm2022/color-palette/lib/color-palette.component.mjs +9 -1
- package/esm2022/comment/lib/comment-container/comment-container.component.mjs +6 -1
- package/esm2022/comment/lib/comment-item/comment-item.component.mjs +15 -1
- package/esm2022/comment/lib/comment-like/comment-like.component.mjs +9 -1
- package/esm2022/comment/lib/comment-reply/comment-reply.component.mjs +5 -1
- package/esm2022/comment/lib/comment-view/comment-view.component.mjs +5 -1
- package/esm2022/common/lib/components/base-component.class.mjs +9 -1
- package/esm2022/common/lib/components/button-base-component.class.mjs +22 -1
- package/esm2022/common/lib/components/interactive-component.class.mjs +16 -1
- package/esm2022/conversation/lib/conversation-container/conversation-container.component.mjs +5 -1
- package/esm2022/conversation/lib/conversation-input/conversation-input.component.mjs +75 -1
- package/esm2022/conversation/lib/conversation-message/conversation-message.component.mjs +39 -1
- package/esm2022/conversation/lib/conversation-messages/conversation-message-audio/conversation-message-audio.component.mjs +63 -1
- package/esm2022/conversation/lib/conversation-messages/conversation-message-file/conversation-message-file.component.mjs +35 -1
- package/esm2022/conversation/lib/conversation-messages/conversation-message-image/conversation-message-image.component.mjs +22 -1
- package/esm2022/conversation/lib/conversation-messages/conversation-message-image-popup/conversation-message-image-popup.component.mjs +9 -1
- package/esm2022/conversation/lib/conversation-messages/conversation-message-text/conversation-message-text.component.mjs +30 -1
- package/esm2022/conversation/lib/conversation-messages/conversation-message-video/conversation-message-video.component.mjs +12 -1
- package/esm2022/conversation/lib/conversation-messages/conversation-message-voice/conversation-message-voice.component.mjs +70 -1
- package/esm2022/conversation/lib/conversation-view/conversation-view.component.mjs +23 -1
- package/esm2022/data-pager/lib/data-pager-base.component.mjs +7 -1
- package/esm2022/data-pager/lib/data-pager-info.component.mjs +9 -1
- package/esm2022/data-pager/lib/data-pager-input-selector.component.mjs +18 -1
- package/esm2022/data-pager/lib/data-pager-next-buttons.components.mjs +18 -1
- package/esm2022/data-pager/lib/data-pager-numeric-selector.component.mjs +15 -1
- package/esm2022/scheduler/lib/scheduler-month-view.component.mjs +20 -1
- package/esm2022/scheduler/lib/scheduler-week-view.component.mjs +5 -1
- package/esm2022/scheduler/lib/scheduler.component.mjs +10 -1
- package/esm2022/search-box/lib/search-box.component.mjs +19 -2
- package/esm2022/select-box/lib/select-box.component.mjs +50 -2
- package/esm2022/selection-list/lib/selection-list.component.mjs +51 -1
- package/esm2022/side-menu/lib/side-menu.component.mjs +5 -1
- package/esm2022/skeleton/lib/skeleton.component.mjs +11 -1
- package/esm2022/slider/lib/slider.component.mjs +52 -2
- package/esm2022/step-wizard/lib/step-wizard.component.mjs +23 -1
- package/esm2022/switch/lib/switch-content.component.mjs +5 -1
- package/esm2022/switch/lib/switch.component.mjs +11 -1
- package/esm2022/tabs/lib/tab-item.component.mjs +24 -1
- package/esm2022/tabs/lib/tabs.component.mjs +36 -1
- package/esm2022/tag/lib/tag.component.mjs +2 -1
- package/esm2022/text-area/lib/text-area.component.mjs +8 -1
- package/esm2022/text-box/lib/text-box.component.mjs +13 -1
- package/esm2022/toast/lib/toast.component.mjs +6 -1
- package/esm2022/tooltip/lib/tooltip.component.mjs +5 -1
- package/esm2022/uploader/lib/uploader-dialog-container.component.mjs +16 -1
- package/esm2022/uploader/lib/uploader-drop-zone.component.mjs +5 -1
- package/esm2022/uploader/lib/uploader-list.component.mjs +8 -3
- package/esm2022/uploader/lib/uploader.models.mjs +14 -1
- package/esm2022/wysiwyg/lib/wysiwyg/wysiwyg-container/wysiwyg-container.component.mjs +18 -1
- package/esm2022/wysiwyg/lib/wysiwyg/wysiwyg-toolbar/wysiwyg-toolbar.component.mjs +106 -36
- package/esm2022/wysiwyg/lib/wysiwyg/wysiwyg-view/wysiwyg-view.component.mjs +9 -1
- package/esm2022/wysiwyg/lib/wysiwyg/wysiwyg.service.mjs +4 -1
- package/fesm2022/acorex-components-action-sheet.mjs +20 -0
- package/fesm2022/acorex-components-action-sheet.mjs.map +1 -1
- package/fesm2022/acorex-components-alert.mjs +47 -2
- package/fesm2022/acorex-components-alert.mjs.map +1 -1
- package/fesm2022/acorex-components-audio-wave.mjs +42 -0
- package/fesm2022/acorex-components-audio-wave.mjs.map +1 -1
- package/fesm2022/acorex-components-avatar.mjs +20 -1
- package/fesm2022/acorex-components-avatar.mjs.map +1 -1
- package/fesm2022/acorex-components-badge.mjs +8 -0
- package/fesm2022/acorex-components-badge.mjs.map +1 -1
- package/fesm2022/acorex-components-bottom-navigation.mjs +13 -0
- package/fesm2022/acorex-components-bottom-navigation.mjs.map +1 -1
- package/fesm2022/acorex-components-breadcrumbs.mjs +13 -0
- package/fesm2022/acorex-components-breadcrumbs.mjs.map +1 -1
- package/fesm2022/acorex-components-button-group.mjs +47 -0
- package/fesm2022/acorex-components-button-group.mjs.map +1 -1
- package/fesm2022/acorex-components-button.mjs +105 -0
- package/fesm2022/acorex-components-button.mjs.map +1 -1
- package/fesm2022/acorex-components-calendar.mjs +156 -0
- package/fesm2022/acorex-components-calendar.mjs.map +1 -1
- package/fesm2022/acorex-components-check-box.mjs +33 -0
- package/fesm2022/acorex-components-check-box.mjs.map +1 -1
- package/fesm2022/acorex-components-chips.mjs +13 -0
- package/fesm2022/acorex-components-chips.mjs.map +1 -1
- package/fesm2022/acorex-components-circular-progress.mjs +68 -0
- package/fesm2022/acorex-components-circular-progress.mjs.map +1 -1
- package/fesm2022/acorex-components-collapse.mjs +90 -0
- package/fesm2022/acorex-components-collapse.mjs.map +1 -1
- package/fesm2022/acorex-components-color-box.mjs +22 -1
- package/fesm2022/acorex-components-color-box.mjs.map +1 -1
- package/fesm2022/acorex-components-color-palette.mjs +140 -0
- package/fesm2022/acorex-components-color-palette.mjs.map +1 -1
- package/fesm2022/acorex-components-comment.mjs +35 -0
- package/fesm2022/acorex-components-comment.mjs.map +1 -1
- package/fesm2022/acorex-components-common.mjs +44 -0
- package/fesm2022/acorex-components-common.mjs.map +1 -1
- package/fesm2022/acorex-components-conversation.mjs +372 -0
- package/fesm2022/acorex-components-conversation.mjs.map +1 -1
- package/fesm2022/acorex-components-data-pager.mjs +62 -0
- package/fesm2022/acorex-components-data-pager.mjs.map +1 -1
- package/fesm2022/acorex-components-scheduler.mjs +32 -0
- package/fesm2022/acorex-components-scheduler.mjs.map +1 -1
- package/fesm2022/acorex-components-search-box.mjs +18 -1
- package/fesm2022/acorex-components-search-box.mjs.map +1 -1
- package/fesm2022/acorex-components-select-box.mjs +49 -1
- package/fesm2022/acorex-components-select-box.mjs.map +1 -1
- package/fesm2022/acorex-components-selection-list.mjs +50 -0
- package/fesm2022/acorex-components-selection-list.mjs.map +1 -1
- package/fesm2022/acorex-components-side-menu.mjs +4 -0
- package/fesm2022/acorex-components-side-menu.mjs.map +1 -1
- package/fesm2022/acorex-components-skeleton.mjs +10 -0
- package/fesm2022/acorex-components-skeleton.mjs.map +1 -1
- package/fesm2022/acorex-components-slider.mjs +51 -1
- package/fesm2022/acorex-components-slider.mjs.map +1 -1
- package/fesm2022/acorex-components-step-wizard.mjs +22 -0
- package/fesm2022/acorex-components-step-wizard.mjs.map +1 -1
- package/fesm2022/acorex-components-switch.mjs +14 -0
- package/fesm2022/acorex-components-switch.mjs.map +1 -1
- package/fesm2022/acorex-components-tabs.mjs +58 -0
- package/fesm2022/acorex-components-tabs.mjs.map +1 -1
- package/fesm2022/acorex-components-tag.mjs +1 -0
- package/fesm2022/acorex-components-tag.mjs.map +1 -1
- package/fesm2022/acorex-components-text-area.mjs +7 -0
- package/fesm2022/acorex-components-text-area.mjs.map +1 -1
- package/fesm2022/acorex-components-text-box.mjs +12 -0
- package/fesm2022/acorex-components-text-box.mjs.map +1 -1
- package/fesm2022/acorex-components-toast.mjs +5 -0
- package/fesm2022/acorex-components-toast.mjs.map +1 -1
- package/fesm2022/acorex-components-tooltip.mjs +4 -0
- package/fesm2022/acorex-components-tooltip.mjs.map +1 -1
- package/fesm2022/acorex-components-uploader.mjs +39 -2
- package/fesm2022/acorex-components-uploader.mjs.map +1 -1
- package/fesm2022/acorex-components-wysiwyg.mjs +134 -35
- package/fesm2022/acorex-components-wysiwyg.mjs.map +1 -1
- package/package.json +31 -31
- package/scheduler/lib/scheduler-month-view.component.d.ts +20 -0
- package/scheduler/lib/scheduler-week-view.component.d.ts +4 -0
- package/scheduler/lib/scheduler.component.d.ts +10 -0
- package/search-box/lib/search-box.component.d.ts +19 -1
- package/select-box/lib/select-box.component.d.ts +78 -1
- package/selection-list/lib/selection-list.component.d.ts +55 -0
- package/side-menu/lib/side-menu.component.d.ts +4 -0
- package/skeleton/lib/skeleton.component.d.ts +10 -0
- package/slider/lib/slider.component.d.ts +51 -1
- package/step-wizard/lib/step-wizard.component.d.ts +23 -0
- package/switch/lib/switch-content.component.d.ts +4 -0
- package/switch/lib/switch.component.d.ts +14 -0
- package/tabs/lib/tab-item.component.d.ts +32 -0
- package/tabs/lib/tabs.component.d.ts +42 -0
- package/tag/lib/tag.component.d.ts +4 -0
- package/text-area/lib/text-area.component.d.ts +13 -0
- package/text-box/lib/text-box.component.d.ts +27 -0
- package/toast/lib/toast.component.d.ts +6 -0
- package/tooltip/lib/tooltip.component.d.ts +13 -0
- package/uploader/lib/uploader-dialog-container.component.d.ts +15 -0
- package/uploader/lib/uploader-drop-zone.component.d.ts +4 -0
- package/uploader/lib/uploader-list.component.d.ts +5 -0
- package/uploader/lib/uploader.models.d.ts +4 -0
- package/wysiwyg/lib/wysiwyg/wysiwyg-container/wysiwyg-container.component.d.ts +19 -3
- package/wysiwyg/lib/wysiwyg/wysiwyg-toolbar/wysiwyg-toolbar.component.d.ts +61 -20
- package/wysiwyg/lib/wysiwyg/wysiwyg-view/wysiwyg-view.component.d.ts +4 -0
- package/wysiwyg/lib/wysiwyg/wysiwyg.service.d.ts +3 -0
|
@@ -1,7 +1,17 @@
|
|
|
1
1
|
import { MXBaseComponent } from '@acorex/components/common';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* @category
|
|
5
|
+
* A skeleton component used for loading placeholders.
|
|
6
|
+
*/
|
|
3
7
|
export declare class AXSkeletonComponent extends MXBaseComponent {
|
|
8
|
+
/**
|
|
9
|
+
* Determines whether animations are enabled.
|
|
10
|
+
*
|
|
11
|
+
* @defaultValue true
|
|
12
|
+
*/
|
|
4
13
|
animated: boolean;
|
|
14
|
+
/** @ignore */
|
|
5
15
|
get __hostClass(): string;
|
|
6
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXSkeletonComponent, never>;
|
|
7
17
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXSkeletonComponent, "ax-skeleton", never, { "animated": { "alias": "animated"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -1,40 +1,90 @@
|
|
|
1
|
-
import { NgZone } from '@angular/core';
|
|
2
1
|
import { AXClickEvent, AXDirection, MXColorComponent, MXComponentOptionChanged, MXValueComponent } from '@acorex/components/common';
|
|
2
|
+
import { NgZone } from '@angular/core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
declare const AXSliderComponent_base: import("polytype").Polytype.ClusteredConstructor<[{
|
|
5
5
|
new (): MXValueComponent<number>;
|
|
6
6
|
ɵfac: unknown;
|
|
7
7
|
ɵprov: import("@angular/core").ɵɵInjectableDeclaration<MXValueComponent<any>>;
|
|
8
8
|
}, typeof MXColorComponent]>;
|
|
9
|
+
/**
|
|
10
|
+
* @category
|
|
11
|
+
* A customizable slider component for selecting a value within a range.
|
|
12
|
+
*/
|
|
9
13
|
export declare class AXSliderComponent extends AXSliderComponent_base {
|
|
10
14
|
private _zone;
|
|
15
|
+
/** @ignore */
|
|
11
16
|
constructor(_zone: NgZone);
|
|
17
|
+
/**
|
|
18
|
+
* @event
|
|
19
|
+
*/
|
|
12
20
|
onClick: import("@angular/core").OutputEmitterRef<AXClickEvent>;
|
|
21
|
+
/** @ignore */
|
|
13
22
|
private _minValue;
|
|
14
23
|
/**
|
|
15
24
|
* Specifies the smallest value that is valid
|
|
16
25
|
*/
|
|
17
26
|
get minValue(): number;
|
|
27
|
+
/**
|
|
28
|
+
* Sets the minimum value of the slider.
|
|
29
|
+
*
|
|
30
|
+
* @param {number} v
|
|
31
|
+
*/
|
|
18
32
|
set minValue(v: number);
|
|
33
|
+
/** @ignore */
|
|
19
34
|
private _maxValue;
|
|
20
35
|
/**
|
|
21
36
|
* Specifies the greatest value that is valid
|
|
22
37
|
*/
|
|
23
38
|
get maxValue(): number;
|
|
39
|
+
/**
|
|
40
|
+
* Sets the maximum value of the slider.
|
|
41
|
+
*
|
|
42
|
+
* @param {number} v
|
|
43
|
+
*/
|
|
24
44
|
set maxValue(v: number);
|
|
45
|
+
/** @ignore */
|
|
25
46
|
private _step;
|
|
26
47
|
/**
|
|
27
48
|
* Specifies the greatest value that is valid
|
|
28
49
|
*/
|
|
29
50
|
get step(): number;
|
|
51
|
+
/**
|
|
52
|
+
* Sets the step increment for the slider.
|
|
53
|
+
*
|
|
54
|
+
* @param {number} v
|
|
55
|
+
*/
|
|
30
56
|
set step(v: number);
|
|
57
|
+
/**
|
|
58
|
+
* The direction of the slider.
|
|
59
|
+
*
|
|
60
|
+
* @defaultValue 'horizontal'
|
|
61
|
+
*/
|
|
31
62
|
direction: AXDirection;
|
|
63
|
+
/**
|
|
64
|
+
* Handles changes to internal component options.
|
|
65
|
+
*
|
|
66
|
+
* @param {MXComponentOptionChanged} e
|
|
67
|
+
*/
|
|
32
68
|
internalOptionChanged(e: MXComponentOptionChanged): void;
|
|
69
|
+
/**
|
|
70
|
+
* Handles changes to the component's value.
|
|
71
|
+
*
|
|
72
|
+
* @param {number} value
|
|
73
|
+
*/
|
|
33
74
|
internalValueChanged(value: number): void;
|
|
75
|
+
/** @ignore */
|
|
34
76
|
protected _handleModelChange(value: number): void;
|
|
77
|
+
/** @ignore */
|
|
35
78
|
private _calcVars;
|
|
79
|
+
/**
|
|
80
|
+
* @event
|
|
81
|
+
*
|
|
82
|
+
* Emits the value of the clicked input element when the click event occurs.
|
|
83
|
+
*/
|
|
36
84
|
clickHandler(e: Event): void;
|
|
85
|
+
/** @ignore */
|
|
37
86
|
private get __hostClass();
|
|
87
|
+
/** @ignore */
|
|
38
88
|
private get __hostClassDisabled();
|
|
39
89
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXSliderComponent, never>;
|
|
40
90
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXSliderComponent, "ax-slider", never, { "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "color": { "alias": "color"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "step": { "alias": "step"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; }, { "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "onChange": "onChange"; "onClick": "onClick"; }, never, never, false, never>;
|
|
@@ -4,24 +4,47 @@ import { AXStepWizardItemComponent } from './step-wizard-item/step-wizard-item.c
|
|
|
4
4
|
import { AXStepWizardLook } from './step-wizard.class';
|
|
5
5
|
import { AXStepWizardContentDirective } from './step-wizard.directive';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* @category
|
|
9
|
+
* A component for creating a step-by-step wizard interface.
|
|
10
|
+
*/
|
|
7
11
|
export declare class AXStepWizardComponent extends MXBaseComponent implements OnInit {
|
|
12
|
+
/** @ignore */
|
|
8
13
|
protected activeStepIndex: WritableSignal<number>;
|
|
14
|
+
/** @ignore */
|
|
9
15
|
protected activeLook: WritableSignal<AXStepWizardLook>;
|
|
16
|
+
/** @ignore */
|
|
10
17
|
protected activeOrientation: WritableSignal<AXOrientation>;
|
|
11
18
|
isFirst: Signal<boolean>;
|
|
12
19
|
isLast: Signal<boolean>;
|
|
20
|
+
/** @ignore */
|
|
13
21
|
protected className: Signal<string[]>;
|
|
22
|
+
/** @ignore */
|
|
14
23
|
private changeStepContent;
|
|
24
|
+
/** @ignore */
|
|
15
25
|
private stepChangeEffect;
|
|
26
|
+
/** @ignore */
|
|
16
27
|
ngOnInit(): void;
|
|
28
|
+
/** @ignore */
|
|
17
29
|
steps: QueryList<AXStepWizardItemComponent>;
|
|
30
|
+
/**
|
|
31
|
+
* Sets the visual style of the step wizard.
|
|
32
|
+
*
|
|
33
|
+
* @param v
|
|
34
|
+
*/
|
|
18
35
|
set look(v: AXStepWizardLook);
|
|
36
|
+
/**
|
|
37
|
+
* Sets the orientation of the component.
|
|
38
|
+
*
|
|
39
|
+
* @param v
|
|
40
|
+
*/
|
|
19
41
|
set orientation(v: AXOrientation);
|
|
20
42
|
content: AXStepWizardContentDirective;
|
|
21
43
|
next(): void;
|
|
22
44
|
previous(): void;
|
|
23
45
|
goStep(stepIndex: number): void;
|
|
24
46
|
reset(): void;
|
|
47
|
+
/** @ignore */
|
|
25
48
|
private get __hostClass();
|
|
26
49
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXStepWizardComponent, never>;
|
|
27
50
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXStepWizardComponent, "ax-step-wizard", never, { "look": { "alias": "look"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "content": { "alias": "content"; "required": false; }; }, {}, ["steps"], ["ax-step-wizard-item"], false, never>;
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { MXBaseComponent } from '@acorex/components/common';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* @category
|
|
5
|
+
* Displays content for different switch states using `<ng-content>`.
|
|
6
|
+
*/
|
|
3
7
|
export declare class AXSwitchContentComponent extends MXBaseComponent {
|
|
4
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXSwitchContentComponent, never>;
|
|
5
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXSwitchContentComponent, "ax-switch-handler-content,ax-switch-handler-on-content,ax-switch-handler-off-content,ax-switch-off-content,ax-switch-on-content", never, {}, {}, never, ["*"], false, never>;
|
|
@@ -5,9 +5,23 @@ declare const AXSwitchComponent_base: import("polytype").Polytype.ClusteredConst
|
|
|
5
5
|
ɵfac: unknown;
|
|
6
6
|
ɵprov: import("@angular/core").ɵɵInjectableDeclaration<MXValueComponent<any>>;
|
|
7
7
|
}, typeof MXColorComponent]>;
|
|
8
|
+
/**
|
|
9
|
+
* @category
|
|
10
|
+
* A switch component that allows toggling between on and off states.
|
|
11
|
+
*/
|
|
8
12
|
export declare class AXSwitchComponent extends AXSwitchComponent_base {
|
|
13
|
+
/**
|
|
14
|
+
* Indicates whether the component is in a loading state.
|
|
15
|
+
* @defaultValue boolean
|
|
16
|
+
*/
|
|
9
17
|
isLoading: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* @ignore
|
|
20
|
+
*/
|
|
10
21
|
protected _handleOnClickEvent(e: MouseEvent): void;
|
|
22
|
+
/**
|
|
23
|
+
* @ignore
|
|
24
|
+
*/
|
|
11
25
|
private get __hostClass();
|
|
12
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXSwitchComponent, never>;
|
|
13
27
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXSwitchComponent, "ax-switch", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "color": { "alias": "color"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; }, never, ["ax-switch-handler-content", "ax-switch-handler-on-content", "ax-switch-handler-off-content", "ax-switch-off-content", "ax-switch-on-content"], false, never>;
|
|
@@ -1,17 +1,49 @@
|
|
|
1
1
|
import { AXClickEvent, MXComponentOptionChanged, MXInteractiveComponent } from '@acorex/components/common';
|
|
2
2
|
import { EventEmitter, TemplateRef } from '@angular/core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* @category
|
|
6
|
+
* Represents an individual tab item in a tab component.
|
|
7
|
+
*/
|
|
4
8
|
export declare class AXTabItemComponent extends MXInteractiveComponent {
|
|
9
|
+
/**
|
|
10
|
+
* Defines the text content to be displayed within the component.
|
|
11
|
+
*/
|
|
5
12
|
text: string;
|
|
13
|
+
/**
|
|
14
|
+
* Defines a unique identifier for the component instance.
|
|
15
|
+
*/
|
|
6
16
|
key: string;
|
|
7
17
|
template: TemplateRef<unknown>;
|
|
18
|
+
/**
|
|
19
|
+
* Defines a custom template for the component's header.
|
|
20
|
+
*/
|
|
8
21
|
headerTemplate: TemplateRef<unknown>;
|
|
22
|
+
/**
|
|
23
|
+
* Emits an event when the `active` state of the component changes.
|
|
24
|
+
* @event
|
|
25
|
+
*/
|
|
9
26
|
activeChange: EventEmitter<boolean>;
|
|
27
|
+
/**
|
|
28
|
+
* Emits an event when the component is clicked.
|
|
29
|
+
* @event
|
|
30
|
+
*/
|
|
10
31
|
onClick: EventEmitter<AXClickEvent>;
|
|
32
|
+
/** @ignore */
|
|
11
33
|
private _active;
|
|
34
|
+
/**
|
|
35
|
+
* Gets or sets the component's active state, controlling its behavior and appearance.
|
|
36
|
+
* @param value {boolean}
|
|
37
|
+
*/
|
|
12
38
|
get active(): boolean;
|
|
13
39
|
set active(value: boolean);
|
|
40
|
+
/**
|
|
41
|
+
* @ignore
|
|
42
|
+
*/
|
|
14
43
|
private __hostClick;
|
|
44
|
+
/**
|
|
45
|
+
* @ignore
|
|
46
|
+
*/
|
|
15
47
|
protected internalOptionChanged(option: MXComponentOptionChanged<any>): void;
|
|
16
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXTabItemComponent, never>;
|
|
17
49
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXTabItemComponent, "ax-tab-item", never, { "disabled": { "alias": "disabled"; "required": false; }; "text": { "alias": "text"; "required": false; }; "key": { "alias": "key"; "required": false; }; "headerTemplate": { "alias": "headerTemplate"; "required": false; }; "active": { "alias": "active"; "required": false; }; }, { "disabledChange": "disabledChange"; "onClick": "onClick"; "onBlur": "onBlur"; "onFocus": "onFocus"; "activeChange": "activeChange"; }, never, ["ax-prefix", "ax-suffix", "ax-content"], false, never>;
|
|
@@ -4,23 +4,65 @@ import { AXTabContentDirective } from './tab-content.directive';
|
|
|
4
4
|
import { AXTabItemComponent } from './tab-item.component';
|
|
5
5
|
import { AXTabLocation, AXTabLook, AXTabStripChangedEvent } from './tabs.class';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* @category
|
|
9
|
+
* A component that serves as a container for tab items.
|
|
10
|
+
*/
|
|
7
11
|
export declare class AXTabsComponent extends MXBaseComponent implements AfterViewInit, AfterContentInit {
|
|
12
|
+
/**
|
|
13
|
+
* @ignore
|
|
14
|
+
*/
|
|
8
15
|
private _contentTabs;
|
|
16
|
+
/**
|
|
17
|
+
* Sets the appearance style of the tab component.
|
|
18
|
+
* @defaultValue 'default'
|
|
19
|
+
*/
|
|
9
20
|
look: AXTabLook;
|
|
21
|
+
/**
|
|
22
|
+
* Specifies the position of the tab component.
|
|
23
|
+
* @defaultValue 'bottom'
|
|
24
|
+
*/
|
|
10
25
|
location: AXTabLocation;
|
|
26
|
+
/**
|
|
27
|
+
* @defaultValue 'false'
|
|
28
|
+
* Specifies whether the component should resize to fit its parent container.
|
|
29
|
+
*/
|
|
11
30
|
fitParent: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* @defaultValue 'false'
|
|
33
|
+
* Applies a minimum width constraint to the component.
|
|
34
|
+
*/
|
|
12
35
|
minWidth: boolean;
|
|
36
|
+
/**
|
|
37
|
+
* The `AXTabContentDirective` associated with the tab.
|
|
38
|
+
*/
|
|
13
39
|
content: AXTabContentDirective;
|
|
40
|
+
/** @ignore */
|
|
14
41
|
private _isUserInteraction;
|
|
15
42
|
get items(): AXTabItemComponent[];
|
|
43
|
+
/** @ignore */
|
|
16
44
|
private _selectedItem;
|
|
45
|
+
/** @ignore */
|
|
17
46
|
get selectedIndex(): number;
|
|
47
|
+
/** @ignore */
|
|
18
48
|
get selectedItem(): AXTabItemComponent;
|
|
49
|
+
/**
|
|
50
|
+
* @event
|
|
51
|
+
*/
|
|
19
52
|
onActiveTabChanged: EventEmitter<AXTabStripChangedEvent>;
|
|
53
|
+
/** @ignore */
|
|
20
54
|
private get __hostClass();
|
|
55
|
+
/** @ignore */
|
|
21
56
|
ngAfterContentInit(): void;
|
|
57
|
+
/** @ignore */
|
|
22
58
|
ngAfterViewInit(): void;
|
|
59
|
+
/** @ignore */
|
|
23
60
|
private _bindOnClickEvent;
|
|
61
|
+
/**
|
|
62
|
+
* Activates the specified tab and updates the content.
|
|
63
|
+
*
|
|
64
|
+
* @param {number | AXTabItemComponent}
|
|
65
|
+
*/
|
|
24
66
|
select(tab: number | AXTabItemComponent): void;
|
|
25
67
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXTabsComponent, never>;
|
|
26
68
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXTabsComponent, "ax-tabs", never, { "look": { "alias": "look"; "required": false; }; "location": { "alias": "location"; "required": false; }; "fitParent": { "alias": "fitParent"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "content": { "alias": "content"; "required": false; }; }, { "onActiveTabChanged": "onActiveTabChanged"; }, ["_contentTabs"], ["ax-tab-item"], false, never>;
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import { MXColorLookComponent } from '@acorex/components/common';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class AXTagComponent extends MXColorLookComponent {
|
|
4
|
+
/**
|
|
5
|
+
* Represents the text content to be displayed or used within the component.
|
|
6
|
+
*/
|
|
4
7
|
text: string;
|
|
8
|
+
/** @ignore */
|
|
5
9
|
private get __hostClass();
|
|
6
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXTagComponent, never>;
|
|
7
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXTagComponent, "ax-tag", never, { "color": { "alias": "color"; "required": false; }; "look": { "alias": "look"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, {}, never, ["ax-prefix", "ax-suffix"], false, never>;
|
|
@@ -8,10 +8,23 @@ declare const AXTextAreaComponent_base: import("polytype").Polytype.ClusteredCon
|
|
|
8
8
|
}, typeof MXLookComponent]>;
|
|
9
9
|
export declare class AXTextAreaComponent extends AXTextAreaComponent_base {
|
|
10
10
|
input: ElementRef<HTMLInputElement>;
|
|
11
|
+
/**
|
|
12
|
+
* Specifies the number of rows for the component, typically used for configuring the size of a text area or similar input field.
|
|
13
|
+
*/
|
|
11
14
|
rows: number;
|
|
15
|
+
/**
|
|
16
|
+
* Indicates whether the component allows resizing.
|
|
17
|
+
*/
|
|
12
18
|
allowResize: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* Determines whether a counter is displayed in the component.
|
|
21
|
+
*/
|
|
13
22
|
showCounter: boolean;
|
|
23
|
+
/**
|
|
24
|
+
* Specifies the maximum number of characters allowed in the input field.
|
|
25
|
+
*/
|
|
14
26
|
maxLength: number;
|
|
27
|
+
/** @ignore */
|
|
15
28
|
protected _handleModelChange(value: string | null): void;
|
|
16
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXTextAreaComponent, never>;
|
|
17
30
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXTextAreaComponent, "ax-text-area", never, { "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "look": { "alias": "look"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "allowResize": { "alias": "allowResize"; "required": false; }; "showCounter": { "alias": "showCounter"; "required": false; }; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "onKeyDown": "onKeyDown"; "onKeyUp": "onKeyUp"; "onKeyPress": "onKeyPress"; }, never, ["ax-validation-rule"], false, never>;
|
|
@@ -13,20 +13,47 @@ declare const AXTextBoxComponent_base: import("polytype").Polytype.ClusteredCons
|
|
|
13
13
|
* @category Components
|
|
14
14
|
*/
|
|
15
15
|
export declare class AXTextBoxComponent extends AXTextBoxComponent_base implements AfterContentInit {
|
|
16
|
+
/** @ignore */
|
|
16
17
|
protected _updateOn: 'change' | 'blur' | 'submit';
|
|
18
|
+
/** @ignore */
|
|
17
19
|
private input;
|
|
20
|
+
/** @ignore */
|
|
18
21
|
private _maskObj;
|
|
22
|
+
/** @ignore */
|
|
19
23
|
private _maskOptions;
|
|
24
|
+
/**
|
|
25
|
+
* This public getter provides access to the `_maskOptions` property, which holds the configuration options for the mask feature.
|
|
26
|
+
*/
|
|
20
27
|
get maskOptions(): AXMaskOptions;
|
|
28
|
+
/**
|
|
29
|
+
* @param value {AXMaskOptions} - The new mask configuration options to be set.
|
|
30
|
+
*/
|
|
21
31
|
set maskOptions(value: AXMaskOptions);
|
|
32
|
+
/**
|
|
33
|
+
* This property defines the maximum number of characters that the input field can accept. It can be dynamically bound from a parent component template to enforce input length constraints.
|
|
34
|
+
*/
|
|
22
35
|
maxLength: number;
|
|
36
|
+
/**
|
|
37
|
+
* This property determines the type of the input element (e.g., 'text', 'password', 'email', etc.). It can be dynamically bound from a parent component template to change the input field type based on different conditions or requirements.
|
|
38
|
+
*/
|
|
23
39
|
type: string;
|
|
40
|
+
/**
|
|
41
|
+
* This property determines whether the input field should have autocomplete enabled and what type of autocomplete suggestions should be provided
|
|
42
|
+
*/
|
|
24
43
|
autoComplete: string;
|
|
44
|
+
/**
|
|
45
|
+
* This will apply 'my-custom-class' and 'another-class' to the component's root element.
|
|
46
|
+
*/
|
|
25
47
|
classNames: string;
|
|
48
|
+
/** @ignore */
|
|
26
49
|
protected _maskOptionsContent: AXMaskOptionsDirective;
|
|
50
|
+
/** @ignore */
|
|
27
51
|
ngAfterContentInit(): void;
|
|
52
|
+
/** @ignore */
|
|
28
53
|
private setMask;
|
|
54
|
+
/** @ignore */
|
|
29
55
|
private _onComplete;
|
|
56
|
+
/** @ignore */
|
|
30
57
|
protected _handleModelChange(value: string | null): void;
|
|
31
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXTextBoxComponent, never>;
|
|
32
59
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXTextBoxComponent, "ax-text-box", never, { "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "allowNull": { "alias": "allowNull"; "required": false; }; "type": { "alias": "type"; "required": false; }; "autoComplete": { "alias": "autoComplete"; "required": false; }; "look": { "alias": "look"; "required": false; }; "maskOptions": { "alias": "mask-options"; "required": false; }; "classNames": { "alias": "class"; "required": false; }; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "onKeyDown": "onKeyDown"; "onKeyUp": "onKeyUp"; "onKeyPress": "onKeyPress"; }, ["_maskOptionsContent"], ["ax-prefix", "ax-clear-button", "ax-suffix", "ax-validation-rule"], false, never>;
|
|
@@ -12,15 +12,21 @@ import * as i0 from "@angular/core";
|
|
|
12
12
|
export declare class AXToastComponent extends MXBaseComponent implements OnInit {
|
|
13
13
|
config: AXToastData;
|
|
14
14
|
private dialogRef;
|
|
15
|
+
/** @ignore */
|
|
15
16
|
protected _toastWidth: number;
|
|
17
|
+
/** @ignore */
|
|
16
18
|
protected _icon: string;
|
|
17
19
|
/**
|
|
18
20
|
* @ignore
|
|
19
21
|
*/
|
|
20
22
|
constructor(config: AXToastData, dialogRef: DialogRef<AXComponentCloseEvent>);
|
|
23
|
+
/** @ignore */
|
|
21
24
|
ngOnInit(): void;
|
|
25
|
+
/** @ignore */
|
|
22
26
|
_handleButtonClick(button: AXButtonItem): void;
|
|
27
|
+
/** @ignore */
|
|
23
28
|
private get __hostClass();
|
|
29
|
+
/** @ignore */
|
|
24
30
|
close(): void;
|
|
25
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXToastComponent, never>;
|
|
26
32
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXToastComponent, "ax-toast", never, {}, {}, never, never, false, never>;
|
|
@@ -1,7 +1,20 @@
|
|
|
1
1
|
import { AXPlacement, MXBaseComponent } from '@acorex/components/common';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* A component for displaying tooltips with additional information or context when hovering over elements.
|
|
5
|
+
* @category Components
|
|
6
|
+
*/
|
|
3
7
|
export declare class AXTooltipComponent extends MXBaseComponent {
|
|
8
|
+
/**
|
|
9
|
+
* The text content displayed in the tooltip.
|
|
10
|
+
* @defaultValue 'string'
|
|
11
|
+
*/
|
|
4
12
|
text: string;
|
|
13
|
+
/**
|
|
14
|
+
* Specifies the position of the tooltip relative to the target element.
|
|
15
|
+
*
|
|
16
|
+
* @type {AXPlacement}
|
|
17
|
+
*/
|
|
5
18
|
position: AXPlacement;
|
|
6
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXTooltipComponent, never>;
|
|
7
20
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXTooltipComponent, "ax-tooltip", never, { "text": { "alias": "text"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, {}, never, never, false, never>;
|
|
@@ -1,8 +1,23 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* A container for managing the uploader dialog with collapse and expand animations.
|
|
4
|
+
* @category Components
|
|
5
|
+
*/
|
|
2
6
|
export declare class AXUploaderDialogContainerComponent {
|
|
7
|
+
/** @ignore */
|
|
3
8
|
private parent;
|
|
9
|
+
/**
|
|
10
|
+
* Indicates whether the component is in a collapsed state.
|
|
11
|
+
* @defaultValue false
|
|
12
|
+
*/
|
|
4
13
|
isCollapsed: boolean;
|
|
14
|
+
/**
|
|
15
|
+
* Closes the parent dialog or container.
|
|
16
|
+
*/
|
|
5
17
|
close(): void;
|
|
18
|
+
/**
|
|
19
|
+
* Toggles the collapsed state of the component.
|
|
20
|
+
*/
|
|
6
21
|
toggle(): void;
|
|
7
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXUploaderDialogContainerComponent, never>;
|
|
8
23
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXUploaderDialogContainerComponent, "ax-uploader-dialog-container", never, {}, {}, never, never, false, never>;
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { MXBaseComponent } from '@acorex/components/common';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* A component that provides a drop zone area for uploading files.
|
|
5
|
+
* @category Components
|
|
6
|
+
*/
|
|
3
7
|
export declare class AXUploaderDropZoneComponent extends MXBaseComponent {
|
|
4
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXUploaderDropZoneComponent, never>;
|
|
5
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXUploaderDropZoneComponent, "ax-uploader-drop-zone", never, {}, {}, never, never, false, never>;
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
import { AXBasePageComponent } from '@acorex/components/page';
|
|
2
2
|
import { AXUploaderService } from './uploader.service';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* A component that displays a list of uploaded files.
|
|
6
|
+
* @category Components
|
|
7
|
+
*/
|
|
4
8
|
export declare class AXUploaderListComponent extends AXBasePageComponent {
|
|
9
|
+
/** @ignore */
|
|
5
10
|
protected uploadService: AXUploaderService;
|
|
6
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXUploaderListComponent, never>;
|
|
7
12
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXUploaderListComponent, "ax-uploader-list", never, {}, {}, never, never, false, never>;
|
|
@@ -21,10 +21,13 @@ export declare class AXUploadRequest {
|
|
|
21
21
|
estimateTime: import("@angular/core").Signal<number>;
|
|
22
22
|
private readonly _status;
|
|
23
23
|
status: import("@angular/core").Signal<AXUploadStatus>;
|
|
24
|
+
private readonly _message;
|
|
25
|
+
message: import("@angular/core").Signal<string>;
|
|
24
26
|
private startTime;
|
|
25
27
|
private bytesTransferred;
|
|
26
28
|
onStart: (file: AXUploadRequest) => void;
|
|
27
29
|
onCancel: (file: AXUploadRequest) => void;
|
|
30
|
+
onFailed: (file: AXUploadRequest) => void;
|
|
28
31
|
onComplete: (file: AXUploadRequest) => void;
|
|
29
32
|
constructor(uploadFile: File);
|
|
30
33
|
private estimateTimeRemaining;
|
|
@@ -32,5 +35,6 @@ export declare class AXUploadRequest {
|
|
|
32
35
|
private updateEstimateTime;
|
|
33
36
|
upload(): Promise<void>;
|
|
34
37
|
cancel(): void;
|
|
38
|
+
error(message: string): void;
|
|
35
39
|
finish(data?: any): void;
|
|
36
40
|
}
|
|
@@ -2,10 +2,26 @@ import { AXWysiwyg } from '@acorex/cdk/wysiwyg';
|
|
|
2
2
|
import { MXBaseComponent } from '@acorex/components/common';
|
|
3
3
|
import { AXWysiwygService } from '../wysiwyg.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* A container component for WYSIWYG (What You See Is What You Get) editor functionality.
|
|
7
|
+
* @category Components
|
|
8
|
+
*/
|
|
5
9
|
export declare class AXWysiwygContainerComponent extends MXBaseComponent {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
10
|
+
/**
|
|
11
|
+
* @ignore
|
|
12
|
+
*/
|
|
13
|
+
protected wysiwyg: import("@angular/core").WritableSignal<AXWysiwyg>;
|
|
14
|
+
/**
|
|
15
|
+
* @ignore
|
|
16
|
+
*/
|
|
17
|
+
protected view: import("@angular/core").WritableSignal<HTMLElement>;
|
|
18
|
+
/**
|
|
19
|
+
* @ignore
|
|
20
|
+
*/
|
|
21
|
+
protected service: AXWysiwygService;
|
|
22
|
+
/**
|
|
23
|
+
* @ignore
|
|
24
|
+
*/
|
|
9
25
|
constructor();
|
|
10
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXWysiwygContainerComponent, never>;
|
|
11
27
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXWysiwygContainerComponent, "ax-wysiwyg-container", never, {}, {}, never, ["*"], false, never>;
|