coer-elements 0.0.28 → 0.0.30
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-sidenav/coer-menu-option/coer-menu-option.component.d.ts +22 -0
- package/components/lib/coer-sidenav/coer-sidenav.component.d.ts +41 -0
- package/components/lib/coer-sidenav/coer-toolbar/coer-toolbar.component.d.ts +11 -0
- package/components/lib/coer-sidenav/coer-tree-accordion/coer-tree-accordion.component.d.ts +35 -0
- package/components/lib/components.module.d.ts +28 -20
- package/components/public-api.d.ts +2 -0
- package/esm2022/components/lib/coer-button/coer-button.component.mjs +2 -2
- package/esm2022/components/lib/coer-checkbox/coer-checkbox.component.mjs +2 -2
- package/esm2022/components/lib/coer-filebox/coer-filebox.component.mjs +2 -2
- package/esm2022/components/lib/coer-grid/coer-grid.component.mjs +2 -2
- package/esm2022/components/lib/coer-numberbox/coer-numberbox.component.mjs +4 -4
- package/esm2022/components/lib/coer-page-title/coer-page-title.component.mjs +4 -4
- package/esm2022/components/lib/coer-selectbox/coer-selectbox.component.mjs +4 -4
- package/esm2022/components/lib/coer-sidenav/coer-menu-option/coer-menu-option.component.mjs +103 -0
- package/esm2022/components/lib/coer-sidenav/coer-sidenav.component.mjs +193 -0
- package/esm2022/components/lib/coer-sidenav/coer-toolbar/coer-toolbar.component.mjs +33 -0
- package/esm2022/components/lib/coer-sidenav/coer-tree-accordion/coer-tree-accordion.component.mjs +115 -0
- package/esm2022/components/lib/coer-switch/coer-switch.component.mjs +2 -2
- package/esm2022/components/lib/coer-tab/coer-tab.component.mjs +2 -2
- package/esm2022/components/lib/coer-textarea/coer-textarea.component.mjs +4 -4
- package/esm2022/components/lib/coer-textbox/coer-textbox.component.mjs +4 -4
- package/esm2022/components/lib/components.module.mjs +45 -7
- package/esm2022/components/public-api.mjs +3 -1
- package/esm2022/signals/lib/navigation.signal.mjs +3 -0
- package/esm2022/signals/public-api.mjs +2 -2
- package/esm2022/tools/lib/coer-alert/coer-alert.component.mjs +8 -7
- package/esm2022/tools/lib/colors.class.mjs +68 -0
- package/esm2022/tools/lib/menu.class.mjs +3 -3
- package/esm2022/tools/public-api.mjs +2 -1
- package/fesm2022/coer-elements-components.mjs +491 -37
- package/fesm2022/coer-elements-components.mjs.map +1 -1
- package/fesm2022/coer-elements-signals.mjs +2 -2
- package/fesm2022/coer-elements-signals.mjs.map +1 -1
- package/fesm2022/coer-elements-tools.mjs +77 -9
- package/fesm2022/coer-elements-tools.mjs.map +1 -1
- package/package.json +6 -4
- package/signals/lib/navigation.signal.d.ts +2 -0
- package/signals/public-api.d.ts +1 -1
- package/styles/angular-material.scss +3 -0
- package/styles/bootstrap.scss +2 -1
- package/styles/coer-elements.css +450 -0
- package/styles/colors.scss +2 -0
- package/tools/lib/colors.class.d.ts +21 -0
- package/tools/lib/menu.class.d.ts +2 -2
- package/tools/public-api.d.ts +1 -0
- package/esm2022/signals/lib/menu.signal.mjs +0 -3
- package/signals/lib/menu.signal.d.ts +0 -2
package/styles/coer-elements.css
CHANGED
@@ -22,6 +22,169 @@ input[type=file] {
|
|
22
22
|
}
|
23
23
|
|
24
24
|
/********** COER styles **********/
|
25
|
+
mat-drawer-container {
|
26
|
+
height: calc(100vh - 45px) !important;
|
27
|
+
}
|
28
|
+
mat-drawer-container .margin-left-40px {
|
29
|
+
margin-left: 40px !important;
|
30
|
+
}
|
31
|
+
mat-drawer-container mat-drawer {
|
32
|
+
width: auto;
|
33
|
+
min-width: 200px;
|
34
|
+
background-color: var(--black) !important;
|
35
|
+
z-index: 1 !important;
|
36
|
+
}
|
37
|
+
mat-drawer-container mat-drawer div.mat-drawer-inner-container::-webkit-scrollbar {
|
38
|
+
width: 1px !important;
|
39
|
+
}
|
40
|
+
mat-drawer-container mat-drawer div.mat-drawer-inner-container::-webkit-scrollbar-thumb {
|
41
|
+
background-color: var(--gray) !important;
|
42
|
+
border-radius: 5px !important;
|
43
|
+
}
|
44
|
+
mat-drawer-container mat-drawer div.mat-drawer-inner-container::-webkit-scrollbar-thumb:hover {
|
45
|
+
background-color: var(--gray) !important;
|
46
|
+
}
|
47
|
+
mat-drawer-container mat-drawer div.mat-drawer-inner-container::-webkit-scrollbar-thumb:active {
|
48
|
+
background-color: var(--white) !important;
|
49
|
+
}
|
50
|
+
mat-drawer-container mat-drawer i {
|
51
|
+
font-size: 16px !important;
|
52
|
+
}
|
53
|
+
mat-drawer-container mat-drawer div.separator {
|
54
|
+
border: 0.5px solid rgba(245, 245, 245, 0.041) !important;
|
55
|
+
}
|
56
|
+
mat-drawer-container mat-drawer-content {
|
57
|
+
margin-right: 0px !important;
|
58
|
+
}
|
59
|
+
mat-drawer-container mat-drawer-content aside.side-nav {
|
60
|
+
background-color: var(--black) !important;
|
61
|
+
width: 40px !important;
|
62
|
+
position: fixed !important;
|
63
|
+
left: 0px !important;
|
64
|
+
top: 45px !important;
|
65
|
+
bottom: 0px !important;
|
66
|
+
cursor: pointer !important;
|
67
|
+
}
|
68
|
+
mat-drawer-container mat-drawer-content aside.side-nav span.icon-container {
|
69
|
+
width: 100% !important;
|
70
|
+
height: 49.6px !important;
|
71
|
+
display: flex !important;
|
72
|
+
align-items: center !important;
|
73
|
+
justify-content: center !important;
|
74
|
+
font-size: 16px !important;
|
75
|
+
border-bottom: 1px solid rgba(245, 245, 245, 0.041) !important;
|
76
|
+
color: var(--white);
|
77
|
+
}
|
78
|
+
mat-drawer-container mat-drawer-content aside.side-nav span.icon-container:hover {
|
79
|
+
background-color: #2f2f2f !important;
|
80
|
+
}
|
81
|
+
mat-drawer-container mat-drawer-content aside.side-nav span.icon-container.active-link {
|
82
|
+
color: var(--orange) !important;
|
83
|
+
}
|
84
|
+
mat-drawer-container div.backdrop {
|
85
|
+
position: absolute !important;
|
86
|
+
top: 0px !important;
|
87
|
+
left: 0px !important;
|
88
|
+
right: 0px !important;
|
89
|
+
bottom: 0px !important;
|
90
|
+
background-color: rgba(0, 0, 0, 0.3568627451) !important;
|
91
|
+
z-index: 1500 !important;
|
92
|
+
}
|
93
|
+
|
94
|
+
mat-accordion.coer-tree-accordion div, mat-accordion.coer-tree-accordion span {
|
95
|
+
font-size: 16px !important;
|
96
|
+
font-family: sans-serif !important;
|
97
|
+
font-weight: bold;
|
98
|
+
}
|
99
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel {
|
100
|
+
background-color: var(--black) !important;
|
101
|
+
box-shadow: none !important;
|
102
|
+
border-radius: 0px !important;
|
103
|
+
}
|
104
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel div.mat-expansion-panel-body {
|
105
|
+
padding: 0px !important;
|
106
|
+
}
|
107
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel div.separator {
|
108
|
+
border: 0.5px solid rgba(245, 245, 245, 0.041) !important;
|
109
|
+
}
|
110
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel span::selection {
|
111
|
+
background-color: transparent !important;
|
112
|
+
}
|
113
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel mat-expansion-panel-header {
|
114
|
+
padding: 0px 10px;
|
115
|
+
height: 48px !important;
|
116
|
+
}
|
117
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel mat-expansion-panel-header span.mat-expansion-indicator {
|
118
|
+
width: 10px !important;
|
119
|
+
margin-left: 15px !important;
|
120
|
+
}
|
121
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel mat-expansion-panel-header span.mat-expansion-indicator::after {
|
122
|
+
color: var(--white) !important;
|
123
|
+
}
|
124
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel mat-expansion-panel-header mat-panel-description {
|
125
|
+
margin-right: 0px !important;
|
126
|
+
}
|
127
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel mat-expansion-panel-header mat-panel-description span.icon-container {
|
128
|
+
height: 48px !important;
|
129
|
+
min-width: 20px !important;
|
130
|
+
max-width: 20px !important;
|
131
|
+
display: flex !important;
|
132
|
+
align-items: center !important;
|
133
|
+
justify-content: center !important;
|
134
|
+
color: var(--white);
|
135
|
+
}
|
136
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel mat-expansion-panel-header mat-panel-description span.label-container {
|
137
|
+
height: 48px !important;
|
138
|
+
margin-left: 10px !important;
|
139
|
+
display: flex !important;
|
140
|
+
align-items: center !important;
|
141
|
+
color: var(--white);
|
142
|
+
}
|
143
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel mat-expansion-panel-header.text-orange span.mat-expansion-indicator::after {
|
144
|
+
color: var(--orange) !important;
|
145
|
+
}
|
146
|
+
mat-accordion.coer-tree-accordion mat-expansion-panel mat-expansion-panel-header:not(.background-orange):hover {
|
147
|
+
background-color: #2f2f2f !important;
|
148
|
+
}
|
149
|
+
|
150
|
+
mat-nav-list.coer-menu-option {
|
151
|
+
padding: 0px !important;
|
152
|
+
}
|
153
|
+
mat-nav-list.coer-menu-option div, mat-nav-list.coer-menu-option span {
|
154
|
+
font-size: 16px !important;
|
155
|
+
font-family: sans-serif !important;
|
156
|
+
font-weight: bold;
|
157
|
+
}
|
158
|
+
mat-nav-list.coer-menu-option mat-list-item {
|
159
|
+
padding: 0px 35px 0px 10px !important;
|
160
|
+
display: inline-flex !important;
|
161
|
+
height: 48px !important;
|
162
|
+
color: var(--white);
|
163
|
+
}
|
164
|
+
mat-nav-list.coer-menu-option mat-list-item span.icon-container {
|
165
|
+
display: inline-flex !important;
|
166
|
+
align-items: center !important;
|
167
|
+
justify-content: center !important;
|
168
|
+
height: 48px !important;
|
169
|
+
min-width: 20px !important;
|
170
|
+
max-width: 20px !important;
|
171
|
+
color: var(--white);
|
172
|
+
}
|
173
|
+
mat-nav-list.coer-menu-option mat-list-item span.label-container {
|
174
|
+
justify-content: flex-start !important;
|
175
|
+
display: inline-flex !important;
|
176
|
+
height: auto !important;
|
177
|
+
margin-left: 10px !important;
|
178
|
+
color: var(--white);
|
179
|
+
}
|
180
|
+
mat-nav-list.coer-menu-option mat-list-item span.icon-container.active-link,
|
181
|
+
mat-nav-list.coer-menu-option mat-list-item span.label-container.active-link {
|
182
|
+
color: var(--orange) !important;
|
183
|
+
}
|
184
|
+
mat-nav-list.coer-menu-option mat-list-item:hover {
|
185
|
+
background-color: #2f2f2f !important;
|
186
|
+
}
|
187
|
+
|
25
188
|
* {
|
26
189
|
--blue: #0d6efd;
|
27
190
|
--gray: #6c757d;
|
@@ -31,6 +194,7 @@ input[type=file] {
|
|
31
194
|
--white: #f5f5f5;
|
32
195
|
--black: #252525;
|
33
196
|
--orange: #fd6031;
|
197
|
+
--purple: #a615bc;
|
34
198
|
}
|
35
199
|
|
36
200
|
.text-blue {
|
@@ -386,6 +550,7 @@ div.coer-text-box * {
|
|
386
550
|
--white: #f5f5f5;
|
387
551
|
--black: #252525;
|
388
552
|
--orange: #fd6031;
|
553
|
+
--purple: #a615bc;
|
389
554
|
}
|
390
555
|
div.coer-text-box .text-blue {
|
391
556
|
color: #0d6efd !important;
|
@@ -638,6 +803,7 @@ div.coer-textarea * {
|
|
638
803
|
--white: #f5f5f5;
|
639
804
|
--black: #252525;
|
640
805
|
--orange: #fd6031;
|
806
|
+
--purple: #a615bc;
|
641
807
|
}
|
642
808
|
div.coer-textarea .text-blue {
|
643
809
|
color: #0d6efd !important;
|
@@ -872,6 +1038,7 @@ div.coer-select-box * {
|
|
872
1038
|
--white: #f5f5f5;
|
873
1039
|
--black: #252525;
|
874
1040
|
--orange: #fd6031;
|
1041
|
+
--purple: #a615bc;
|
875
1042
|
}
|
876
1043
|
div.coer-select-box .text-blue {
|
877
1044
|
color: #0d6efd !important;
|
@@ -1168,6 +1335,7 @@ div.coer-number-box * {
|
|
1168
1335
|
--white: #f5f5f5;
|
1169
1336
|
--black: #252525;
|
1170
1337
|
--orange: #fd6031;
|
1338
|
+
--purple: #a615bc;
|
1171
1339
|
}
|
1172
1340
|
div.coer-number-box .text-blue {
|
1173
1341
|
color: #0d6efd !important;
|
@@ -1428,6 +1596,7 @@ div.coer-switch * {
|
|
1428
1596
|
--white: #f5f5f5;
|
1429
1597
|
--black: #252525;
|
1430
1598
|
--orange: #fd6031;
|
1599
|
+
--purple: #a615bc;
|
1431
1600
|
}
|
1432
1601
|
div.coer-switch .text-blue {
|
1433
1602
|
color: #0d6efd !important;
|
@@ -1606,6 +1775,7 @@ div.coer-checkbox * {
|
|
1606
1775
|
--white: #f5f5f5;
|
1607
1776
|
--black: #252525;
|
1608
1777
|
--orange: #fd6031;
|
1778
|
+
--purple: #a615bc;
|
1609
1779
|
}
|
1610
1780
|
div.coer-checkbox .text-blue {
|
1611
1781
|
color: #0d6efd !important;
|
@@ -1809,6 +1979,7 @@ div.coer-tab * {
|
|
1809
1979
|
--white: #f5f5f5;
|
1810
1980
|
--black: #252525;
|
1811
1981
|
--orange: #fd6031;
|
1982
|
+
--purple: #a615bc;
|
1812
1983
|
}
|
1813
1984
|
div.coer-tab .text-blue {
|
1814
1985
|
color: #0d6efd !important;
|
@@ -2003,6 +2174,7 @@ header.coer-page-title * {
|
|
2003
2174
|
--white: #f5f5f5;
|
2004
2175
|
--black: #252525;
|
2005
2176
|
--orange: #fd6031;
|
2177
|
+
--purple: #a615bc;
|
2006
2178
|
}
|
2007
2179
|
header.coer-page-title .text-blue {
|
2008
2180
|
color: #0d6efd !important;
|
@@ -2192,6 +2364,7 @@ div.coer-grid * {
|
|
2192
2364
|
--white: #f5f5f5;
|
2193
2365
|
--black: #252525;
|
2194
2366
|
--orange: #fd6031;
|
2367
|
+
--purple: #a615bc;
|
2195
2368
|
}
|
2196
2369
|
div.coer-grid .text-blue {
|
2197
2370
|
color: #0d6efd !important;
|
@@ -2559,6 +2732,282 @@ div.modal-content {
|
|
2559
2732
|
--white: #f5f5f5;
|
2560
2733
|
--black: #252525;
|
2561
2734
|
--orange: #fd6031;
|
2735
|
+
--purple: #a615bc;
|
2736
|
+
}
|
2737
|
+
|
2738
|
+
.text-blue {
|
2739
|
+
color: #0d6efd !important;
|
2740
|
+
}
|
2741
|
+
|
2742
|
+
.text-blue-bold {
|
2743
|
+
color: #0d6efd !important;
|
2744
|
+
font-weight: bold !important;
|
2745
|
+
}
|
2746
|
+
|
2747
|
+
.background-blue {
|
2748
|
+
background-color: #0d6efd !important;
|
2749
|
+
}
|
2750
|
+
|
2751
|
+
.background-border-blue {
|
2752
|
+
background-color: #0d6efd !important;
|
2753
|
+
border-color: #0d6efd !important;
|
2754
|
+
}
|
2755
|
+
|
2756
|
+
.border-blue {
|
2757
|
+
border-color: #0d6efd !important;
|
2758
|
+
}
|
2759
|
+
|
2760
|
+
.text-gray {
|
2761
|
+
color: #6c757d !important;
|
2762
|
+
}
|
2763
|
+
|
2764
|
+
.text-gray-bold {
|
2765
|
+
color: #6c757d !important;
|
2766
|
+
font-weight: bold !important;
|
2767
|
+
}
|
2768
|
+
|
2769
|
+
.background-gray {
|
2770
|
+
background-color: #6c757d !important;
|
2771
|
+
}
|
2772
|
+
|
2773
|
+
.background-border-gray {
|
2774
|
+
background-color: #6c757d !important;
|
2775
|
+
border-color: #6c757d !important;
|
2776
|
+
}
|
2777
|
+
|
2778
|
+
.border-gray {
|
2779
|
+
border-color: #6c757d !important;
|
2780
|
+
}
|
2781
|
+
|
2782
|
+
.text-green {
|
2783
|
+
color: #198754 !important;
|
2784
|
+
}
|
2785
|
+
|
2786
|
+
.text-green-bold {
|
2787
|
+
color: #198754 !important;
|
2788
|
+
font-weight: bold !important;
|
2789
|
+
}
|
2790
|
+
|
2791
|
+
.background-green {
|
2792
|
+
background-color: #198754 !important;
|
2793
|
+
}
|
2794
|
+
|
2795
|
+
.background-border-green {
|
2796
|
+
background-color: #198754 !important;
|
2797
|
+
border-color: #198754 !important;
|
2798
|
+
}
|
2799
|
+
|
2800
|
+
.border-green {
|
2801
|
+
border-color: #198754 !important;
|
2802
|
+
}
|
2803
|
+
|
2804
|
+
.text-yellow {
|
2805
|
+
color: #ffc107 !important;
|
2806
|
+
}
|
2807
|
+
|
2808
|
+
.text-yellow-bold {
|
2809
|
+
color: #ffc107 !important;
|
2810
|
+
font-weight: bold !important;
|
2811
|
+
}
|
2812
|
+
|
2813
|
+
.background-yellow {
|
2814
|
+
background-color: #ffc107 !important;
|
2815
|
+
}
|
2816
|
+
|
2817
|
+
.background-border-yellow {
|
2818
|
+
background-color: #ffc107 !important;
|
2819
|
+
border-color: #ffc107 !important;
|
2820
|
+
}
|
2821
|
+
|
2822
|
+
.border-yellow {
|
2823
|
+
border-color: #ffc107 !important;
|
2824
|
+
}
|
2825
|
+
|
2826
|
+
.text-red {
|
2827
|
+
color: #dc3545 !important;
|
2828
|
+
}
|
2829
|
+
|
2830
|
+
.text-red-bold {
|
2831
|
+
color: #dc3545 !important;
|
2832
|
+
font-weight: bold !important;
|
2833
|
+
}
|
2834
|
+
|
2835
|
+
.background-red {
|
2836
|
+
background-color: #dc3545 !important;
|
2837
|
+
}
|
2838
|
+
|
2839
|
+
.background-border-red {
|
2840
|
+
background-color: #dc3545 !important;
|
2841
|
+
border-color: #dc3545 !important;
|
2842
|
+
}
|
2843
|
+
|
2844
|
+
.border-red {
|
2845
|
+
border-color: #dc3545 !important;
|
2846
|
+
}
|
2847
|
+
|
2848
|
+
.text-white {
|
2849
|
+
color: #f5f5f5 !important;
|
2850
|
+
}
|
2851
|
+
|
2852
|
+
.text-white-bold {
|
2853
|
+
color: #f5f5f5 !important;
|
2854
|
+
font-weight: bold !important;
|
2855
|
+
}
|
2856
|
+
|
2857
|
+
.background-white {
|
2858
|
+
background-color: #f5f5f5 !important;
|
2859
|
+
}
|
2860
|
+
|
2861
|
+
.background-border-white {
|
2862
|
+
background-color: #f5f5f5 !important;
|
2863
|
+
border-color: #f5f5f5 !important;
|
2864
|
+
}
|
2865
|
+
|
2866
|
+
.border-white {
|
2867
|
+
border-color: #f5f5f5 !important;
|
2868
|
+
}
|
2869
|
+
|
2870
|
+
.text-black {
|
2871
|
+
color: #252525 !important;
|
2872
|
+
}
|
2873
|
+
|
2874
|
+
.text-black-bold {
|
2875
|
+
color: #252525 !important;
|
2876
|
+
font-weight: bold !important;
|
2877
|
+
}
|
2878
|
+
|
2879
|
+
.background-black {
|
2880
|
+
background-color: #252525 !important;
|
2881
|
+
}
|
2882
|
+
|
2883
|
+
.background-border-black {
|
2884
|
+
background-color: #252525 !important;
|
2885
|
+
border-color: #252525 !important;
|
2886
|
+
}
|
2887
|
+
|
2888
|
+
.border-black {
|
2889
|
+
border-color: #252525 !important;
|
2890
|
+
}
|
2891
|
+
|
2892
|
+
.text-orange {
|
2893
|
+
color: #fd6031 !important;
|
2894
|
+
}
|
2895
|
+
|
2896
|
+
.text-orange-bold {
|
2897
|
+
color: #fd6031 !important;
|
2898
|
+
font-weight: bold !important;
|
2899
|
+
}
|
2900
|
+
|
2901
|
+
.background-orange {
|
2902
|
+
background-color: #fd6031 !important;
|
2903
|
+
}
|
2904
|
+
|
2905
|
+
.background-border-orange {
|
2906
|
+
background-color: #fd6031 !important;
|
2907
|
+
border-color: #fd6031 !important;
|
2908
|
+
}
|
2909
|
+
|
2910
|
+
.border-orange {
|
2911
|
+
border-color: #fd6031 !important;
|
2912
|
+
}
|
2913
|
+
|
2914
|
+
aside.toast-container {
|
2915
|
+
position: fixed;
|
2916
|
+
bottom: 0px;
|
2917
|
+
right: 0px;
|
2918
|
+
padding: 15px !important;
|
2919
|
+
z-index: 2000 !important;
|
2920
|
+
}
|
2921
|
+
aside.toast-container i, aside.toast-container svg {
|
2922
|
+
display: flex;
|
2923
|
+
align-items: center;
|
2924
|
+
}
|
2925
|
+
aside.toast-container strong {
|
2926
|
+
margin: 0px auto 0px 5px;
|
2927
|
+
}
|
2928
|
+
aside.toast-container div.toast,
|
2929
|
+
aside.toast-container div.toast-header {
|
2930
|
+
border-top-left-radius: 10px;
|
2931
|
+
border-top-right-radius: 10px;
|
2932
|
+
color: #f5f5f5;
|
2933
|
+
}
|
2934
|
+
aside.toast-container div.toast,
|
2935
|
+
aside.toast-container div.toast-body {
|
2936
|
+
border-bottom-left-radius: 10px;
|
2937
|
+
border-bottom-right-radius: 10px;
|
2938
|
+
color: #f5f5f5;
|
2939
|
+
}
|
2940
|
+
aside.toast-container div.toast-body {
|
2941
|
+
min-height: 36px;
|
2942
|
+
}
|
2943
|
+
aside.toast-container pre {
|
2944
|
+
font-family: Roboto, RobotoFallback, "Noto Kufi Arabic", Helvetica, Arial, sans-serif;
|
2945
|
+
white-space: pre-wrap;
|
2946
|
+
font-size: medium;
|
2947
|
+
}
|
2948
|
+
aside.toast-container button {
|
2949
|
+
margin: 0px 2px !important;
|
2950
|
+
width: 10px !important;
|
2951
|
+
height: 10px !important;
|
2952
|
+
box-shadow: none !important;
|
2953
|
+
outline: none !important;
|
2954
|
+
border: none !important;
|
2955
|
+
}
|
2956
|
+
aside.toast-container div#alert-success div.toast-header,
|
2957
|
+
aside.toast-container div#alert-success div.toast-body {
|
2958
|
+
background-color: #198754;
|
2959
|
+
}
|
2960
|
+
aside.toast-container div#alert-info div.toast-header,
|
2961
|
+
aside.toast-container div#alert-info div.toast-body {
|
2962
|
+
background-color: #0d6efd;
|
2963
|
+
}
|
2964
|
+
aside.toast-container div#alert-error div.toast-header,
|
2965
|
+
aside.toast-container div#alert-error div.toast-body {
|
2966
|
+
background-color: #dc3545;
|
2967
|
+
}
|
2968
|
+
aside.toast-container div#alert-warning div.toast-header,
|
2969
|
+
aside.toast-container div#alert-warning div.toast-body {
|
2970
|
+
background-color: #ffc107;
|
2971
|
+
border-color: #252525;
|
2972
|
+
color: #252525;
|
2973
|
+
}
|
2974
|
+
aside.toast-container div#alert-success:hover,
|
2975
|
+
aside.toast-container div#alert-info:hover,
|
2976
|
+
aside.toast-container div#alert-error:hover,
|
2977
|
+
aside.toast-container div#alert-warning:hover {
|
2978
|
+
transform: scale(1.01);
|
2979
|
+
box-shadow: 2px 2px 10px lightslategray;
|
2980
|
+
cursor: default;
|
2981
|
+
}
|
2982
|
+
|
2983
|
+
button.sweet-alert-button {
|
2984
|
+
width: 100px !important;
|
2985
|
+
height: 40px !important;
|
2986
|
+
display: flex !important;
|
2987
|
+
align-items: center !important;
|
2988
|
+
justify-content: center !important;
|
2989
|
+
margin: 0px 5px !important;
|
2990
|
+
outline: none !important;
|
2991
|
+
border: none !important;
|
2992
|
+
box-shadow: none !important;
|
2993
|
+
}
|
2994
|
+
|
2995
|
+
aside.toast-container > * {
|
2996
|
+
border: none !important;
|
2997
|
+
z-index: 2000 !important;
|
2998
|
+
margin: 15px 0px 0px 0px !important;
|
2999
|
+
}
|
3000
|
+
|
3001
|
+
* {
|
3002
|
+
--blue: #0d6efd;
|
3003
|
+
--gray: #6c757d;
|
3004
|
+
--green: #198754;
|
3005
|
+
--yellow: #ffc107;
|
3006
|
+
--red: #dc3545;
|
3007
|
+
--white: #f5f5f5;
|
3008
|
+
--black: #252525;
|
3009
|
+
--orange: #fd6031;
|
3010
|
+
--purple: #a615bc;
|
2562
3011
|
}
|
2563
3012
|
|
2564
3013
|
.text-blue {
|
@@ -2807,6 +3256,7 @@ div.modal-content {
|
|
2807
3256
|
--white: #f5f5f5;
|
2808
3257
|
--black: #252525;
|
2809
3258
|
--orange: #fd6031;
|
3259
|
+
--purple: #a615bc;
|
2810
3260
|
}
|
2811
3261
|
|
2812
3262
|
.text-blue {
|
package/styles/colors.scss
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
--white: #f5f5f5;
|
8
8
|
--black: #252525;
|
9
9
|
--orange: #fd6031;
|
10
|
+
--purple: #a615bc;
|
10
11
|
}
|
11
12
|
|
12
13
|
$blue: #0d6efd;
|
@@ -17,6 +18,7 @@ $red: #dc3545;
|
|
17
18
|
$white: #f5f5f5;
|
18
19
|
$black: #252525;
|
19
20
|
$orange: #fd6031;
|
21
|
+
$purple: #a615bc;
|
20
22
|
|
21
23
|
//Blue
|
22
24
|
.text-blue {
|
@@ -0,0 +1,21 @@
|
|
1
|
+
export declare class Colors {
|
2
|
+
static readonly blue = "#0d6efd";
|
3
|
+
static readonly gray = "#6c757d";
|
4
|
+
static readonly green = "#198754";
|
5
|
+
static readonly yellow = "#ffc107";
|
6
|
+
static readonly red = "#dc3545";
|
7
|
+
static readonly white = "#f5f5f5";
|
8
|
+
static readonly black = "#252525";
|
9
|
+
static readonly orange = "#fd6031";
|
10
|
+
static readonly purple = "#a615bc";
|
11
|
+
/** Returns the color palette in hexadecimal */
|
12
|
+
private static readonly colorsHex;
|
13
|
+
/** Returns the color palette in RGB */
|
14
|
+
private static readonly ColorsRGB;
|
15
|
+
/** Returns a random color in hexadecimal */
|
16
|
+
static GetRandomColorHex: () => string;
|
17
|
+
/** Returns the number of colors requested */
|
18
|
+
static GetColorHexList(quantity: number): string[];
|
19
|
+
/** Returns the number of colors requested with opacity */
|
20
|
+
static GetColorRGBList(quantity: number): string[];
|
21
|
+
}
|
@@ -2,7 +2,7 @@ import { IMenuOptionSelected } from "coer-elements/interfaces";
|
|
2
2
|
export declare class Menu {
|
3
3
|
private static readonly storage;
|
4
4
|
/** */
|
5
|
-
static
|
5
|
+
static SetSelectedOption(menu: IMenuOptionSelected): void;
|
6
6
|
/** */
|
7
|
-
static
|
7
|
+
static GetSelectedOption(): IMenuOptionSelected | null;
|
8
8
|
}
|
package/tools/public-api.d.ts
CHANGED
@@ -1,3 +0,0 @@
|
|
1
|
-
import { signal } from "@angular/core";
|
2
|
-
export const menuSIGNAL = signal([]);
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVudS5zaWduYWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jb2VyLWVsZW1lbnRzL3NpZ25hbHMvbGliL21lbnUuc2lnbmFsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFdkMsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHLE1BQU0sQ0FBVSxFQUFFLENBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IHNpZ25hbCB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IElNZW51IH0gZnJvbSBcImNvZXItZWxlbWVudHMvaW50ZXJmYWNlc1wiO1xyXG5leHBvcnQgY29uc3QgbWVudVNJR05BTCA9IHNpZ25hbDxJTWVudVtdPihbXSk7Il19
|