coer-elements 2.0.39 → 2.0.41
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/components/lib/coer-button/coer-button.component.d.ts +1 -1
- package/components/lib/coer-datebox/coer-datebox.component.d.ts +1 -1
- package/components/lib/coer-numberbox/coer-numberbox.component.d.ts +1 -1
- package/components/lib/coer-secretbox/coer-secretbox.component.d.ts +2 -2
- package/components/lib/coer-selectbox/coer-selectbox.component.d.ts +0 -2
- package/components/lib/coer-textarea/coer-textarea.component.d.ts +10 -9
- package/components/lib/coer-textbox/coer-textbox.component.d.ts +1 -1
- package/fesm2022/coer-elements-components.mjs +114 -111
- package/fesm2022/coer-elements-components.mjs.map +1 -1
- package/fesm2022/coer-elements-pages.mjs +2 -2
- package/fesm2022/coer-elements-pages.mjs.map +1 -1
- package/fesm2022/coer-elements-tools.mjs +3 -1
- package/fesm2022/coer-elements-tools.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/coer-elements.css +1 -1
@@ -6,7 +6,7 @@ export declare class CoerButton implements AfterViewInit {
|
|
6
6
|
protected _innerButton: HTMLElement;
|
7
7
|
protected _innerButtonIcon: HTMLElement;
|
8
8
|
id: import("@angular/core").InputSignal<string>;
|
9
|
-
color: import("@angular/core").InputSignal<"default" | "primary" | "secondary" | "success" | "warning" | "danger" | "navigation" | "
|
9
|
+
color: import("@angular/core").InputSignal<"default" | "primary" | "secondary" | "success" | "warning" | "danger" | "navigation" | "dark" | "light" | "information">;
|
10
10
|
type: import("@angular/core").InputSignal<"filled" | "outline" | "icon" | "icon-outline" | "icon-no-border">;
|
11
11
|
typeBreakpoint: import("@angular/core").InputSignal<IButtonType>;
|
12
12
|
icon: import("@angular/core").InputSignal<string | null | undefined>;
|
@@ -17,7 +17,7 @@ export declare class CoerDateBox extends ControlValue implements AfterViewInit,
|
|
17
17
|
value: import("@angular/core").InputSignal<string | null | undefined>;
|
18
18
|
label: import("@angular/core").InputSignal<string>;
|
19
19
|
placeholder: import("@angular/core").InputSignal<string>;
|
20
|
-
textPosition: import("@angular/core").InputSignal<"
|
20
|
+
textPosition: import("@angular/core").InputSignal<"center" | "left" | "right">;
|
21
21
|
isInvalid: import("@angular/core").InputSignal<boolean>;
|
22
22
|
isValid: import("@angular/core").InputSignal<boolean>;
|
23
23
|
isLoading: import("@angular/core").InputSignal<boolean>;
|
@@ -17,7 +17,7 @@ export declare class CoerNumberBox extends ControlValue implements AfterViewInit
|
|
17
17
|
value: import("@angular/core").InputSignal<string | number | null | undefined>;
|
18
18
|
label: import("@angular/core").InputSignal<string>;
|
19
19
|
placeholder: import("@angular/core").InputSignal<string>;
|
20
|
-
textPosition: import("@angular/core").InputSignal<"
|
20
|
+
textPosition: import("@angular/core").InputSignal<"center" | "left" | "right">;
|
21
21
|
min: import("@angular/core").InputSignal<number>;
|
22
22
|
max: import("@angular/core").InputSignal<number>;
|
23
23
|
isInvalid: import("@angular/core").InputSignal<boolean>;
|
@@ -14,7 +14,7 @@ export declare class CoerSecretBox extends ControlValue implements AfterViewInit
|
|
14
14
|
value: import("@angular/core").InputSignal<string | number | null | undefined>;
|
15
15
|
label: import("@angular/core").InputSignal<string>;
|
16
16
|
placeholder: import("@angular/core").InputSignal<string>;
|
17
|
-
textPosition: import("@angular/core").InputSignal<"
|
17
|
+
textPosition: import("@angular/core").InputSignal<"center" | "left" | "right">;
|
18
18
|
minLength: import("@angular/core").InputSignal<string | number>;
|
19
19
|
maxLength: import("@angular/core").InputSignal<string | number>;
|
20
20
|
isInvalid: import("@angular/core").InputSignal<boolean>;
|
@@ -43,7 +43,7 @@ export declare class CoerSecretBox extends ControlValue implements AfterViewInit
|
|
43
43
|
protected get _passwordType(): boolean;
|
44
44
|
protected _isEnable: import("@angular/core").Signal<boolean>;
|
45
45
|
protected _floatLabel: import("@angular/core").Signal<"auto" | "always">;
|
46
|
-
protected _paddingRight: import("@angular/core").Signal<"0px" | "
|
46
|
+
protected _paddingRight: import("@angular/core").Signal<"0px" | "45px" | "18px">;
|
47
47
|
/** */
|
48
48
|
Focus(select?: boolean, delay?: number): void;
|
49
49
|
/** */
|
@@ -16,7 +16,6 @@ export declare class CoerSelectbox<T> extends ControlValue implements AfterViewI
|
|
16
16
|
protected readonly _effect: EffectRef;
|
17
17
|
protected _textbox: HTMLInputElement;
|
18
18
|
protected _dropDownMenu: HTMLElement;
|
19
|
-
protected _container: HTMLElement;
|
20
19
|
id: import("@angular/core").InputSignal<string>;
|
21
20
|
value: import("@angular/core").InputSignal<T | null | undefined>;
|
22
21
|
label: import("@angular/core").InputSignal<string>;
|
@@ -44,7 +43,6 @@ export declare class CoerSelectbox<T> extends ControlValue implements AfterViewI
|
|
44
43
|
ngOnDestroy(): void;
|
45
44
|
protected get _displayed(): string;
|
46
45
|
protected get _placeholder(): string;
|
47
|
-
protected get _dropDownWidth(): string;
|
48
46
|
protected get _showCancel(): boolean;
|
49
47
|
protected get _paddingRight(): string;
|
50
48
|
protected get _widthIcons(): string;
|
@@ -1,16 +1,18 @@
|
|
1
|
-
import { ElementRef, AfterViewInit } from '@angular/core';
|
1
|
+
import { ElementRef, AfterViewInit, EffectRef, OnDestroy } from '@angular/core';
|
2
2
|
import { ControlValue } from 'coer-elements/tools';
|
3
3
|
import * as i0 from "@angular/core";
|
4
|
-
export declare class CoerTextarea extends ControlValue implements AfterViewInit {
|
4
|
+
export declare class CoerTextarea extends ControlValue implements AfterViewInit, OnDestroy {
|
5
5
|
protected _coerTextBox: import("@angular/core").Signal<ElementRef<any>>;
|
6
6
|
protected _value: string | number;
|
7
|
-
protected
|
8
|
-
protected
|
7
|
+
protected readonly _effect: EffectRef;
|
8
|
+
protected readonly _id: string;
|
9
|
+
protected readonly _isLoadingEvent: import("@angular/core").WritableSignal<boolean>;
|
9
10
|
protected _htmlElement: HTMLInputElement;
|
10
11
|
id: import("@angular/core").InputSignal<string>;
|
12
|
+
value: import("@angular/core").InputSignal<string | number | null | undefined>;
|
11
13
|
label: import("@angular/core").InputSignal<string>;
|
12
14
|
placeholder: import("@angular/core").InputSignal<string>;
|
13
|
-
textPosition: import("@angular/core").InputSignal<"
|
15
|
+
textPosition: import("@angular/core").InputSignal<"center" | "left" | "right">;
|
14
16
|
minLength: import("@angular/core").InputSignal<string | number>;
|
15
17
|
maxLength: import("@angular/core").InputSignal<string | number>;
|
16
18
|
isInvalid: import("@angular/core").InputSignal<boolean>;
|
@@ -29,21 +31,20 @@ export declare class CoerTextarea extends ControlValue implements AfterViewInit
|
|
29
31
|
marginRight: import("@angular/core").InputSignal<string>;
|
30
32
|
marginBottom: import("@angular/core").InputSignal<string>;
|
31
33
|
marginLeft: import("@angular/core").InputSignal<string>;
|
32
|
-
set value(value: string | number | null | undefined);
|
33
34
|
onInput: import("@angular/core").OutputEmitterRef<string>;
|
35
|
+
constructor();
|
34
36
|
ngAfterViewInit(): void;
|
37
|
+
ngOnDestroy(): void;
|
35
38
|
protected get footer(): string;
|
36
39
|
protected _isEnable: import("@angular/core").Signal<boolean>;
|
37
40
|
protected _floatLabel: import("@angular/core").Signal<"auto" | "always">;
|
38
41
|
protected _paddingRight: import("@angular/core").Signal<"0px" | "18px">;
|
39
42
|
/** */
|
40
|
-
private _SetEvents;
|
41
|
-
/** */
|
42
43
|
Focus(select?: boolean, delay?: number): void;
|
43
44
|
/** */
|
44
45
|
Blur(): void;
|
45
46
|
/** */
|
46
47
|
Clear(delay?: number): void;
|
47
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<CoerTextarea, never>;
|
48
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoerTextarea, "coer-textarea", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "textPosition": { "alias": "textPosition"; "required": false; "isSignal": true; }; "minLength": { "alias": "minLength"; "required": false; "isSignal": true; }; "maxLength": { "alias": "maxLength"; "required": false; "isSignal": true; }; "isInvalid": { "alias": "isInvalid"; "required": false; "isSignal": true; }; "isValid": { "alias": "isValid"; "required": false; "isSignal": true; }; "resize": { "alias": "resize"; "required": false; "isSignal": true; }; "showFooter": { "alias": "showFooter"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "isDisabled": { "alias": "isDisabled"; "required": false; "isSignal": true; }; "isReadonly": { "alias": "isReadonly"; "required": false; "isSignal": true; }; "isInvisible": { "alias": "isInvisible"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "minWidth": { "alias": "minWidth"; "required": false; "isSignal": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "marginTop": { "alias": "marginTop"; "required": false; "isSignal": true; }; "marginRight": { "alias": "marginRight"; "required": false; "isSignal": true; }; "marginBottom": { "alias": "marginBottom"; "required": false; "isSignal": true; }; "marginLeft": { "alias": "marginLeft"; "required": false; "isSignal": true; };
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CoerTextarea, "coer-textarea", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "textPosition": { "alias": "textPosition"; "required": false; "isSignal": true; }; "minLength": { "alias": "minLength"; "required": false; "isSignal": true; }; "maxLength": { "alias": "maxLength"; "required": false; "isSignal": true; }; "isInvalid": { "alias": "isInvalid"; "required": false; "isSignal": true; }; "isValid": { "alias": "isValid"; "required": false; "isSignal": true; }; "resize": { "alias": "resize"; "required": false; "isSignal": true; }; "showFooter": { "alias": "showFooter"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "isDisabled": { "alias": "isDisabled"; "required": false; "isSignal": true; }; "isReadonly": { "alias": "isReadonly"; "required": false; "isSignal": true; }; "isInvisible": { "alias": "isInvisible"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "minWidth": { "alias": "minWidth"; "required": false; "isSignal": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "marginTop": { "alias": "marginTop"; "required": false; "isSignal": true; }; "marginRight": { "alias": "marginRight"; "required": false; "isSignal": true; }; "marginBottom": { "alias": "marginBottom"; "required": false; "isSignal": true; }; "marginLeft": { "alias": "marginLeft"; "required": false; "isSignal": true; }; }, { "onInput": "onInput"; }, never, never, false, never>;
|
49
50
|
}
|
@@ -16,7 +16,7 @@ export declare class CoerTextBox extends ControlValue implements AfterViewInit,
|
|
16
16
|
value: import("@angular/core").InputSignal<string | number | null | undefined>;
|
17
17
|
label: import("@angular/core").InputSignal<string>;
|
18
18
|
placeholder: import("@angular/core").InputSignal<string>;
|
19
|
-
textPosition: import("@angular/core").InputSignal<"
|
19
|
+
textPosition: import("@angular/core").InputSignal<"center" | "left" | "right">;
|
20
20
|
minLength: import("@angular/core").InputSignal<string | number>;
|
21
21
|
maxLength: import("@angular/core").InputSignal<string | number>;
|
22
22
|
isInvalid: import("@angular/core").InputSignal<boolean>;
|