@gem-sdk/pages 1.17.0 → 1.17.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/cjs/components/image-to-layout/AddSectionImageToLayout.js +6 -16
- package/dist/cjs/components/image-to-layout/ImageToLayoutInput.js +6 -14
- package/dist/esm/components/image-to-layout/AddSectionImageToLayout.js +6 -16
- package/dist/esm/components/image-to-layout/ImageToLayoutInput.js +6 -14
- package/package.json +1 -1
|
@@ -83,10 +83,8 @@ const AddSectionImageToLayout = ({ editorImageToLayout })=>{
|
|
|
83
83
|
children: "Add section"
|
|
84
84
|
}),
|
|
85
85
|
ACTIONS_DATA.map((action, index)=>{
|
|
86
|
-
|
|
87
|
-
return /*#__PURE__*/ jsxRuntime.jsxs(CustomTag, {
|
|
86
|
+
return /*#__PURE__*/ jsxRuntime.jsxs("div", {
|
|
88
87
|
className: `relative mx-1 h-[60px] w-[172px] cursor-pointer flex-col items-center justify-center rounded-[3px] bg-[#F4F4F4] hover:bg-black/10 ${isInput ? 'hidden' : 'flex'}`,
|
|
89
|
-
htmlFor: "gp-add-section-bottom-from-select-image",
|
|
90
88
|
id: action.id,
|
|
91
89
|
onClick: ()=>onClick(index),
|
|
92
90
|
"aria-hidden": true,
|
|
@@ -133,20 +131,12 @@ const AddSectionImageToLayout = ({ editorImageToLayout })=>{
|
|
|
133
131
|
})
|
|
134
132
|
]
|
|
135
133
|
}),
|
|
136
|
-
/*#__PURE__*/ jsxRuntime.
|
|
134
|
+
/*#__PURE__*/ jsxRuntime.jsx("div", {
|
|
137
135
|
className: "flex items-center ",
|
|
138
|
-
children:
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
}),
|
|
143
|
-
action.id === 'gps-add-section-bottom-from-image' && /*#__PURE__*/ jsxRuntime.jsx("input", {
|
|
144
|
-
id: "gp-add-section-bottom-from-select-image",
|
|
145
|
-
className: "rounded-medium z-2 absolute left-0 top-0 hidden h-full w-full cursor-pointer opacity-0 outline-none",
|
|
146
|
-
type: "file",
|
|
147
|
-
accept: ".png, .jpg, .jpeg"
|
|
148
|
-
})
|
|
149
|
-
]
|
|
136
|
+
children: /*#__PURE__*/ jsxRuntime.jsx("span", {
|
|
137
|
+
className: "mr-[3px] text-center text-[12px] font-normal text-[#676767]",
|
|
138
|
+
children: action.content
|
|
139
|
+
})
|
|
150
140
|
})
|
|
151
141
|
]
|
|
152
142
|
}, action.id);
|
|
@@ -178,21 +178,13 @@ const ImageToLayoutInput = ({ totalSection })=>{
|
|
|
178
178
|
children: "Please use an valid URL to generate"
|
|
179
179
|
})
|
|
180
180
|
}),
|
|
181
|
-
/*#__PURE__*/ jsxRuntime.
|
|
181
|
+
/*#__PURE__*/ jsxRuntime.jsx("div", {
|
|
182
182
|
className: "mt-4 flex items-center text-xs",
|
|
183
|
-
children:
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
}),
|
|
189
|
-
/*#__PURE__*/ jsxRuntime.jsx("input", {
|
|
190
|
-
id: "gp-img-to-layout-gallery-btn",
|
|
191
|
-
className: "rounded-medium z-2 absolute hidden h-full w-full cursor-pointer opacity-0 outline-none",
|
|
192
|
-
type: "file",
|
|
193
|
-
accept: ".png, .jpg, .jpeg"
|
|
194
|
-
})
|
|
195
|
-
]
|
|
183
|
+
children: /*#__PURE__*/ jsxRuntime.jsx("div", {
|
|
184
|
+
id: "gp-img-to-layout-gallery-btn",
|
|
185
|
+
className: " relative mx-[5px] cursor-pointer font-medium text-[#3C67FF]",
|
|
186
|
+
children: "Upload your designed image"
|
|
187
|
+
})
|
|
196
188
|
})
|
|
197
189
|
]
|
|
198
190
|
});
|
|
@@ -79,10 +79,8 @@ const AddSectionImageToLayout = ({ editorImageToLayout })=>{
|
|
|
79
79
|
children: "Add section"
|
|
80
80
|
}),
|
|
81
81
|
ACTIONS_DATA.map((action, index)=>{
|
|
82
|
-
|
|
83
|
-
return /*#__PURE__*/ jsxs(CustomTag, {
|
|
82
|
+
return /*#__PURE__*/ jsxs("div", {
|
|
84
83
|
className: `relative mx-1 h-[60px] w-[172px] cursor-pointer flex-col items-center justify-center rounded-[3px] bg-[#F4F4F4] hover:bg-black/10 ${isInput ? 'hidden' : 'flex'}`,
|
|
85
|
-
htmlFor: "gp-add-section-bottom-from-select-image",
|
|
86
84
|
id: action.id,
|
|
87
85
|
onClick: ()=>onClick(index),
|
|
88
86
|
"aria-hidden": true,
|
|
@@ -129,20 +127,12 @@ const AddSectionImageToLayout = ({ editorImageToLayout })=>{
|
|
|
129
127
|
})
|
|
130
128
|
]
|
|
131
129
|
}),
|
|
132
|
-
/*#__PURE__*/
|
|
130
|
+
/*#__PURE__*/ jsx("div", {
|
|
133
131
|
className: "flex items-center ",
|
|
134
|
-
children:
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
}),
|
|
139
|
-
action.id === 'gps-add-section-bottom-from-image' && /*#__PURE__*/ jsx("input", {
|
|
140
|
-
id: "gp-add-section-bottom-from-select-image",
|
|
141
|
-
className: "rounded-medium z-2 absolute left-0 top-0 hidden h-full w-full cursor-pointer opacity-0 outline-none",
|
|
142
|
-
type: "file",
|
|
143
|
-
accept: ".png, .jpg, .jpeg"
|
|
144
|
-
})
|
|
145
|
-
]
|
|
132
|
+
children: /*#__PURE__*/ jsx("span", {
|
|
133
|
+
className: "mr-[3px] text-center text-[12px] font-normal text-[#676767]",
|
|
134
|
+
children: action.content
|
|
135
|
+
})
|
|
146
136
|
})
|
|
147
137
|
]
|
|
148
138
|
}, action.id);
|
|
@@ -176,21 +176,13 @@ const ImageToLayoutInput = ({ totalSection })=>{
|
|
|
176
176
|
children: "Please use an valid URL to generate"
|
|
177
177
|
})
|
|
178
178
|
}),
|
|
179
|
-
/*#__PURE__*/
|
|
179
|
+
/*#__PURE__*/ jsx("div", {
|
|
180
180
|
className: "mt-4 flex items-center text-xs",
|
|
181
|
-
children:
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
}),
|
|
187
|
-
/*#__PURE__*/ jsx("input", {
|
|
188
|
-
id: "gp-img-to-layout-gallery-btn",
|
|
189
|
-
className: "rounded-medium z-2 absolute hidden h-full w-full cursor-pointer opacity-0 outline-none",
|
|
190
|
-
type: "file",
|
|
191
|
-
accept: ".png, .jpg, .jpeg"
|
|
192
|
-
})
|
|
193
|
-
]
|
|
181
|
+
children: /*#__PURE__*/ jsx("div", {
|
|
182
|
+
id: "gp-img-to-layout-gallery-btn",
|
|
183
|
+
className: " relative mx-[5px] cursor-pointer font-medium text-[#3C67FF]",
|
|
184
|
+
children: "Upload your designed image"
|
|
185
|
+
})
|
|
194
186
|
})
|
|
195
187
|
]
|
|
196
188
|
});
|