@rugal.tu/vuemodel3 1.5.0 → 1.5.1

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.0",
3
+ "version": "1.5.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/VueModel.d.ts CHANGED
@@ -294,7 +294,7 @@ type TreeSetType = {
294
294
  'watch'?: '' | WatchCallback;
295
295
  'using'?: '' | UsingFunctionType;
296
296
  'func'?: Function;
297
- [FuncCmd: `func:${string}`]: '' | Function;
297
+ [FuncCmd: `func:${string}`]: Function;
298
298
  [DomName: `:${string}`]: '' | UsingFunctionType | TreeSetType;
299
299
  'v-model'?: '' | PathType;
300
300
  [VModelCmd: `v-model:${string}`]: '' | PathType;
package/src/VueModel.ts CHANGED
@@ -1496,7 +1496,7 @@ type TreeSetType = {
1496
1496
  'watch'?: '' | WatchCallback,
1497
1497
  'using'?: '' | UsingFunctionType,
1498
1498
  'func'?: Function,
1499
- [FuncCmd: `func:${string}`]: '' | Function,
1499
+ [FuncCmd: `func:${string}`]: Function,
1500
1500
  [DomName: `:${string}`]: '' | UsingFunctionType | TreeSetType,
1501
1501
 
1502
1502
  'v-model'?: '' | PathType,