sprint-asia-custom-component 0.1.62 → 0.1.63
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 +3 -3
- package/package.json +1 -1
- package/src/components/footer/index.js +3 -3
package/dist/index.js
CHANGED
|
@@ -47853,15 +47853,15 @@
|
|
|
47853
47853
|
}, modeLeftButton == "primary" && /*#__PURE__*/React__default["default"].createElement(PrimaryButton, {
|
|
47854
47854
|
title: titleLeftButton,
|
|
47855
47855
|
onClick: onClickLeftButton,
|
|
47856
|
-
isActive:
|
|
47856
|
+
isActive: true
|
|
47857
47857
|
}), modeLeftButton == "danger" && /*#__PURE__*/React__default["default"].createElement(DangerButton, {
|
|
47858
47858
|
title: titleLeftButton,
|
|
47859
47859
|
onClick: onClickLeftButton,
|
|
47860
|
-
isActive:
|
|
47860
|
+
isActive: true
|
|
47861
47861
|
}), modeLeftButton == "outline" && /*#__PURE__*/React__default["default"].createElement(OutlineButton, {
|
|
47862
47862
|
title: titleLeftButton,
|
|
47863
47863
|
onClick: onClickLeftButton,
|
|
47864
|
-
isActive:
|
|
47864
|
+
isActive: true
|
|
47865
47865
|
})), isActiveRightButton && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
47866
47866
|
className: "m-1"
|
|
47867
47867
|
}, modeRightButton == "primary" && /*#__PURE__*/React__default["default"].createElement(PrimaryButton, {
|
package/package.json
CHANGED
|
@@ -25,7 +25,7 @@ const Footer = ({
|
|
|
25
25
|
<PrimaryButton
|
|
26
26
|
title={titleLeftButton}
|
|
27
27
|
onClick={onClickLeftButton}
|
|
28
|
-
isActive={
|
|
28
|
+
isActive={true}
|
|
29
29
|
/>
|
|
30
30
|
}
|
|
31
31
|
{
|
|
@@ -33,7 +33,7 @@ const Footer = ({
|
|
|
33
33
|
<DangerButton
|
|
34
34
|
title={titleLeftButton}
|
|
35
35
|
onClick={onClickLeftButton}
|
|
36
|
-
isActive={
|
|
36
|
+
isActive={true}
|
|
37
37
|
/>
|
|
38
38
|
}
|
|
39
39
|
{
|
|
@@ -41,7 +41,7 @@ const Footer = ({
|
|
|
41
41
|
<OutlineButton
|
|
42
42
|
title={titleLeftButton}
|
|
43
43
|
onClick={onClickLeftButton}
|
|
44
|
-
isActive={
|
|
44
|
+
isActive={true}
|
|
45
45
|
/>
|
|
46
46
|
}
|
|
47
47
|
</div>
|