@etsoo/appscript 1.6.54 → 1.6.56

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.
@@ -1,9 +1,14 @@
1
1
  import { IdType, ListType2 } from "@etsoo/shared";
2
+ /**
3
+ * Custom field space values
4
+ * 自定义字段空间值
5
+ */
6
+ export declare const CustomFieldSpaceValues: readonly ["quater", "five", "half", "half1", "seven", "full"];
2
7
  /**
3
8
  * Custom field space (12 columns)
4
9
  * 自定义字段空间(12列)
5
10
  */
6
- export type CustomFieldSpace = "quater" | "half" | "half1" | "full" | "five" | "seven";
11
+ export type CustomFieldSpace = (typeof CustomFieldSpaceValues)[number];
7
12
  /**
8
13
  * Custom field data
9
14
  * 自定义字段数据
@@ -1,2 +1,15 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CustomFieldSpaceValues = void 0;
4
+ /**
5
+ * Custom field space values
6
+ * 自定义字段空间值
7
+ */
8
+ exports.CustomFieldSpaceValues = [
9
+ "quater",
10
+ "five",
11
+ "half",
12
+ "half1",
13
+ "seven",
14
+ "full"
15
+ ];
@@ -92,6 +92,7 @@
92
92
  "idError": "The passed ID is wrong!",
93
93
  "imageSizeTooSmall": "The image size is too small",
94
94
  "info": "Info",
95
+ "invalidNaming": "Invalid naming",
95
96
  "item": "Item",
96
97
  "itemExists": "'{0}' already exists",
97
98
  "jsonData": "Extended data",
@@ -92,6 +92,7 @@
92
92
  "idError": "传递的编号错误!",
93
93
  "imageSizeTooSmall": "图片尺寸过小",
94
94
  "info": "信息",
95
+ "invalidNaming": "无效的命名",
95
96
  "item": "项目",
96
97
  "itemExists": "'{0}'已经存在",
97
98
  "jsonData": "扩展数据",
@@ -92,6 +92,7 @@
92
92
  "idError": "傳遞的編號錯誤!",
93
93
  "imageSizeTooSmall": "圖片尺寸過小",
94
94
  "info": "信息",
95
+ "invalidNaming": "無效的命名",
95
96
  "item": "項目",
96
97
  "itemExists": "'{0}'已經存在",
97
98
  "jsonData": "擴充資料",
@@ -1,9 +1,14 @@
1
1
  import { IdType, ListType2 } from "@etsoo/shared";
2
+ /**
3
+ * Custom field space values
4
+ * 自定义字段空间值
5
+ */
6
+ export declare const CustomFieldSpaceValues: readonly ["quater", "five", "half", "half1", "seven", "full"];
2
7
  /**
3
8
  * Custom field space (12 columns)
4
9
  * 自定义字段空间(12列)
5
10
  */
6
- export type CustomFieldSpace = "quater" | "half" | "half1" | "full" | "five" | "seven";
11
+ export type CustomFieldSpace = (typeof CustomFieldSpaceValues)[number];
7
12
  /**
8
13
  * Custom field data
9
14
  * 自定义字段数据
@@ -1 +1,12 @@
1
- export {};
1
+ /**
2
+ * Custom field space values
3
+ * 自定义字段空间值
4
+ */
5
+ export const CustomFieldSpaceValues = [
6
+ "quater",
7
+ "five",
8
+ "half",
9
+ "half1",
10
+ "seven",
11
+ "full"
12
+ ];
@@ -92,6 +92,7 @@
92
92
  "idError": "The passed ID is wrong!",
93
93
  "imageSizeTooSmall": "The image size is too small",
94
94
  "info": "Info",
95
+ "invalidNaming": "Invalid naming",
95
96
  "item": "Item",
96
97
  "itemExists": "'{0}' already exists",
97
98
  "jsonData": "Extended data",
@@ -92,6 +92,7 @@
92
92
  "idError": "传递的编号错误!",
93
93
  "imageSizeTooSmall": "图片尺寸过小",
94
94
  "info": "信息",
95
+ "invalidNaming": "无效的命名",
95
96
  "item": "项目",
96
97
  "itemExists": "'{0}'已经存在",
97
98
  "jsonData": "扩展数据",
@@ -92,6 +92,7 @@
92
92
  "idError": "傳遞的編號錯誤!",
93
93
  "imageSizeTooSmall": "圖片尺寸過小",
94
94
  "info": "信息",
95
+ "invalidNaming": "無效的命名",
95
96
  "item": "項目",
96
97
  "itemExists": "'{0}'已經存在",
97
98
  "jsonData": "擴充資料",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.6.54",
3
+ "version": "1.6.56",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -1,16 +1,23 @@
1
1
  import { IdType, ListType2 } from "@etsoo/shared";
2
2
 
3
+ /**
4
+ * Custom field space values
5
+ * 自定义字段空间值
6
+ */
7
+ export const CustomFieldSpaceValues = [
8
+ "quater",
9
+ "five",
10
+ "half",
11
+ "half1",
12
+ "seven",
13
+ "full"
14
+ ] as const;
15
+
3
16
  /**
4
17
  * Custom field space (12 columns)
5
18
  * 自定义字段空间(12列)
6
19
  */
7
- export type CustomFieldSpace =
8
- | "quater"
9
- | "half"
10
- | "half1"
11
- | "full"
12
- | "five"
13
- | "seven";
20
+ export type CustomFieldSpace = (typeof CustomFieldSpaceValues)[number];
14
21
 
15
22
  /**
16
23
  * Custom field data
package/src/i18n/en.json CHANGED
@@ -92,6 +92,7 @@
92
92
  "idError": "The passed ID is wrong!",
93
93
  "imageSizeTooSmall": "The image size is too small",
94
94
  "info": "Info",
95
+ "invalidNaming": "Invalid naming",
95
96
  "item": "Item",
96
97
  "itemExists": "'{0}' already exists",
97
98
  "jsonData": "Extended data",
@@ -92,6 +92,7 @@
92
92
  "idError": "传递的编号错误!",
93
93
  "imageSizeTooSmall": "图片尺寸过小",
94
94
  "info": "信息",
95
+ "invalidNaming": "无效的命名",
95
96
  "item": "项目",
96
97
  "itemExists": "'{0}'已经存在",
97
98
  "jsonData": "扩展数据",
@@ -92,6 +92,7 @@
92
92
  "idError": "傳遞的編號錯誤!",
93
93
  "imageSizeTooSmall": "圖片尺寸過小",
94
94
  "info": "信息",
95
+ "invalidNaming": "無效的命名",
95
96
  "item": "項目",
96
97
  "itemExists": "'{0}'已經存在",
97
98
  "jsonData": "擴充資料",