@appsemble/types 0.20.45 → 0.21.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.d.ts +8 -0
- package/package.json +3 -3
- package/vitest.config.d.ts +2 -0
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
#  Appsemble Types
|
|
2
2
|
|
|
3
3
|
> Reusable TypeScript types
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@appsemble/types)
|
|
6
|
-
[](https://gitlab.com/appsemble/appsemble/-/releases/0.21.1)
|
|
7
7
|
[](https://prettier.io)
|
|
8
8
|
|
|
9
9
|
## Table of Contents
|
|
@@ -26,5 +26,5 @@ not guaranteed.
|
|
|
26
26
|
|
|
27
27
|
## License
|
|
28
28
|
|
|
29
|
-
[LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.
|
|
29
|
+
[LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.21.1/LICENSE.md) ©
|
|
30
30
|
[Appsemble](https://appsemble.com)
|
package/index.d.ts
CHANGED
|
@@ -1612,6 +1612,14 @@ export interface App {
|
|
|
1612
1612
|
* Any pre-included translations of the app.
|
|
1613
1613
|
*/
|
|
1614
1614
|
messages?: AppsembleMessages;
|
|
1615
|
+
/**
|
|
1616
|
+
* Any app styles that are shared.
|
|
1617
|
+
*/
|
|
1618
|
+
sharedStyle?: string;
|
|
1619
|
+
/**
|
|
1620
|
+
* Any app styles that are core.
|
|
1621
|
+
*/
|
|
1622
|
+
coreStyle?: string;
|
|
1615
1623
|
}
|
|
1616
1624
|
/**
|
|
1617
1625
|
* A rating given to an app.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appsemble/types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.21.1",
|
|
4
4
|
"description": "TypeScript definitions reused within Appsemble internally",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"app",
|
|
@@ -29,12 +29,12 @@
|
|
|
29
29
|
],
|
|
30
30
|
"scripts": {
|
|
31
31
|
"prepack": "tsc --noEmit false",
|
|
32
|
-
"test": "
|
|
32
|
+
"test": "vitest"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@fortawesome/fontawesome-common-types": "^6.0.0",
|
|
36
36
|
"jsonschema": "^1.0.0",
|
|
37
37
|
"openapi-types": "^12.0.0",
|
|
38
|
-
"type-fest": "^
|
|
38
|
+
"type-fest": "^4.0.0"
|
|
39
39
|
}
|
|
40
40
|
}
|