@appsemble/sdk 0.36.10 → 0.37.0
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.d.ts +6 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
#  Appsemble SDK
|
|
2
2
|
|
|
3
3
|
> Build your own blocks
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@appsemble/sdk)
|
|
6
|
-
[](https://gitlab.com/appsemble/appsemble/-/releases/0.37.0)
|
|
7
7
|
[](https://prettier.io)
|
|
8
8
|
|
|
9
9
|
## Table of Contents
|
|
@@ -153,5 +153,5 @@ declare module '@appsemble/sdk' {
|
|
|
153
153
|
|
|
154
154
|
## License
|
|
155
155
|
|
|
156
|
-
[LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.
|
|
156
|
+
[LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.37.0/LICENSE.md) ©
|
|
157
157
|
[Appsemble](https://appsemble.com)
|
package/index.d.ts
CHANGED
|
@@ -90,7 +90,12 @@ export interface EventListeners {
|
|
|
90
90
|
*/
|
|
91
91
|
export interface Parameters {
|
|
92
92
|
}
|
|
93
|
-
export
|
|
93
|
+
export interface PageParameters extends Record<string, string | Record<string, string> | undefined> {
|
|
94
|
+
/**
|
|
95
|
+
* Query parameters from the current URL.
|
|
96
|
+
*/
|
|
97
|
+
query?: Record<string, string>;
|
|
98
|
+
}
|
|
94
99
|
/**
|
|
95
100
|
* A menu item that can be displayed in addition to the normal app menu.
|
|
96
101
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appsemble/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.37.0",
|
|
4
4
|
"description": "Build your own blocks",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"app",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"test": "vitest"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@appsemble/types": "0.
|
|
47
|
-
"@appsemble/lang-sdk": "0.
|
|
46
|
+
"@appsemble/types": "0.37.0",
|
|
47
|
+
"@appsemble/lang-sdk": "0.37.0",
|
|
48
48
|
"@fortawesome/fontawesome-common-types": "^6.0.0",
|
|
49
49
|
"type-fest": "^4.0.0"
|
|
50
50
|
},
|