ngx-register-base 1.3.2 → 2.0.0

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.
Files changed (160) hide show
  1. package/README.md +10 -0
  2. package/esm2022/lib/components/checkbox-selector/checkbox-selector.component.mjs +3 -3
  3. package/esm2022/lib/components/column-settings/column-settings.component.mjs +30 -25
  4. package/esm2022/lib/components/column-settings/components/column-settings-template/column-settings-template.component.mjs +4 -12
  5. package/esm2022/lib/components/column-settings/components/reset-settings-form/reset-settings-form.component.mjs +13 -0
  6. package/esm2022/lib/components/column-settings/consts/column-settings.consts.mjs +9 -9
  7. package/esm2022/lib/components/filter-button/filter-button.component.mjs +4 -5
  8. package/esm2022/lib/components/filters/components/filter-list/filter-edit/filter-edit.component.mjs +22 -22
  9. package/esm2022/lib/components/filters/components/filter-list/filter-list-footer/filter-list-footer.component.mjs +9 -6
  10. package/esm2022/lib/components/filters/components/filter-list/filter-list-header/filter-list-header.component.mjs +13 -8
  11. package/esm2022/lib/components/filters/components/filter-list/filter-list-saved/filter-list-saved.component.mjs +4 -4
  12. package/esm2022/lib/components/filters/components/filter-list/filter-list.service.mjs +16 -13
  13. package/esm2022/lib/components/filters/components/filter-list/filters-section/filters-section.component.mjs +4 -4
  14. package/esm2022/lib/components/filters/components/filter-list.module.mjs +33 -7
  15. package/esm2022/lib/components/filters/register-table-filter.component.mjs +5 -4
  16. package/esm2022/lib/components/filters/register-table-filter.module.mjs +5 -5
  17. package/esm2022/lib/components/index.mjs +2 -2
  18. package/esm2022/lib/components/inputs/index.mjs +4 -4
  19. package/esm2022/lib/components/inputs/param-calendar-year/param-calendar-year.component.mjs +37 -30
  20. package/esm2022/lib/components/inputs/param-custom/param-custom.component.mjs +3 -3
  21. package/esm2022/lib/components/inputs/param-date/param-date.component.mjs +27 -15
  22. package/esm2022/lib/components/inputs/param-date-range/index.mjs +2 -0
  23. package/esm2022/lib/components/inputs/param-date-range/param-date-range.component.mjs +80 -18
  24. package/esm2022/lib/components/inputs/param-date-time/param-date-time.component.mjs +65 -30
  25. package/esm2022/lib/components/inputs/param-date-time-range/date-time-range/date-time-range.component.mjs +406 -0
  26. package/esm2022/lib/components/inputs/param-date-time-range/date-time-range/date-time-range.consts.mjs +13 -0
  27. package/esm2022/lib/components/inputs/param-date-time-range/param-date-time-range.component.mjs +31 -34
  28. package/esm2022/lib/components/inputs/param-dropbox/param-dropbox.component.mjs +126 -0
  29. package/esm2022/lib/components/inputs/param-month/param-month.component.mjs +40 -9
  30. package/esm2022/lib/components/inputs/param-month-range/param-month-range.component.mjs +29 -8
  31. package/esm2022/lib/components/inputs/param-multi-select/param-multi-select.component.mjs +97 -113
  32. package/esm2022/lib/components/inputs/param-select/param-select.component.mjs +40 -36
  33. package/esm2022/lib/components/inputs/param-switcher/index.mjs +2 -0
  34. package/esm2022/lib/components/inputs/param-switcher/param-switcher.component.mjs +61 -11
  35. package/esm2022/lib/components/inputs/param-switcher/param-switcher.types.mjs +2 -0
  36. package/esm2022/lib/components/inputs/param-switcher-date-time-range/consts/param-switcher-date-time-range.consts.mjs +7 -25
  37. package/esm2022/lib/components/inputs/param-switcher-date-time-range/param-switcher-date-time-range.component.mjs +21 -20
  38. package/esm2022/lib/components/inputs/param-text/param-text.component.mjs +11 -6
  39. package/esm2022/lib/components/inputs/param-textarea/param-textarea.component.mjs +5 -3
  40. package/esm2022/lib/components/inputs/param-toggle/param-toggle.component.mjs +24 -7
  41. package/esm2022/lib/components/inputs/param-tree/param-tree.component.mjs +3 -3
  42. package/esm2022/lib/components/inputs/param-tree/services/param-tree.service.mjs +9 -2
  43. package/esm2022/lib/components/inputs/param-tree-multi-select/param-tree-multi-select.component.mjs +13 -6
  44. package/esm2022/lib/components/inputs/param-tree-select/param-tree-select.component.mjs +9 -4
  45. package/esm2022/lib/components/inputs/sub-components/param-invalid-icon/param-invalid-icon.component.mjs +9 -5
  46. package/esm2022/lib/components/inputs/sub-components/param-label-hint-icon/param-label-hint-icon.component.mjs +12 -0
  47. package/esm2022/lib/components/paginator/paginator.component.mjs +10 -12
  48. package/esm2022/lib/components/register-table/register-table.component.mjs +31 -12
  49. package/esm2022/lib/components/search-input/search-input.component.mjs +5 -7
  50. package/esm2022/lib/components/sliding-panel/sliding-panel.component.mjs +23 -35
  51. package/esm2022/lib/components/template-modal/index.mjs +3 -0
  52. package/esm2022/lib/components/template-modal/template-modal.base.mjs +16 -0
  53. package/esm2022/lib/components/template-modal/template-modal.component.mjs +16 -0
  54. package/esm2022/lib/core/param/index.mjs +1 -1
  55. package/esm2022/lib/core/param/param-base.mjs +28 -3
  56. package/esm2022/lib/core/param/param-date-base.mjs +20 -11
  57. package/esm2022/lib/core/param/param-select-base.mjs +14 -6
  58. package/esm2022/lib/core/register-base/register-base.store.mjs +1 -1
  59. package/esm2022/lib/directives/date/date-time.types.mjs +1 -1
  60. package/esm2022/lib/providers/index.mjs +2 -0
  61. package/esm2022/lib/providers/provide-icons.mjs +23 -0
  62. package/esm2022/lib/services/date-time.service.mjs +1 -38
  63. package/esm2022/lib/services/dialog/dialog.service.mjs +1 -13
  64. package/esm2022/lib/services/dialog/dialog.types.mjs +2 -2
  65. package/esm2022/lib/services/message.service.mjs +48 -0
  66. package/esm2022/lib/services/validation-message.service.mjs +52 -0
  67. package/esm2022/lib/store/fast-query-store.service.mjs +16 -1
  68. package/esm2022/lib/utils/index.mjs +2 -1
  69. package/esm2022/lib/utils/utils.mjs +17 -0
  70. package/esm2022/public-api.mjs +2 -1
  71. package/fesm2022/ngx-register-base.mjs +1463 -1017
  72. package/fesm2022/ngx-register-base.mjs.map +1 -1
  73. package/icons/arrow-turn-up-left.svg +3 -0
  74. package/icons/check.svg +3 -0
  75. package/icons/floppy.svg +3 -0
  76. package/icons/star-empty.svg +10 -0
  77. package/icons/star-fill.svg +3 -0
  78. package/icons/trash.svg +3 -0
  79. package/icons/xmark.svg +3 -0
  80. package/lib/components/column-settings/column-settings.component.d.ts +9 -9
  81. package/lib/components/column-settings/components/column-settings-template/column-settings-template.component.d.ts +5 -5
  82. package/lib/components/{reset-settings-form → column-settings/components/reset-settings-form}/reset-settings-form.component.d.ts +2 -5
  83. package/lib/components/column-settings/consts/column-settings.consts.d.ts +8 -8
  84. package/lib/components/filters/components/filter-list/filter-edit/filter-edit.component.d.ts +5 -8
  85. package/lib/components/filters/components/filter-list/filter-list-footer/filter-list-footer.component.d.ts +2 -1
  86. package/lib/components/filters/components/filter-list/filter-list-header/filter-list-header.component.d.ts +2 -1
  87. package/lib/components/filters/components/filter-list/filter-list.service.d.ts +2 -3
  88. package/lib/components/filters/components/filter-list.module.d.ts +7 -7
  89. package/lib/components/filters/register-table-filter.component.d.ts +2 -1
  90. package/lib/components/filters/register-table-filter.module.d.ts +2 -2
  91. package/lib/components/index.d.ts +1 -1
  92. package/lib/components/inputs/index.d.ts +3 -4
  93. package/lib/components/inputs/param-calendar-year/param-calendar-year.component.d.ts +2 -8
  94. package/lib/components/inputs/param-custom/param-custom.component.d.ts +1 -1
  95. package/lib/components/inputs/param-date/param-date.component.d.ts +7 -10
  96. package/lib/components/inputs/param-date-range/index.d.ts +1 -0
  97. package/lib/components/inputs/param-date-range/param-date-range.component.d.ts +13 -16
  98. package/lib/components/inputs/param-date-time/param-date-time.component.d.ts +8 -13
  99. package/lib/components/inputs/param-date-time-range/date-time-range/date-time-range.component.d.ts +96 -0
  100. package/lib/components/inputs/param-date-time-range/date-time-range/date-time-range.consts.d.ts +12 -0
  101. package/lib/components/inputs/param-date-time-range/param-date-time-range.component.d.ts +17 -16
  102. package/lib/components/inputs/param-dropbox/param-dropbox.component.d.ts +31 -0
  103. package/lib/components/inputs/param-month/param-month.component.d.ts +10 -8
  104. package/lib/components/inputs/param-month-range/param-month-range.component.d.ts +10 -8
  105. package/lib/components/inputs/param-multi-select/param-multi-select.component.d.ts +9 -11
  106. package/lib/components/inputs/param-select/param-select.component.d.ts +9 -12
  107. package/lib/components/inputs/param-switcher/index.d.ts +2 -0
  108. package/lib/components/inputs/param-switcher/param-switcher.component.d.ts +21 -5
  109. package/lib/components/inputs/param-switcher/param-switcher.types.d.ts +7 -0
  110. package/lib/components/inputs/param-switcher-date-time-range/consts/param-switcher-date-time-range.consts.d.ts +3 -2
  111. package/lib/components/inputs/param-switcher-date-time-range/param-switcher-date-time-range.component.d.ts +5 -4
  112. package/lib/components/inputs/param-text/param-text.component.d.ts +6 -4
  113. package/lib/components/inputs/param-textarea/param-textarea.component.d.ts +2 -1
  114. package/lib/components/inputs/param-toggle/param-toggle.component.d.ts +3 -2
  115. package/lib/components/inputs/param-tree/services/param-tree.service.d.ts +1 -1
  116. package/lib/components/inputs/param-tree-multi-select/param-tree-multi-select.component.d.ts +2 -1
  117. package/lib/components/inputs/sub-components/param-invalid-icon/param-invalid-icon.component.d.ts +2 -1
  118. package/lib/components/inputs/sub-components/param-label-hint-icon/param-label-hint-icon.component.d.ts +5 -0
  119. package/lib/components/paginator/paginator.component.d.ts +3 -4
  120. package/lib/components/register-table/register-table.component.d.ts +5 -3
  121. package/lib/components/sliding-panel/sliding-panel.component.d.ts +8 -8
  122. package/lib/components/template-modal/index.d.ts +2 -0
  123. package/lib/components/template-modal/template-modal.base.d.ts +9 -0
  124. package/lib/components/template-modal/template-modal.component.d.ts +6 -0
  125. package/lib/core/param/index.d.ts +1 -0
  126. package/lib/core/param/param-base.d.ts +18 -2
  127. package/lib/core/param/param-date-base.d.ts +15 -9
  128. package/lib/core/param/param-select-base.d.ts +12 -7
  129. package/lib/core/register-base/register-base.store.d.ts +2 -3
  130. package/lib/directives/date/date-time.types.d.ts +0 -2
  131. package/lib/providers/index.d.ts +1 -0
  132. package/lib/providers/provide-icons.d.ts +3 -0
  133. package/lib/services/date-time.service.d.ts +0 -13
  134. package/lib/services/dialog/dialog.service.d.ts +1 -3
  135. package/lib/services/dialog/dialog.types.d.ts +0 -3
  136. package/lib/services/message.service.d.ts +20 -0
  137. package/lib/services/validation-message.service.d.ts +14 -0
  138. package/lib/store/fast-query-store.service.d.ts +1 -0
  139. package/lib/utils/index.d.ts +1 -0
  140. package/lib/utils/utils.d.ts +3 -0
  141. package/package.json +5 -12
  142. package/public-api.d.ts +1 -0
  143. package/styles/common-param.less +15 -0
  144. package/styles/flex.less +5 -1
  145. package/styles/icons.less +8 -0
  146. package/styles/modals.less +54 -0
  147. package/styles/overrides/tui/tui-input.less +94 -121
  148. package/styles/styles.less +2 -0
  149. package/esm2022/lib/components/inputs/inputs.module.mjs +0 -166
  150. package/esm2022/lib/components/inputs/sub-components/param-delete-content-icon/param-delete-content-btn.component.mjs +0 -15
  151. package/esm2022/lib/components/reset-settings-form/reset-settings-form.component.mjs +0 -18
  152. package/esm2022/lib/components/sliding-panel/sliding-panel.module.mjs +0 -19
  153. package/esm2022/lib/utils/prizm.shared.module.mjs +0 -284
  154. package/icons/calendar-blank.svg +0 -10
  155. package/lib/components/inputs/inputs.module.d.ts +0 -31
  156. package/lib/components/inputs/sub-components/param-delete-content-icon/param-delete-content-btn.component.d.ts +0 -6
  157. package/lib/components/sliding-panel/sliding-panel.module.d.ts +0 -9
  158. package/lib/utils/prizm.shared.module.d.ts +0 -14
  159. /package/icons/{calendar-icon.svg → calendar-date-time.svg} +0 -0
  160. /package/icons/{calendar-custom.svg → calendar-date.svg} +0 -0
