sprint-asia-custom-component 0.1.93 → 0.1.94
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.js
CHANGED
|
@@ -48292,7 +48292,7 @@
|
|
|
48292
48292
|
wordBreak: "break-word"
|
|
48293
48293
|
},
|
|
48294
48294
|
className: "text-neutral5"
|
|
48295
|
-
}, data), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
48295
|
+
}, data === "" ? "-" : data), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
48296
48296
|
className: "flex justify-end"
|
|
48297
48297
|
}, /*#__PURE__*/React__default["default"].createElement("p", {
|
|
48298
48298
|
style: {
|
|
@@ -48484,7 +48484,7 @@
|
|
|
48484
48484
|
style: {
|
|
48485
48485
|
fontSize: "8px"
|
|
48486
48486
|
}
|
|
48487
|
-
}, /*#__PURE__*/React__default["default"].createElement("p", null, data))), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
48487
|
+
}, /*#__PURE__*/React__default["default"].createElement("p", null, data === "" ? "-" : data))), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
48488
48488
|
className: "w-full bg-white absolute bottom-0 p-2 rounded-md-lb rounded-b-xl"
|
|
48489
48489
|
}, /*#__PURE__*/React__default["default"].createElement("div", null, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
48490
48490
|
className: "flex justify-center"
|
|
@@ -48541,7 +48541,7 @@
|
|
|
48541
48541
|
style: {
|
|
48542
48542
|
fontSize: "8px"
|
|
48543
48543
|
}
|
|
48544
|
-
}, /*#__PURE__*/React__default["default"].createElement("p", null, data))), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
48544
|
+
}, /*#__PURE__*/React__default["default"].createElement("p", null, data === "" ? "-" : data))), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
48545
48545
|
className: "w-full bg-white absolute bottom-0 p-2 rounded-md-lb rounded-b-xl"
|
|
48546
48546
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
48547
48547
|
className: "flex justify-between mb-2 items-center"
|
package/package.json
CHANGED
|
@@ -105,7 +105,7 @@ const CustomPhone = ({ mode = "Empty", data }) => {
|
|
|
105
105
|
</div>
|
|
106
106
|
<div className="bg-white py-1 px-2 rounded-md w-32 drop-shadow-2xl">
|
|
107
107
|
<p style={{ fontSize: "8px", wordBreak: "break-word" }} className="text-neutral5">
|
|
108
|
-
{data}
|
|
108
|
+
{data === "" ? "-" : data}
|
|
109
109
|
</p>
|
|
110
110
|
<div className="flex justify-end">
|
|
111
111
|
<p style={{ fontSize: "8px" }} className="text-neutral80">
|
|
@@ -253,7 +253,7 @@ const CustomPhone = ({ mode = "Empty", data }) => {
|
|
|
253
253
|
</div>
|
|
254
254
|
<div className="w-full bg-white px-2">
|
|
255
255
|
<div className="p-4" style={{ fontSize: "8px" }}>
|
|
256
|
-
<p>{data}</p>
|
|
256
|
+
<p>{data === "" ? "-" : data}</p>
|
|
257
257
|
</div>
|
|
258
258
|
</div>
|
|
259
259
|
<div className="w-full bg-white absolute bottom-0 p-2 rounded-md-lb rounded-b-xl">
|
|
@@ -297,7 +297,7 @@ const CustomPhone = ({ mode = "Empty", data }) => {
|
|
|
297
297
|
</div>
|
|
298
298
|
<div className="w-full bg-white px-2 py-4">
|
|
299
299
|
<div className="w-40 bg-neutral30 rounded-lg p-2" style={{ fontSize: "8px" }}>
|
|
300
|
-
<p>{data}</p>
|
|
300
|
+
<p>{data === "" ? "-" : data}</p>
|
|
301
301
|
</div>
|
|
302
302
|
</div>
|
|
303
303
|
<div className="w-full bg-white absolute bottom-0 p-2 rounded-md-lb rounded-b-xl">
|