@zeedhi/common 1.94.1 → 1.94.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.
@@ -4025,11 +4025,8 @@ class Date$1 extends TextInput {
4025
4025
  return this.formatISODateValue(this.value);
4026
4026
  }
4027
4027
  set isoValue(newValue) {
4028
- const lastValue = this.value;
4029
4028
  this.dateError = false;
4030
4029
  this.value = this.parseISODateValue(newValue);
4031
- if (lastValue !== this.value)
4032
- this.change(this.value);
4033
4030
  }
4034
4031
  formatISODateValue(value) {
4035
4032
  if (value && this.isValidFormatDate(value, this.dateFormat)) {
@@ -4032,11 +4032,8 @@
4032
4032
  return this.formatISODateValue(this.value);
4033
4033
  }
4034
4034
  set isoValue(newValue) {
4035
- const lastValue = this.value;
4036
4035
  this.dateError = false;
4037
4036
  this.value = this.parseISODateValue(newValue);
4038
- if (lastValue !== this.value)
4039
- this.change(this.value);
4040
4037
  }
4041
4038
  formatISODateValue(value) {
4042
4039
  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.94.1",
3
+ "version": "1.94.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": "b0ba732dd4d4d226e7ad5b1f6b9d836a8e741e2b"
46
+ "gitHead": "ac867746a5fc37e3c064682a3557387f6a051cbb"
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
- }