@zeedhi/common 1.94.0 → 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.
package/dist/zd-common.esm.js
CHANGED
|
@@ -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)) {
|
package/dist/zd-common.umd.js
CHANGED
|
@@ -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.
|
|
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": "
|
|
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
|
-
}
|