sprint-asia-custom-component 0.1.49 → 0.1.50
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
|
@@ -46756,6 +46756,7 @@
|
|
|
46756
46756
|
Column_One_D,
|
|
46757
46757
|
Column_Two_A,
|
|
46758
46758
|
Column_Two_B,
|
|
46759
|
+
Column_Two_C,
|
|
46759
46760
|
Column_Three_A,
|
|
46760
46761
|
Column_Four_A,
|
|
46761
46762
|
Column_Four_B,
|
|
@@ -46818,7 +46819,7 @@
|
|
|
46818
46819
|
className: "font-normal text-neutral300 text-sm"
|
|
46819
46820
|
}, Column_Two_B ? Column_Two_B : "-"), /*#__PURE__*/React__default["default"].createElement("p", {
|
|
46820
46821
|
className: "font-normal text-neutral300 text-sm"
|
|
46821
|
-
},
|
|
46822
|
+
}, Column_Two_C ? Column_Two_C : "-")))), /*#__PURE__*/React__default["default"].createElement("td", {
|
|
46822
46823
|
className: "align-top"
|
|
46823
46824
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
46824
46825
|
className: "flex items-center",
|
package/package.json
CHANGED
|
@@ -9,6 +9,7 @@ const CellModelThree = ({
|
|
|
9
9
|
Column_One_D,
|
|
10
10
|
Column_Two_A,
|
|
11
11
|
Column_Two_B,
|
|
12
|
+
Column_Two_C,
|
|
12
13
|
Column_Three_A,
|
|
13
14
|
Column_Four_A,
|
|
14
15
|
Column_Four_B,
|
|
@@ -69,7 +70,7 @@ const CellModelThree = ({
|
|
|
69
70
|
<div className= "py-3.5 px-4">
|
|
70
71
|
<p className='font-semibold text-black text-sm'>{Column_Two_A ? Column_Two_A : "-"}</p>
|
|
71
72
|
<p className='font-normal text-neutral300 text-sm'>{Column_Two_B ? Column_Two_B : "-"}</p>
|
|
72
|
-
<p className='font-normal text-neutral300 text-sm'>{
|
|
73
|
+
<p className='font-normal text-neutral300 text-sm'>{Column_Two_C ? Column_Two_C : "-"}</p>
|
|
73
74
|
</div>
|
|
74
75
|
</div>
|
|
75
76
|
</td>
|