coer-elements 2.0.2 → 2.0.4
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-datebox/coer-datebox.component.d.ts +1 -1
- package/components/lib/coer-dropdown/coer-dropdown.component.d.ts +3 -3
- package/components/lib/coer-numberbox/coer-numberbox.component.d.ts +1 -1
- package/components/lib/coer-secretbox/coer-secretbox.component.d.ts +1 -1
- package/components/lib/coer-selectbox/coer-selectbox.component.d.ts +3 -4
- package/components/lib/coer-sidenav/coer-toolbar/coer-toolbar.component.d.ts +5 -2
- package/components/lib/coer-textarea/coer-textarea.component.d.ts +1 -1
- package/components/lib/coer-textbox/coer-textbox.component.d.ts +1 -1
- package/fesm2022/coer-elements-components.mjs +62 -46
- package/fesm2022/coer-elements-components.mjs.map +1 -1
- package/fesm2022/coer-elements-pages.mjs +25 -13
- package/fesm2022/coer-elements-pages.mjs.map +1 -1
- package/fesm2022/coer-elements-signals.mjs +11 -1
- package/fesm2022/coer-elements-signals.mjs.map +1 -1
- package/fesm2022/coer-elements-tools.mjs +97 -27
- package/fesm2022/coer-elements-tools.mjs.map +1 -1
- package/package.json +12 -12
- package/pages/lib/coer-system/coer-system.component.d.ts +4 -4
- package/signals/lib/colors.signal.d.ts +9 -0
- package/signals/public-api.d.ts +1 -0
- package/styles/coer-elements.css +280 -70
- package/styles/colors.scss +233 -9
- package/styles/containers.scss +1 -1
- package/tools/lib/breadcrumbs.class.d.ts +2 -0
- package/tools/lib/colors.class.d.ts +19 -9
- package/tools/lib/date-time.class.d.ts +2 -0
- package/tools/lib/elements-html.class.d.ts +4 -0
- package/tools/lib/page.class.d.ts +2 -0
@@ -17,7 +17,7 @@ export declare class CoerDateBox extends ControlValue implements OnInit {
|
|
17
17
|
id: string;
|
18
18
|
label: import("@angular/core").InputSignal<string>;
|
19
19
|
placeholder: import("@angular/core").InputSignal<string>;
|
20
|
-
textPosition: import("@angular/core").InputSignal<"left" | "
|
20
|
+
textPosition: import("@angular/core").InputSignal<"left" | "right" | "center">;
|
21
21
|
isInvalid: import("@angular/core").InputSignal<boolean>;
|
22
22
|
isValid: import("@angular/core").InputSignal<boolean>;
|
23
23
|
isLoading: import("@angular/core").InputSignal<boolean>;
|
@@ -1,7 +1,7 @@
|
|
1
|
-
import {
|
1
|
+
import { AfterViewInit, ElementRef } from '@angular/core';
|
2
2
|
import { ControlValue } from 'coer-elements/tools';
|
3
3
|
import * as i0 from "@angular/core";
|
4
|
-
export declare class CoerDropdown<T> extends ControlValue implements
|
4
|
+
export declare class CoerDropdown<T> extends ControlValue implements AfterViewInit {
|
5
5
|
protected _value: T | null;
|
6
6
|
protected _coerTextBox: import("@angular/core").Signal<ElementRef<any>>;
|
7
7
|
protected _id: string;
|
@@ -33,7 +33,7 @@ export declare class CoerDropdown<T> extends ControlValue implements OnInit {
|
|
33
33
|
tooltipPosition: import("@angular/core").InputSignal<"left" | "right" | "top" | "bottom">;
|
34
34
|
onSelected: import("@angular/core").OutputEmitterRef<T>;
|
35
35
|
onUnselect: import("@angular/core").OutputEmitterRef<null>;
|
36
|
-
|
36
|
+
ngAfterViewInit(): Promise<void>;
|
37
37
|
get value(): T | null;
|
38
38
|
protected get _label(): string;
|
39
39
|
get icon(): string;
|
@@ -14,7 +14,7 @@ export declare class CoerNumberBox extends ControlValue implements OnInit {
|
|
14
14
|
id: string;
|
15
15
|
label: import("@angular/core").InputSignal<string>;
|
16
16
|
placeholder: import("@angular/core").InputSignal<string>;
|
17
|
-
textPosition: import("@angular/core").InputSignal<"left" | "
|
17
|
+
textPosition: import("@angular/core").InputSignal<"left" | "right" | "center">;
|
18
18
|
min: import("@angular/core").InputSignal<number>;
|
19
19
|
max: import("@angular/core").InputSignal<number>;
|
20
20
|
isInvalid: import("@angular/core").InputSignal<boolean>;
|
@@ -13,7 +13,7 @@ export declare class CoerSecretBox extends ControlValue implements OnInit {
|
|
13
13
|
id: string;
|
14
14
|
label: import("@angular/core").InputSignal<string>;
|
15
15
|
placeholder: import("@angular/core").InputSignal<string>;
|
16
|
-
textPosition: import("@angular/core").InputSignal<"left" | "
|
16
|
+
textPosition: import("@angular/core").InputSignal<"left" | "right" | "center">;
|
17
17
|
minLength: import("@angular/core").InputSignal<string | number>;
|
18
18
|
maxLength: import("@angular/core").InputSignal<string | number>;
|
19
19
|
isInvalid: import("@angular/core").InputSignal<boolean>;
|
@@ -1,7 +1,7 @@
|
|
1
|
-
import {
|
1
|
+
import { AfterViewInit, ElementRef } from '@angular/core';
|
2
2
|
import { ControlValue } from 'coer-elements/tools';
|
3
3
|
import * as i0 from "@angular/core";
|
4
|
-
export declare class CoerSelectbox<T> extends ControlValue implements
|
4
|
+
export declare class CoerSelectbox<T> extends ControlValue implements AfterViewInit {
|
5
5
|
protected _value: T | null;
|
6
6
|
private readonly _scrollByRow;
|
7
7
|
protected _coerTextBox: import("@angular/core").Signal<ElementRef<any>>;
|
@@ -16,7 +16,6 @@ export declare class CoerSelectbox<T> extends ControlValue implements OnInit {
|
|
16
16
|
protected _textbox: HTMLInputElement;
|
17
17
|
protected _dropDownMenu: HTMLElement;
|
18
18
|
protected _container: HTMLElement;
|
19
|
-
protected _isReadyElement: boolean;
|
20
19
|
set value(value: T | null | undefined);
|
21
20
|
id: string;
|
22
21
|
label: import("@angular/core").InputSignal<string>;
|
@@ -39,7 +38,7 @@ export declare class CoerSelectbox<T> extends ControlValue implements OnInit {
|
|
39
38
|
marginLeft: import("@angular/core").InputSignal<string>;
|
40
39
|
onSelected: import("@angular/core").OutputEmitterRef<T>;
|
41
40
|
onUnselect: import("@angular/core").OutputEmitterRef<void>;
|
42
|
-
|
41
|
+
ngAfterViewInit(): Promise<void>;
|
43
42
|
get value(): T | null | undefined;
|
44
43
|
protected get _displayed(): string;
|
45
44
|
protected get _placeholder(): string;
|
@@ -8,7 +8,6 @@ export declare class CoerToolbar implements AfterViewInit {
|
|
8
8
|
protected isLoading: boolean;
|
9
9
|
protected awaitSignals: boolean;
|
10
10
|
protected _isModalOpen: WritableSignal<boolean>;
|
11
|
-
appName: import("@angular/core").InputSignal<string>;
|
12
11
|
user: import("@angular/core").InputSignal<any>;
|
13
12
|
image: import("@angular/core").InputSignal<string | null>;
|
14
13
|
menu: import("@angular/core").InputSignal<IToolbarMenu[]>;
|
@@ -19,6 +18,10 @@ export declare class CoerToolbar implements AfterViewInit {
|
|
19
18
|
protected ToogleSideNave(): void;
|
20
19
|
protected userName: import("@angular/core").Signal<string>;
|
21
20
|
protected userTitle: import("@angular/core").Signal<string>;
|
21
|
+
protected get appName(): string;
|
22
|
+
protected get appLogo(): string;
|
23
|
+
protected get appLogoWidth(): string;
|
24
|
+
protected get showLogo(): boolean;
|
22
25
|
protected get showUser(): boolean;
|
23
26
|
protected get paddingLeft(): string;
|
24
27
|
/** */
|
@@ -28,5 +31,5 @@ export declare class CoerToolbar implements AfterViewInit {
|
|
28
31
|
/** */
|
29
32
|
protected ClickUser(): void;
|
30
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<CoerToolbar, never>;
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoerToolbar, "coer-toolbar", never, { "
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CoerToolbar, "coer-toolbar", never, { "user": { "alias": "user"; "required": false; "isSignal": true; }; "image": { "alias": "image"; "required": false; "isSignal": true; }; "menu": { "alias": "menu"; "required": false; "isSignal": true; }; }, { "onClickMenu": "onClickMenu"; "onClickOption": "onClickOption"; }, never, never, false, never>;
|
32
35
|
}
|
@@ -12,7 +12,7 @@ export declare class CoerTextarea extends ControlValue implements OnInit {
|
|
12
12
|
id: string;
|
13
13
|
label: import("@angular/core").InputSignal<string>;
|
14
14
|
placeholder: import("@angular/core").InputSignal<string>;
|
15
|
-
textPosition: import("@angular/core").InputSignal<"left" | "
|
15
|
+
textPosition: import("@angular/core").InputSignal<"left" | "right" | "center">;
|
16
16
|
minLength: import("@angular/core").InputSignal<string | number>;
|
17
17
|
maxLength: import("@angular/core").InputSignal<string | number>;
|
18
18
|
isInvalid: import("@angular/core").InputSignal<boolean>;
|
@@ -13,7 +13,7 @@ export declare class CoerTextBox extends ControlValue implements OnInit {
|
|
13
13
|
id: string;
|
14
14
|
label: import("@angular/core").InputSignal<string>;
|
15
15
|
placeholder: import("@angular/core").InputSignal<string>;
|
16
|
-
textPosition: import("@angular/core").InputSignal<"left" | "
|
16
|
+
textPosition: import("@angular/core").InputSignal<"left" | "right" | "center">;
|
17
17
|
minLength: import("@angular/core").InputSignal<string | number>;
|
18
18
|
maxLength: import("@angular/core").InputSignal<string | number>;
|
19
19
|
isInvalid: import("@angular/core").InputSignal<boolean>;
|