@blueking/status-tag-web-component 1.0.0 → 1.0.2
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 +5 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<div align="center">
|
|
4
4
|
|
|
5
|
-

|
|
6
6
|
|
|
7
7
|
**一个无框架依赖的状态标签 Web Component,支持国际化,适用于任何前端项目**
|
|
8
8
|
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
### NPM 安装
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
|
-
npm install status-tag-web-component
|
|
34
|
+
npm install @blueking/status-tag-web-component
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
### CDN 引入(开发测试)
|
|
@@ -262,7 +262,7 @@ function StatusList({ items }) {
|
|
|
262
262
|
|
|
263
263
|
<script setup>
|
|
264
264
|
import { ref } from 'vue';
|
|
265
|
-
import 'status-tag-web-component';
|
|
265
|
+
import '@blueking/status-tag-web-component';
|
|
266
266
|
|
|
267
267
|
// 响应式数据
|
|
268
268
|
const status = ref('running');
|
|
@@ -564,7 +564,7 @@ MIT License - 详见 [LICENSE](LICENSE) 文件
|
|
|
564
564
|
- [迁移指南](./MIGRATION.md) - 从 Vue 迁移指南
|
|
565
565
|
- [项目总结](./PROJECT_SUMMARY.md) - 项目总结
|
|
566
566
|
- [快速上手](./QUICKSTART.md) - 5 分钟上手指南
|
|
567
|
-
- [
|
|
567
|
+
- [使用指南](./USAGE.md) - 详细使用说明
|
|
568
568
|
- [examples/final-test-v2.html](./examples/final-test-v2.html) - 完整测试页面
|
|
569
569
|
|
|
570
570
|
## ⭐ 致谢
|
|
@@ -577,6 +577,6 @@ MIT License - 详见 [LICENSE](LICENSE) 文件
|
|
|
577
577
|
|
|
578
578
|
**如果这个项目对您有帮助,请给我们一个 ⭐️!**
|
|
579
579
|
|
|
580
|
-
|
|
580
|
+
[NPM 包](https://www.npmjs.com/package/@blueking/status-tag-web-component) · [GitHub 仓库](https://github.com/forrany/status-tag-component) · [提交 Issue](https://github.com/forrany/status-tag-component/issues)
|
|
581
581
|
|
|
582
582
|
</div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blueking/status-tag-web-component",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "A framework-agnostic Status Tag Web Component with i18n support",
|
|
5
5
|
"main": "dist/status-tag.umd.js",
|
|
6
6
|
"module": "dist/status-tag.mjs",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"shadow-dom",
|
|
19
19
|
"custom-elements"
|
|
20
20
|
],
|
|
21
|
-
"author": "
|
|
21
|
+
"author": "Vincent Ko",
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"publishConfig": {
|
|
24
24
|
"registry": "https://registry.npmjs.org/",
|