@appsemble/preact 0.35.19 → 0.36.1
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 +3 -3
- package/index.js +2 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
#  Appsemble Preact SDK
|
|
2
2
|
|
|
3
3
|
> Build your own blocks using Preact
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@appsemble/preact)
|
|
6
|
-
[](https://gitlab.com/appsemble/appsemble/-/releases/0.36.1)
|
|
7
7
|
[](https://prettier.io)
|
|
8
8
|
|
|
9
9
|
## Table of Contents
|
|
@@ -97,5 +97,5 @@ export function MyButton({ name }: MyButtonProps): VNode {
|
|
|
97
97
|
|
|
98
98
|
## License
|
|
99
99
|
|
|
100
|
-
[LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.
|
|
100
|
+
[LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.36.1/LICENSE.md) ©
|
|
101
101
|
[Appsemble](https://appsemble.com)
|
package/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsx as _jsx } from "preact/jsx-runtime";
|
|
|
2
2
|
import { bootstrap as sdkBootstrap } from '@appsemble/sdk';
|
|
3
3
|
import { createContext, render } from 'preact';
|
|
4
4
|
import { useContext } from 'preact/hooks';
|
|
5
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
5
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
6
6
|
// @ts-ignore 2345 argument of type is not assignable to parameter of type (strictNullChecks)
|
|
7
7
|
export const Context = createContext(null);
|
|
8
8
|
/**
|
|
@@ -32,6 +32,7 @@ export function bootstrap(Component) {
|
|
|
32
32
|
* @returns The wrapper component.
|
|
33
33
|
* @deprecated Use `useBlock()` instead.
|
|
34
34
|
*/
|
|
35
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
35
36
|
export function withBlock(Component) {
|
|
36
37
|
return (props) => (_jsx(Context.Consumer, { children: (values) => _jsx(Component, { ...props, ...values }) }));
|
|
37
38
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appsemble/preact",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.36.1",
|
|
4
4
|
"description": "Build your own blocks using Preact",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"app",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"test": "vitest"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"@appsemble/sdk": "0.
|
|
45
|
+
"@appsemble/sdk": "0.36.1",
|
|
46
46
|
"preact": "^10"
|
|
47
47
|
}
|
|
48
48
|
}
|