sprint-asia-custom-component 0.1.175 → 0.1.176

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
@@ -29035,7 +29035,7 @@
29035
29035
  as: React.Fragment
29036
29036
  }, /*#__PURE__*/React__default["default"].createElement(_t, {
29037
29037
  as: "div",
29038
- className: "relative z-10",
29038
+ className: "relative z-[1001]",
29039
29039
  initialFocus: cancelButtonRef,
29040
29040
  onClose: () => props.onClose(),
29041
29041
  static: true
@@ -29099,7 +29099,7 @@
29099
29099
  as: React.Fragment
29100
29100
  }, /*#__PURE__*/React__default["default"].createElement(_t, {
29101
29101
  as: "div",
29102
- className: "relative z-10",
29102
+ className: "relative z-[1001]",
29103
29103
  initialFocus: cancelButtonRef,
29104
29104
  onClose: () => props.onClose(),
29105
29105
  static: true
@@ -44475,7 +44475,7 @@
44475
44475
  as: React.Fragment
44476
44476
  }, /*#__PURE__*/React__default["default"].createElement(_t, {
44477
44477
  as: "div",
44478
- className: "fixed inset-0 overflow-y-auto z-50",
44478
+ className: "fixed inset-0 overflow-y-auto z-[1001]",
44479
44479
  initialFocus: cancelButtonRef,
44480
44480
  onClose: () => {},
44481
44481
  static: false
@@ -45174,7 +45174,7 @@
45174
45174
 
45175
45175
  const CardInfo = ({
45176
45176
  title = "Title",
45177
- value = 1000
45177
+ value = 0
45178
45178
  }) => {
45179
45179
  return /*#__PURE__*/React__default["default"].createElement("div", {
45180
45180
  className: "w-full flex items-center h-28 bg-white shadow border border-neutral30 rounded-lg"
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.175",
4
+ "version": "0.1.176",
5
5
  "private": false,
6
6
  "dependencies": {
7
7
  "@headlessui/react": "^1.7.18",
@@ -2,7 +2,7 @@ import React from 'react'
2
2
 
3
3
  const CardInfo = ({
4
4
  title = "Title",
5
- value = 1000
5
+ value = 0
6
6
  }) => {
7
7
  return (
8
8
  <div className="w-full flex items-center h-28 bg-white shadow border border-neutral30 rounded-lg">
@@ -14,7 +14,7 @@ const ModalLoading = (props) => {
14
14
  <Transition.Root show={props.isOpen} as={Fragment}>
15
15
  <Dialog
16
16
  as="div"
17
- className="relative z-10"
17
+ className="relative z-[1001]"
18
18
  initialFocus={cancelButtonRef}
19
19
  onClose={() => props.onClose()}
20
20
  static={true}
@@ -15,7 +15,7 @@ const ModalResult = (props) => {
15
15
  <Transition.Root show={props.isOpen} as={Fragment}>
16
16
  <Dialog
17
17
  as="div"
18
- className="relative z-10"
18
+ className="relative z-[1001]"
19
19
  initialFocus={cancelButtonRef}
20
20
  onClose={() => props.onClose()}
21
21
  static={true}
@@ -48,7 +48,7 @@ const ModalState = ({
48
48
  <Transition.Root show={isOpen} as={Fragment}>
49
49
  <Dialog
50
50
  as="div"
51
- className="fixed inset-0 overflow-y-auto z-50"
51
+ className="fixed inset-0 overflow-y-auto z-[1001]"
52
52
  initialFocus={cancelButtonRef}
53
53
  onClose={() => {}}
54
54
  static={false}