tang-ui-x 1.0.2 → 1.0.3
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/components/TActionSheet/index.uvue +1 -1
- package/components/TCell/index.uvue +1 -1
- package/components/TGridItem/index.uvue +1 -1
- package/components/TSelect/index.uvue +1 -1
- package/components/VbenFrom/index.uvue +2 -2
- package/composables/useToast.uts +1 -1
- package/index.uts +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script setup lang="uts" >
|
|
2
2
|
|
|
3
|
-
import RadioButton from '
|
|
4
|
-
import CheckboxButton from '
|
|
3
|
+
import RadioButton from '../RadioButton/index'
|
|
4
|
+
import CheckboxButton from '../CheckboxButton/index'
|
|
5
5
|
|
|
6
6
|
type FormOption = { label : string; value : string | number }
|
|
7
7
|
type FormSchema = {
|
package/composables/useToast.uts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { ref } from 'vue'
|
|
7
|
-
import type { ToastOptions, ComponentType, PositionType } from '
|
|
7
|
+
import type { ToastOptions, ComponentType, PositionType } from '../types/index.uts'
|
|
8
8
|
|
|
9
9
|
/** Toast 队列 */
|
|
10
10
|
const toastQueue = ref<ToastOptions[]>([])
|
package/index.uts
CHANGED
|
@@ -31,7 +31,7 @@ export { useToast } from './composables/useToast.uts'
|
|
|
31
31
|
export { useModal } from './composables/useModal.uts'
|
|
32
32
|
|
|
33
33
|
// 版本信息
|
|
34
|
-
export const version: string = '1.0.
|
|
34
|
+
export const version: string = '1.0.3'
|
|
35
35
|
|
|
36
36
|
// 组件列表(用于文档和类型提示)
|
|
37
37
|
export const components: string[] = [
|