@plurid/plurid-data 0.0.0-11 → 0.0.0-12
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/distribution/constants/index.d.ts +1 -0
- package/distribution/constants/protocols/index.d.ts +9 -0
- package/distribution/index.es.js +15 -1
- package/distribution/index.es.js.map +1 -1
- package/distribution/index.js +24 -0
- package/distribution/index.js.map +1 -1
- package/distribution/interfaces/external/link/index.d.ts +3 -4
- package/distribution/interfaces/external/plane/index.d.ts +1 -2
- package/distribution/interfaces/internal/index.d.ts +1 -0
- package/distribution/interfaces/internal/transform/index.d.ts +4 -0
- package/package.json +12 -13
- package/distribution/interfaces/external/configurator/index.d.ts +0 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plurid/plurid-data",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-12",
|
|
4
4
|
"description": "Plurid Constants, Interfaces, Enumerations",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"plurid",
|
|
@@ -37,29 +37,28 @@
|
|
|
37
37
|
"scripts": {
|
|
38
38
|
"clean": "rm -rf ./distribution",
|
|
39
39
|
"lint": "eslint ./source --ext .ts,.tsx",
|
|
40
|
-
"start": "
|
|
41
|
-
"build.development": "
|
|
40
|
+
"start": "pnpm clean && rollup -c ./scripts/rollup.config.js -w --environment ENV_MODE:local",
|
|
41
|
+
"build.development": "pnpm clean && rollup -c ./scripts/rollup.config.js --environment ENV_MODE:local",
|
|
42
42
|
"build.production": "rollup -c ./scripts/rollup.config.js --environment ENV_MODE:production",
|
|
43
|
-
"build": "
|
|
44
|
-
"prepublishOnly": "
|
|
43
|
+
"build": "pnpm clean && pnpm build.production",
|
|
44
|
+
"prepublishOnly": "pnpm build"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"@plurid/plurid-themes": "*"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@plurid/plurid-themes": "0.0.0-2",
|
|
51
|
-
"@types/node": "^17.0.
|
|
52
|
-
"@
|
|
53
|
-
"@typescript-eslint/
|
|
54
|
-
"@typescript-eslint/parser": "^5.13.0",
|
|
51
|
+
"@types/node": "^17.0.24",
|
|
52
|
+
"@typescript-eslint/eslint-plugin": "^5.19.0",
|
|
53
|
+
"@typescript-eslint/parser": "^5.19.0",
|
|
55
54
|
"@zerollup/ts-transform-paths": "^1.7.18",
|
|
56
|
-
"eslint": "^8.
|
|
57
|
-
"rollup": "^2.
|
|
55
|
+
"eslint": "^8.13.0",
|
|
56
|
+
"rollup": "^2.70.2",
|
|
58
57
|
"rollup-plugin-terser": "^7.0.2",
|
|
59
58
|
"rollup-plugin-typescript2": "^0.31.2",
|
|
60
|
-
"ts-node": "^10.
|
|
59
|
+
"ts-node": "^10.7.0",
|
|
61
60
|
"ttypescript": "^1.5.13",
|
|
62
|
-
"typescript": "^4.6.
|
|
61
|
+
"typescript": "^4.6.3",
|
|
63
62
|
"typescript-transform-paths": "^3.3.1"
|
|
64
63
|
}
|
|
65
64
|
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { PluridPubSub } from '../pubsub';
|
|
3
|
-
export interface PluridApplicationConfiguratorProperties {
|
|
4
|
-
/**
|
|
5
|
-
* Publish/Subscribe bus based on `@plurid/plurid-pubsub`.
|
|
6
|
-
*/
|
|
7
|
-
pubsub?: PluridPubSub;
|
|
8
|
-
}
|
|
9
|
-
export interface PluridPlaneConfiguratorProperties {
|
|
10
|
-
theme: string;
|
|
11
|
-
style: React.CSSProperties;
|
|
12
|
-
}
|