hanbiro-react16-sdk 1.0.13 → 1.0.15
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/README.md +66 -42
- package/dist/components/ChatAIDraft/SettingPopper.d.ts +2 -0
- package/dist/components/ChatAIDraft/index.d.ts +4 -3
- package/dist/components/CountryFlag/flags/CNFlag.d.ts +3 -0
- package/dist/components/CountryFlag/flags/IDFlag.d.ts +3 -0
- package/dist/components/CountryFlag/flags/KRFlag.d.ts +3 -0
- package/dist/components/CountryFlag/flags/USFlag.d.ts +3 -0
- package/dist/components/CountryFlag/flags/VNFlag.d.ts +3 -0
- package/dist/components/CountryFlag/index.d.ts +7 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/constants/index.d.ts +8 -0
- package/dist/hanbiro-react16-sdk.es.js +2968 -101
- package/dist/hanbiro-react16-sdk.style.css +19 -2
- package/dist/hanbiro-react16-sdk.umd.js +3482 -185
- package/dist/utils/axiosAPI.d.ts +1 -0
- package/package.json +1 -1
- package/dist/components/ChatAIDraft/constants.d.ts +0 -10
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* hanbiro-react16-sdk v1.0.
|
|
3
|
-
* Build Date: 2026-
|
|
2
|
+
* hanbiro-react16-sdk v1.0.15
|
|
3
|
+
* Build Date: 2026-04-02
|
|
4
4
|
*/
|
|
5
5
|
@charset "UTF-8";
|
|
6
6
|
button.icon-button {
|
|
@@ -186,4 +186,21 @@ p {
|
|
|
186
186
|
--border-light: #f0f0f0;
|
|
187
187
|
--border-main: #d9d9d9;
|
|
188
188
|
--border-dark: #a1a1a1;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
select {
|
|
192
|
+
padding: 7px 8px;
|
|
193
|
+
border-radius: 4px;
|
|
194
|
+
border: 1px solid #ccc;
|
|
195
|
+
background: transparent;
|
|
196
|
+
font-size: 14px;
|
|
197
|
+
height: 40px;
|
|
198
|
+
transition: border 0.1s ease-in-out;
|
|
199
|
+
cursor: pointer;
|
|
200
|
+
}
|
|
201
|
+
select:hover {
|
|
202
|
+
border: 1px solid var(--border-dark);
|
|
203
|
+
}
|
|
204
|
+
select:focus-visible {
|
|
205
|
+
outline: none;
|
|
189
206
|
}
|