@uniai-fe/uds-templates 0.4.4 → 0.4.5
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/styles.css
CHANGED
|
@@ -1748,19 +1748,3 @@
|
|
|
1748
1748
|
display: flex;
|
|
1749
1749
|
flex-direction: column;
|
|
1750
1750
|
}
|
|
1751
|
-
|
|
1752
|
-
.service-inquiry-open-button {
|
|
1753
|
-
width: 40px;
|
|
1754
|
-
height: 40px;
|
|
1755
|
-
border-radius: 20px;
|
|
1756
|
-
border: 1px solid var(--color-border-standard-cool-gray);
|
|
1757
|
-
background: var(--color_100);
|
|
1758
|
-
color: var(--color-label-neutral);
|
|
1759
|
-
font-size: 24px;
|
|
1760
|
-
font-weight: 400;
|
|
1761
|
-
display: flex;
|
|
1762
|
-
align-items: center;
|
|
1763
|
-
justify-content: center;
|
|
1764
|
-
padding: 0;
|
|
1765
|
-
cursor: pointer;
|
|
1766
|
-
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
|
|
3
|
+
import { Button } from "@uniai-fe/uds-primitives";
|
|
3
4
|
import { useOpenServiceInquiry } from "../hooks";
|
|
4
5
|
import type { UseOpenServiceInquiryOptions } from "../types";
|
|
5
6
|
|
|
@@ -31,15 +32,15 @@ const ServiceInquiryOpenButton = ({
|
|
|
31
32
|
});
|
|
32
33
|
|
|
33
34
|
return (
|
|
34
|
-
<
|
|
35
|
-
type="button"
|
|
35
|
+
<Button.Rounded
|
|
36
36
|
className="service-inquiry-open-button"
|
|
37
|
-
|
|
37
|
+
priority="tertiary"
|
|
38
|
+
size="large"
|
|
38
39
|
// 변경 설명: 기본 제공 버튼은 고정 원형 `?` 버튼 사양으로 렌더링한다.
|
|
39
40
|
onClick={openServiceInquiry}
|
|
40
41
|
>
|
|
41
42
|
?
|
|
42
|
-
</
|
|
43
|
+
</Button.Rounded>
|
|
43
44
|
);
|
|
44
45
|
};
|
|
45
46
|
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
.service-inquiry-open-button {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
}
|
|
1
|
+
// .service-inquiry-open-button {
|
|
2
|
+
// // width: 40px;
|
|
3
|
+
// // height: 40px;
|
|
4
|
+
// // border-radius: 20px;
|
|
5
|
+
// // border: 1px solid var(--color-border-standard-cool-gray);
|
|
6
|
+
// // background: var(--color-common-100);
|
|
7
|
+
// // color: var(--color-label-neutral);
|
|
8
|
+
// // font-size: 24px;
|
|
9
|
+
// // font-weight: 400;
|
|
10
|
+
// // display: flex;
|
|
11
|
+
// // align-items: center;
|
|
12
|
+
// // justify-content: center;
|
|
13
|
+
// // padding: 0;
|
|
14
|
+
// // cursor: pointer;
|
|
15
|
+
// }
|