@builder.io/sdk-qwik 0.11.1 → 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/lib/browser/index.qwik.cjs +230 -254
- package/lib/browser/index.qwik.mjs +230 -254
- package/lib/edge/index.qwik.cjs +230 -254
- package/lib/edge/index.qwik.mjs +230 -254
- package/lib/node/index.qwik.cjs +230 -254
- package/lib/node/index.qwik.mjs +230 -254
- package/package.json +1 -1
- package/types/src/blocks/button/button.d.ts +1 -9
- package/types/src/blocks/button/button.types.d.ts +6 -0
- package/types/src/blocks/columns/columns.d.ts +2 -14
- package/types/src/blocks/columns/columns.types.d.ts +15 -0
- package/types/src/blocks/fragment/fragment.d.ts +1 -5
- package/types/src/blocks/fragment/fragment.types.d.ts +5 -0
- package/types/src/blocks/image/image.d.ts +1 -19
- package/types/src/blocks/image/image.types.d.ts +19 -0
- package/types/src/blocks/section/section.d.ts +1 -9
- package/types/src/blocks/section/section.types.d.ts +6 -0
- package/types/src/blocks/symbol/symbol.d.ts +2 -23
- package/types/src/blocks/symbol/symbol.types.d.ts +18 -0
- package/types/src/blocks/text/text.d.ts +1 -3
- package/types/src/blocks/text/text.types.d.ts +3 -0
- package/types/src/blocks/video/video.d.ts +1 -21
- package/types/src/blocks/video/video.types.d.ts +21 -0
- package/types/src/components/blocks/blocks.d.ts +1 -6
- package/types/src/components/blocks/blocks.types.d.ts +6 -0
- package/types/src/components/content-variants/content-variants.types.d.ts +30 -1
- package/types/src/constants/sdk-version.d.ts +1 -1
- package/types/src/functions/get-content/index.d.ts +1 -1
- package/types/src/functions/get-content/types.d.ts +2 -2
- package/types/src/index-helpers/blocks-exports.d.ts +2 -2
- package/types/src/server-index.d.ts +10 -1
package/lib/edge/index.qwik.mjs
CHANGED
|
@@ -3861,40 +3861,25 @@ const ComponentRef = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pr
|
|
|
3861
3861
|
isInteractive: props.isInteractive,
|
|
3862
3862
|
contextValue: props.context
|
|
3863
3863
|
}),
|
|
3864
|
-
children: [
|
|
3865
|
-
|
|
3866
|
-
|
|
3867
|
-
|
|
3868
|
-
|
|
3869
|
-
|
|
3870
|
-
|
|
3871
|
-
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
|
|
3877
|
-
|
|
3878
|
-
|
|
3879
|
-
|
|
3880
|
-
|
|
3881
|
-
|
|
3882
|
-
|
|
3883
|
-
}),
|
|
3884
|
-
(props.blockChildren || []).map((child) => {
|
|
3885
|
-
return /* @__PURE__ */ _jsxC(BlockStyles, {
|
|
3886
|
-
block: child,
|
|
3887
|
-
get context() {
|
|
3888
|
-
return props.context;
|
|
3889
|
-
},
|
|
3890
|
-
[_IMMUTABLE]: {
|
|
3891
|
-
context: _fnSignal((p0) => p0.context, [
|
|
3892
|
-
props
|
|
3893
|
-
], "p0.context")
|
|
3894
|
-
}
|
|
3895
|
-
}, 3, "block-style-" + child.id);
|
|
3896
|
-
})
|
|
3897
|
-
]
|
|
3864
|
+
children: (props.blockChildren || []).map((child) => {
|
|
3865
|
+
return /* @__PURE__ */ _jsxC(Block, {
|
|
3866
|
+
block: child,
|
|
3867
|
+
get context() {
|
|
3868
|
+
return props.context;
|
|
3869
|
+
},
|
|
3870
|
+
get registeredComponents() {
|
|
3871
|
+
return props.registeredComponents;
|
|
3872
|
+
},
|
|
3873
|
+
[_IMMUTABLE]: {
|
|
3874
|
+
context: _fnSignal((p0) => p0.context, [
|
|
3875
|
+
props
|
|
3876
|
+
], "p0.context"),
|
|
3877
|
+
registeredComponents: _fnSignal((p0) => p0.registeredComponents, [
|
|
3878
|
+
props
|
|
3879
|
+
], "p0.registeredComponents")
|
|
3880
|
+
}
|
|
3881
|
+
}, 3, child.id);
|
|
3882
|
+
})
|
|
3898
3883
|
}, 0, "z6_0") : null
|
|
3899
3884
|
}, 1, "z6_1");
|
|
3900
3885
|
}, "ComponentRef_component_tFQoBV6UFdc"));
|
|
@@ -4023,216 +4008,223 @@ const Block = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) =>
|
|
|
4023
4008
|
state
|
|
4024
4009
|
]));
|
|
4025
4010
|
return /* @__PURE__ */ _jsxC(Fragment, {
|
|
4026
|
-
children: canShowBlock.value ?
|
|
4011
|
+
children: canShowBlock.value ? /* @__PURE__ */ _jsxC(Fragment, {
|
|
4027
4012
|
children: [
|
|
4028
|
-
|
|
4029
|
-
get Wrapper() {
|
|
4030
|
-
return Tag.value;
|
|
4031
|
-
},
|
|
4013
|
+
/* @__PURE__ */ _jsxC(BlockStyles, {
|
|
4032
4014
|
get block() {
|
|
4033
|
-
return
|
|
4015
|
+
return props.block;
|
|
4034
4016
|
},
|
|
4035
4017
|
get context() {
|
|
4036
4018
|
return props.context;
|
|
4037
4019
|
},
|
|
4038
|
-
hasChildren: false,
|
|
4039
4020
|
[_IMMUTABLE]: {
|
|
4040
|
-
|
|
4041
|
-
|
|
4042
|
-
], "p0.
|
|
4043
|
-
block: _fnSignal((p0) => p0.value, [
|
|
4044
|
-
processedBlock
|
|
4045
|
-
], "p0.value"),
|
|
4021
|
+
block: _fnSignal((p0) => p0.block, [
|
|
4022
|
+
props
|
|
4023
|
+
], "p0.block"),
|
|
4046
4024
|
context: _fnSignal((p0) => p0.context, [
|
|
4047
4025
|
props
|
|
4048
|
-
], "p0.context")
|
|
4049
|
-
hasChildren: _IMMUTABLE
|
|
4026
|
+
], "p0.context")
|
|
4050
4027
|
}
|
|
4051
|
-
}, 3, "jN_0")
|
|
4052
|
-
!
|
|
4053
|
-
return /* @__PURE__ */ _jsxC(RepeatedBlock, {
|
|
4054
|
-
get repeatContext() {
|
|
4055
|
-
return data.context;
|
|
4056
|
-
},
|
|
4057
|
-
get block() {
|
|
4058
|
-
return data.block;
|
|
4059
|
-
},
|
|
4060
|
-
get registeredComponents() {
|
|
4061
|
-
return props.registeredComponents;
|
|
4062
|
-
},
|
|
4063
|
-
[_IMMUTABLE]: {
|
|
4064
|
-
block: _wrapProp(data, "block"),
|
|
4065
|
-
registeredComponents: _fnSignal((p0) => p0.registeredComponents, [
|
|
4066
|
-
props
|
|
4067
|
-
], "p0.registeredComponents"),
|
|
4068
|
-
repeatContext: _wrapProp(data, "context")
|
|
4069
|
-
}
|
|
4070
|
-
}, 3, index);
|
|
4071
|
-
}) : null,
|
|
4072
|
-
!isEmptyHtmlElement(Tag.value) && !repeatItem.value ? /* @__PURE__ */ _jsxC(BlockWrapper, {
|
|
4073
|
-
get Wrapper() {
|
|
4074
|
-
return Tag.value;
|
|
4075
|
-
},
|
|
4076
|
-
get block() {
|
|
4077
|
-
return processedBlock.value;
|
|
4078
|
-
},
|
|
4079
|
-
get context() {
|
|
4080
|
-
return props.context;
|
|
4081
|
-
},
|
|
4028
|
+
}, 3, "jN_0"),
|
|
4029
|
+
!((_a = blockComponent.value) == null ? void 0 : _a.noWrap) ? /* @__PURE__ */ _jsxC(Fragment, {
|
|
4082
4030
|
children: [
|
|
4083
|
-
/* @__PURE__ */ _jsxC(
|
|
4084
|
-
get
|
|
4085
|
-
return
|
|
4031
|
+
isEmptyHtmlElement(Tag.value) ? /* @__PURE__ */ _jsxC(BlockWrapper, {
|
|
4032
|
+
get Wrapper() {
|
|
4033
|
+
return Tag.value;
|
|
4086
4034
|
},
|
|
4087
|
-
get
|
|
4088
|
-
return
|
|
4089
|
-
},
|
|
4090
|
-
get blockChildren() {
|
|
4091
|
-
return componentRefProps.value.blockChildren;
|
|
4035
|
+
get block() {
|
|
4036
|
+
return processedBlock.value;
|
|
4092
4037
|
},
|
|
4093
4038
|
get context() {
|
|
4094
|
-
return
|
|
4095
|
-
},
|
|
4096
|
-
get registeredComponents() {
|
|
4097
|
-
return componentRefProps.value.registeredComponents;
|
|
4098
|
-
},
|
|
4099
|
-
get builderBlock() {
|
|
4100
|
-
return componentRefProps.value.builderBlock;
|
|
4101
|
-
},
|
|
4102
|
-
get includeBlockProps() {
|
|
4103
|
-
return componentRefProps.value.includeBlockProps;
|
|
4104
|
-
},
|
|
4105
|
-
get isInteractive() {
|
|
4106
|
-
return componentRefProps.value.isInteractive;
|
|
4039
|
+
return props.context;
|
|
4107
4040
|
},
|
|
4041
|
+
hasChildren: false,
|
|
4108
4042
|
[_IMMUTABLE]: {
|
|
4109
|
-
|
|
4110
|
-
|
|
4111
|
-
], "p0.value
|
|
4112
|
-
|
|
4113
|
-
|
|
4114
|
-
], "p0.value
|
|
4115
|
-
|
|
4116
|
-
|
|
4117
|
-
], "p0.
|
|
4118
|
-
|
|
4119
|
-
componentRefProps
|
|
4120
|
-
], "p0.value.componentRef"),
|
|
4121
|
-
context: _fnSignal((p0) => p0.value.context, [
|
|
4122
|
-
componentRefProps
|
|
4123
|
-
], "p0.value.context"),
|
|
4124
|
-
includeBlockProps: _fnSignal((p0) => p0.value.includeBlockProps, [
|
|
4125
|
-
componentRefProps
|
|
4126
|
-
], "p0.value.includeBlockProps"),
|
|
4127
|
-
isInteractive: _fnSignal((p0) => p0.value.isInteractive, [
|
|
4128
|
-
componentRefProps
|
|
4129
|
-
], "p0.value.isInteractive"),
|
|
4130
|
-
registeredComponents: _fnSignal((p0) => p0.value.registeredComponents, [
|
|
4131
|
-
componentRefProps
|
|
4132
|
-
], "p0.value.registeredComponents")
|
|
4043
|
+
Wrapper: _fnSignal((p0) => p0.value, [
|
|
4044
|
+
Tag
|
|
4045
|
+
], "p0.value"),
|
|
4046
|
+
block: _fnSignal((p0) => p0.value, [
|
|
4047
|
+
processedBlock
|
|
4048
|
+
], "p0.value"),
|
|
4049
|
+
context: _fnSignal((p0) => p0.context, [
|
|
4050
|
+
props
|
|
4051
|
+
], "p0.context"),
|
|
4052
|
+
hasChildren: _IMMUTABLE
|
|
4133
4053
|
}
|
|
4134
|
-
}, 3, "jN_1"),
|
|
4135
|
-
(
|
|
4136
|
-
return /* @__PURE__ */ _jsxC(
|
|
4137
|
-
|
|
4138
|
-
|
|
4139
|
-
|
|
4054
|
+
}, 3, "jN_1") : null,
|
|
4055
|
+
!isEmptyHtmlElement(Tag.value) && repeatItem.value ? (repeatItem.value || []).map((data, index) => {
|
|
4056
|
+
return /* @__PURE__ */ _jsxC(RepeatedBlock, {
|
|
4057
|
+
get repeatContext() {
|
|
4058
|
+
return data.context;
|
|
4059
|
+
},
|
|
4060
|
+
get block() {
|
|
4061
|
+
return data.block;
|
|
4140
4062
|
},
|
|
4141
4063
|
get registeredComponents() {
|
|
4142
4064
|
return props.registeredComponents;
|
|
4143
4065
|
},
|
|
4144
4066
|
[_IMMUTABLE]: {
|
|
4145
|
-
|
|
4146
|
-
state
|
|
4147
|
-
], "p0.childrenContext"),
|
|
4067
|
+
block: _wrapProp(data, "block"),
|
|
4148
4068
|
registeredComponents: _fnSignal((p0) => p0.registeredComponents, [
|
|
4149
4069
|
props
|
|
4150
|
-
], "p0.registeredComponents")
|
|
4070
|
+
], "p0.registeredComponents"),
|
|
4071
|
+
repeatContext: _wrapProp(data, "context")
|
|
4151
4072
|
}
|
|
4152
|
-
}, 3,
|
|
4153
|
-
}),
|
|
4154
|
-
(
|
|
4155
|
-
|
|
4156
|
-
|
|
4157
|
-
|
|
4158
|
-
|
|
4159
|
-
|
|
4160
|
-
|
|
4161
|
-
|
|
4162
|
-
|
|
4163
|
-
|
|
4164
|
-
|
|
4165
|
-
|
|
4166
|
-
|
|
4167
|
-
|
|
4168
|
-
|
|
4073
|
+
}, 3, index);
|
|
4074
|
+
}) : null,
|
|
4075
|
+
!isEmptyHtmlElement(Tag.value) && !repeatItem.value ? /* @__PURE__ */ _jsxC(BlockWrapper, {
|
|
4076
|
+
get Wrapper() {
|
|
4077
|
+
return Tag.value;
|
|
4078
|
+
},
|
|
4079
|
+
get block() {
|
|
4080
|
+
return processedBlock.value;
|
|
4081
|
+
},
|
|
4082
|
+
get context() {
|
|
4083
|
+
return props.context;
|
|
4084
|
+
},
|
|
4085
|
+
children: [
|
|
4086
|
+
/* @__PURE__ */ _jsxC(ComponentRef, {
|
|
4087
|
+
get componentRef() {
|
|
4088
|
+
return componentRefProps.value.componentRef;
|
|
4089
|
+
},
|
|
4090
|
+
get componentOptions() {
|
|
4091
|
+
return componentRefProps.value.componentOptions;
|
|
4092
|
+
},
|
|
4093
|
+
get blockChildren() {
|
|
4094
|
+
return componentRefProps.value.blockChildren;
|
|
4095
|
+
},
|
|
4096
|
+
get context() {
|
|
4097
|
+
return componentRefProps.value.context;
|
|
4098
|
+
},
|
|
4099
|
+
get registeredComponents() {
|
|
4100
|
+
return componentRefProps.value.registeredComponents;
|
|
4101
|
+
},
|
|
4102
|
+
get builderBlock() {
|
|
4103
|
+
return componentRefProps.value.builderBlock;
|
|
4104
|
+
},
|
|
4105
|
+
get includeBlockProps() {
|
|
4106
|
+
return componentRefProps.value.includeBlockProps;
|
|
4107
|
+
},
|
|
4108
|
+
get isInteractive() {
|
|
4109
|
+
return componentRefProps.value.isInteractive;
|
|
4110
|
+
},
|
|
4111
|
+
[_IMMUTABLE]: {
|
|
4112
|
+
blockChildren: _fnSignal((p0) => p0.value.blockChildren, [
|
|
4113
|
+
componentRefProps
|
|
4114
|
+
], "p0.value.blockChildren"),
|
|
4115
|
+
builderBlock: _fnSignal((p0) => p0.value.builderBlock, [
|
|
4116
|
+
componentRefProps
|
|
4117
|
+
], "p0.value.builderBlock"),
|
|
4118
|
+
componentOptions: _fnSignal((p0) => p0.value.componentOptions, [
|
|
4119
|
+
componentRefProps
|
|
4120
|
+
], "p0.value.componentOptions"),
|
|
4121
|
+
componentRef: _fnSignal((p0) => p0.value.componentRef, [
|
|
4122
|
+
componentRefProps
|
|
4123
|
+
], "p0.value.componentRef"),
|
|
4124
|
+
context: _fnSignal((p0) => p0.value.context, [
|
|
4125
|
+
componentRefProps
|
|
4126
|
+
], "p0.value.context"),
|
|
4127
|
+
includeBlockProps: _fnSignal((p0) => p0.value.includeBlockProps, [
|
|
4128
|
+
componentRefProps
|
|
4129
|
+
], "p0.value.includeBlockProps"),
|
|
4130
|
+
isInteractive: _fnSignal((p0) => p0.value.isInteractive, [
|
|
4131
|
+
componentRefProps
|
|
4132
|
+
], "p0.value.isInteractive"),
|
|
4133
|
+
registeredComponents: _fnSignal((p0) => p0.value.registeredComponents, [
|
|
4134
|
+
componentRefProps
|
|
4135
|
+
], "p0.value.registeredComponents")
|
|
4136
|
+
}
|
|
4137
|
+
}, 3, "jN_2"),
|
|
4138
|
+
(childrenWithoutParentComponent.value || []).map((child) => {
|
|
4139
|
+
return /* @__PURE__ */ _jsxC(Block, {
|
|
4140
|
+
block: child,
|
|
4141
|
+
get context() {
|
|
4142
|
+
return state.childrenContext;
|
|
4143
|
+
},
|
|
4144
|
+
get registeredComponents() {
|
|
4145
|
+
return props.registeredComponents;
|
|
4146
|
+
},
|
|
4147
|
+
[_IMMUTABLE]: {
|
|
4148
|
+
context: _fnSignal((p0) => p0.childrenContext, [
|
|
4149
|
+
state
|
|
4150
|
+
], "p0.childrenContext"),
|
|
4151
|
+
registeredComponents: _fnSignal((p0) => p0.registeredComponents, [
|
|
4152
|
+
props
|
|
4153
|
+
], "p0.registeredComponents")
|
|
4154
|
+
}
|
|
4155
|
+
}, 3, child.id);
|
|
4156
|
+
})
|
|
4157
|
+
],
|
|
4158
|
+
hasChildren: true,
|
|
4159
|
+
[_IMMUTABLE]: {
|
|
4160
|
+
Wrapper: _fnSignal((p0) => p0.value, [
|
|
4161
|
+
Tag
|
|
4162
|
+
], "p0.value"),
|
|
4163
|
+
block: _fnSignal((p0) => p0.value, [
|
|
4164
|
+
processedBlock
|
|
4165
|
+
], "p0.value"),
|
|
4166
|
+
context: _fnSignal((p0) => p0.context, [
|
|
4167
|
+
props
|
|
4168
|
+
], "p0.context"),
|
|
4169
|
+
hasChildren: _IMMUTABLE
|
|
4170
|
+
}
|
|
4171
|
+
}, 1, "jN_3") : null
|
|
4172
|
+
]
|
|
4173
|
+
}, 1, "jN_4") : /* @__PURE__ */ _jsxC(ComponentRef, {
|
|
4174
|
+
get componentRef() {
|
|
4175
|
+
return componentRefProps.value.componentRef;
|
|
4176
|
+
},
|
|
4177
|
+
get componentOptions() {
|
|
4178
|
+
return componentRefProps.value.componentOptions;
|
|
4179
|
+
},
|
|
4180
|
+
get blockChildren() {
|
|
4181
|
+
return componentRefProps.value.blockChildren;
|
|
4182
|
+
},
|
|
4183
|
+
get context() {
|
|
4184
|
+
return componentRefProps.value.context;
|
|
4185
|
+
},
|
|
4186
|
+
get registeredComponents() {
|
|
4187
|
+
return componentRefProps.value.registeredComponents;
|
|
4188
|
+
},
|
|
4189
|
+
get builderBlock() {
|
|
4190
|
+
return componentRefProps.value.builderBlock;
|
|
4191
|
+
},
|
|
4192
|
+
get includeBlockProps() {
|
|
4193
|
+
return componentRefProps.value.includeBlockProps;
|
|
4194
|
+
},
|
|
4195
|
+
get isInteractive() {
|
|
4196
|
+
return componentRefProps.value.isInteractive;
|
|
4197
|
+
},
|
|
4169
4198
|
[_IMMUTABLE]: {
|
|
4170
|
-
|
|
4171
|
-
|
|
4172
|
-
], "p0.value"),
|
|
4173
|
-
|
|
4174
|
-
|
|
4175
|
-
], "p0.value"),
|
|
4176
|
-
|
|
4177
|
-
|
|
4178
|
-
], "p0.
|
|
4179
|
-
|
|
4199
|
+
blockChildren: _fnSignal((p0) => p0.value.blockChildren, [
|
|
4200
|
+
componentRefProps
|
|
4201
|
+
], "p0.value.blockChildren"),
|
|
4202
|
+
builderBlock: _fnSignal((p0) => p0.value.builderBlock, [
|
|
4203
|
+
componentRefProps
|
|
4204
|
+
], "p0.value.builderBlock"),
|
|
4205
|
+
componentOptions: _fnSignal((p0) => p0.value.componentOptions, [
|
|
4206
|
+
componentRefProps
|
|
4207
|
+
], "p0.value.componentOptions"),
|
|
4208
|
+
componentRef: _fnSignal((p0) => p0.value.componentRef, [
|
|
4209
|
+
componentRefProps
|
|
4210
|
+
], "p0.value.componentRef"),
|
|
4211
|
+
context: _fnSignal((p0) => p0.value.context, [
|
|
4212
|
+
componentRefProps
|
|
4213
|
+
], "p0.value.context"),
|
|
4214
|
+
includeBlockProps: _fnSignal((p0) => p0.value.includeBlockProps, [
|
|
4215
|
+
componentRefProps
|
|
4216
|
+
], "p0.value.includeBlockProps"),
|
|
4217
|
+
isInteractive: _fnSignal((p0) => p0.value.isInteractive, [
|
|
4218
|
+
componentRefProps
|
|
4219
|
+
], "p0.value.isInteractive"),
|
|
4220
|
+
registeredComponents: _fnSignal((p0) => p0.value.registeredComponents, [
|
|
4221
|
+
componentRefProps
|
|
4222
|
+
], "p0.value.registeredComponents")
|
|
4180
4223
|
}
|
|
4181
|
-
},
|
|
4224
|
+
}, 3, "jN_5")
|
|
4182
4225
|
]
|
|
4183
|
-
}, 1, "
|
|
4184
|
-
|
|
4185
|
-
return componentRefProps.value.componentRef;
|
|
4186
|
-
},
|
|
4187
|
-
get componentOptions() {
|
|
4188
|
-
return componentRefProps.value.componentOptions;
|
|
4189
|
-
},
|
|
4190
|
-
get blockChildren() {
|
|
4191
|
-
return componentRefProps.value.blockChildren;
|
|
4192
|
-
},
|
|
4193
|
-
get context() {
|
|
4194
|
-
return componentRefProps.value.context;
|
|
4195
|
-
},
|
|
4196
|
-
get registeredComponents() {
|
|
4197
|
-
return componentRefProps.value.registeredComponents;
|
|
4198
|
-
},
|
|
4199
|
-
get builderBlock() {
|
|
4200
|
-
return componentRefProps.value.builderBlock;
|
|
4201
|
-
},
|
|
4202
|
-
get includeBlockProps() {
|
|
4203
|
-
return componentRefProps.value.includeBlockProps;
|
|
4204
|
-
},
|
|
4205
|
-
get isInteractive() {
|
|
4206
|
-
return componentRefProps.value.isInteractive;
|
|
4207
|
-
},
|
|
4208
|
-
[_IMMUTABLE]: {
|
|
4209
|
-
blockChildren: _fnSignal((p0) => p0.value.blockChildren, [
|
|
4210
|
-
componentRefProps
|
|
4211
|
-
], "p0.value.blockChildren"),
|
|
4212
|
-
builderBlock: _fnSignal((p0) => p0.value.builderBlock, [
|
|
4213
|
-
componentRefProps
|
|
4214
|
-
], "p0.value.builderBlock"),
|
|
4215
|
-
componentOptions: _fnSignal((p0) => p0.value.componentOptions, [
|
|
4216
|
-
componentRefProps
|
|
4217
|
-
], "p0.value.componentOptions"),
|
|
4218
|
-
componentRef: _fnSignal((p0) => p0.value.componentRef, [
|
|
4219
|
-
componentRefProps
|
|
4220
|
-
], "p0.value.componentRef"),
|
|
4221
|
-
context: _fnSignal((p0) => p0.value.context, [
|
|
4222
|
-
componentRefProps
|
|
4223
|
-
], "p0.value.context"),
|
|
4224
|
-
includeBlockProps: _fnSignal((p0) => p0.value.includeBlockProps, [
|
|
4225
|
-
componentRefProps
|
|
4226
|
-
], "p0.value.includeBlockProps"),
|
|
4227
|
-
isInteractive: _fnSignal((p0) => p0.value.isInteractive, [
|
|
4228
|
-
componentRefProps
|
|
4229
|
-
], "p0.value.isInteractive"),
|
|
4230
|
-
registeredComponents: _fnSignal((p0) => p0.value.registeredComponents, [
|
|
4231
|
-
componentRefProps
|
|
4232
|
-
], "p0.value.registeredComponents")
|
|
4233
|
-
}
|
|
4234
|
-
}, 3, "jN_4") : null
|
|
4235
|
-
}, 1, "jN_5");
|
|
4226
|
+
}, 1, "jN_6") : null
|
|
4227
|
+
}, 1, "jN_7");
|
|
4236
4228
|
}, "Block_component_nnPv0RY0U0k"));
|
|
4237
4229
|
const onClick$1 = function onClick2(props, state) {
|
|
4238
4230
|
var _a, _b;
|
|
@@ -4349,43 +4341,27 @@ const Blocks = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) =
|
|
|
4349
4341
|
var _a;
|
|
4350
4342
|
return (_a = props.context) == null ? void 0 : _a.BlocksWrapperProps;
|
|
4351
4343
|
},
|
|
4352
|
-
children: [
|
|
4353
|
-
|
|
4354
|
-
|
|
4355
|
-
|
|
4356
|
-
|
|
4357
|
-
|
|
4358
|
-
|
|
4359
|
-
|
|
4360
|
-
|
|
4361
|
-
|
|
4362
|
-
|
|
4363
|
-
|
|
4364
|
-
|
|
4365
|
-
|
|
4366
|
-
|
|
4367
|
-
|
|
4368
|
-
|
|
4369
|
-
|
|
4370
|
-
|
|
4371
|
-
|
|
4372
|
-
|
|
4373
|
-
}) : null,
|
|
4374
|
-
props.blocks ? (props.blocks || []).map((block) => {
|
|
4375
|
-
return /* @__PURE__ */ _jsxC(BlockStyles, {
|
|
4376
|
-
block,
|
|
4377
|
-
get context() {
|
|
4378
|
-
return props.context || builderContext$1;
|
|
4379
|
-
},
|
|
4380
|
-
[_IMMUTABLE]: {
|
|
4381
|
-
context: _fnSignal((p0, p1) => p1.context || p0, [
|
|
4382
|
-
builderContext$1,
|
|
4383
|
-
props
|
|
4384
|
-
], "p1.context||p0")
|
|
4385
|
-
}
|
|
4386
|
-
}, 3, "block-style-" + block.id);
|
|
4387
|
-
}) : null
|
|
4388
|
-
],
|
|
4344
|
+
children: props.blocks ? (props.blocks || []).map((block) => {
|
|
4345
|
+
return /* @__PURE__ */ _jsxC(Block, {
|
|
4346
|
+
block,
|
|
4347
|
+
get context() {
|
|
4348
|
+
return props.context || builderContext$1;
|
|
4349
|
+
},
|
|
4350
|
+
get registeredComponents() {
|
|
4351
|
+
return props.registeredComponents || componentsContext.registeredComponents;
|
|
4352
|
+
},
|
|
4353
|
+
[_IMMUTABLE]: {
|
|
4354
|
+
context: _fnSignal((p0, p1) => p1.context || p0, [
|
|
4355
|
+
builderContext$1,
|
|
4356
|
+
props
|
|
4357
|
+
], "p1.context||p0"),
|
|
4358
|
+
registeredComponents: _fnSignal((p0, p1) => p1.registeredComponents || p0.registeredComponents, [
|
|
4359
|
+
componentsContext,
|
|
4360
|
+
props
|
|
4361
|
+
], "p1.registeredComponents||p0.registeredComponents")
|
|
4362
|
+
}
|
|
4363
|
+
}, 3, block.id);
|
|
4364
|
+
}) : null,
|
|
4389
4365
|
[_IMMUTABLE]: {
|
|
4390
4366
|
BlocksWrapper: _fnSignal((p0) => {
|
|
4391
4367
|
var _a;
|
|
@@ -6435,7 +6411,7 @@ const getInteractionPropertiesForEvent = (event) => {
|
|
|
6435
6411
|
}
|
|
6436
6412
|
};
|
|
6437
6413
|
};
|
|
6438
|
-
const SDK_VERSION = "0.11.
|
|
6414
|
+
const SDK_VERSION = "0.11.3";
|
|
6439
6415
|
const registry = {};
|
|
6440
6416
|
function register(type, info) {
|
|
6441
6417
|
let typeList = registry[type];
|