@solcre-org/core-ui 2.15.23 → 2.15.25
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/assets/css/inc/components/calendar.css +9 -0
- package/assets/css/inc/components/fixed-actions.css +1 -1
- package/assets/css/inc/components/header-mobile.css +1 -0
- package/assets/css/inc/components/modal.css +4 -9
- package/assets/css/inc/components/switch.css +1 -0
- package/assets/css/inc/objects/layout.styles.css +1 -1
- package/fesm2022/solcre-org-core-ui.mjs +164 -27
- package/fesm2022/solcre-org-core-ui.mjs.map +1 -1
- package/index.d.ts +27 -3
- package/package.json +1 -1
|
@@ -62,6 +62,7 @@
|
|
|
62
62
|
|
|
63
63
|
.c-calendar__day.is-current{
|
|
64
64
|
color: var(--color-neutral-100);
|
|
65
|
+
font-weight: 800;
|
|
65
66
|
}
|
|
66
67
|
.c-calendar__day.is-current::before{
|
|
67
68
|
background-color: hsl( var(--_color-main-hsl) );
|
|
@@ -70,4 +71,12 @@
|
|
|
70
71
|
.c-calendar__day.is-current:hover::before{
|
|
71
72
|
background-color: hsl( var(--color-hover-hsl) );
|
|
72
73
|
opacity: 1;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
@media (min-width: 112.5rem) /* 1800px */ {
|
|
77
|
+
|
|
78
|
+
.c-calendar{
|
|
79
|
+
--_fz: var(--fz-100);
|
|
80
|
+
}
|
|
81
|
+
|
|
73
82
|
}
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
background-color: var(--color-neutral-100);
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
.c-fixed-actions__btn.c-fixed-actions__btn--
|
|
47
|
+
.c-fixed-actions__btn.c-fixed-actions__btn--primary {
|
|
48
48
|
background-color: hsl(var(--_color-main-hsl));
|
|
49
49
|
border-color: hsl(var(--_color-main-hsl));
|
|
50
50
|
color: var(--color-neutral-100);
|
|
@@ -262,6 +262,7 @@ body:has(.c-modal.is-visible) {
|
|
|
262
262
|
--_holder-px: calc(var(--wrapper-x)*1.2);
|
|
263
263
|
--_holder-w: calc(100% - var(--_ouside-padding)*2);
|
|
264
264
|
--_header-py: 1.8rem;
|
|
265
|
+
|
|
265
266
|
}
|
|
266
267
|
|
|
267
268
|
.c-modal.is-visible .c-modal__holder {
|
|
@@ -272,10 +273,6 @@ body:has(.c-modal.is-visible) {
|
|
|
272
273
|
animation: hidemodalMobile var(--_modal-animation-out) ease-out forwards;
|
|
273
274
|
}
|
|
274
275
|
|
|
275
|
-
.c-modal__close {
|
|
276
|
-
color: var(--app-main-header-mobile-text, inherit);
|
|
277
|
-
}
|
|
278
|
-
|
|
279
276
|
.c-modal__holder {
|
|
280
277
|
height: auto;
|
|
281
278
|
top: auto;
|
|
@@ -289,15 +286,13 @@ body:has(.c-modal.is-visible) {
|
|
|
289
286
|
transform: translate3d(0, 100%, 0);
|
|
290
287
|
}
|
|
291
288
|
|
|
292
|
-
.c-modal__header
|
|
293
|
-
.c-modal__bottom {
|
|
289
|
+
.c-modal__header {
|
|
294
290
|
border: none;
|
|
295
291
|
}
|
|
296
292
|
|
|
297
|
-
.c-
|
|
298
|
-
|
|
293
|
+
.c-modal__body{
|
|
294
|
+
padding-top: 0;
|
|
299
295
|
}
|
|
300
|
-
|
|
301
296
|
|
|
302
297
|
}
|
|
303
298
|
|
|
@@ -570,6 +570,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
570
570
|
|
|
571
571
|
class DateFieldComponent extends BaseFieldComponent {
|
|
572
572
|
elementRef;
|
|
573
|
+
minDate = computed(() => {
|
|
574
|
+
const fieldCfg = this.field();
|
|
575
|
+
const dateConfig = fieldCfg.dateConfig;
|
|
576
|
+
if (dateConfig?.allowPastDates === false) {
|
|
577
|
+
const today = new Date();
|
|
578
|
+
return today.toISOString().split('T')[0];
|
|
579
|
+
}
|
|
580
|
+
return dateConfig?.minDate || null;
|
|
581
|
+
});
|
|
582
|
+
maxDate = computed(() => {
|
|
583
|
+
const fieldCfg = this.field();
|
|
584
|
+
const dateConfig = fieldCfg.dateConfig;
|
|
585
|
+
if (dateConfig?.allowFutureDates === false) {
|
|
586
|
+
const today = new Date();
|
|
587
|
+
return today.toISOString().split('T')[0];
|
|
588
|
+
}
|
|
589
|
+
return dateConfig?.maxDate || null;
|
|
590
|
+
});
|
|
573
591
|
constructor(elementRef) {
|
|
574
592
|
super();
|
|
575
593
|
this.elementRef = elementRef;
|
|
@@ -692,11 +710,11 @@ class DateFieldComponent extends BaseFieldComponent {
|
|
|
692
710
|
}
|
|
693
711
|
}
|
|
694
712
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: DateFieldComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
695
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.6", type: DateFieldComponent, isStandalone: true, selector: "core-date-field", usesInheritance: true, hostDirectives: [{ directive: CoreHostDirective }], ngImport: i0, template: "<label class=\"c-entry-item\" [class.c-entry-item--inline]=\"field().inline\">\n <span class=\"c-entry-text\" *ngIf=\"field().label\">\n {{ field().label | translate }}\n @if (hasRequiredValidators()) {\n <span class=\"c-required\">*</span>\n }\n </span>\n\n <span class=\"c-entry-input\"\n [class.is-placeholder]=\"!formControl().value\"\n style=\"--chars: 10\"\n [class.is-invalid]=\"hasError()\">\n \n <input type=\"date\"\n [id]=\"field().key.toString()\"\n [name]=\"field().key.toString()\"\n [formControl]=\"formControl()\"\n (blur)=\"onBlurInput()\"\n [placeholder]=\"(field().placeholder ?? '') | translate\">\n \n <button class=\"c-entry-input__addon icon-calendar-thin\" \n tabindex=\"-1\"\n type=\"button\"\n (click)=\"onCalendarClick($event)\"></button>\n\n \n </span>\n <core-field-errors [errors]=\"errors()\" />\n</label>\n", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i3.TranslatePipe, name: "translate" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: FieldErrorsComponent, selector: "core-field-errors", inputs: ["errors"] }] });
|
|
713
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.6", type: DateFieldComponent, isStandalone: true, selector: "core-date-field", usesInheritance: true, hostDirectives: [{ directive: CoreHostDirective }], ngImport: i0, template: "<label class=\"c-entry-item\" [class.c-entry-item--inline]=\"field().inline\">\n <span class=\"c-entry-text\" *ngIf=\"field().label\">\n {{ field().label | translate }}\n @if (hasRequiredValidators()) {\n <span class=\"c-required\">*</span>\n }\n </span>\n\n <span class=\"c-entry-input\"\n [class.is-placeholder]=\"!formControl().value\"\n style=\"--chars: 10\"\n [class.is-invalid]=\"hasError()\">\n \n <input type=\"date\"\n [id]=\"field().key.toString()\"\n [name]=\"field().key.toString()\"\n [formControl]=\"formControl()\"\n [min]=\"minDate()\"\n [max]=\"maxDate()\"\n (blur)=\"onBlurInput()\"\n [placeholder]=\"(field().placeholder ?? '') | translate\">\n \n <button class=\"c-entry-input__addon icon-calendar-thin\" \n tabindex=\"-1\"\n type=\"button\"\n (click)=\"onCalendarClick($event)\"></button>\n\n \n </span>\n <core-field-errors [errors]=\"errors()\" />\n</label>\n", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i3.TranslatePipe, name: "translate" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: FieldErrorsComponent, selector: "core-field-errors", inputs: ["errors"] }] });
|
|
696
714
|
}
|
|
697
715
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: DateFieldComponent, decorators: [{
|
|
698
716
|
type: Component,
|
|
699
|
-
args: [{ selector: 'core-date-field', standalone: true, imports: [CommonModule, FormsModule, TranslateModule, ReactiveFormsModule, FieldErrorsComponent], hostDirectives: [CoreHostDirective], template: "<label class=\"c-entry-item\" [class.c-entry-item--inline]=\"field().inline\">\n <span class=\"c-entry-text\" *ngIf=\"field().label\">\n {{ field().label | translate }}\n @if (hasRequiredValidators()) {\n <span class=\"c-required\">*</span>\n }\n </span>\n\n <span class=\"c-entry-input\"\n [class.is-placeholder]=\"!formControl().value\"\n style=\"--chars: 10\"\n [class.is-invalid]=\"hasError()\">\n \n <input type=\"date\"\n [id]=\"field().key.toString()\"\n [name]=\"field().key.toString()\"\n [formControl]=\"formControl()\"\n (blur)=\"onBlurInput()\"\n [placeholder]=\"(field().placeholder ?? '') | translate\">\n \n <button class=\"c-entry-input__addon icon-calendar-thin\" \n tabindex=\"-1\"\n type=\"button\"\n (click)=\"onCalendarClick($event)\"></button>\n\n \n </span>\n <core-field-errors [errors]=\"errors()\" />\n</label>\n" }]
|
|
717
|
+
args: [{ selector: 'core-date-field', standalone: true, imports: [CommonModule, FormsModule, TranslateModule, ReactiveFormsModule, FieldErrorsComponent], hostDirectives: [CoreHostDirective], template: "<label class=\"c-entry-item\" [class.c-entry-item--inline]=\"field().inline\">\n <span class=\"c-entry-text\" *ngIf=\"field().label\">\n {{ field().label | translate }}\n @if (hasRequiredValidators()) {\n <span class=\"c-required\">*</span>\n }\n </span>\n\n <span class=\"c-entry-input\"\n [class.is-placeholder]=\"!formControl().value\"\n style=\"--chars: 10\"\n [class.is-invalid]=\"hasError()\">\n \n <input type=\"date\"\n [id]=\"field().key.toString()\"\n [name]=\"field().key.toString()\"\n [formControl]=\"formControl()\"\n [min]=\"minDate()\"\n [max]=\"maxDate()\"\n (blur)=\"onBlurInput()\"\n [placeholder]=\"(field().placeholder ?? '') | translate\">\n \n <button class=\"c-entry-input__addon icon-calendar-thin\" \n tabindex=\"-1\"\n type=\"button\"\n (click)=\"onCalendarClick($event)\"></button>\n\n \n </span>\n <core-field-errors [errors]=\"errors()\" />\n</label>\n" }]
|
|
700
718
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
701
719
|
|
|
702
720
|
var TimeInterval;
|
|
@@ -10845,6 +10863,86 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
10845
10863
|
}]
|
|
10846
10864
|
}] });
|
|
10847
10865
|
|
|
10866
|
+
class TableFixedActionsService {
|
|
10867
|
+
actionsMap = signal(new Map());
|
|
10868
|
+
activeTableId = signal(null);
|
|
10869
|
+
setFixedActions(tableId, actions) {
|
|
10870
|
+
const currentMap = new Map(this.actionsMap());
|
|
10871
|
+
currentMap.set(tableId, actions);
|
|
10872
|
+
this.actionsMap.set(currentMap);
|
|
10873
|
+
this.activeTableId.set(tableId);
|
|
10874
|
+
}
|
|
10875
|
+
getActiveTableId() {
|
|
10876
|
+
return this.activeTableId();
|
|
10877
|
+
}
|
|
10878
|
+
setActiveTableId(tableId) {
|
|
10879
|
+
this.activeTableId.set(tableId);
|
|
10880
|
+
}
|
|
10881
|
+
getFixedActions(tableId) {
|
|
10882
|
+
const currentMap = this.actionsMap();
|
|
10883
|
+
return currentMap.get(tableId) || [];
|
|
10884
|
+
}
|
|
10885
|
+
getActiveTableActions() {
|
|
10886
|
+
const activeId = this.activeTableId();
|
|
10887
|
+
if (!activeId)
|
|
10888
|
+
return [];
|
|
10889
|
+
return this.getFixedActions(activeId);
|
|
10890
|
+
}
|
|
10891
|
+
getFixedActionsSignal(tableId) {
|
|
10892
|
+
return computed(() => {
|
|
10893
|
+
const currentMap = this.actionsMap();
|
|
10894
|
+
return currentMap.get(tableId) || [];
|
|
10895
|
+
});
|
|
10896
|
+
}
|
|
10897
|
+
getActiveTableActionsSignal() {
|
|
10898
|
+
return computed(() => {
|
|
10899
|
+
const activeId = this.activeTableId();
|
|
10900
|
+
if (!activeId)
|
|
10901
|
+
return [];
|
|
10902
|
+
const currentMap = this.actionsMap();
|
|
10903
|
+
return currentMap.get(activeId) || [];
|
|
10904
|
+
});
|
|
10905
|
+
}
|
|
10906
|
+
getAllFixedActions() {
|
|
10907
|
+
const currentMap = this.actionsMap();
|
|
10908
|
+
const allActions = [];
|
|
10909
|
+
currentMap.forEach((actions) => {
|
|
10910
|
+
allActions.push(...actions);
|
|
10911
|
+
});
|
|
10912
|
+
return allActions;
|
|
10913
|
+
}
|
|
10914
|
+
getAllFixedActionsSignal() {
|
|
10915
|
+
return computed(() => {
|
|
10916
|
+
const currentMap = this.actionsMap();
|
|
10917
|
+
const allActions = [];
|
|
10918
|
+
currentMap.forEach((actions) => {
|
|
10919
|
+
allActions.push(...actions);
|
|
10920
|
+
});
|
|
10921
|
+
return allActions;
|
|
10922
|
+
});
|
|
10923
|
+
}
|
|
10924
|
+
clearFixedActions(tableId) {
|
|
10925
|
+
const currentMap = new Map(this.actionsMap());
|
|
10926
|
+
currentMap.delete(tableId);
|
|
10927
|
+
this.actionsMap.set(currentMap);
|
|
10928
|
+
if (this.activeTableId() === tableId) {
|
|
10929
|
+
this.activeTableId.set(null);
|
|
10930
|
+
}
|
|
10931
|
+
}
|
|
10932
|
+
clearAllFixedActions() {
|
|
10933
|
+
this.actionsMap.set(new Map());
|
|
10934
|
+
this.activeTableId.set(null);
|
|
10935
|
+
}
|
|
10936
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: TableFixedActionsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
10937
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: TableFixedActionsService, providedIn: 'root' });
|
|
10938
|
+
}
|
|
10939
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: TableFixedActionsService, decorators: [{
|
|
10940
|
+
type: Injectable,
|
|
10941
|
+
args: [{
|
|
10942
|
+
providedIn: 'root'
|
|
10943
|
+
}]
|
|
10944
|
+
}] });
|
|
10945
|
+
|
|
10848
10946
|
class MobileResolutionService {
|
|
10849
10947
|
DEFAULT_MOBILE_BREAKPOINT = 768;
|
|
10850
10948
|
DEFAULT_CHECK_INTERVAL = 200;
|
|
@@ -11234,13 +11332,14 @@ class HeaderService {
|
|
|
11234
11332
|
return action.mobileConfig.showInsideModal === true;
|
|
11235
11333
|
}).map(action => ({
|
|
11236
11334
|
id: action.id,
|
|
11237
|
-
label: action.label,
|
|
11335
|
+
label: action.mobileConfig?.mobileLabel || action.label,
|
|
11238
11336
|
icon: action.icon,
|
|
11239
11337
|
class: action.class,
|
|
11240
11338
|
callback: action.callback,
|
|
11241
11339
|
requiredPermission: action.requiredPermission,
|
|
11242
11340
|
visible: action.visible,
|
|
11243
|
-
disabled: action.disabled
|
|
11341
|
+
disabled: action.disabled,
|
|
11342
|
+
mobileConfig: action.mobileConfig
|
|
11244
11343
|
}));
|
|
11245
11344
|
});
|
|
11246
11345
|
}
|
|
@@ -12181,6 +12280,7 @@ class GenericTableComponent {
|
|
|
12181
12280
|
mobileResolutionService = inject(MobileResolutionService);
|
|
12182
12281
|
fixedActionsMobileModalService = inject(FixedActionsMobileModalService);
|
|
12183
12282
|
translationService = inject(TranslateService);
|
|
12283
|
+
tableFixedActionsService = inject(TableFixedActionsService);
|
|
12184
12284
|
TableAction = TableAction;
|
|
12185
12285
|
ModalMode = ModalMode;
|
|
12186
12286
|
ButtonType = ButtonType;
|
|
@@ -12437,7 +12537,7 @@ class GenericTableComponent {
|
|
|
12437
12537
|
actions.push(...outsideGlobalActions);
|
|
12438
12538
|
const modalActions = [];
|
|
12439
12539
|
const createAction = this.actions().find(a => a.action === TableAction.CREATE);
|
|
12440
|
-
if (createAction && !this.getMobileShowInHeader(createAction) && !this.getMobileShowOutsideFixedActions(createAction)) {
|
|
12540
|
+
if (createAction && createAction.mobileConfig?.showInsideModal !== false && !this.getMobileShowInHeader(createAction) && !this.getMobileShowOutsideFixedActions(createAction)) {
|
|
12441
12541
|
if (!createAction.requiredPermission ||
|
|
12442
12542
|
this.permissionService.hasPermission(createAction.requiredPermission.resource, createAction.requiredPermission.action)) {
|
|
12443
12543
|
modalActions.push({
|
|
@@ -12450,7 +12550,12 @@ class GenericTableComponent {
|
|
|
12450
12550
|
});
|
|
12451
12551
|
}
|
|
12452
12552
|
}
|
|
12453
|
-
const globalActionsForModal = this.globalActions().filter(ga =>
|
|
12553
|
+
const globalActionsForModal = this.globalActions().filter(ga => {
|
|
12554
|
+
if (ga.mobileConfig?.showInsideModal === false) {
|
|
12555
|
+
return false;
|
|
12556
|
+
}
|
|
12557
|
+
return this.getMobileShowInsideModal(ga) || (!this.getMobileShowInHeader(ga) && !this.getMobileShowOutsideFixedActions(ga));
|
|
12558
|
+
});
|
|
12454
12559
|
modalActions.push(...globalActionsForModal.map(globalAction => ({
|
|
12455
12560
|
icon: globalAction.icon,
|
|
12456
12561
|
label: globalAction.label,
|
|
@@ -12464,7 +12569,7 @@ class GenericTableComponent {
|
|
|
12464
12569
|
})));
|
|
12465
12570
|
if (modalActions.length > 0) {
|
|
12466
12571
|
const plusButtonAction = {
|
|
12467
|
-
icon: 'icon-
|
|
12572
|
+
icon: 'icon-more-thin',
|
|
12468
12573
|
class: 'c-btn--primary',
|
|
12469
12574
|
tooltip: 'Más acciones',
|
|
12470
12575
|
insideActions: modalActions
|
|
@@ -12540,6 +12645,12 @@ class GenericTableComponent {
|
|
|
12540
12645
|
this.inlineEditService.updateConfig(config);
|
|
12541
12646
|
}
|
|
12542
12647
|
});
|
|
12648
|
+
effect(() => {
|
|
12649
|
+
const actions = this.fixedActionsArray();
|
|
12650
|
+
queueMicrotask(() => {
|
|
12651
|
+
this.tableFixedActionsService.setFixedActions(this.tableId, actions);
|
|
12652
|
+
});
|
|
12653
|
+
});
|
|
12543
12654
|
effect(() => {
|
|
12544
12655
|
const inputData = this.dataInput();
|
|
12545
12656
|
if (!this.endpoint() || this.endpoint() === '') {
|
|
@@ -13150,7 +13261,7 @@ class GenericTableComponent {
|
|
|
13150
13261
|
return false;
|
|
13151
13262
|
}
|
|
13152
13263
|
getFixedActionClass(action) {
|
|
13153
|
-
const classes = ['c-fixed-actions__btn', 'c-btn'];
|
|
13264
|
+
const classes = ['c-fixed-actions__btn', 'c-btn', 'c-icon-btn'];
|
|
13154
13265
|
if (action.class) {
|
|
13155
13266
|
classes.push(action.class);
|
|
13156
13267
|
}
|
|
@@ -13858,6 +13969,7 @@ class GenericTableComponent {
|
|
|
13858
13969
|
window.removeEventListener('createRequested', this.handleCreateRequested);
|
|
13859
13970
|
window.removeEventListener('globalActionTriggered', this.handleGlobalActionTriggered);
|
|
13860
13971
|
window.removeEventListener('popstate', this.handlePopstate);
|
|
13972
|
+
this.tableFixedActionsService.clearFixedActions(this.tableId);
|
|
13861
13973
|
if (!this.inModal()) {
|
|
13862
13974
|
this.headerService.clearHeaderData();
|
|
13863
13975
|
}
|
|
@@ -15851,12 +15963,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
15851
15963
|
// Este archivo es generado automáticamente por scripts/update-version.js
|
|
15852
15964
|
// No edites manualmente este archivo
|
|
15853
15965
|
const VERSION = {
|
|
15854
|
-
full: '2.15.
|
|
15966
|
+
full: '2.15.25',
|
|
15855
15967
|
major: 2,
|
|
15856
15968
|
minor: 15,
|
|
15857
|
-
patch:
|
|
15858
|
-
timestamp: '2025-10-
|
|
15859
|
-
buildDate: '
|
|
15969
|
+
patch: 25,
|
|
15970
|
+
timestamp: '2025-10-28T12:22:29.622Z',
|
|
15971
|
+
buildDate: '28/10/2025'
|
|
15860
15972
|
};
|
|
15861
15973
|
|
|
15862
15974
|
class MainNavComponent {
|
|
@@ -17025,15 +17137,10 @@ class GenericFixedActionsComponent {
|
|
|
17025
17137
|
customClassService = inject(CustomClassService);
|
|
17026
17138
|
elementRef = inject(ElementRef);
|
|
17027
17139
|
cdr = inject(ChangeDetectorRef);
|
|
17028
|
-
|
|
17029
|
-
|
|
17030
|
-
|
|
17031
|
-
this.cdr.markForCheck();
|
|
17032
|
-
});
|
|
17033
|
-
}
|
|
17140
|
+
tableFixedActionsService = inject(TableFixedActionsService);
|
|
17141
|
+
externalActions = input([]);
|
|
17142
|
+
tableId = input(undefined);
|
|
17034
17143
|
ngAfterViewInit() {
|
|
17035
|
-
// Asegurar que los botones tengan pointer-events: auto
|
|
17036
|
-
// aunque el contenedor tenga pointer-events: none
|
|
17037
17144
|
setTimeout(() => {
|
|
17038
17145
|
const buttons = this.elementRef.nativeElement.querySelectorAll('button');
|
|
17039
17146
|
buttons.forEach((button) => {
|
|
@@ -17094,6 +17201,35 @@ class GenericFixedActionsComponent {
|
|
|
17094
17201
|
});
|
|
17095
17202
|
visibleActions = computed(() => {
|
|
17096
17203
|
const actions = [];
|
|
17204
|
+
const external = this.externalActions();
|
|
17205
|
+
if (external && external.length > 0) {
|
|
17206
|
+
external.forEach(action => {
|
|
17207
|
+
if (action.requiredPermission) {
|
|
17208
|
+
if (this.permissionService.hasPermission(action.requiredPermission.resource, action.requiredPermission.action)) {
|
|
17209
|
+
actions.push(action);
|
|
17210
|
+
}
|
|
17211
|
+
}
|
|
17212
|
+
else {
|
|
17213
|
+
actions.push(action);
|
|
17214
|
+
}
|
|
17215
|
+
});
|
|
17216
|
+
}
|
|
17217
|
+
else {
|
|
17218
|
+
const tableIdValue = this.tableId();
|
|
17219
|
+
const tableActions = tableIdValue
|
|
17220
|
+
? this.tableFixedActionsService.getFixedActions(tableIdValue)
|
|
17221
|
+
: this.tableFixedActionsService.getActiveTableActions();
|
|
17222
|
+
tableActions.forEach(action => {
|
|
17223
|
+
if (action.requiredPermission) {
|
|
17224
|
+
if (this.permissionService.hasPermission(action.requiredPermission.resource, action.requiredPermission.action)) {
|
|
17225
|
+
actions.push(action);
|
|
17226
|
+
}
|
|
17227
|
+
}
|
|
17228
|
+
else {
|
|
17229
|
+
actions.push(action);
|
|
17230
|
+
}
|
|
17231
|
+
});
|
|
17232
|
+
}
|
|
17097
17233
|
this.outsideActions().forEach(action => {
|
|
17098
17234
|
actions.push({
|
|
17099
17235
|
id: action.id,
|
|
@@ -17109,8 +17245,8 @@ class GenericFixedActionsComponent {
|
|
|
17109
17245
|
if (modalActionsArray.length > 0) {
|
|
17110
17246
|
const plusButtonAction = {
|
|
17111
17247
|
id: 'header-more-actions',
|
|
17112
|
-
icon: 'icon-
|
|
17113
|
-
class: 'c-btn',
|
|
17248
|
+
icon: 'icon-more-thin',
|
|
17249
|
+
class: 'c-btn c-icon-btn',
|
|
17114
17250
|
tooltip: 'Más acciones',
|
|
17115
17251
|
callback: () => this.openModalActions()
|
|
17116
17252
|
};
|
|
@@ -17154,7 +17290,8 @@ class GenericFixedActionsComponent {
|
|
|
17154
17290
|
},
|
|
17155
17291
|
requiredPermission: action.requiredPermission,
|
|
17156
17292
|
shouldShow: () => action.visible !== false,
|
|
17157
|
-
shouldDisable: () => action.disabled === true
|
|
17293
|
+
shouldDisable: () => action.disabled === true,
|
|
17294
|
+
mobileConfig: action.mobileConfig
|
|
17158
17295
|
}
|
|
17159
17296
|
}));
|
|
17160
17297
|
this.fixedActionsMobileModalService.open({
|
|
@@ -17163,7 +17300,7 @@ class GenericFixedActionsComponent {
|
|
|
17163
17300
|
});
|
|
17164
17301
|
}
|
|
17165
17302
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: GenericFixedActionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
17166
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.6", type: GenericFixedActionsComponent, isStandalone: true, selector: "core-generic-fixed-actions", host: { classAttribute: "c-fixed-actions c-fixed-actions--right" }, ngImport: i0, template: `
|
|
17303
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.6", type: GenericFixedActionsComponent, isStandalone: true, selector: "core-generic-fixed-actions", inputs: { externalActions: { classPropertyName: "externalActions", publicName: "externalActions", isSignal: true, isRequired: false, transformFunction: null }, tableId: { classPropertyName: "tableId", publicName: "tableId", isSignal: true, isRequired: false, transformFunction: null } }, host: { classAttribute: "c-fixed-actions c-fixed-actions--right" }, ngImport: i0, template: `
|
|
17167
17304
|
@if (shouldShow() && visibleActions().length > 0) {
|
|
17168
17305
|
@for (action of visibleActions(); track action.id) {
|
|
17169
17306
|
<button
|
|
@@ -17204,7 +17341,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
17204
17341
|
'class': 'c-fixed-actions c-fixed-actions--right'
|
|
17205
17342
|
}
|
|
17206
17343
|
}]
|
|
17207
|
-
}]
|
|
17344
|
+
}] });
|
|
17208
17345
|
|
|
17209
17346
|
class LayoutComponent {
|
|
17210
17347
|
navItems = input([]);
|
|
@@ -17404,7 +17541,7 @@ class LayoutComponent {
|
|
|
17404
17541
|
this.onLogout.emit();
|
|
17405
17542
|
}
|
|
17406
17543
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: LayoutComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
17407
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.6", type: LayoutComponent, isStandalone: true, selector: "core-layout", inputs: { navItems: { classPropertyName: "navItems", publicName: "navItems", isSignal: true, isRequired: false, transformFunction: null }, bottomNavItems: { classPropertyName: "bottomNavItems", publicName: "bottomNavItems", isSignal: true, isRequired: false, transformFunction: null }, collapsedLogo: { classPropertyName: "collapsedLogo", publicName: "collapsedLogo", isSignal: true, isRequired: false, transformFunction: null }, expandedLogo: { classPropertyName: "expandedLogo", publicName: "expandedLogo", isSignal: true, isRequired: false, transformFunction: null }, logoImagesConfig: { classPropertyName: "logoImagesConfig", publicName: "logoImagesConfig", isSignal: true, isRequired: false, transformFunction: null }, navConfig: { classPropertyName: "navConfig", publicName: "navConfig", isSignal: true, isRequired: false, transformFunction: null }, mobileHeaderConfig: { classPropertyName: "mobileHeaderConfig", publicName: "mobileHeaderConfig", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onLogout: "onLogout", onMobileRefresh: "onMobileRefresh", onMobileFilter: "onMobileFilter" }, host: { listeners: { "window:resize": "onResize($event)" } }, viewQueries: [{ propertyName: "mainNavComponent", first: true, predicate: MainNavComponent, descendants: true }], hostDirectives: [{ directive: CoreHostDirective }], ngImport: i0, template: "<div class=\"o-layout\" \n [attr.data-layout]=\"layoutService.dataAttributes()['data-layout']\"\n [attr.data-sidebar-left]=\"getEffectiveLeftSidebarVisibility()\"\n [attr.data-sidebar-left-w]=\"getEffectiveLeftSidebarWidth()\"\n [attr.data-sidebar-left-h]=\"getEffectiveLeftSidebarHeight()\"\n [attr.data-sidebar-right]=\"getEffectiveRightSidebarVisibility()\"\n [attr.data-sidebar-right-w]=\"getEffectiveRightSidebarWidth()\"\n [attr.data-sidebar-right-h]=\"getEffectiveRightSidebarHeight()\"\n >\n\n <!-- Nav -->\n <core-main-nav class=\"o-layout__nav\" \n (toggleSidebar)=\"toggleSidebar()\"\n [navItems]=\"navItems()\"\n [navConfig]=\"navConfig()\"\n [bottomNavItems]=\"bottomNavItems()\"\n [logoImagesConfig]=\"logoImagesConfig()\"\n [collapsedLogo]=\"collapsedLogo()\"\n [expandedLogo]=\"expandedLogo()\"\n (onLogout)=\"logout()\"\n >\n </core-main-nav>\n\n <!-- Main -->\n <div class=\"o-layout__body\">\n \n @if(shouldShowMobileHeader() && mobileHeaderConfig()) {\n <core-mobile-header\n class=\"o-layout__header c-header-mobile\"\n [config]=\"mobileHeaderConfig()!\"\n (menuClick)=\"onMobileMenuClick()\"\n (refreshClick)=\"onMobileRefreshClick()\"\n (filterClick)=\"onMobileFilterClick()\">\n </core-mobile-header>\n }\n\n @if(layoutStateService.isHeaderVisible$() | async) {\n @if(!shouldShowMobileHeader()) {\n <core-header\n [class]=\"getHeaderClasses()\"\n (filterRequested)=\"onFilterRequested()\"\n (createRequested)=\"onCreateRequested()\"\n (globalActionTriggered)=\"onGlobalActionTriggered($event)\">\n </core-header>\n }\n }\n\n @if(layoutService.sidebarLeft().visibility === SidebarVisibility.SHOW && leftSidebarConfig && shouldRenderLeftSidebar()) {\n <core-generic-sidebar \n class=\"o-layout__sidebar--left\"\n [config]=\"leftSidebarConfig\">\n </core-generic-sidebar>\n }\n\n <ng-content></ng-content>\n\n @if(layoutService.sidebarRight().visibility === SidebarVisibility.SHOW && rightSidebarConfig && shouldRenderRightSidebar()) {\n <core-generic-sidebar \n class=\"o-layout__sidebar--right\"\n [config]=\"rightSidebarConfig\">\n </core-generic-sidebar>\n }\n\n\n @if(dialogService.isOpen$()) {\n <core-confirmation-dialog\n [isOpen]=\"dialogService.isOpen$()\"\n [config]=\"dialogService.config$()\"\n (confirm)=\"dialogService.confirm($event)\"\n (cancel)=\"dialogService.cancel()\"\n ></core-confirmation-dialog>\n }\n\n @if(sidebarMobileModalService.isOpen()) {\n <core-generic-modal\n [isOpen]=\"sidebarMobileModalService.isOpen()\"\n [mode]=\"ModalMode.CREATE\"\n [title]=\"getSidebarModalTitle()\"\n [customTemplate]=\"sidebarModalContentTemplate\"\n (close)=\"sidebarMobileModalService.closeModal()\"\n [buttonConfig]=\"getSidebarModalButtons()\">\n </core-generic-modal>\n }\n\n </div> <!-- .o-layout__body -->\n</div> <!-- .o-layout -->\n\n<!-- Fixed Actions (Mobile) -->\n<core-generic-fixed-actions class=\"c-fixed-actions c-fixed-actions--right\"/>\n\n<!-- Fixed Actions Mobile Modal -->\n<core-fixed-actions-mobile-modal />\n\n<!-- Sidebar Custom Modal Global -->\n<core-sidebar-custom-modal></core-sidebar-custom-modal>\n\n<!-- Image Modal Global -->\n<core-image-modal></core-image-modal>\n\n<!-- Gallery Modal Global -->\n<core-gallery-modal></core-gallery-modal>\n\n<!-- ! Refactor: End -->", dependencies: [{ kind: "component", type: MainNavComponent, selector: "core-main-nav", inputs: ["navConfig", "appVersion", "navItems", "bottomNavItems", "isProduction", "logoImagesConfig", "collapsedLogo", "expandedLogo"], outputs: ["onLogout"] }, { kind: "component", type: HeaderComponent, selector: "core-header", outputs: ["filterRequested", "createRequested", "globalActionTriggered"] }, { kind: "component", type: MobileHeaderComponent, selector: "core-mobile-header", inputs: ["config"], outputs: ["menuClick", "refreshClick", "filterClick"] }, { kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "component", type: ConfirmationDialogComponent, selector: "core-confirmation-dialog", inputs: ["isOpen", "config"], outputs: ["confirm", "cancel"] }, { kind: "component", type: GenericSidebarComponent, selector: "core-generic-sidebar", inputs: ["config", "position", "customTemplate"], outputs: ["itemClicked", "subItemClicked"] }, { kind: "component", type: GenericModalComponent, selector: "core-generic-modal", inputs: ["isOpen", "mode", "data", "fields", "tabs", "steps", "title", "isMultiple", "customTemplate", "customViewTemplate", "finalStepTemplate", "buttonConfig", "modelFactory", "errors", "validators", "customHasChanges", "stepValidationEnabled", "allowFreeNavigation", "autoMarkCompleted"], outputs: ["save", "close", "modalData"] }, { kind: "component", type: ImageModalComponent, selector: "core-image-modal", outputs: ["modalClosed"] }, { kind: "component", type: GalleryModalComponent, selector: "core-gallery-modal" }, { kind: "component", type: SidebarCustomModalComponent, selector: "core-sidebar-custom-modal" }, { kind: "component", type: GenericFixedActionsComponent, selector: "core-generic-fixed-actions" }, { kind: "component", type: FixedActionsMobileModalComponent, selector: "core-fixed-actions-mobile-modal" }] });
|
|
17544
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.6", type: LayoutComponent, isStandalone: true, selector: "core-layout", inputs: { navItems: { classPropertyName: "navItems", publicName: "navItems", isSignal: true, isRequired: false, transformFunction: null }, bottomNavItems: { classPropertyName: "bottomNavItems", publicName: "bottomNavItems", isSignal: true, isRequired: false, transformFunction: null }, collapsedLogo: { classPropertyName: "collapsedLogo", publicName: "collapsedLogo", isSignal: true, isRequired: false, transformFunction: null }, expandedLogo: { classPropertyName: "expandedLogo", publicName: "expandedLogo", isSignal: true, isRequired: false, transformFunction: null }, logoImagesConfig: { classPropertyName: "logoImagesConfig", publicName: "logoImagesConfig", isSignal: true, isRequired: false, transformFunction: null }, navConfig: { classPropertyName: "navConfig", publicName: "navConfig", isSignal: true, isRequired: false, transformFunction: null }, mobileHeaderConfig: { classPropertyName: "mobileHeaderConfig", publicName: "mobileHeaderConfig", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onLogout: "onLogout", onMobileRefresh: "onMobileRefresh", onMobileFilter: "onMobileFilter" }, host: { listeners: { "window:resize": "onResize($event)" } }, viewQueries: [{ propertyName: "mainNavComponent", first: true, predicate: MainNavComponent, descendants: true }], hostDirectives: [{ directive: CoreHostDirective }], ngImport: i0, template: "<div class=\"o-layout\" \n [attr.data-layout]=\"layoutService.dataAttributes()['data-layout']\"\n [attr.data-sidebar-left]=\"getEffectiveLeftSidebarVisibility()\"\n [attr.data-sidebar-left-w]=\"getEffectiveLeftSidebarWidth()\"\n [attr.data-sidebar-left-h]=\"getEffectiveLeftSidebarHeight()\"\n [attr.data-sidebar-right]=\"getEffectiveRightSidebarVisibility()\"\n [attr.data-sidebar-right-w]=\"getEffectiveRightSidebarWidth()\"\n [attr.data-sidebar-right-h]=\"getEffectiveRightSidebarHeight()\"\n >\n\n <!-- Nav -->\n <core-main-nav class=\"o-layout__nav\" \n (toggleSidebar)=\"toggleSidebar()\"\n [navItems]=\"navItems()\"\n [navConfig]=\"navConfig()\"\n [bottomNavItems]=\"bottomNavItems()\"\n [logoImagesConfig]=\"logoImagesConfig()\"\n [collapsedLogo]=\"collapsedLogo()\"\n [expandedLogo]=\"expandedLogo()\"\n (onLogout)=\"logout()\"\n >\n </core-main-nav>\n\n <!-- Main -->\n <div class=\"o-layout__body\">\n \n @if(shouldShowMobileHeader() && mobileHeaderConfig()) {\n <core-mobile-header\n class=\"o-layout__header c-header-mobile\"\n [config]=\"mobileHeaderConfig()!\"\n (menuClick)=\"onMobileMenuClick()\"\n (refreshClick)=\"onMobileRefreshClick()\"\n (filterClick)=\"onMobileFilterClick()\">\n </core-mobile-header>\n }\n\n @if(layoutStateService.isHeaderVisible$() | async) {\n @if(!shouldShowMobileHeader()) {\n <core-header\n [class]=\"getHeaderClasses()\"\n (filterRequested)=\"onFilterRequested()\"\n (createRequested)=\"onCreateRequested()\"\n (globalActionTriggered)=\"onGlobalActionTriggered($event)\">\n </core-header>\n }\n }\n\n @if(layoutService.sidebarLeft().visibility === SidebarVisibility.SHOW && leftSidebarConfig && shouldRenderLeftSidebar()) {\n <core-generic-sidebar \n class=\"o-layout__sidebar--left\"\n [config]=\"leftSidebarConfig\">\n </core-generic-sidebar>\n }\n\n <ng-content></ng-content>\n\n @if(layoutService.sidebarRight().visibility === SidebarVisibility.SHOW && rightSidebarConfig && shouldRenderRightSidebar()) {\n <core-generic-sidebar \n class=\"o-layout__sidebar--right\"\n [config]=\"rightSidebarConfig\">\n </core-generic-sidebar>\n }\n\n\n @if(dialogService.isOpen$()) {\n <core-confirmation-dialog\n [isOpen]=\"dialogService.isOpen$()\"\n [config]=\"dialogService.config$()\"\n (confirm)=\"dialogService.confirm($event)\"\n (cancel)=\"dialogService.cancel()\"\n ></core-confirmation-dialog>\n }\n\n @if(sidebarMobileModalService.isOpen()) {\n <core-generic-modal\n [isOpen]=\"sidebarMobileModalService.isOpen()\"\n [mode]=\"ModalMode.CREATE\"\n [title]=\"getSidebarModalTitle()\"\n [customTemplate]=\"sidebarModalContentTemplate\"\n (close)=\"sidebarMobileModalService.closeModal()\"\n [buttonConfig]=\"getSidebarModalButtons()\">\n </core-generic-modal>\n }\n\n </div> <!-- .o-layout__body -->\n</div> <!-- .o-layout -->\n\n<!-- Fixed Actions (Mobile) -->\n<core-generic-fixed-actions class=\"c-fixed-actions c-fixed-actions--right\"/>\n\n<!-- Fixed Actions Mobile Modal -->\n<core-fixed-actions-mobile-modal />\n\n<!-- Sidebar Custom Modal Global -->\n<core-sidebar-custom-modal></core-sidebar-custom-modal>\n\n<!-- Image Modal Global -->\n<core-image-modal></core-image-modal>\n\n<!-- Gallery Modal Global -->\n<core-gallery-modal></core-gallery-modal>\n\n<!-- ! Refactor: End -->", dependencies: [{ kind: "component", type: MainNavComponent, selector: "core-main-nav", inputs: ["navConfig", "appVersion", "navItems", "bottomNavItems", "isProduction", "logoImagesConfig", "collapsedLogo", "expandedLogo"], outputs: ["onLogout"] }, { kind: "component", type: HeaderComponent, selector: "core-header", outputs: ["filterRequested", "createRequested", "globalActionTriggered"] }, { kind: "component", type: MobileHeaderComponent, selector: "core-mobile-header", inputs: ["config"], outputs: ["menuClick", "refreshClick", "filterClick"] }, { kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "component", type: ConfirmationDialogComponent, selector: "core-confirmation-dialog", inputs: ["isOpen", "config"], outputs: ["confirm", "cancel"] }, { kind: "component", type: GenericSidebarComponent, selector: "core-generic-sidebar", inputs: ["config", "position", "customTemplate"], outputs: ["itemClicked", "subItemClicked"] }, { kind: "component", type: GenericModalComponent, selector: "core-generic-modal", inputs: ["isOpen", "mode", "data", "fields", "tabs", "steps", "title", "isMultiple", "customTemplate", "customViewTemplate", "finalStepTemplate", "buttonConfig", "modelFactory", "errors", "validators", "customHasChanges", "stepValidationEnabled", "allowFreeNavigation", "autoMarkCompleted"], outputs: ["save", "close", "modalData"] }, { kind: "component", type: ImageModalComponent, selector: "core-image-modal", outputs: ["modalClosed"] }, { kind: "component", type: GalleryModalComponent, selector: "core-gallery-modal" }, { kind: "component", type: SidebarCustomModalComponent, selector: "core-sidebar-custom-modal" }, { kind: "component", type: GenericFixedActionsComponent, selector: "core-generic-fixed-actions", inputs: ["externalActions", "tableId"] }, { kind: "component", type: FixedActionsMobileModalComponent, selector: "core-fixed-actions-mobile-modal" }] });
|
|
17408
17545
|
}
|
|
17409
17546
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: LayoutComponent, decorators: [{
|
|
17410
17547
|
type: Component,
|
|
@@ -19567,5 +19704,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
19567
19704
|
* Generated bundle index. Do not edit.
|
|
19568
19705
|
*/
|
|
19569
19706
|
|
|
19570
|
-
export { ALL_COUNTRY_CODES, ActiveFiltersComponent, AgeValidationHelper, AlertComponent, AlertContainerComponent, AlertService, AlertType, ApiConfigurationProvider, BaseFieldComponent, ButtonContext, ButtonSize, ButtonType, COMMON_COUNTRIES, CacheBustingInterceptor, CardComponent, CarouselComponent, ChatMessagePosition, ChatMessageType, CheckboxFieldComponent, ConfigurationModel, ConfirmationDialogComponent, ConfirmationDialogService, CoreHostDirective, CoreManualRefreshComponent, CoreUiHttpLoaderFactory, CoreUiTranslateLoader, CoreUiTranslateService, CountryCode, CustomClassService, DEFAULT_COUNTRIES, DataListComponent, DataListItemComponent, DataStoreService, DateFieldComponent, DateUtility, DatetimeFieldComponent, DialogActions, DocumentAction, DocumentDisplayMode, DocumentFieldComponent, DocumentFieldValidators, DocumentPayloadMode, DropdownComponent, DropdownDirection, DropdownService, DynamicFieldDirective, DynamicFieldsHelper, FieldErrorsComponent, FieldType, FileFieldComponent, FileModel, FilePreviewActionType, FileTemplateModel, FileTemplateType, FileType, FileTypeModel, FileUploadService, FilterModalComponent, FilterService, FilterType, FixedActionPosition, FixedActionsMobileModalComponent, FixedActionsMobileModalService, GalleryAnimationType, GalleryLayoutType, GalleryModalComponent, GalleryModalGlobalService, GenericButtonComponent, GenericChatComponent, GenericChatService, GenericDocumentationComponent, GenericFixedActionsComponent, GenericGalleryComponent, GenericModalComponent, GenericPaginationComponent, GenericRatingComponent, GenericSidebarComponent, GenericSkeletonComponent, GenericStepsComponent, GenericSwitchComponent, GenericTableComponent, GenericTabsComponent, GenericTimelineComponent, GlobalApiConfigService, HeaderComponent, HeaderConfigurationService, HeaderElementType, HeaderService, HttpLoaderFactory, ImageModalComponent, ImageModalService, ImagePreviewComponent, LATIN_AMERICA_COUNTRIES, LayoutAuth, LayoutBreakpoint, LayoutComponent, LayoutService, LayoutStateService, LayoutType, LoaderComponent, LoaderService, MainNavComponent, MainNavService, ManualRefreshService, MobileHeaderComponent, MobileResolutionService, ModalMode, ModelApiService, MultiEntryFieldComponent, MultiEntryOutputFormat, NumberFieldComponent, NumberFieldConfigType, NumberFieldType, NumberRange, PERMISSION_ACTIONS_PROVIDER, PERMISSION_PROVIDER, PERMISSION_RESOURCES_PROVIDER, PaginationService, PasswordFieldComponent, PermissionEnumsService, PermissionModel, PermissionService, PermissionWrapperService, PermissionsActions, PermissionsInterceptor, PermissionsResources, PhoneFieldComponent, ProgressBarComponent, ProgressBarSize, RatingService, RatingSize, RatingType, ResetPasswordModel, RoleModel, SOUTH_AMERICA_COUNTRIES, SelectFieldComponent, ServerSelectFieldComponent, ServerSelectService, SidebarCustomModalComponent, SidebarCustomModalService, SidebarHeight, SidebarMobileModalService, SidebarMobileType, SidebarPosition, SidebarService, SidebarState, SidebarTemplateRegistryService, SidebarVisibility, SidebarWidth, SkeletonAnimation, SkeletonService, SkeletonSize, SkeletonType, SmartFieldComponent, SortDirection, SortMode, StepSize, StepStatus, StepType, StepsService, SwitchFieldComponent, TableAction, TableActionService, TableDataService, TableSortService, TextAreaFieldComponent, TextFieldComponent, TimeFieldComponent, TimeInterval, TimelineService, TimelineStatus, TimelineType, TranslationMergeService, UruguayanDocumentValidationHelper, UsersModel, VERSION, ageValidator, calculateAge, equalToValidator, generateRandomUruguayanDocument, getCountryCodeStrings, getLatestBirthDateForAge, getRandomCi, getUruguayanDocumentValidationDigit, getValidationDigit, isSameDate, isValidCountryCode, provideCoreUiTranslateLoader, providePermissionActions, providePermissionEnums, providePermissionResources, providePermissionService, providePermissionServiceFactory, provideTranslateLoader, random, transform, transformUruguayanDocument, uruguayanDocumentValidator, validate, validateAge, validateCi, validateUruguayanDocument, validationDigit };
|
|
19707
|
+
export { ALL_COUNTRY_CODES, ActiveFiltersComponent, AgeValidationHelper, AlertComponent, AlertContainerComponent, AlertService, AlertType, ApiConfigurationProvider, BaseFieldComponent, ButtonContext, ButtonSize, ButtonType, COMMON_COUNTRIES, CacheBustingInterceptor, CardComponent, CarouselComponent, ChatMessagePosition, ChatMessageType, CheckboxFieldComponent, ConfigurationModel, ConfirmationDialogComponent, ConfirmationDialogService, CoreHostDirective, CoreManualRefreshComponent, CoreUiHttpLoaderFactory, CoreUiTranslateLoader, CoreUiTranslateService, CountryCode, CustomClassService, DEFAULT_COUNTRIES, DataListComponent, DataListItemComponent, DataStoreService, DateFieldComponent, DateUtility, DatetimeFieldComponent, DialogActions, DocumentAction, DocumentDisplayMode, DocumentFieldComponent, DocumentFieldValidators, DocumentPayloadMode, DropdownComponent, DropdownDirection, DropdownService, DynamicFieldDirective, DynamicFieldsHelper, FieldErrorsComponent, FieldType, FileFieldComponent, FileModel, FilePreviewActionType, FileTemplateModel, FileTemplateType, FileType, FileTypeModel, FileUploadService, FilterModalComponent, FilterService, FilterType, FixedActionPosition, FixedActionsMobileModalComponent, FixedActionsMobileModalService, GalleryAnimationType, GalleryLayoutType, GalleryModalComponent, GalleryModalGlobalService, GenericButtonComponent, GenericChatComponent, GenericChatService, GenericDocumentationComponent, GenericFixedActionsComponent, GenericGalleryComponent, GenericModalComponent, GenericPaginationComponent, GenericRatingComponent, GenericSidebarComponent, GenericSkeletonComponent, GenericStepsComponent, GenericSwitchComponent, GenericTableComponent, GenericTabsComponent, GenericTimelineComponent, GlobalApiConfigService, HeaderComponent, HeaderConfigurationService, HeaderElementType, HeaderService, HttpLoaderFactory, ImageModalComponent, ImageModalService, ImagePreviewComponent, LATIN_AMERICA_COUNTRIES, LayoutAuth, LayoutBreakpoint, LayoutComponent, LayoutService, LayoutStateService, LayoutType, LoaderComponent, LoaderService, MainNavComponent, MainNavService, ManualRefreshService, MobileHeaderComponent, MobileResolutionService, ModalMode, ModelApiService, MultiEntryFieldComponent, MultiEntryOutputFormat, NumberFieldComponent, NumberFieldConfigType, NumberFieldType, NumberRange, PERMISSION_ACTIONS_PROVIDER, PERMISSION_PROVIDER, PERMISSION_RESOURCES_PROVIDER, PaginationService, PasswordFieldComponent, PermissionEnumsService, PermissionModel, PermissionService, PermissionWrapperService, PermissionsActions, PermissionsInterceptor, PermissionsResources, PhoneFieldComponent, ProgressBarComponent, ProgressBarSize, RatingService, RatingSize, RatingType, ResetPasswordModel, RoleModel, SOUTH_AMERICA_COUNTRIES, SelectFieldComponent, ServerSelectFieldComponent, ServerSelectService, SidebarCustomModalComponent, SidebarCustomModalService, SidebarHeight, SidebarMobileModalService, SidebarMobileType, SidebarPosition, SidebarService, SidebarState, SidebarTemplateRegistryService, SidebarVisibility, SidebarWidth, SkeletonAnimation, SkeletonService, SkeletonSize, SkeletonType, SmartFieldComponent, SortDirection, SortMode, StepSize, StepStatus, StepType, StepsService, SwitchFieldComponent, TableAction, TableActionService, TableDataService, TableFixedActionsService, TableSortService, TextAreaFieldComponent, TextFieldComponent, TimeFieldComponent, TimeInterval, TimelineService, TimelineStatus, TimelineType, TranslationMergeService, UruguayanDocumentValidationHelper, UsersModel, VERSION, ageValidator, calculateAge, equalToValidator, generateRandomUruguayanDocument, getCountryCodeStrings, getLatestBirthDateForAge, getRandomCi, getUruguayanDocumentValidationDigit, getValidationDigit, isSameDate, isValidCountryCode, provideCoreUiTranslateLoader, providePermissionActions, providePermissionEnums, providePermissionResources, providePermissionService, providePermissionServiceFactory, provideTranslateLoader, random, transform, transformUruguayanDocument, uruguayanDocumentValidator, validate, validateAge, validateCi, validateUruguayanDocument, validationDigit };
|
|
19571
19708
|
//# sourceMappingURL=solcre-org-core-ui.mjs.map
|