@operato/scene-grist 2.0.0-alpha.6 → 2.0.0-beta.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +43 -0
- package/dist/grist-action.d.ts +13 -1
- package/dist/grist-action.js +42 -2
- package/dist/grist-action.js.map +1 -1
- package/dist/grist.d.ts +3 -1
- package/dist/grist.js +31 -7
- package/dist/grist.js.map +1 -1
- package/helps/scene/component/grist-action.ko.md +15 -0
- package/helps/scene/component/grist-action.md +19 -6
- package/helps/scene/component/grist-action.zh.md +23 -11
- package/helps/scene/component/grist.ko.md +2 -0
- package/helps/scene/component/grist.md +2 -0
- package/helps/scene/component/grist.zh.md +7 -5
- package/package.json +6 -5
- package/schema.graphql +3976 -0
- package/src/grist-action.ts +56 -3
- package/src/grist.ts +45 -8
- package/translations/en.json +1 -0
- package/translations/ja.json +1 -0
- package/translations/ko.json +1 -0
- package/translations/ms.json +1 -0
- package/translations/zh.json +1 -0
- package/tsconfig.json +1 -0
- package/tsconfig.tsbuildinfo +1 -1
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "@operato/scene-grist",
|
3
3
|
"description": "Grist UI component for things-scene",
|
4
4
|
"author": "heartyoh",
|
5
|
-
"version": "2.0.0-
|
5
|
+
"version": "2.0.0-beta.0",
|
6
6
|
"main": "dist/index.js",
|
7
7
|
"module": "dist/index.js",
|
8
8
|
"license": "MIT",
|
@@ -28,12 +28,13 @@
|
|
28
28
|
},
|
29
29
|
"dependencies": {
|
30
30
|
"@hatiolab/things-scene": "^3.2.0",
|
31
|
-
"@operato/data-grist": "^2.0.0-
|
31
|
+
"@operato/data-grist": "^2.0.0-beta.0",
|
32
|
+
"ses": "^1.5.0"
|
32
33
|
},
|
33
34
|
"devDependencies": {
|
34
35
|
"@hatiolab/prettier-config": "^1.0.0",
|
35
|
-
"@things-factory/builder": "^7.0.
|
36
|
-
"@things-factory/operato-board": "^7.0.
|
36
|
+
"@things-factory/builder": "^7.0.1-beta.0",
|
37
|
+
"@things-factory/operato-board": "^7.0.1-beta.0",
|
37
38
|
"@types/lodash-es": "^4.17.5",
|
38
39
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
39
40
|
"@typescript-eslint/parser": "^4.33.0",
|
@@ -59,5 +60,5 @@
|
|
59
60
|
"prettier --write"
|
60
61
|
]
|
61
62
|
},
|
62
|
-
"gitHead": "
|
63
|
+
"gitHead": "3deb3dba6ab927a087568af0cdc930132ed1956e"
|
63
64
|
}
|