@zeedhi/common 1.111.0 → 1.111.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.
@@ -3990,7 +3990,6 @@ class Date$1 extends TextInput {
3990
3990
  this.parserFn = FormatterParserProvider.getParser('ZdDate');
3991
3991
  this.previousHint = '';
3992
3992
  this.previousPersistentHint = false;
3993
- this.lastChangeValue = null;
3994
3993
  this.allowedDates = this.getInitValue('allowedDates', props.allowedDates, this.allowedDates);
3995
3994
  this.appendIcon = this.getInitValue('appendIcon', props.appendIcon, 'calendar');
3996
3995
  this.autocomplete = this.getInitValue('autocomplete', props.autocomplete, this.autocomplete);
@@ -3997,7 +3997,6 @@
3997
3997
  this.parserFn = core.FormatterParserProvider.getParser('ZdDate');
3998
3998
  this.previousHint = '';
3999
3999
  this.previousPersistentHint = false;
4000
- this.lastChangeValue = null;
4001
4000
  this.allowedDates = this.getInitValue('allowedDates', props.allowedDates, this.allowedDates);
4002
4001
  this.appendIcon = this.getInitValue('appendIcon', props.appendIcon, 'calendar');
4003
4002
  this.autocomplete = this.getInitValue('autocomplete', props.autocomplete, this.autocomplete);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeedhi/common",
3
- "version": "1.111.0",
3
+ "version": "1.111.1",
4
4
  "description": "Zeedhi Common",
5
5
  "author": "Zeedhi <zeedhi@teknisa.com>",
6
6
  "license": "ISC",
@@ -43,5 +43,5 @@
43
43
  "lodash.times": "4.3.*",
44
44
  "mockdate": "3.0.*"
45
45
  },
46
- "gitHead": "f75c602a03ad29224ec2058a01a9b02f2e37cc6f"
46
+ "gitHead": "f51dc8f1f97a36c8ce1ff53b37c57157ecfc0e0e"
47
47
  }
@@ -149,7 +149,7 @@ export declare class Date extends TextInput implements IDate {
149
149
  private previousHint;
150
150
  private previousPersistentHint;
151
151
  updateHelperHint(): void;
152
- private lastChangeValue;
152
+ private lastChangeValue?;
153
153
  changeEvent(event?: Event, element?: any): void;
154
154
  change(event?: Event, element?: any, callEvent?: boolean): void;
155
155
  }
@@ -0,0 +1,12 @@
1
+ export interface IJSONObject {
2
+ path: string;
3
+ }
4
+ export declare class JsonCacheService {
5
+ /**
6
+ * jsons collection
7
+ */
8
+ static jsonCollection: IJSONObject[];
9
+ static saveJSONCache(jsonCollection: IJSONObject[]): Promise<void>;
10
+ static getJSONCache(path: string): any;
11
+ static clearJSONCache(jsonCollection: IJSONObject[]): void;
12
+ }