jk-vue-comps 0.1.10 → 0.1.12

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.
@@ -53,7 +53,7 @@ declare class VuePropTypes extends VuePropTypes_base {
53
53
  static boolType: () => VueTypes.VueTypeValidableDef<boolean, import("node_modules/vue-types/dist/types").ValidatorFunction<boolean>>;
54
54
  static numberType: <T extends number = number>() => VueTypes.VueTypeValidableDef<T, import("node_modules/vue-types/dist/types").ValidatorFunction<T>>;
55
55
  static funcType: <T extends (...args: any[]) => any>() => VueTypes.VueTypeValidableDef<T, import("node_modules/vue-types/dist/types").ValidatorFunction<T>>;
56
- static get style(): VueTypes.VueTypeValidableDef<string | CSSProperties, import("node_modules/vue-types/dist/types").ValidatorFunction<string | CSSProperties>>;
56
+ static get style(): VueTypes.VueTypeValidableDef<CSSProperties, import("node_modules/vue-types/dist/types").ValidatorFunction<CSSProperties>>;
57
57
  static get vueNode(): VueTypes.VueTypeValidableDef<VNode<import("vue").RendererNode, import("vue").RendererElement, {
58
58
  [key: string]: any;
59
59
  }> | VNodeChild, import("node_modules/vue-types/dist/types").ValidatorFunction<VNode<import("vue").RendererNode, import("vue").RendererElement, {
@@ -1,9 +1,9 @@
1
1
  var l = Object.defineProperty;
2
- var r = (c, e, i) => e in c ? l(c, e, { enumerable: !0, configurable: !0, writable: !0, value: i }) : c[e] = i;
3
- var a = (c, e, i) => (r(c, typeof e != "symbol" ? e + "" : e, i), i);
2
+ var r = (n, e, i) => e in n ? l(n, e, { enumerable: !0, configurable: !0, writable: !0, value: i }) : n[e] = i;
3
+ var a = (n, e, i) => (r(n, typeof e != "symbol" ? e + "" : e, i), i);
4
4
  import * as s from "vue-types";
5
5
  const { createTypes: u, toValidableType: o } = s, t = void 0;
6
- class n extends u({
6
+ class c extends u({
7
7
  func: t,
8
8
  bool: t,
9
9
  string: t,
@@ -13,7 +13,7 @@ class n extends u({
13
13
  }) {
14
14
  static get style() {
15
15
  return o("style", {
16
- type: [String, Object],
16
+ type: [Object],
17
17
  default: t
18
18
  });
19
19
  }
@@ -21,9 +21,9 @@ class n extends u({
21
21
  return o("vueNode", { default: t });
22
22
  }
23
23
  }
24
- a(n, "vueTypes", s), a(n, "anyType", s.any), a(n, "stringType", s.string), a(n, "boolType", s.bool), a(n, "numberType", s.number), a(n, "funcType", s.func);
25
- const b = n;
24
+ a(c, "vueTypes", s), a(c, "anyType", s.any), a(c, "stringType", s.string), a(c, "boolType", s.bool), a(c, "numberType", s.number), a(c, "funcType", s.func);
25
+ const b = c;
26
26
  export {
27
- n as default,
27
+ c as default,
28
28
  b as propTypes
29
29
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jk-vue-comps",
3
- "version": "0.1.10",
3
+ "version": "0.1.12",
4
4
  "description": "jk-vue-comps",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",