renusify 2.0.6 → 2.1.0
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/app/index.js +5 -0
- package/components/app/index.vue +0 -2
- package/components/avatar/index.js +3 -0
- package/components/bar/bottomNav.js +1 -0
- package/components/bar/bottomNavigationCircle.js +2 -0
- package/components/bar/bottomNavigationCircle.vue +1 -1
- package/components/bar/toolbar/index.js +8 -0
- package/components/bar/toolbar/laptop.vue +2 -2
- package/components/bar/toolbar/menuLaptop.vue +2 -2
- package/components/bar/toolbar/menuMob.vue +28 -28
- package/components/bar/toolbar/mobile.vue +2 -2
- package/components/breadcrumb/index.js +3 -0
- package/components/breadcrumb/index.vue +0 -2
- package/components/button/buttonConfirm.js +3 -0
- package/components/button/buttonConfirm.vue +1 -1
- package/components/button/buttonGroup.js +7 -0
- package/components/button/index.js +3 -0
- package/components/calendar/index.js +10 -0
- package/components/calendar/index.vue +4 -7
- package/components/card/index.js +3 -0
- package/components/card/style.scss +2 -3
- package/components/chart/chart.js +1 -0
- package/components/chart/chart.vue +8 -5
- package/components/chart/worldMap.js +2 -0
- package/components/chart/worldMap.vue +1 -1
- package/components/chat/MessageList.vue +2 -6
- package/components/chat/chatInput.vue +1 -1
- package/components/chat/index.js +11 -0
- package/components/chat/index.vue +2 -5
- package/components/chip/index.js +3 -0
- package/components/codeEditor/highlightCss.vue +1 -1
- package/components/codeEditor/highlightHtml.vue +1 -1
- package/components/codeEditor/highlightJs.vue +1 -1
- package/components/codeEditor/index.js +3 -0
- package/components/codeEditor/index.vue +206 -199
- package/components/confirm/index.js +10 -0
- package/components/container/col.js +1 -0
- package/components/container/divider.js +1 -0
- package/components/container/index.js +1 -0
- package/components/container/row.js +1 -0
- package/components/container/spacer.js +1 -0
- package/components/content/index.js +1 -0
- package/components/countdown/index.js +1 -0
- package/components/cropper/index.js +3 -0
- package/components/cropper/index.vue +1 -1
- package/components/float/index.js +1 -0
- package/components/form/addressInput/index.js +4 -0
- package/components/form/camInput/index.js +4 -0
- package/components/form/{camInput.vue → camInput/index.vue} +1 -1
- package/components/form/checkInput/index.js +4 -0
- package/components/form/{check-input.vue → checkInput/index.vue} +1 -1
- package/components/form/checkboxInput/index.js +3 -0
- package/components/form/{checkbox.vue → checkboxInput/index.vue} +1 -1
- package/components/form/colorInput/index.js +7 -0
- package/components/form/{colorPicker → colorInput}/index.vue +2 -2
- package/components/form/{colorPicker → colorInput}/picker.vue +5 -9
- package/components/form/dateInput/index.js +8 -0
- package/components/form/dateInput/index.vue +475 -0
- package/components/form/fileInput/index.js +8 -0
- package/components/form/{fileUploader → fileInput}/index.vue +2 -2
- package/components/form/groupInput/index.js +4 -0
- package/components/form/{group-input.vue → groupInput/index.vue} +1 -1
- package/components/form/index.js +1 -0
- package/components/form/input/index.js +3 -0
- package/components/form/{input.vue → input/index.vue} +1 -1
- package/components/form/{json → jsonInput}/JsonView.vue +1 -1
- package/components/form/jsonInput/index.js +7 -0
- package/components/form/{json → jsonInput}/index.vue +5 -5
- package/components/form/maskInput/index.js +3 -0
- package/components/form/numberInput/index.js +4 -0
- package/components/form/{number.vue → numberInput/index.vue} +1 -1
- package/components/form/passwordInput/index.js +3 -0
- package/components/form/radioInput/index.js +3 -0
- package/components/form/{radioInput.vue → radioInput/index.vue} +1 -1
- package/components/form/rangeInput/index.js +3 -0
- package/components/form/{range.vue → rangeInput/index.vue} +1 -1
- package/components/form/ratingInput/index.js +4 -0
- package/components/form/{rating.vue → ratingInput/index.vue} +1 -1
- package/components/form/selectInput/index.js +8 -0
- package/components/form/{select.vue → selectInput/index.vue} +34 -2
- package/components/form/switchInput/index.js +2 -0
- package/components/form/{switch.vue → switchInput/index.vue} +1 -1
- package/components/form/telInput/index.js +7 -0
- package/components/form/{inputTel → telInput}/index.vue +5 -5
- package/components/form/text-editor/index.js +15 -0
- package/components/form/text-editor/preview.js +1 -0
- package/components/form/textArea/index.js +2 -0
- package/components/form/{text-area.vue → textArea/index.vue} +1 -1
- package/components/form/textInput/index.js +2 -0
- package/components/form/timeInput/index.js +5 -0
- package/components/form/{timepicker → timeInput}/index.vue +2 -2
- package/components/form/timeInput/range.js +5 -0
- package/components/form/{timepicker → timeInput}/range.vue +2 -2
- package/components/form/uniqueInput/index.js +2 -0
- package/components/form/unitInput/index.js +3 -0
- package/components/form/{unit-input.vue → unitInput/index.vue} +1 -1
- package/components/formCreator/index.js +8 -0
- package/components/html2pdf/index.js +4 -0
- package/components/html2pdf/pageBreak.js +1 -0
- package/components/icon/index.js +1 -0
- package/components/img/index.js +2 -0
- package/components/img/index.vue +2 -2
- package/components/img/svgImg.vue +1 -1
- package/components/index.js +100 -192
- package/components/infinite/div.js +6 -0
- package/components/infinite/index.js +7 -0
- package/components/infinite/page.js +3 -0
- package/components/list/index.js +3 -0
- package/components/map/index.js +5 -0
- package/components/map/index.vue +8 -7
- package/components/map/route.js +9 -0
- package/components/map/route.vue +1 -1
- package/components/map/select.js +2 -0
- package/components/menu/index.js +5 -0
- package/components/message/index.js +4 -0
- package/components/meta/index.js +1 -1
- package/components/modal/index.js +3 -0
- package/components/modal/index.vue +6 -2
- package/components/modal/style.scss +1 -0
- package/components/nestable/index.js +1 -0
- package/components/nestable/index.vue +3 -3
- package/components/notify/index.js +3 -0
- package/components/notify/index.vue +2 -2
- package/components/progress/circle.js +1 -0
- package/components/progress/line.js +1 -0
- package/components/searchBox/index.js +8 -0
- package/components/searchBox/index.vue +1 -1
- package/components/skeleton/index.js +1 -0
- package/components/skeleton/index.vue +1 -1
- package/components/slider/index.js +6 -0
- package/components/swiper/index.js +2 -0
- package/components/table/crud/index.js +20 -0
- package/components/table/crud/index.vue +459 -453
- package/components/table/index.js +11 -0
- package/components/tabs/index.js +3 -0
- package/components/timeAgo/index.js +1 -0
- package/components/timeline/index.js +6 -0
- package/components/timeline/index.vue +1 -1
- package/components/tour/index.js +4 -0
- package/components/tour/index.vue +225 -221
- package/components/tree/index.js +9 -0
- package/components/tree/index.vue +120 -120
- package/components/tree/tree-element.vue +5 -18
- package/directive/index.js +17 -18
- package/package.json +1 -1
- package/components/form/address_ir.vue +0 -106
- package/components/form/datePicker/index.vue +0 -473
- package/components/iframe/index.vue +0 -67
- /package/components/form/{address.vue → addressInput/index.vue} +0 -0
- /package/components/form/{colorPicker → colorInput}/Alpha.vue +0 -0
- /package/components/form/{colorPicker → colorInput}/Hue.vue +0 -0
- /package/components/form/{colorPicker → colorInput}/Preview.vue +0 -0
- /package/components/form/{colorPicker → colorInput}/Saturation.vue +0 -0
- /package/components/form/{colorPicker → colorInput}/mixin.js +0 -0
- /package/components/form/{datePicker → dateInput}/month.vue +0 -0
- /package/components/form/{datePicker → dateInput}/year.vue +0 -0
- /package/components/form/{fileUploader → fileInput}/file.js +0 -0
- /package/components/form/{fileUploader → fileInput}/single.vue +0 -0
- /package/components/form/{form.vue → index.vue} +0 -0
- /package/components/form/{mask-input.vue → maskInput/index.vue} +0 -0
- /package/components/form/{password.vue → passwordInput/index.vue} +0 -0
- /package/components/form/{inputTel → telInput}/assets/all-countries.js +0 -0
- /package/components/form/{inputTel → telInput}/assets/flags.png +0 -0
- /package/components/form/{inputTel → telInput}/assets/flags@2x.png +0 -0
- /package/components/form/{inputTel → telInput}/assets/sprite.css +0 -0
- /package/components/form/{text-input.vue → textInput/index.vue} +0 -0
- /package/components/form/{timepicker → timeInput}/timepicker.vue +0 -0
- /package/components/form/{unique → uniqueInput}/index.vue +0 -0
package/components/map/index.vue
CHANGED
|
@@ -98,8 +98,8 @@ export default {
|
|
|
98
98
|
this.$r.icons.crosshairs_gps = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M12 8a4 4 0 0 1 4 4a4 4 0 0 1-4 4a4 4 0 0 1-4-4a4 4 0 0 1 4-4m-8.95 5H1v-2h2.05C3.5 6.83 6.83 3.5 11 3.05V1h2v2.05c4.17.45 7.5 3.78 7.95 7.95H23v2h-2.05c-.45 4.17-3.78 7.5-7.95 7.95V23h-2v-2.05C6.83 20.5 3.5 17.17 3.05 13M12 5a7 7 0 0 0-7 7a7 7 0 0 0 7 7a7 7 0 0 0 7-7a7 7 0 0 0-7-7Z"/></svg>'
|
|
99
99
|
}
|
|
100
100
|
},
|
|
101
|
-
|
|
102
|
-
|
|
101
|
+
mounted() {
|
|
102
|
+
this.add();
|
|
103
103
|
},
|
|
104
104
|
watch: {
|
|
105
105
|
modelValue: function (n, o) {
|
|
@@ -300,18 +300,19 @@ export default {
|
|
|
300
300
|
break;
|
|
301
301
|
}
|
|
302
302
|
},
|
|
303
|
-
|
|
303
|
+
add() {
|
|
304
304
|
import('./leaflet.css')
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
305
|
+
import('./leaflet').then(()=>{
|
|
306
|
+
this.L = global.L
|
|
307
|
+
this.run();
|
|
308
|
+
})
|
|
308
309
|
},
|
|
309
310
|
}
|
|
310
311
|
};
|
|
311
312
|
</script>
|
|
312
313
|
|
|
313
314
|
<style lang="scss">
|
|
314
|
-
@import "
|
|
315
|
+
@import "../../style/include";
|
|
315
316
|
|
|
316
317
|
.#{$prefix}map {
|
|
317
318
|
position: relative;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * as rMapRoute from './route.vue'
|
|
2
|
+
export * as l_map from './index.js'
|
|
3
|
+
export * as l_container from '../container/index.js'
|
|
4
|
+
export * as l_row from '../container/row.js'
|
|
5
|
+
export * as l_col from '../container/col.js'
|
|
6
|
+
export * as l_divider from '../container/divider.js'
|
|
7
|
+
export * as l_spacer from '../container/spacer.js'
|
|
8
|
+
export * as l_btn from '../button/index.js'
|
|
9
|
+
export * as l_icon from '../icon/index.js'
|
package/components/map/route.vue
CHANGED
package/components/meta/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<teleport :to="`.${$r.prefix}app`">
|
|
2
|
+
<teleport v-if="show" :to="`.${$r.prefix}app`">
|
|
3
3
|
<div v-if="modelValue&&!noOverlay" :class="{
|
|
4
4
|
[`${$r.prefix}modal-overlay`]:true
|
|
5
5
|
}"></div>
|
|
@@ -64,7 +64,8 @@ export default {
|
|
|
64
64
|
data() {
|
|
65
65
|
return {
|
|
66
66
|
state: null,
|
|
67
|
-
run_animate: false
|
|
67
|
+
run_animate: false,
|
|
68
|
+
show: false,
|
|
68
69
|
}
|
|
69
70
|
},
|
|
70
71
|
created() {
|
|
@@ -74,6 +75,9 @@ export default {
|
|
|
74
75
|
this.$emit('update:modelValue', true)
|
|
75
76
|
}
|
|
76
77
|
}
|
|
78
|
+
setTimeout(()=>{
|
|
79
|
+
this.show=true
|
|
80
|
+
},10)
|
|
77
81
|
},
|
|
78
82
|
watch: {
|
|
79
83
|
'$route': function (n) {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as rNestable from './index.vue'
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
</template>
|
|
34
34
|
|
|
35
35
|
<script>
|
|
36
|
-
import
|
|
36
|
+
import {defineAsyncComponent} from 'vue'
|
|
37
37
|
import methods from "./methods";
|
|
38
38
|
import editable from "./editable";
|
|
39
39
|
|
|
40
40
|
export default {
|
|
41
41
|
name: "r-nestable",
|
|
42
42
|
components: {
|
|
43
|
-
NestableItem,
|
|
43
|
+
NestableItem:defineAsyncComponent(()=>import('./NestableItem.vue')),
|
|
44
44
|
},
|
|
45
45
|
mixins: [methods, editable],
|
|
46
46
|
props: {
|
|
@@ -87,7 +87,7 @@ export default {
|
|
|
87
87
|
};
|
|
88
88
|
</script>
|
|
89
89
|
<style lang="scss">
|
|
90
|
-
@import "
|
|
90
|
+
@import "../../style/include";
|
|
91
91
|
|
|
92
92
|
.#{$prefix}nestable {
|
|
93
93
|
.nestable-handle {
|
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
</div>
|
|
31
31
|
</template>
|
|
32
32
|
<script>
|
|
33
|
-
import
|
|
33
|
+
import {defineAsyncComponent} from 'vue'
|
|
34
34
|
|
|
35
35
|
export default {
|
|
36
36
|
components: {
|
|
37
|
-
notification:
|
|
37
|
+
notification: defineAsyncComponent(()=>import('./notification.vue'))
|
|
38
38
|
},
|
|
39
39
|
props: {
|
|
40
40
|
permanent: {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as rProgressCircle from './circle.vue'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as rProgressLine from './line.vue'
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * as rSearchBox from './index.vue'
|
|
2
|
+
export * as l_line from '../progress/line.js'
|
|
3
|
+
export * as l_btn from '../button/index.js'
|
|
4
|
+
export * as l_card from '../card/index.js'
|
|
5
|
+
export * as l_list from '../list/index.js'
|
|
6
|
+
export * as l_icon from '../icon/index.js'
|
|
7
|
+
export * as l_select from '../form/selectInput/index.js'
|
|
8
|
+
export * as d_clickOutside from '../../directive/clickOutSide/index.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as rSkeleton from './index.vue'
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export * as rTableCrud from './index.vue'
|
|
2
|
+
export * as l_table from '../index.js'
|
|
3
|
+
export * as l_modal from '../../modal/index.js'
|
|
4
|
+
export * as l_card from '../../card/index.js'
|
|
5
|
+
export * as l_form from '../../formCreator/index.js'
|
|
6
|
+
export * as l_btn from '../../button/index.js'
|
|
7
|
+
export * as l_icon from '../../icon/index.js'
|
|
8
|
+
export * as l_time from '../../timeAgo/index.js'
|
|
9
|
+
export * as l_confirm from '../../confirm/index.js'
|
|
10
|
+
export * as l_line from '../../progress/line.js'
|
|
11
|
+
export * as l_container from '../../container/index.js'
|
|
12
|
+
export * as l_row from '../../container/row.js'
|
|
13
|
+
export * as l_col from '../../container/col.js'
|
|
14
|
+
export * as l_divider from '../../container/divider.js'
|
|
15
|
+
export * as l_json from '../../form/jsonInput/index.js'
|
|
16
|
+
export * as l_text from '../../form/textInput/index.js'
|
|
17
|
+
export * as l_select from '../../form/selectInput/index.js'
|
|
18
|
+
export * as l_date from '../../form/dateInput/index.js'
|
|
19
|
+
export * as l_number from '../../form/numberInput/index.js'
|
|
20
|
+
export * as l_switch from '../../form/switchInput/index.js'
|