@webitel/ui-datalist 1.1.71 → 1.1.73

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.
@@ -1,4 +1,11 @@
1
- import type { RegleSchemaFieldStatus } from '@regle/schemas';
1
+ import type { InferRegleSchemaStatusType } from '@regle/schemas';
2
+ /**
3
+ * Validation statuses of a card entity, as handed to the form tabs.
4
+ *
5
+ * Mirrors what regle actually builds: an array field resolves to a collection
6
+ * status (`$each`), a nested object to a status with `$fields`. Typing every
7
+ * field as a plain field status hides both.
8
+ */
2
9
  export type CardValidationFields<T> = {
3
- [K in keyof T]: RegleSchemaFieldStatus<T[K]>;
10
+ [K in keyof T]: InferRegleSchemaStatusType<T[K]>;
4
11
  };
@@ -1,12 +1,12 @@
1
1
  import { FilterInitParams } from '../../classes/Filter';
2
2
  import { DynamicFilterProps } from '../types/Filter.types';
3
- declare var __VLS_38: {}, __VLS_51: {
3
+ declare var __VLS_33: {}, __VLS_46: {
4
4
  hide: any;
5
5
  };
6
6
  type __VLS_Slots = {} & {
7
- info?: (props: typeof __VLS_38) => any;
7
+ info?: (props: typeof __VLS_33) => any;
8
8
  } & {
9
- form?: (props: typeof __VLS_51) => any;
9
+ form?: (props: typeof __VLS_46) => any;
10
10
  };
11
11
  declare const __VLS_base: import("vue").DefineComponent<DynamicFilterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
12
  "update:filter": (args_0: FilterInitParams) => any;