@carefirst/library 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,11 +1,15 @@
1
- import { type OnChanges, type SimpleChanges } from '@angular/core';
1
+ import { EventEmitter, type OnChanges, type SimpleChanges } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class CalendarComponent implements OnChanges {
4
4
  displayTime?: boolean | string | undefined;
5
5
  color?: 'success' | 'accent';
6
+ min?: string | undefined;
7
+ max?: string | undefined;
8
+ value: EventEmitter<string>;
6
9
  inputTime: boolean;
7
10
  inputColor: typeof this.color;
8
11
  ngOnChanges(changes: SimpleChanges): void;
12
+ setValue(value: string | string[] | null | undefined): void;
9
13
  static ɵfac: i0.ɵɵFactoryDeclaration<CalendarComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "cf-calendar", never, { "displayTime": { "alias": "displayTime"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, false, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "cf-calendar", never, { "displayTime": { "alias": "displayTime"; "required": false; }; "color": { "alias": "color"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; }, { "value": "value"; }, never, never, false, never>;
11
15
  }
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@carefirst/library",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "author": "Jacques Francois Coetzee",
5
5
  "private": false,
6
6
  "peerDependencies": {
7
7
  "@angular/common": "^16.x || ^17.x",
8
8
  "@angular/core": "^16.x || ^17.x",
9
- "@ionic/angular": "^7.5.5"
9
+ "@ionic/angular": "^7.5.5",
10
+ "dayjs": "^1.11.10"
10
11
  },
11
12
  "dependencies": {
12
13
  "tslib": "^2.3.0"