@grasp-labs/ds-microfrontends-integration 1.0.2 → 1.0.3

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.
@@ -12,8 +12,7 @@ type DictionaryEntryProps<T extends FieldValues = FieldValues> = {
12
12
  };
13
13
  /**
14
14
  * Single key-value row in a dictionary field with editable key and typed value.
15
- * Key renames are committed on blur. The value input is rendered by EntryValueRenderer
16
- * which adapts to the value schema type (scalar input or nested object fields).
15
+ * Key renames are committed on blur.
17
16
  */
18
17
  export declare function DictionaryEntry<T extends FieldValues = FieldValues>({ fieldName, entryKey, valueSchema, isDisabled, keyPlaceholder, control, onKeyChange, onRemove, }: DictionaryEntryProps<T>): import("react/jsx-runtime").JSX.Element;
19
18
  export {};
@@ -5,12 +5,12 @@ type EntryValueRendererProps<T extends FieldValues = FieldValues> = {
5
5
  entryKey: string;
6
6
  valueSchema: Schema | null;
7
7
  control: Control<T>;
8
+ isDisabled?: boolean;
8
9
  };
9
10
  /**
10
11
  * Renders the value part of a dictionary entry.
11
12
  * Object schemas are rendered as nested SchemaFields, scalar schemas
12
- * get a single field input via DefaultFieldRenderer. Shared by
13
- * DictionaryEntry (used by DictionaryField for both regular and pattern dictionaries).
13
+ * get a single field input via DefaultFieldRenderer.
14
14
  */
15
15
  export declare function EntryValueRenderer<T extends FieldValues = FieldValues>({ fieldName, entryKey, valueSchema, control, }: EntryValueRendererProps<T>): import("react/jsx-runtime").JSX.Element | null;
16
16
  export {};