@gipisistemas/ngx-core 1.0.23 → 1.0.24

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.
@@ -0,0 +1,95 @@
1
+ @use '../../theming/utils' as utils;
2
+
3
+ @mixin toggle-group-theme($theme: ()) {
4
+ $font-family: utils.get-font-family($theme);
5
+ $font-size: utils.get-font-size($theme);
6
+ $font-color: utils.get-font-color($theme);
7
+
8
+ $white-100: utils.get-color($theme, white, 100);
9
+ $secondary-50: utils.get-color($theme, secondary, 50);
10
+ $secondary-100: utils.get-color($theme, secondary, 100);
11
+ $primary-500: utils.get-color($theme, primary, 500);
12
+ $primary-600: utils.get-color($theme, primary, 500);
13
+
14
+ .g-toggle-group {
15
+ display: flex;
16
+ flex-direction: column;
17
+ gap: 4px;
18
+ font-family: $font-family;
19
+ color: $font-color;
20
+ width: 100%;
21
+ flex: 1;
22
+ }
23
+
24
+ .g-toggle-group-control {
25
+ --toggle-group-gap: 0.4rem;
26
+
27
+ display: flex;
28
+ align-items: stretch;
29
+ width: 100%;
30
+ border-radius: 0.8rem;
31
+ padding: var(--toggle-group-gap);
32
+ background: $secondary-50;
33
+ overflow: hidden;
34
+ position: relative;
35
+
36
+ &.is-empty {
37
+ min-height: 4rem;
38
+ }
39
+
40
+ &.is-disabled {
41
+ opacity: 0.7;
42
+ }
43
+
44
+ .g-toggle-group-control-input {
45
+ display: none;
46
+ }
47
+
48
+ .g-toggle-group-control-label {
49
+ position: relative;
50
+ z-index: 2;
51
+ flex: 1;
52
+ text-align: center;
53
+ padding: 0.4rem 1.2rem;
54
+ font-size: $font-size;
55
+ color: $font-color;
56
+ font-weight: 500;
57
+ cursor: pointer;
58
+ user-select: none;
59
+ white-space: nowrap;
60
+ transition:
61
+ color 0.3s ease,
62
+ opacity 0.2s ease;
63
+
64
+ &.is-selected {
65
+ color: $white-100;
66
+ }
67
+
68
+ &.is-disabled {
69
+ cursor: not-allowed;
70
+ text-decoration: line-through;
71
+ color: $secondary-100;
72
+ }
73
+ }
74
+
75
+ .g-toggle-group-control-slider {
76
+ position: absolute;
77
+ z-index: 1;
78
+ top: var(--toggle-group-gap);
79
+ left: var(--toggle-group-gap);
80
+ height: calc(100% - (var(--toggle-group-gap) * 2));
81
+ border-radius: 0.6rem;
82
+ background-color: $primary-500;
83
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
84
+ transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
85
+
86
+ &.is-disabled {
87
+ background-color: $secondary-100;
88
+ }
89
+
90
+ &:not(.is-disabled):hover {
91
+ background-color: $primary-600;
92
+ }
93
+ }
94
+ }
95
+ }
@@ -22283,6 +22283,203 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
22283
22283
  }]
22284
22284
  }] });
22285
22285
 