@@ -0,0 +1,12 @@
1
+ import { MaskitoDateMode } from '@maskito/kit';
2
+ export declare const DATE_MODE: MaskitoDateMode;
3
+ export declare const DATE_SEPARATOR = ".";
4
+ export declare enum EInputType {
5
+ DATE_FROM = "DATE_FROM",
6
+ TIME_FROM = "TIME_FROM",
7
+ DATE_TO = "DATE_TO",
8
+ TIME_TO = "TIME_TO"
9
+ }
10
+ export declare const DATE_MAX_LENGTH = 10;
11
+ export declare const DATE_PLACEHOLDER = "__.__.____";
12
+ export declare const TIME_PLACEHOLDER = "__:__";
@@ -1,28 +1,29 @@
1
- import { PrizmDateTimeRange, PrizmDay, PrizmDayLike, PrizmTimeMode } from '@prizm-ui/components';
2
- import { ParamDateBase } from '../../../core/param/param-date-base';
3
- import { FormatterSavedValueType, ParserSavedValueType } from '../../../types/params.types';
1
+ import { OnInit } from '@angular/core';
2
+ import { MaskitoTimeMode } from '@maskito/kit';
3
+ import { TuiDayLike } from '@taiga-ui/cdk';
4
+ import { DateRangeType, ParamDateBase } from '../../../core/param/param-date-base';
5
+ import { FormatterSavedValueType, ParserSavedValueType } from '../../../types';
4
6
  import * as i0 from "@angular/core";
