sard-uniapp 1.8.0 → 1.8.1
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 +9 -0
- package/components/accordion-item/accordion-item.vue +4 -0
- package/components/action-sheet/action-sheet.vue +4 -0
- package/components/alert/alert.vue +3 -0
- package/components/avatar/avatar.vue +3 -0
- package/components/back-top/back-top.vue +3 -0
- package/components/button/button.vue +3 -0
- package/components/calendar/calendar.vue +7 -0
- package/components/calendar-input/calendar-input.vue +5 -0
- package/components/cascader/cascader.vue +5 -0
- package/components/cascader-input/cascader-input.vue +5 -0
- package/components/check-icon/check-icon.vue +3 -0
- package/components/checkbox/checkbox.vue +3 -0
- package/components/checkbox-group/checkbox-group.vue +3 -0
- package/components/checkbox-input/checkbox-input.vue +8 -0
- package/components/datetime-picker/datetime-picker.vue +3 -0
- package/components/datetime-picker-input/datetime-picker-input.vue +5 -0
- package/components/dialog/dialog.vue +5 -0
- package/components/dialog-agent/dialog-agent.vue +3 -0
- package/components/dropdown-item/dropdown-item.vue +6 -0
- package/components/empty/empty.vue +3 -0
- package/components/fab/fab.vue +4 -0
- package/components/grid-item/grid-item.vue +3 -0
- package/components/indexes/indexes.vue +3 -0
- package/components/input/input.vue +3 -0
- package/components/keyboard/keyboard.vue +3 -0
- package/components/list-item/list-item.vue +3 -0
- package/components/load-more/load-more.vue +3 -0
- package/components/menu/menu.vue +3 -0
- package/components/menu-item/menu-item.vue +3 -0
- package/components/notice-bar/notice-bar.vue +3 -0
- package/components/notify/notify.vue +3 -0
- package/components/notify-agent/notify-agent.vue +3 -0
- package/components/picker-input/picker-input.vue +5 -0
- package/components/popout/popout.vue +5 -0
- package/components/popout-input/popout-input.vue +5 -0
- package/components/popover/popover.vue +4 -0
- package/components/popup/popup.vue +3 -0
- package/components/progress-bar/progress-bar.vue +3 -0
- package/components/progress-circle/progress-circle.vue +3 -0
- package/components/pull-down-refresh/pull-down-refresh.vue +3 -0
- package/components/radio/radio.vue +3 -0
- package/components/radio-group/radio-group.vue +3 -0
- package/components/radio-input/radio-input.vue +8 -0
- package/components/rate/rate.vue +3 -0
- package/components/result/result.vue +3 -0
- package/components/search/search.vue +5 -0
- package/components/share-sheet/share-sheet.vue +4 -0
- package/components/skeleton/skeleton.vue +5 -0
- package/components/skeleton-avatar/skeleton-avatar.vue +3 -0
- package/components/skeleton-paragraph/skeleton-paragraph.vue +3 -0
- package/components/skeleton-title/skeleton-title.vue +3 -0
- package/components/stepper/stepper.vue +3 -0
- package/components/steps/steps.vue +3 -0
- package/components/switch/switch.vue +3 -0
- package/components/tabbar-item/tabbar-item.vue +4 -0
- package/components/tabs/tabs.vue +3 -0
- package/components/tag/tag.vue +3 -0
- package/components/timeline-item/timeline-item.vue +3 -0
- package/components/toast/toast.vue +5 -0
- package/components/toast-agent/toast-agent.vue +3 -0
- package/components/tree/tree.vue +7 -0
- package/components/tree-branch/tree-branch.vue +3 -0
- package/components/tree-node/tree-node.vue +6 -0
- package/components/upload/upload.vue +4 -0
- package/components/upload-preview/upload-preview.vue +4 -0
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [1.8.1](https://github.com/sutras/sard-uniapp/compare/v1.8.0...v1.8.1) (2024-10-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* 修复局部导入组件未注册问题 ([5337b11](https://github.com/sutras/sard-uniapp/commit/5337b119d15b77db76be13c7e33a10cdc4b02d7d))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
1
10
|
# [1.8.0](https://github.com/sutras/sard-uniapp/compare/v1.7.1...v1.8.0) (2024-10-21)
|
|
2
11
|
|
|
3
12
|
|
|
@@ -105,6 +105,13 @@ import SarCalendarMonth from "../calendar-month/calendar-month.vue";
|
|
|
105
105
|
import SarPopout from "../popout/popout.vue";
|
|
106
106
|
import SarDatetimePicker from "../datetime-picker/datetime-picker.vue";
|
|
107
107
|
export default _defineComponent({
|
|
108
|
+
components: {
|
|
109
|
+
SarButton,
|
|
110
|
+
SarIcon,
|
|
111
|
+
SarCalendarMonth,
|
|
112
|
+
SarPopout,
|
|
113
|
+
SarDatetimePicker,
|
|
114
|
+
},
|
|
108
115
|
...{
|
|
109
116
|
options: {
|
|
110
117
|
virtualHost: true,
|
|
@@ -26,6 +26,9 @@ import {
|
|
|
26
26
|
import SarCheckIcon from "../check-icon/check-icon.vue";
|
|
27
27
|
import { useFormContext, useFormItemContext } from "../form/common";
|
|
28
28
|
export default _defineComponent({
|
|
29
|
+
components: {
|
|
30
|
+
SarCheckIcon,
|
|
31
|
+
},
|
|
29
32
|
...{
|
|
30
33
|
options: {
|
|
31
34
|
virtualHost: true,
|
|
@@ -72,6 +72,14 @@ import {
|
|
|
72
72
|
import { createBem, getMayPrimitiveOption, isNullish } from "../../utils";
|
|
73
73
|
import { useFormItemContext } from "../form/common";
|
|
74
74
|
export default _defineComponent({
|
|
75
|
+
components: {
|
|
76
|
+
SarPopoutInput,
|
|
77
|
+
SarPopout,
|
|
78
|
+
SarCheckboxGroup,
|
|
79
|
+
SarCheckbox,
|
|
80
|
+
SarList,
|
|
81
|
+
SarListItem,
|
|
82
|
+
},
|
|
75
83
|
...{
|
|
76
84
|
options: {
|
|
77
85
|
virtualHost: true,
|
package/components/fab/fab.vue
CHANGED
|
@@ -50,6 +50,10 @@ import { useTransition, useZIndex } from "../../use";
|
|
|
50
50
|
import SarIcon from "../icon/icon.vue";
|
|
51
51
|
import SarOverlay from "../overlay/overlay.vue";
|
|
52
52
|
export default _defineComponent({
|
|
53
|
+
components: {
|
|
54
|
+
SarIcon,
|
|
55
|
+
SarOverlay,
|
|
56
|
+
},
|
|
53
57
|
...{
|
|
54
58
|
options: {
|
|
55
59
|
virtualHost: true,
|
package/components/menu/menu.vue
CHANGED
|
@@ -47,6 +47,11 @@ import SarIcon from "../icon/icon.vue";
|
|
|
47
47
|
import { useFormContext } from "../form/common";
|
|
48
48
|
import SarLoading from "../loading/loading.vue";
|
|
49
49
|
export default _defineComponent({
|
|
50
|
+
components: {
|
|
51
|
+
SarInput,
|
|
52
|
+
SarIcon,
|
|
53
|
+
SarLoading,
|
|
54
|
+
},
|
|
50
55
|
...{
|
|
51
56
|
options: {
|
|
52
57
|
virtualHost: true,
|
|
@@ -69,6 +69,14 @@ import {
|
|
|
69
69
|
import { createBem, getMayPrimitiveOption, isNullish } from "../../utils";
|
|
70
70
|
import { useFormItemContext } from "../form/common";
|
|
71
71
|
export default _defineComponent({
|
|
72
|
+
components: {
|
|
73
|
+
SarPopoutInput,
|
|
74
|
+
SarPopout,
|
|
75
|
+
SarRadioGroup,
|
|
76
|
+
SarRadio,
|
|
77
|
+
SarList,
|
|
78
|
+
SarListItem,
|
|
79
|
+
},
|
|
72
80
|
...{
|
|
73
81
|
options: {
|
|
74
82
|
virtualHost: true,
|
package/components/rate/rate.vue
CHANGED
|
@@ -67,6 +67,9 @@ import { useFormContext, useFormItemContext } from "../form/common";
|
|
|
67
67
|
import { defaultRateProps } from "./common";
|
|
68
68
|
import { useMouseDown } from "../../use";
|
|
69
69
|
export default _defineComponent({
|
|
70
|
+
components: {
|
|
71
|
+
SarIcon,
|
|
72
|
+
},
|
|
70
73
|
...{
|
|
71
74
|
options: {
|
|
72
75
|
virtualHost: true,
|
|
@@ -15,6 +15,9 @@ import { computed } from "vue";
|
|
|
15
15
|
import { classNames, stringifyStyle, createBem } from "../../utils";
|
|
16
16
|
import SarSkeletonBlock from "../skeleton-block/skeleton-block.vue";
|
|
17
17
|
export default _defineComponent({
|
|
18
|
+
components: {
|
|
19
|
+
SarSkeletonBlock,
|
|
20
|
+
},
|
|
18
21
|
...{
|
|
19
22
|
options: {
|
|
20
23
|
virtualHost: true,
|
|
@@ -18,6 +18,9 @@ import { computed } from "vue";
|
|
|
18
18
|
import { classNames, stringifyStyle, createBem } from "../../utils";
|
|
19
19
|
import SarSkeletonBlock from "../skeleton-block/skeleton-block.vue";
|
|
20
20
|
export default _defineComponent({
|
|
21
|
+
components: {
|
|
22
|
+
SarSkeletonBlock,
|
|
23
|
+
},
|
|
21
24
|
...{
|
|
22
25
|
options: {
|
|
23
26
|
virtualHost: true,
|
|
@@ -15,6 +15,9 @@ import { computed } from "vue";
|
|
|
15
15
|
import { classNames, stringifyStyle, createBem } from "../../utils";
|
|
16
16
|
import SarSkeletonBlock from "../skeleton-block/skeleton-block.vue";
|
|
17
17
|
export default _defineComponent({
|
|
18
|
+
components: {
|
|
19
|
+
SarSkeletonBlock,
|
|
20
|
+
},
|
|
18
21
|
...{
|
|
19
22
|
options: {
|
|
20
23
|
virtualHost: true,
|
|
@@ -39,6 +39,9 @@ import { classNames, stringifyStyle, createBem } from "../../utils";
|
|
|
39
39
|
import SarIcon from "../icon/icon.vue";
|
|
40
40
|
import { defaultStepsProps } from "./common";
|
|
41
41
|
export default _defineComponent({
|
|
42
|
+
components: {
|
|
43
|
+
SarIcon,
|
|
44
|
+
},
|
|
42
45
|
...{
|
|
43
46
|
options: {
|
|
44
47
|
virtualHost: true,
|
package/components/tabs/tabs.vue
CHANGED
package/components/tag/tag.vue
CHANGED
|
@@ -32,6 +32,9 @@ import { computed } from "vue";
|
|
|
32
32
|
import { classNames, stringifyStyle, createBem } from "../../utils";
|
|
33
33
|
import SarIcon from "../icon/icon.vue";
|
|
34
34
|
export default _defineComponent({
|
|
35
|
+
components: {
|
|
36
|
+
SarIcon,
|
|
37
|
+
},
|
|
35
38
|
...{
|
|
36
39
|
options: {
|
|
37
40
|
virtualHost: true,
|
package/components/tree/tree.vue
CHANGED
|
@@ -54,6 +54,13 @@ import SarToast from "../toast/toast.vue";
|
|
|
54
54
|
import { useTranslate } from "../locale";
|
|
55
55
|
import { recurAncestor, recurDescendant, recurNodes } from "./utils";
|
|
56
56
|
export default _defineComponent({
|
|
57
|
+
components: {
|
|
58
|
+
SarTreeBranch,
|
|
59
|
+
SarPopover,
|
|
60
|
+
SarInput,
|
|
61
|
+
SarDialog,
|
|
62
|
+
SarToast,
|
|
63
|
+
},
|
|
57
64
|
...{
|
|
58
65
|
options: {
|
|
59
66
|
virtualHost: true,
|
|
@@ -106,6 +106,12 @@ import SarPopover from "../popover/popover.vue";
|
|
|
106
106
|
import { usePopover } from "../popover";
|
|
107
107
|
import { getNodeLevel, recurDescendant } from "../tree/utils";
|
|
108
108
|
export default _defineComponent({
|
|
109
|
+
components: {
|
|
110
|
+
SarTreeBranch,
|
|
111
|
+
SarIcon,
|
|
112
|
+
SarCheckbox,
|
|
113
|
+
SarPopover,
|
|
114
|
+
},
|
|
109
115
|
...{
|
|
110
116
|
options: {
|
|
111
117
|
virtualHost: true,
|