coer-elements 2.0.6 → 2.0.8
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 +3 -3
- package/components/lib/coer-datebox/coer-datebox.component.d.ts +1 -1
- package/components/lib/coer-dropdown/coer-dropdown.component.d.ts +1 -1
- package/components/lib/coer-modal/coer-modal.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 +1 -1
- package/components/lib/coer-sidenav/coer-toolbar/coer-toolbar.component.d.ts +0 -4
- package/components/lib/coer-switch/coer-switch.component.d.ts +1 -1
- 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 +40 -45
- package/fesm2022/coer-elements-components.mjs.map +1 -1
- package/fesm2022/coer-elements-interfaces.mjs.map +1 -1
- package/fesm2022/coer-elements-pages.mjs +26 -14
- package/fesm2022/coer-elements-pages.mjs.map +1 -1
- package/fesm2022/coer-elements-services.mjs.map +1 -1
- package/fesm2022/coer-elements-signals.mjs +33 -10
- package/fesm2022/coer-elements-signals.mjs.map +1 -1
- package/fesm2022/coer-elements-tools.mjs +81 -116
- package/fesm2022/coer-elements-tools.mjs.map +1 -1
- package/interfaces/lib/colors.interface.d.ts +35 -0
- package/interfaces/public-api.d.ts +1 -0
- package/package.json +1 -1
- package/signals/lib/colors.signal.d.ts +2 -9
- package/styles/angular-material.scss +1 -0
- package/styles/coer-elements.css +887 -226
- package/styles/colors.scss +88 -417
- package/styles/containers.scss +1 -1
- package/styles/index.scss +1 -26
- package/tools/lib/colors.class.d.ts +7 -27
- package/tools/lib/elements-html.class.d.ts +8 -4
@@ -0,0 +1,35 @@
|
|
1
|
+
export interface IColors {
|
2
|
+
fixedColors: IFixedColors;
|
3
|
+
actionColors: IActionColors;
|
4
|
+
appColors: IAppColors;
|
5
|
+
}
|
6
|
+
export interface IFixedColors {
|
7
|
+
blue: string;
|
8
|
+
gray: string;
|
9
|
+
green: string;
|
10
|
+
yellow: string;
|
11
|
+
red: string;
|
12
|
+
smoke: string;
|
13
|
+
black: string;
|
14
|
+
orange: string;
|
15
|
+
white: string;
|
16
|
+
purple: string;
|
17
|
+
}
|
18
|
+
export interface IActionColors {
|
19
|
+
primary: string;
|
20
|
+
secondary: string;
|
21
|
+
success: string;
|
22
|
+
warning: string;
|
23
|
+
danger: string;
|
24
|
+
navigation: string;
|
25
|
+
information: string;
|
26
|
+
}
|
27
|
+
export interface IAppColors {
|
28
|
+
breadcrumbs: string;
|
29
|
+
background: string;
|
30
|
+
containers: string;
|
31
|
+
sidenav: string;
|
32
|
+
sidenavText: string;
|
33
|
+
toolbar: string;
|
34
|
+
toolbarText: string;
|
35
|
+
}
|
@@ -38,5 +38,6 @@ export * from './lib/app-source.interface';
|
|
38
38
|
export * from './lib/box-button.interface';
|
39
39
|
export * from './lib/bulk-load.interface';
|
40
40
|
export * from './lib/coer-ref.interface';
|
41
|
+
export * from './lib/colors.interface';
|
41
42
|
export * from './lib/option.interface';
|
42
43
|
export * from './lib/screen-size.interface';
|
package/package.json
CHANGED
@@ -1,9 +1,2 @@
|
|
1
|
-
|
2
|
-
export declare const
|
3
|
-
export declare const successColorSIGNAL: import("@angular/core").WritableSignal<string>;
|
4
|
-
export declare const warningColorSIGNAL: import("@angular/core").WritableSignal<string>;
|
5
|
-
export declare const dangerColorSIGNAL: import("@angular/core").WritableSignal<string>;
|
6
|
-
export declare const backgroundColorSIGNAL: import("@angular/core").WritableSignal<string>;
|
7
|
-
export declare const sidenavColorSIGNAL: import("@angular/core").WritableSignal<string>;
|
8
|
-
export declare const navigationColorSIGNAL: import("@angular/core").WritableSignal<string>;
|
9
|
-
export declare const containerColorSIGNAL: import("@angular/core").WritableSignal<string>;
|
1
|
+
import { IColors } from 'coer-elements/interfaces';
|
2
|
+
export declare const colorsSIGNAL: import("@angular/core").WritableSignal<IColors>;
|
@@ -13,6 +13,7 @@
|
|
13
13
|
@use "../components/lib/coer-sidenav/coer-sidenav.component.scss";
|
14
14
|
@use "../components/lib/coer-sidenav/coer-menu-option/coer-menu-option.component.scss";
|
15
15
|
@use "../components/lib/coer-sidenav/coer-tree-accordion/coer-tree-accordion.component.scss";
|
16
|
+
@use "../components/lib/coer-sidenav/coer-toolbar/coer-toolbar.component.scss";
|
16
17
|
@use "../components/lib/coer-switch/coer-switch.component.scss";
|
17
18
|
@use "../components/lib/coer-tab/coer-tab.component.scss";
|
18
19
|
@use "../components/lib/coer-textarea/coer-textarea.component.scss";
|