@rugal.tu/vuemodel3 1.6.9 → 1.6.10
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 +1 -1
- package/src/VueModel.d.ts +4 -9
package/package.json
CHANGED
package/src/VueModel.d.ts
CHANGED
|
@@ -195,14 +195,6 @@ export declare class ApiStore extends FuncBase {
|
|
|
195
195
|
constructor();
|
|
196
196
|
get ApiDomain(): string;
|
|
197
197
|
set ApiDomain(ApiDomain: string);
|
|
198
|
-
get OnEventName(): {
|
|
199
|
-
ApiStore: {
|
|
200
|
-
AddApi: string;
|
|
201
|
-
UpdateStore: string;
|
|
202
|
-
AddStore: string;
|
|
203
|
-
SetStore: string;
|
|
204
|
-
};
|
|
205
|
-
};
|
|
206
198
|
get Store(): StoreType;
|
|
207
199
|
protected set Store(Store: StoreType);
|
|
208
200
|
get ApiStore(): any;
|
|
@@ -273,6 +265,8 @@ export declare class VueStore extends ApiStore {
|
|
|
273
265
|
protected $VueApp: App;
|
|
274
266
|
protected $VueUse: Plugin[];
|
|
275
267
|
protected $CoreStore: string;
|
|
268
|
+
protected $FuncsStore: string;
|
|
269
|
+
protected $EventStore: string;
|
|
276
270
|
protected $MountedFuncs: Function[];
|
|
277
271
|
protected $SetupFuncs: (() => any)[];
|
|
278
272
|
protected $Directive: {
|
|
@@ -406,7 +400,8 @@ export declare class VueCommand extends VueStore {
|
|
|
406
400
|
AddV_On(domName: PathType | QueryNode[], eventName: string, option: AddCommandOption, args?: string): this;
|
|
407
401
|
Watch(WatchPath: PathType | (() => any), Callback: WatchCallback, Option?: WatchOptions): WatchHandle;
|
|
408
402
|
AddV_Watch(WatchPath: PathType | (() => any), Callback: WatchCallback, Option?: WatchOptions): this;
|
|
409
|
-
|
|
403
|
+
AddFunc(funcPath: PathType, func: Function): this;
|
|
404
|
+
Func<T = any>(funcPath: PathType, ...args: any[]): T;
|
|
410
405
|
AddV_OnChange(DomName: PathType | QueryNode[], ChangeFunc: AddCommandOption, Args?: string): this;
|
|
411
406
|
AddV_Click(DomName: PathType | QueryNode[], Option: AddCommandOption, Args?: string): this;
|
|
412
407
|
AddV_FilePicker(DomName: PathType | QueryNode[], Option: AddV_FilePickerOption): this;
|