renusify 2.0.1 → 2.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/components/bar/scss/bottomNav.scss +1 -1
- package/components/bar/scss/toolbar.scss +1 -1
- package/components/bar/toolbar/menuChilds.vue +3 -3
- package/components/bar/toolbar/menuLaptop.vue +16 -16
- package/components/bar/toolbar/menuMob.vue +11 -11
- package/components/bar/toolbar/mixin.js +0 -2
- package/components/bar/toolbar/mobile.vue +2 -2
- package/components/breadcrumb/index.vue +5 -6
- package/components/breadcrumb/style.scss +4 -0
- package/components/button/style.scss +2 -3
- package/components/calendar/index.vue +3 -3
- package/components/calendar/month.vue +1 -1
- package/components/calendar/year.vue +1 -1
- package/components/card/index.vue +15 -15
- package/components/card/style.scss +15 -18
- package/components/chart/worldMap.vue +3 -1
- package/components/chat/chatMsg.vue +1 -1
- package/components/codeEditor/index.vue +2 -2
- package/components/confirm/index.vue +0 -2
- package/components/cropper/index.vue +1 -1
- package/components/form/camInput.vue +2 -2
- package/components/form/checkbox.vue +1 -1
- package/components/form/colorPicker/index.vue +1 -1
- package/components/form/datePicker/index.vue +4 -4
- package/components/form/datePicker/month.vue +1 -1
- package/components/form/datePicker/year.vue +1 -1
- package/components/form/fileUploader/single.vue +0 -2
- package/components/form/input.vue +1 -1
- package/components/form/inputTel/index.vue +2 -2
- package/components/form/json/JsonView.vue +1 -1
- package/components/form/radioInput.vue +2 -2
- package/components/form/rating.vue +1 -1
- package/components/form/switch.vue +3 -3
- package/components/form/text-editor/index.vue +555 -549
- package/components/form/text-editor/style.scss +11 -1
- package/components/form/timepicker/index.vue +4 -4
- package/components/form/timepicker/range.vue +4 -4
- package/components/form/timepicker/timepicker.vue +3 -3
- package/components/formCreator/index.vue +2 -2
- package/components/infinite/index.vue +5 -5
- package/components/map/index.vue +0 -1
- package/components/map/route.vue +3 -1
- package/components/menu/index.vue +1 -1
- package/components/modal/style.scss +2 -0
- package/components/notify/index.vue +3 -2
- package/components/searchBox/index.vue +1 -5
- package/components/slider/index.vue +2 -2
- package/components/table/crud/header.vue +15 -15
- package/components/table/crud/index.vue +8 -5
- package/components/table/index.vue +0 -2
- package/components/tabs/index.vue +1 -1
- package/package.json +1 -1
- package/tools/helper.js +4 -3
|
@@ -9,7 +9,7 @@ $bottom-nav-btn-font-size: map-metro-get($headings, 'label-1', 'size') !default;
|
|
|
9
9
|
justify-content: center;
|
|
10
10
|
width: 100%;
|
|
11
11
|
height: $bottom-nav-height;
|
|
12
|
-
background-color: var(--color-sheet);
|
|
12
|
+
background-color: var(--color-sheet-container);
|
|
13
13
|
color: var(--color-on-sheet);
|
|
14
14
|
@include typography($headings, 'body-3');
|
|
15
15
|
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
<div v-for="(item,i) in menu" :key="i">
|
|
4
4
|
<div class="d-flex h-space-between">
|
|
5
5
|
<component class="menu-title py-1 cursor-pointer"
|
|
6
|
-
|
|
7
|
-
@click="item.hash&&go(item.hash)"
|
|
8
|
-
|
|
6
|
+
:is="item.to?'router-link':'span'"
|
|
7
|
+
@click.prevent="item.hash&&go(item.hash)"
|
|
8
|
+
:to="item.to">{{item.title}}</component>
|
|
9
9
|
<r-icon class="me-1" v-if="item.childs" v-html="open===i?$r.icons.minus:$r.icons.plus"
|
|
10
10
|
@click.prevent.stop="open===i?open=null:open=i"></r-icon>
|
|
11
11
|
</div>
|
|
@@ -4,30 +4,30 @@
|
|
|
4
4
|
class="toolbar-item me-2 cursor-pointer"
|
|
5
5
|
v-for="(item,i) in menu"
|
|
6
6
|
:key="i"
|
|
7
|
-
@click="item.hash&&go(item.hash)"
|
|
7
|
+
@click.prevent="item.hash&&go(item.hash)"
|
|
8
8
|
:to="item.to">
|
|
9
9
|
{{item.title}}
|
|
10
10
|
<r-icon v-if="item.childs" v-html="$r.icons.chevron_down"></r-icon>
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
<div v-if="item.childs" class="toolbar-childs mt-7">
|
|
12
|
+
<menu-childs class="pa-2" :menu="item.childs"></menu-childs>
|
|
13
|
+
</div>
|
|
14
14
|
</component>
|
|
15
15
|
</div>
|
|
16
16
|
</template>
|
|
17
17
|
<script>
|
|
18
|
-
|
|
18
|
+
import MenuChilds from "./menuChilds";
|
|
19
19
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
20
|
+
export default {
|
|
21
|
+
name: 'menu-laptop',
|
|
22
|
+
components: {MenuChilds},
|
|
23
|
+
props: {menu: Array},
|
|
24
|
+
data() {
|
|
25
|
+
return {}
|
|
26
|
+
},
|
|
27
|
+
methods: {
|
|
28
|
+
go(hash) {
|
|
29
|
+
if (this.$route.name !== hash.to.name) {
|
|
30
|
+
this.$router.push(hash.to)
|
|
31
31
|
}
|
|
32
32
|
setTimeout(()=>{
|
|
33
33
|
const el=document.getElementById(hash.id)
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="toolbar-mobile" :class="{'toolbar-open':modelValue}">
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
</div>
|
|
3
|
+
<div class="shadow" @click.prevent="close">
|
|
4
|
+
<aside class="toolbar-side pt-5">
|
|
5
|
+
<div v-if="logo" class="text-center">
|
|
6
|
+
<r-img :src="logo" alt="logo" :width="logoW" :height="logoH"></r-img>
|
|
7
|
+
<r-divider class="my-5"></r-divider>
|
|
8
|
+
</div>
|
|
9
|
+
<menu-childs :menu="menu"></menu-childs>
|
|
10
|
+
</aside>
|
|
11
|
+
<div class="toolbar-close pa-2" @click.prevent="close">
|
|
12
|
+
<r-icon v-html="$r.icons.close"></r-icon>
|
|
14
13
|
</div>
|
|
14
|
+
</div>
|
|
15
15
|
</div>
|
|
16
16
|
</template>
|
|
17
17
|
<script>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<header>
|
|
4
4
|
<r-container class="pa-0">
|
|
5
5
|
<div class="toolbar-content">
|
|
6
|
-
<r-btn icon text @click="open=!open">
|
|
7
|
-
|
|
6
|
+
<r-btn icon text @click.prevent="open=!open">
|
|
7
|
+
<r-icon v-html="$r.icons.menu"></r-icon>
|
|
8
8
|
</r-btn>
|
|
9
9
|
<r-spacer></r-spacer>
|
|
10
10
|
<div v-if="search" class="mt-n5">
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<r-breadcrumb-item :href="item.href"
|
|
9
9
|
:item="item"
|
|
10
10
|
:to="item.to"
|
|
11
|
-
@click="go(item)"></r-breadcrumb-item>
|
|
11
|
+
@click.prevent="go(item)"></r-breadcrumb-item>
|
|
12
12
|
</li>
|
|
13
13
|
</ul>
|
|
14
14
|
</transition>
|
|
@@ -36,11 +36,10 @@ export default {
|
|
|
36
36
|
},
|
|
37
37
|
emits:['click'],
|
|
38
38
|
computed: {
|
|
39
|
-
classes(){
|
|
40
|
-
let a={
|
|
41
|
-
a[`sheet`]=this.sheet
|
|
42
|
-
a[`
|
|
43
|
-
a[`${this.$r.prefix}breadcrumbs`]=true
|
|
39
|
+
classes() {
|
|
40
|
+
let a = {}
|
|
41
|
+
a[`breadcrumbs-sheet`] = this.sheet
|
|
42
|
+
a[`${this.$r.prefix}breadcrumbs`] = true
|
|
44
43
|
return a
|
|
45
44
|
},
|
|
46
45
|
genItems () {
|
|
@@ -10,6 +10,10 @@
|
|
|
10
10
|
margin: 0 !important;
|
|
11
11
|
padding: 0 14px;
|
|
12
12
|
|
|
13
|
+
&.breadcrumbs-sheet {
|
|
14
|
+
background-color: var(--color-sheet-container);
|
|
15
|
+
color: var(--color-on-sheet);
|
|
16
|
+
}
|
|
13
17
|
|
|
14
18
|
.breadcrumb-divider, .breadcrumb-item-disabled, .#{$prefix}icon {
|
|
15
19
|
color: var(--color-border)
|
|
@@ -341,9 +341,8 @@ $btn-transition: opacity 0.2s map-get($transition, 'ease-in-out') !default;
|
|
|
341
341
|
|
|
342
342
|
.#{$prefix}button-group {
|
|
343
343
|
position: relative;
|
|
344
|
-
color: var(--color-on-sheet)
|
|
345
|
-
background-color: var(--color-sheet-
|
|
346
|
-
|
|
344
|
+
color: var(--color-on-sheet);
|
|
345
|
+
background-color: var(--color-sheet-container);
|
|
347
346
|
@include states();
|
|
348
347
|
|
|
349
348
|
.btn-container {
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
today: item.today
|
|
55
55
|
}"
|
|
56
56
|
:key="item.date"
|
|
57
|
-
@click="item.date!==0 &&!readonly&& selectDateItem(item)"
|
|
57
|
+
@click.prevent="item.date!==0 &&!readonly&& selectDateItem(item)"
|
|
58
58
|
>
|
|
59
59
|
<div
|
|
60
60
|
class="cellContent"
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
</table>
|
|
72
72
|
|
|
73
73
|
<r-modal :model-value="tab!=='day'" @update:model-value="tab='day'">
|
|
74
|
-
<
|
|
74
|
+
<div class="py-5">
|
|
75
75
|
<year-tab v-if="tab==='year'"
|
|
76
76
|
:model-value='currentPeriod.year'
|
|
77
77
|
@update:model-value="(tab='month',setYear($event))"
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
:timezoneOffset="lang_zone_offset-timezoneOffset"
|
|
85
85
|
:locale="locale"
|
|
86
86
|
:year="currentPeriod.year"></month-tab>
|
|
87
|
-
</
|
|
87
|
+
</div>
|
|
88
88
|
</r-modal>
|
|
89
89
|
</div>
|
|
90
90
|
|
|
@@ -7,20 +7,20 @@
|
|
|
7
7
|
</template>
|
|
8
8
|
|
|
9
9
|
<script>
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
import {roots} from '../../tools/rootable';
|
|
11
|
+
import './style.scss';
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
13
|
+
export default {
|
|
14
|
+
name: 'r-card',
|
|
15
|
+
mixins: [roots],
|
|
16
|
+
props: {
|
|
17
|
+
flat: Boolean,
|
|
18
|
+
hover: Boolean,
|
|
19
|
+
tile: Boolean,
|
|
20
|
+
outlined: Boolean,
|
|
21
|
+
isRipple: {
|
|
22
|
+
type: Boolean,
|
|
23
|
+
default: true
|
|
24
24
|
},
|
|
25
25
|
draggable:{
|
|
26
26
|
type:Boolean,
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
if (this.flat) {
|
|
49
49
|
c += ' card-flat';
|
|
50
50
|
}else{
|
|
51
|
-
|
|
51
|
+
c += ' card-sheet';
|
|
52
52
|
}
|
|
53
53
|
if (this.hover) {
|
|
54
54
|
c += ' card-hover';
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
c += ' card-outlined';
|
|
58
58
|
}
|
|
59
59
|
if (this.tile) {
|
|
60
|
-
|
|
60
|
+
c += ' card-tile';
|
|
61
61
|
}
|
|
62
62
|
if (this.isClickable) {
|
|
63
63
|
c += ' card-link';
|
|
@@ -12,6 +12,21 @@
|
|
|
12
12
|
overflow-wrap: break-word;
|
|
13
13
|
white-space: normal;
|
|
14
14
|
|
|
15
|
+
&.card-sheet {
|
|
16
|
+
display: block;
|
|
17
|
+
transition: box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
18
|
+
@include elevation('md');
|
|
19
|
+
border-radius: map_get($borders, 'md');
|
|
20
|
+
background-color: var(--color-sheet-container);
|
|
21
|
+
border-color: var(--color-sheet-container);
|
|
22
|
+
color: var(--color-on-sheet);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
&.card-tile {
|
|
26
|
+
border-radius: 0;
|
|
27
|
+
@include elevation('none');
|
|
28
|
+
}
|
|
29
|
+
|
|
15
30
|
&.card-outlined {
|
|
16
31
|
border: 1px solid var(--color-border)
|
|
17
32
|
}
|
|
@@ -64,24 +79,6 @@
|
|
|
64
79
|
}
|
|
65
80
|
}
|
|
66
81
|
|
|
67
|
-
//sheet
|
|
68
|
-
|
|
69
|
-
.sheet {
|
|
70
|
-
display: block;
|
|
71
|
-
transition: box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
72
|
-
@include elevation('md');
|
|
73
|
-
border-radius: map_get($borders, 'md');
|
|
74
|
-
background-color: var(--color-sheet-container-low);
|
|
75
|
-
border-color: var(--color-sheet-container-low);
|
|
76
|
-
color: var(--color-on-sheet);
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
&-tile {
|
|
80
|
-
border-radius: 0;
|
|
81
|
-
@include elevation('none');
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
|
|
85
82
|
|
|
86
83
|
|
|
87
84
|
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
class="map-tooltip"
|
|
21
21
|
>
|
|
22
22
|
<slot :tooltip="tooltip">
|
|
23
|
-
<div class="pa-3
|
|
23
|
+
<div class="pa-3">
|
|
24
24
|
{{ tooltip.country }}
|
|
25
25
|
</div>
|
|
26
26
|
</slot>
|
|
@@ -1103,6 +1103,8 @@ export default {
|
|
|
1103
1103
|
}
|
|
1104
1104
|
|
|
1105
1105
|
.map-tooltip {
|
|
1106
|
+
background-color: var(--color-sheet-container);
|
|
1107
|
+
color: var(--color-on-sheet);
|
|
1106
1108
|
position: absolute;
|
|
1107
1109
|
z-index: 1;
|
|
1108
1110
|
}
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<div class="message-text body-1">
|
|
21
21
|
<div v-if="!isMe" class="message-username title-3">{{ user.name }}
|
|
22
22
|
</div>
|
|
23
|
-
<div v-if="msg.type==='file'" @click="$helper.download('/'+msg.link)">
|
|
23
|
+
<div v-if="msg.type==='file'" @click.prevent="$helper.download('/'+msg.link)">
|
|
24
24
|
<div class="mx-n2 mt-n1" v-if="isImg(msg.link)">
|
|
25
25
|
<r-img class="br-sm" :src="'/'+msg.link" alt="img" width="250" :w-p-h="isImg(msg.link)"></r-img>
|
|
26
26
|
</div>
|
|
@@ -17,11 +17,11 @@
|
|
|
17
17
|
>
|
|
18
18
|
P
|
|
19
19
|
</r-btn>
|
|
20
|
-
<r-btn v-if="show === 'code' && runnable" class="color-white-text" text @click="show = 'run'">
|
|
20
|
+
<r-btn v-if="show === 'code' && runnable" class="color-white-text" text @click.prevent="show = 'run'">
|
|
21
21
|
run
|
|
22
22
|
<r-icon v-html="$r.icons.play" exact></r-icon>
|
|
23
23
|
</r-btn>
|
|
24
|
-
<r-btn v-if="show === 'run'" class="color-white-text" text @click="show = 'code'">
|
|
24
|
+
<r-btn v-if="show === 'run'" class="color-white-text" text @click.prevent="show = 'code'">
|
|
25
25
|
<r-icon v-html="$r.icons.code_tags" exact></r-icon>
|
|
26
26
|
</r-btn>
|
|
27
27
|
</div>
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<r-modal :closebtn="false" :model-value="modelValue">
|
|
3
|
-
<r-card>
|
|
4
3
|
<r-container class="container-fluid">
|
|
5
4
|
<r-row>
|
|
6
5
|
<r-col class="col-12 text-center">
|
|
@@ -38,7 +37,6 @@
|
|
|
38
37
|
</r-btn>
|
|
39
38
|
</r-row>
|
|
40
39
|
</r-container>
|
|
41
|
-
</r-card>
|
|
42
40
|
</r-modal>
|
|
43
41
|
</template>
|
|
44
42
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
</div>
|
|
27
27
|
<div class="action d-flex">
|
|
28
28
|
<template v-if="show">
|
|
29
|
-
<r-btn @click="getCrop">{{ $t("crop", "renusify") }}</r-btn>
|
|
29
|
+
<r-btn @click.prevent="getCrop">{{ $t("crop", "renusify") }}</r-btn>
|
|
30
30
|
<r-spacer></r-spacer>
|
|
31
31
|
<r-btn icon tile @click.prevent="zoomIn()">+</r-btn>
|
|
32
32
|
<r-btn icon tile @click.prevent="zoomOut()">-</r-btn>
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
:height="height"
|
|
15
15
|
controls
|
|
16
16
|
></video>
|
|
17
|
-
<r-btn @click="dlt(vid)"
|
|
17
|
+
<r-btn icon @click.prevent="dlt(vid)">
|
|
18
18
|
<r-icon v-html="$r.icons.delete" class="color-error-text"></r-icon>
|
|
19
19
|
</r-btn>
|
|
20
20
|
</span>
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
</svg>
|
|
80
80
|
</r-icon>
|
|
81
81
|
</r-btn>
|
|
82
|
-
<r-btn v-else class="color-error-text" icon @click="stop">
|
|
82
|
+
<r-btn v-else class="color-error-text" icon @click.prevent="stop">
|
|
83
83
|
<r-icon>
|
|
84
84
|
<svg
|
|
85
85
|
xmlns="http://www.w3.org/2000/svg"
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
v-html="$r.icons.check" exact></r-icon>
|
|
17
17
|
</transition>
|
|
18
18
|
</span>
|
|
19
|
-
<span class="ms-2" @click="emit">
|
|
19
|
+
<span class="ms-2" @click.prevent="emit">
|
|
20
20
|
<span class="color-error-text" v-if="isRequired">*</span>
|
|
21
21
|
<slot name="label">{{ label }}</slot>
|
|
22
22
|
</span>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<r-input class="mt-5" :model-value="modelValue" hide labelControlClass="label-active"
|
|
3
3
|
:class="`${$r.prefix}color-picker`">
|
|
4
|
-
<div
|
|
4
|
+
<div :style="{'background-color':modelValue||'#ffffff'}" class="shower" @click.prevent="open=true"></div>
|
|
5
5
|
<r-modal v-model="open" :closebtn="false" class="color-picker-modal" closable maxWidth="260px">
|
|
6
6
|
<picker :color="modelValue" @changeColor="emit"></picker>
|
|
7
7
|
<div class="d-flex h-space-between">
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
</r-input>
|
|
7
7
|
<r-modal :model-value="show" @update:model-value="close()" :closebtn="false" closable class="text-center">
|
|
8
8
|
<div v-if="!showTime" :class="`${$r.prefix}date-input`">
|
|
9
|
-
<div
|
|
9
|
+
<div>
|
|
10
10
|
<r-container>
|
|
11
11
|
<r-row>
|
|
12
12
|
<r-col class="col-auto">
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
today: item.today
|
|
76
76
|
}"
|
|
77
77
|
:key="item.date"
|
|
78
|
-
@click="item.date!==0 &&!readonly&& selectDateItem(item)"
|
|
78
|
+
@click.prevent="item.date!==0 &&!readonly&& selectDateItem(item)"
|
|
79
79
|
>
|
|
80
80
|
<div
|
|
81
81
|
class="cellContent d-flex h-center v-center"
|
|
@@ -97,8 +97,8 @@
|
|
|
97
97
|
v-model="time"
|
|
98
98
|
></timepicker>
|
|
99
99
|
<div class="mt-5">
|
|
100
|
-
<r-btn class="color-success mx-5" @click="selectTime">{{ $t('ok', 'renusify') }}</r-btn>
|
|
101
|
-
<r-btn class="color-error mx-5" @click="close">{{ $t('cancel', 'renusify') }}</r-btn>
|
|
100
|
+
<r-btn class="color-success mx-5" @click.prevent="selectTime">{{ $t('ok', 'renusify') }}</r-btn>
|
|
101
|
+
<r-btn class="color-error mx-5" @click.prevent="close">{{ $t('cancel', 'renusify') }}</r-btn>
|
|
102
102
|
</div>
|
|
103
103
|
|
|
104
104
|
</div>
|
|
@@ -41,10 +41,8 @@
|
|
|
41
41
|
v-if="showFile"
|
|
42
42
|
>
|
|
43
43
|
<r-modal v-model="showCrop" maxWidth="300px">
|
|
44
|
-
<r-card>
|
|
45
44
|
<r-cropper v-if="wPH&&file" :imgSrc="file" :selectImg="false" :w-p-h="wPH" get-blob showCropped
|
|
46
45
|
@cropped="file=$event,checkSave()"></r-cropper>
|
|
47
|
-
</r-card>
|
|
48
46
|
</r-modal>
|
|
49
47
|
</div>
|
|
50
48
|
</template>
|
|
@@ -376,7 +376,7 @@ export default {
|
|
|
376
376
|
justify-content: center;
|
|
377
377
|
position: relative;
|
|
378
378
|
border: solid 1px var(--color-sheet-low);
|
|
379
|
-
background-color: var(--color-sheet-container
|
|
379
|
+
background-color: var(--color-sheet-container);
|
|
380
380
|
|
|
381
381
|
.after-icon {
|
|
382
382
|
position: absolute;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<r-modal
|
|
4
4
|
v-model="open"
|
|
5
5
|
>
|
|
6
|
-
<
|
|
6
|
+
<div class="pa-2">
|
|
7
7
|
<r-text-input
|
|
8
8
|
:label="$t('search','renusify')"
|
|
9
9
|
v-model="search"
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
<span class="ltr">+{{ item.dialCode }}</span>
|
|
19
19
|
</template>
|
|
20
20
|
</r-list>
|
|
21
|
-
</
|
|
21
|
+
</div>
|
|
22
22
|
</r-modal>
|
|
23
23
|
<r-btn class="btn-country ltr ms-1"
|
|
24
24
|
:rounded="!c_tile" :disabled="!select||readonly" @click.stop="toggleDropdown" outlined>
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
v-for="(value,key) in modelValue"
|
|
4
4
|
:key="key">
|
|
5
5
|
<div class="d-flex v-center me-1">
|
|
6
|
-
<r-btn v-if="!disableDel"
|
|
6
|
+
<r-btn v-if="!disableDel" class="color-error-text" icon text @click.prevent="del(key)">
|
|
7
7
|
<r-icon v-html="$r.icons.delete"></r-icon>
|
|
8
8
|
</r-btn>
|
|
9
9
|
<div v-if="typeof value==='object'">{{ t(key) }}</div>
|
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
<span class="radio-input-item" :class="{
|
|
7
7
|
'br-circle':rounded,
|
|
8
8
|
'radio-input-select':current===item.value
|
|
9
|
-
}" @click="emit(item)">
|
|
9
|
+
}" @click.prevent="emit(item)">
|
|
10
10
|
<transition name="scale">
|
|
11
11
|
<r-icon v-if="current===item.value" class="color-white-text"
|
|
12
12
|
v-html="$r.icons.check" exact></r-icon>
|
|
13
13
|
</transition>
|
|
14
14
|
</span>
|
|
15
|
-
<span class="ms-2" @click="emit(item)">
|
|
15
|
+
<span class="ms-2" @click.prevent="emit(item)">
|
|
16
16
|
{{ item[text] }}
|
|
17
17
|
</span>
|
|
18
18
|
</div>
|
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
<div class="switch-label me-1 mt-1"
|
|
5
5
|
>{{label}}
|
|
6
6
|
</div>
|
|
7
|
-
<div class="switch-holder" @click="toggle()">
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
<div class="switch-holder" @click.prevent="toggle()">
|
|
8
|
+
<div class="switch-line"></div>
|
|
9
|
+
<div class="switch-dot"></div>
|
|
10
10
|
</div>
|
|
11
11
|
<div class="switch-label ms-1 mt-1"
|
|
12
12
|
v-if="label2">{{label2}}</div>
|