sprint-asia-custom-component 0.1.22 → 0.1.23

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
@@ -23779,9 +23779,9 @@
23779
23779
  className: "py-1"
23780
23780
  }, /*#__PURE__*/React__default["default"].createElement("p", {
23781
23781
  className: `
23782
- ${textColor == "default" && "text-black"}
23783
- ${textColor == "success" && "text-success500"}
23784
- "font-medium text-medium"`
23782
+ ${textColor == "default" && "text-black font-semibold text-base"}
23783
+ ${textColor == "success" && "text-success500 font-semibold text-base"}
23784
+ `
23785
23785
  }, value)));
23786
23786
  };
23787
23787
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sprint-asia-custom-component",
3
3
  "main": "dist/index.js",
4
- "version": "0.1.22",
4
+ "version": "0.1.23",
5
5
  "private": false,
6
6
  "dependencies": {
7
7
  "@headlessui/react": "^1.7.18",
@@ -10,9 +10,9 @@ const Description = ({
10
10
  {title && <p className="text-sm font-normal text-black mb-1">{title}</p>}
11
11
  <div className='py-1'>
12
12
  <p className={`
13
- ${textColor == "default" && "text-black"}
14
- ${textColor == "success" && "text-success500"}
15
- "font-medium text-medium"`}>{value}</p>
13
+ ${textColor == "default" && "text-black font-semibold text-base"}
14
+ ${textColor == "success" && "text-success500 font-semibold text-base"}
15
+ `}>{value}</p>
16
16
  </div>
17
17
  </div>
18
18
  );