@appsemble/types 0.20.45 → 0.21.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 CHANGED
@@ -1,9 +1,9 @@
1
- # ![](https://gitlab.com/appsemble/appsemble/-/raw/0.20.45/config/assets/logo.svg) Appsemble Types
1
+ # ![](https://gitlab.com/appsemble/appsemble/-/raw/0.21.0/config/assets/logo.svg) Appsemble Types
2
2
 
3
3
  > Reusable TypeScript types
4
4
 
5
5
  [![npm](https://img.shields.io/npm/v/@appsemble/types)](https://www.npmjs.com/package/@appsemble/types)
6
- [![GitLab CI](https://gitlab.com/appsemble/appsemble/badges/0.20.45/pipeline.svg)](https://gitlab.com/appsemble/appsemble/-/releases/0.20.45)
6
+ [![GitLab CI](https://gitlab.com/appsemble/appsemble/badges/0.21.0/pipeline.svg)](https://gitlab.com/appsemble/appsemble/-/releases/0.21.0)
7
7
  [![Prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](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.20.45/LICENSE.md) ©
29
+ [LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.21.0/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.20.45",
3
+ "version": "0.21.0",
4
4
  "description": "TypeScript definitions reused within Appsemble internally",
5
5
  "keywords": [
6
6
  "app",
@@ -29,7 +29,7 @@
29
29
  ],
30
30
  "scripts": {
31
31
  "prepack": "tsc --noEmit false",
32
- "test": "NODE_OPTIONS=--experimental-vm-modules jest"
32
+ "test": "vitest"
33
33
  },
34
34
  "dependencies": {
35
35
  "@fortawesome/fontawesome-common-types": "^6.0.0",
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vitest/dist/config.js").UserProjectConfigExport;
2
+ export default _default;