@cabloy/vue-runtime-core 3.5.19 → 3.5.21

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.
@@ -6679,7 +6679,7 @@ const filterModelListeners = (attrs, props) => {
6679
6679
  }
6680
6680
  return res;
6681
6681
  };
6682
- const filterZovaAttrs = (attrs, inheritAttrs) => {
6682
+ const filterZovaAttrs = (attrs, inheritAttrs = true) => {
6683
6683
  const res = {};
6684
6684
  if (!inheritAttrs) return res;
6685
6685
  for (const key in attrs) {
@@ -5231,7 +5231,7 @@ const filterModelListeners = (attrs, props) => {
5231
5231
  }
5232
5232
  return res;
5233
5233
  };
5234
- const filterZovaAttrs = (attrs, inheritAttrs) => {
5234
+ const filterZovaAttrs = (attrs, inheritAttrs = true) => {
5235
5235
  const res = {};
5236
5236
  if (!inheritAttrs) return res;
5237
5237
  for (const key in attrs) {
@@ -810,7 +810,7 @@ export interface ComponentOptionsBase<Props, RawBindings, D, C extends ComputedO
810
810
  render?: Function;
811
811
  components?: LC & Record<string, Component>;
812
812
  directives?: Directives & Record<string, Directive>;
813
- inheritAttrs?: boolean;
813
+ inheritAttrs?: boolean | string[];
814
814
  emits?: (E | EE[]) & ThisType<void>;
815
815
  slots?: S;
816
816
  expose?: Exposed[];
@@ -1387,7 +1387,7 @@ export interface FunctionalComponent<P = {}, E extends EmitsOptions | Record<str
1387
1387
  props?: ComponentPropsOptions<P>;
1388
1388
  emits?: EE | (keyof EE)[];
1389
1389
  slots?: IfAny<S, Slots, SlotsType<S>>;
1390
- inheritAttrs?: boolean;
1390
+ inheritAttrs?: boolean | string[];
1391
1391
  displayName?: string;
1392
1392
  compatConfig?: CompatConfig;
1393
1393
  }
@@ -6736,7 +6736,7 @@ const filterModelListeners = (attrs, props) => {
6736
6736
  }
6737
6737
  return res;
6738
6738
  };
6739
- const filterZovaAttrs = (attrs, inheritAttrs) => {
6739
+ const filterZovaAttrs = (attrs, inheritAttrs = true) => {
6740
6740
  const res = {};
6741
6741
  if (!inheritAttrs) return res;
6742
6742
  for (const key in attrs) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cabloy/vue-runtime-core",
3
- "version": "3.5.19",
3
+ "version": "3.5.21",
4
4
  "description": "@vue/runtime-core",
5
5
  "main": "index.js",
6
6
  "module": "dist/runtime-core.esm-bundler.js",