@etsoo/appscript 1.4.53 → 1.4.55

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.
@@ -14,6 +14,10 @@ export type CultureItem = {
14
14
  * Title / label
15
15
  */
16
16
  title: string;
17
+ /**
18
+ * Description
19
+ */
20
+ description?: string;
17
21
  /**
18
22
  * JSON data related
19
23
  */
@@ -31,6 +35,10 @@ export type CultureGridItem = {
31
35
  * Title / label
32
36
  */
33
37
  title: string;
38
+ /**
39
+ * Description
40
+ */
41
+ description?: string;
34
42
  /**
35
43
  * JSON data related
36
44
  */
@@ -14,6 +14,10 @@ export type CultureItem = {
14
14
  * Title / label
15
15
  */
16
16
  title: string;
17
+ /**
18
+ * Description
19
+ */
20
+ description?: string;
17
21
  /**
18
22
  * JSON data related
19
23
  */
@@ -31,6 +35,10 @@ export type CultureGridItem = {
31
35
  * Title / label
32
36
  */
33
37
  title: string;
38
+ /**
39
+ * Description
40
+ */
41
+ description?: string;
34
42
  /**
35
43
  * JSON data related
36
44
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.4.53",
3
+ "version": "1.4.55",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -54,17 +54,17 @@
54
54
  "dependencies": {
55
55
  "@etsoo/notificationbase": "^1.1.28",
56
56
  "@etsoo/restclient": "^1.0.90",
57
- "@etsoo/shared": "^1.2.12",
57
+ "@etsoo/shared": "^1.2.13",
58
58
  "crypto-js": "^4.1.1"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@babel/cli": "^7.22.15",
62
- "@babel/core": "^7.22.17",
62
+ "@babel/core": "^7.22.20",
63
63
  "@babel/plugin-transform-runtime": "^7.22.15",
64
- "@babel/preset-env": "^7.22.15",
64
+ "@babel/preset-env": "^7.22.20",
65
65
  "@babel/runtime-corejs3": "^7.22.15",
66
66
  "@types/crypto-js": "^4.1.2",
67
- "@types/jest": "^29.5.4",
67
+ "@types/jest": "^29.5.5",
68
68
  "jest": "^29.7.0",
69
69
  "jest-environment-jsdom": "^29.7.0",
70
70
  "ts-jest": "^29.1.1",
@@ -17,6 +17,11 @@ export type CultureItem = {
17
17
  */
18
18
  title: string;
19
19
 
20
+ /**
21
+ * Description
22
+ */
23
+ description?: string;
24
+
20
25
  /**
21
26
  * JSON data related
22
27
  */
@@ -37,6 +42,11 @@ export type CultureGridItem = {
37
42
  */
38
43
  title: string;
39
44
 
45
+ /**
46
+ * Description
47
+ */
48
+ description?: string;
49
+
40
50
  /**
41
51
  * JSON data related
42
52
  */