@acorex/components 7.8.0 → 7.8.2
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/esm2022/button/lib/button.component.mjs +2 -2
- package/esm2022/list/lib/list.component.mjs +10 -8
- package/esm2022/otp/lib/otp.component.mjs +2 -2
- package/esm2022/select-box/lib/select-box.component.mjs +7 -6
- package/fesm2022/acorex-components-button.mjs +2 -2
- package/fesm2022/acorex-components-button.mjs.map +1 -1
- package/fesm2022/acorex-components-list.mjs +9 -7
- package/fesm2022/acorex-components-list.mjs.map +1 -1
- package/fesm2022/acorex-components-otp.mjs +2 -2
- package/fesm2022/acorex-components-otp.mjs.map +1 -1
- package/fesm2022/acorex-components-select-box.mjs +6 -5
- package/fesm2022/acorex-components-select-box.mjs.map +1 -1
- package/list/lib/list.component.d.ts +1 -2
- package/package.json +1 -7
- package/select-box/lib/select-box.component.d.ts +0 -1
- package/esm2022/mixin/acorex-components-mixin.mjs +0 -5
- package/esm2022/mixin/index.mjs +0 -17
- package/esm2022/mixin/lib/base-components.class.mjs +0 -110
- package/esm2022/mixin/lib/base-menu-mixin.class.mjs +0 -137
- package/esm2022/mixin/lib/button-mixin.class.mjs +0 -66
- package/esm2022/mixin/lib/clickable-mixin.class.mjs +0 -24
- package/esm2022/mixin/lib/color-look-mixing.class.mjs +0 -43
- package/esm2022/mixin/lib/constratctor.mjs +0 -2
- package/esm2022/mixin/lib/datalist-component.class.mjs +0 -155
- package/esm2022/mixin/lib/datalist.class.mjs +0 -46
- package/esm2022/mixin/lib/dropdown-mixin.class.mjs +0 -95
- package/esm2022/mixin/lib/interactive-mixin.class.mjs +0 -84
- package/esm2022/mixin/lib/mixin.class.mjs +0 -26
- package/esm2022/mixin/lib/page-component.class.mjs +0 -11
- package/esm2022/mixin/lib/selection-component.class.mjs +0 -180
- package/esm2022/mixin/lib/sizable-mixin.class.mjs +0 -16
- package/esm2022/mixin/lib/textbox-mixin.class.mjs +0 -67
- package/esm2022/mixin/lib/value-mixin.class.mjs +0 -227
- package/fesm2022/acorex-components-mixin.mjs +0 -1268
- package/fesm2022/acorex-components-mixin.mjs.map +0 -1
- package/mixin/README.md +0 -3
- package/mixin/index.d.ts +0 -16
- package/mixin/lib/base-components.class.d.ts +0 -84
- package/mixin/lib/base-menu-mixin.class.d.ts +0 -53
- package/mixin/lib/button-mixin.class.d.ts +0 -53
- package/mixin/lib/clickable-mixin.class.d.ts +0 -36
- package/mixin/lib/color-look-mixing.class.d.ts +0 -42
- package/mixin/lib/constratctor.d.ts +0 -4
- package/mixin/lib/datalist-component.class.d.ts +0 -59
- package/mixin/lib/datalist.class.d.ts +0 -49
- package/mixin/lib/dropdown-mixin.class.d.ts +0 -47
- package/mixin/lib/interactive-mixin.class.d.ts +0 -63
- package/mixin/lib/mixin.class.d.ts +0 -680
- package/mixin/lib/page-component.class.d.ts +0 -28
- package/mixin/lib/selection-component.class.d.ts +0 -61
- package/mixin/lib/sizable-mixin.class.d.ts +0 -34
- package/mixin/lib/textbox-mixin.class.d.ts +0 -66
- package/mixin/lib/value-mixin.class.d.ts +0 -64
@@ -1,28 +0,0 @@
|
|
1
|
-
import { AXBaseComponent } from './base-components.class';
|
2
|
-
import { Constructor } from './constratctor';
|
3
|
-
export declare function _PageComponenetMixin<TBase extends Constructor<AXBaseComponent>>(Base: TBase): {
|
4
|
-
new (...args: any[]): {
|
5
|
-
id: string;
|
6
|
-
"__#34571@#rtl": boolean;
|
7
|
-
rtl: boolean;
|
8
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
9
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
10
|
-
_isInited: boolean;
|
11
|
-
_isRendered: boolean;
|
12
|
-
ngOnInit(): void;
|
13
|
-
ngAfterViewInit(): void;
|
14
|
-
ngOnDestroy(): void;
|
15
|
-
_getHostElement<T = HTMLElement>(): T;
|
16
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
17
|
-
_onInternalInit(): void;
|
18
|
-
_onInternalViewInit(): void;
|
19
|
-
_onInternalDestroy(): void;
|
20
|
-
onInit(): void;
|
21
|
-
onViewInit(): void;
|
22
|
-
onDestroy(): void;
|
23
|
-
_applyRtl(): void;
|
24
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
25
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
26
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
27
|
-
};
|
28
|
-
} & TBase;
|
@@ -1,61 +0,0 @@
|
|
1
|
-
import { AXSelectionValueChangedEvent } from '@acorex/components/common';
|
2
|
-
import { EventEmitter } from '@angular/core';
|
3
|
-
import { AXBaseComponent } from './base-components.class';
|
4
|
-
import { Constructor } from './constratctor';
|
5
|
-
export declare function _SelectionComponenetMixin<TBase extends Constructor<AXBaseComponent>>(Base: TBase): {
|
6
|
-
new (...args: any[]): {
|
7
|
-
valueField: string;
|
8
|
-
textField: string;
|
9
|
-
disabledField: string;
|
10
|
-
disabledCallback: (e: {
|
11
|
-
item: any;
|
12
|
-
index: number;
|
13
|
-
}) => boolean;
|
14
|
-
multiple: boolean;
|
15
|
-
selectionMode: 'value' | 'item';
|
16
|
-
/**
|
17
|
-
* Defines the primary text to show inside the button.
|
18
|
-
*/
|
19
|
-
readonly items: any[];
|
20
|
-
readonly displayItems: any[];
|
21
|
-
readonly flatItems: any[];
|
22
|
-
valueChange: EventEmitter<any>;
|
23
|
-
onValueChanged: EventEmitter<AXSelectionValueChangedEvent>;
|
24
|
-
_onInternalInit(): void;
|
25
|
-
_value: any | any[];
|
26
|
-
value: any;
|
27
|
-
_selectedItems: any[];
|
28
|
-
readonly selectedItems: any[];
|
29
|
-
_renderSelection(): void;
|
30
|
-
_getItemByDataMode(item: any): any;
|
31
|
-
_getItemValue(item: any): any;
|
32
|
-
unselectItems(...items: any[]): void;
|
33
|
-
selectItems(...items: any[]): void;
|
34
|
-
toggleSelect(...items: any[]): void;
|
35
|
-
isItemSelected(item: any): boolean;
|
36
|
-
isItemDisabled(item: any): boolean;
|
37
|
-
id: string;
|
38
|
-
"__#34571@#rtl": boolean;
|
39
|
-
rtl: boolean;
|
40
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
41
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
42
|
-
_isInited: boolean;
|
43
|
-
_isRendered: boolean;
|
44
|
-
ngOnInit(): void;
|
45
|
-
ngAfterViewInit(): void;
|
46
|
-
ngOnDestroy(): void;
|
47
|
-
_getHostElement<T = HTMLElement>(): T;
|
48
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
49
|
-
_onInternalViewInit(): void;
|
50
|
-
_onInternalDestroy(): void;
|
51
|
-
onInit(): void;
|
52
|
-
onViewInit(): void;
|
53
|
-
onDestroy(): void;
|
54
|
-
_applyRtl(): void;
|
55
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
56
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
57
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
58
|
-
};
|
59
|
-
} & TBase;
|
60
|
-
export declare const SELECTION_INPUTS: string[];
|
61
|
-
export declare const SELECTION_OUTPUT: string[];
|
@@ -1,34 +0,0 @@
|
|
1
|
-
import { AXBaseComponent, AXElementSize } from './base-components.class';
|
2
|
-
import { Constructor } from './constratctor';
|
3
|
-
export declare function _SizableComponenetMixin<TBase extends Constructor<AXBaseComponent>>(Base: TBase): {
|
4
|
-
new (...args: any[]): {
|
5
|
-
/**
|
6
|
-
* A token that specifies the size of component.
|
7
|
-
*/
|
8
|
-
size: AXElementSize;
|
9
|
-
_onInternalInit(): void;
|
10
|
-
id: string;
|
11
|
-
"__#34571@#rtl": boolean;
|
12
|
-
rtl: boolean;
|
13
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
14
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
15
|
-
_isInited: boolean;
|
16
|
-
_isRendered: boolean;
|
17
|
-
ngOnInit(): void;
|
18
|
-
ngAfterViewInit(): void;
|
19
|
-
ngOnDestroy(): void;
|
20
|
-
_getHostElement<T = HTMLElement>(): T;
|
21
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
22
|
-
_onInternalViewInit(): void;
|
23
|
-
_onInternalDestroy(): void;
|
24
|
-
onInit(): void;
|
25
|
-
onViewInit(): void;
|
26
|
-
onDestroy(): void;
|
27
|
-
_applyRtl(): void;
|
28
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
29
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
30
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
31
|
-
};
|
32
|
-
} & TBase;
|
33
|
-
export declare const SIZABLE_INPUTS: string[];
|
34
|
-
export declare const SIZABLE_OUTPUT: any[];
|
@@ -1,66 +0,0 @@
|
|
1
|
-
import { AXHtmlEvent } from '@acorex/components/common';
|
2
|
-
import { EventEmitter } from '@angular/core';
|
3
|
-
import { AXBaseComponent } from './base-components.class';
|
4
|
-
import { Constructor } from './constratctor';
|
5
|
-
export declare function _TextboxComponenetMixin<TBase extends Constructor<AXBaseComponent>>(Base: TBase): {
|
6
|
-
new (...args: any[]): {
|
7
|
-
/**
|
8
|
-
* A string value that specifies the type of text box.
|
9
|
-
*/
|
10
|
-
type: string;
|
11
|
-
/**
|
12
|
-
* A string value that specifies the placeholder of text box.
|
13
|
-
*/
|
14
|
-
placeholder: string;
|
15
|
-
/**
|
16
|
-
* A number value that specifies the maximum characters of text box.
|
17
|
-
*/
|
18
|
-
maxLength: number;
|
19
|
-
/**
|
20
|
-
* Specifies that autocomplete is on or off.
|
21
|
-
*/
|
22
|
-
autoComplete: string;
|
23
|
-
/**
|
24
|
-
* Fires each time the user press a key.
|
25
|
-
* @event
|
26
|
-
*/
|
27
|
-
onKeyDown: EventEmitter<AXHtmlEvent<KeyboardEvent>>;
|
28
|
-
/**
|
29
|
-
* Fires each time the user press a key.
|
30
|
-
* @event
|
31
|
-
*/
|
32
|
-
onKeyUp: EventEmitter<AXHtmlEvent<KeyboardEvent>>;
|
33
|
-
/**
|
34
|
-
* Fires each time the user press a key.
|
35
|
-
* @event
|
36
|
-
*/
|
37
|
-
onKeyPress: EventEmitter<AXHtmlEvent<KeyboardEvent>>;
|
38
|
-
_emitOnKeydownEvent(e: KeyboardEvent): void;
|
39
|
-
_emitOnKeyupEvent(e: KeyboardEvent): void;
|
40
|
-
_emitOnKeypressEvent(e: KeyboardEvent): void;
|
41
|
-
id: string;
|
42
|
-
"__#34571@#rtl": boolean;
|
43
|
-
rtl: boolean;
|
44
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
45
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
46
|
-
_isInited: boolean;
|
47
|
-
_isRendered: boolean;
|
48
|
-
ngOnInit(): void;
|
49
|
-
ngAfterViewInit(): void;
|
50
|
-
ngOnDestroy(): void;
|
51
|
-
_getHostElement<T = HTMLElement>(): T;
|
52
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
53
|
-
_onInternalInit(): void;
|
54
|
-
_onInternalViewInit(): void;
|
55
|
-
_onInternalDestroy(): void;
|
56
|
-
onInit(): void;
|
57
|
-
onViewInit(): void;
|
58
|
-
onDestroy(): void;
|
59
|
-
_applyRtl(): void;
|
60
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
61
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
62
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
63
|
-
};
|
64
|
-
} & TBase;
|
65
|
-
export declare const TEXTBOX_INPUTS: string[];
|
66
|
-
export declare const TEXTBOX_OUTPUT: string[];
|
@@ -1,64 +0,0 @@
|
|
1
|
-
import { AXValueChangedEvent } from '@acorex/components/common';
|
2
|
-
import { EventEmitter } from '@angular/core';
|
3
|
-
import { AXBaseComponent, AXComponentState } from './base-components.class';
|
4
|
-
import { Constructor } from './constratctor';
|
5
|
-
export declare function _ValueComponenetMixin<TBase extends Constructor<AXBaseComponent>>(Base: TBase): {
|
6
|
-
new (...args: any[]): {
|
7
|
-
/**
|
8
|
-
* Fires each time the user press a key.
|
9
|
-
* @event
|
10
|
-
*/
|
11
|
-
onValueChanged: EventEmitter<AXValueChangedEvent<any>>;
|
12
|
-
valueChange: EventEmitter<any>;
|
13
|
-
stateChange: EventEmitter<AXComponentState>;
|
14
|
-
"__#34575@#readonly": boolean;
|
15
|
-
/**
|
16
|
-
* If set to true, user cannot change the value of component.
|
17
|
-
*/
|
18
|
-
readonly: boolean;
|
19
|
-
"__#34575@#allowNull": boolean;
|
20
|
-
allowNull: boolean;
|
21
|
-
"__#34575@#name": string;
|
22
|
-
name: string;
|
23
|
-
"__#34575@#isUserInteraction": boolean;
|
24
|
-
readonly isUserInteraction: boolean;
|
25
|
-
"__#34575@#value": any;
|
26
|
-
value: any;
|
27
|
-
"__#34575@#state": AXComponentState;
|
28
|
-
state: AXComponentState;
|
29
|
-
_emitOnValueChangedEvent(oldValue?: any, newValue?: any): void;
|
30
|
-
_internalSetValue(value: any): any;
|
31
|
-
_internalGetValue(): any;
|
32
|
-
_setValue(value: any): any;
|
33
|
-
_getValue(value: any): any;
|
34
|
-
_setUserInteraction(): void;
|
35
|
-
setUserInteraction(): void;
|
36
|
-
_onValueChanged(oldValue: any, newValue: any): void;
|
37
|
-
_onInternalInit(): void;
|
38
|
-
_onInternalViewInit(): void;
|
39
|
-
_onInternalDestroy(): void;
|
40
|
-
clear(): void;
|
41
|
-
_checkRequired(): void;
|
42
|
-
validate(): Promise<any>;
|
43
|
-
_setState(state: AXComponentState, ...args: any[]): void;
|
44
|
-
id: string;
|
45
|
-
"__#34571@#rtl": boolean;
|
46
|
-
rtl: boolean;
|
47
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
48
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
49
|
-
_isInited: boolean;
|
50
|
-
_isRendered: boolean;
|
51
|
-
ngOnInit(): void;
|
52
|
-
ngAfterViewInit(): void;
|
53
|
-
ngOnDestroy(): void;
|
54
|
-
_getHostElement<T = HTMLElement>(): T;
|
55
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
56
|
-
onInit(): void;
|
57
|
-
onViewInit(): void;
|
58
|
-
onDestroy(): void;
|
59
|
-
_applyRtl(): void;
|
60
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
61
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
62
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
63
|
-
};
|
64
|
-
} & TBase;
|