@adminide-stack/core 10.0.1-alpha.0 → 10.0.1-alpha.2

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.
@@ -0,0 +1,31 @@
1
+
2
+
3
+
4
+ type RouteData {
5
+ path: String
6
+ strict: Boolean
7
+ exact: Boolean
8
+ key: String
9
+ tab: String
10
+ }
11
+
12
+
13
+ type MenuItem {
14
+ path: String
15
+ name: String
16
+ icon: String
17
+ position: MenuPosition
18
+ authority: String
19
+ loading: Boolean
20
+ exact: Boolean
21
+ strict: Boolean
22
+ children: [MenuItem]
23
+ }
24
+
25
+ enum MenuPosition {
26
+ LOGO
27
+ UPPER
28
+ MIDDLE
29
+ LOWER
30
+ BOTTOM
31
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adminide-stack/core",
3
- "version": "10.0.1-alpha.0",
3
+ "version": "10.0.1-alpha.2",
4
4
  "description": "AdminIDE core for higher packages to depend on",
5
5
  "license": "ISC",
6
6
  "author": "CDMBase LLC",
@@ -23,7 +23,7 @@
23
23
  "dependencies": {
24
24
  "@vscode-alt/monaco-editor": "^0.21.4",
25
25
  "@workbench-stack/core": "3.9.5",
26
- "common": "10.0.1-alpha.0",
26
+ "common": "10.0.1-alpha.2",
27
27
  "query-string": "^9.0.0",
28
28
  "sort-keys": "^5.0.0",
29
29
  "vscode-uri": "^3.0.8"
@@ -38,5 +38,5 @@
38
38
  "typescript": {
39
39
  "definition": "lib/index.d.ts"
40
40
  },
41
- "gitHead": "e962317f6f6dde3996d285d3307dc1a29c47edc7"
41
+ "gitHead": "48fa8208e5d098ed971a78a30ab4bbf9bc2a4ed9"
42
42
  }