22286
+ class ToggleGroup extends BaseControlValueAccessor {
22287
+ constructor() {
22288
+ super();
22289
+ this._controlId = inject(_IdGenerator).getId('gipi-toggle-group-control-');
22290
+ this._uniqueId = inject(_IdGenerator).getId('gipi-toggle-group-');
22291
+ this.label = input('', ...(ngDevMode ? [{ debugName: "label" }] : []));
22292
+ this.placeholder = input('', ...(ngDevMode ? [{ debugName: "placeholder" }] : []));
22293
+ this.help = input('', ...(ngDevMode ? [{ debugName: "help" }] : []));
22294
+ this.hintLabel = input('', ...(ngDevMode ? [{ debugName: "hintLabel" }] : []));
22295
+ this.options = input.required(...(ngDevMode ? [{ debugName: "options" }] : []));
22296
+ this.onFocus = output({ alias: 'focus' });
22297
+ this.onBlur = output({ alias: 'blur' });
22298
+ this.onKeydown = output({ alias: 'keydown' });
22299
+ this.onChange = output({ alias: 'change' });
22300
+ this.selectedIndex = computed(() => {
22301
+ const index = this.options().findIndex((option) => option.value === this.value());
22302
+ return index >= 0 ? index : 0;
22303
+ }, ...(ngDevMode ? [{ debugName: "selectedIndex" }] : []));
22304
+ this.selectedOption = computed(() => this.options().find((option) => option.value === this.value()) ?? null, ...(ngDevMode ? [{ debugName: "selectedOption" }] : []));
22305
+ this.sliderWidth = computed(() => {
22306
+ const options = this.options();
22307
+ if (!options.length) {
22308
+ return '0px';
22309
+ }
22310
+ return `calc((100% - 8px) / ${options.length})`;
22311
+ }, ...(ngDevMode ? [{ debugName: "sliderWidth" }] : []));
22312
+ this.sliderTransform = computed(() => `translateX(${this.selectedIndex() * 100}%)`, ...(ngDevMode ? [{ debugName: "sliderTransform" }] : []));
22313
+ }
22314
+ writeControlValue(value, setModelValue) {
22315
+ const firstValue = this._firstEnabledOptionValue();
22316
+ if (!value) {
22317
+ this.value.set(firstValue);
22318
+ if (setModelValue) {
22319
+ setModelValue(value);
22320
+ }
22321
+ this._changeDetectorRef.markForCheck();
22322
+ return;
22323
+ }
22324
+ const selectedOption = this.options().find((opt) => opt.value === this.value());
22325
+ if (selectedOption?.disabled) {
22326
+ this.value.set(firstValue);
22327
+ if (setModelValue) {
22328
+ setModelValue(value);
22329
+ }
22330
+ this._changeDetectorRef.markForCheck();
22331
+ return;
22332
+ }
22333
+ this.value.set(value);
22334
+ if (setModelValue) {
22335
+ setModelValue(value);
22336
+ }
22337
+ this._changeDetectorRef.markForCheck();
22338
+ }
22339
+ _firstEnabledOptionValue() {
22340
+ const firstEnabledOption = this.options().find((option) => !option.disabled);
22341
+ return firstEnabledOption?.value ?? null;
22342
+ }
22343
+ isOptionDisabled(option) {
22344
+ if (ObjectUtil.isEmpty(option)) {
22345
+ return false;
22346
+ }
22347
+ if (this.$disabled()) {
22348
+ return true;
22349
+ }
22350
+ if (typeof option.disabled === 'function') {
22351
+ return option.disabled(option);
22352
+ }
22353
+ return !!option.disabled;
22354
+ }
22355
+ onHandleOptionClick(option) {
22356
+ if (this.$disabled() || this.isOptionDisabled(option)) {
22357
+ return;
22358
+ }
22359
+ if (this.value() === option.value) {
22360
+ this._onTouched();
22361
+ return;
22362
+ }
22363
+ this.notifyValueChange(option.value);
22364
+ this.markAsTouched();
22365
+ this._changeDetectorRef.markForCheck();
22366
+ }
22367
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ToggleGroup, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
22368
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.16", type: ToggleGroup, isStandalone: true, selector: "gipi-toggle-group", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, help: { classPropertyName: "help", publicName: "help", isSignal: true, isRequired: false, transformFunction: null }, hintLabel: { classPropertyName: "hintLabel", publicName: "hintLabel", isSignal: true, isRequired: false, transformFunction: null }, options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { onFocus: "focus", onBlur: "blur", onKeydown: "keydown", onChange: "change" }, host: { properties: { "attr.id": "id()", "attr.name": "name()", "class.g-toggle-group-disabled": "$disabled()" }, classAttribute: "g-toggle-group" }, providers: [provideValueAccessor(ToggleGroup)], exportAs: ["gToggleGroup"], usesInheritance: true, ngImport: i0, template: `
22369
+ @if (label()) {
22370
+ <gipi-label
22371
+ [controlId]="_controlId"
22372
+ [label]="label()"
22373
+ [help]="help()"
22374
+ [required]="required()"
22375
+ />
22376
+ }
22377
+
22378
+ <div
22379
+ class="g-toggle-group-control"
22380
+ [class.is-empty]="!options().length"
22381
+ [class.is-disabled]="$disabled()"
22382
+ >
22383
+ @for (option of options(); track option.value) {
22384
+ <input
22385
+ class="g-toggle-group-control-input"
22386
+ type="radio"
22387
+ [id]="name() + '-' + $index"
22388
+ [name]="name()"
22389
+ [checked]="value() === option.value"
22390
+ [disabled]="isOptionDisabled(option)"
22391
+ (change)="onHandleOptionClick(option)"
22392
+ />
22393
+
22394
+ <label
22395
+ class="g-toggle-group-control-label"
22396
+ [for]="name() + '-' + $index"
22397
+ [class.is-selected]="value() === option.value"
22398
+ [class.is-disabled]="isOptionDisabled(option)"
22399
+ >
22400
+ {{ option.label }}
22401
+ </label>
22402
+ }
22403
+
22404
+ @if (!!options().length && selectedOption()) {
22405
+ <div
22406
+ class="g-toggle-group-control-slider"
22407
+ [class.is-disabled]="selectedOption()?.disabled"
22408
+ [style.width]="sliderWidth()"
22409
+ [style.transform]="sliderTransform()"
22410
+ ></div>
22411
+ }
22412
+ </div>
22413
+ `, isInline: true, styles: [""], dependencies: [{ kind: "ngmodule", type: LabelModule }, { kind: "component", type: Label, selector: "gipi-label", inputs: ["id", "name", "controlId", "label", "help", "required"], exportAs: ["gLabel"] }, { kind: "ngmodule", type: HelpfulTipModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
22414
+ }
22415
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ToggleGroup, decorators: [{
22416
+ type: Component,
22417
+ args: [{ selector: 'gipi-toggle-group', exportAs: 'gToggleGroup', template: `
22418
+ @if (label()) {
22419
+ <gipi-label
22420
+ [controlId]="_controlId"
22421
+ [label]="label()"
22422
+ [help]="help()"
22423
+ [required]="required()"
22424
+ />
22425
+ }
22426
+
22427
+ <div
22428
+ class="g-toggle-group-control"
22429
+ [class.is-empty]="!options().length"
22430
+ [class.is-disabled]="$disabled()"
22431
+ >
22432
+ @for (option of options(); track option.value) {
22433
+ <input
22434
+ class="g-toggle-group-control-input"
22435
+ type="radio"
22436
+ [id]="name() + '-' + $index"
22437
+ [name]="name()"
22438
+ [checked]="value() === option.value"
22439
+ [disabled]="isOptionDisabled(option)"
22440
+ (change)="onHandleOptionClick(option)"
22441
+ />
22442
+
22443
+ <label
22444
+ class="g-toggle-group-control-label"
22445
+ [for]="name() + '-' + $index"
22446
+ [class.is-selected]="value() === option.value"
22447
+ [class.is-disabled]="isOptionDisabled(option)"
22448
+ >
22449
+ {{ option.label }}
22450
+ </label>
22451
+ }
22452
+
22453
+ @if (!!options().length && selectedOption()) {
22454
+ <div
22455
+ class="g-toggle-group-control-slider"
22456
+ [class.is-disabled]="selectedOption()?.disabled"
22457
+ [style.width]="sliderWidth()"
22458
+ [style.transform]="sliderTransform()"
22459
+ ></div>
22460
+ }
22461
+ </div>
22462
+ `, changeDetection: ChangeDetectionStrategy.OnPush, host: {
22463
+ '[attr.id]': 'id()',
22464
+ '[attr.name]': 'name()',
22465
+ '[class.g-toggle-group-disabled]': '$disabled()',
22466
+ class: 'g-toggle-group',
22467
+ }, providers: [provideValueAccessor(ToggleGroup)], imports: [LabelModule, HelpfulTipModule] }]
22468
+ }], ctorParameters: () => [], propDecorators: { label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], placeholder: [{ type: i0.Input, args: [{ isSignal: true, alias: "placeholder", required: false }] }], help: [{ type: i0.Input, args: [{ isSignal: true, alias: "help", required: false }] }], hintLabel: [{ type: i0.Input, args: [{ isSignal: true, alias: "hintLabel", required: false }] }], options: [{ type: i0.Input, args: [{ isSignal: true, alias: "options", required: true }] }], onFocus: [{ type: i0.Output, args: ["focus"] }], onBlur: [{ type: i0.Output, args: ["blur"] }], onKeydown: [{ type: i0.Output, args: ["keydown"] }], onChange: [{ type: i0.Output, args: ["change"] }] } });
22469
+
22470
+ class ToggleGroupModule {
22471
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ToggleGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
22472
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.16", ngImport: i0, type: ToggleGroupModule, imports: [ToggleGroup], exports: [ToggleGroup] }); }
22473
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ToggleGroupModule, imports: [ToggleGroup] }); }
22474
+ }
22475
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ToggleGroupModule, decorators: [{
22476
+ type: NgModule,
22477
+ args: [{
22478
+ imports: [ToggleGroup],
22479
+ exports: [ToggleGroup],
22480
+ }]
22481
+ }] });
22482
+
22286
22483
  class ToggleSwitch extends BaseControlValueAccessor {
22287
22484
  constructor() {
22288
22485
  super();
@@ -24505,5 +24702,5 @@ function useRouteQueryParamsMap() {
24505
24702
  * Generated bundle index. Do not edit.
24506
24703
  */
24507
24704
 
24508
- export { ActionRow, ActionRowModule, AllowedPublicRoutesToken, AppMessagesToken, ArrayUtil, AutoFocusDirective, AutoFocusModule, Avatar, AvatarModule, BaseAppliedFilter, BaseAuthService, BaseAuthServiceToken, BaseAuthorityModel, BaseComponent, BaseControlValueAccessor, BaseCrudService, BaseFilterModel, BaseFormComponent, BaseFormDialogComponent, BaseFormDialogDataModel, BaseInput, BaseListComponent, BaseListDialogComponent, BaseListDialogDataModel, BaseMenuModel, BaseModel, BasePageModel, BaseQueryParams, BaseReportComponent, BaseService, BaseSortModel, BaseTokenModel, BaseUserModel, Button, ButtonGroup, ButtonGroupModule, ButtonModule, CAPITALIZE_ACRONYMS, CAPITALIZE_PREPOSITIONS, CURRENCY_OPTIONS_DEFAULT, CacheableService, Checkbox, CheckboxGroup, CheckboxModule, Chips, ChipsModule, ConfirmDialog, ConfirmDialogIcon, ConfirmDialogModel, ConfirmDialogModule, ConfirmDialogService, CssUtil, CurrencyDirective, CurrencyModule, CurrencyUtil, DEFAULT_MESSAGES, DatePicker, DatePickerModule, DateUtil, Debounce, DialogConfig, DialogService, DisableAutoFillDirective, DocumentPipe, DocumentUtil, EchartsConfigToken, EchartsDirective, EchartsModule, EmailUtil, Empty, EmptyModule, ExpansionPanel, ExpansionPanelModule, Fieldset, FieldsetModule, FileDragAndDrop, FileDragAndDropModule, FileSaverService, FilterListbox, FilterListboxModule, FilterPersistenceService, FilterService, FilterURLService, FlexLayoutDirective, FlexLayoutModule, FormField, FormFieldErrors, FormFieldInputDirective, FormFieldModule, FormFieldPrefixDirective, FormFieldSuffixDirective, FormWrapper, FormWrapperDialog, FormWrapperModule, HelpfulTip, HelpfulTipModule, Icon, IconModule, Input, InputCurrency, InputCurrencyModule, InputFile, InputFileModule, InputGroup, InputGroupAddon, InputGroupModule, InputModule, InputPhone, InputPhoneModule, Label, LabelModule, Loading, LoadingModule, LocalStorageToken, Lozenge, LozengeModule, MoneyPipe, NomalizeTextPipe, NumberToWordsUtil, NumberUtil, ObjectUtil, PAGINATOR_INTL_PT_BR, PageAdjustService, Paginator, PaginatorIntlToken, PaginatorModule, PaginatorPipe, PasswordRequirements, PasswordRequirementsModule, PasswordValidationUtil, PdfViewer, PdfViewerDialog, PdfViewerDialogModel, PdfViewerDialogModule, PdfViewerService, PhoneUtil, Popover, PopoverModule, PopoverTargetDirective, PopoverTriggerDirective, RadioGroup, RadioGroupModule, STATES_DATA, ScrollFadeDirective, ScrollFadeModule, SelectClientSide, SelectEnum, SelectModule, SelectServerSide, SessionStorageToken, Sidenav, SidenavContainer, SidenavContent, SidenavMenuItem, SidenavModule, Skeleton, SkeletonModule, SplitButton, SplitButtonModule, StateUtil, Step, Stepper, StepperModule, StringUtil, SvgRegisterService, Tab, TabGroup, Table, TableColumn, TableColumnBuilder, TableMenuItemContext, TableMenuItemContextBuilder, TableModule, TabsModule, Tag, TagModule, TextCapitalizeDirective, TextCapitalizeModule, TextEllipsisDirective, TextEllipsisModule, Textarea, TextareaModule, Toast, ToastIcon, ToastModel, ToastModule, ToastService, ToggleSwitch, ToggleSwitchModule, Toolbar, ToolbarModule, TooltipDirective, TooltipModule, TopNav, TopNavModule, TreeTable, TreeTableColumn, TreeTableColumnBuilder, TreeTableMenuItemContext, TreeTableMenuItemContextBuilder, TreeTableModule, UUIDUtil, UserProfile, UserProfileModule, animationFlyInOut, authChildGuard, authGuard, authInterceptor, eConfirmDialogTypes, eCurrencyInputMode, eMenuType, eSortDirection, eToastTypes, eTypeOperationCloseDialogEnum, eTypeOperationDialog, entityFilterSignal, errorInterceptor, filterSignal, provideAllowedPublicRoutes, provideAppMessages, provideBaseAuthService, provideEchartsCore, providePaginatorIntl, provideValueAccessor, publicChildGuard, publicGuard, rotateAnimation, rotateArrowTreeTableExpand, stateNamesMap, transformFilterSignal, useFilterPersistence, useLinkedFilter, useRouteParam, useRouteParamsMap, useRouteQueryParams, useRouteQueryParamsMap, useSearch };
24705
+ export { ActionRow, ActionRowModule, AllowedPublicRoutesToken, AppMessagesToken, ArrayUtil, AutoFocusDirective, AutoFocusModule, Avatar, AvatarModule, BaseAppliedFilter, BaseAuthService, BaseAuthServiceToken, BaseAuthorityModel, BaseComponent, BaseControlValueAccessor, BaseCrudService, BaseFilterModel, BaseFormComponent, BaseFormDialogComponent, BaseFormDialogDataModel, BaseInput, BaseListComponent, BaseListDialogComponent, BaseListDialogDataModel, BaseMenuModel, BaseModel, BasePageModel, BaseQueryParams, BaseReportComponent, BaseService, BaseSortModel, BaseTokenModel, BaseUserModel, Button, ButtonGroup, ButtonGroupModule, ButtonModule, CAPITALIZE_ACRONYMS, CAPITALIZE_PREPOSITIONS, CURRENCY_OPTIONS_DEFAULT, CacheableService, Checkbox, CheckboxGroup, CheckboxModule, Chips, ChipsModule, ConfirmDialog, ConfirmDialogIcon, ConfirmDialogModel, ConfirmDialogModule, ConfirmDialogService, CssUtil, CurrencyDirective, CurrencyModule, CurrencyUtil, DEFAULT_MESSAGES, DatePicker, DatePickerModule, DateUtil, Debounce, DialogConfig, DialogService, DisableAutoFillDirective, DocumentPipe, DocumentUtil, EchartsConfigToken, EchartsDirective, EchartsModule, EmailUtil, Empty, EmptyModule, ExpansionPanel, ExpansionPanelModule, Fieldset, FieldsetModule, FileDragAndDrop, FileDragAndDropModule, FileSaverService, FilterListbox, FilterListboxModule, FilterPersistenceService, FilterService, FilterURLService, FlexLayoutDirective, FlexLayoutModule, FormField, FormFieldErrors, FormFieldInputDirective, FormFieldModule, FormFieldPrefixDirective, FormFieldSuffixDirective, FormWrapper, FormWrapperDialog, FormWrapperModule, HelpfulTip, HelpfulTipModule, Icon, IconModule, Input, InputCurrency, InputCurrencyModule, InputFile, InputFileModule, InputGroup, InputGroupAddon, InputGroupModule, InputModule, InputPhone, InputPhoneModule, Label, LabelModule, Loading, LoadingModule, LocalStorageToken, Lozenge, LozengeModule, MoneyPipe, NomalizeTextPipe, NumberToWordsUtil, NumberUtil, ObjectUtil, PAGINATOR_INTL_PT_BR, PageAdjustService, Paginator, PaginatorIntlToken, PaginatorModule, PaginatorPipe, PasswordRequirements, PasswordRequirementsModule, PasswordValidationUtil, PdfViewer, PdfViewerDialog, PdfViewerDialogModel, PdfViewerDialogModule, PdfViewerService, PhoneUtil, Popover, PopoverModule, PopoverTargetDirective, PopoverTriggerDirective, RadioGroup, RadioGroupModule, STATES_DATA, ScrollFadeDirective, ScrollFadeModule, SelectClientSide, SelectEnum, SelectModule, SelectServerSide, SessionStorageToken, Sidenav, SidenavContainer, SidenavContent, SidenavMenuItem, SidenavModule, Skeleton, SkeletonModule, SplitButton, SplitButtonModule, StateUtil, Step, Stepper, StepperModule, StringUtil, SvgRegisterService, Tab, TabGroup, Table, TableColumn, TableColumnBuilder, TableMenuItemContext, TableMenuItemContextBuilder, TableModule, TabsModule, Tag, TagModule, TextCapitalizeDirective, TextCapitalizeModule, TextEllipsisDirective, TextEllipsisModule, Textarea, TextareaModule, Toast, ToastIcon, ToastModel, ToastModule, ToastService, ToggleGroup, ToggleGroupModule, ToggleSwitch, ToggleSwitchModule, Toolbar, ToolbarModule, TooltipDirective, TooltipModule, TopNav, TopNavModule, TreeTable, TreeTableColumn, TreeTableColumnBuilder, TreeTableMenuItemContext, TreeTableMenuItemContextBuilder, TreeTableModule, UUIDUtil, UserProfile, UserProfileModule, animationFlyInOut, authChildGuard, authGuard, authInterceptor, eConfirmDialogTypes, eCurrencyInputMode, eMenuType, eSortDirection, eToastTypes, eTypeOperationCloseDialogEnum, eTypeOperationDialog, entityFilterSignal, errorInterceptor, filterSignal, provideAllowedPublicRoutes, provideAppMessages, provideBaseAuthService, provideEchartsCore, providePaginatorIntl, provideValueAccessor, publicChildGuard, publicGuard, rotateAnimation, rotateArrowTreeTableExpand, stateNamesMap, transformFilterSignal, useFilterPersistence, useLinkedFilter, useRouteParam, useRouteParamsMap, useRouteQueryParams, useRouteQueryParamsMap, useSearch };
24509
24706
  //# sourceMappingURL=gipisistemas-ngx-core.mjs.map