@uzum-tech/ui 1.12.19 → 1.12.20
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 +73 -0
- package/dist/index.js +3 -3
- package/dist/index.prod.js +2 -2
- package/es/chat/src/ChatParts/ChatAttachment.js +2 -2
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/lib/chat/src/ChatParts/ChatAttachment.js +2 -2
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/volar.d.ts +22 -22
- package/web-types.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img width="144px" src="https://ik.imagekit.io/jbalancer/uzum-logo.svg?updatedAt=1692012347116" />
|
|
3
|
+
</p>
|
|
4
|
+
|
|
5
|
+
<h1 align="center">Uzum UI</h1>
|
|
6
|
+
<p align="center">A Vue 3 Component Library</p>
|
|
7
|
+
<p align="center"><b>Fairly Complete, Theme Customizable, Uses TypeScript, Fast</b></p>
|
|
8
|
+
|
|
9
|
+
<p align="center">English</p>
|
|
10
|
+
|
|
11
|
+
## Documentation
|
|
12
|
+
|
|
13
|
+
[www.uzumui.com](http://www.uzumui.com)
|
|
14
|
+
|
|
15
|
+
## Features
|
|
16
|
+
|
|
17
|
+
### Fairly Complete
|
|
18
|
+
|
|
19
|
+
There are more than 80 components. Hope they can help you write less code.
|
|
20
|
+
|
|
21
|
+
What's more, they are all treeshakable.
|
|
22
|
+
|
|
23
|
+
### Theme Customizable
|
|
24
|
+
|
|
25
|
+
We provide an advanced type safe theme system built using TypeScript. All you need is to provide a theme overrides object in JS. Then all the stuff will be done by us.
|
|
26
|
+
|
|
27
|
+
What's more, no less/sass/css variables, no webpack loaders are required.
|
|
28
|
+
|
|
29
|
+
### Uses TypeScript
|
|
30
|
+
|
|
31
|
+
All the stuff in Uzum UI is written in TypeScript. It can work with your typescript project seamlessly.
|
|
32
|
+
|
|
33
|
+
What's more, you don't need to import any CSS to use the components.
|
|
34
|
+
|
|
35
|
+
### Fast
|
|
36
|
+
|
|
37
|
+
I try to make it not rather slow. At least select, tree, transfer, table and cascader work with virtual list.
|
|
38
|
+
|
|
39
|
+
What's more, ..., no more. Just enjoy it.
|
|
40
|
+
|
|
41
|
+
## Installation
|
|
42
|
+
|
|
43
|
+
### npm
|
|
44
|
+
|
|
45
|
+
Use npm to install.
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
npm i -D @uzum-tech/ui
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### Fonts
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
npm i -D vfonts
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
### Icons
|
|
58
|
+
|
|
59
|
+
Uzum UI recommends using [xicons](https://www.xicons.org) as icon library.
|
|
60
|
+
|
|
61
|
+
### Design Resources
|
|
62
|
+
|
|
63
|
+
[Uzum UI (Figma)](https://www.figma.com/file/yKEpk8950c0bZ2fA51psBI/Components-Web?type=design&t=brzuYK7mC2iOHJJ1-6).
|
|
64
|
+
|
|
65
|
+
## Contributing
|
|
66
|
+
|
|
67
|
+
Later...
|
|
68
|
+
|
|
69
|
+
## License
|
|
70
|
+
|
|
71
|
+
Uzum UI is licensed under the [MIT license](https://opensource.org/licenses/MIT).
|
|
72
|
+
|
|
73
|
+
Graphics resouces of `result` component is licensed under the [CC-BY 4.0](https://creativecommons.org/licenses/by/4.0/). The graphics resources come from [Twemoji](https://github.com/twitter/twemoji).
|
package/dist/index.js
CHANGED
|
@@ -54326,8 +54326,8 @@
|
|
|
54326
54326
|
};
|
|
54327
54327
|
const renderAttachment = () => {
|
|
54328
54328
|
const fileList = props.attachments.map(
|
|
54329
|
-
(attachment
|
|
54330
|
-
id: `${String(
|
|
54329
|
+
(attachment) => ({
|
|
54330
|
+
id: `${String(attachment.id)}`,
|
|
54331
54331
|
name: attachment.name,
|
|
54332
54332
|
status: attachment.status || ChatAttachmentStatus.FINISHED,
|
|
54333
54333
|
percentage: attachment.percentage ?? null,
|
|
@@ -128771,7 +128771,7 @@
|
|
|
128771
128771
|
watermarkProps: watermarkProps
|
|
128772
128772
|
});
|
|
128773
128773
|
|
|
128774
|
-
var version = "1.12.
|
|
128774
|
+
var version = "1.12.20";
|
|
128775
128775
|
|
|
128776
128776
|
function useExposeProxy(targetRef) {
|
|
128777
128777
|
return new Proxy({}, {
|