@builder.io/sdk-solid 0.11.2 → 0.11.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.
- package/dist/index.d.ts +46 -59
- package/lib/browser/dev.js +17 -65
- package/lib/browser/dev.jsx +66 -91
- package/lib/browser/index.js +17 -65
- package/lib/browser/index.jsx +66 -91
- package/lib/edge/dev.js +17 -65
- package/lib/edge/dev.jsx +66 -91
- package/lib/edge/index.js +17 -65
- package/lib/edge/index.jsx +66 -91
- package/lib/node/dev.js +17 -65
- package/lib/node/dev.jsx +66 -91
- package/lib/node/index.js +17 -65
- package/lib/node/index.jsx +66 -91
- package/package.json +1 -1
package/lib/node/index.jsx
CHANGED
|
@@ -876,25 +876,15 @@ function ComponentRef(props) {
|
|
|
876
876
|
contextValue: props.context
|
|
877
877
|
})}
|
|
878
878
|
component={Wrapper()}
|
|
879
|
-
>
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
}}</For>
|
|
889
|
-
<For each={props.blockChildren}>{(child, _index) => {
|
|
890
|
-
const index = _index();
|
|
891
|
-
return <Block_styles_default
|
|
892
|
-
key={"block-style-" + child.id}
|
|
893
|
-
block={child}
|
|
894
|
-
context={props.context}
|
|
895
|
-
/>;
|
|
896
|
-
}}</For>
|
|
897
|
-
</Dynamic3></Show4>;
|
|
879
|
+
><For each={props.blockChildren}>{(child, _index) => {
|
|
880
|
+
const index = _index();
|
|
881
|
+
return <Block_default
|
|
882
|
+
key={child.id}
|
|
883
|
+
block={child}
|
|
884
|
+
context={props.context}
|
|
885
|
+
registeredComponents={props.registeredComponents}
|
|
886
|
+
/>;
|
|
887
|
+
}}</For></Dynamic3></Show4>;
|
|
898
888
|
}
|
|
899
889
|
var Component_ref_default = ComponentRef;
|
|
900
890
|
|
|
@@ -971,41 +961,10 @@ function Block(props) {
|
|
|
971
961
|
isInteractive: !blockComponent()?.isRSC
|
|
972
962
|
};
|
|
973
963
|
}
|
|
974
|
-
return <Show5 when={canShowBlock()}
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
blockChildren={componentRefProps().blockChildren}
|
|
979
|
-
context={componentRefProps().context}
|
|
980
|
-
registeredComponents={componentRefProps().registeredComponents}
|
|
981
|
-
builderBlock={componentRefProps().builderBlock}
|
|
982
|
-
includeBlockProps={componentRefProps().includeBlockProps}
|
|
983
|
-
isInteractive={componentRefProps().isInteractive}
|
|
984
|
-
/>}
|
|
985
|
-
when={!blockComponent()?.noWrap}
|
|
986
|
-
>
|
|
987
|
-
<Show5 when={isEmptyHtmlElement(Tag())}><Block_wrapper_default
|
|
988
|
-
Wrapper={Tag()}
|
|
989
|
-
block={processedBlock()}
|
|
990
|
-
context={props.context}
|
|
991
|
-
hasChildren={false}
|
|
992
|
-
/></Show5>
|
|
993
|
-
<Show5 when={!isEmptyHtmlElement(Tag()) && repeatItem()}><For2 each={repeatItem()}>{(data, _index) => {
|
|
994
|
-
const index = _index();
|
|
995
|
-
return <Repeated_block_default
|
|
996
|
-
key={index}
|
|
997
|
-
repeatContext={data.context}
|
|
998
|
-
block={data.block}
|
|
999
|
-
registeredComponents={props.registeredComponents}
|
|
1000
|
-
/>;
|
|
1001
|
-
}}</For2></Show5>
|
|
1002
|
-
<Show5 when={!isEmptyHtmlElement(Tag()) && !repeatItem()}><Block_wrapper_default
|
|
1003
|
-
Wrapper={Tag()}
|
|
1004
|
-
block={processedBlock()}
|
|
1005
|
-
context={props.context}
|
|
1006
|
-
hasChildren={true}
|
|
1007
|
-
>
|
|
1008
|
-
<Component_ref_default
|
|
964
|
+
return <Show5 when={canShowBlock()}>
|
|
965
|
+
<Block_styles_default block={props.block} context={props.context} />
|
|
966
|
+
<Show5
|
|
967
|
+
fallback={<Component_ref_default
|
|
1009
968
|
componentRef={componentRefProps().componentRef}
|
|
1010
969
|
componentOptions={componentRefProps().componentOptions}
|
|
1011
970
|
blockChildren={componentRefProps().blockChildren}
|
|
@@ -1014,26 +973,52 @@ function Block(props) {
|
|
|
1014
973
|
builderBlock={componentRefProps().builderBlock}
|
|
1015
974
|
includeBlockProps={componentRefProps().includeBlockProps}
|
|
1016
975
|
isInteractive={componentRefProps().isInteractive}
|
|
1017
|
-
/>
|
|
1018
|
-
|
|
976
|
+
/>}
|
|
977
|
+
when={!blockComponent()?.noWrap}
|
|
978
|
+
>
|
|
979
|
+
<Show5 when={isEmptyHtmlElement(Tag())}><Block_wrapper_default
|
|
980
|
+
Wrapper={Tag()}
|
|
981
|
+
block={processedBlock()}
|
|
982
|
+
context={props.context}
|
|
983
|
+
hasChildren={false}
|
|
984
|
+
/></Show5>
|
|
985
|
+
<Show5 when={!isEmptyHtmlElement(Tag()) && repeatItem()}><For2 each={repeatItem()}>{(data, _index) => {
|
|
1019
986
|
const index = _index();
|
|
1020
|
-
return <
|
|
1021
|
-
key={
|
|
1022
|
-
|
|
1023
|
-
|
|
987
|
+
return <Repeated_block_default
|
|
988
|
+
key={index}
|
|
989
|
+
repeatContext={data.context}
|
|
990
|
+
block={data.block}
|
|
1024
991
|
registeredComponents={props.registeredComponents}
|
|
1025
992
|
/>;
|
|
1026
|
-
}}</For2>
|
|
1027
|
-
<
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
993
|
+
}}</For2></Show5>
|
|
994
|
+
<Show5 when={!isEmptyHtmlElement(Tag()) && !repeatItem()}><Block_wrapper_default
|
|
995
|
+
Wrapper={Tag()}
|
|
996
|
+
block={processedBlock()}
|
|
997
|
+
context={props.context}
|
|
998
|
+
hasChildren={true}
|
|
999
|
+
>
|
|
1000
|
+
<Component_ref_default
|
|
1001
|
+
componentRef={componentRefProps().componentRef}
|
|
1002
|
+
componentOptions={componentRefProps().componentOptions}
|
|
1003
|
+
blockChildren={componentRefProps().blockChildren}
|
|
1004
|
+
context={componentRefProps().context}
|
|
1005
|
+
registeredComponents={componentRefProps().registeredComponents}
|
|
1006
|
+
builderBlock={componentRefProps().builderBlock}
|
|
1007
|
+
includeBlockProps={componentRefProps().includeBlockProps}
|
|
1008
|
+
isInteractive={componentRefProps().isInteractive}
|
|
1009
|
+
/>
|
|
1010
|
+
<For2 each={childrenWithoutParentComponent()}>{(child, _index) => {
|
|
1011
|
+
const index = _index();
|
|
1012
|
+
return <Block
|
|
1013
|
+
key={child.id}
|
|
1014
|
+
block={child}
|
|
1015
|
+
context={childrenContext()}
|
|
1016
|
+
registeredComponents={props.registeredComponents}
|
|
1017
|
+
/>;
|
|
1018
|
+
}}</For2>
|
|
1019
|
+
</Block_wrapper_default></Show5>
|
|
1020
|
+
</Show5>
|
|
1021
|
+
</Show5>;
|
|
1037
1022
|
}
|
|
1038
1023
|
var Block_default = Block;
|
|
1039
1024
|
|
|
@@ -1102,25 +1087,15 @@ function Blocks(props) {
|
|
|
1102
1087
|
styleProp={props.styleProp}
|
|
1103
1088
|
BlocksWrapper={props.context?.BlocksWrapper}
|
|
1104
1089
|
BlocksWrapperProps={props.context?.BlocksWrapperProps}
|
|
1105
|
-
>
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
}}</For3></Show6>
|
|
1115
|
-
<Show6 when={props.blocks}><For3 each={props.blocks}>{(block, _index) => {
|
|
1116
|
-
const index = _index();
|
|
1117
|
-
return <Block_styles_default
|
|
1118
|
-
key={"block-style-" + block.id}
|
|
1119
|
-
block={block}
|
|
1120
|
-
context={props.context || builderContext}
|
|
1121
|
-
/>;
|
|
1122
|
-
}}</For3></Show6>
|
|
1123
|
-
</Blocks_wrapper_default>;
|
|
1090
|
+
><Show6 when={props.blocks}><For3 each={props.blocks}>{(block, _index) => {
|
|
1091
|
+
const index = _index();
|
|
1092
|
+
return <Block_default
|
|
1093
|
+
key={block.id}
|
|
1094
|
+
block={block}
|
|
1095
|
+
context={props.context || builderContext}
|
|
1096
|
+
registeredComponents={props.registeredComponents || componentsContext.registeredComponents}
|
|
1097
|
+
/>;
|
|
1098
|
+
}}</For3></Show6></Blocks_wrapper_default>;
|
|
1124
1099
|
}
|
|
1125
1100
|
var Blocks_default = Blocks;
|
|
1126
1101
|
|
|
@@ -3074,7 +3049,7 @@ var getInteractionPropertiesForEvent = (event) => {
|
|
|
3074
3049
|
};
|
|
3075
3050
|
|
|
3076
3051
|
// src/constants/sdk-version.ts
|
|
3077
|
-
var SDK_VERSION = "0.11.
|
|
3052
|
+
var SDK_VERSION = "0.11.3";
|
|
3078
3053
|
|
|
3079
3054
|
// src/functions/register.ts
|
|
3080
3055
|
var registry = {};
|