@acorex/components 6.0.2 → 6.0.5
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/README.md +24 -24
- package/alert/src/alert.component.d.ts +2 -3
- package/badge/src/badge.component.d.ts +1 -2
- package/breadcrumbs/src/breadcrumbs-item.component.d.ts +4 -6
- package/button/src/button-group.component.d.ts +4 -6
- package/button/src/button-item.component.d.ts +4 -6
- package/calendar/src/calendar.component.d.ts +1 -0
- package/color-picker/src/color-picker.component.d.ts +14 -21
- package/common/src/styles.class.d.ts +2 -2
- package/context-menu/index.d.ts +5 -0
- package/context-menu/public-api.d.ts +2 -0
- package/context-menu/src/context-menu.component.d.ts +34 -0
- package/context-menu/src/context-menu.module.d.ts +13 -0
- package/date-picker/src/datepicker.component.d.ts +11 -14
- package/decorators/public-api.d.ts +0 -1
- package/decorators/src/decorators.module.d.ts +5 -6
- package/decorators/src/header.component.d.ts +1 -1
- package/esm2020/alert/src/alert.component.mjs +5 -4
- package/esm2020/button/src/button.component.mjs +1 -1
- package/esm2020/calendar/src/calendar.component.mjs +33 -5
- package/esm2020/checkbox/src/checkbox.component.mjs +3 -3
- package/esm2020/common/src/styles.class.mjs +13 -2
- package/esm2020/context-menu/acorex-components-context-menu.mjs +5 -0
- package/esm2020/context-menu/public-api.mjs +3 -0
- package/esm2020/context-menu/src/context-menu.component.mjs +257 -0
- package/esm2020/context-menu/src/context-menu.module.mjs +36 -0
- package/esm2020/decorators/public-api.mjs +1 -2
- package/esm2020/decorators/src/decorators.module.mjs +1 -5
- package/esm2020/decorators/src/header.component.mjs +3 -3
- package/esm2020/form/public-api.mjs +2 -2
- package/esm2020/form/src/form.component.mjs +69 -8
- package/esm2020/form/src/form.module.mjs +68 -0
- package/esm2020/menu/src/menu.component.mjs +261 -117
- package/esm2020/menu/src/menu.module.mjs +16 -8
- package/esm2020/mixin/src/base-components.class.mjs +1 -3
- package/esm2020/mixin/src/base-menu-mixin.class.mjs +11 -11
- package/esm2020/mixin/src/mixin.class.mjs +14 -14
- package/esm2020/mixin/src/selection-component.class.mjs +2 -4
- package/esm2020/mixin/src/textbox-mixin.class.mjs +1 -1
- package/esm2020/mixin/src/value-mixin.class.mjs +6 -6
- package/esm2020/number-box/src/number-box.component.mjs +14 -4
- package/esm2020/public-api.mjs +1 -1
- package/esm2020/radio/src/radio.component.mjs +3 -3
- package/esm2020/result/src/result.component.mjs +3 -3
- package/esm2020/search-box/src/search-box.component.mjs +3 -3
- package/esm2020/selection-list/src/selection-list.component.mjs +3 -3
- package/esm2020/tabs/src/tabs.class.mjs +1 -1
- package/esm2020/tabs/src/tabs.component.mjs +35 -16
- package/esm2020/toast/src/toast.component.mjs +4 -4
- package/esm2020/toast/src/toast.service.mjs +10 -1
- package/fesm2015/acorex-components-alert.mjs +4 -3
- package/fesm2015/acorex-components-alert.mjs.map +1 -1
- package/fesm2015/acorex-components-button.mjs.map +1 -1
- package/fesm2015/acorex-components-calendar.mjs +30 -2
- package/fesm2015/acorex-components-calendar.mjs.map +1 -1
- package/fesm2015/acorex-components-checkbox.mjs +2 -2
- package/fesm2015/acorex-components-checkbox.mjs.map +1 -1
- package/fesm2015/acorex-components-common.mjs +13 -2
- package/fesm2015/acorex-components-common.mjs.map +1 -1
- package/fesm2015/acorex-components-context-menu.mjs +297 -0
- package/fesm2015/acorex-components-context-menu.mjs.map +1 -0
- package/fesm2015/acorex-components-decorators.mjs +4 -25
- package/fesm2015/acorex-components-decorators.mjs.map +1 -1
- package/fesm2015/acorex-components-form.mjs +76 -14
- package/fesm2015/acorex-components-form.mjs.map +1 -1
- package/fesm2015/acorex-components-menu.mjs +276 -124
- package/fesm2015/acorex-components-menu.mjs.map +1 -1
- package/fesm2015/acorex-components-mixin.mjs +17 -21
- package/fesm2015/acorex-components-mixin.mjs.map +1 -1
- package/fesm2015/acorex-components-number-box.mjs +13 -3
- package/fesm2015/acorex-components-number-box.mjs.map +1 -1
- package/fesm2015/acorex-components-radio.mjs +2 -2
- package/fesm2015/acorex-components-radio.mjs.map +1 -1
- package/fesm2015/acorex-components-result.mjs +2 -2
- package/fesm2015/acorex-components-result.mjs.map +1 -1
- package/fesm2015/acorex-components-search-box.mjs +2 -2
- package/fesm2015/acorex-components-search-box.mjs.map +1 -1
- package/fesm2015/acorex-components-selection-list.mjs +2 -2
- package/fesm2015/acorex-components-selection-list.mjs.map +1 -1
- package/fesm2015/acorex-components-tabs.mjs +35 -16
- package/fesm2015/acorex-components-tabs.mjs.map +1 -1
- package/fesm2015/acorex-components-toast.mjs +12 -3
- package/fesm2015/acorex-components-toast.mjs.map +1 -1
- package/fesm2015/acorex-components.mjs.map +1 -1
- package/fesm2020/acorex-components-alert.mjs +4 -3
- package/fesm2020/acorex-components-alert.mjs.map +1 -1
- package/fesm2020/acorex-components-button.mjs.map +1 -1
- package/fesm2020/acorex-components-calendar.mjs +30 -2
- package/fesm2020/acorex-components-calendar.mjs.map +1 -1
- package/fesm2020/acorex-components-checkbox.mjs +2 -2
- package/fesm2020/acorex-components-checkbox.mjs.map +1 -1
- package/fesm2020/acorex-components-common.mjs +13 -2
- package/fesm2020/acorex-components-common.mjs.map +1 -1
- package/fesm2020/acorex-components-context-menu.mjs +297 -0
- package/fesm2020/acorex-components-context-menu.mjs.map +1 -0
- package/fesm2020/acorex-components-decorators.mjs +4 -25
- package/fesm2020/acorex-components-decorators.mjs.map +1 -1
- package/fesm2020/acorex-components-form.mjs +75 -14
- package/fesm2020/acorex-components-form.mjs.map +1 -1
- package/fesm2020/acorex-components-menu.mjs +273 -120
- package/fesm2020/acorex-components-menu.mjs.map +1 -1
- package/fesm2020/acorex-components-mixin.mjs +17 -20
- package/fesm2020/acorex-components-mixin.mjs.map +1 -1
- package/fesm2020/acorex-components-number-box.mjs +13 -3
- package/fesm2020/acorex-components-number-box.mjs.map +1 -1
- package/fesm2020/acorex-components-radio.mjs +2 -2
- package/fesm2020/acorex-components-radio.mjs.map +1 -1
- package/fesm2020/acorex-components-result.mjs +2 -2
- package/fesm2020/acorex-components-result.mjs.map +1 -1
- package/fesm2020/acorex-components-search-box.mjs +2 -2
- package/fesm2020/acorex-components-search-box.mjs.map +1 -1
- package/fesm2020/acorex-components-selection-list.mjs +2 -2
- package/fesm2020/acorex-components-selection-list.mjs.map +1 -1
- package/fesm2020/acorex-components-tabs.mjs +34 -15
- package/fesm2020/acorex-components-tabs.mjs.map +1 -1
- package/fesm2020/acorex-components-toast.mjs +12 -3
- package/fesm2020/acorex-components-toast.mjs.map +1 -1
- package/fesm2020/acorex-components.mjs.map +1 -1
- package/form/public-api.d.ts +1 -1
- package/form/src/form.component.d.ts +18 -2
- package/form/src/{form-field.module.d.ts → form.module.d.ts} +0 -0
- package/menu/src/menu.component.d.ts +21 -36
- package/menu/src/menu.module.d.ts +2 -2
- package/mixin/src/base-components.class.d.ts +1 -3
- package/mixin/src/base-menu-mixin.class.d.ts +8 -9
- package/mixin/src/button-mixin.class.d.ts +1 -2
- package/mixin/src/clickable-mixin.class.d.ts +1 -2
- package/mixin/src/color-look-mixing.class.d.ts +1 -2
- package/mixin/src/datalist-component.class.d.ts +9 -10
- package/mixin/src/dropdown-mixin.class.d.ts +1 -2
- package/mixin/src/interactive-mixin.class.d.ts +6 -5
- package/mixin/src/loading-mixin.class.d.ts +1 -2
- package/mixin/src/mixin.class.d.ts +47 -100
- package/mixin/src/page-component.class.d.ts +1 -2
- package/mixin/src/selection-component.class.d.ts +1 -2
- package/mixin/src/sizable-mixin.class.d.ts +1 -2
- package/mixin/src/textbox-mixin.class.d.ts +7 -8
- package/mixin/src/value-mixin.class.d.ts +7 -8
- package/package.json +9 -1
- package/tabs/src/tab-item.component.d.ts +1 -2
- package/tabs/src/tabs.class.d.ts +1 -0
- package/tabs/src/tabs.component.d.ts +9 -4
- package/toast/src/toast.service.d.ts +1 -0
- package/decorators/src/addon.component.d.ts +0 -8
- package/esm2020/decorators/src/addon.component.mjs +0 -21
- package/esm2020/form/src/form-field.module.mjs +0 -68
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { AXBaseComponent } from
|
|
1
|
+
import { AXBaseComponent } from "./base-components.class";
|
|
2
2
|
export declare const AXBaseComponentMixin: {
|
|
3
3
|
new (...args: any[]): {
|
|
4
4
|
id: string;
|
|
5
5
|
rtl: boolean;
|
|
6
|
-
"__#
|
|
6
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
7
7
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
8
8
|
_isInited: boolean;
|
|
9
9
|
_isRendered: boolean;
|
|
@@ -16,7 +16,6 @@ export declare const AXBaseComponentMixin: {
|
|
|
16
16
|
_onInternalViewInit(): void;
|
|
17
17
|
_onInternalDestroy(): void;
|
|
18
18
|
onInit(): void;
|
|
19
|
-
onRenderCssClass(): void;
|
|
20
19
|
onViewInit(): void;
|
|
21
20
|
onDestroy(): void;
|
|
22
21
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -30,7 +29,7 @@ export declare const AXSizableComponentMixin: {
|
|
|
30
29
|
_onInternalInit(): void;
|
|
31
30
|
id: string;
|
|
32
31
|
rtl: boolean;
|
|
33
|
-
"__#
|
|
32
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
34
33
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
35
34
|
_isInited: boolean;
|
|
36
35
|
_isRendered: boolean;
|
|
@@ -42,7 +41,6 @@ export declare const AXSizableComponentMixin: {
|
|
|
42
41
|
_onInternalViewInit(): void;
|
|
43
42
|
_onInternalDestroy(): void;
|
|
44
43
|
onInit(): void;
|
|
45
|
-
onRenderCssClass(): void;
|
|
46
44
|
onViewInit(): void;
|
|
47
45
|
onDestroy(): void;
|
|
48
46
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -53,7 +51,7 @@ export declare const AXSizableComponentMixin: {
|
|
|
53
51
|
new (...args: any[]): {
|
|
54
52
|
id: string;
|
|
55
53
|
rtl: boolean;
|
|
56
|
-
"__#
|
|
54
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
57
55
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
58
56
|
_isInited: boolean;
|
|
59
57
|
_isRendered: boolean;
|
|
@@ -66,7 +64,6 @@ export declare const AXSizableComponentMixin: {
|
|
|
66
64
|
_onInternalViewInit(): void;
|
|
67
65
|
_onInternalDestroy(): void;
|
|
68
66
|
onInit(): void;
|
|
69
|
-
onRenderCssClass(): void;
|
|
70
67
|
onViewInit(): void;
|
|
71
68
|
onDestroy(): void;
|
|
72
69
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -80,7 +77,7 @@ export declare const AXInteractiveComponenetMixin: {
|
|
|
80
77
|
_onInternalInit(): void;
|
|
81
78
|
id: string;
|
|
82
79
|
rtl: boolean;
|
|
83
|
-
"__#
|
|
80
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
84
81
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
85
82
|
_isInited: boolean;
|
|
86
83
|
_isRendered: boolean;
|
|
@@ -92,7 +89,6 @@ export declare const AXInteractiveComponenetMixin: {
|
|
|
92
89
|
_onInternalViewInit(): void;
|
|
93
90
|
_onInternalDestroy(): void;
|
|
94
91
|
onInit(): void;
|
|
95
|
-
onRenderCssClass(): void;
|
|
96
92
|
onViewInit(): void;
|
|
97
93
|
onDestroy(): void;
|
|
98
94
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -100,9 +96,9 @@ export declare const AXInteractiveComponenetMixin: {
|
|
|
100
96
|
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
101
97
|
};
|
|
102
98
|
} & (abstract new (...args: any[]) => {
|
|
103
|
-
"__#
|
|
99
|
+
"__#32628@#disabled": boolean;
|
|
104
100
|
disabled: boolean;
|
|
105
|
-
"__#
|
|
101
|
+
"__#32628@#tabIndex": number;
|
|
106
102
|
tabIndex: number;
|
|
107
103
|
onFocus: import("@angular/core").EventEmitter<import("@acorex/components/common").AXFocusEvent>;
|
|
108
104
|
_emitOnFocusEvent(e: FocusEvent): void;
|
|
@@ -112,7 +108,7 @@ export declare const AXInteractiveComponenetMixin: {
|
|
|
112
108
|
hasFocus(): boolean;
|
|
113
109
|
id: string;
|
|
114
110
|
rtl: boolean;
|
|
115
|
-
"__#
|
|
111
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
116
112
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
117
113
|
_isInited: boolean;
|
|
118
114
|
_isRendered: boolean;
|
|
@@ -125,7 +121,6 @@ export declare const AXInteractiveComponenetMixin: {
|
|
|
125
121
|
_onInternalViewInit(): void;
|
|
126
122
|
_onInternalDestroy(): void;
|
|
127
123
|
onInit(): void;
|
|
128
|
-
onRenderCssClass(): void;
|
|
129
124
|
onViewInit(): void;
|
|
130
125
|
onDestroy(): void;
|
|
131
126
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -133,9 +128,9 @@ export declare const AXInteractiveComponenetMixin: {
|
|
|
133
128
|
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
134
129
|
}) & typeof AXBaseComponent;
|
|
135
130
|
export declare const AXBaseClickableMixin: (abstract new (...args: any[]) => {
|
|
136
|
-
"__#
|
|
131
|
+
"__#32628@#disabled": boolean;
|
|
137
132
|
disabled: boolean;
|
|
138
|
-
"__#
|
|
133
|
+
"__#32628@#tabIndex": number;
|
|
139
134
|
tabIndex: number;
|
|
140
135
|
onFocus: import("@angular/core").EventEmitter<import("@acorex/components/common").AXFocusEvent>;
|
|
141
136
|
_emitOnFocusEvent(e: FocusEvent): void;
|
|
@@ -145,7 +140,7 @@ export declare const AXBaseClickableMixin: (abstract new (...args: any[]) => {
|
|
|
145
140
|
hasFocus(): boolean;
|
|
146
141
|
id: string;
|
|
147
142
|
rtl: boolean;
|
|
148
|
-
"__#
|
|
143
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
149
144
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
150
145
|
_isInited: boolean;
|
|
151
146
|
_isRendered: boolean;
|
|
@@ -158,7 +153,6 @@ export declare const AXBaseClickableMixin: (abstract new (...args: any[]) => {
|
|
|
158
153
|
_onInternalViewInit(): void;
|
|
159
154
|
_onInternalDestroy(): void;
|
|
160
155
|
onInit(): void;
|
|
161
|
-
onRenderCssClass(): void;
|
|
162
156
|
onViewInit(): void;
|
|
163
157
|
onDestroy(): void;
|
|
164
158
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -170,7 +164,7 @@ export declare const AXBaseClickableMixin: (abstract new (...args: any[]) => {
|
|
|
170
164
|
_emitOnClickEvent(e: MouseEvent): void;
|
|
171
165
|
id: string;
|
|
172
166
|
rtl: boolean;
|
|
173
|
-
"__#
|
|
167
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
174
168
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
175
169
|
_isInited: boolean;
|
|
176
170
|
_isRendered: boolean;
|
|
@@ -183,7 +177,6 @@ export declare const AXBaseClickableMixin: (abstract new (...args: any[]) => {
|
|
|
183
177
|
_onInternalViewInit(): void;
|
|
184
178
|
_onInternalDestroy(): void;
|
|
185
179
|
onInit(): void;
|
|
186
|
-
onRenderCssClass(): void;
|
|
187
180
|
onViewInit(): void;
|
|
188
181
|
onDestroy(): void;
|
|
189
182
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -197,7 +190,7 @@ export declare const AXBaseButtonMixin: {
|
|
|
197
190
|
_onInternalInit(): void;
|
|
198
191
|
id: string;
|
|
199
192
|
rtl: boolean;
|
|
200
|
-
"__#
|
|
193
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
201
194
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
202
195
|
_isInited: boolean;
|
|
203
196
|
_isRendered: boolean;
|
|
@@ -209,7 +202,6 @@ export declare const AXBaseButtonMixin: {
|
|
|
209
202
|
_onInternalViewInit(): void;
|
|
210
203
|
_onInternalDestroy(): void;
|
|
211
204
|
onInit(): void;
|
|
212
|
-
onRenderCssClass(): void;
|
|
213
205
|
onViewInit(): void;
|
|
214
206
|
onDestroy(): void;
|
|
215
207
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -217,9 +209,9 @@ export declare const AXBaseButtonMixin: {
|
|
|
217
209
|
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
218
210
|
};
|
|
219
211
|
} & (abstract new (...args: any[]) => {
|
|
220
|
-
"__#
|
|
212
|
+
"__#32628@#disabled": boolean;
|
|
221
213
|
disabled: boolean;
|
|
222
|
-
"__#
|
|
214
|
+
"__#32628@#tabIndex": number;
|
|
223
215
|
tabIndex: number;
|
|
224
216
|
onFocus: import("@angular/core").EventEmitter<import("@acorex/components/common").AXFocusEvent>;
|
|
225
217
|
_emitOnFocusEvent(e: FocusEvent): void;
|
|
@@ -229,7 +221,7 @@ export declare const AXBaseButtonMixin: {
|
|
|
229
221
|
hasFocus(): boolean;
|
|
230
222
|
id: string;
|
|
231
223
|
rtl: boolean;
|
|
232
|
-
"__#
|
|
224
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
233
225
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
234
226
|
_isInited: boolean;
|
|
235
227
|
_isRendered: boolean;
|
|
@@ -242,7 +234,6 @@ export declare const AXBaseButtonMixin: {
|
|
|
242
234
|
_onInternalViewInit(): void;
|
|
243
235
|
_onInternalDestroy(): void;
|
|
244
236
|
onInit(): void;
|
|
245
|
-
onRenderCssClass(): void;
|
|
246
237
|
onViewInit(): void;
|
|
247
238
|
onDestroy(): void;
|
|
248
239
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -254,7 +245,7 @@ export declare const AXBaseButtonMixin: {
|
|
|
254
245
|
_emitOnClickEvent(e: MouseEvent): void;
|
|
255
246
|
id: string;
|
|
256
247
|
rtl: boolean;
|
|
257
|
-
"__#
|
|
248
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
258
249
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
259
250
|
_isInited: boolean;
|
|
260
251
|
_isRendered: boolean;
|
|
@@ -267,7 +258,6 @@ export declare const AXBaseButtonMixin: {
|
|
|
267
258
|
_onInternalViewInit(): void;
|
|
268
259
|
_onInternalDestroy(): void;
|
|
269
260
|
onInit(): void;
|
|
270
|
-
onRenderCssClass(): void;
|
|
271
261
|
onViewInit(): void;
|
|
272
262
|
onDestroy(): void;
|
|
273
263
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -284,7 +274,7 @@ export declare const AXBaseButtonMixin: {
|
|
|
284
274
|
look: import("@acorex/components/common").AXStyleLookType;
|
|
285
275
|
id: string;
|
|
286
276
|
rtl: boolean;
|
|
287
|
-
"__#
|
|
277
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
288
278
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
289
279
|
_isInited: boolean;
|
|
290
280
|
_isRendered: boolean;
|
|
@@ -297,7 +287,6 @@ export declare const AXBaseButtonMixin: {
|
|
|
297
287
|
_onInternalViewInit(): void;
|
|
298
288
|
_onInternalDestroy(): void;
|
|
299
289
|
onInit(): void;
|
|
300
|
-
onRenderCssClass(): void;
|
|
301
290
|
onViewInit(): void;
|
|
302
291
|
onDestroy(): void;
|
|
303
292
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -321,7 +310,7 @@ export declare const AXBaseButtonMixin: {
|
|
|
321
310
|
};
|
|
322
311
|
id: string;
|
|
323
312
|
rtl: boolean;
|
|
324
|
-
"__#
|
|
313
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
325
314
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
326
315
|
_isInited: boolean;
|
|
327
316
|
_isRendered: boolean;
|
|
@@ -334,7 +323,6 @@ export declare const AXBaseButtonMixin: {
|
|
|
334
323
|
_onInternalViewInit(): void;
|
|
335
324
|
_onInternalDestroy(): void;
|
|
336
325
|
onInit(): void;
|
|
337
|
-
onRenderCssClass(): void;
|
|
338
326
|
onViewInit(): void;
|
|
339
327
|
onDestroy(): void;
|
|
340
328
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -349,7 +337,7 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
349
337
|
_onInternalInit(): void;
|
|
350
338
|
id: string;
|
|
351
339
|
rtl: boolean;
|
|
352
|
-
"__#
|
|
340
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
353
341
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
354
342
|
_isInited: boolean;
|
|
355
343
|
_isRendered: boolean;
|
|
@@ -361,7 +349,6 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
361
349
|
_onInternalViewInit(): void;
|
|
362
350
|
_onInternalDestroy(): void;
|
|
363
351
|
onInit(): void;
|
|
364
|
-
onRenderCssClass(): void;
|
|
365
352
|
onViewInit(): void;
|
|
366
353
|
onDestroy(): void;
|
|
367
354
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -369,9 +356,9 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
369
356
|
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
370
357
|
};
|
|
371
358
|
} & (abstract new (...args: any[]) => {
|
|
372
|
-
"__#
|
|
359
|
+
"__#32628@#disabled": boolean;
|
|
373
360
|
disabled: boolean;
|
|
374
|
-
"__#
|
|
361
|
+
"__#32628@#tabIndex": number;
|
|
375
362
|
tabIndex: number;
|
|
376
363
|
onFocus: import("@angular/core").EventEmitter<import("@acorex/components/common").AXFocusEvent>;
|
|
377
364
|
_emitOnFocusEvent(e: FocusEvent): void;
|
|
@@ -381,7 +368,7 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
381
368
|
hasFocus(): boolean;
|
|
382
369
|
id: string;
|
|
383
370
|
rtl: boolean;
|
|
384
|
-
"__#
|
|
371
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
385
372
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
386
373
|
_isInited: boolean;
|
|
387
374
|
_isRendered: boolean;
|
|
@@ -394,7 +381,6 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
394
381
|
_onInternalViewInit(): void;
|
|
395
382
|
_onInternalDestroy(): void;
|
|
396
383
|
onInit(): void;
|
|
397
|
-
onRenderCssClass(): void;
|
|
398
384
|
onViewInit(): void;
|
|
399
385
|
onDestroy(): void;
|
|
400
386
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -404,17 +390,17 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
404
390
|
new (...args: any[]): {
|
|
405
391
|
onValueChanged: import("@angular/core").EventEmitter<import("@acorex/components/common").AXValueChangedEvent<any>>;
|
|
406
392
|
valueChange: import("@angular/core").EventEmitter<any>;
|
|
407
|
-
"__#
|
|
393
|
+
"__#32630@#readonly": boolean;
|
|
408
394
|
readonly: boolean;
|
|
409
|
-
"__#
|
|
395
|
+
"__#32630@#allowNull": boolean;
|
|
410
396
|
allowNull: boolean;
|
|
411
|
-
"__#
|
|
397
|
+
"__#32630@#name": string;
|
|
412
398
|
name: string;
|
|
413
|
-
"__#
|
|
399
|
+
"__#32630@#isUserInteraction": boolean;
|
|
414
400
|
readonly isUserInteraction: boolean;
|
|
415
|
-
"__#
|
|
401
|
+
"__#32630@#value": any;
|
|
416
402
|
value: any;
|
|
417
|
-
"__#
|
|
403
|
+
"__#32630@#state": "error" | "clear" | "success";
|
|
418
404
|
readonly state: "error" | "clear" | "success";
|
|
419
405
|
_emitOnValueChangedEvent(oldValue?: any, newValue?: any): void;
|
|
420
406
|
_internalSetValue(value: any): any;
|
|
@@ -430,7 +416,7 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
430
416
|
_setState(state: "error" | "clear" | "success", ...args: any[]): void;
|
|
431
417
|
id: string;
|
|
432
418
|
rtl: boolean;
|
|
433
|
-
"__#
|
|
419
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
434
420
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
435
421
|
_isInited: boolean;
|
|
436
422
|
_isRendered: boolean;
|
|
@@ -441,7 +427,6 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
441
427
|
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
442
428
|
_onInternalViewInit(): void;
|
|
443
429
|
onInit(): void;
|
|
444
|
-
onRenderCssClass(): void;
|
|
445
430
|
onViewInit(): void;
|
|
446
431
|
onDestroy(): void;
|
|
447
432
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -455,8 +440,8 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
455
440
|
maxLength: number;
|
|
456
441
|
autoComplete: string;
|
|
457
442
|
debounceTime: number;
|
|
458
|
-
"__#
|
|
459
|
-
"__#
|
|
443
|
+
"__#32629@#valueSubscription": import("rxjs").Subscription;
|
|
444
|
+
"__#32629@#valueSubject": import("rxjs").Subject<unknown>;
|
|
460
445
|
onKeyDown: import("@angular/core").EventEmitter<import("@acorex/components/common").AXHtmlEvent<KeyboardEvent>>;
|
|
461
446
|
onKeyUp: import("@angular/core").EventEmitter<import("@acorex/components/common").AXHtmlEvent<KeyboardEvent>>;
|
|
462
447
|
onKeyPress: import("@angular/core").EventEmitter<import("@acorex/components/common").AXHtmlEvent<KeyboardEvent>>;
|
|
@@ -469,7 +454,7 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
469
454
|
onDestroy(): void;
|
|
470
455
|
id: string;
|
|
471
456
|
rtl: boolean;
|
|
472
|
-
"__#
|
|
457
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
473
458
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
474
459
|
_isInited: boolean;
|
|
475
460
|
_isRendered: boolean;
|
|
@@ -481,7 +466,6 @@ export declare const AXBaseTextBoxMixin: {
|
|
|
481
466
|
_onInternalInit(): void;
|
|
482
467
|
_onInternalViewInit(): void;
|
|
483
468
|
_onInternalDestroy(): void;
|
|
484
|
-
onRenderCssClass(): void;
|
|
485
469
|
onViewInit(): void;
|
|
486
470
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
487
471
|
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
@@ -497,7 +481,7 @@ export declare const AXBaseDropdownMixin: {
|
|
|
497
481
|
_onInternalInit(): void;
|
|
498
482
|
id: string;
|
|
499
483
|
rtl: boolean;
|
|
500
|
-
"__#
|
|
484
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
501
485
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
502
486
|
_isInited: boolean;
|
|
503
487
|
_isRendered: boolean;
|
|
@@ -509,7 +493,6 @@ export declare const AXBaseDropdownMixin: {
|
|
|
509
493
|
_onInternalViewInit(): void;
|
|
510
494
|
_onInternalDestroy(): void;
|
|
511
495
|
onInit(): void;
|
|
512
|
-
onRenderCssClass(): void;
|
|
513
496
|
onViewInit(): void;
|
|
514
497
|
onDestroy(): void;
|
|
515
498
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -517,9 +500,9 @@ export declare const AXBaseDropdownMixin: {
|
|
|
517
500
|
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
518
501
|
};
|
|
519
502
|
} & (abstract new (...args: any[]) => {
|
|
520
|
-
"__#
|
|
503
|
+
"__#32628@#disabled": boolean;
|
|
521
504
|
disabled: boolean;
|
|
522
|
-
"__#
|
|
505
|
+
"__#32628@#tabIndex": number;
|
|
523
506
|
tabIndex: number;
|
|
524
507
|
onFocus: import("@angular/core").EventEmitter<import("@acorex/components/common").AXFocusEvent>;
|
|
525
508
|
_emitOnFocusEvent(e: FocusEvent): void;
|
|
@@ -529,7 +512,7 @@ export declare const AXBaseDropdownMixin: {
|
|
|
529
512
|
hasFocus(): boolean;
|
|
530
513
|
id: string;
|
|
531
514
|
rtl: boolean;
|
|
532
|
-
"__#
|
|
515
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
533
516
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
534
517
|
_isInited: boolean;
|
|
535
518
|
_isRendered: boolean;
|
|
@@ -542,7 +525,6 @@ export declare const AXBaseDropdownMixin: {
|
|
|
542
525
|
_onInternalViewInit(): void;
|
|
543
526
|
_onInternalDestroy(): void;
|
|
544
527
|
onInit(): void;
|
|
545
|
-
onRenderCssClass(): void;
|
|
546
528
|
onViewInit(): void;
|
|
547
529
|
onDestroy(): void;
|
|
548
530
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -564,7 +546,7 @@ export declare const AXBaseDropdownMixin: {
|
|
|
564
546
|
readonly isOpen: boolean;
|
|
565
547
|
id: string;
|
|
566
548
|
rtl: boolean;
|
|
567
|
-
"__#
|
|
549
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
568
550
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
569
551
|
_isInited: boolean;
|
|
570
552
|
_isRendered: boolean;
|
|
@@ -576,59 +558,26 @@ export declare const AXBaseDropdownMixin: {
|
|
|
576
558
|
_onInternalInit(): void;
|
|
577
559
|
_onInternalViewInit(): void;
|
|
578
560
|
_onInternalDestroy(): void;
|
|
579
|
-
onRenderCssClass(): void;
|
|
580
561
|
onDestroy(): void;
|
|
581
562
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
582
563
|
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
583
564
|
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
584
565
|
}) & typeof AXBaseComponent;
|
|
585
|
-
export declare const AXBaseMenuMixin:
|
|
586
|
-
"__#32616@#disabled": boolean;
|
|
587
|
-
disabled: boolean;
|
|
588
|
-
"__#32616@#tabIndex": number;
|
|
589
|
-
tabIndex: number;
|
|
590
|
-
onFocus: import("@angular/core").EventEmitter<import("@acorex/components/common").AXFocusEvent>;
|
|
591
|
-
_emitOnFocusEvent(e: FocusEvent): void;
|
|
592
|
-
onBlur: import("@angular/core").EventEmitter<import("@acorex/components/common").AXFocusEvent>;
|
|
593
|
-
_emitOnBlurEvent(e: FocusEvent): void;
|
|
594
|
-
focus(): void;
|
|
595
|
-
hasFocus(): boolean;
|
|
596
|
-
id: string;
|
|
597
|
-
rtl: boolean;
|
|
598
|
-
"__#32613@#elementRef": import("@angular/core").ElementRef<any>;
|
|
599
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
600
|
-
_isInited: boolean;
|
|
601
|
-
_isRendered: boolean;
|
|
602
|
-
ngOnInit(): void;
|
|
603
|
-
ngAfterViewInit(): void;
|
|
604
|
-
ngOnDestroy(): void;
|
|
605
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
606
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
607
|
-
_onInternalInit(): void;
|
|
608
|
-
_onInternalViewInit(): void;
|
|
609
|
-
_onInternalDestroy(): void;
|
|
610
|
-
onInit(): void;
|
|
611
|
-
onRenderCssClass(): void;
|
|
612
|
-
onViewInit(): void;
|
|
613
|
-
onDestroy(): void;
|
|
614
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
615
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
616
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
|
617
|
-
}) & {
|
|
566
|
+
export declare const AXBaseMenuMixin: {
|
|
618
567
|
new (...args: any[]): {
|
|
619
568
|
textField: string;
|
|
620
569
|
valueField: string;
|
|
621
|
-
"__#
|
|
622
|
-
"__#
|
|
570
|
+
"__#32626@#isLoading": boolean;
|
|
571
|
+
"__#32626@#loadedItems": any;
|
|
623
572
|
visibleField: string;
|
|
624
573
|
disableField: string;
|
|
625
574
|
hasChildField: string;
|
|
626
575
|
iconField: string;
|
|
627
576
|
openMode: "click" | "hover";
|
|
628
|
-
|
|
577
|
+
orientation: "horizontal" | "vertical" | "sidemenu";
|
|
578
|
+
dividerField: string;
|
|
629
579
|
onMenuItemClick: import("@angular/core").EventEmitter<import("@acorex/components/common").AXItemClickEvent<any>>;
|
|
630
|
-
|
|
631
|
-
"__#32614@#items": any;
|
|
580
|
+
"__#32626@#items": any;
|
|
632
581
|
items: any;
|
|
633
582
|
readonly displayItems: any;
|
|
634
583
|
readonly isLoading: boolean;
|
|
@@ -637,10 +586,10 @@ export declare const AXBaseMenuMixin: (abstract new (...args: any[]) => {
|
|
|
637
586
|
_fetchData(parentId?: number, searchText?: string): Promise<unknown>;
|
|
638
587
|
_onInternalInit(): void;
|
|
639
588
|
_getItemDisplayTextTemplte(item: any): any;
|
|
640
|
-
|
|
589
|
+
refresh(): void;
|
|
641
590
|
id: string;
|
|
642
591
|
rtl: boolean;
|
|
643
|
-
"__#
|
|
592
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
644
593
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
645
594
|
_isInited: boolean;
|
|
646
595
|
_isRendered: boolean;
|
|
@@ -652,7 +601,6 @@ export declare const AXBaseMenuMixin: (abstract new (...args: any[]) => {
|
|
|
652
601
|
_onInternalViewInit(): void;
|
|
653
602
|
_onInternalDestroy(): void;
|
|
654
603
|
onInit(): void;
|
|
655
|
-
onRenderCssClass(): void;
|
|
656
604
|
onViewInit(): void;
|
|
657
605
|
onDestroy(): void;
|
|
658
606
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -670,7 +618,7 @@ export declare const AXAvatarMixin: {
|
|
|
670
618
|
look: import("@acorex/components/common").AXStyleLookType;
|
|
671
619
|
id: string;
|
|
672
620
|
rtl: boolean;
|
|
673
|
-
"__#
|
|
621
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
674
622
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
675
623
|
_isInited: boolean;
|
|
676
624
|
_isRendered: boolean;
|
|
@@ -683,7 +631,6 @@ export declare const AXAvatarMixin: {
|
|
|
683
631
|
_onInternalViewInit(): void;
|
|
684
632
|
_onInternalDestroy(): void;
|
|
685
633
|
onInit(): void;
|
|
686
|
-
onRenderCssClass(): void;
|
|
687
634
|
onViewInit(): void;
|
|
688
635
|
onDestroy(): void;
|
|
689
636
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -4,7 +4,7 @@ export declare function _PageComponenetMixin<TBase extends Constructor<AXBaseCom
|
|
|
4
4
|
new (...args: any[]): {
|
|
5
5
|
id: string;
|
|
6
6
|
rtl: boolean;
|
|
7
|
-
"__#
|
|
7
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
8
8
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
9
9
|
_isInited: boolean;
|
|
10
10
|
_isRendered: boolean;
|
|
@@ -17,7 +17,6 @@ export declare function _PageComponenetMixin<TBase extends Constructor<AXBaseCom
|
|
|
17
17
|
_onInternalViewInit(): void;
|
|
18
18
|
_onInternalDestroy(): void;
|
|
19
19
|
onInit(): void;
|
|
20
|
-
onRenderCssClass(): void;
|
|
21
20
|
onViewInit(): void;
|
|
22
21
|
onDestroy(): void;
|
|
23
22
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -38,7 +38,7 @@ export declare function _SelectionComponenetMixin<TBase extends Constructor<AXBa
|
|
|
38
38
|
* Defines the primary text to show inside the button.
|
|
39
39
|
*/
|
|
40
40
|
rtl: boolean;
|
|
41
|
-
"__#
|
|
41
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
42
42
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
43
43
|
_isInited: boolean;
|
|
44
44
|
_isRendered: boolean;
|
|
@@ -50,7 +50,6 @@ export declare function _SelectionComponenetMixin<TBase extends Constructor<AXBa
|
|
|
50
50
|
_onInternalViewInit(): void;
|
|
51
51
|
_onInternalDestroy(): void;
|
|
52
52
|
onInit(): void;
|
|
53
|
-
onRenderCssClass(): void;
|
|
54
53
|
onViewInit(): void;
|
|
55
54
|
onDestroy(): void;
|
|
56
55
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -9,7 +9,7 @@ export declare function _SizableComponenetMixin<TBase extends Constructor<AXBase
|
|
|
9
9
|
_onInternalInit(): void;
|
|
10
10
|
id: string;
|
|
11
11
|
rtl: boolean;
|
|
12
|
-
"__#
|
|
12
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
13
13
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
14
14
|
_isInited: boolean;
|
|
15
15
|
_isRendered: boolean;
|
|
@@ -21,7 +21,6 @@ export declare function _SizableComponenetMixin<TBase extends Constructor<AXBase
|
|
|
21
21
|
_onInternalViewInit(): void;
|
|
22
22
|
_onInternalDestroy(): void;
|
|
23
23
|
onInit(): void;
|
|
24
|
-
onRenderCssClass(): void;
|
|
25
24
|
onViewInit(): void;
|
|
26
25
|
onDestroy(): void;
|
|
27
26
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
@@ -22,8 +22,8 @@ export declare function _TextboxComponenetMixin<TBase extends Constructor<AXBase
|
|
|
22
22
|
*/
|
|
23
23
|
autoComplete: string;
|
|
24
24
|
debounceTime: number;
|
|
25
|
-
"__#
|
|
26
|
-
"__#
|
|
25
|
+
"__#32629@#valueSubscription": Subscription;
|
|
26
|
+
"__#32629@#valueSubject": Subject<unknown>;
|
|
27
27
|
/**
|
|
28
28
|
* Fires each time the user press a key.
|
|
29
29
|
* @event
|
|
@@ -47,23 +47,22 @@ export declare function _TextboxComponenetMixin<TBase extends Constructor<AXBase
|
|
|
47
47
|
onInit(): void;
|
|
48
48
|
onDestroy(): void;
|
|
49
49
|
id: string;
|
|
50
|
-
/**
|
|
51
|
-
* A number value that specifies the maximum characters of text box.
|
|
52
|
-
*/
|
|
53
50
|
rtl: boolean;
|
|
54
|
-
"__#
|
|
51
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
55
52
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
56
53
|
_isInited: boolean;
|
|
57
54
|
_isRendered: boolean;
|
|
58
55
|
ngOnInit(): void;
|
|
59
|
-
ngAfterViewInit(): void;
|
|
56
|
+
ngAfterViewInit(): void; /**
|
|
57
|
+
* Fires each time the user press a key.
|
|
58
|
+
* @event
|
|
59
|
+
*/
|
|
60
60
|
ngOnDestroy(): void;
|
|
61
61
|
_getHostElement<T = HTMLElement>(): T;
|
|
62
62
|
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
63
63
|
_onInternalInit(): void;
|
|
64
64
|
_onInternalViewInit(): void;
|
|
65
65
|
_onInternalDestroy(): void;
|
|
66
|
-
onRenderCssClass(): void;
|
|
67
66
|
onViewInit(): void;
|
|
68
67
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
|
69
68
|
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
|
@@ -10,20 +10,20 @@ export declare function _ValueComponenetMixin<TBase extends Constructor<AXBaseCo
|
|
|
10
10
|
*/
|
|
11
11
|
onValueChanged: EventEmitter<AXValueChangedEvent<any>>;
|
|
12
12
|
valueChange: EventEmitter<any>;
|
|
13
|
-
"__#
|
|
13
|
+
"__#32630@#readonly": boolean;
|
|
14
14
|
/**
|
|
15
15
|
* If set to true, user cannot change the value of component.
|
|
16
16
|
*/
|
|
17
17
|
readonly: boolean;
|
|
18
|
-
"__#
|
|
18
|
+
"__#32630@#allowNull": boolean;
|
|
19
19
|
allowNull: boolean;
|
|
20
|
-
"__#
|
|
20
|
+
"__#32630@#name": string;
|
|
21
21
|
name: string;
|
|
22
|
-
"__#
|
|
22
|
+
"__#32630@#isUserInteraction": boolean;
|
|
23
23
|
readonly isUserInteraction: boolean;
|
|
24
|
-
"__#
|
|
24
|
+
"__#32630@#value": any;
|
|
25
25
|
value: any;
|
|
26
|
-
"__#
|
|
26
|
+
"__#32630@#state": 'clear' | 'success' | 'error';
|
|
27
27
|
readonly state: "error" | "clear" | "success";
|
|
28
28
|
_emitOnValueChangedEvent(oldValue?: any, newValue?: any): void;
|
|
29
29
|
_internalSetValue(value: any): any;
|
|
@@ -39,7 +39,7 @@ export declare function _ValueComponenetMixin<TBase extends Constructor<AXBaseCo
|
|
|
39
39
|
_setState(state: 'clear' | 'success' | 'error', ...args: any[]): void;
|
|
40
40
|
id: string;
|
|
41
41
|
rtl: boolean;
|
|
42
|
-
"__#
|
|
42
|
+
"__#32625@#elementRef": import("@angular/core").ElementRef<any>;
|
|
43
43
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
44
44
|
_isInited: boolean;
|
|
45
45
|
_isRendered: boolean;
|
|
@@ -50,7 +50,6 @@ export declare function _ValueComponenetMixin<TBase extends Constructor<AXBaseCo
|
|
|
50
50
|
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
51
51
|
_onInternalViewInit(): void;
|
|
52
52
|
onInit(): void;
|
|
53
|
-
onRenderCssClass(): void;
|
|
54
53
|
onViewInit(): void;
|
|
55
54
|
onDestroy(): void;
|
|
56
55
|
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/components",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.5",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^14.0.0",
|
|
6
6
|
"@angular/core": "^14.0.0",
|
|
@@ -152,6 +152,14 @@
|
|
|
152
152
|
"node": "./fesm2015/acorex-components-common.mjs",
|
|
153
153
|
"default": "./fesm2020/acorex-components-common.mjs"
|
|
154
154
|
},
|
|
155
|
+
"./context-menu": {
|
|
156
|
+
"types": "./context-menu/index.d.ts",
|
|
157
|
+
"esm2020": "./esm2020/context-menu/acorex-components-context-menu.mjs",
|
|
158
|
+
"es2020": "./fesm2020/acorex-components-context-menu.mjs",
|
|
159
|
+
"es2015": "./fesm2015/acorex-components-context-menu.mjs",
|
|
160
|
+
"node": "./fesm2015/acorex-components-context-menu.mjs",
|
|
161
|
+
"default": "./fesm2020/acorex-components-context-menu.mjs"
|
|
162
|
+
},
|
|
155
163
|
"./data-pager": {
|
|
156
164
|
"types": "./data-pager/index.d.ts",
|
|
157
165
|
"esm2020": "./esm2020/data-pager/acorex-components-data-pager.mjs",
|