@xiaohaih/condition-core
Advanced tools
Comparing version 0.1.2 to 0.1.3
@@ -947,14 +947,17 @@ import * as vue_demi from 'vue-demi'; | ||
type BuiltInField = 'field' | 'query'; | ||
interface WrapperProps extends Omit<ExtractPropTypes<typeof wrapperProps>, BuiltInField> { | ||
interface WrapperProps extends Omit<ExtractPropTypes<OmitDefaultValue<typeof wrapperProps>>, BuiltInField> { | ||
} | ||
interface SelectProps extends Omit<ExtractPropTypes<typeof selectProps>, BuiltInField> { | ||
interface SelectProps extends Omit<ExtractPropTypes<OmitDefaultValue<typeof selectProps>>, BuiltInField> { | ||
} | ||
interface InputProps extends Omit<ExtractPropTypes<typeof inputProps>, BuiltInField> { | ||
interface InputProps extends Omit<ExtractPropTypes<OmitDefaultValue<typeof inputProps>>, BuiltInField> { | ||
} | ||
interface DatepickerProps extends Omit<ExtractPropTypes<typeof datepickerProps>, BuiltInField> { | ||
interface DatepickerProps extends Omit<ExtractPropTypes<OmitDefaultValue<typeof datepickerProps>>, BuiltInField> { | ||
} | ||
interface CascaderProps extends Omit<ExtractPropTypes<typeof cascaderProps>, BuiltInField> { | ||
interface CascaderProps extends Omit<ExtractPropTypes<OmitDefaultValue<typeof cascaderProps>>, BuiltInField> { | ||
} | ||
} | ||
type OmitDefaultValue<T> = T extends { | ||
default: any; | ||
} ? Omit<T, 'default'> : T; | ||
export { _default as CoreCascader, CoreCondition, _default$1 as CoreDatepicker, _default$2 as CoreInput, _default$3 as CoreSelect, _default$4 as CoreWrapper }; |
{ | ||
"name": "@xiaohaih/condition-core", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.cjs.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
494594
4807