renusify 2.3.0 → 2.3.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/bottomNavigationCircle.vue +1 -0
- package/components/bar/scss/toolbar.scss +2 -2
- package/components/bar/toolbar/index.vue +29 -23
- package/components/bar/toolbar/laptop.vue +27 -25
- package/components/bar/toolbar/mobile.vue +28 -27
- package/components/breadcrumb/bredcrumbItem.vue +2 -2
- package/components/calendar/index.vue +25 -33
- package/components/calendar/month.vue +33 -8
- package/components/calendar/year.vue +18 -7
- package/components/card/index.vue +49 -49
- package/components/chart/chart.vue +2 -1
- package/components/chat/MessageList.vue +4 -4
- package/components/codeEditor/index.vue +3 -3
- package/components/float/index.vue +3 -3
- package/components/form/dateInput/index.vue +407 -413
- package/components/form/dateInput/month.vue +33 -9
- package/components/form/dateInput/year.vue +13 -7
- package/components/form/groupInput/index.js +2 -1
- package/components/form/groupInput/index.vue +13 -32
- package/components/form/jsonInput/index.vue +7 -7
- package/components/form/switchInput/index.vue +1 -1
- package/components/map/index.vue +1 -1
- package/components/notify/index.vue +6 -6
- package/components/table/crud/index.vue +82 -66
- package/components/table/index.vue +5 -8
- package/components/timeline/index.vue +5 -5
- package/components/tree/index.vue +2 -2
- package/directive/skeleton/style.scss +7 -5
- package/directive/sortable/index.js +1 -3
- package/package.json +1 -1
- package/style/app.scss +6 -2
- package/style/mixins/container.scss +6 -5
- package/style/variables/base.scss +2 -2
- package/tools/icons.js +3 -1
package/style/app.scss
CHANGED
|
@@ -13,7 +13,9 @@ html {
|
|
|
13
13
|
@include container.media-breakpoint-down('md') {
|
|
14
14
|
font-size: base.$font-size-root-mobile;
|
|
15
15
|
}
|
|
16
|
-
|
|
16
|
+
|
|
17
|
+
& {
|
|
18
|
+
text-rendering: optimizeLegibility;
|
|
17
19
|
-webkit-font-smoothing: antialiased;
|
|
18
20
|
-moz-osx-font-smoothing: grayscale;
|
|
19
21
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
@@ -21,7 +23,9 @@ html {
|
|
|
21
23
|
overflow-y: scroll;
|
|
22
24
|
overflow-x: hidden;
|
|
23
25
|
-webkit-text-size-adjust: 100%;
|
|
24
|
-
|
|
26
|
+
scroll-behavior: smooth;
|
|
27
|
+
}
|
|
28
|
+
;
|
|
25
29
|
}
|
|
26
30
|
|
|
27
31
|
body {
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
@use "sass:math";
|
|
5
5
|
@use "sass:map";
|
|
6
|
+
|
|
6
7
|
@mixin media-breakpoint-up($name, $breakpoints: base.$grid-breakpoints) {
|
|
7
8
|
$min: functions.breakpoint-min-width($name, $breakpoints) ;
|
|
8
9
|
@if $min {
|
|
@@ -36,14 +37,14 @@
|
|
|
36
37
|
@mixin make-row($gutter: base.$grid-gutter) {
|
|
37
38
|
display: flex;
|
|
38
39
|
margin-right: math.div($gutter, -2);
|
|
39
|
-
margin-left: math.div($gutter
|
|
40
|
+
margin-left: math.div($gutter, -2);
|
|
40
41
|
flex-wrap: wrap;
|
|
41
42
|
flex: 1 1 auto;
|
|
42
43
|
}
|
|
43
44
|
|
|
44
45
|
@mixin make-col($size, $columns: base.$grid-columns) {
|
|
45
|
-
max-width: math.percentage(math.div($size
|
|
46
|
-
flex: 0 0 math.percentage(math.div($size
|
|
46
|
+
max-width: math.percentage(math.div($size, $columns));
|
|
47
|
+
flex: 0 0 math.percentage(math.div($size, $columns));
|
|
47
48
|
}
|
|
48
49
|
|
|
49
50
|
|
|
@@ -56,12 +57,12 @@
|
|
|
56
57
|
@if ($bName=='') {
|
|
57
58
|
.col.col-#{$i} {
|
|
58
59
|
width: 100%;
|
|
59
|
-
padding: math.div($gutter
|
|
60
|
+
padding: math.div($gutter, 2);
|
|
60
61
|
}
|
|
61
62
|
} @else {
|
|
62
63
|
.col.#{$bNameClear}-#{$i} {
|
|
63
64
|
width: 100%;
|
|
64
|
-
padding: math.div($gutter
|
|
65
|
+
padding: math.div($gutter, 2);
|
|
65
66
|
}
|
|
66
67
|
}
|
|
67
68
|
|
|
@@ -9,12 +9,12 @@ $line-height-root: 1.5rem !default;
|
|
|
9
9
|
$spacer: 4px !default;
|
|
10
10
|
$spacers: ();
|
|
11
11
|
@for $i from 0 through 24 {
|
|
12
|
-
|
|
12
|
+
$spacers: map.merge($spacers, ($i: $spacer * $i))
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
$negative-spacers: ();
|
|
16
16
|
@for $i from 1 through 24 {
|
|
17
|
-
|
|
17
|
+
$negative-spacers: map.merge($negative-spacers, ("n" + $i: -$spacer * $i))
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
$borders: (
|
package/tools/icons.js
CHANGED
|
@@ -23,5 +23,7 @@ export let Icons = {
|
|
|
23
23
|
'attachment': '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M7.5 18A5.5 5.5 0 0 1 2 12.5A5.5 5.5 0 0 1 7.5 7H18a4 4 0 0 1 4 4a4 4 0 0 1-4 4H9.5A2.5 2.5 0 0 1 7 12.5A2.5 2.5 0 0 1 9.5 10H17v1.5H9.5a1 1 0 0 0-1 1a1 1 0 0 0 1 1H18a2.5 2.5 0 0 0 2.5-2.5A2.5 2.5 0 0 0 18 8.5H7.5a4 4 0 0 0-4 4a4 4 0 0 0 4 4H17V18H7.5Z"/></svg>',
|
|
24
24
|
'send': '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="m2 21l21-9L2 3v7l15 2l-15 2v7Z"/></svg>',
|
|
25
25
|
'sticker': '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M5.5 2C3.56 2 2 3.56 2 5.5v13C2 20.44 3.56 22 5.5 22H16l6-6V5.5C22 3.56 20.44 2 18.5 2h-13m.25 2h12.5A1.75 1.75 0 0 1 20 5.75V15h-1.5c-1.94 0-3.5 1.56-3.5 3.5V20H5.75A1.75 1.75 0 0 1 4 18.25V5.75A1.75 1.75 0 0 1 5.75 4m8.69 2.77c-.16 0-.32.02-.47.06c-.94.26-1.47 1.22-1.23 2.17c.05.15.12.3.21.44l3.23-.88c0-.17-.02-.34-.06-.51c-.21-.75-.9-1.28-1.68-1.28M8.17 8.5c-.17 0-.32 0-.47.05c-.93.26-1.48 1.22-1.23 2.15c.03.16.12.3.21.46l3.23-.88c0-.17-.02-.34-.06-.5A1.72 1.72 0 0 0 8.17 8.5m8.55 2.76l-9.13 2.51a5.266 5.266 0 0 0 5.36 1.64a5.273 5.273 0 0 0 3.77-4.15Z"/></svg>',
|
|
26
|
-
'search': '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5l-1.5 1.5l-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16A6.5 6.5 0 0 1 3 9.5A6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14S14 12 14 9.5S12 5 9.5 5Z"/></svg>'
|
|
26
|
+
'search': '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5l-1.5 1.5l-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16A6.5 6.5 0 0 1 3 9.5A6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14S14 12 14 9.5S12 5 9.5 5Z"/></svg>',
|
|
27
|
+
'drag': '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M7 19v-2h2v2H7m4 0v-2h2v2h-2m4 0v-2h2v2h-2m-8-4v-2h2v2H7m4 0v-2h2v2h-2m4 0v-2h2v2h-2m-8-4V9h2v2H7m4 0V9h2v2h-2m4 0V9h2v2h-2M7 7V5h2v2H7m4 0V5h2v2h-2m4 0V5h2v2h-2Z"/></svg>',
|
|
28
|
+
'setting': '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path fill="currentColor" d="M19.14 12.94c.04-.3.06-.61.06-.94c0-.32-.02-.64-.07-.94l2.03-1.58a.49.49 0 0 0 .12-.61l-1.92-3.32a.488.488 0 0 0-.59-.22l-2.39.96c-.5-.38-1.03-.7-1.62-.94l-.36-2.54a.484.484 0 0 0-.48-.41h-3.84c-.24 0-.43.17-.47.41l-.36 2.54c-.59.24-1.13.57-1.62.94l-2.39-.96c-.22-.08-.47 0-.59.22L2.74 8.87c-.12.21-.08.47.12.61l2.03 1.58c-.05.3-.09.63-.09.94s.02.64.07.94l-2.03 1.58a.49.49 0 0 0-.12.61l1.92 3.32c.12.22.37.29.59.22l2.39-.96c.5.38 1.03.7 1.62.94l.36 2.54c.05.24.24.41.48.41h3.84c.24 0 .44-.17.47-.41l.36-2.54c.59-.24 1.13-.56 1.62-.94l2.39.96c.22.08.47 0 .59-.22l1.92-3.32c.12-.22.07-.47-.12-.61l-2.01-1.58zM12 15.6c-1.98 0-3.6-1.62-3.6-3.6s1.62-3.6 3.6-3.6s3.6 1.62 3.6 3.6s-1.62 3.6-3.6 3.6z"/></svg>'
|
|
27
29
|
}
|