@zealicsolutions/web-ui 0.4.97 → 0.4.98

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,2 @@
1
+ export declare function overrideAttributes(savedAttributes: Partial<Record<string, any>>, currentContentAttributes: Partial<Record<string, any>> | undefined, properties: string[], selected: boolean): Partial<Record<string, any>>;
2
+ export declare function overrideProps(savedProps: Partial<Record<string, any>>, currentStyleAttributes: Partial<Record<string, any>> | undefined, selected: boolean): Partial<Record<string, any>>;
@@ -29,5 +29,7 @@ export declare type OrganismContextType = {
29
29
  organismMetadata?: MetadataType;
30
30
  onConfigurationItemClicked: (itemInfo?: Omit<ConfigurationItem, 'organismId'>) => void;
31
31
  selectedConfigurationItemId?: string;
32
+ currentStyleAttributes: Record<string, string>;
33
+ currentContentAttributes: Record<string, string>;
32
34
  };
33
35
  export declare const OrganismContext: import("react").Context<OrganismContextType>;
@@ -27,5 +27,7 @@ export declare type OrganismContextProviderProps = PropsWithChildren<{
27
27
  isConfigurationMode: boolean;
28
28
  onConfigurationItemHandler: (itemInfo: ConfigurationItem) => void;
29
29
  selectedConfigurationItemId: string;
30
+ currentStyleAttributes: Record<string, string>;
31
+ currentContentAttributes: Record<string, string>;
30
32
  }>>;
31
- export declare const OrganismContextProvider: ({ initItems, children, submitHandler, formId, organismId, validations, editable, isPreview, isFormInEditMode, organismMetadata, isConfigurationMode, onConfigurationItemHandler, selectedConfigurationItemId, }: OrganismContextProviderProps) => JSX.Element;
33
+ export declare const OrganismContextProvider: ({ initItems, children, submitHandler, formId, organismId, validations, editable, isPreview, isFormInEditMode, organismMetadata, isConfigurationMode, onConfigurationItemHandler, selectedConfigurationItemId, currentStyleAttributes, currentContentAttributes }: OrganismContextProviderProps) => JSX.Element;