@staffbase/widget-sdk 3.12.7 → 3.13.0-alpha.10
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.
- package/README.md +1 -1
- package/dist/block-definition.d.ts +1 -1
- package/package.json +5 -6
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ Install the Widget SDK with yarn:
|
|
|
21
21
|
|
|
22
22
|
## Documentation
|
|
23
23
|
|
|
24
|
-
The documentation
|
|
24
|
+
The documentation can be found in the [developer portal](https://developers.staffbase.com/frameworks/customwidget-development).
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
## Support
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import { BlockFactory } from "./block-factory";
|
|
14
14
|
import { JSONSchema7 } from "json-schema";
|
|
15
|
-
import { UiSchema } from
|
|
15
|
+
import { UiSchema } from "@rjsf/utils";
|
|
16
16
|
export interface BlockDefinition<Factory = BlockFactory> {
|
|
17
17
|
/**
|
|
18
18
|
* The tag name of the widget. It must be compatible with
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@staffbase/widget-sdk",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.13.0-alpha.10",
|
|
4
4
|
"description": "Staffbase SDK for Custom Widgets",
|
|
5
|
+
"homepage": "https://developers.staffbase.com/frameworks/customwidget-development",
|
|
5
6
|
"main": "./dist/index.js",
|
|
6
7
|
"module": "./dist/index.mjs",
|
|
7
8
|
"types": "./dist/index.d.ts",
|
|
@@ -16,7 +17,6 @@
|
|
|
16
17
|
"scripts": {
|
|
17
18
|
"doc": "typedoc --theme github-wiki --readme none --out docs lib/index.ts",
|
|
18
19
|
"build": "npx tsc & npx esbuild lib/index.ts --bundle --format=cjs --outfile=dist/index.js & npx esbuild lib/index.ts --bundle --format=esm --outfile=dist/index.mjs",
|
|
19
|
-
"release": "semantic-release",
|
|
20
20
|
"prepare": "husky install"
|
|
21
21
|
},
|
|
22
22
|
"license": "Apache-2.0",
|
|
@@ -27,15 +27,14 @@
|
|
|
27
27
|
"@types/json-schema": "^7.0.9"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@amanda-mitchell/semantic-release-npm-multiple": "3.
|
|
30
|
+
"@amanda-mitchell/semantic-release-npm-multiple": "3.9.0",
|
|
31
31
|
"@commitlint/cli": "17.5.1",
|
|
32
32
|
"@commitlint/config-conventional": "17.4.4",
|
|
33
|
-
"@tmware/semantic-release-npm-github-publish": "1.5.5",
|
|
34
33
|
"@types/react": "^17.0.38",
|
|
35
|
-
"esbuild": "0.
|
|
34
|
+
"esbuild": "0.23.1",
|
|
36
35
|
"husky": "^8.0.3",
|
|
37
36
|
"semantic-release": "^19.0.5",
|
|
38
|
-
"typedoc": "0.
|
|
37
|
+
"typedoc": "0.26.6",
|
|
39
38
|
"typedoc-github-wiki-theme": "1.0.1",
|
|
40
39
|
"typedoc-plugin-markdown": "3.14.0",
|
|
41
40
|
"typescript": "^4.5.5"
|