@etsoo/shared 1.0.84 → 1.0.85
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/lib/cjs/DomUtils.d.ts +2 -2
- package/lib/cjs/DomUtils.js +2 -2
- package/lib/mjs/DomUtils.d.ts +2 -2
- package/lib/mjs/DomUtils.js +2 -2
- package/package.json +1 -1
- package/src/DomUtils.ts +2 -2
package/lib/cjs/DomUtils.d.ts
CHANGED
|
@@ -8,11 +8,11 @@ export declare namespace DomUtils {
|
|
|
8
8
|
/**
|
|
9
9
|
* Language cache parameter name
|
|
10
10
|
*/
|
|
11
|
-
const CultureField = "
|
|
11
|
+
const CultureField = "culture";
|
|
12
12
|
/**
|
|
13
13
|
* Country cache parameter name
|
|
14
14
|
*/
|
|
15
|
-
const CountryField = "
|
|
15
|
+
const CountryField = "country";
|
|
16
16
|
/**
|
|
17
17
|
* Clear form data
|
|
18
18
|
* @param data Form data
|
package/lib/cjs/DomUtils.js
CHANGED
|
@@ -16,11 +16,11 @@ var DomUtils;
|
|
|
16
16
|
/**
|
|
17
17
|
* Language cache parameter name
|
|
18
18
|
*/
|
|
19
|
-
DomUtils.CultureField = '
|
|
19
|
+
DomUtils.CultureField = 'culture';
|
|
20
20
|
/**
|
|
21
21
|
* Country cache parameter name
|
|
22
22
|
*/
|
|
23
|
-
DomUtils.CountryField = '
|
|
23
|
+
DomUtils.CountryField = 'country';
|
|
24
24
|
/**
|
|
25
25
|
* Clear form data
|
|
26
26
|
* @param data Form data
|
package/lib/mjs/DomUtils.d.ts
CHANGED
|
@@ -8,11 +8,11 @@ export declare namespace DomUtils {
|
|
|
8
8
|
/**
|
|
9
9
|
* Language cache parameter name
|
|
10
10
|
*/
|
|
11
|
-
const CultureField = "
|
|
11
|
+
const CultureField = "culture";
|
|
12
12
|
/**
|
|
13
13
|
* Country cache parameter name
|
|
14
14
|
*/
|
|
15
|
-
const CountryField = "
|
|
15
|
+
const CountryField = "country";
|
|
16
16
|
/**
|
|
17
17
|
* Clear form data
|
|
18
18
|
* @param data Form data
|
package/lib/mjs/DomUtils.js
CHANGED
|
@@ -13,11 +13,11 @@ export var DomUtils;
|
|
|
13
13
|
/**
|
|
14
14
|
* Language cache parameter name
|
|
15
15
|
*/
|
|
16
|
-
DomUtils.CultureField = '
|
|
16
|
+
DomUtils.CultureField = 'culture';
|
|
17
17
|
/**
|
|
18
18
|
* Country cache parameter name
|
|
19
19
|
*/
|
|
20
|
-
DomUtils.CountryField = '
|
|
20
|
+
DomUtils.CountryField = 'country';
|
|
21
21
|
/**
|
|
22
22
|
* Clear form data
|
|
23
23
|
* @param data Form data
|
package/package.json
CHANGED
package/src/DomUtils.ts
CHANGED
|
@@ -15,12 +15,12 @@ export namespace DomUtils {
|
|
|
15
15
|
/**
|
|
16
16
|
* Language cache parameter name
|
|
17
17
|
*/
|
|
18
|
-
export const CultureField = '
|
|
18
|
+
export const CultureField = 'culture';
|
|
19
19
|
|
|
20
20
|
/**
|
|
21
21
|
* Country cache parameter name
|
|
22
22
|
*/
|
|
23
|
-
export const CountryField = '
|
|
23
|
+
export const CountryField = 'country';
|
|
24
24
|
|
|
25
25
|
/**
|
|
26
26
|
* Clear form data
|