@uzum-tech/ui 1.10.1 → 1.11.1
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 +1248 -263
- package/dist/index.prod.js +3 -3
- package/es/_internal/index.d.ts +2 -0
- package/es/_internal/index.js +1 -0
- package/es/_internal/safe-top-scrollbar/index.d.ts +2 -0
- package/es/_internal/safe-top-scrollbar/index.js +1 -0
- package/es/_internal/safe-top-scrollbar/src/SafeTopScrollbar.d.ts +356 -0
- package/es/_internal/safe-top-scrollbar/src/SafeTopScrollbar.js +708 -0
- package/es/_internal/safe-top-scrollbar/src/styles/index.cssr.d.ts +2 -0
- package/es/_internal/safe-top-scrollbar/src/styles/index.cssr.js +80 -0
- package/es/_internal/safe-top-scrollbar/src/styles/rtl.cssr.d.ts +2 -0
- package/es/_internal/safe-top-scrollbar/src/styles/rtl.cssr.js +10 -0
- package/es/_internal/safe-top-scrollbar/styles/common.d.ts +7 -0
- package/es/_internal/safe-top-scrollbar/styles/common.js +7 -0
- package/es/_internal/safe-top-scrollbar/styles/dark.d.ts +3 -0
- package/es/_internal/safe-top-scrollbar/styles/dark.js +8 -0
- package/es/_internal/safe-top-scrollbar/styles/index.d.ts +4 -0
- package/es/_internal/safe-top-scrollbar/styles/index.js +3 -0
- package/es/_internal/safe-top-scrollbar/styles/light.d.ts +18 -0
- package/es/_internal/safe-top-scrollbar/styles/light.js +12 -0
- package/es/_internal/safe-top-scrollbar/styles/rtl.d.ts +3 -0
- package/es/_internal/safe-top-scrollbar/styles/rtl.js +6 -0
- package/es/chat/src/Chat.d.ts +14 -1
- package/es/chat/src/Chat.js +5 -0
- package/es/chat/src/ChatParts/ChatAttachment.js +31 -3
- package/es/chat/src/ChatParts/MainArea.js +37 -41
- package/es/chat/src/interface.d.ts +6 -2
- package/es/components.d.ts +1 -0
- package/es/components.js +1 -0
- package/es/config-provider/src/internal-interface.d.ts +2 -0
- package/es/drawer/src/Drawer.d.ts +18 -0
- package/es/drawer/src/Drawer.js +28 -26
- package/es/drawer/src/DrawerBodyWrapper.d.ts +8 -0
- package/es/drawer/src/DrawerBodyWrapper.js +36 -8
- package/es/modal-fullscreen/src/ModalFull.d.ts +2 -2
- package/es/modal-fullscreen/src/ModalFull.js +31 -24
- package/es/modal-fullscreen/src/styles/index.cssr.js +11 -11
- package/es/safe-top-scrollbar/index.d.ts +2 -0
- package/es/safe-top-scrollbar/index.js +1 -0
- package/es/safe-top-scrollbar/src/SafeTopScrollbar.d.ts +177 -0
- package/es/safe-top-scrollbar/src/SafeTopScrollbar.js +38 -0
- package/es/themes/dark.js +2 -0
- package/es/themes/light.js +2 -0
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/lib/_internal/index.d.ts +2 -0
- package/lib/_internal/index.js +4 -1
- package/lib/_internal/safe-top-scrollbar/index.d.ts +2 -0
- package/lib/_internal/safe-top-scrollbar/index.js +9 -0
- package/lib/_internal/safe-top-scrollbar/src/SafeTopScrollbar.d.ts +356 -0
- package/lib/_internal/safe-top-scrollbar/src/SafeTopScrollbar.js +714 -0
- package/lib/_internal/safe-top-scrollbar/src/styles/index.cssr.d.ts +2 -0
- package/lib/_internal/safe-top-scrollbar/src/styles/index.cssr.js +85 -0
- package/lib/_internal/safe-top-scrollbar/src/styles/rtl.cssr.d.ts +2 -0
- package/lib/_internal/safe-top-scrollbar/src/styles/rtl.cssr.js +15 -0
- package/lib/_internal/safe-top-scrollbar/styles/common.d.ts +7 -0
- package/lib/_internal/safe-top-scrollbar/styles/common.js +10 -0
- package/lib/_internal/safe-top-scrollbar/styles/dark.d.ts +3 -0
- package/lib/_internal/safe-top-scrollbar/styles/dark.js +10 -0
- package/lib/_internal/safe-top-scrollbar/styles/index.d.ts +4 -0
- package/lib/_internal/safe-top-scrollbar/styles/index.js +12 -0
- package/lib/_internal/safe-top-scrollbar/styles/light.d.ts +18 -0
- package/lib/_internal/safe-top-scrollbar/styles/light.js +16 -0
- package/lib/_internal/safe-top-scrollbar/styles/rtl.d.ts +3 -0
- package/lib/_internal/safe-top-scrollbar/styles/rtl.js +12 -0
- package/lib/chat/src/Chat.d.ts +14 -1
- package/lib/chat/src/Chat.js +5 -0
- package/lib/chat/src/ChatParts/ChatAttachment.js +30 -2
- package/lib/chat/src/ChatParts/MainArea.js +37 -41
- package/lib/chat/src/interface.d.ts +6 -2
- package/lib/components.d.ts +1 -0
- package/lib/components.js +1 -0
- package/lib/config-provider/src/internal-interface.d.ts +2 -0
- package/lib/drawer/src/Drawer.d.ts +18 -0
- package/lib/drawer/src/Drawer.js +28 -26
- package/lib/drawer/src/DrawerBodyWrapper.d.ts +8 -0
- package/lib/drawer/src/DrawerBodyWrapper.js +36 -8
- package/lib/modal-fullscreen/src/ModalFull.d.ts +2 -2
- package/lib/modal-fullscreen/src/ModalFull.js +30 -23
- package/lib/modal-fullscreen/src/styles/index.cssr.js +11 -11
- package/lib/safe-top-scrollbar/index.d.ts +2 -0
- package/lib/safe-top-scrollbar/index.js +9 -0
- package/lib/safe-top-scrollbar/src/SafeTopScrollbar.d.ts +177 -0
- package/lib/safe-top-scrollbar/src/SafeTopScrollbar.js +41 -0
- package/lib/themes/dark.js +5 -0
- package/lib/themes/light.js +5 -0
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/volar.d.ts +1 -0
- package/web-types.json +58 -2
package/package.json
CHANGED
package/volar.d.ts
CHANGED
|
@@ -154,6 +154,7 @@ declare module 'vue' {
|
|
|
154
154
|
UModalFullscreen: typeof import('@uzum-tech/ui')['UModalFullscreen']
|
|
155
155
|
UCrop: typeof import('@uzum-tech/ui')['UCrop']
|
|
156
156
|
UTagGroup: typeof import('@uzum-tech/ui')['UTagGroup']
|
|
157
|
+
USafeTopScrollbar: typeof import('@uzum-tech/ui')['USafeTopScrollbar']
|
|
157
158
|
}
|
|
158
159
|
}
|
|
159
160
|
export {}
|
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": "1.
|
|
5
|
+
"version": "1.11.1",
|
|
6
6
|
"js-types-syntax": "typescript",
|
|
7
7
|
"contributions": {
|
|
8
8
|
"html": {
|
|
@@ -2231,7 +2231,14 @@
|
|
|
2231
2231
|
"name": "attachment-upload",
|
|
2232
2232
|
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/chat",
|
|
2233
2233
|
"type": "(file: File) => Promise<ChatAttachment>",
|
|
2234
|
-
"description": "Callback when a file is uploaded.",
|
|
2234
|
+
"description": "Callback when a file is uploaded. Allows you to upload files to your storage and return the file ID and URL. Invoked automatically when user selects files.",
|
|
2235
|
+
"default": "undefined"
|
|
2236
|
+
},
|
|
2237
|
+
{
|
|
2238
|
+
"name": "attachment-download",
|
|
2239
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/chat",
|
|
2240
|
+
"type": "(attachment: ChatAttachment) => Promise<void>",
|
|
2241
|
+
"description": "Callback when a file download button is clicked. Allows you to download files with custom headers (e.g., authorization). Prevents default download behavior when defined.",
|
|
2235
2242
|
"default": "undefined"
|
|
2236
2243
|
},
|
|
2237
2244
|
{
|
|
@@ -5268,6 +5275,21 @@
|
|
|
5268
5275
|
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/drawer",
|
|
5269
5276
|
"type": "boolean"
|
|
5270
5277
|
},
|
|
5278
|
+
{
|
|
5279
|
+
"name": "default-width",
|
|
5280
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/drawer",
|
|
5281
|
+
"type": "number | string",
|
|
5282
|
+
"description": "Default width of the drawer, works when placement is `left` and `right`.",
|
|
5283
|
+
"default": "616",
|
|
5284
|
+
"description-sections": {
|
|
5285
|
+
"since": "1.8.3"
|
|
5286
|
+
}
|
|
5287
|
+
},
|
|
5288
|
+
{
|
|
5289
|
+
"name": "default-height",
|
|
5290
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/drawer",
|
|
5291
|
+
"type": "number | string"
|
|
5292
|
+
},
|
|
5271
5293
|
{
|
|
5272
5294
|
"name": "drawer-style",
|
|
5273
5295
|
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/drawer",
|
|
@@ -12568,6 +12590,40 @@
|
|
|
12568
12590
|
]
|
|
12569
12591
|
}
|
|
12570
12592
|
},
|
|
12593
|
+
{
|
|
12594
|
+
"name": "USafeTopScrollbar",
|
|
12595
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/safe-top-scrollbar",
|
|
12596
|
+
"source": {
|
|
12597
|
+
"symbol": "USafeTopScrollbar"
|
|
12598
|
+
},
|
|
12599
|
+
"slots": [],
|
|
12600
|
+
"attributes": [],
|
|
12601
|
+
"props": [
|
|
12602
|
+
{
|
|
12603
|
+
"name": "trigger",
|
|
12604
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/safe-top-scrollbar",
|
|
12605
|
+
"type": "string"
|
|
12606
|
+
},
|
|
12607
|
+
{
|
|
12608
|
+
"name": "x-scrollable",
|
|
12609
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/safe-top-scrollbar",
|
|
12610
|
+
"type": "boolean"
|
|
12611
|
+
},
|
|
12612
|
+
{
|
|
12613
|
+
"name": "size",
|
|
12614
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/safe-top-scrollbar",
|
|
12615
|
+
"type": "number"
|
|
12616
|
+
}
|
|
12617
|
+
],
|
|
12618
|
+
"js": {
|
|
12619
|
+
"events": [
|
|
12620
|
+
{
|
|
12621
|
+
"name": "scroll",
|
|
12622
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/safe-top-scrollbar"
|
|
12623
|
+
}
|
|
12624
|
+
]
|
|
12625
|
+
}
|
|
12626
|
+
},
|
|
12571
12627
|
{
|
|
12572
12628
|
"name": "USelect",
|
|
12573
12629
|
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/select",
|