notform 2.0.0-alpha.9 → 2.0.0-beta.1
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/README.md +1 -1
- package/dist/index.d.ts +1 -2
- package/dist/index.js +0 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -409,8 +409,7 @@ type NotArrayFieldItem = {
|
|
|
409
409
|
*/
|
|
410
410
|
type NotArrayFieldSlotProps<TSchema extends ObjectSchema, TItem = any> = {
|
|
411
411
|
/** The dot-separated path to this array field. */path: string; /** The array items with stable keys and paths for use with `v-for`. */
|
|
412
|
-
items: NotArrayFieldItem[]; /**
|
|
413
|
-
length: number; /** All validation issues for this array field from the last validation run. */
|
|
412
|
+
items: NotArrayFieldItem[]; /** All validation issues for this array field from the last validation run. */
|
|
414
413
|
errors: StandardSchemaV1.Issue[]; /** Whether this array field currently has no validation errors. */
|
|
415
414
|
isValid: boolean;
|
|
416
415
|
/**
|
package/dist/index.js
CHANGED
|
@@ -580,7 +580,6 @@ var not_array_field_default = /* @__PURE__ */ defineComponent({
|
|
|
580
580
|
const slotProps = computed(() => ({
|
|
581
581
|
path: props.path,
|
|
582
582
|
items: items.value,
|
|
583
|
-
length: array.value.length,
|
|
584
583
|
errors: errors.value,
|
|
585
584
|
isValid: isValid.value,
|
|
586
585
|
isTouched: isTouched.value,
|