5
- export type InputDateTimeRangeSaveValue = {
7
+ export type InputDateRangeSavedValue = {
6
8
  from: string;
7
9
  to: string;
8
10
  } | null;
9
- export declare class ParamDateTimeRangeComponent extends ParamDateBase<PrizmDateTimeRange | null, InputDateTimeRangeSaveValue> {
11
+ export declare class ParamDateTimeRangeComponent extends ParamDateBase<DateRangeType | null, InputDateRangeSavedValue> implements OnInit {
10
12
  placeholder: import("@angular/core").InputSignal<string>;
11
- min: PrizmDay | undefined;
12
- max: PrizmDay | undefined;
13
- timeMode: PrizmTimeMode;
14
- maxLength: PrizmDayLike | null;
15
- set formatSavedValue(formatter: FormatterSavedValueType<PrizmDateTimeRange | null, InputDateTimeRangeSaveValue> | undefined);
16
- set parseSavedValue(parser: ParserSavedValueType<InputDateTimeRangeSaveValue, PrizmDateTimeRange | null> | undefined);
17
- protected formatterSavedValue: (range: PrizmDateTimeRange | null) => InputDateTimeRangeSaveValue;
18
- protected parserSavedValue: (value: InputDateTimeRangeSaveValue) => PrizmDateTimeRange | null;
13
+ timeMode: import("@angular/core").InputSignal<MaskitoTimeMode>;
14
+ maxLength: import("@angular/core").InputSignal<TuiDayLike | null>;
15
+ minLength: import("@angular/core").InputSignal<TuiDayLike | null>;
16
+ set formatSavedValue(formatter: FormatterSavedValueType<DateRangeType | null, InputDateRangeSavedValue> | undefined);
17
+ set parseSavedValue(parser: ParserSavedValueType<InputDateRangeSavedValue, DateRangeType | null> | undefined);
18
+ buildShowedValue: import("@angular/core").InputSignal<(value: DateRangeType | null) => string>;
19
+ protected formatterSavedValue: (range: DateRangeType | null) => InputDateRangeSavedValue;
20
+ protected parserSavedValue: (value: InputDateRangeSavedValue) => DateRangeType | null;
21
+ protected onInit(): void;
19
22
  private _defaultFormatterSaveValue;
20
23
  private _defaultParserSaveValue;
21
- protected onInit(): void;
22
24
  private _subscribeOnTimeZoneChanges;
23
25
  protected get from(): Date | null;
24
26
  protected get to(): Date | null;
25
- private _getDateFromRange;
26
27
  static ɵfac: i0.ɵɵFactoryDeclaration<ParamDateTimeRangeComponent, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<ParamDateTimeRangeComponent, "sproc-param-date-time-range", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "timeMode": { "alias": "timeMode"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "formatSavedValue": { "alias": "formatSavedValue"; "required": false; }; "parseSavedValue": { "alias": "parseSavedValue"; "required": false; }; }, {}, never, never, false, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<ParamDateTimeRangeComponent, "sproc-param-date-time-range", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "timeMode": { "alias": "timeMode"; "required": false; "isSignal": true; }; "maxLength": { "alias": "maxLength"; "required": false; "isSignal": true; }; "minLength": { "alias": "minLength"; "required": false; "isSignal": true; }; "formatSavedValue": { "alias": "formatSavedValue"; "required": false; }; "parseSavedValue": { "alias": "parseSavedValue"; "required": false; }; "buildShowedValue": { "alias": "buildShowedValue"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
28
29
  }
@@ -0,0 +1,31 @@
1
+ import { AfterViewInit, OnInit } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import { MaskitoOptions } from '@maskito/core';
4
+ import { ParamBase } from '../../../core/param/param-base';
5
+ import * as i0 from "@angular/core";
6
+ export declare class ParamDropboxComponent extends ParamBase<string[] | null, string[] | null> implements OnInit, AfterViewInit {
7
+ /** маска для текстового поля в Maskito */
8
+ maskOptions: import("@angular/core").InputSignal<MaskitoOptions | null>;
9
+ /** максимальное кол-во символов */
10
+ maxLength: import("@angular/core").InputSignal<import("@angular/core").InjectionToken<number>>;
11
+ /** гипперссылка */
12
+ clickable: import("@angular/core").InputSignal<boolean>;
13
+ buildShowedValue: import("@angular/core").InputSignal<(values: string[] | null) => string>;
14
+ stringifyText: import("@angular/core").InputSignal<(value: string) => string>;
15
+ private _lineErrorMessage;
16
+ protected lineValidationErrorHint: import("@angular/core").Signal<string>;
17
+ protected lineControl: FormControl<string | null>;
18
+ protected viewModeList: string[];
19
+ protected isAddButtonDisabled: boolean;
20
+ private _cached;
21
+ ngOnInit(): void;
22
+ private _subscribeOnLineValidationMessage;
23
+ ngAfterViewInit(): void;
24
+ onControlValueChange(): void;
25
+ protected addItem(): void;
26
+ protected removeItem(item: any): void;
27
+ protected get lineControlIsInvalidAndNotPristine(): boolean;
28
+ private _subscribeOnLineValueChanges;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<ParamDropboxComponent, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<ParamDropboxComponent, "sproc-param-dropbox", never, { "maskOptions": { "alias": "maskOptions"; "required": false; "isSignal": true; }; "maxLength": { "alias": "maxLength"; "required": false; "isSignal": true; }; "clickable": { "alias": "clickable"; "required": false; "isSignal": true; }; "buildShowedValue": { "alias": "buildShowedValue"; "required": false; "isSignal": true; }; "stringifyText": { "alias": "stringifyText"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
31
+ }
@@ -1,18 +1,20 @@
1
1
  import { ParamDateBase } from '../../../core/param/param-date-base';
2
- import { PrizmMonth } from '@prizm-ui/components';
3
2
  import { FormatterSavedValueType, ParserSavedValueType } from '../../../types/params.types';
3
+ import { TuiMonth } from '@taiga-ui/cdk';
4
4
  import * as i0 from "@angular/core";
5
5
  export type InputMonthSavedValue = string | null;
6
- export declare class ParamMonthComponent extends ParamDateBase<PrizmMonth | null, InputMonthSavedValue> {
6
+ export declare class ParamMonthComponent extends ParamDateBase<TuiMonth | null, InputMonthSavedValue> {
7
7
  placeholder: import("@angular/core").InputSignal<string>;
8
- set formatSavedValue(formatter: FormatterSavedValueType<PrizmMonth | null, InputMonthSavedValue> | undefined);
9
- set parseSavedValue(parser: ParserSavedValueType<InputMonthSavedValue, PrizmMonth | null> | undefined);
10
- buildShowedValue: import("@angular/core").InputSignal<(value: PrizmMonth | null) => string>;
11
- protected formatterSavedValue: (month: PrizmMonth | null) => InputMonthSavedValue;
12
- protected parserSavedValue: (value: InputMonthSavedValue) => PrizmMonth | null;
8
+ set formatSavedValue(formatter: FormatterSavedValueType<TuiMonth | null, InputMonthSavedValue> | undefined);
9
+ set parseSavedValue(parser: ParserSavedValueType<InputMonthSavedValue, TuiMonth | null> | undefined);
10
+ buildShowedValue: import("@angular/core").InputSignal<(value: TuiMonth | null) => string>;
11
+ minMonth: import("@angular/core").Signal<TuiMonth | null>;
12
+ maxMonth: import("@angular/core").Signal<TuiMonth | null>;
13
+ protected formatterSavedValue: (month: TuiMonth | null) => InputMonthSavedValue;
14
+ protected parserSavedValue: (value: InputMonthSavedValue) => TuiMonth | null;
13
15
  private _defaultFormatterSaveValue;
14
16
  private _defaultParserSaveValue;
15
17
  private _formatMonth;
16
18
  static ɵfac: i0.ɵɵFactoryDeclaration<ParamMonthComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<ParamMonthComponent, "sproc-param-month", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "formatSavedValue": { "alias": "formatSavedValue"; "required": false; }; "parseSavedValue": { "alias": "parseSavedValue"; "required": false; }; "buildShowedValue": { "alias": "buildShowedValue"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<ParamMonthComponent, "sproc-param-month", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "formatSavedValue": { "alias": "formatSavedValue"; "required": false; }; "parseSavedValue": { "alias": "parseSavedValue"; "required": false; }; "buildShowedValue": { "alias": "buildShowedValue"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
18
20
  }
@@ -1,21 +1,23 @@
1
- import { PrizmMonthRange } from '@prizm-ui/components';
2
1
  import { ParamDateBase } from '../../../core/param/param-date-base';
3
2
  import { FormatterSavedValueType, ParserSavedValueType } from '../../../types/params.types';
3
+ import { TuiMonthRange } from '@taiga-ui/cdk';
4
4
  import * as i0 from "@angular/core";
5
5
  export type InputMonthRangeSavedValue = {
6
6
  from: string;
7
7
  to: string;
8
8
  } | null;
9
- export declare class ParamMonthRangeComponent extends ParamDateBase<PrizmMonthRange | null, InputMonthRangeSavedValue> {
9
+ export declare class ParamMonthRangeComponent extends ParamDateBase<TuiMonthRange | null, InputMonthRangeSavedValue> {
10
10
  placeholder: import("@angular/core").InputSignal<string>;
11
- set formatSavedValue(formatter: FormatterSavedValueType<PrizmMonthRange | null, InputMonthRangeSavedValue> | undefined);
12
- set parseSavedValue(parser: ParserSavedValueType<InputMonthRangeSavedValue, PrizmMonthRange | null> | undefined);
13
- buildShowedValue: import("@angular/core").InputSignal<(range: PrizmMonthRange | null) => string>;
14
- protected formatterSavedValue: (range: PrizmMonthRange | null) => InputMonthRangeSavedValue;
15
- protected parserSavedValue: (value: InputMonthRangeSavedValue) => PrizmMonthRange | null;
11
+ set formatSavedValue(formatter: FormatterSavedValueType<TuiMonthRange | null, InputMonthRangeSavedValue> | undefined);
12
+ set parseSavedValue(parser: ParserSavedValueType<InputMonthRangeSavedValue, TuiMonthRange | null> | undefined);
13
+ minLength: number | null;
14
+ maxLength: number | null;
15
+ buildShowedValue: import("@angular/core").InputSignal<(range: TuiMonthRange | null) => string>;
16
+ protected formatterSavedValue: (range: TuiMonthRange | null) => InputMonthRangeSavedValue;
17
+ protected parserSavedValue: (value: InputMonthRangeSavedValue) => TuiMonthRange | null;
16
18
  private _defaultFormatterSaveValue;
17
19
  private _defaultParserSaveValue;
18
20
  private _formatMonth;
19
21
  static ɵfac: i0.ɵɵFactoryDeclaration<ParamMonthRangeComponent, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<ParamMonthRangeComponent, "sproc-param-month-range", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "formatSavedValue": { "alias": "formatSavedValue"; "required": false; }; "parseSavedValue": { "alias": "parseSavedValue"; "required": false; }; "buildShowedValue": { "alias": "buildShowedValue"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<ParamMonthRangeComponent, "sproc-param-month-range", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "formatSavedValue": { "alias": "formatSavedValue"; "required": false; }; "parseSavedValue": { "alias": "parseSavedValue"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "buildShowedValue": { "alias": "buildShowedValue"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
21
23
  }
@@ -1,5 +1,4 @@
1
1
  import { Injector, OnDestroy } from '@angular/core';
2
- import { PrizmMultiSelectSearchMatcher } from '@prizm-ui/components';
3
2
  import { BehaviorSubject, Subscription } from 'rxjs';
4
3
  import { TuiContext, TuiIdentityMatcher, TuiStringHandler } from '@taiga-ui/cdk';
5
4
  import { IFilterSelectValue } from '../../../types/params.types';
@@ -9,19 +8,18 @@ export declare class ParamMultiSelectComponent extends ParamSelectBase<IFilterSe
9
8
  private document;
10
9
  readonly placeholder: import("@angular/core").InputSignal<string>;
11
10
  readonly itemSelectAll: import("@angular/core").InputSignal<boolean>;
12
- readonly searchMatcher: import("@angular/core").InputSignal<PrizmMultiSelectSearchMatcher<IFilterSelectValue>>;
11
+ readonly itemSelectAllName: import("@angular/core").InputSignal<string>;
13
12
  readonly shortPickedLength: import("@angular/core").InputSignal<boolean>;
14
13
  readonly stringify: import("@angular/core").InputSignal<TuiStringHandler<IFilterSelectValue | TuiContext<IFilterSelectValue>>>;
15
14
  readonly identityMatcher: import("@angular/core").InputSignal<TuiIdentityMatcher<IFilterSelectValue>>;
16
15
  readonly buildShowedValue: import("@angular/core").InputSignal<(values: IFilterSelectValue[]) => string>;
16
+ inputMultiSelectRowsLimit: import("@angular/core").InputSignal<number>;
17
17
  readonly onSelect: import("@angular/core").OutputEmitterRef<IFilterSelectValue[]>;
18
- protected readonly selectAllItem: IFilterSelectValue;
19
18
  protected onCancelButtonSubscription: Subscription;
20
- protected searchValue: string;
19
+ protected searchValue: import("@angular/core").WritableSignal<string>;
20
+ protected filteredItems: import("@angular/core").WritableSignal<IFilterSelectValue[] | null>;
21
+ protected allItemCount: import("@angular/core").WritableSignal<number | null>;
21
22
  protected readonly onSearch$: BehaviorSubject<string>;
22
- private onSearchSubscription;
23
- private cachedString;
24
- private onClearButtonSubscription;
25
23
  choosedHint: string;
26
24
  constructor(injector: Injector, document: Document);
27
25
  onInit(): void;
@@ -29,10 +27,10 @@ export declare class ParamMultiSelectComponent extends ParamSelectBase<IFilterSe
29
27
  afterViewInit(): void;
30
28
  private _observeFetchItems;
31
29
  private _subscribeOnMetaChanges;
32
- private _subscribeOnValueControl;
33
30
  ngOnDestroy(): void;
34
- protected fetchItems(searchValue?: string): void;
35
- private _subscribeOnClearButton;
31
+ protected fetchAllCount(searchValue?: string): void;
32
+ protected fetchItems(fetchAll: boolean, searchValue?: string): void;
33
+ protected selectAll(): void;
36
34
  private _getSelectedItemIDs;
37
35
  private _buildSelectedItemIdsWhere;
38
36
  private _handleResults;
@@ -42,5 +40,5 @@ export declare class ParamMultiSelectComponent extends ParamSelectBase<IFilterSe
42
40
  protected onSearch(value: string | null): void;
43
41
  protected getListLength(list: IFilterSelectValue[]): string;
44
42
  static ɵfac: i0.ɵɵFactoryDeclaration<ParamMultiSelectComponent, never>;
45
- static ɵcmp: i0.ɵɵComponentDeclaration<ParamMultiSelectComponent, "sproc-param-multi-select", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "itemSelectAll": { "alias": "itemSelectAll"; "required": false; "isSignal": true; }; "searchMatcher": { "alias": "searchMatcher"; "required": false; "isSignal": true; }; "shortPickedLength": { "alias": "shortPickedLength"; "required": false; "isSignal": true; }; "stringify": { "alias": "stringify"; "required": false; "isSignal": true; }; "identityMatcher": { "alias": "identityMatcher"; "required": false; "isSignal": true; }; "buildShowedValue": { "alias": "buildShowedValue"; "required": false; "isSignal": true; }; }, { "onSelect": "onSelect"; }, never, never, true, never>;
43
+ static ɵcmp: i0.ɵɵComponentDeclaration<ParamMultiSelectComponent, "sproc-param-multi-select", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "itemSelectAll": { "alias": "itemSelectAll"; "required": false; "isSignal": true; }; "itemSelectAllName": { "alias": "itemSelectAllName"; "required": false; "isSignal": true; }; "shortPickedLength": { "alias": "shortPickedLength"; "required": false; "isSignal": true; }; "stringify": { "alias": "stringify"; "required": false; "isSignal": true; }; "identityMatcher": { "alias": "identityMatcher"; "required": false; "isSignal": true; }; "buildShowedValue": { "alias": "buildShowedValue"; "required": false; "isSignal": true; }; "inputMultiSelectRowsLimit": { "alias": "inputMultiSelectRowsLimit"; "required": false; "isSignal": true; }; }, { "onSelect": "onSelect"; }, never, never, true, never>;
46
44
  }
@@ -3,24 +3,21 @@ import { BehaviorSubject } from 'rxjs';
3
3
  import { TuiStringMatcher } from '@taiga-ui/cdk';
4
4
  import { ParamSelectBase } from '../../../core/param/param-select-base';
5
5
  import { IFilterSelectValue } from '../../../types/params.types';
6
+ import { InferArrayType } from '../../../types';
6
7
  import * as i0 from "@angular/core";
7
- export declare class ParamSelectComponent extends ParamSelectBase<IFilterSelectValue | null, IFilterSelectValue | null> implements OnDestroy {
8
+ export declare class ParamSelectComponent<T extends IFilterSelectValue | null = IFilterSelectValue | null> extends ParamSelectBase<T, T> implements OnDestroy {
8
9
  placeholder: import("@angular/core").InputSignal<string>;
9
- readonly stringify: import("@angular/core").InputSignal<(item: IFilterSelectValue) => string>;
10
- readonly identityMatcher: import("@angular/core").InputSignal<(a: IFilterSelectValue, b: IFilterSelectValue) => boolean>;
11
- readonly matcher: import("@angular/core").InputSignal<TuiStringMatcher<IFilterSelectValue>>;
12
- buildShowedValue: import("@angular/core").InputSignal<(value: IFilterSelectValue | null) => string>;
10
+ readonly stringify: import("@angular/core").InputSignal<(item: NonNullable<T>) => string>;
11
+ readonly identityMatcher: import("@angular/core").InputSignal<(a: NonNullable<T>, b: NonNullable<T>) => boolean>;
12
+ readonly matcher: import("@angular/core").InputSignal<TuiStringMatcher<NonNullable<InferArrayType<T>>>>;
13
+ buildShowedValue: import("@angular/core").InputSignal<(value: T) => string>;
13
14
  strict: import("@angular/core").InputSignal<boolean>;
14
- onSelect: EventEmitter<IFilterSelectValue>;
15
+ onSelect: EventEmitter<NonNullable<T>>;
15
16
  protected readonly search$: BehaviorSubject<string | undefined>;
16
17
  afterViewInit(): void;
17
18
  ngOnDestroy(): void;
18
19
  private _subscribeOnSearch;
19
20
  private _observeFetchItems;
20
- private _observeValueFill;
21
- private _observeEmptyValue;
22
- private _observeValueFetch;
23
- private _getIdFromValue;
24
21
  private _subscribeOnMetaChanges;
25
22
  protected fetchItems(searchValue?: string): void;
26
23
  private _getSelectedItemIDs;
@@ -29,6 +26,6 @@ export declare class ParamSelectComponent extends ParamSelectBase<IFilterSelectV
29
26
  private _getNameFromField;
30
27
  private _getNameFromDeepField;
31
28
  private _updateControlValues;
32
- static ɵfac: i0.ɵɵFactoryDeclaration<ParamSelectComponent, never>;
33
- static ɵcmp: i0.ɵɵComponentDeclaration<ParamSelectComponent, "sproc-param-select", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "stringify": { "alias": "stringify"; "required": false; "isSignal": true; }; "identityMatcher": { "alias": "identityMatcher"; "required": false; "isSignal": true; }; "matcher": { "alias": "matcher"; "required": false; "isSignal": true; }; "buildShowedValue": { "alias": "buildShowedValue"; "required": false; "isSignal": true; }; "strict": { "alias": "strict"; "required": false; "isSignal": true; }; }, { "onSelect": "onSelect"; }, never, never, true, never>;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<ParamSelectComponent<any>, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<ParamSelectComponent<any>, "sproc-param-select", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "stringify": { "alias": "stringify"; "required": false; "isSignal": true; }; "identityMatcher": { "alias": "identityMatcher"; "required": false; "isSignal": true; }; "matcher": { "alias": "matcher"; "required": false; "isSignal": true; }; "buildShowedValue": { "alias": "buildShowedValue"; "required": false; "isSignal": true; }; "strict": { "alias": "strict"; "required": false; "isSignal": true; }; }, { "onSelect": "onSelect"; }, never, never, true, never>;
34
31
  }
@@ -0,0 +1,2 @@
1
+ export { ParamSwitcherComponent } from './param-switcher.component';
2
+ export type { ISwitcherItem } from './param-switcher.types';
@@ -1,8 +1,24 @@
1
- import { PrizmSwitcherItem } from '@prizm-ui/components';
2
- import { ParamBase } from '../../../core';
1
+ import { AfterViewChecked } from '@angular/core';
2
+ import { ParamBase } from '../../../core/param/param-base';
3
+ import { ISwitcherItem } from './param-switcher.types';
4
+ import { InputControlSaveValue } from '../../../types';
3
5
  import * as i0 from "@angular/core";
4
- export declare class ParamSwitcherComponent extends ParamBase<number, number> {
5
- switchers: PrizmSwitcherItem[];
6
+ export declare class ParamSwitcherComponent extends ParamBase<ISwitcherItem | null, InputControlSaveValue> implements AfterViewChecked {
7
+ switchers: import("@angular/core").InputSignal<ISwitcherItem<string | number>[]>;
8
+ /** ширина блока */
9
+ width: import("@angular/core").InputSignal<number | undefined>;
10
+ /** высота блока */
11
+ height: import("@angular/core").InputSignal<number | undefined>;
12
+ /** дефолтное значение */
13
+ selectedSwitcherIndex: import("@angular/core").InputSignal<number | null>;
14
+ /** uuid для группы инпутов switcher */
15
+ protected uniqueSwitcherUUID: string;
16
+ private _switcherMap;
17
+ protected get setBlockWidthProp(): string;
18
+ protected get setBlockHeightProp(): string;
19
+ onInit(): void;
20
+ ngAfterViewChecked(): void;
21
+ protected onControlValueChange(): void;
6
22
  static ɵfac: i0.ɵɵFactoryDeclaration<ParamSwitcherComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<ParamSwitcherComponent, "sproc-param-switcher", never, { "switchers": { "alias": "switchers"; "required": false; }; }, {}, never, never, false, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<ParamSwitcherComponent, "sproc-param-switcher", never, { "switchers": { "alias": "switchers"; "required": true; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "selectedSwitcherIndex": { "alias": "selectedSwitcherIndex"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
8
24
  }
@@ -0,0 +1,7 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ export interface ISwitcherItem<ID = number | string> {
3
+ id?: ID;
4
+ name: string;
5
+ disabled?: boolean;
6
+ template?: TemplateRef<any>;
7
+ }
@@ -1,2 +1,3 @@
1
- import { PrizmSwitcherItem } from '@prizm-ui/components';
2
- export declare const SwitcherItems: PrizmSwitcherItem[];
1
+ import { ESwitcherValue } from '../types/param-switcher-date-time-range.types';
2
+ import { ISwitcherItem } from '../../param-switcher/param-switcher.types';
3
+ export declare const SwitcherItems: ISwitcherItem<ESwitcherValue>[];
@@ -1,10 +1,11 @@
1
1
  import { FormControl } from '@angular/forms';
2
- import { ESwitcherValue } from './types/param-switcher-date-time-range.types';
3
2
  import { ParamDateTimeRangeComponent } from '../param-date-time-range/param-date-time-range.component';
3
+ import { ISwitcherItem } from '../param-switcher/param-switcher.types';
4
+ import { ESwitcherValue } from './types/param-switcher-date-time-range.types';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class ParamSwitcherDateTimeRangeComponent extends ParamDateTimeRangeComponent {
6
- protected switcherControl: FormControl<ESwitcherValue | null>;
7
- protected switchers: import("@prizm-ui/components").PrizmSwitcherItem<import("@prizm-ui/components").PrizmSwitcherId>[];
7
+ protected switcherControl: FormControl<ISwitcherItem<ESwitcherValue> | null>;
8
+ protected readonly switchers: ISwitcherItem<ESwitcherValue>[];
8
9
  onInit(): void;
9
10
  afterViewInit(): void;
10
11
  private _subscribeOnSwitcher;
@@ -15,5 +16,5 @@ export declare class ParamSwitcherDateTimeRangeComponent extends ParamDateTimeRa
15
16
  private _calcFourthQuarterRange;
16
17
  private _calcYearRange;
17
18
  static ɵfac: i0.ɵɵFactoryDeclaration<ParamSwitcherDateTimeRangeComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<ParamSwitcherDateTimeRangeComponent, "sproc-param-switcher-date-time-range", never, {}, {}, never, never, false, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<ParamSwitcherDateTimeRangeComponent, "sproc-param-switcher-date-time-range", never, {}, {}, never, never, true, never>;
19
20
  }
@@ -1,10 +1,12 @@
1
1
  import { MaskitoOptions } from '@maskito/core';
2
- import { ParamTextBase } from '../../../core/param';
2
+ import { ParamTextBase } from '../../../core/param/param-text-base';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class ParamTextComponent extends ParamTextBase {
5
+ buildShowedValue: import("@angular/core").InputSignal<(value: string | null) => string>;
6
+ stringifyText: import("@angular/core").InputSignal<(value: string) => string>;
5
7
  maskOptions: import("@angular/core").InputSignal<MaskitoOptions | null>;
6
- /** сообщение об ошибке для текстового поля */
7
- errorMessage: import("@angular/core").InputSignal<string>;
8
+ /** тип инпута */
9
+ type: import("@angular/core").InputSignal<"text" | "password">;
8
10
  static ɵfac: i0.ɵɵFactoryDeclaration<ParamTextComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<ParamTextComponent, "sproc-param-text", never, { "maskOptions": { "alias": "maskOptions"; "required": false; "isSignal": true; }; "errorMessage": { "alias": "errorMessage"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ParamTextComponent, "sproc-param-text", never, { "buildShowedValue": { "alias": "buildShowedValue"; "required": false; "isSignal": true; }; "stringifyText": { "alias": "stringifyText"; "required": false; "isSignal": true; }; "maskOptions": { "alias": "maskOptions"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
10
12
  }
@@ -1,10 +1,11 @@
1
1
  import { ParamTextBase } from '../../../core/param';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class ParamTextareaComponent extends ParamTextBase {
4
+ buildShowedValue: import("@angular/core").InputSignal<(value: string | null) => string>;
4
5
  /** Минимальное кол-во строк в инпуте */
5
6
  min: import("@angular/core").InputSignal<number>;
6
7
  /** Максимальное кол-во строк в инпуте */
7
8
  max: import("@angular/core").InputSignal<number>;
8
9
  static ɵfac: i0.ɵɵFactoryDeclaration<ParamTextareaComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<ParamTextareaComponent, "sproc-param-textarea", never, { "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<ParamTextareaComponent, "sproc-param-textarea", never, { "buildShowedValue": { "alias": "buildShowedValue"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
10
11
  }
@@ -3,7 +3,8 @@ import { TuiSizeS } from '@taiga-ui/core';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class ParamToggleComponent extends ParamBase<boolean, boolean> {
5
5
  buildShowedValue: import("@angular/core").InputSignal<(value: boolean) => string>;
6
- size: import("@angular/core").InputSignal<TuiSizeS>;
6
+ size: import("@angular/core").InputSignal<"m" | "l" | "s">;
7
+ toggleSize: import("@angular/core").Signal<TuiSizeS>;
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<ParamToggleComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<ParamToggleComponent, "sproc-param-toggle", never, { "buildShowedValue": { "alias": "buildShowedValue"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<ParamToggleComponent, "sproc-param-toggle", never, { "buildShowedValue": { "alias": "buildShowedValue"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
9
10
  }
@@ -29,7 +29,7 @@ export declare class ParamTreeService<T> {
29
29
  getChildren(node: ITreeNode<T>): ITreeNode<T>[];
30
30
  hasChildren(node: ITreeNode<T>): boolean;
31
31
  getTopLevelNodes(): ITreeNode<T>[];
32
- setLoaderNode(loaderNode: ITreeNode<T>, defaultNodeOpenedState?: boolean): void;
32
+ setLoaderNode(loaderNode: ITreeNode<T>, defaultNodeOpenedState?: boolean, openedNodesState?: Map<ITreeNode<T>, boolean>): void;
33
33
  setLastCheckedNode(node: ITreeNode<T> | null): void;
34
34
  equals(node1: ITreeNode<T>, node2: ITreeNode<T>): boolean;
35
35
  static ɵfac: i0.ɵɵFactoryDeclaration<ParamTreeService<any>, never>;
@@ -18,6 +18,7 @@ export declare class ParamTreeMultiSelectComponent<T> extends ParamSelectBase<IT
18
18
  defaultNodeOpenedState: import("@angular/core").InputSignal<boolean | undefined>;
19
19
  stringify: import("@angular/core").InputSignal<(item: ITreeNode<T>) => string>;
20
20
  shortPickedLength: import("@angular/core").InputSignal<boolean>;
21
+ openedNodesState: import("@angular/core").InputSignal<Map<ITreeNode<T>, boolean> | undefined>;
21
22
  readonly buildShowedValue: import("@angular/core").InputSignal<(values: ITreeNode[]) => string>;
22
23
  placeholder: import("@angular/core").InputSignal<string>;
23
24
  private readonly _treeService;
@@ -27,5 +28,5 @@ export declare class ParamTreeMultiSelectComponent<T> extends ParamSelectBase<IT
27
28
  private _subscribeForUpdateCheckedNodes;
28
29
  protected setSelectedNodes(node: ITreeNode<T>[]): void;
29
30
  static ɵfac: i0.ɵɵFactoryDeclaration<ParamTreeMultiSelectComponent<any>, never>;
30
- static ɵcmp: i0.ɵɵComponentDeclaration<ParamTreeMultiSelectComponent<any>, "sproc-param-tree-multi-select", never, { "loaderNode": { "alias": "loaderNode"; "required": true; "isSignal": true; }; "defaultNodeOpenedState": { "alias": "defaultNodeOpenedState"; "required": false; "isSignal": true; }; "stringify": { "alias": "stringify"; "required": false; "isSignal": true; }; "shortPickedLength": { "alias": "shortPickedLength"; "required": false; "isSignal": true; }; "buildShowedValue": { "alias": "buildShowedValue"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<ParamTreeMultiSelectComponent<any>, "sproc-param-tree-multi-select", never, { "loaderNode": { "alias": "loaderNode"; "required": true; "isSignal": true; }; "defaultNodeOpenedState": { "alias": "defaultNodeOpenedState"; "required": false; "isSignal": true; }; "stringify": { "alias": "stringify"; "required": false; "isSignal": true; }; "shortPickedLength": { "alias": "shortPickedLength"; "required": false; "isSignal": true; }; "openedNodesState": { "alias": "openedNodesState"; "required": false; "isSignal": true; }; "buildShowedValue": { "alias": "buildShowedValue"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
31
32
  }
@@ -1,5 +1,6 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class ParamInvalidIconComponent {
3
+ hint: import("@angular/core").InputSignal<string>;
3
4
  static ɵfac: i0.ɵɵFactoryDeclaration<ParamInvalidIconComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<ParamInvalidIconComponent, "sproc-param-invalid-icon", never, {}, {}, never, never, true, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<ParamInvalidIconComponent, "sproc-param-invalid-icon", never, { "hint": { "alias": "hint"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
5
6
  }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ParamLabelHintIconComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<ParamLabelHintIconComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<ParamLabelHintIconComponent, "sproc-param-label-hint-icon", never, {}, {}, never, never, true, never>;
5
+ }
@@ -1,15 +1,14 @@
1
1
  import { NumberInput } from '@angular/cdk/coercion';
2
2
  import { OnDestroy } from '@angular/core';
3
- import { PolymorphContent } from '@prizm-ui/components';
4
3
  import { Subject } from 'rxjs';
5
4
  import { IPaginatorOptions, IPaginatorOutput } from './types/paginator.types';
6
5
  import * as i0 from "@angular/core";
7
6
  export declare enum SvgSrc {
8
- CHEVRONS_DOUBLE_LEFT = "assets/ngx-register-base/icons/chevrons-double-left.svg",
9
- CHEVRONS_DOUBLE_RIGHT = "assets/ngx-register-base/icons/chevrons-double-right.svg"
7
+ CHEVRONS_DOUBLE_LEFT = "@sproc.chevrons-double-left",
8
+ CHEVRONS_DOUBLE_RIGHT = "@sproc.chevrons-double-right"
10
9
  }
11
10
  export declare class PaginatorComponent implements OnDestroy {
12
- textOnPage: import("@angular/core").InputSignal<PolymorphContent>;
11
+ textOnPage: import("@angular/core").InputSignal<string>;
13
12
  totalRecords: import("@angular/core").InputSignalWithTransform<number, NumberInput>;
14
13
  /** Количество видимых страниц вокруг активной страницы */
15
14
  pageLinkSize: import("@angular/core").InputSignal<number>;
@@ -62,10 +62,10 @@ export declare class RegisterTableComponent implements OnDestroy {
62
62
  emptyText: import("@angular/core").InputSignal<string>;
63
63
  /** Дизейбл сортировки */
64
64
  sortingDisabled: import("@angular/core").InputSignal<boolean>;
65
- /** Максимальное значения выбора чекбоксов через поле ввода */
66
- checkboxInputMaxValue: import("@angular/core").InputSignal<number | null>;
67
65
  /** Дизейбл выбора чекбоксов */
68
66
  checkboxDisabled: import("@angular/core").InputSignal<boolean>;
67
+ /** Максимальное значение количества выбираемых записей */
68
+ maxSelectedRows: import("@angular/core").InputSignal<number | null>;
69
69
  /** Дизейбл выбора чекбоксов */
70
70
  paginatorDisabled: import("@angular/core").InputSignal<boolean>;
71
71
  selectedCounter: import("@angular/core").Signal<number>;
@@ -74,6 +74,7 @@ export declare class RegisterTableComponent implements OnDestroy {
74
74
  private readonly _shift;
75
75
  private readonly _domIntersectionService;
76
76
  private readonly _selectedService;
77
+ private readonly _messageService;
77
78
  /** Событие выбора в чекбокс-селекторе */
78
79
  selectChanged: import("@angular/core").OutputEmitterRef<ApplySelectionTypes>;
79
80
  /** Событие изменения значений пагинатора */
@@ -134,6 +135,7 @@ export declare class RegisterTableComponent implements OnDestroy {
134
135
  private _setScrollPositionAfterDataLoading;
135
136
  private _projectHeaderTemplates;
136
137
  private _projectCellTemplates;
138
+ private _setProjectedCellsMap;
137
139
  private _syncRowVisibilityDOM;
138
140
  ngOnDestroy(): void;
139
141
  protected getProjectionHeaderByName(name: string): TemplateRef<any> | undefined;
@@ -161,5 +163,5 @@ export declare class RegisterTableComponent implements OnDestroy {
161
163
  private _filterVisibleColumns;
162
164
  private _getMaxDepth;
163
165
  static ɵfac: i0.ɵɵFactoryDeclaration<RegisterTableComponent, never>;
164
- static ɵcmp: i0.ɵɵComponentDeclaration<RegisterTableComponent, "sproc-register-table", never, { "isLoading": { "alias": "isLoading"; "required": true; "isSignal": true; }; "isPaginatorLoading": { "alias": "isPaginatorLoading"; "required": false; "isSignal": true; }; "page": { "alias": "page"; "required": true; "isSignal": true; }; "limit": { "alias": "limit"; "required": true; "isSignal": true; }; "checkboxColumn": { "alias": "checkboxColumn"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "columnsData": { "alias": "columnsData"; "required": true; "isSignal": true; }; "stickyLeftIds": { "alias": "stickyLeftIds"; "required": false; "isSignal": true; }; "stickyRightIds": { "alias": "stickyRightIds"; "required": false; "isSignal": true; }; "totalRecords": { "alias": "totalRecords"; "required": true; "isSignal": true; }; "totalNotFiltered": { "alias": "totalNotFiltered"; "required": true; "isSignal": true; }; "rowData": { "alias": "rowData"; "required": true; "isSignal": true; }; "selectedIds": { "alias": "selectedIds"; "required": false; "isSignal": true; }; "selectedObjects": { "alias": "selectedObjects"; "required": false; "isSignal": true; }; "isSelectloading": { "alias": "isSelectloading"; "required": false; "isSignal": true; }; "emptyText": { "alias": "emptyText"; "required": false; "isSignal": true; }; "sortingDisabled": { "alias": "sortingDisabled"; "required": false; "isSignal": true; }; "checkboxInputMaxValue": { "alias": "checkboxInputMaxValue"; "required": false; "isSignal": true; }; "checkboxDisabled": { "alias": "checkboxDisabled"; "required": false; "isSignal": true; }; "paginatorDisabled": { "alias": "paginatorDisabled"; "required": false; "isSignal": true; }; }, { "selectChanged": "selectChanged"; "paginatorChange": "paginatorChange"; "rowClick": "rowClick"; "rowDblClick": "rowDblClick"; "rowSelected": "rowSelected"; "sort": "sort"; "thsWidthChange": "thsWidthChange"; "visibleRowsChange": "visibleRowsChange"; }, ["headerTemplates", "cellTemplates"], never, true, never>;
166
+ static ɵcmp: i0.ɵɵComponentDeclaration<RegisterTableComponent, "sproc-register-table", never, { "isLoading": { "alias": "isLoading"; "required": true; "isSignal": true; }; "isPaginatorLoading": { "alias": "isPaginatorLoading"; "required": false; "isSignal": true; }; "page": { "alias": "page"; "required": true; "isSignal": true; }; "limit": { "alias": "limit"; "required": true; "isSignal": true; }; "checkboxColumn": { "alias": "checkboxColumn"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "columnsData": { "alias": "columnsData"; "required": true; "isSignal": true; }; "stickyLeftIds": { "alias": "stickyLeftIds"; "required": false; "isSignal": true; }; "stickyRightIds": { "alias": "stickyRightIds"; "required": false; "isSignal": true; }; "totalRecords": { "alias": "totalRecords"; "required": true; "isSignal": true; }; "totalNotFiltered": { "alias": "totalNotFiltered"; "required": true; "isSignal": true; }; "rowData": { "alias": "rowData"; "required": true; "isSignal": true; }; "selectedIds": { "alias": "selectedIds"; "required": false; "isSignal": true; }; "selectedObjects": { "alias": "selectedObjects"; "required": false; "isSignal": true; }; "isSelectloading": { "alias": "isSelectloading"; "required": false; "isSignal": true; }; "emptyText": { "alias": "emptyText"; "required": false; "isSignal": true; }; "sortingDisabled": { "alias": "sortingDisabled"; "required": false; "isSignal": true; }; "checkboxDisabled": { "alias": "checkboxDisabled"; "required": false; "isSignal": true; }; "maxSelectedRows": { "alias": "maxSelectedRows"; "required": false; "isSignal": true; }; "paginatorDisabled": { "alias": "paginatorDisabled"; "required": false; "isSignal": true; }; }, { "selectChanged": "selectChanged"; "paginatorChange": "paginatorChange"; "rowClick": "rowClick"; "rowDblClick": "rowDblClick"; "rowSelected": "rowSelected"; "sort": "sort"; "thsWidthChange": "thsWidthChange"; "visibleRowsChange": "visibleRowsChange"; }, ["headerTemplates", "cellTemplates"], never, true, never>;
165
167
  }
@@ -1,14 +1,14 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class SlidingPanelComponent {
3
- get headerOffsetHeightPx(): string;
4
- get footerOffsetHeightPx(): string;
5
- get subOffsetHeightPx(): string;
6
3
  /** Доп. отступ для вычисления высоты панели (в пикселях) */
7
- subOffsetHeight: number;
4
+ subOffsetHeight: import("@angular/core").InputSignal<number>;
8
5
  /** Состояние видимости панели */
9
- isOpen: boolean | null | undefined;
10
- private readonly _headerContainer;
11
- private readonly _footerContainer;
6
+ isOpen: import("@angular/core").InputSignal<boolean | null | undefined>;
7
+ protected readonly headerHeightPx: import("@angular/core").WritableSignal<number>;
8
+ protected readonly footerHeightPx: import("@angular/core").WritableSignal<number>;
9
+ protected onHeaderResize(headerContainer: HTMLElement): void;
10
+ protected onFooterResize(footerContainer: HTMLElement): void;
11
+ private _getFirstChildOffsetHeight;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<SlidingPanelComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<SlidingPanelComponent, "sproc-sliding-panel", never, { "subOffsetHeight": { "alias": "subOffsetHeight"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; }, {}, never, ["[header]", "*", "[footer]"], false, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<SlidingPanelComponent, "sproc-sliding-panel", never, { "subOffsetHeight": { "alias": "subOffsetHeight"; "required": false; "isSignal": true; }; "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; }, {}, never, ["[header]", "*", "[footer]"], true, never>;
14
14
  }
@@ -0,0 +1,2 @@
1
+ export { TemplateBaseModal } from './template-modal.base';
2
+ export { TemplateModalComponent } from './template-modal.component';
@@ -0,0 +1,9 @@
1
+ import { TuiDialogContext } from '@taiga-ui/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TemplateBaseModal<Data = undefined, Result = void> {
4
+ protected readonly context: TuiDialogContext<Result, Data>;
5
+ protected readonly data: Data;
6
+ protected readonly completeWith: (value: Result) => void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<TemplateBaseModal<any, any>, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TemplateBaseModal<any, any>, never, never, {}, {}, never, never, false, never>;
9
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class TemplateModalComponent {
3
+ width: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<TemplateModalComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<TemplateModalComponent, "sproc-template-modal", never, { "width": { "alias": "width"; "required": false; "isSignal": true; }; }, {}, never, ["[modalHeader]", "*", "[modalFooter]"], true, never>;
6
+ }
@@ -1,5 +1,6 @@
1
1
  export * from './param.tokens';
2
2
  export { ParamBase } from './param-base';
3
3
  export { ParamDateBase } from './param-date-base';
4
+ export type { DateRangeType } from './param-date-base';
4
5
  export { ParamSelectBase } from './param-select-base';
5
6
  export { ParamTextBase } from './param-text-base';