hanbiro-react16-sdk 1.0.21 → 1.0.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/components/ChatAIDraft/EmptyState.d.ts +6 -0
- package/dist/components/ChatAIDraft/EmptyState.js +220 -0
- package/dist/components/ChatAIDraft/List.js +55 -18
- package/dist/components/ChatAIDraft/SettingPopper.d.ts +5 -4
- package/dist/components/ChatAIDraft/SettingPopper.js +235 -79
- package/dist/components/ChatAIDraft/constants.d.ts +4 -0
- package/dist/components/ChatAIDraft/constants.js +18 -0
- package/dist/components/ChatAIDraft/index.d.ts +5 -8
- package/dist/components/ChatAIDraft/index.js +80 -48
- package/dist/components/index.d.ts +1 -1
- package/dist/hanbiro-react16-sdk.style.css +39 -2
- package/dist/hanbiro-react16-sdk.umd.js +7213 -3
- package/dist/index.js +2 -2
- package/dist/node_modules/prop-types/index.js +1 -2
- package/dist/node_modules/react-feather/dist/icons/align-justify.js +86 -0
- package/dist/node_modules/react-feather/dist/icons/{send.js → arrow-up.js} +10 -10
- package/dist/node_modules/react-feather/dist/icons/award.js +72 -0
- package/dist/node_modules/react-feather/dist/icons/check.js +68 -0
- package/dist/node_modules/react-feather/dist/icons/chevron-down.js +68 -0
- package/dist/node_modules/react-feather/dist/icons/compass.js +72 -0
- package/dist/node_modules/react-feather/dist/icons/file-text.js +82 -0
- package/dist/node_modules/react-feather/dist/icons/frown.js +82 -0
- package/dist/node_modules/react-feather/dist/icons/heart.js +68 -0
- package/dist/node_modules/react-feather/dist/icons/message-circle.js +68 -0
- package/dist/node_modules/react-feather/dist/icons/message-square.js +68 -0
- package/dist/node_modules/react-feather/dist/icons/scissors.js +89 -0
- package/dist/node_modules/react-feather/dist/icons/smile.js +82 -0
- package/dist/node_modules/react-feather/dist/icons/thumbs-up.js +68 -0
- package/dist/node_modules/react-feather/dist/icons/zap.js +68 -0
- package/package.json +1 -1
- package/dist/components/TinyMceEditor/index.js +0 -181
- package/dist/components/TinyMceEditor/scrollStyle.js +0 -40
- package/dist/components/TinyMceEditor/useEditor.js +0 -120
- package/dist/node_modules/@tinymce/tinymce-react/lib/es2015/main/ts/ScriptLoader2.js +0 -148
- package/dist/node_modules/@tinymce/tinymce-react/lib/es2015/main/ts/TinyMCE.js +0 -7
- package/dist/node_modules/@tinymce/tinymce-react/lib/es2015/main/ts/Utils.js +0 -103
- package/dist/node_modules/@tinymce/tinymce-react/lib/es2015/main/ts/components/Editor.js +0 -353
- package/dist/node_modules/@tinymce/tinymce-react/lib/es2015/main/ts/components/EditorPropTypes.js +0 -102
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* hanbiro-react16-sdk v1.0.
|
|
3
|
-
* Build Date: 2026-
|
|
2
|
+
* hanbiro-react16-sdk v1.0.23
|
|
3
|
+
* Build Date: 2026-05-21
|
|
4
4
|
*/
|
|
5
5
|
@charset "UTF-8";
|
|
6
6
|
button.icon-button {
|
|
@@ -163,6 +163,43 @@ button.icon-button.large svg {
|
|
|
163
163
|
border-right: 6px solid var(--grey-darker);
|
|
164
164
|
}
|
|
165
165
|
|
|
166
|
+
.chat-ai-lang-option {
|
|
167
|
+
background: transparent;
|
|
168
|
+
}
|
|
169
|
+
.chat-ai-lang-option:hover {
|
|
170
|
+
background: var(--background-softGrey);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.chat-ai-dots {
|
|
174
|
+
display: inline-flex;
|
|
175
|
+
align-items: center;
|
|
176
|
+
gap: 3px;
|
|
177
|
+
}
|
|
178
|
+
.chat-ai-dots > span {
|
|
179
|
+
width: 5px;
|
|
180
|
+
height: 5px;
|
|
181
|
+
border-radius: 50%;
|
|
182
|
+
background: var(--grey-main);
|
|
183
|
+
display: inline-block;
|
|
184
|
+
animation: chat-ai-dot-bounce 1.2s infinite ease-in-out both;
|
|
185
|
+
}
|
|
186
|
+
.chat-ai-dots > span:nth-child(1) {
|
|
187
|
+
animation-delay: -0.32s;
|
|
188
|
+
}
|
|
189
|
+
.chat-ai-dots > span:nth-child(2) {
|
|
190
|
+
animation-delay: -0.16s;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
@keyframes chat-ai-dot-bounce {
|
|
194
|
+
0%, 80%, 100% {
|
|
195
|
+
transform: scale(0.6);
|
|
196
|
+
opacity: 0.4;
|
|
197
|
+
}
|
|
198
|
+
40% {
|
|
199
|
+
transform: scale(1);
|
|
200
|
+
opacity: 1;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
166
203
|
p {
|
|
167
204
|
font-size: 13px;
|
|
168
205
|
}
|