@ship-ui/core 0.14.12 → 0.14.14

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/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  import * as _ship_ui_core from '@ship-ui/core';
2
2
  import * as _angular_core from '@angular/core';
3
3
  import { ElementRef, QueryList, ComponentRef, OutputRefSubscription, Type, AfterContentInit, TemplateRef, WritableSignal, OnDestroy, InjectionToken } from '@angular/core';
4
+ import { NgModel } from '@angular/forms';
4
5
 
5
6
  type ShipAlertItem = {
6
7
  type: ShipAlertType;
@@ -211,6 +212,7 @@ declare class ShipColorPickerComponent {
211
212
 
212
213
  declare class ShipDatepickerInputComponent {
213
214
  #private;
215
+ ngModels: _angular_core.Signal<NgModel | undefined>;
214
216
  masking: _angular_core.InputSignal<string>;
215
217
  closed: _angular_core.OutputEmitterRef<Date | null>;
216
218
  _maskedDate: _angular_core.Signal<string | Date | null>;
@@ -221,7 +223,7 @@ declare class ShipDatepickerInputComponent {
221
223
  open($event: MouseEvent): void;
222
224
  close(): void;
223
225
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShipDatepickerInputComponent, never>;
224
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShipDatepickerInputComponent, "sh-datepicker-input", never, { "masking": { "alias": "masking"; "required": false; "isSignal": true; }; "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; }, { "closed": "closed"; "isOpen": "isOpenChange"; }, never, ["label", "[prefix]", "[textPrefix]", "input", "[textSuffix]", "[suffix]"], true, never>;
226
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShipDatepickerInputComponent, "sh-datepicker-input", never, { "masking": { "alias": "masking"; "required": false; "isSignal": true; }; "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; }, { "closed": "closed"; "isOpen": "isOpenChange"; }, ["ngModels"], ["label", "[prefix]", "[textPrefix]", "input", "[textSuffix]", "[suffix]"], true, never>;
225
227
  }
226
228
 
227
229
  declare class ShipDatepickerComponent {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ship-ui/core",
3
3
  "license": "MIT",
4
- "version": "0.14.12",
4
+ "version": "0.14.14",
5
5
  "peerDependencies": {
6
6
  "@angular/common": ">=19",
7
7
  "@angular/core": ">=19"
@@ -81,6 +81,7 @@ $shipDatepicker: true !default;
81
81
  --dp-ar: 1/1;
82
82
 
83
83
  width: 100%;
84
+ padding: p2r(8);
84
85
  max-width: var(--dp-width);
85
86
  display: flex;
86
87
  flex-direction: column;
@@ -28,31 +28,6 @@
28
28
  }
29
29
  }
30
30
 
31
- // .loading {
32
- // &.outlined:before {
33
- // &.primary {
34
- // border-color: var(--primary-8);
35
- // }
36
- // &.accent {
37
- // border-color: var(--accent-8);
38
- // }
39
- // &.warn {
40
- // border-color: var(--warn-8);
41
- // }
42
- // &.error {
43
- // border-color: var(--error-8);
44
- // }
45
- // &.success {
46
- // border-color: var(--success-8);
47
- // }
48
- // }
49
-
50
- // .raised:before,
51
- // .flat:before {
52
- // border-color: #fff;
53
- // }
54
- // }
55
-
56
31
  @keyframes rotation {
57
32
  0% {
58
33
  transform: rotate(0deg);