Unverified Commit 97c8e7e0 authored by AUTOMATIC1111's avatar AUTOMATIC1111 Committed by GitHub
Browse files

Merge pull request #14119 from AUTOMATIC1111/add-Block-component-creation-callback

add Block component creation callback
parents e12a26c2 b30cc87b
Loading
Loading
Loading
Loading
+10 −0
Original line number Original line Diff line number Diff line
@@ -47,10 +47,20 @@ def Block_get_config(self):




def BlockContext_init(self, *args, **kwargs):
def BlockContext_init(self, *args, **kwargs):
    if scripts.scripts_current is not None:
        scripts.scripts_current.before_component(self, **kwargs)

    scripts.script_callbacks.before_component_callback(self, **kwargs)

    res = original_BlockContext_init(self, *args, **kwargs)
    res = original_BlockContext_init(self, *args, **kwargs)


    add_classes_to_gradio_component(self)
    add_classes_to_gradio_component(self)


    scripts.script_callbacks.after_component_callback(self, **kwargs)

    if scripts.scripts_current is not None:
        scripts.scripts_current.after_component(self, **kwargs)

    return res
    return res