@uzum-tech/ui 2.3.3 → 2.3.4
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 +287 -242
- package/dist/index.mjs +287 -242
- package/dist/index.prod.js +2 -2
- package/dist/index.prod.mjs +2 -2
- package/es/chat/src/Chat.d.ts +363 -3120
- package/es/chat/src/Chat.mjs +13 -240
- package/es/chat/src/ChatListItems.d.ts +4 -4
- package/es/chat/src/ChatMainArea.d.ts +36 -10
- package/es/chat/src/ChatMainArea.mjs +49 -3
- package/es/chat/src/ChatMessages.d.ts +3 -3
- package/es/chat/src/interface.d.ts +2814 -2
- package/es/chat/src/interface.mjs +244 -1
- package/es/components.d.ts +251 -183
- package/es/version.d.ts +1 -1
- package/es/version.mjs +1 -1
- package/lib/chat/src/Chat.d.ts +363 -3120
- package/lib/chat/src/Chat.js +15 -180
- package/lib/chat/src/ChatListItems.d.ts +4 -4
- package/lib/chat/src/ChatMainArea.d.ts +36 -10
- package/lib/chat/src/ChatMainArea.js +48 -3
- package/lib/chat/src/ChatMessages.d.ts +3 -3
- package/lib/chat/src/interface.d.ts +2814 -2
- package/lib/chat/src/interface.js +183 -1
- package/lib/components.d.ts +251 -183
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/web-types.json +9 -2
package/lib/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "2.3.
|
|
1
|
+
declare const _default: "2.3.4";
|
|
2
2
|
export default _default;
|
package/lib/version.js
CHANGED
package/package.json
CHANGED
package/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "@uzum-tech/ui",
|
|
5
|
-
"version": "2.3.
|
|
5
|
+
"version": "2.3.4",
|
|
6
6
|
"js-types-syntax": "typescript",
|
|
7
7
|
"contributions": {
|
|
8
8
|
"html": {
|
|
@@ -2390,6 +2390,13 @@
|
|
|
2390
2390
|
"description": "Currently selected chat ID. Supports v-model.",
|
|
2391
2391
|
"default": "undefined"
|
|
2392
2392
|
},
|
|
2393
|
+
{
|
|
2394
|
+
"name": "input-value",
|
|
2395
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/chat",
|
|
2396
|
+
"type": "string",
|
|
2397
|
+
"description": "Footer input value. Supports v-model — pass it to control the draft from outside (e.g. set a canned reply after sending). Uncontrolled (internal state) when omitted.",
|
|
2398
|
+
"default": "undefined"
|
|
2399
|
+
},
|
|
2393
2400
|
{
|
|
2394
2401
|
"name": "messages",
|
|
2395
2402
|
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/chat",
|
|
@@ -2555,7 +2562,7 @@
|
|
|
2555
2562
|
"name": "footer-input-props",
|
|
2556
2563
|
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/chat",
|
|
2557
2564
|
"type": "Partial<InputProps>",
|
|
2558
|
-
"description": "Props for message input field (placeholder can override locale).",
|
|
2565
|
+
"description": "Props for message input field (placeholder can override locale). `value` is ignored (use `input-value`/`update:input-value` to control the draft) — `onUpdateValue`/`onInput` are called alongside the component's own handling, so you can hook into input changes without breaking them.",
|
|
2559
2566
|
"default": "undefined"
|
|
2560
2567
|
},
|
|
2561
2568
|
{
|