denwa-web-shared 1.0.35 → 1.0.36
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.
|
@@ -37,3 +37,9 @@ export declare const THEME: {
|
|
|
37
37
|
8: number;
|
|
38
38
|
};
|
|
39
39
|
};
|
|
40
|
+
export declare const CITY_MASK: {
|
|
41
|
+
readonly CITY: "{{CITY}}";
|
|
42
|
+
readonly CITY_DECL: "{{CITY_DECL}}";
|
|
43
|
+
readonly CITY_REGION: "{{CITY_REGION}}";
|
|
44
|
+
readonly CITY_REGION_DECL: "{{CITY_REGION_DECL}}";
|
|
45
|
+
};
|
package/dist/server/index.cjs.js
CHANGED
|
@@ -40,6 +40,12 @@ const THEME = {
|
|
|
40
40
|
8: 64
|
|
41
41
|
}
|
|
42
42
|
};
|
|
43
|
+
const CITY_MASK = {
|
|
44
|
+
CITY: "{{CITY}}",
|
|
45
|
+
CITY_DECL: "{{CITY_DECL}}",
|
|
46
|
+
CITY_REGION: "{{CITY_REGION}}",
|
|
47
|
+
CITY_REGION_DECL: "{{CITY_REGION_DECL}}"
|
|
48
|
+
};
|
|
43
49
|
const getNumberFormatter = (local) => {
|
|
44
50
|
return new Intl.NumberFormat(local);
|
|
45
51
|
};
|
|
@@ -6836,6 +6842,7 @@ const BasePicture = ({
|
|
|
6836
6842
|
] });
|
|
6837
6843
|
};
|
|
6838
6844
|
exports.BasePicture = BasePicture;
|
|
6845
|
+
exports.CITY_MASK = CITY_MASK;
|
|
6839
6846
|
exports.THEME = THEME;
|
|
6840
6847
|
exports.TIME = TIME;
|
|
6841
6848
|
exports.arrayToKeyValueObject = arrayToKeyValueObject;
|
package/dist/server/index.es.js
CHANGED
|
@@ -38,6 +38,12 @@ const THEME = {
|
|
|
38
38
|
8: 64
|
|
39
39
|
}
|
|
40
40
|
};
|
|
41
|
+
const CITY_MASK = {
|
|
42
|
+
CITY: "{{CITY}}",
|
|
43
|
+
CITY_DECL: "{{CITY_DECL}}",
|
|
44
|
+
CITY_REGION: "{{CITY_REGION}}",
|
|
45
|
+
CITY_REGION_DECL: "{{CITY_REGION_DECL}}"
|
|
46
|
+
};
|
|
41
47
|
const getNumberFormatter = (local) => {
|
|
42
48
|
return new Intl.NumberFormat(local);
|
|
43
49
|
};
|
|
@@ -6835,6 +6841,7 @@ const BasePicture = ({
|
|
|
6835
6841
|
};
|
|
6836
6842
|
export {
|
|
6837
6843
|
BasePicture,
|
|
6844
|
+
CITY_MASK,
|
|
6838
6845
|
THEME,
|
|
6839
6846
|
TIME,
|
|
6840
6847
|
arrayToKeyValueObject,
|