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 CHANGED
@@ -12,5 +12,5 @@
12
12
  ## Documentation
13
13
 
14
14
  For detailed guides, API reference, and examples, visit:
15
- **[notform-docs.vercel.app](https://notformdocs.vercel.app/)**
15
+ **[notformdocs.vercel.app](https://notformdocs.vercel.app/)**
16
16
 
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[]; /** The current length of the array. */
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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "notform",
3
- "version": "2.0.0-alpha.9",
3
+ "version": "2.0.0-beta.1",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "description": "Vue Forms Without the Friction",