@kaskad/core 0.0.8 → 0.0.9

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/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@kaskad/core",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "peerDependencies": {
5
- "@kaskad/types": "0.0.8",
6
- "@kaskad/config": "0.0.8",
7
- "@kaskad/definition": "0.0.8",
8
- "@kaskad/schema": "0.0.8",
9
- "@kaskad/component-tree": "0.0.8",
10
- "@kaskad/formula-parser": "0.0.8",
11
- "@kaskad/eval-tree": "0.0.8",
5
+ "@kaskad/types": "0.0.9",
6
+ "@kaskad/config": "0.0.9",
7
+ "@kaskad/definition": "0.0.9",
8
+ "@kaskad/schema": "0.0.9",
9
+ "@kaskad/component-tree": "0.0.9",
10
+ "@kaskad/formula-parser": "0.0.9",
11
+ "@kaskad/eval-tree": "0.0.9",
12
12
  "mobx": "^6.13.7",
13
13
  "rxjs": "~7.8.0",
14
14
  "yaml": "^2.0.0"
@@ -27,8 +27,11 @@ declare function run(selector: string, ...args: unknown[]): Promise<unknown>;
27
27
  declare function select(selector: string): TComponent;
28
28
  declare function selectAll(selector: string): TComponent[];
29
29
  declare function evaluating(selector: string): boolean;
30
+ declare function settled(selector: string): boolean;
31
+ declare function ready(selector: string): boolean;
32
+ declare function error(selector: string): unknown;
30
33
  declare function running(selector: string): boolean;
31
34
  declare function getComponentType(selector: string): string;
32
35
  declare function getId(selector: string): ComponentId;
33
36
 
34
- export { createView, createViewFromFile, evaluating, get, getComponentType, getId, loadYamlSchema, loadYamlSchemaFrom, run, running, select, selectAll, set, setCurrent, setupRecipeFetch };
37
+ export { createView, createViewFromFile, error, evaluating, get, getComponentType, getId, loadYamlSchema, loadYamlSchemaFrom, ready, run, running, select, selectAll, set, setCurrent, settled, setupRecipeFetch };