renusify 2.0.0 → 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/app/style.scss +2 -2
- package/components/bar/bottomNavigationCircle.vue +4 -4
- package/components/bar/scss/bottomNav.scss +3 -4
- package/components/bar/scss/toolbar.scss +5 -3
- 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 +3 -4
- package/components/calendar/index.vue +24 -22
- 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/chatInput.vue +1 -0
- package/components/chat/chatMsg.vue +2 -2
- package/components/chat/index.vue +2 -2
- package/components/chip/style.scss +6 -2
- package/components/codeEditor/index.vue +2 -2
- package/components/confirm/index.vue +0 -2
- package/components/container/style.scss +1 -1
- package/components/cropper/index.vue +1 -1
- package/components/form/camInput.vue +2 -2
- package/components/form/checkbox.vue +3 -2
- package/components/form/colorPicker/index.vue +9 -4
- package/components/form/colorPicker/picker.vue +0 -5
- package/components/form/datePicker/index.vue +9 -9
- 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 +18 -8
- package/components/form/inputTel/index.vue +3 -3
- package/components/form/json/JsonView.vue +3 -3
- package/components/form/json/index.vue +4 -4
- package/components/form/radioInput.vue +3 -3
- package/components/form/range.vue +2 -2
- package/components/form/rating.vue +2 -2
- package/components/form/switch.vue +3 -3
- package/components/form/text-editor/index.vue +555 -549
- package/components/form/text-editor/style.scss +12 -2
- package/components/form/timepicker/index.vue +6 -4
- package/components/form/timepicker/range.vue +4 -4
- package/components/form/timepicker/timepicker.vue +3 -3
- package/components/form/unit-input.vue +1 -1
- package/components/formCreator/index.vue +2 -2
- package/components/infinite/index.vue +5 -5
- package/components/list/style.scss +5 -15
- package/components/map/index.vue +0 -1
- package/components/map/route.vue +4 -2
- package/components/menu/index.vue +1 -1
- package/components/modal/style.scss +3 -1
- package/components/notify/index.vue +3 -2
- package/components/progress/line.vue +26 -27
- package/components/progress/style.scss +3 -3
- package/components/searchBox/index.vue +3 -7
- 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/table/style.scss +2 -2
- package/components/tabs/index.vue +1 -1
- package/package.json +1 -1
- package/tools/helper.js +4 -3
|
@@ -44,7 +44,7 @@ export default {
|
|
|
44
44
|
z-index: map_get($z-index, "default");
|
|
45
45
|
background-color: var(--color-sheet);
|
|
46
46
|
color: var(--color-on-sheet);
|
|
47
|
-
|
|
47
|
+
@include typography($headings, 'body-3');
|
|
48
48
|
|
|
49
49
|
.navigation-item {
|
|
50
50
|
width: 100%;
|
|
@@ -80,15 +80,15 @@ export default {
|
|
|
80
80
|
.navigation-item-icon {
|
|
81
81
|
transition: 0.3s all ease-in-out;
|
|
82
82
|
bottom: 31px;
|
|
83
|
-
background-color:
|
|
83
|
+
background-color: var(--color-one);
|
|
84
84
|
border-radius: 50%;
|
|
85
85
|
padding: 12px;
|
|
86
86
|
width: 50px;
|
|
87
87
|
height: 50px;
|
|
88
|
-
border: 3px solid
|
|
88
|
+
border: 3px solid var(--color-on-one);
|
|
89
89
|
|
|
90
90
|
.#{$prefix}icon {
|
|
91
|
-
color:
|
|
91
|
+
color: var(--color-on-one);
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
94
|
}
|
|
@@ -9,13 +9,12 @@ $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
|
-
|
|
13
|
-
|
|
14
|
-
background-color: var(--color-sheet);
|
|
12
|
+
background-color: var(--color-sheet-container);
|
|
15
13
|
color: var(--color-on-sheet);
|
|
14
|
+
@include typography($headings, 'body-3');
|
|
16
15
|
|
|
17
16
|
.router-link-exact-active {
|
|
18
|
-
color: var(--color-one)
|
|
17
|
+
color: var(--color-one)
|
|
19
18
|
}
|
|
20
19
|
|
|
21
20
|
.#{$prefix}btn {
|
|
@@ -2,17 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
.#{$prefix}toolbar {
|
|
4
4
|
flex: 1 1 auto;
|
|
5
|
+
background-color: var(--color-sheet-container);
|
|
6
|
+
color: var(--color-on-sheet);
|
|
5
7
|
|
|
6
8
|
.toolbar-mobile {
|
|
7
|
-
.toolbar-close{
|
|
9
|
+
.toolbar-close {
|
|
8
10
|
width: 40px;
|
|
9
11
|
height: 40px;
|
|
10
12
|
position: absolute;
|
|
11
13
|
transition: 2s all map-get($transition, 'swing');
|
|
12
|
-
@include rtl(){
|
|
14
|
+
@include rtl() {
|
|
13
15
|
right: -40px;
|
|
14
16
|
}
|
|
15
|
-
@include ltr(){
|
|
17
|
+
@include ltr() {
|
|
16
18
|
left: -40px;
|
|
17
19
|
}
|
|
18
20
|
}
|
|
@@ -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)
|
|
@@ -59,7 +59,7 @@ $btn-transition: opacity 0.2s map-get($transition, 'ease-in-out') !default;
|
|
|
59
59
|
white-space: nowrap;
|
|
60
60
|
|
|
61
61
|
&:not(.btn-text):not(.btn-outlined) {
|
|
62
|
-
background-color: var(--color-sheet);
|
|
62
|
+
background-color: var(--color-sheet-container-low);
|
|
63
63
|
color: var(--color-on-sheet);
|
|
64
64
|
}
|
|
65
65
|
|
|
@@ -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
|
|
|
@@ -111,7 +111,7 @@ export default {
|
|
|
111
111
|
year: Number,
|
|
112
112
|
month: Number,
|
|
113
113
|
},
|
|
114
|
-
emits:['change','select'],
|
|
114
|
+
emits: ['change', 'select'],
|
|
115
115
|
data() {
|
|
116
116
|
return {
|
|
117
117
|
tab: 'day',
|
|
@@ -322,32 +322,34 @@ export default {
|
|
|
322
322
|
position: relative;
|
|
323
323
|
display: inline-block;
|
|
324
324
|
font-size: 10px;
|
|
325
|
-
color: #303030;
|
|
326
325
|
overflow-x: auto;
|
|
327
326
|
max-width: 100%;
|
|
328
|
-
.cell, .headCell {
|
|
329
|
-
border: 1px solid var(--color-border);
|
|
330
|
-
}
|
|
331
|
-
.cell {
|
|
332
327
|
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
}
|
|
337
|
-
}
|
|
328
|
+
.cell, .headCell {
|
|
329
|
+
border: 1px solid var(--color-border);
|
|
330
|
+
}
|
|
338
331
|
|
|
339
|
-
|
|
340
|
-
.cellContent {
|
|
341
|
-
border: solid 1px var(--color-one);
|
|
342
|
-
}
|
|
343
|
-
}
|
|
332
|
+
.cell {
|
|
344
333
|
|
|
334
|
+
&.today {
|
|
335
|
+
.cellContent {
|
|
336
|
+
border: solid 1px var(--color-one);
|
|
337
|
+
}
|
|
345
338
|
}
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
339
|
+
|
|
340
|
+
&.selectable:hover {
|
|
341
|
+
.cellContent {
|
|
342
|
+
border: solid 1px var(--color-one);
|
|
343
|
+
}
|
|
349
344
|
}
|
|
350
345
|
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.cell.disabled {
|
|
349
|
+
background-color: var(--color-border);
|
|
350
|
+
opacity: 0.3;
|
|
351
|
+
}
|
|
352
|
+
|
|
351
353
|
|
|
352
354
|
.table {
|
|
353
355
|
width: 100%;
|
|
@@ -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);
|
|
75
|
-
border-color: var(--color-sheet);
|
|
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>
|
|
@@ -170,7 +170,7 @@ export default {
|
|
|
170
170
|
height: 30px;
|
|
171
171
|
border-radius: 50%;
|
|
172
172
|
|
|
173
|
-
background-color: var(--color-sheet
|
|
173
|
+
background-color: var(--color-sheet);
|
|
174
174
|
|
|
175
175
|
position: absolute;
|
|
176
176
|
top: -15px;
|
|
@@ -110,7 +110,7 @@ export default {
|
|
|
110
110
|
flex-direction: column;
|
|
111
111
|
align-items: stretch;
|
|
112
112
|
overflow: hidden;
|
|
113
|
-
background: var(--color-sheet
|
|
114
|
-
color: var(--color-on-sheet
|
|
113
|
+
background: var(--color-sheet);
|
|
114
|
+
color: var(--color-on-sheet);
|
|
115
115
|
}
|
|
116
116
|
</style>
|
|
@@ -56,8 +56,8 @@ $icon-sizes: (
|
|
|
56
56
|
border-color: var(--color-border);
|
|
57
57
|
|
|
58
58
|
&:not(.chip-active) {
|
|
59
|
-
background: var(--color-
|
|
60
|
-
color: var(--color-on-
|
|
59
|
+
background: var(--color-sheet-container-low);
|
|
60
|
+
color: var(--color-on-sheet);
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
@include states();
|
|
@@ -124,6 +124,10 @@ $icon-sizes: (
|
|
|
124
124
|
background-color: var(--color-one);
|
|
125
125
|
color: var(--color-on-one);
|
|
126
126
|
|
|
127
|
+
.chip-close {
|
|
128
|
+
color: var(--color-on-one);
|
|
129
|
+
}
|
|
130
|
+
|
|
127
131
|
.#{$prefix}icon {
|
|
128
132
|
color: inherit;
|
|
129
133
|
padding: 0 3px;
|
|
@@ -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
|
|
|
@@ -70,7 +70,7 @@ $divider-inset-margin: 72px !default;
|
|
|
70
70
|
max-height: 0px;
|
|
71
71
|
transition: inherit;
|
|
72
72
|
|
|
73
|
-
border-top: solid thin var(--color-border);
|
|
73
|
+
border-top: solid thin var(--color-border-low);
|
|
74
74
|
|
|
75
75
|
&.divider-inset:not(.divider-vertical) {
|
|
76
76
|
max-width: calc(100% - #{$divider-inset-margin});
|
|
@@ -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>
|
|
@@ -72,7 +72,7 @@ emits:['update:modelValue'],
|
|
|
72
72
|
cursor: pointer;
|
|
73
73
|
|
|
74
74
|
.checkbox-input {
|
|
75
|
-
border: 1px solid var(--color-
|
|
75
|
+
border: 1px solid var(--color-on-sheet-low)
|
|
76
76
|
}
|
|
77
77
|
|
|
78
78
|
.#{$prefix}icon {
|
|
@@ -145,6 +145,7 @@ emits:['update:modelValue'],
|
|
|
145
145
|
|
|
146
146
|
.checkbox-select {
|
|
147
147
|
background-color: currentColor;
|
|
148
|
+
border: 0;
|
|
148
149
|
}
|
|
149
150
|
}
|
|
150
151
|
</style>
|