@conecli/cone-render 0.9.1-shop2.27 → 0.9.1-shop2.28
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/api/index.ts +1 -1
- package/dist/assets/icon_blue_info.svg +1 -0
- package/dist/common/const.ts +1 -1
- package/dist/common/index.h5.ts +1 -1
- package/dist/common/index.jd.ts +1 -1
- package/dist/common/index.ts +1 -1
- package/dist/common/pageType.ts +1 -1
- package/dist/common/sgmCustomCode.ts +1 -1
- package/dist/common/token/token.jd.ts +1 -1
- package/dist/components/base/CustomVideo/common.ts +1 -0
- package/dist/components/base/CustomVideo/index.tsx +1 -1
- package/dist/components/base/Price/Base/index.tsx +1 -1
- package/dist/components/base/Price/Double/index.tsx +1 -1
- package/dist/components/debug/DebugLayout/index.module.scss +67 -0
- package/dist/components/debug/DebugLayout/index.tsx +1 -0
- package/dist/components/debug/DebugLayout/utils.ts +1 -0
- package/dist/components/floorItem.tsx +1 -1
- package/dist/components/isv/Floor/index.tsx +1 -1
- package/dist/interface/component.ts +1 -1
- package/dist/interface/service.ts +1 -1
- package/dist/jumpEventReport/index.weapp.ts +1 -1
- package/dist/modules/ContainerFloorList/index.h5.tsx +1 -1
- package/dist/modules/ContainerFloorList/index.tsx +1 -1
- package/dist/service/http/colorSign.ts +1 -1
- package/dist/service/http/h5Http.ts +1 -0
- package/dist/service/http/index.h5.ts +1 -0
- package/dist/service/requestServer.h5.ts +1 -0
- package/dist/utils/h5Utils.ts +1 -1
- package/dist/utils/index.h5.ts +1 -1
- package/dist/utils/index.ts +1 -1
- package/dist/utils/index.weapp.ts +1 -1
- package/dist/utils/utils.ts +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
import React from 'react'
|
|
2
1
|
subMessage?: string
|
|
3
2
|
viewMaxHeight?: string
|
|
4
3
|
noPosition?: boolean
|
|
5
4
|
floorLoadWay?: number
|
|
6
5
|
floorKind?: number
|
|
7
6
|
shopId?: string
|
|
8
7
|
moduleDesignerType?: string
|
|
9
8
|
showCommonFloorHead?: boolean
|
|
10
9
|
borderRadius: number
|
|
11
10
|
borderTopLeftRadius?: number
|
|
12
11
|
borderTopRightRadius?: number
|
|
13
12
|
borderBottomLeftRadius?: number
|
|
14
13
|
borderBottomRightRadius?: number
|
|
15
14
|
marginTop?: number
|
|
16
15
|
marginBottom?: number
|
|
17
16
|
marginLeft?: number
|
|
18
17
|
marginRight?: number
|
|
19
18
|
paddingTop?: number
|
|
20
19
|
paddingBottom?: number
|
|
21
20
|
paddingLeft?: number
|
|
22
21
|
paddingRight?: number
|
|
23
22
|
containerId: string
|
|
24
23
|
background?: string
|
|
25
24
|
containerPosition?: string
|
|
26
25
|
key?: string
|
|
27
26
|
floors: floorItemData[]
|
|
28
27
|
includeUids: string[]
|
|
29
28
|
typeCn: string
|
|
30
29
|
typeCode?: string
|
|
31
30
|
addLuxuryStyle?: boolean
|
|
32
31
|
addLuxuryBackupStyle?: boolean
|
|
33
32
|
renderExtendComponent?: Function
|
|
34
33
|
insertContainerStartComponent?: Function
|
|
35
34
|
floorExtendData?: any
|
|
36
35
|
}
|
|
37
36
|
isRealTimeRender: boolean
|
|
38
37
|
forceRenderTime: number
|
|
39
38
|
luxuryFixed?: boolean
|
|
40
39
|
customErrorIsvFloorModule?: React.ReactElement | undefined
|
|
41
40
|
containerIndex?: number
|
|
42
41
|
containerData?: any
|
|
43
42
|
shopTotalInfo?: any
|
|
44
43
|
selectContainerFn?: Function
|
|
45
44
|
selectContainerId?: string
|
|
46
45
|
placeHolderPreContainerId?: string
|
|
47
46
|
children?: any
|
|
48
47
|
luxuryFixed?: boolean
|
|
49
48
|
style?: {
|
|
50
49
|
[key: string]: any
|
|
51
50
|
};
|
|
52
51
|
layoutLeftRightMargin?: number
|
|
53
52
|
}
|
|
54
53
|
isShowPlaceHolder?: boolean
|
|
55
54
|
showDayToSecondState?: boolean
|
|
56
55
|
onFormSubmit?: Function
|
|
57
56
|
onFormReset?: Function
|
|
58
57
|
isFormDialog?: boolean
|
|
59
58
|
forbiddenBgScrollState?: boolean
|
|
60
59
|
evenList: any[]
|
|
61
60
|
oddList: any[]
|
|
61
|
+
import React from 'react'
|
|
62
62
|
subMessage?: string
|
|
63
63
|
viewMaxHeight?: string
|
|
64
64
|
noPosition?: boolean
|
|
65
65
|
floorLoadWay?: number
|
|
66
66
|
floorKind?: number
|
|
67
67
|
shopId?: string
|
|
68
68
|
moduleDesignerType?: string
|
|
69
69
|
showCommonFloorHead?: boolean
|
|
70
70
|
borderRadius: number
|
|
71
71
|
borderTopLeftRadius?: number
|
|
72
72
|
borderTopRightRadius?: number
|
|
73
73
|
borderBottomLeftRadius?: number
|
|
74
74
|
borderBottomRightRadius?: number
|
|
75
75
|
marginTop?: number
|
|
76
76
|
marginBottom?: number
|
|
77
77
|
marginLeft?: number
|
|
78
78
|
marginRight?: number
|
|
79
79
|
paddingTop?: number
|
|
80
80
|
paddingBottom?: number
|
|
81
81
|
paddingLeft?: number
|
|
82
82
|
paddingRight?: number
|
|
83
83
|
containerId: string
|
|
84
84
|
background?: string
|
|
85
85
|
containerPosition?: string
|
|
86
86
|
key?: string
|
|
87
87
|
floors: floorItemData[]
|
|
88
88
|
includeUids: string[]
|
|
89
89
|
typeCn: string
|
|
90
90
|
typeCode?: string
|
|
91
91
|
addLuxuryStyle?: boolean
|
|
92
92
|
addLuxuryBackupStyle?: boolean
|
|
93
93
|
renderExtendComponent?: Function
|
|
94
94
|
insertContainerStartComponent?: Function
|
|
95
95
|
floorExtendData?: any
|
|
96
96
|
}
|
|
97
97
|
isRealTimeRender: boolean
|
|
98
98
|
forceRenderTime: number
|
|
99
99
|
luxuryFixed?: boolean
|
|
100
100
|
customErrorIsvFloorModule?: React.ReactElement | undefined
|
|
101
101
|
containerIndex?: number
|
|
102
102
|
containerData?: any
|
|
103
103
|
shopTotalInfo?: any
|
|
104
104
|
selectContainerFn?: Function
|
|
105
105
|
selectContainerId?: string
|
|
106
106
|
placeHolderPreContainerId?: string
|
|
107
107
|
children?: any
|
|
108
108
|
luxuryFixed?: boolean
|
|
109
109
|
style?: {
|
|
110
110
|
[key: string]: any
|
|
111
111
|
};
|
|
112
112
|
layoutLeftRightMargin?: number
|
|
113
113
|
}
|
|
114
114
|
isShowPlaceHolder?: boolean
|
|
115
115
|
showDayToSecondState?: boolean
|
|
116
116
|
onFormSubmit?: Function
|
|
117
117
|
onFormReset?: Function
|
|
118
118
|
isFormDialog?: boolean
|
|
119
119
|
forbiddenBgScrollState?: boolean
|
|
120
120
|
evenList: any[]
|
|
121
121
|
oddList: any[]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import { ComponentInterFace } from './component'
|
|
2
1
|
pcCoupon: string
|
|
3
2
|
pcSo: string
|
|
4
3
|
mobileLogin: string
|
|
5
4
|
kpl: string
|
|
6
5
|
jxDomain: string
|
|
7
6
|
isLogin: string
|
|
8
7
|
}
|
|
9
8
|
export interface FloorInfoPageRequestParam {
|
|
10
9
|
snapVersion?: string
|
|
11
10
|
projectId?: string
|
|
12
11
|
pageId?: string
|
|
13
12
|
lastFloorIdInPrePage?: string
|
|
14
13
|
}
|
|
14
|
+
import { ComponentInterFace } from './component'
|
|
15
15
|
pcCoupon: string
|
|
16
16
|
api: string
|
|
17
17
|
hkApi: string
|
|
18
18
|
pcSo: string
|
|
19
19
|
mobileLogin: string
|
|
20
20
|
kpl: string
|
|
21
21
|
jxDomain: string
|
|
22
22
|
hkApiFunc: string
|
|
23
23
|
isLogin: string
|
|
24
24
|
statusCode: number
|
|
25
25
|
resTimeoutState?: boolean
|
|
26
26
|
errMsg?: string
|
|
27
27
|
msg?: string
|
|
28
28
|
data?: any
|
|
29
29
|
status?: string
|
|
30
30
|
requestType?: string
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
export interface FloorInfoPageRequestParam {
|
|
34
34
|
snapVersion?: string
|
|
35
35
|
projectId?: string
|
|
36
36
|
pageId?: string
|
|
37
37
|
lastFloorIdInPrePage?: string
|
|
38
38
|
}
|