@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,47 +0,0 @@
|
|
1
|
-
import { AXConnectedPosition, AXEvent } from '@acorex/components/common';
|
2
|
-
import { EventEmitter } from '@angular/core';
|
3
|
-
import { AXBaseComponent } from './base-components.class';
|
4
|
-
import { Constructor } from './constratctor';
|
5
|
-
export interface DropdownComponentInterface {
|
6
|
-
open(): void;
|
7
|
-
close(): void;
|
8
|
-
toggle(): void;
|
9
|
-
isOpen: boolean;
|
10
|
-
}
|
11
|
-
export declare function _DropdownComponenetMixin<TBase extends Constructor<AXBaseComponent>>(Base: TBase): (abstract new (...args: any[]) => {
|
12
|
-
readonly: boolean;
|
13
|
-
onOpened: EventEmitter<AXEvent>;
|
14
|
-
onClosed: EventEmitter<AXEvent>;
|
15
|
-
popover: any;
|
16
|
-
position: AXConnectedPosition[];
|
17
|
-
_emitOnOpenedEvent(): void;
|
18
|
-
_emitOnClosedEvent(): void;
|
19
|
-
onInit(): void;
|
20
|
-
onViewInit(): void;
|
21
|
-
toggle(): void;
|
22
|
-
close(): void;
|
23
|
-
open(): void;
|
24
|
-
readonly isOpen: boolean;
|
25
|
-
id: string;
|
26
|
-
"__#34571@#rtl": boolean;
|
27
|
-
rtl: boolean;
|
28
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>;
|
29
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
30
|
-
_isInited: boolean;
|
31
|
-
_isRendered: boolean;
|
32
|
-
ngOnInit(): void;
|
33
|
-
ngAfterViewInit(): void;
|
34
|
-
ngOnDestroy(): void;
|
35
|
-
_getHostElement<T = HTMLElement>(): T;
|
36
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
37
|
-
_onInternalInit(): void;
|
38
|
-
_onInternalViewInit(): void;
|
39
|
-
_onInternalDestroy(): void;
|
40
|
-
onDestroy(): void;
|
41
|
-
_applyRtl(): void;
|
42
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
43
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
44
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
45
|
-
}) & TBase;
|
46
|
-
export declare const DROPDOWN_INPUTS: string[];
|
47
|
-
export declare const DROPDOWN_OUTPUT: string[];
|
@@ -1,63 +0,0 @@
|
|
1
|
-
import { AXFocusEvent } 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 _InteractiveComponenetMixin<TBase extends Constructor<AXBaseComponent>>(Base: TBase): (abstract new (...args: any[]) => {
|
6
|
-
"__#34574@#disabled": boolean;
|
7
|
-
/**
|
8
|
-
* If set to true, it disables the component.
|
9
|
-
*/
|
10
|
-
disabled: boolean;
|
11
|
-
"__#34574@#tabIndex": number;
|
12
|
-
/**
|
13
|
-
* Specifies the tabindex of the component.
|
14
|
-
*/
|
15
|
-
tabIndex: number;
|
16
|
-
/**
|
17
|
-
* Fires each time the component gets focused.
|
18
|
-
* @event
|
19
|
-
*/
|
20
|
-
onFocus: EventEmitter<AXFocusEvent>;
|
21
|
-
_emitOnFocusEvent(e: FocusEvent): void;
|
22
|
-
/**
|
23
|
-
* Fires each time the component gets blurred.
|
24
|
-
* @event
|
25
|
-
*/
|
26
|
-
onBlur: EventEmitter<AXFocusEvent>;
|
27
|
-
_emitOnBlurEvent(e: FocusEvent): void;
|
28
|
-
/**
|
29
|
-
* Focuses the component.
|
30
|
-
*/
|
31
|
-
focus(): void;
|
32
|
-
/**
|
33
|
-
* Check component is focused or has any focused element.
|
34
|
-
*/
|
35
|
-
hasFocus(): boolean;
|
36
|
-
id: string;
|
37
|
-
"__#34571@#rtl": boolean;
|
38
|
-
rtl: boolean;
|
39
|
-
"__#34571@#elementRef": import("@angular/core").ElementRef<any>; /**
|
40
|
-
* Fires each time the component gets focused.
|
41
|
-
* @event
|
42
|
-
*/
|
43
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
44
|
-
_isInited: boolean;
|
45
|
-
_isRendered: boolean;
|
46
|
-
ngOnInit(): void;
|
47
|
-
ngAfterViewInit(): void;
|
48
|
-
ngOnDestroy(): void;
|
49
|
-
_getHostElement<T = HTMLElement>(): T;
|
50
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
51
|
-
_onInternalInit(): void;
|
52
|
-
_onInternalViewInit(): void;
|
53
|
-
_onInternalDestroy(): void;
|
54
|
-
onInit(): void;
|
55
|
-
onViewInit(): void;
|
56
|
-
onDestroy(): void;
|
57
|
-
_applyRtl(): void;
|
58
|
-
_onOptionChanging(option: import("./base-components.class").AXComponentOptionChanging): any;
|
59
|
-
_onOptionChanged(option: import("./base-components.class").AXComponentOptionChanged): void;
|
60
|
-
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
61
|
-
}) & TBase;
|
62
|
-
export declare const INTERACTIVE_INPUTS: string[];
|
63
|
-
export declare const INTERACTIVE_OUTPUT: string[];
|