@etsoo/appscript 1.4.46 → 1.4.48
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.
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Culture item for multilingual labels
|
|
3
|
+
*/
|
|
4
|
+
export type CultureItem = {
|
|
5
|
+
/**
|
|
6
|
+
* Target id
|
|
7
|
+
*/
|
|
8
|
+
id: number;
|
|
9
|
+
/**
|
|
10
|
+
* Culture, like zh-Hans
|
|
11
|
+
*/
|
|
12
|
+
culture: string;
|
|
13
|
+
/**
|
|
14
|
+
* Title / label
|
|
15
|
+
*/
|
|
16
|
+
title: string;
|
|
17
|
+
/**
|
|
18
|
+
* JSON data related
|
|
19
|
+
*/
|
|
20
|
+
jsonData?: string;
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* Culture grid item for editing
|
|
24
|
+
*/
|
|
25
|
+
export type CultureGridItem = {
|
|
26
|
+
/**
|
|
27
|
+
* Culture
|
|
28
|
+
*/
|
|
29
|
+
id: string;
|
|
30
|
+
/**
|
|
31
|
+
* Title / label
|
|
32
|
+
*/
|
|
33
|
+
title: string;
|
|
34
|
+
/**
|
|
35
|
+
* JSON data related
|
|
36
|
+
*/
|
|
37
|
+
jsonData?: string;
|
|
38
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Culture item for multilingual labels
|
|
3
|
+
*/
|
|
4
|
+
export type CultureItem = {
|
|
5
|
+
/**
|
|
6
|
+
* Target id
|
|
7
|
+
*/
|
|
8
|
+
id: number;
|
|
9
|
+
/**
|
|
10
|
+
* Culture, like zh-Hans
|
|
11
|
+
*/
|
|
12
|
+
culture: string;
|
|
13
|
+
/**
|
|
14
|
+
* Title / label
|
|
15
|
+
*/
|
|
16
|
+
title: string;
|
|
17
|
+
/**
|
|
18
|
+
* JSON data related
|
|
19
|
+
*/
|
|
20
|
+
jsonData?: string;
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* Culture grid item for editing
|
|
24
|
+
*/
|
|
25
|
+
export type CultureGridItem = {
|
|
26
|
+
/**
|
|
27
|
+
* Culture
|
|
28
|
+
*/
|
|
29
|
+
id: string;
|
|
30
|
+
/**
|
|
31
|
+
* Title / label
|
|
32
|
+
*/
|
|
33
|
+
title: string;
|
|
34
|
+
/**
|
|
35
|
+
* JSON data related
|
|
36
|
+
*/
|
|
37
|
+
jsonData?: string;
|
|
38
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Culture item for multilingual labels
|
|
3
|
+
*/
|
|
4
|
+
export type CultureItem = {
|
|
5
|
+
/**
|
|
6
|
+
* Target id
|
|
7
|
+
*/
|
|
8
|
+
id: number;
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Culture, like zh-Hans
|
|
12
|
+
*/
|
|
13
|
+
culture: string;
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Title / label
|
|
17
|
+
*/
|
|
18
|
+
title: string;
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* JSON data related
|
|
22
|
+
*/
|
|
23
|
+
jsonData?: string;
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* Culture grid item for editing
|
|
28
|
+
*/
|
|
29
|
+
export type CultureGridItem = {
|
|
30
|
+
/**
|
|
31
|
+
* Culture
|
|
32
|
+
*/
|
|
33
|
+
id: string;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Title / label
|
|
37
|
+
*/
|
|
38
|
+
title: string;
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* JSON data related
|
|
42
|
+
*/
|
|
43
|
+
jsonData?: string;
|
|
44
|
+
};
|