@cabloy/vue-runtime-core 3.5.20 → 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.
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cabloy/vue-runtime-core",
3
- "version": "3.5.20",
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",