@zeedhi/common 1.91.1 → 1.91.2

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.
@@ -4022,11 +4022,8 @@ class Date$1 extends TextInput {
4022
4022
  return this.formatISODateValue(this.value);
4023
4023
  }
4024
4024
  set isoValue(newValue) {
4025
- const lastValue = this.value;
4026
4025
  this.dateError = false;
4027
4026
  this.value = this.parseISODateValue(newValue);
4028
- if (lastValue !== this.value)
4029
- this.change(this.value);
4030
4027
  }
4031
4028
  formatISODateValue(value) {
4032
4029
  if (value && this.isValidFormatDate(value, this.dateFormat)) {
@@ -4029,11 +4029,8 @@
4029
4029
  return this.formatISODateValue(this.value);
4030
4030
  }
4031
4031
  set isoValue(newValue) {
4032
- const lastValue = this.value;
4033
4032
  this.dateError = false;
4034
4033
  this.value = this.parseISODateValue(newValue);
4035
- if (lastValue !== this.value)
4036
- this.change(this.value);
4037
4034
  }
4038
4035
  formatISODateValue(value) {
4039
4036
  if (value && this.isValidFormatDate(value, this.dateFormat)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeedhi/common",
3
- "version": "1.91.1",
3
+ "version": "1.91.2",
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": "c2445f9e72755ae0117595576ce4e02adc4b673f"
46
+ "gitHead": "ba4045b276a62a57f59620b9c57f53b45aa4d4db"
47
47
  }
@@ -1,12 +0,0 @@
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
- }