yd-admin 0.1.4 → 0.1.5
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 +6 -4
- package/dist/index.d.ts +1444 -379
- package/dist/index.js +2636 -407
- package/dist/style.css +1129 -587
- package/package.json +8 -4
package/README.md
CHANGED
|
@@ -74,6 +74,8 @@ export default {
|
|
|
74
74
|
| `YdTextarea` | 多行文本 |
|
|
75
75
|
| `YdInputNumber` | 数字输入 |
|
|
76
76
|
| `YdSelect` | 选择器 |
|
|
77
|
+
| `YdColorPicker` | 颜色选择 |
|
|
78
|
+
| `YdTreeSelect` | 树选择 |
|
|
77
79
|
| `YdSwitch` | 开关 |
|
|
78
80
|
| `YdCheckbox` | 复选框 |
|
|
79
81
|
| `YdCheckboxGroup` | 复选框组 |
|
|
@@ -113,10 +115,10 @@ export default {
|
|
|
113
115
|
|
|
114
116
|
### 数据存储 (Stores)
|
|
115
117
|
|
|
116
|
-
| 导出 | 说明
|
|
117
|
-
| --------------------- |
|
|
118
|
-
| `secureStoragePlugin` | Pinia 加密存储插件 |
|
|
119
|
-
| `initSecureStorage` | 初始化安全存储密钥
|
|
118
|
+
| 导出 | 说明 |
|
|
119
|
+
| --------------------- | ---------------------------- |
|
|
120
|
+
| `secureStoragePlugin` | Pinia 加密存储插件 (AES-GCM) |
|
|
121
|
+
| `initSecureStorage` | 初始化安全存储密钥 |
|
|
120
122
|
|
|
121
123
|
**使用示例**:
|
|
122
124
|
|