@rt-tools/ui-kit 0.0.29 → 0.2.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.
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@rt-tools/ui-kit",
3
- "version": "0.0.29",
3
+ "version": "0.2.0",
4
4
  "license": "Apache-2.0",
5
5
  "author": "Yauheni Krumin",
6
6
  "type": "module",
7
7
  "dependencies": {
8
8
  "tslib": "^2.8.0",
9
- "@rt-tools/core": "^0.0.5",
10
- "@rt-tools/store": "^0.0.6",
11
- "@rt-tools/utils": "^0.0.9"
9
+ "@rt-tools/core": "^0.2.0",
10
+ "@rt-tools/store": "^0.2.0",
11
+ "@rt-tools/utils": "^0.2.0"
12
12
  },
13
13
  "peerDependencies": {
14
- "@rt-tools/core": "^0.0.5",
15
- "@rt-tools/store": "^0.0.6",
16
- "@rt-tools/utils": "^0.0.9",
14
+ "@rt-tools/core": "^0.2.0",
15
+ "@rt-tools/store": "^0.2.0",
16
+ "@rt-tools/utils": "^0.2.0",
17
17
  "@angular/animations": "^22.0.0",
18
18
  "@angular/cdk": "^22.0.0",
19
19
  "@angular/common": "^22.0.0",
Binary file
@@ -3,20 +3,19 @@ import { Type, OnInit, Signal, TemplateRef, WritableSignal, InputSignal, InputSi
3
3
  import { FormControl, ControlValueAccessor, Validator, FormGroup, ValidationErrors } from '@angular/forms';
4
4
  import { ThemePalette } from '@angular/material/core';
5
5
  import { Observable, Subject } from 'rxjs';
6
- import { Nullable } from '@rt-tools/core';
6
+ import { Nullable, PageModel, SortModel, FilterOperatorType, FilterModel, FILTER_OPERATOR_TYPE_ENUM } from '@rt-tools/utils';
7
7
  import { MatDialogConfig } from '@angular/material/dialog';
8
8
  import { MatDrawer } from '@angular/material/sidenav';
9
9
  import { OverlayRef, ComponentType, ConnectedPosition, CdkOverlayOrigin } from '@angular/cdk/overlay';
10
10
  import { ComponentType as ComponentType$1 } from '@angular/cdk/portal';
11
- import { HttpErrorResponse } from '@angular/common/http';
12
11
  import { BooleanInput, NumberInput } from '@angular/cdk/coercion';
13
12
  import { MatButtonAppearance } from '@angular/material/button';
14
13
  import * as i1 from '@angular/material/tooltip';
15
14
  import { TooltipPosition } from '@angular/material/tooltip';
16
15
  import { MatFormFieldAppearance } from '@angular/material/form-field';
17
- import { PageModel, SortModel, FilterOperatorType, FilterModel, FILTER_OPERATOR_TYPE_ENUM, POSITION_ENUM, OSTypes } from '@rt-tools/utils';
18
16
  import { AnimationPlayer, AnimationTriggerMetadata } from '@angular/animations';
19
17
  import { MatSnackBarConfig, MatSnackBarRef } from '@angular/material/snack-bar';
18
+ import { POSITION_ENUM, OSTypes } from '@rt-tools/core';
20
19
  import { CdkDragDrop } from '@angular/cdk/drag-drop';
21
20
  import { MatInput } from '@angular/material/input';
22
21
  import { ImageCroppedEvent } from 'ngx-image-cropper';
@@ -269,7 +268,7 @@ declare class RtuiAsideContainerComponent {
269
268
  pending: InputSignalWithTransform<boolean, boolean>;
270
269
  isRequestErrorShown: InputSignalWithTransform<boolean, boolean>;
271
270
  headerActionsButtons: InputSignalWithTransform<IAside.HeaderActionButton[], IAside.HeaderActionButton[]>;
272
- requestError: InputSignal<Nullable<HttpErrorResponse>>;
271
+ requestError: InputSignal<Nullable<unknown>>;
273
272
  submitButtonTitle: InputSignal<string>;
274
273
  cancelButtonTitle: InputSignal<string>;
275
274
  submitButtonTooltip: InputSignal<string>;
Binary file