Update style-spec package to 26.1 (#2005)

## Launch Checklist

Update style-spec package to version 26.1
This should solve a problem related to expression validation.

 - [x] Briefly describe the changes in this PR.
 - [x] Link to related issues.
This commit is contained in:
Harel M
2026-07-14 14:14:28 +03:00
committed by GitHub
parent e5e09e846a
commit cf54b6fdeb
6 changed files with 16 additions and 13 deletions
+4 -1
View File
@@ -2,7 +2,10 @@ import { InputDynamicArray, type InputDynamicArrayProps } from "./InputDynamicAr
import { Fieldset } from "./Fieldset";
type FieldDynamicArrayProps = InputDynamicArrayProps & {
name?: string
name?: string;
fieldSpec?: {
value?: string;
}
};
export const FieldDynamicArray: React.FC<FieldDynamicArrayProps> = (props) => {