pb-sxp-ui 1.0.6 → 1.0.8
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.cjs +92 -65
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +92 -66
- package/dist/index.js.map +1 -1
- package/dist/index.min.cjs +3 -3
- package/dist/index.min.cjs.map +1 -1
- package/dist/index.min.js +3 -3
- package/dist/index.min.js.map +1 -1
- package/dist/pb-ui.js +92 -65
- package/dist/pb-ui.js.map +1 -1
- package/dist/pb-ui.min.js +3 -3
- package/dist/pb-ui.min.js.map +1 -1
- package/es/core/hooks/useEventReport.js +35 -39
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/es/materials/sxp/HashTag/settingRender.d.ts +4 -1
- package/es/materials/sxp/HashTag/settingRender.js +7 -3
- package/es/materials/sxp/defaultSetting.d.ts +11 -0
- package/es/materials/sxp/defaultSetting.js +7 -0
- package/es/materials/sxp/popup/AppointForm/material.js +0 -1
- package/es/materials/sxp/popup/AppointForm/settingRender.d.ts +3 -0
- package/es/materials/sxp/popup/AppointForm/settingRender.js +4 -1
- package/es/materials/sxp/popup/CommodityDetail/settingRender.d.ts +4 -1
- package/es/materials/sxp/popup/CommodityDetail/settingRender.js +7 -3
- package/es/materials/sxp/popup/CommodityDetailDiroNew/settingRender.d.ts +4 -1
- package/es/materials/sxp/popup/CommodityDetailDiroNew/settingRender.js +7 -3
- package/es/materials/sxp/template/MultiCommodity/index.js +1 -1
- package/es/materials/sxp/template/MultiCommodityDiro/index.js +1 -1
- package/es/materials/sxp/template/MultiCommodityDiroNew/index.js +1 -1
- package/es/materials/sxp/template/components/EventProvider.js +2 -1
- package/es/materials/sxp/template/components/settingRender.d.ts +6 -0
- package/es/materials/sxp/template/components/settingRender.js +8 -4
- package/lib/core/hooks/useEventReport.js +35 -39
- package/lib/index.d.ts +1 -0
- package/lib/index.js +3 -1
- package/lib/materials/sxp/HashTag/settingRender.d.ts +4 -1
- package/lib/materials/sxp/HashTag/settingRender.js +7 -3
- package/lib/materials/sxp/defaultSetting.d.ts +11 -0
- package/lib/materials/sxp/defaultSetting.js +10 -0
- package/lib/materials/sxp/popup/AppointForm/material.js +0 -1
- package/lib/materials/sxp/popup/AppointForm/settingRender.d.ts +3 -0
- package/lib/materials/sxp/popup/AppointForm/settingRender.js +4 -1
- package/lib/materials/sxp/popup/CommodityDetail/settingRender.d.ts +4 -1
- package/lib/materials/sxp/popup/CommodityDetail/settingRender.js +7 -3
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/settingRender.d.ts +4 -1
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/settingRender.js +7 -3
- package/lib/materials/sxp/template/MultiCommodity/index.js +1 -1
- package/lib/materials/sxp/template/MultiCommodityDiro/index.js +1 -1
- package/lib/materials/sxp/template/MultiCommodityDiroNew/index.js +1 -1
- package/lib/materials/sxp/template/components/EventProvider.js +2 -1
- package/lib/materials/sxp/template/components/settingRender.d.ts +6 -0
- package/lib/materials/sxp/template/components/settingRender.js +8 -4
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
@@ -873,6 +873,14 @@ var interactionRender$8 = [
|
|
873
873
|
}
|
874
874
|
];
|
875
875
|
|
876
|
+
const fontOptions = [
|
877
|
+
{ label: '应用字体', value: 'appFont' },
|
878
|
+
{ label: '黑体', value: '黑体' }
|
879
|
+
];
|
880
|
+
var defaultSetting = {
|
881
|
+
fontOptions
|
882
|
+
};
|
883
|
+
|
876
884
|
/*
|
877
885
|
* @Author: binruan@chatlabs.com
|
878
886
|
* @Date: 2023-07-28 18:29:57
|
@@ -881,6 +889,7 @@ var interactionRender$8 = [
|
|
881
889
|
* @FilePath: \pb-sxp-ui\src\materials\sxp\popup\AppointForm\settingRender.tsx
|
882
890
|
*
|
883
891
|
*/
|
892
|
+
var _a$4;
|
884
893
|
var settingRender$5 = [
|
885
894
|
{
|
886
895
|
type: 'Text',
|
@@ -906,7 +915,8 @@ var settingRender$5 = [
|
|
906
915
|
{
|
907
916
|
type: 'Select',
|
908
917
|
name: ['textStyle', 'fontFamily'],
|
909
|
-
options:
|
918
|
+
options: fontOptions,
|
919
|
+
initialValue: (_a$4 = fontOptions === null || fontOptions === void 0 ? void 0 : fontOptions[0]) === null || _a$4 === void 0 ? void 0 : _a$4.value
|
910
920
|
},
|
911
921
|
{
|
912
922
|
type: 'Number',
|
@@ -1063,6 +1073,14 @@ function createMaterial(component, options) {
|
|
1063
1073
|
return component;
|
1064
1074
|
}
|
1065
1075
|
|
1076
|
+
/*
|
1077
|
+
* @Author: binruan@chatlabs.com
|
1078
|
+
* @Date: 2023-07-28 18:29:57
|
1079
|
+
* @LastEditors: binruan@chatlabs.com
|
1080
|
+
* @LastEditTime: 2024-04-12 17:35:22
|
1081
|
+
* @FilePath: \pb-sxp-ui\src\materials\sxp\popup\AppointForm\material.tsx
|
1082
|
+
*
|
1083
|
+
*/
|
1066
1084
|
const AppointForm = createMaterial(AppointFormComponent, {
|
1067
1085
|
displayName: '预约表单',
|
1068
1086
|
icon: '',
|
@@ -1086,7 +1104,6 @@ const AppointForm = createMaterial(AppointFormComponent, {
|
|
1086
1104
|
textStyle: {
|
1087
1105
|
fontSize: 14,
|
1088
1106
|
color: '#000',
|
1089
|
-
fontFamily: '黑体',
|
1090
1107
|
textAlign: 'center'
|
1091
1108
|
}
|
1092
1109
|
},
|
@@ -1099,10 +1116,11 @@ const AppointForm = createMaterial(AppointFormComponent, {
|
|
1099
1116
|
* @Author: binruan@chatlabs.com
|
1100
1117
|
* @Date: 2024-04-02 18:01:34
|
1101
1118
|
* @LastEditors: binruan@chatlabs.com
|
1102
|
-
* @LastEditTime: 2024-04-
|
1103
|
-
* @FilePath: \pb-sxp-ui\src\materials\sxp\popup\
|
1119
|
+
* @LastEditTime: 2024-04-12 16:46:04
|
1120
|
+
* @FilePath: \pb-sxp-ui\src\materials\sxp\popup\CommodityDetail\settingRender.tsx
|
1104
1121
|
*
|
1105
1122
|
*/
|
1123
|
+
var _a$3, _b$3;
|
1106
1124
|
/*
|
1107
1125
|
* @Author: binruan@chatlabs.com
|
1108
1126
|
* @Date: 2024-03-26 16:50:25
|
@@ -1178,8 +1196,9 @@ var settingRender$4 = [
|
|
1178
1196
|
},
|
1179
1197
|
{
|
1180
1198
|
type: 'Select',
|
1181
|
-
options:
|
1182
|
-
name: ['fontFamily']
|
1199
|
+
options: fontOptions,
|
1200
|
+
name: ['fontFamily'],
|
1201
|
+
initialValue: (_a$3 = fontOptions === null || fontOptions === void 0 ? void 0 : fontOptions[0]) === null || _a$3 === void 0 ? void 0 : _a$3.value
|
1183
1202
|
},
|
1184
1203
|
{
|
1185
1204
|
type: 'Number',
|
@@ -1258,7 +1277,8 @@ var settingRender$4 = [
|
|
1258
1277
|
{
|
1259
1278
|
type: 'Select',
|
1260
1279
|
name: ['props', 'buttonStyle', 'fontFamily'],
|
1261
|
-
options:
|
1280
|
+
options: fontOptions,
|
1281
|
+
initialValue: (_b$3 = fontOptions === null || fontOptions === void 0 ? void 0 : fontOptions[0]) === null || _b$3 === void 0 ? void 0 : _b$3.value
|
1262
1282
|
},
|
1263
1283
|
{
|
1264
1284
|
type: 'Number',
|
@@ -8086,7 +8106,7 @@ SwiperSlide.displayName = 'SwiperSlide';
|
|
8086
8106
|
* @Author: binruan@chatlabs.com
|
8087
8107
|
* @Date: 2024-03-12 10:59:06
|
8088
8108
|
* @LastEditors: binruan@chatlabs.com
|
8089
|
-
* @LastEditTime: 2024-04-
|
8109
|
+
* @LastEditTime: 2024-04-12 15:10:39
|
8090
8110
|
* @FilePath: \pb-sxp-ui\src\core\hooks\useEventReport.ts
|
8091
8111
|
*
|
8092
8112
|
*/
|
@@ -8110,25 +8130,23 @@ function useEventReport() {
|
|
8110
8130
|
else if (data === null || data === void 0 ? void 0 : data.product) {
|
8111
8131
|
fromKName = 'productPage';
|
8112
8132
|
}
|
8113
|
-
|
8114
|
-
|
8115
|
-
|
8116
|
-
|
8117
|
-
|
8118
|
-
|
8119
|
-
|
8120
|
-
|
8121
|
-
|
8122
|
-
|
8123
|
-
|
8124
|
-
|
8125
|
-
|
8126
|
-
|
8127
|
-
|
8128
|
-
|
8129
|
-
|
8130
|
-
});
|
8131
|
-
}
|
8133
|
+
bffEventReport === null || bffEventReport === void 0 ? void 0 : bffEventReport({
|
8134
|
+
eventInfo: {
|
8135
|
+
eventSubject: 'jumpToWeb',
|
8136
|
+
eventDescription: 'User jumped to website',
|
8137
|
+
productId: (_h = product === null || product === void 0 ? void 0 : product.itemId) !== null && _h !== void 0 ? _h : '',
|
8138
|
+
productName: (_j = product === null || product === void 0 ? void 0 : product.title) !== null && _j !== void 0 ? _j : '',
|
8139
|
+
price: (product === null || product === void 0 ? void 0 : product.price) ? (product === null || product === void 0 ? void 0 : product.price) + '' : '0',
|
8140
|
+
productCollection: (_k = product === null || product === void 0 ? void 0 : product.collection) !== null && _k !== void 0 ? _k : '',
|
8141
|
+
fromKName,
|
8142
|
+
fromKPage: location === null || location === void 0 ? void 0 : location.href,
|
8143
|
+
contentTags: (product === null || product === void 0 ? void 0 : product.tags) ? JSON.stringify(product === null || product === void 0 ? void 0 : product.tags) : '',
|
8144
|
+
position: (data === null || data === void 0 ? void 0 : data.position) + '',
|
8145
|
+
relatedContentId: (_m = (_l = data === null || data === void 0 ? void 0 : data.video) === null || _l === void 0 ? void 0 : _l.itemId) !== null && _m !== void 0 ? _m : '',
|
8146
|
+
relatedCtatId: (_o = cta === null || cta === void 0 ? void 0 : cta.itemId) !== null && _o !== void 0 ? _o : '',
|
8147
|
+
traceInfo: (_p = product === null || product === void 0 ? void 0 : product.traceInfo) !== null && _p !== void 0 ? _p : ''
|
8148
|
+
}
|
8149
|
+
});
|
8132
8150
|
}, [bffEventReport, popupDetailData, isFromHashtag]);
|
8133
8151
|
const productView = React.useCallback((data, product, cta, viewTime) => {
|
8134
8152
|
var _a, _b, _c, _d;
|
@@ -8139,26 +8157,24 @@ function useEventReport() {
|
|
8139
8157
|
else if (data === null || data === void 0 ? void 0 : data.product) {
|
8140
8158
|
fromKName = 'productPage';
|
8141
8159
|
}
|
8142
|
-
|
8143
|
-
|
8144
|
-
|
8145
|
-
|
8146
|
-
|
8147
|
-
|
8148
|
-
|
8149
|
-
|
8150
|
-
|
8151
|
-
|
8152
|
-
|
8153
|
-
|
8154
|
-
|
8155
|
-
|
8156
|
-
|
8157
|
-
|
8158
|
-
|
8159
|
-
|
8160
|
-
});
|
8161
|
-
}
|
8160
|
+
bffEventReport === null || bffEventReport === void 0 ? void 0 : bffEventReport({
|
8161
|
+
eventInfo: {
|
8162
|
+
productId: product === null || product === void 0 ? void 0 : product.itemId,
|
8163
|
+
productName: product === null || product === void 0 ? void 0 : product.title,
|
8164
|
+
price: (product === null || product === void 0 ? void 0 : product.price) ? (product === null || product === void 0 ? void 0 : product.price) + '' : '0',
|
8165
|
+
productCollection: product === null || product === void 0 ? void 0 : product.collection,
|
8166
|
+
fromKName,
|
8167
|
+
fromKPage: location === null || location === void 0 ? void 0 : location.href,
|
8168
|
+
contentTags: JSON.stringify(product === null || product === void 0 ? void 0 : product.tags),
|
8169
|
+
position: (data === null || data === void 0 ? void 0 : data.position) + '',
|
8170
|
+
relatedContentId: (_d = data === null || data === void 0 ? void 0 : data.video) === null || _d === void 0 ? void 0 : _d.itemId,
|
8171
|
+
relatedCtatId: cta === null || cta === void 0 ? void 0 : cta.itemId,
|
8172
|
+
traceInfo: product === null || product === void 0 ? void 0 : product.traceInfo,
|
8173
|
+
timeOnSite: Math.floor((new Date() - viewTime) / 1000) + '',
|
8174
|
+
eventSubject: 'productView',
|
8175
|
+
eventDescription: 'User browsed the product'
|
8176
|
+
}
|
8177
|
+
});
|
8162
8178
|
}, [bffEventReport, popupDetailData]);
|
8163
8179
|
return {
|
8164
8180
|
jumpToWeb,
|
@@ -8558,11 +8574,12 @@ const Prompt = createMaterial(PromptComponent, {
|
|
8558
8574
|
sort: 3
|
8559
8575
|
});
|
8560
8576
|
|
8577
|
+
var _a$2, _b$2;
|
8561
8578
|
/*
|
8562
8579
|
* @Author: binruan@chatlabs.com
|
8563
8580
|
* @Date: 2024-03-26 16:50:25
|
8564
8581
|
* @LastEditors: binruan@chatlabs.com
|
8565
|
-
* @LastEditTime: 2024-
|
8582
|
+
* @LastEditTime: 2024-04-12 17:37:19
|
8566
8583
|
* @FilePath: \pb-sxp-ui\src\materials\sxp\popup\CommodityDetailDiroNew\settingRender.tsx
|
8567
8584
|
*
|
8568
8585
|
*/
|
@@ -8637,8 +8654,9 @@ var settingRender$2 = [
|
|
8637
8654
|
},
|
8638
8655
|
{
|
8639
8656
|
type: 'Select',
|
8640
|
-
options:
|
8641
|
-
name: ['fontFamily']
|
8657
|
+
options: fontOptions,
|
8658
|
+
name: ['fontFamily'],
|
8659
|
+
initialValue: (_a$2 = fontOptions === null || fontOptions === void 0 ? void 0 : fontOptions[0]) === null || _a$2 === void 0 ? void 0 : _a$2.value
|
8642
8660
|
},
|
8643
8661
|
{
|
8644
8662
|
type: 'Number',
|
@@ -8717,7 +8735,8 @@ var settingRender$2 = [
|
|
8717
8735
|
{
|
8718
8736
|
type: 'Select',
|
8719
8737
|
name: ['props', 'buttonStyle', 'fontFamily'],
|
8720
|
-
options:
|
8738
|
+
options: fontOptions,
|
8739
|
+
initialValue: (_b$2 = fontOptions === null || fontOptions === void 0 ? void 0 : fontOptions[0]) === null || _b$2 === void 0 ? void 0 : _b$2.value
|
8721
8740
|
},
|
8722
8741
|
{
|
8723
8742
|
type: 'Number',
|
@@ -8906,11 +8925,12 @@ const CommodityDetailDiroNew = createMaterial(CommodityDetailDiroNewComponent, {
|
|
8906
8925
|
sort: 1
|
8907
8926
|
});
|
8908
8927
|
|
8928
|
+
var _a$1, _b$1;
|
8909
8929
|
/*
|
8910
8930
|
* @Author: binruan@chatlabs.com
|
8911
8931
|
* @Date: 2024-03-26 16:50:25
|
8912
8932
|
* @LastEditors: binruan@chatlabs.com
|
8913
|
-
* @LastEditTime: 2024-04-
|
8933
|
+
* @LastEditTime: 2024-04-12 17:38:12
|
8914
8934
|
* @FilePath: \pb-sxp-ui\src\materials\sxp\template\components\settingRender.tsx
|
8915
8935
|
*
|
8916
8936
|
*/
|
@@ -9028,8 +9048,9 @@ var settingRender$1 = [
|
|
9028
9048
|
},
|
9029
9049
|
{
|
9030
9050
|
type: 'Select',
|
9031
|
-
options:
|
9032
|
-
name: ['props', 'ctaTempStyles', 'title', 'fontFamily']
|
9051
|
+
options: fontOptions,
|
9052
|
+
name: ['props', 'ctaTempStyles', 'title', 'fontFamily'],
|
9053
|
+
initialValue: (_a$1 = fontOptions === null || fontOptions === void 0 ? void 0 : fontOptions[0]) === null || _a$1 === void 0 ? void 0 : _a$1.value
|
9033
9054
|
},
|
9034
9055
|
{
|
9035
9056
|
type: 'Number',
|
@@ -9106,8 +9127,9 @@ var settingRender$1 = [
|
|
9106
9127
|
},
|
9107
9128
|
{
|
9108
9129
|
type: 'Select',
|
9109
|
-
options:
|
9110
|
-
name: ['props', 'ctaTempStyles', 'ctaTitle', 'fontFamily']
|
9130
|
+
options: fontOptions,
|
9131
|
+
name: ['props', 'ctaTempStyles', 'ctaTitle', 'fontFamily'],
|
9132
|
+
initialValue: (_b$1 = fontOptions === null || fontOptions === void 0 ? void 0 : fontOptions[0]) === null || _b$1 === void 0 ? void 0 : _b$1.value
|
9111
9133
|
},
|
9112
9134
|
{
|
9113
9135
|
type: 'Number',
|
@@ -9187,7 +9209,7 @@ const EventProvider = (_a) => {
|
|
9187
9209
|
}
|
9188
9210
|
}, [isOnScreen, ref, rec, ctaEvent]);
|
9189
9211
|
const handleClick = lodash.throttle(() => {
|
9190
|
-
var _a, _b, _c, _d, _e, _f, _g, _h;
|
9212
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
9191
9213
|
const item = (_b = (_a = rec === null || rec === void 0 ? void 0 : rec.video) === null || _a === void 0 ? void 0 : _a.bindProduct) !== null && _b !== void 0 ? _b : rec === null || rec === void 0 ? void 0 : rec.video;
|
9192
9214
|
ctaEvent === null || ctaEvent === void 0 ? void 0 : ctaEvent({
|
9193
9215
|
eventSubject: 'clickCta',
|
@@ -9200,6 +9222,7 @@ const EventProvider = (_a) => {
|
|
9200
9222
|
const product = (_f = rec === null || rec === void 0 ? void 0 : rec.video) === null || _f === void 0 ? void 0 : _f.bindProduct;
|
9201
9223
|
jumpToWeb(rec, product, cta);
|
9202
9224
|
window.location.href = (_h = (_g = rec === null || rec === void 0 ? void 0 : rec.video) === null || _g === void 0 ? void 0 : _g.bindProduct) === null || _h === void 0 ? void 0 : _h.link;
|
9225
|
+
window.location.href = window.getJointUtmLink((_k = (_j = rec === null || rec === void 0 ? void 0 : rec.video) === null || _j === void 0 ? void 0 : _j.bindProduct) === null || _k === void 0 ? void 0 : _k.link);
|
9203
9226
|
}
|
9204
9227
|
}
|
9205
9228
|
else {
|
@@ -9685,7 +9708,7 @@ const MultiCommodityDiro$1 = (_a) => {
|
|
9685
9708
|
if (isExternalLink) {
|
9686
9709
|
if (item === null || item === void 0 ? void 0 : item.link) {
|
9687
9710
|
jumpToWeb(recData, item, item.bindCta);
|
9688
|
-
window.location.href = item.link;
|
9711
|
+
window.location.href = window.getJointUtmLink(item.link);
|
9689
9712
|
}
|
9690
9713
|
}
|
9691
9714
|
else {
|
@@ -9798,7 +9821,7 @@ const MultiCommodity$1 = (_a) => {
|
|
9798
9821
|
if (isExternalLink) {
|
9799
9822
|
if (item === null || item === void 0 ? void 0 : item.link) {
|
9800
9823
|
jumpToWeb(recData, item, item.bindCta);
|
9801
|
-
window.location.href = item.link;
|
9824
|
+
window.location.href = window.getJointUtmLink(item.link);
|
9802
9825
|
}
|
9803
9826
|
}
|
9804
9827
|
else {
|
@@ -9910,7 +9933,7 @@ const MultiCommodityDiroNew$1 = (_a) => {
|
|
9910
9933
|
if (isExternalLink) {
|
9911
9934
|
if (item === null || item === void 0 ? void 0 : item.link) {
|
9912
9935
|
jumpToWeb(recData, item, item.bindCta);
|
9913
|
-
window.location.href = item.link;
|
9936
|
+
window.location.href = window.getJointUtmLink(item.link);
|
9914
9937
|
}
|
9915
9938
|
}
|
9916
9939
|
else {
|
@@ -9994,11 +10017,12 @@ const MultiCommodityDiroNew = createMaterial(MultiCommodityDiroNewComponent, {
|
|
9994
10017
|
sort: 4
|
9995
10018
|
});
|
9996
10019
|
|
10020
|
+
var _a, _b;
|
9997
10021
|
/*
|
9998
10022
|
* @Author: binruan@chatlabs.com
|
9999
10023
|
* @Date: 2024-04-07 14:07:12
|
10000
10024
|
* @LastEditors: binruan@chatlabs.com
|
10001
|
-
* @LastEditTime: 2024-04-
|
10025
|
+
* @LastEditTime: 2024-04-12 17:39:45
|
10002
10026
|
* @FilePath: \pb-sxp-ui\src\materials\sxp\HashTag\settingRender.tsx
|
10003
10027
|
*
|
10004
10028
|
*/
|
@@ -10060,8 +10084,9 @@ var settingRender = [
|
|
10060
10084
|
},
|
10061
10085
|
{
|
10062
10086
|
type: 'Select',
|
10063
|
-
options:
|
10064
|
-
name: ['fontFamily']
|
10087
|
+
options: fontOptions,
|
10088
|
+
name: ['fontFamily'],
|
10089
|
+
initialValue: (_a = fontOptions === null || fontOptions === void 0 ? void 0 : fontOptions[0]) === null || _a === void 0 ? void 0 : _a.value
|
10065
10090
|
},
|
10066
10091
|
{
|
10067
10092
|
type: 'Number',
|
@@ -10135,7 +10160,8 @@ var settingRender = [
|
|
10135
10160
|
{
|
10136
10161
|
type: 'Select',
|
10137
10162
|
name: ['props', 'buttonStyle', 'fontFamily'],
|
10138
|
-
options:
|
10163
|
+
options: fontOptions,
|
10164
|
+
initialValue: (_b = fontOptions === null || fontOptions === void 0 ? void 0 : fontOptions[0]) === null || _b === void 0 ? void 0 : _b.value
|
10139
10165
|
},
|
10140
10166
|
{
|
10141
10167
|
type: 'Number',
|
@@ -12972,7 +12998,7 @@ function useEditorDataProvider() {
|
|
12972
12998
|
* @Author : haocanweng@chatlabs.cn
|
12973
12999
|
* @Date : 2023-08-21 16:31:58
|
12974
13000
|
* @LastEditors: binruan@chatlabs.com
|
12975
|
-
* @LastEditTime:
|
13001
|
+
* @LastEditTime: 2024-04-12 16:59:53
|
12976
13002
|
* @FilePath: \pb-sxp-ui\src\index.ts
|
12977
13003
|
*/
|
12978
13004
|
|
@@ -12983,6 +13009,7 @@ exports.SxpPageCore = index;
|
|
12983
13009
|
exports.SxpPageRender = SxpPageRender;
|
12984
13010
|
exports.core = index$1;
|
12985
13011
|
exports.default = Pagebuilder;
|
13012
|
+
exports.defaultSetting = defaultSetting;
|
12986
13013
|
exports.materials = _materials_;
|
12987
13014
|
exports.useEditorDataProvider = useEditorDataProvider;
|
12988
13015
|
//# sourceMappingURL=index.cjs.map
|