@rugal.tu/vuemodel3 1.5.5 → 1.5.6

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@rugal.tu/vuemodel3",
3
- "version": "1.5.5",
3
+ "version": "1.5.6",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/VueModel.d.ts CHANGED
@@ -281,7 +281,7 @@ export declare class VueStore extends ApiStore {
281
281
  ForceUpdate(): this;
282
282
  Refs(RefName: PathType): any;
283
283
  }
284
- type UsingFunctionType = ((Path: PathType, Node: QueryNode, Nodes?: QueryNode[]) => void);
284
+ type UsingFunctionType = ((path: PathType, node: QueryNode, nodes?: QueryNode[]) => void);
285
285
  type CommandOption = {
286
286
  CommandKey?: string;
287
287
  Target: PathType | Function;
package/src/VueModel.ts CHANGED
@@ -1482,7 +1482,7 @@ export class VueStore extends ApiStore {
1482
1482
  }
1483
1483
 
1484
1484
  //#region VueCommand Data Type
1485
- type UsingFunctionType = ((Path: PathType, Node: QueryNode, Nodes?: QueryNode[]) => void);
1485
+ type UsingFunctionType = ((path: PathType, node: QueryNode, nodes?: QueryNode[]) => void);
1486
1486
  type CommandOption = {
1487
1487
  CommandKey?: string,
1488
1488
  Target: PathType | Function,