@zealicsolutions/web-ui 0.4.97 → 0.4.99
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.js +13 -13
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/containers/utils.d.ts +2 -0
- package/dist/cjs/src/contexts/OrganismContext/OrganismContext.d.ts +2 -0
- package/dist/cjs/src/contexts/OrganismContext/OrganismContextProvider.d.ts +3 -1
- package/dist/esm/index.js +13 -13
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/containers/utils.d.ts +2 -0
- package/dist/esm/src/contexts/OrganismContext/OrganismContext.d.ts +2 -0
- package/dist/esm/src/contexts/OrganismContext/OrganismContextProvider.d.ts +3 -1
- package/dist/index.d.ts +5 -1
- package/package.json +2 -2
@@ -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;
|