@5even7/dlc-ui 0.2.17 → 0.2.19
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/CHANGELOG.md +147 -123
- package/LICENSE +21 -21
- package/README.md +338 -316
- package/THIRD_PARTY_NOTICES.md +57 -0
- package/dist/avatar-creator.cjs +7221 -0
- package/dist/avatar-creator.mjs +9278 -0
- package/dist/capsule.cjs +189 -68
- package/dist/capsule.mjs +1208 -1103
- package/dist/color.cjs +186 -67
- package/dist/color.mjs +1157 -1052
- package/dist/emo.cjs +1439 -410
- package/dist/emo.mjs +1405 -496
- package/dist/index.cjs +7808 -310
- package/dist/index.mjs +13435 -3802
- package/dist/index.umd.js +7786 -288
- package/dist/index.umd.min.js +1 -1
- package/dist/progress.cjs +195 -76
- package/dist/progress.mjs +2293 -2188
- package/dist/vue2.cjs +7827 -376
- package/dist/vue2.mjs +13841 -4267
- package/dist/vue3.cjs +7827 -376
- package/dist/vue3.mjs +13841 -4267
- package/package.json +146 -135
- package/styles/avatar-creator.css +13 -0
- package/styles/base.css +32 -32
- package/styles/color.css +18 -18
- package/styles/emo.css +89 -33
- package/styles/progress.css +96 -96
- package/styles/theme.css +1 -0
- package/types/avatar-creator.d.ts +124 -0
- package/types/capsule.d.ts +15 -15
- package/types/color.d.ts +15 -15
- package/types/emo.d.ts +37 -14
- package/types/index.d.ts +581 -417
- package/types/progress.d.ts +16 -16
- package/types/vue2.d.ts +11 -10
- package/types/vue3.d.ts +169 -144
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# Third Party Notices
|
|
2
|
+
|
|
3
|
+
本组件库使用了以下第三方作品。所有内容均按各自许可条款使用。
|
|
4
|
+
|
|
5
|
+
## LaoA-GrokBot(Grok 表情数据与实现参考)
|
|
6
|
+
|
|
7
|
+
- 来源:https://github.com/zhulin025/LaoA-GrokBot(仅作为数据与算法参考,未分发其完整仓库)
|
|
8
|
+
- 许可证:MIT License
|
|
9
|
+
- 用途:DLC-EMO `type="grok"` 的 13 个语义状态、25 组表情几何数据(`GROK_EXPRESSIONS`)、眨眼/表情节奏参数、8 种身体形态与 SVG Path Morph 算法的参考实现。
|
|
10
|
+
- 本仓库中生成的 `src/dlc-emo/assets/grok/data.js` 源自该项目 `original-data.js` 的转换数据。
|
|
11
|
+
|
|
12
|
+
MIT License 全文:
|
|
13
|
+
|
|
14
|
+
> MIT License
|
|
15
|
+
>
|
|
16
|
+
> Copyright (c) 2026 老A玩AI
|
|
17
|
+
>
|
|
18
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
19
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
20
|
+
> in the Software without restriction, including without limitation the rights
|
|
21
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
22
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
23
|
+
> furnished to do so, subject to the following conditions:
|
|
24
|
+
>
|
|
25
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
26
|
+
> copies or substantial portions of the Software.
|
|
27
|
+
>
|
|
28
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
29
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
30
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
31
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
32
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
33
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
34
|
+
> SOFTWARE.
|
|
35
|
+
|
|
36
|
+
## lottie-web
|
|
37
|
+
|
|
38
|
+
- 来源:https://github.com/airbnb/lottie-web
|
|
39
|
+
- 许可证:MIT License
|
|
40
|
+
- 用途:DLC-EMO `type="miao"` 的 Lottie 动画播放器。
|
|
41
|
+
|
|
42
|
+
## DiceBear(@dicebear/core 9.4.2 与 8 个样式)
|
|
43
|
+
|
|
44
|
+
- 来源:https://www.dicebear.com / https://github.com/dicebear/dicebear
|
|
45
|
+
- 许可证:代码 MIT License;8 个样式的设计素材 CC0 1.0(Public Domain)
|
|
46
|
+
- 用途:DLC-Avatar-Creator 的 dicebear 供应商实现(vendored 到
|
|
47
|
+
`src/dlc-avatar-creator/vendors/dicebear`),含 identicon / lorelei /
|
|
48
|
+
lorelei-neutral / notionists / notionists-neutral / open-peeps / rings / shapes。
|
|
49
|
+
- 各样式随附的 LICENSE 文件与设计者署名保留在 vendored 目录内:
|
|
50
|
+
identicon、lorelei(Lisa Wischofsky)、notionists(Zoish)、open-peeps(Pablo Stanley)等。
|
|
51
|
+
|
|
52
|
+
## Humation(@humation/core 1.0.1 + @humation/assets-humation-1)
|
|
53
|
+
|
|
54
|
+
- 来源:https://github.com/endo-yusuke/humation
|
|
55
|
+
- 许可证:MIT License(https://github.com/endo-yusuke/humation/blob/main/LICENSE)
|
|
56
|
+
- 用途:DLC-Avatar-Creator 的 humation 供应商实现(vendored 到
|
|
57
|
+
`src/dlc-avatar-creator/vendors/humation`,含 manifest 与嵌入式 SVG 素材)。
|