coer-elements 2.0.57 → 2.0.58
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 +2 -1
- package/components/lib/coer-datebox/coer-datebox.component.d.ts +0 -1
- package/components/lib/coer-dropdown/coer-dropdown.component.d.ts +0 -1
- package/components/lib/coer-grid/coer-grid-body/coer-grid-body.component.d.ts +101 -0
- package/components/lib/coer-grid/coer-grid-cell/coer-grid-cell.component.d.ts +52 -0
- package/components/lib/coer-grid/coer-grid-footer/coer-grid-footer.component.d.ts +11 -0
- package/components/lib/coer-grid/coer-grid-header/coer-grid-header.component.d.ts +65 -0
- package/components/lib/coer-grid/coer-grid.component.d.ts +27 -32
- package/components/lib/coer-grid/coer-grid.extension.d.ts +52 -87
- package/components/lib/coer-modal/coer-modal.component.d.ts +1 -1
- package/components/lib/coer-switch/coer-switch.component.d.ts +5 -1
- package/components/lib/components.module.d.ts +40 -36
- package/fesm2022/coer-elements-components.mjs +1743 -1464
- package/fesm2022/coer-elements-components.mjs.map +1 -1
- package/fesm2022/coer-elements-interceptors.mjs +0 -1
- package/fesm2022/coer-elements-interceptors.mjs.map +1 -1
- package/fesm2022/coer-elements-interfaces.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-pipes.mjs.map +1 -1
- package/fesm2022/coer-elements-services.mjs +35 -6
- package/fesm2022/coer-elements-services.mjs.map +1 -1
- package/fesm2022/coer-elements-signals.mjs +1 -3
- package/fesm2022/coer-elements-signals.mjs.map +1 -1
- package/fesm2022/coer-elements-tools.mjs +9 -4
- package/fesm2022/coer-elements-tools.mjs.map +1 -1
- package/interfaces/lib/coer-grid/grid-button-by-row.interface.d.ts +4 -4
- package/interfaces/lib/coer-grid/grid-coer-numberbox.interface.d.ts +1 -1
- package/interfaces/lib/coer-grid/grid-coer-selectbox.interface.d.ts +2 -1
- package/interfaces/lib/coer-grid/grid-coer-switch.interface.d.ts +1 -1
- package/interfaces/lib/coer-grid/grid-coer-textbox.interface.d.ts +1 -1
- package/interfaces/lib/coer-grid/grid-column.interface.d.ts +8 -4
- package/interfaces/lib/coer-grid/grid-footer.interface.d.ts +3 -0
- package/interfaces/lib/coer-grid/grid-header-button.interface.d.ts +1 -1
- package/interfaces/lib/coer-grid/grid-header-export-button.interface.d.ts +1 -1
- package/interfaces/lib/coer-grid/grid-header-import-button.interface.d.ts +1 -1
- package/interfaces/lib/coer-grid/grid-header.interface.d.ts +4 -2
- package/interfaces/lib/coer-grid/grid-import.interface.d.ts +1 -0
- package/interfaces/lib/coer-grid/grid-input.interface.d.ts +1 -0
- package/interfaces/lib/coer-grid/grid-keyup-enter.interface.d.ts +2 -2
- package/interfaces/lib/coer-grid/grid-search.interface.d.ts +1 -0
- package/interfaces/lib/option.interface.d.ts +1 -1
- package/interfaces/public-api.d.ts +1 -0
- package/package.json +1 -1
- package/pipes/lib/html.pipe.d.ts +2 -2
- package/services/lib/jwt.service.d.ts +4 -0
- package/signals/public-api.d.ts +0 -1
- package/styles/animations.scss +9 -0
- package/styles/coer-elements.css +1 -1
- package/styles/components.scss +54 -38
- package/styles/displays.scss +1 -1
- package/styles/paragraphs.scss +13 -0
- package/tools/lib/numbers.tools.d.ts +2 -0
- package/tools/lib/tools.d.ts +1 -1
- package/signals/lib/component-content.signal.d.ts +0 -1
package/styles/components.scss
CHANGED
@@ -2,7 +2,8 @@
|
|
2
2
|
@use "../components/lib/coer-accordion/coer-accordion.component.scss";
|
3
3
|
@use "../components/lib/coer-button/coer-button.component.scss";
|
4
4
|
@use "../components/lib/coer-checkbox/coer-checkbox.component.scss";
|
5
|
-
@use "../components/lib/coer-grid/coer-grid.component.scss";
|
5
|
+
@use "../components/lib/coer-grid/coer-grid.component.scss";
|
6
|
+
@use "../components/lib/coer-grid/coer-grid-body/coer-grid-body.component.scss";
|
6
7
|
@use "../components/lib/coer-list/coer-list.component.scss";
|
7
8
|
@use "../components/lib/coer-modal/coer-modal.component.scss";
|
8
9
|
@use "../components/lib/coer-page-title/coer-page-title.component.scss";
|
@@ -50,7 +51,7 @@ div.coer-form-field-component {
|
|
50
51
|
|
51
52
|
mat-form-field {
|
52
53
|
div.mat-mdc-text-field-wrapper.mdc-text-field {
|
53
|
-
background-color: var(--inputs-inner)
|
54
|
+
background-color: var(--inputs-inner);
|
54
55
|
border-top-left-radius: inherit !important;
|
55
56
|
border-top-right-radius: inherit !important;
|
56
57
|
|
@@ -189,10 +190,10 @@ div.coer-form-field-component {
|
|
189
190
|
//Dropdown
|
190
191
|
div.dropdown-options {
|
191
192
|
position: absolute !important;
|
192
|
-
top: 40px
|
193
|
+
top: 40px;
|
193
194
|
left: 0px !important;
|
194
195
|
right: 0px !important;
|
195
|
-
border:
|
196
|
+
border: 2px solid var(--inputs-inner) !important;
|
196
197
|
border-top: none !important;
|
197
198
|
border-radius: 0px 0px 10px 10px !important;
|
198
199
|
padding: 0px !important;
|
@@ -264,26 +265,34 @@ div.coer-form-field-component {
|
|
264
265
|
|
265
266
|
|
266
267
|
//Inner Grid
|
267
|
-
coer-grid
|
268
|
-
mat-form-field
|
269
|
-
|
268
|
+
coer-grid {
|
269
|
+
table tbody mat-form-field,
|
270
|
+
table tbody mat-form-field.mat-focused {
|
271
|
+
|
272
|
+
div.mat-mdc-text-field-wrapper,
|
273
|
+
div.mat-mdc-text-field-wrapper.mdc-text-field--focused {
|
270
274
|
background-color: transparent !important;
|
275
|
+
border-radius: 0px !important;
|
271
276
|
padding-left: 9px !important;
|
272
277
|
padding-right: 9px !important;
|
273
278
|
|
274
|
-
div.mdc-
|
275
|
-
|
276
|
-
|
277
|
-
|
279
|
+
div.mat-mdc-form-field-focus-overlay {
|
280
|
+
opacity: 0% !important;
|
281
|
+
}
|
282
|
+
|
283
|
+
div.mdc-line-ripple:not(.mdc-line-ripple--active),
|
284
|
+
div.mdc-line-ripple:not(.mdc-line-ripple--active)::before,
|
285
|
+
div.mdc-line-ripple:not(.mdc-line-ripple--active)::after,
|
286
|
+
div.mdc-line-ripple.actived-component:not(.mdc-line-ripple--active)::before {
|
278
287
|
border-color: transparent !important;
|
279
288
|
}
|
280
|
-
|
289
|
+
|
281
290
|
div.mat-mdc-form-field-flex {
|
282
|
-
height:
|
283
|
-
|
291
|
+
height: 30px !important;
|
292
|
+
|
284
293
|
div.mat-mdc-form-field-infix {
|
285
|
-
height:
|
286
|
-
|
294
|
+
height: 30px !important;
|
295
|
+
|
287
296
|
input {
|
288
297
|
margin-top: 3px !important;
|
289
298
|
font-size: 14px !important;
|
@@ -291,39 +300,46 @@ coer-grid table tbody tr td {
|
|
291
300
|
}
|
292
301
|
}
|
293
302
|
}
|
294
|
-
|
303
|
+
|
295
304
|
span.icon-container {
|
296
305
|
transform: translate(-5px, -6px) !important;
|
297
|
-
}
|
306
|
+
}
|
298
307
|
}
|
299
|
-
|
308
|
+
|
309
|
+
table tbody div.dropdown-options {
|
310
|
+
top: 30px !important;
|
311
|
+
}
|
312
|
+
}
|
300
313
|
|
301
314
|
|
302
315
|
//DatePicker
|
303
|
-
.cdk-overlay-container {
|
304
|
-
|
305
|
-
|
316
|
+
// .cdk-overlay-container {
|
317
|
+
// width: 0px !important;
|
318
|
+
// height: 0px !important;
|
306
319
|
|
307
|
-
|
308
|
-
|
309
|
-
|
320
|
+
// .cdk-overlay-backdrop {
|
321
|
+
// position: relative !important;
|
322
|
+
// }
|
310
323
|
|
311
|
-
|
312
|
-
|
313
|
-
|
324
|
+
// .cdk-overlay-connected-position-bounding-box {
|
325
|
+
// width: 0px !important;
|
326
|
+
// height: 0px !important;
|
314
327
|
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
}
|
328
|
+
// .cdk-overlay-pane.mat-datepicker-popup {
|
329
|
+
// .mat-datepicker-content {
|
330
|
+
// .mat-datepicker-content-container {
|
331
|
+
// background-color: white !important;
|
332
|
+
// border: 1px solid lightgray !important;
|
333
|
+
// }
|
334
|
+
// }
|
335
|
+
// }
|
336
|
+
// }
|
337
|
+
// }
|
325
338
|
|
326
339
|
|
340
|
+
coer-switch,
|
341
|
+
coer-textbox,
|
342
|
+
coer-numberbox,
|
327
343
|
coer-dropdown,
|
328
344
|
coer-selectbox {
|
329
345
|
display: contents !important;
|
package/styles/displays.scss
CHANGED
package/styles/paragraphs.scss
CHANGED
@@ -13,6 +13,19 @@
|
|
13
13
|
}
|
14
14
|
|
15
15
|
|
16
|
+
@each $key, $value in (
|
17
|
+
'' : break-word,
|
18
|
+
'-none' : keep-all,
|
19
|
+
'-all' : break-all,
|
20
|
+
'-inherit' : inherit,
|
21
|
+
'-normal' : normal
|
22
|
+
) {
|
23
|
+
.#{$breakpoint}word-break#{$key} {
|
24
|
+
word-break: $value !important;
|
25
|
+
}
|
26
|
+
}
|
27
|
+
|
28
|
+
|
16
29
|
@each $key, $value in (
|
17
30
|
'left' : left,
|
18
31
|
'center' : center,
|
@@ -6,4 +6,6 @@ export declare class Numbers {
|
|
6
6
|
static IsNotNumber(value: any): boolean;
|
7
7
|
/** Return a string with numeric format */
|
8
8
|
static GetNumericFormat(value: string | number | null | undefined, decimals?: number): string;
|
9
|
+
/** Return a string with currency format */
|
10
|
+
static GetCurrencyFormat(value: string | number | null | undefined, symbol?: string, currency?: string): string;
|
9
11
|
}
|
package/tools/lib/tools.d.ts
CHANGED
@@ -15,7 +15,7 @@ export declare const Tools: {
|
|
15
15
|
/** Break reference of a object or array */
|
16
16
|
BreakReference: <T>(object: T) => T;
|
17
17
|
/** Get properties of an object */
|
18
|
-
GetPropertyList: <T
|
18
|
+
GetPropertyList: <T>(object: T | object | null | undefined) => string[];
|
19
19
|
/** Wait the time indicated */
|
20
20
|
Sleep: (milliseconds?: number, reference?: string | null) => Promise<void>;
|
21
21
|
/** Send text to the computer's clipboard */
|
@@ -1 +0,0 @@
|
|
1
|
-
export declare const componentContentSIGNAL: import("@angular/core").WritableSignal<string>;
|