@gipisistemas/ngx-core 1.0.1
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/README.md +169 -0
- package/animations/fly-in-out.animation.d.ts +24 -0
- package/animations/index.d.ts +2 -0
- package/animations/rotate.animation.d.ts +35 -0
- package/base/components/base-form-dialog.component.d.ts +47 -0
- package/base/components/base-form.component.d.ts +54 -0
- package/base/components/base-list-dialog.component.d.ts +69 -0
- package/base/components/base-list.component.d.ts +77 -0
- package/base/components/base.component.d.ts +62 -0
- package/base/index.d.ts +20 -0
- package/base/models/base-applied-filter.model.d.ts +8 -0
- package/base/models/base-authority.model.d.ts +6 -0
- package/base/models/base-filter.model.d.ts +16 -0
- package/base/models/base-form-dialog-data.model.d.ts +11 -0
- package/base/models/base-list-dialog-data.model.d.ts +10 -0
- package/base/models/base-menu.model.d.ts +25 -0
- package/base/models/base-page.model.d.ts +11 -0
- package/base/models/base-query-params.model.d.ts +12 -0
- package/base/models/base-sort.model.d.ts +8 -0
- package/base/models/base-token.model.d.ts +11 -0
- package/base/models/base-user.model.d.ts +18 -0
- package/base/models/base.model.d.ts +20 -0
- package/base/services/base-auth.service.d.ts +31 -0
- package/base/services/base-crud.service.d.ts +178 -0
- package/base/services/base.service.d.ts +97 -0
- package/components/action-row/action-row.component.d.ts +8 -0
- package/components/action-row/action-row.component.scss +26 -0
- package/components/action-row/index.d.ts +1 -0
- package/components/auto-focus/auto-focus.directive.d.ts +17 -0
- package/components/auto-focus/index.d.ts +1 -0
- package/components/avatar/avatar.component.d.ts +23 -0
- package/components/avatar/avatar.component.scss +155 -0
- package/components/avatar/index.d.ts +1 -0
- package/components/button/button.component.d.ts +74 -0
- package/components/button/button.component.scss +196 -0
- package/components/button/index.d.ts +1 -0
- package/components/button-group/button-group.component.d.ts +39 -0
- package/components/button-group/button-group.component.scss +89 -0
- package/components/button-group/index.d.ts +2 -0
- package/components/button-group/shared/button-group-option.model.d.ts +6 -0
- package/components/checkbox/checkbox.component.d.ts +74 -0
- package/components/checkbox/checkbox.component.scss +147 -0
- package/components/checkbox/index.d.ts +1 -0
- package/components/chips/chips.component.d.ts +46 -0
- package/components/chips/chips.component.scss +127 -0
- package/components/chips/index.d.ts +1 -0
- package/components/confirm-dialog/confirm-dialog.component.d.ts +17 -0
- package/components/confirm-dialog/confirm-dialog.component.scss +121 -0
- package/components/confirm-dialog/index.d.ts +4 -0
- package/components/confirm-dialog/shared/confirm-dialog-types.enum.d.ts +7 -0
- package/components/confirm-dialog/shared/confirm-dialog.model.d.ts +25 -0
- package/components/confirm-dialog/shared/confirm-dialog.service.d.ts +17 -0
- package/components/date-picker/date-picker.component.d.ts +55 -0
- package/components/date-picker/date-picker.component.scss +27 -0
- package/components/date-picker/index.d.ts +1 -0
- package/components/date-range-picker/date-range-picker.component.d.ts +66 -0
- package/components/date-range-picker/date-range-picker.component.scss +89 -0
- package/components/date-range-picker/index.d.ts +6 -0
- package/components/date-range-picker/shared/calendar/calendar.component.d.ts +27 -0
- package/components/date-range-picker/shared/calendar/calendar.component.scss +13 -0
- package/components/date-range-picker/shared/default-preset-date-options.d.ts +2 -0
- package/components/date-range-picker/shared/preset-key.enum.d.ts +11 -0
- package/components/date-range-picker/shared/range-selection-strategy.service.d.ts +11 -0
- package/components/date-range-picker/shared/select-date-option.interface.d.ts +32 -0
- package/components/date-range-picker/shared/selected-date-event.interface.d.ts +6 -0
- package/components/datetime-picker/datetime-picker.component.d.ts +68 -0
- package/components/datetime-picker/datetime-picker.component.scss +28 -0
- package/components/datetime-picker/index.d.ts +3 -0
- package/components/datetime-picker/shared/datetime-picker-intl.d.ts +29 -0
- package/components/datetime-picker/shared/moment-datetime-formats.d.ts +2 -0
- package/components/disable-auto-fill/disable-auto-fill.directive.d.ts +11 -0
- package/components/disable-auto-fill/index.d.ts +1 -0
- package/components/echarts/echarts.directive.d.ts +100 -0
- package/components/echarts/index.d.ts +4 -0
- package/components/echarts/shared/echarts-change-filter.d.ts +11 -0
- package/components/echarts/shared/echarts-config.interface.d.ts +5 -0
- package/components/echarts/shared/echarts-theme.type.d.ts +1 -0
- package/components/empty/empty.component.d.ts +13 -0
- package/components/empty/empty.component.scss +36 -0
- package/components/empty/index.d.ts +1 -0
- package/components/expansion-panel/expansion-panel.component.d.ts +36 -0
- package/components/expansion-panel/expansion-panel.component.scss +99 -0
- package/components/expansion-panel/index.d.ts +1 -0
- package/components/field-error/field-error.component.d.ts +95 -0
- package/components/field-error/field-error.component.scss +7 -0
- package/components/field-error/index.d.ts +2 -0
- package/components/field-error/shared/field-error-custom-validators.type.d.ts +2 -0
- package/components/flex-layout/flex-layout.directive.d.ts +44 -0
- package/components/flex-layout/index.d.ts +1 -0
- package/components/form-wrapper/form-wrapper.component.d.ts +15 -0
- package/components/form-wrapper/form-wrapper.component.scss +121 -0
- package/components/form-wrapper/index.d.ts +1 -0
- package/components/helpful-tip/helpful-tip.component.d.ts +11 -0
- package/components/helpful-tip/helpful-tip.component.scss +14 -0
- package/components/helpful-tip/index.d.ts +1 -0
- package/components/icon/icon.component.d.ts +61 -0
- package/components/icon/icon.component.scss +29 -0
- package/components/icon/index.d.ts +1 -0
- package/components/index.d.ts +46 -0
- package/components/input/index.d.ts +4 -0
- package/components/input/input.component.d.ts +81 -0
- package/components/input/input.component.scss +27 -0
- package/components/input/shared/input-prefix.directive.d.ts +5 -0
- package/components/input/shared/input-suffix.directive.d.ts +5 -0
- package/components/input/shared/input.directive.d.ts +26 -0
- package/components/input-currency/index.d.ts +1 -0
- package/components/input-currency/input-currency.component.d.ts +64 -0
- package/components/input-currency/input-currency.component.scss +27 -0
- package/components/input-group/index.d.ts +2 -0
- package/components/input-group/input-group-addon.component.d.ts +8 -0
- package/components/input-group/input-group.component.d.ts +14 -0
- package/components/input-group/input-group.component.scss +118 -0
- package/components/input-phone/index.d.ts +1 -0
- package/components/input-phone/input-phone.component.d.ts +62 -0
- package/components/input-phone/input-phone.component.scss +27 -0
- package/components/loading/index.d.ts +1 -0
- package/components/loading/loading.component.d.ts +13 -0
- package/components/loading/loading.component.scss +145 -0
- package/components/lozenge/index.d.ts +3 -0
- package/components/lozenge/lozenge.component.d.ts +20 -0
- package/components/lozenge/lozenge.component.scss +99 -0
- package/components/lozenge/shared/lozenge-fill.type.d.ts +4 -0
- package/components/lozenge/shared/lozenge-variant.type.d.ts +1 -0
- package/components/password-requeriments/index.d.ts +3 -0
- package/components/password-requeriments/password-requeriments.component.d.ts +27 -0
- package/components/password-requeriments/password-requeriments.component.scss +53 -0
- package/components/password-requeriments/shared/password-requeriments.interface.d.ts +5 -0
- package/components/password-requeriments/shared/password-validation.util.d.ts +71 -0
- package/components/popover/index.d.ts +4 -0
- package/components/popover/popover-target.directive.d.ts +8 -0
- package/components/popover/popover-trigger.directive.d.ts +135 -0
- package/components/popover/popover.component.d.ts +121 -0
- package/components/popover/popover.component.scss +26 -0
- package/components/popover/popover.module.d.ts +9 -0
- package/components/popover/shared/popover-animations.d.ts +14 -0
- package/components/popover/shared/popover-errors.d.ts +14 -0
- package/components/popover/shared/popover-types.type.d.ts +4 -0
- package/components/popover/shared/popover.interface.d.ts +24 -0
- package/components/radio-button/radio-button.component.scss +0 -0
- package/components/radio-group/index.d.ts +2 -0
- package/components/radio-group/radio-group.component.d.ts +57 -0
- package/components/radio-group/radio-group.component.scss +69 -0
- package/components/radio-group/shared/option-radio-group.type.d.ts +1 -0
- package/components/scroll-fade/index.d.ts +1 -0
- package/components/scroll-fade/scroll-fade.directive.d.ts +24 -0
- package/components/select/index.d.ts +4 -0
- package/components/select/select.component.d.ts +85 -0
- package/components/select/select.component.scss +52 -0
- package/components/select/shared/mat-select-media-tracker.d.ts +15 -0
- package/components/select/shared/mat-select-options-helper.d.ts +6 -0
- package/components/select/shared/mat-select-styles.scss +429 -0
- package/components/select/shared/mat-select.directive.d.ts +127 -0
- package/components/select-enum/index.d.ts +3 -0
- package/components/select-enum/select-enum.component.d.ts +65 -0
- package/components/select-enum/select-enum.component.scss +41 -0
- package/components/select-enum/shared/option-select-enum.type.d.ts +6 -0
- package/components/select-enum/shared/select-check-all.component.d.ts +15 -0
- package/components/sidenav/index.d.ts +1 -0
- package/components/sidenav/shared/sidenav-arrow-animations.d.ts +1 -0
- package/components/sidenav/sidenav.component.d.ts +47 -0
- package/components/sidenav/sidenav.component.scss +187 -0
- package/components/skeleton/index.d.ts +1 -0
- package/components/skeleton/skeleton.component.d.ts +37 -0
- package/components/skeleton/skeleton.component.scss +76 -0
- package/components/stepper/index.d.ts +2 -0
- package/components/stepper/step.component.d.ts +24 -0
- package/components/stepper/stepper.component.d.ts +20 -0
- package/components/stepper/stepper.component.scss +120 -0
- package/components/table/index.d.ts +9 -0
- package/components/table/shared/table-column-action-type.enum.d.ts +1 -0
- package/components/table/shared/table-column-align-type.enum.d.ts +6 -0
- package/components/table/shared/table-column-builder.model.d.ts +109 -0
- package/components/table/shared/table-column-condition.enum.d.ts +2 -0
- package/components/table/shared/table-column-partial.model.d.ts +6 -0
- package/components/table/shared/table-column.model.d.ts +80 -0
- package/components/table/shared/table-menu-item-context-builder.model.d.ts +61 -0
- package/components/table/shared/table-menu-item-context.model.d.ts +45 -0
- package/components/table/table.component.d.ts +184 -0
- package/components/table/table.component.scss +255 -0
- package/components/tabs/index.d.ts +2 -0
- package/components/tabs/tab-group.component.d.ts +24 -0
- package/components/tabs/tab.component.d.ts +30 -0
- package/components/tabs/tabs.component.scss +170 -0
- package/components/tag/index.d.ts +1 -0
- package/components/tag/tag.component.d.ts +26 -0
- package/components/tag/tag.component.scss +78 -0
- package/components/text-ellipsis/index.d.ts +1 -0
- package/components/text-ellipsis/text-ellipsis.directive.d.ts +15 -0
- package/components/textarea/index.d.ts +1 -0
- package/components/textarea/textarea.component.d.ts +72 -0
- package/components/textarea/textarea.component.scss +31 -0
- package/components/toast/index.d.ts +4 -0
- package/components/toast/shared/toast-types.enum.d.ts +7 -0
- package/components/toast/shared/toast.model.d.ts +7 -0
- package/components/toast/shared/toast.service.d.ts +12 -0
- package/components/toast/toast.component.d.ts +18 -0
- package/components/toast/toast.component.scss +135 -0
- package/components/toggle-switch/index.d.ts +1 -0
- package/components/toggle-switch/toggle-switch.component.d.ts +49 -0
- package/components/toggle-switch/toggle-switch.component.scss +105 -0
- package/components/toolbar/index.d.ts +1 -0
- package/components/toolbar/toolbar.component.d.ts +9 -0
- package/components/toolbar/toolbar.component.scss +22 -0
- package/components/top-nav/index.d.ts +1 -0
- package/components/top-nav/top-nav.component.d.ts +9 -0
- package/components/top-nav/top-nav.component.scss +18 -0
- package/components/tree-table/index.d.ts +8 -0
- package/components/tree-table/shared/tree-table-arrow-animations.d.ts +1 -0
- package/components/tree-table/shared/tree-table-column-builder.model.d.ts +55 -0
- package/components/tree-table/shared/tree-table-column-condition.enum.d.ts +2 -0
- package/components/tree-table/shared/tree-table-column-partial.model.d.ts +6 -0
- package/components/tree-table/shared/tree-table-column.model.d.ts +40 -0
- package/components/tree-table/shared/tree-table-menu-item-context-builder.model.d.ts +61 -0
- package/components/tree-table/shared/tree-table-menu-item-context.model.d.ts +45 -0
- package/components/tree-table/tree-table.component.d.ts +91 -0
- package/components/tree-table/tree-table.component.scss +216 -0
- package/components/user-profile/index.d.ts +1 -0
- package/components/user-profile/shared/user-profile-arrow-animations.d.ts +1 -0
- package/components/user-profile/user-profile.component.d.ts +28 -0
- package/components/user-profile/user-profile.component.scss +76 -0
- package/decorators/debounce.decorator.d.ts +33 -0
- package/decorators/index.d.ts +1 -0
- package/enums/index.d.ts +3 -0
- package/enums/menu-type.enum.d.ts +6 -0
- package/enums/sort-direction.enum.d.ts +5 -0
- package/enums/type-operation-dialog.enum.d.ts +12 -0
- package/fesm2022/gipisistemas-ngx-core.mjs +19132 -0
- package/fesm2022/gipisistemas-ngx-core.mjs.map +1 -0
- package/guards/auth.guard.d.ts +3 -0
- package/guards/index.d.ts +2 -0
- package/guards/public.guard.d.ts +3 -0
- package/index.d.ts +5 -0
- package/interceptors/auth.interceptor.d.ts +2 -0
- package/interceptors/error.interceptor.d.ts +13 -0
- package/interceptors/index.d.ts +2 -0
- package/interfaces/index.d.ts +1 -0
- package/interfaces/permissions.interface.d.ts +10 -0
- package/package.json +59 -0
- package/pipes/index.d.ts +1 -0
- package/pipes/money.pipe.d.ts +20 -0
- package/public-api.d.ts +13 -0
- package/services/cacheable.service.d.ts +41 -0
- package/services/dialog.service.d.ts +65 -0
- package/services/file-saver.service.d.ts +11 -0
- package/services/filter-indexed-db.service.d.ts +100 -0
- package/services/filter-url.service.d.ts +81 -0
- package/services/index.d.ts +8 -0
- package/services/moment-date-adapter.service.d.ts +8 -0
- package/services/native-date-adapter.service.d.ts +8 -0
- package/services/svg-register.service.d.ts +33 -0
- package/theming/_breakpoints.scss +20 -0
- package/theming/_index.scss +19 -0
- package/theming/_palettes.scss +112 -0
- package/theming/_theme.scss +189 -0
- package/theming/_utils.scss +1424 -0
- package/tokens/allowed-public-routes.token.d.ts +26 -0
- package/tokens/app-messages.token.d.ts +13 -0
- package/tokens/base-auth-service.token.d.ts +5 -0
- package/tokens/echarts-core.token.d.ts +4 -0
- package/tokens/index.d.ts +6 -0
- package/tokens/ngx-currency-options.token.d.ts +5 -0
- package/tokens/paginator-intl.token.d.ts +5 -0
- package/types/booleanish.type.d.ts +1 -0
- package/types/implicit-template.type.d.ts +4 -0
- package/types/index.d.ts +8 -0
- package/types/mixable-object.type.d.ts +1 -0
- package/types/nullable.type.d.ts +1 -0
- package/types/numberish.type.d.ts +1 -0
- package/types/page-event.type.d.ts +6 -0
- package/types/uuid.type.d.ts +1 -0
- package/types/void-listener.type.d.ts +1 -0
- package/utils/array.util.d.ts +13 -0
- package/utils/css.util.d.ts +12 -0
- package/utils/currency.util.d.ts +83 -0
- package/utils/date.util.d.ts +166 -0
- package/utils/document.util.d.ts +126 -0
- package/utils/email.util.d.ts +19 -0
- package/utils/index.d.ts +14 -0
- package/utils/number-to-words.util.d.ts +17 -0
- package/utils/number.util.d.ts +40 -0
- package/utils/object.util.d.ts +83 -0
- package/utils/phone.util.d.ts +103 -0
- package/utils/states.util.d.ts +182 -0
- package/utils/storage.util.d.ts +78 -0
- package/utils/string.util.d.ts +89 -0
- package/utils/uuid.util.d.ts +33 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { AfterViewInit, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ScrollFadeDirective implements AfterViewInit, OnDestroy, OnChanges {
|
|
4
|
+
private _elementRef;
|
|
5
|
+
private _renderer;
|
|
6
|
+
private _scrollContainer;
|
|
7
|
+
private _fadeTop;
|
|
8
|
+
private _fadeBottom;
|
|
9
|
+
private _scrollListener;
|
|
10
|
+
private _isInitialized;
|
|
11
|
+
gScrollFade: boolean;
|
|
12
|
+
gScrollOverflow: 'posY' | 'posX';
|
|
13
|
+
ngAfterViewInit(): void;
|
|
14
|
+
ngOnDestroy(): void;
|
|
15
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
16
|
+
private _applyBaseStyles;
|
|
17
|
+
private _createFadeElement;
|
|
18
|
+
private _appendFade;
|
|
19
|
+
private _bindScrollListener;
|
|
20
|
+
private _updateFadeState;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollFadeDirective, never>;
|
|
22
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ScrollFadeDirective, "[gScrollFade]", never, { "gScrollFade": { "alias": "gScrollFade"; "required": false; }; "gScrollOverflow": { "alias": "gScrollOverflow"; "required": false; }; }, {}, never, never, true, never>;
|
|
23
|
+
static ngAcceptInputType_gScrollFade: unknown;
|
|
24
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { AbstractControl, ControlValueAccessor, ValidationErrors, Validator } from '@angular/forms';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { BasePageModel } from '../../base/models/base-page.model';
|
|
5
|
+
import { MatSelectDirective } from './shared/mat-select.directive';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class SelectComponent<TOption> implements OnChanges, ControlValueAccessor, Validator {
|
|
8
|
+
protected matSelect: MatSelectDirective<TOption>;
|
|
9
|
+
protected readonly _uniqueId: string;
|
|
10
|
+
protected readonly _matFormFieldUniqueId: string;
|
|
11
|
+
private _changeDetectorRef;
|
|
12
|
+
private _model;
|
|
13
|
+
protected set model(value: TOption | TOption[] | null);
|
|
14
|
+
protected get model(): TOption | TOption[] | null;
|
|
15
|
+
id: string;
|
|
16
|
+
name: string;
|
|
17
|
+
label: string;
|
|
18
|
+
placeholder: string;
|
|
19
|
+
hintLabel: string;
|
|
20
|
+
help: string;
|
|
21
|
+
disabled: boolean;
|
|
22
|
+
readonly: boolean;
|
|
23
|
+
required: boolean;
|
|
24
|
+
multiple: boolean;
|
|
25
|
+
debounceTime: number;
|
|
26
|
+
/** Se true, ativa carregamento contínuo ao rolar a lista */
|
|
27
|
+
infiniteScroll: boolean;
|
|
28
|
+
propertyLabel: string | ((obj: TOption) => string) | null;
|
|
29
|
+
propertyValue: string | ((obj: TOption) => string) | null;
|
|
30
|
+
compareWithFn: ((a: TOption, b: TOption) => boolean) | null;
|
|
31
|
+
optionsExclud: TOption[];
|
|
32
|
+
pageSize: number;
|
|
33
|
+
fetchFn: ((search: string, pageNumber: number, pageSize: number) => Observable<BasePageModel<TOption>>) | null;
|
|
34
|
+
options: TOption[];
|
|
35
|
+
isStringArray: boolean;
|
|
36
|
+
showSearch: boolean;
|
|
37
|
+
title: string;
|
|
38
|
+
/** Se true, a função de busca será chamada ao criar o componente */
|
|
39
|
+
inFirstLoadCallSearcher: boolean;
|
|
40
|
+
/** Valor inicial usado na primeira chamada de busca */
|
|
41
|
+
inFirstLoadSearcherValue: string | null;
|
|
42
|
+
useMobileView: boolean;
|
|
43
|
+
fragment: string;
|
|
44
|
+
onSelectionChange: EventEmitter<TOption | TOption[] | null>;
|
|
45
|
+
protected get hasMultipleSelected(): boolean;
|
|
46
|
+
protected get firstSelectedLabel(): string;
|
|
47
|
+
protected get additionalSelectedCount(): number;
|
|
48
|
+
protected get additionSelectedLabel(): string;
|
|
49
|
+
protected get showClearButton(): boolean;
|
|
50
|
+
readonly onFocusEvent: EventEmitter<FocusEvent>;
|
|
51
|
+
readonly onBlurEvent: EventEmitter<FocusEvent>;
|
|
52
|
+
readonly onKeydownEvent: EventEmitter<KeyboardEvent>;
|
|
53
|
+
readonly onChangeEvent: EventEmitter<Event>;
|
|
54
|
+
constructor();
|
|
55
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
56
|
+
_onChange: (value: TOption | TOption[] | null) => void;
|
|
57
|
+
_onTouched: () => void;
|
|
58
|
+
_validatorChangeFn: () => void;
|
|
59
|
+
writeValue(value: TOption | TOption[] | null): void;
|
|
60
|
+
registerOnChange(fn: (value: TOption | TOption[] | null) => void): void;
|
|
61
|
+
registerOnTouched(fn: () => void): void;
|
|
62
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
63
|
+
validate(control: AbstractControl<TOption | TOption[] | null>): ValidationErrors | null;
|
|
64
|
+
registerOnValidatorChange(fn: () => void): void;
|
|
65
|
+
protected onHandleClear(): void;
|
|
66
|
+
protected getOptionLabel(option: TOption): string;
|
|
67
|
+
protected getOptionValue(option: TOption): any;
|
|
68
|
+
protected optionExcluded(option: TOption): boolean;
|
|
69
|
+
protected onInputKeydown(event: KeyboardEvent): void;
|
|
70
|
+
protected onInputFocus(event: FocusEvent): void;
|
|
71
|
+
protected onInputBlur(event: FocusEvent): void;
|
|
72
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent<any>, never>;
|
|
73
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent<any>, "gipi-select", ["gSelect"], { "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "hintLabel": { "alias": "hintLabel"; "required": false; }; "help": { "alias": "help"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "debounceTime": { "alias": "debounceTime"; "required": false; }; "infiniteScroll": { "alias": "infiniteScroll"; "required": false; }; "propertyLabel": { "alias": "propertyLabel"; "required": true; }; "propertyValue": { "alias": "propertyValue"; "required": false; }; "compareWithFn": { "alias": "compareWithFn"; "required": false; }; "optionsExclud": { "alias": "optionsExclud"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "fetchFn": { "alias": "fetchFn"; "required": false; }; "options": { "alias": "options"; "required": false; }; "isStringArray": { "alias": "isStringArray"; "required": false; }; "showSearch": { "alias": "showSearch"; "required": false; }; "title": { "alias": "title"; "required": false; }; "inFirstLoadCallSearcher": { "alias": "inFirstLoadCallSearcher"; "required": false; }; "inFirstLoadSearcherValue": { "alias": "inFirstLoadSearcherValue"; "required": false; }; "useMobileView": { "alias": "useMobileView"; "required": false; }; "fragment": { "alias": "fragment"; "required": false; }; }, { "onSelectionChange": "selectionChange"; "onFocusEvent": "focus"; "onBlurEvent": "blur"; "onKeydownEvent": "keydown"; "onChangeEvent": "change"; }, never, never, true, never>;
|
|
74
|
+
static ngAcceptInputType_disabled: unknown;
|
|
75
|
+
static ngAcceptInputType_readonly: unknown;
|
|
76
|
+
static ngAcceptInputType_required: unknown;
|
|
77
|
+
static ngAcceptInputType_multiple: unknown;
|
|
78
|
+
static ngAcceptInputType_debounceTime: unknown;
|
|
79
|
+
static ngAcceptInputType_infiniteScroll: unknown;
|
|
80
|
+
static ngAcceptInputType_pageSize: unknown;
|
|
81
|
+
static ngAcceptInputType_isStringArray: unknown;
|
|
82
|
+
static ngAcceptInputType_showSearch: unknown;
|
|
83
|
+
static ngAcceptInputType_inFirstLoadCallSearcher: unknown;
|
|
84
|
+
static ngAcceptInputType_useMobileView: unknown;
|
|
85
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
@use '../../theming/utils' as utils;
|
|
2
|
+
@use './shared/mat-select-styles.scss' as mat-select;
|
|
3
|
+
|
|
4
|
+
@mixin select-theme($theme: ()) {
|
|
5
|
+
$font-family: utils.get-font-family($theme);
|
|
6
|
+
$font-size: utils.get-font-size($theme);
|
|
7
|
+
$font-color: utils.get-font-color($theme);
|
|
8
|
+
|
|
9
|
+
@include mat-select.mat-select-theme($theme);
|
|
10
|
+
|
|
11
|
+
.g-select-label {
|
|
12
|
+
@include utils.field-label($theme);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.g-select {
|
|
16
|
+
@include utils.mat-form-field-reset($theme);
|
|
17
|
+
|
|
18
|
+
display: flex;
|
|
19
|
+
flex-direction: column;
|
|
20
|
+
gap: 4px;
|
|
21
|
+
font-family: $font-family;
|
|
22
|
+
color: $font-color;
|
|
23
|
+
min-width: 0;
|
|
24
|
+
width: 100%;
|
|
25
|
+
min-height: fit-content;
|
|
26
|
+
height: fit-content;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.g-select-loading .mdc-list-item__primary-text {
|
|
30
|
+
display: flex !important;
|
|
31
|
+
align-items: center !important;
|
|
32
|
+
justify-content: center !important;
|
|
33
|
+
width: 100% !important;
|
|
34
|
+
opacity: 1 !important;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.g-select-form-field {
|
|
38
|
+
.mat-mdc-form-field-flex {
|
|
39
|
+
position: relative !important;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.mat-mdc-form-field-icon-suffix {
|
|
43
|
+
position: absolute !important;
|
|
44
|
+
top: 0 !important;
|
|
45
|
+
right: 2.2rem !important;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.mat-mdc-select-value {
|
|
49
|
+
padding-right: 4rem !important;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare abstract class MatSelectMediaTracker implements OnInit, OnDestroy {
|
|
4
|
+
private readonly _mediaMatcher;
|
|
5
|
+
private readonly _platformId;
|
|
6
|
+
private _mobileQueryListenerFunc?;
|
|
7
|
+
protected mobileQuery: MediaQueryList | null;
|
|
8
|
+
constructor();
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
ngOnDestroy(): void;
|
|
11
|
+
/** Método a ser implementado por subclasses. */
|
|
12
|
+
abstract onChangeMediaTracker(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatSelectMediaTracker, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatSelectMediaTracker, never, never, {}, {}, never, never, true, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export declare class MatSelectOptionsHelper {
|
|
2
|
+
static getOptionLabel<TOption = any>(option: TOption, propertyLabel: string | ((obj: TOption) => string) | null): string;
|
|
3
|
+
static getOptionValue<TOption = any>(option: TOption, propertyValue: string | ((obj: TOption) => string) | null): any;
|
|
4
|
+
static optionExcluded<TOption = any>(option: TOption, optionsExclud: TOption[]): boolean;
|
|
5
|
+
static isEqualOption(option1: unknown, option2: unknown): boolean;
|
|
6
|
+
}
|
|
@@ -0,0 +1,429 @@
|
|
|
1
|
+
@use '../../../theming/utils' as utils;
|
|
2
|
+
|
|
3
|
+
@mixin mat-select-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
|
+
|
|
10
|
+
.cdk-overlay-pane:has(.mat-mdc-select-panel) {
|
|
11
|
+
position: relative !important;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.ngx-mat-select-opacity {
|
|
15
|
+
opacity: 0 !important;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.ngx-mat-mobile .ngx-mat-select-mobile-wrapper {
|
|
19
|
+
position: fixed !important;
|
|
20
|
+
bottom: 0 !important;
|
|
21
|
+
max-height: 100% !important;
|
|
22
|
+
max-width: 100% !important;
|
|
23
|
+
transform: none !important;
|
|
24
|
+
background: $white-100 !important;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.ngx-mat-mobile .ngx-mat-select-mobile-open-fullScreen {
|
|
28
|
+
top: 0 !important;
|
|
29
|
+
right: 0 !important;
|
|
30
|
+
left: 0 !important;
|
|
31
|
+
width: 100%;
|
|
32
|
+
height: 100%;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.cdk-overlay-container.bottomToTop .cdk-overlay-backdrop {
|
|
36
|
+
background: rgba(0, 0, 0, 0.32) !important;
|
|
37
|
+
opacity: 1 !important;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.ngx-mat-mobile .ngx-mat-select-mobile {
|
|
41
|
+
max-width: 100%;
|
|
42
|
+
width: 100%;
|
|
43
|
+
overflow: hidden;
|
|
44
|
+
background: $white-100;
|
|
45
|
+
transition: opacity 100ms linear;
|
|
46
|
+
min-width: auto !important;
|
|
47
|
+
transform: none !important;
|
|
48
|
+
transform-origin: unset !important;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.ngx-mat-select-mobile-select-panel .mat-dialog-content {
|
|
52
|
+
max-height: calc(100vh - 150px);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.ngx-mat-select-search-box-container.abs {
|
|
56
|
+
margin: 0;
|
|
57
|
+
border: none !important;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.ngx-mat-mobile .ngx-mat-select-search-box-container.abs {
|
|
61
|
+
width: 100%;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.ngx-mat-select-search-box-wrap {
|
|
65
|
+
display: flex;
|
|
66
|
+
align-items: center;
|
|
67
|
+
justify-content: flex-end;
|
|
68
|
+
width: 100%;
|
|
69
|
+
max-width: 100%;
|
|
70
|
+
height: 4rem;
|
|
71
|
+
padding-inline: 1rem;
|
|
72
|
+
|
|
73
|
+
position: sticky;
|
|
74
|
+
top: 0;
|
|
75
|
+
z-index: 1;
|
|
76
|
+
|
|
77
|
+
background: $white-100;
|
|
78
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
// .ngx-mat-select-mobile .ngx-mat-select-search-box-wrap {
|
|
82
|
+
// position: fixed;
|
|
83
|
+
// }
|
|
84
|
+
|
|
85
|
+
.ngx-mat-select-mobile > .mat-option:first-child {
|
|
86
|
+
margin-top: 52px;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.hide-selected {
|
|
90
|
+
display: none !important;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.ngx-mat-select-mobile-title {
|
|
94
|
+
width: 100%;
|
|
95
|
+
background: $white-100;
|
|
96
|
+
z-index: 1;
|
|
97
|
+
padding: 11px;
|
|
98
|
+
display: flex;
|
|
99
|
+
align-items: center;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
html[dir='rtl'] .first-selected:after {
|
|
103
|
+
right: 0;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.ngx-mat-select-not-found-container {
|
|
107
|
+
padding: 1rem;
|
|
108
|
+
height: 8rem;
|
|
109
|
+
background: $white-100;
|
|
110
|
+
justify-content: center;
|
|
111
|
+
align-items: center;
|
|
112
|
+
display: none;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.hide-options mat-option {
|
|
116
|
+
opacity: 0 !important;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.remove-options mat-option {
|
|
120
|
+
display: none !important;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.mat-selected.abs {
|
|
124
|
+
border: 1px solid #e0e0e0;
|
|
125
|
+
border-radius: 8px;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.ngx-mat-select-search-box-container {
|
|
129
|
+
display: flex;
|
|
130
|
+
align-items: center;
|
|
131
|
+
justify-content: center;
|
|
132
|
+
width: 100%;
|
|
133
|
+
border: 1px solid #e0e0e0;
|
|
134
|
+
border-radius: 8px;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.ngx-mat-select-search-box-input {
|
|
138
|
+
display: flex;
|
|
139
|
+
width: 100%;
|
|
140
|
+
border: 0;
|
|
141
|
+
outline: 0;
|
|
142
|
+
background: inherit;
|
|
143
|
+
height: 3.6rem;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.ngx-mat-select-search-box-icon {
|
|
147
|
+
display: flex;
|
|
148
|
+
align-items: center;
|
|
149
|
+
justify-content: center;
|
|
150
|
+
width: 100%;
|
|
151
|
+
height: 2.4rem;
|
|
152
|
+
max-width: 2.4rem;
|
|
153
|
+
flex: 0 0 2.4rem;
|
|
154
|
+
font-size: 2rem;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.arrow-right,
|
|
158
|
+
.arrow-left {
|
|
159
|
+
width: 100%;
|
|
160
|
+
height: 2.4rem;
|
|
161
|
+
max-width: 2.4rem;
|
|
162
|
+
margin: 8px 15px 8px 8px;
|
|
163
|
+
cursor: pointer;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/* loading */
|
|
167
|
+
@keyframes ldio-v2b57u5sqa7 {
|
|
168
|
+
0% {
|
|
169
|
+
transform: translate(6px, 40px) scale(0);
|
|
170
|
+
}
|
|
171
|
+
25% {
|
|
172
|
+
transform: translate(6px, 40px) scale(0);
|
|
173
|
+
}
|
|
174
|
+
50% {
|
|
175
|
+
transform: translate(6px, 40px) scale(1);
|
|
176
|
+
}
|
|
177
|
+
75% {
|
|
178
|
+
transform: translate(40px, 40px) scale(1);
|
|
179
|
+
}
|
|
180
|
+
100% {
|
|
181
|
+
transform: translate(74px, 40px) scale(1);
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
@keyframes ldio-v2b57u5sqa7-r {
|
|
186
|
+
0% {
|
|
187
|
+
transform: translate(74px, 40px) scale(1);
|
|
188
|
+
}
|
|
189
|
+
100% {
|
|
190
|
+
transform: translate(74px, 40px) scale(0);
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
@keyframes ldio-v2b57u5sqa7-c {
|
|
195
|
+
0% {
|
|
196
|
+
background: #292664;
|
|
197
|
+
}
|
|
198
|
+
25% {
|
|
199
|
+
background: #b5ccf1;
|
|
200
|
+
}
|
|
201
|
+
50% {
|
|
202
|
+
background: #94a9ce;
|
|
203
|
+
}
|
|
204
|
+
75% {
|
|
205
|
+
background: #667395;
|
|
206
|
+
}
|
|
207
|
+
100% {
|
|
208
|
+
background: #292664;
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
@keyframes ldio-it58uqzfg5 {
|
|
213
|
+
0% {
|
|
214
|
+
transform: translate(6px, 40px) scale(0);
|
|
215
|
+
}
|
|
216
|
+
25% {
|
|
217
|
+
transform: translate(6px, 40px) scale(0);
|
|
218
|
+
}
|
|
219
|
+
50% {
|
|
220
|
+
transform: translate(6px, 40px) scale(1);
|
|
221
|
+
}
|
|
222
|
+
75% {
|
|
223
|
+
transform: translate(40px, 40px) scale(1);
|
|
224
|
+
}
|
|
225
|
+
100% {
|
|
226
|
+
transform: translate(74px, 40px) scale(1);
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
@keyframes ldio-it58uqzfg5-r {
|
|
231
|
+
0% {
|
|
232
|
+
transform: translate(74px, 40px) scale(1);
|
|
233
|
+
}
|
|
234
|
+
100% {
|
|
235
|
+
transform: translate(74px, 40px) scale(0);
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
@keyframes ldio-it58uqzfg5-c {
|
|
240
|
+
0% {
|
|
241
|
+
background: #292664;
|
|
242
|
+
}
|
|
243
|
+
25% {
|
|
244
|
+
background: #b5ccf1;
|
|
245
|
+
}
|
|
246
|
+
50% {
|
|
247
|
+
background: #94a9ce;
|
|
248
|
+
}
|
|
249
|
+
75% {
|
|
250
|
+
background: #667395;
|
|
251
|
+
}
|
|
252
|
+
100% {
|
|
253
|
+
background: #292664;
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.ldio-it58uqzfg5 div {
|
|
258
|
+
position: absolute;
|
|
259
|
+
width: 20px;
|
|
260
|
+
height: 20px;
|
|
261
|
+
border-radius: 50%;
|
|
262
|
+
transform: translate(40px, 40px) scale(1);
|
|
263
|
+
background: #292664;
|
|
264
|
+
animation: ldio-it58uqzfg5 1s infinite cubic-bezier(0, 0.5, 0.5, 1);
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.ldio-it58uqzfg5 div:nth-child(1) {
|
|
268
|
+
background: #667395;
|
|
269
|
+
transform: translate(74px, 40px) scale(1);
|
|
270
|
+
animation:
|
|
271
|
+
ldio-it58uqzfg5-r 0.25s infinite cubic-bezier(0, 0.5, 0.5, 1),
|
|
272
|
+
ldio-it58uqzfg5-c 1s infinite step-start;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.ldio-it58uqzfg5 div:nth-child(2) {
|
|
276
|
+
animation-delay: -0.25s;
|
|
277
|
+
background: #292664;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.ldio-it58uqzfg5 div:nth-child(3) {
|
|
281
|
+
animation-delay: -0.5s;
|
|
282
|
+
background: #667395;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.ldio-it58uqzfg5 div:nth-child(4) {
|
|
286
|
+
animation-delay: -0.75s;
|
|
287
|
+
background: #94a9ce;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.ldio-it58uqzfg5 div:nth-child(5) {
|
|
291
|
+
animation-delay: -1s;
|
|
292
|
+
background: #b5ccf1;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.loadingio-spinner-ellipsis-ao6bq46b8nt {
|
|
296
|
+
width: 28px;
|
|
297
|
+
height: 28px;
|
|
298
|
+
display: inline-block;
|
|
299
|
+
overflow: hidden;
|
|
300
|
+
background: $white-100;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.ldio-it58uqzfg5 {
|
|
304
|
+
width: 100%;
|
|
305
|
+
height: 100%;
|
|
306
|
+
position: relative;
|
|
307
|
+
transform: translateZ(0) scale(0.28);
|
|
308
|
+
backface-visibility: hidden;
|
|
309
|
+
transform-origin: 0 0; /* see note above */
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.ldio-it58uqzfg5 div {
|
|
313
|
+
box-sizing: content-box;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.ngx-mat-select-loading-container {
|
|
317
|
+
display: none;
|
|
318
|
+
align-items: center;
|
|
319
|
+
height: 40px;
|
|
320
|
+
justify-content: center;
|
|
321
|
+
position: absolute;
|
|
322
|
+
right: 15px;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
html[dir='rtl'] .ngx-mat-select-loading-container {
|
|
326
|
+
left: 15px;
|
|
327
|
+
right: unset;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
@keyframes ldio-o6nze7by54l {
|
|
331
|
+
0% {
|
|
332
|
+
transform: translate(-50%, -50%) rotate(0deg);
|
|
333
|
+
}
|
|
334
|
+
100% {
|
|
335
|
+
transform: translate(-50%, -50%) rotate(360deg);
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.ldio-o6nze7by54l div {
|
|
340
|
+
position: absolute;
|
|
341
|
+
width: 65px;
|
|
342
|
+
height: 65px;
|
|
343
|
+
border: 3px solid #0a0a0a;
|
|
344
|
+
border-top-color: transparent;
|
|
345
|
+
border-radius: 50%;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.ldio-o6nze7by54l div {
|
|
349
|
+
animation: ldio-o6nze7by54l 1s linear infinite;
|
|
350
|
+
top: 50px;
|
|
351
|
+
left: 50px;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.loadingio-spinner-rolling-2vwh2v284qu {
|
|
355
|
+
width: 34px;
|
|
356
|
+
height: 34px;
|
|
357
|
+
display: inline-block;
|
|
358
|
+
overflow: hidden;
|
|
359
|
+
background: $white-100;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.ldio-o6nze7by54l {
|
|
363
|
+
width: 100%;
|
|
364
|
+
height: 100%;
|
|
365
|
+
position: relative;
|
|
366
|
+
transform: translateZ(0) scale(0.34);
|
|
367
|
+
backface-visibility: hidden;
|
|
368
|
+
transform-origin: 0 0; /* see note above */
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.ldio-o6nze7by54l div {
|
|
372
|
+
box-sizing: content-box;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
/* generated by https://loading.io/ */
|
|
376
|
+
.ngx-mat-select-scroll-loading > div {
|
|
377
|
+
position: absolute;
|
|
378
|
+
bottom: 0;
|
|
379
|
+
left: 50%;
|
|
380
|
+
transform: translateX(-50%);
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.ngx-mat-select-scroll-loading {
|
|
384
|
+
display: none;
|
|
385
|
+
position: absolute;
|
|
386
|
+
left: 0;
|
|
387
|
+
right: 0;
|
|
388
|
+
bottom: 0;
|
|
389
|
+
width: 100%;
|
|
390
|
+
background: $white-100;
|
|
391
|
+
z-index: 1;
|
|
392
|
+
height: 34px;
|
|
393
|
+
opacity: 0.7;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.ngx-mat-select-scroll-no-more {
|
|
397
|
+
display: none;
|
|
398
|
+
width: 100%;
|
|
399
|
+
/*position: absolute;*/
|
|
400
|
+
bottom: 0;
|
|
401
|
+
left: 0;
|
|
402
|
+
right: 0;
|
|
403
|
+
height: 34px;
|
|
404
|
+
text-align: center;
|
|
405
|
+
background: $white-100;
|
|
406
|
+
z-index: 1;
|
|
407
|
+
font-style: italic;
|
|
408
|
+
padding-top: 8px;
|
|
409
|
+
border-top: 1px dashed #e0e0e0;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.ngx-mat-select-main-loading {
|
|
413
|
+
position: absolute;
|
|
414
|
+
left: 0;
|
|
415
|
+
right: 0;
|
|
416
|
+
bottom: 0;
|
|
417
|
+
top: 51px;
|
|
418
|
+
background: $white-100;
|
|
419
|
+
opacity: 0.9;
|
|
420
|
+
display: none;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.ngx-mat-select-main-loading > div {
|
|
424
|
+
left: 50%;
|
|
425
|
+
top: 50%;
|
|
426
|
+
transform: translate(-50%, -50%);
|
|
427
|
+
position: absolute;
|
|
428
|
+
}
|
|
429
|
+
}
|