quasar-ui-danx 0.3.11 → 0.3.13
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/danx.es.js +5978 -5901
- package/dist/danx.es.js.map +1 -1
- package/dist/danx.umd.js +5 -5
- package/dist/danx.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/ActionTable/ActionMenu.vue +7 -7
- package/src/components/ActionTable/ActionTable.vue +55 -31
- package/src/components/ActionTable/ActionTableColumn.vue +37 -15
- package/src/components/ActionTable/ActionTableHeaderColumn.vue +9 -9
- package/src/components/ActionTable/Columns/ColumnListItem.vue +33 -10
- package/src/components/ActionTable/Columns/ColumnSettingsDialog.vue +23 -19
- package/src/components/ActionTable/Columns/TitleColumnFormat.vue +5 -3
- package/src/components/ActionTable/Columns/VisibleColumnsToggleButtons.vue +24 -22
- package/src/components/ActionTable/EmptyTableState.vue +4 -2
- package/src/components/ActionTable/Filters/CollapsableFiltersSidebar.vue +17 -9
- package/src/components/ActionTable/Filters/FilterFieldItem.vue +7 -5
- package/src/components/ActionTable/Filters/FilterFieldList.vue +21 -21
- package/src/components/ActionTable/Filters/FilterListToggle.vue +13 -10
- package/src/components/ActionTable/Filters/FilterToolbarLayout.vue +14 -7
- package/src/components/ActionTable/Filters/FilterableField.vue +75 -70
- package/src/components/ActionTable/Form/Fields/BooleanField.vue +9 -9
- package/src/components/ActionTable/Form/Fields/ConfirmPasswordField.vue +7 -7
- package/src/components/ActionTable/Form/Fields/DateField.vue +4 -4
- package/src/components/ActionTable/Form/Fields/DateRangeField.vue +10 -12
- package/src/components/ActionTable/Form/Fields/DateTimeField.vue +13 -10
- package/src/components/ActionTable/Form/Fields/DateTimePicker.vue +36 -14
- package/src/components/ActionTable/Form/Fields/EditableDiv.vue +3 -3
- package/src/components/ActionTable/Form/Fields/FieldLabel.vue +2 -2
- package/src/components/ActionTable/Form/Fields/FileUploadButton.vue +23 -20
- package/src/components/ActionTable/Form/Fields/InlineDateTimeField.vue +10 -10
- package/src/components/ActionTable/Form/Fields/IntegerField.vue +6 -6
- package/src/components/ActionTable/Form/Fields/LabeledInput.vue +20 -17
- package/src/components/ActionTable/Form/Fields/MultiFileField.vue +35 -35
- package/src/components/ActionTable/Form/Fields/MultiKeywordField.vue +15 -15
- package/src/components/ActionTable/Form/Fields/NewPasswordField.vue +4 -4
- package/src/components/ActionTable/Form/Fields/NumberField.vue +11 -11
- package/src/components/ActionTable/Form/Fields/NumberRangeField.vue +11 -11
- package/src/components/ActionTable/Form/Fields/SelectDrawer.vue +38 -33
- package/src/components/ActionTable/Form/Fields/SelectField.vue +37 -35
- package/src/components/ActionTable/Form/Fields/SelectWithChildrenField.vue +19 -15
- package/src/components/ActionTable/Form/Fields/SingleFileField.vue +29 -28
- package/src/components/ActionTable/Form/Fields/TextField.vue +22 -22
- package/src/components/ActionTable/Form/RenderedForm.vue +5 -1
- package/src/components/ActionTable/Layouts/ActionTableLayout.vue +1 -1
- package/src/components/ActionTable/TableSummaryRow.vue +15 -15
- package/src/components/ActionTable/listControls.ts +378 -383
- package/src/components/AuditHistory/AuditHistoryItem.vue +12 -6
- package/src/components/AuditHistory/AuditHistoryItemValue.vue +6 -6
- package/src/components/DragAndDrop/HandleDraggable.vue +21 -21
- package/src/components/DragAndDrop/ListItemDraggable.vue +19 -15
- package/src/components/PanelsDrawer/PanelsDrawer.vue +18 -11
- package/src/components/PanelsDrawer/PanelsDrawerPanels.vue +9 -5
- package/src/components/PanelsDrawer/PanelsDrawerTabs.vue +18 -13
- package/src/components/Utility/Buttons/ExportButton.vue +5 -1
- package/src/components/Utility/Buttons/RefreshButton.vue +2 -2
- package/src/components/Utility/Controls/PreviousNextControls.vue +8 -8
- package/src/components/Utility/Dialogs/ConfirmDialog.vue +32 -29
- package/src/components/Utility/Dialogs/FullScreenDialog.vue +12 -9
- package/src/components/Utility/Dialogs/FullscreenCarouselDialog.vue +30 -26
- package/src/components/Utility/Dialogs/InfoDialog.vue +25 -22
- package/src/components/Utility/Dialogs/InputDialog.vue +7 -7
- package/src/components/Utility/Files/FilePreview.vue +64 -47
- package/src/components/Utility/Files/SvgImg.vue +7 -4
- package/src/components/Utility/Formats/GpsCoordinatesFormat.vue +11 -3
- package/src/components/Utility/Layouts/CollapsableSidebar.vue +16 -16
- package/src/components/Utility/Layouts/ContentDrawer.vue +8 -8
- package/src/components/Utility/Popovers/InteractiveTooltip.vue +7 -7
- package/src/components/Utility/Popovers/PopoverMenu.vue +21 -21
- package/src/components/Utility/Tabs/BadgeTab.vue +9 -7
- package/src/components/Utility/Tools/ActionVnode.vue +5 -5
- package/src/components/Utility/Tools/RenderComponent.vue +11 -9
- package/src/components/Utility/Transitions/StaggeredListTransition.vue +7 -7
- package/src/styles/quasar-reset.scss +63 -19
- package/src/styles/themes/danx/action-table.scss +19 -0
- package/src/styles/themes/danx/index.scss +1 -0
@@ -1,97 +1,114 @@
|
|
1
1
|
<template>
|
2
|
-
<div
|
2
|
+
<div
|
3
|
+
class="relative flex justify-center bg-gray-100 overflow-hidden"
|
4
|
+
:class="{'rounded-2xl': !square}"
|
5
|
+
>
|
3
6
|
<template v-if="computedImage">
|
4
7
|
<div
|
5
|
-
|
6
|
-
|
8
|
+
class="grow h-full"
|
9
|
+
@click="showPreview = true"
|
7
10
|
>
|
8
11
|
<div
|
9
|
-
|
10
|
-
|
12
|
+
v-if="isVideo"
|
13
|
+
class="relative max-h-full max-w-full w-full flex justify-center"
|
11
14
|
>
|
12
15
|
<video
|
13
|
-
|
14
|
-
|
16
|
+
class="max-h-full"
|
17
|
+
preload="auto"
|
15
18
|
>
|
16
19
|
<source
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
+
:src="previewUrl + '#t=0.1'"
|
21
|
+
:type="mimeType"
|
22
|
+
>
|
20
23
|
</video>
|
21
24
|
<button :class="cls['play-button']">
|
22
25
|
<PlayIcon class="w-16" />
|
23
26
|
</button>
|
24
27
|
</div>
|
25
28
|
<QImg
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
29
|
+
v-if="thumbUrl || isPreviewable"
|
30
|
+
fit="scale-down"
|
31
|
+
class="non-selectable max-h-full max-w-full h-full"
|
32
|
+
:src="(thumbUrl || previewUrl) + '#t=0.1'"
|
33
|
+
preload="auto"
|
34
|
+
data-testid="previewed-image"
|
32
35
|
/>
|
33
36
|
<div
|
34
|
-
|
35
|
-
|
37
|
+
v-else
|
38
|
+
class="flex items-center justify-center h-full"
|
36
39
|
>
|
37
|
-
<PdfIcon
|
38
|
-
|
40
|
+
<PdfIcon
|
41
|
+
v-if="isPdf"
|
42
|
+
class="w-24"
|
43
|
+
/>
|
44
|
+
<TextFileIcon
|
45
|
+
v-else
|
46
|
+
class="w-24"
|
47
|
+
/>
|
39
48
|
</div>
|
40
49
|
</div>
|
41
50
|
<div
|
42
|
-
|
43
|
-
|
51
|
+
v-if="$slots['action-button']"
|
52
|
+
:class="cls['action-button']"
|
44
53
|
>
|
45
54
|
<slot name="action-button" />
|
46
55
|
</div>
|
47
56
|
<div
|
48
|
-
|
49
|
-
|
57
|
+
v-if="image && image.progress !== undefined"
|
58
|
+
class="absolute-bottom w-full"
|
50
59
|
>
|
51
60
|
<QLinearProgress
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
61
|
+
:value="image.progress"
|
62
|
+
size="15px"
|
63
|
+
color="green-600"
|
64
|
+
stripe
|
56
65
|
/>
|
57
66
|
</div>
|
58
67
|
</template>
|
59
68
|
<template v-else>
|
60
69
|
<slot name="missing">
|
61
70
|
<component
|
62
|
-
|
63
|
-
|
71
|
+
:is="missingIcon"
|
72
|
+
class="w-full h-full p-2 text-gray-300"
|
64
73
|
/>
|
65
74
|
</slot>
|
66
75
|
</template>
|
67
76
|
|
68
77
|
<div class="absolute top-1 right-1 flex items-center justify-between space-x-1">
|
69
78
|
<QBtn
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
79
|
+
v-if="downloadable && computedImage?.url"
|
80
|
+
size="sm"
|
81
|
+
class="!p-1 opacity-70 hover:opacity-100"
|
82
|
+
:class="downloadButtonClass"
|
83
|
+
@click.stop="download(computedImage.url)"
|
75
84
|
>
|
76
85
|
<DownloadIcon class="w-4 h-5" />
|
77
86
|
</QBtn>
|
78
87
|
|
79
88
|
<QBtn
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
89
|
+
v-if="removable"
|
90
|
+
size="sm"
|
91
|
+
class="bg-red-900 text-white !p-1 opacity-50 hover:opacity-100"
|
92
|
+
@click.stop="onRemove"
|
84
93
|
>
|
85
|
-
<div
|
86
|
-
|
94
|
+
<div
|
95
|
+
v-if="isConfirmingRemove"
|
96
|
+
class="font-bold text-[1rem] leading-[1.2rem]"
|
97
|
+
>
|
98
|
+
?
|
99
|
+
</div>
|
100
|
+
<RemoveIcon
|
101
|
+
v-else
|
102
|
+
class="w-3"
|
103
|
+
/>
|
87
104
|
</QBtn>
|
88
105
|
</div>
|
89
106
|
|
90
107
|
<FullScreenCarouselDialog
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
108
|
+
v-if="showPreview && !disabled"
|
109
|
+
:files="relatedFiles || [computedImage]"
|
110
|
+
:default-slide="computedImage.id"
|
111
|
+
@close="showPreview = false"
|
95
112
|
/>
|
96
113
|
</div>
|
97
114
|
</template>
|
@@ -145,13 +162,13 @@ const computedImage = computed(() => {
|
|
145
162
|
return null;
|
146
163
|
});
|
147
164
|
const mimeType = computed(
|
148
|
-
|
165
|
+
() => computedImage.value.type || computedImage.value.mime
|
149
166
|
);
|
150
167
|
const isImage = computed(() => mimeType.value.match(/^image\//));
|
151
168
|
const isVideo = computed(() => mimeType.value.match(/^video\//));
|
152
169
|
const isPdf = computed(() => mimeType.value.match(/^application\/pdf/));
|
153
170
|
const previewUrl = computed(
|
154
|
-
|
171
|
+
() => computedImage.value.transcodes?.compress?.url || computedImage.value.blobUrl || computedImage.value.url
|
155
172
|
);
|
156
173
|
const thumbUrl = computed(() => {
|
157
174
|
return computedImage.value.transcodes?.thumb?.url;
|
@@ -1,10 +1,13 @@
|
|
1
1
|
<template>
|
2
2
|
<img
|
3
|
-
|
4
|
-
|
5
|
-
|
3
|
+
v-if="isString"
|
4
|
+
:src="resolvedSvg"
|
5
|
+
:alt="alt"
|
6
|
+
>
|
7
|
+
<component
|
8
|
+
:is="resolvedSvg"
|
9
|
+
v-else
|
6
10
|
/>
|
7
|
-
<component :is="resolvedSvg" v-else />
|
8
11
|
</template>
|
9
12
|
<script setup>
|
10
13
|
import { computed } from "vue";
|
@@ -1,11 +1,19 @@
|
|
1
1
|
<template>
|
2
2
|
<div class="flex flex-nowrap items-center">
|
3
|
-
<LocationIcon
|
4
|
-
|
3
|
+
<LocationIcon
|
4
|
+
class="mr-1 ml-[-.2em]"
|
5
|
+
:class="iconClass"
|
6
|
+
/>
|
7
|
+
<div
|
8
|
+
v-if="location?.latitude"
|
9
|
+
class="whitespace-nowrap"
|
10
|
+
>
|
5
11
|
{{ location.latitude.toFixed(decimals) }},
|
6
12
|
{{ location.longitude.toFixed(decimals) }}
|
7
13
|
</div>
|
8
|
-
<template v-else>
|
14
|
+
<template v-else>
|
15
|
+
Unknown
|
16
|
+
</template>
|
9
17
|
</div>
|
10
18
|
</template>
|
11
19
|
<script setup>
|
@@ -1,43 +1,43 @@
|
|
1
1
|
<template>
|
2
2
|
<div
|
3
|
-
|
3
|
+
:class="{
|
4
4
|
[cls['collapsable-sidebar']]: true,
|
5
5
|
'is-collapsed': isCollapsed,
|
6
6
|
'is-right-side': rightSide,
|
7
7
|
[displayClass]: true,
|
8
8
|
}"
|
9
|
-
|
9
|
+
:style="style"
|
10
10
|
>
|
11
11
|
<div class="flex-grow max-w-full">
|
12
12
|
<slot :is-collapsed="isCollapsed" />
|
13
13
|
</div>
|
14
14
|
<template v-if="!disabled && (!hideToggleOnCollapse || !isCollapsed)">
|
15
15
|
<div
|
16
|
-
|
17
|
-
|
18
|
-
|
16
|
+
v-if="!toggleAtTop"
|
17
|
+
class="flex w-full p-4"
|
18
|
+
:class="rightSide ? 'justify-start' : 'justify-end'"
|
19
19
|
>
|
20
20
|
<slot name="toggle">
|
21
21
|
<QBtn
|
22
|
-
|
23
|
-
|
22
|
+
class="btn-secondary"
|
23
|
+
@click="toggleCollapse"
|
24
24
|
>
|
25
25
|
<ToggleIcon
|
26
|
-
|
27
|
-
|
26
|
+
class="w-5 transition-all"
|
27
|
+
:class="{ 'rotate-180': rightSide ? !isCollapsed : isCollapsed }"
|
28
28
|
/>
|
29
29
|
</QBtn>
|
30
30
|
</slot>
|
31
31
|
</div>
|
32
32
|
<div
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
33
|
+
v-else
|
34
|
+
class="absolute top-0 right-0 cursor-pointer p-2"
|
35
|
+
:class="toggleClass"
|
36
|
+
@click="toggleCollapse"
|
37
37
|
>
|
38
38
|
<ToggleIcon
|
39
|
-
|
40
|
-
|
39
|
+
class="w-5 transition-all"
|
40
|
+
:class="{ 'rotate-180': rightSide ? !isCollapsed : isCollapsed }"
|
41
41
|
/>
|
42
42
|
</div>
|
43
43
|
</template>
|
@@ -81,7 +81,7 @@ const isCollapsed = ref(getItem(props.name + "-is-collapsed", props.collapse));
|
|
81
81
|
|
82
82
|
function setCollapse(state) {
|
83
83
|
isCollapsed.value = state;
|
84
|
-
setItem(props.name + "-is-collapsed", isCollapsed.value
|
84
|
+
setItem(props.name + "-is-collapsed", !!isCollapsed.value);
|
85
85
|
}
|
86
86
|
|
87
87
|
function toggleCollapse() {
|
@@ -1,16 +1,16 @@
|
|
1
1
|
<template>
|
2
2
|
<QDialog
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
3
|
+
v-model="isShowing"
|
4
|
+
maximized
|
5
|
+
:position="position"
|
6
|
+
:seamless="seamless"
|
7
|
+
:class="{'hide-backdrop': !overlay}"
|
8
8
|
>
|
9
9
|
<div>
|
10
10
|
<div
|
11
|
-
|
12
|
-
|
13
|
-
|
11
|
+
v-if="title"
|
12
|
+
:class="cls['dialog-title']"
|
13
|
+
@click.stop.prevent
|
14
14
|
>
|
15
15
|
{{ title }}
|
16
16
|
</div>
|
@@ -1,12 +1,12 @@
|
|
1
1
|
<template>
|
2
2
|
<QTooltip
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
3
|
+
ref="tooltipBox"
|
4
|
+
v-model="show"
|
5
|
+
class="interactive-tooltip"
|
6
|
+
no-parent-event
|
7
|
+
:transition-duration="200"
|
8
|
+
@mouseenter="onEnterTooltip"
|
9
|
+
@mouseleave="onLeaveTooltip"
|
10
10
|
>
|
11
11
|
<slot>{{ tooltip }}</slot>
|
12
12
|
</QTooltip>
|
@@ -1,46 +1,46 @@
|
|
1
1
|
<template>
|
2
2
|
<a
|
3
|
-
|
4
|
-
|
3
|
+
class="p-3 actionable"
|
4
|
+
:class="{'opacity-50 cursor-not-allowed': disabled}"
|
5
5
|
>
|
6
6
|
<QTooltip v-if="$slots.tooltip || tooltip">
|
7
7
|
<slot name="tooltip">{{ tooltip }}</slot>
|
8
8
|
</QTooltip>
|
9
9
|
<Transition
|
10
|
-
|
11
|
-
|
10
|
+
mode="out-in"
|
11
|
+
:duration="150"
|
12
12
|
>
|
13
13
|
<RenderComponent
|
14
|
-
|
15
|
-
|
14
|
+
v-if="loading"
|
15
|
+
:component="loadingComponent"
|
16
16
|
/>
|
17
17
|
<MenuIcon
|
18
|
-
|
19
|
-
|
18
|
+
v-else
|
19
|
+
class="w-4 text-black"
|
20
20
|
/>
|
21
21
|
</Transition>
|
22
22
|
<QMenu
|
23
|
-
|
24
|
-
|
23
|
+
v-if="!disabled"
|
24
|
+
auto-close
|
25
25
|
>
|
26
26
|
<QList>
|
27
27
|
<template v-for="item in items">
|
28
28
|
<a
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
29
|
+
v-if="item.url"
|
30
|
+
:key="item.url"
|
31
|
+
class="q-item"
|
32
|
+
target="_blank"
|
33
|
+
:href="item.url"
|
34
|
+
:class="item.class"
|
35
35
|
>
|
36
36
|
{{ item.label }}
|
37
37
|
</a>
|
38
38
|
<QItem
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
39
|
+
v-else
|
40
|
+
:key="item.name || item.action"
|
41
|
+
clickable
|
42
|
+
:class="item.class"
|
43
|
+
@click="onAction(item)"
|
44
44
|
>
|
45
45
|
{{ item.label }}
|
46
46
|
</QItem>
|
@@ -1,15 +1,17 @@
|
|
1
1
|
<template>
|
2
2
|
<QTab
|
3
|
-
|
4
|
-
|
5
|
-
|
3
|
+
:name="name"
|
4
|
+
class="w-full"
|
5
|
+
content-class="w-full"
|
6
6
|
>
|
7
7
|
<div class="flex items-center w-full">
|
8
|
-
<div class="flex-grow text-sm">
|
8
|
+
<div class="flex-grow text-sm">
|
9
|
+
{{ label }}
|
10
|
+
</div>
|
9
11
|
<QBadge
|
10
|
-
|
11
|
-
|
12
|
-
|
12
|
+
class="bg-gray-400"
|
13
|
+
:label="count"
|
14
|
+
rounded
|
13
15
|
/>
|
14
16
|
</div>
|
15
17
|
</QTab>
|
@@ -1,11 +1,11 @@
|
|
1
1
|
<template>
|
2
2
|
<div>
|
3
3
|
<RenderVnode
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
4
|
+
v-if="activeActionVnode"
|
5
|
+
:vnode="activeActionVnode.vnode"
|
6
|
+
:is-saving="isSaving"
|
7
|
+
@confirm="onConfirm"
|
8
|
+
@close="activeActionVnode.cancel"
|
9
9
|
/>
|
10
10
|
</div>
|
11
11
|
</template>
|
@@ -1,15 +1,17 @@
|
|
1
1
|
<template>
|
2
2
|
<Component
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
>
|
3
|
+
:is="resolvedComponent.is"
|
4
|
+
v-if="content"
|
5
|
+
v-bind="{...resolvedComponent.props, ...overrideProps}"
|
6
|
+
@action="$emit('action', $event)"
|
7
|
+
>
|
8
|
+
{{ content }}
|
9
|
+
</Component>
|
8
10
|
<Component
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
11
|
+
:is="resolvedComponent.is"
|
12
|
+
v-else
|
13
|
+
v-bind="{...resolvedComponent.props, ...overrideProps}"
|
14
|
+
@action="$emit('action', $event)"
|
13
15
|
/>
|
14
16
|
</template>
|
15
17
|
<script setup>
|
@@ -1,12 +1,12 @@
|
|
1
1
|
<template>
|
2
2
|
<TransitionGroup
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
3
|
+
ref="list"
|
4
|
+
tag="div"
|
5
|
+
appear
|
6
|
+
:css="false"
|
7
|
+
@before-enter="onBeforeEnter"
|
8
|
+
@enter="onEnter"
|
9
|
+
@leave="onLeave"
|
10
10
|
>
|
11
11
|
<slot />
|
12
12
|
</TransitionGroup>
|
@@ -1,32 +1,76 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
#primary-layout {
|
2
|
+
.q-tab {
|
3
|
+
text-transform: capitalize
|
4
|
+
}
|
5
|
+
|
6
|
+
.q-table__card {
|
7
|
+
background: inherit;
|
8
|
+
color: inherit;
|
9
|
+
}
|
4
10
|
|
5
|
-
.q-
|
6
|
-
|
11
|
+
.q-checkbox__inner {
|
12
|
+
color: inherit;
|
13
|
+
}
|
7
14
|
|
8
|
-
.q-
|
15
|
+
.q-tab-panels {
|
9
16
|
overflow: visible;
|
10
17
|
|
11
|
-
|
12
|
-
overflow:
|
18
|
+
.q-panel {
|
19
|
+
overflow: visible;
|
20
|
+
|
21
|
+
&.scroll {
|
22
|
+
overflow: auto;
|
23
|
+
}
|
24
|
+
|
25
|
+
.q-tab-panel {
|
26
|
+
padding: 0;
|
27
|
+
}
|
13
28
|
}
|
14
29
|
|
15
|
-
|
16
|
-
|
30
|
+
&.overflow-y-auto {
|
31
|
+
overflow-y: auto;
|
17
32
|
}
|
18
33
|
}
|
19
34
|
|
20
|
-
|
21
|
-
|
35
|
+
.q-toolbar {
|
36
|
+
min-height: 0;
|
37
|
+
padding: 0;
|
22
38
|
}
|
23
|
-
}
|
24
39
|
|
25
|
-
.q-
|
26
|
-
|
27
|
-
|
28
|
-
|
40
|
+
.q-notification__actions {
|
41
|
+
color: inherit;
|
42
|
+
}
|
43
|
+
|
44
|
+
.q-date {
|
45
|
+
min-width: 100px;
|
29
46
|
|
30
|
-
.q-
|
31
|
-
|
47
|
+
.q-date__view {
|
48
|
+
min-height: 0;
|
49
|
+
}
|
50
|
+
}
|
51
|
+
|
52
|
+
.q-field {
|
53
|
+
&.q-field--auto-height {
|
54
|
+
.q-field__control {
|
55
|
+
min-height: 0;
|
56
|
+
|
57
|
+
.q-field__native {
|
58
|
+
min-height: 0;
|
59
|
+
color: inherit;
|
60
|
+
}
|
61
|
+
}
|
62
|
+
|
63
|
+
.q-field__control-container {
|
64
|
+
padding-top: 1.1rem;
|
65
|
+
}
|
66
|
+
}
|
67
|
+
|
68
|
+
.q-field__label {
|
69
|
+
color: inherit;
|
70
|
+
}
|
71
|
+
|
72
|
+
.q-field__marginal {
|
73
|
+
color: inherit;
|
74
|
+
}
|
75
|
+
}
|
32
76
|
}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
.dx-table-summary-tr {
|
2
|
+
@apply bg-gray-100;
|
3
|
+
|
4
|
+
&.has-selection {
|
5
|
+
@apply bg-blue-600 text-white;
|
6
|
+
}
|
7
|
+
|
8
|
+
&.is-loading {
|
9
|
+
@apply opacity-50;
|
10
|
+
}
|
11
|
+
|
12
|
+
.dx-table-summary-td {
|
13
|
+
@apply font-bold bg-gray-100 pl-5;
|
14
|
+
|
15
|
+
&.has-selection {
|
16
|
+
@apply bg-blue-600 text-white pl-4;
|
17
|
+
}
|
18
|
+
}
|
19
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
@import "action-table";
|