@formkit/pro 0.114.2 → 0.114.3-07af43c

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/index.d.ts CHANGED
@@ -1208,23 +1208,6 @@ declare module '@formkit/inputs' {
1208
1208
  chart?: undefined
1209
1209
  }
1210
1210
 
1211
- /**
1212
- * General input events available to all FormKit inputs.
1213
- * @public
1214
- */
1215
- interface FormKitBaseEvents<Props extends FormKitInputs<Props>> {
1216
- (event: 'input', value: PropType<Props, 'value'>, node: FormKitNode): any
1217
- (event: 'inputRaw', value: PropType<Props, 'value'>, node: FormKitNode): any
1218
- (
1219
- event: 'input-raw',
1220
- value: PropType<Props, 'value'>,
1221
- node: FormKitNode
1222
- ): any
1223
- (event: 'update:modelValue', value: PropType<Props, 'value'>): any
1224
- (event: 'update:model-value', value: PropType<Props, 'value'>): any
1225
- (event: 'node', node: FormKitNode): any
1226
- }
1227
-
1228
1211
  interface FormKitInputProps<Props extends FormKitInputs<Props>> {
1229
1212
  autocomplete: {
1230
1213
  type: 'autocomplete'