quasar-ui-danx 0.4.82 → 0.4.84
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/dist/danx.es.js +2676 -2601
- package/dist/danx.es.js.map +1 -1
- package/dist/danx.umd.js +46 -46
- package/dist/danx.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/ActionTable/Form/Fields/EditableDiv.vue +7 -4
- package/src/components/ActionTable/Form/Fields/MultiFileField.vue +48 -30
- package/src/components/ActionTable/Form/Fields/TextField.vue +11 -10
- package/src/components/Utility/Buttons/ActionButton.vue +182 -165
- package/src/styles/quasar-reset.scss +84 -84
- package/src/styles/themes/danx/forms.scss +7 -7
@@ -1,105 +1,105 @@
|
|
1
1
|
.danx-app {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
2
|
+
.q-tab {
|
3
|
+
text-transform: capitalize
|
4
|
+
}
|
5
|
+
|
6
|
+
.q-table__card {
|
7
|
+
background: inherit;
|
8
|
+
color: inherit;
|
9
|
+
}
|
10
|
+
|
11
|
+
.q-checkbox__inner {
|
12
|
+
color: inherit;
|
13
|
+
}
|
14
|
+
|
15
|
+
.q-toolbar {
|
16
|
+
min-height: 0;
|
17
|
+
padding: 0;
|
18
|
+
flex-shrink: 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
.q-notification__actions {
|
22
|
+
color: inherit;
|
23
|
+
}
|
24
|
+
|
25
|
+
.q-date {
|
26
|
+
min-width: 100px;
|
27
|
+
|
28
|
+
.q-date__view {
|
29
|
+
min-height: 0;
|
30
|
+
}
|
31
|
+
}
|
32
|
+
|
33
|
+
.q-field {
|
34
|
+
&.q-field--auto-height {
|
35
|
+
.q-field__control {
|
36
|
+
min-height: 0;
|
37
|
+
|
38
|
+
.q-field__native {
|
39
|
+
min-height: 0;
|
40
|
+
color: inherit;
|
41
|
+
}
|
42
|
+
}
|
43
|
+
|
44
|
+
}
|
45
|
+
|
46
|
+
&.q-field--labeled {
|
47
|
+
.q-field__control-container {
|
48
|
+
padding-top: 0;
|
49
|
+
}
|
50
|
+
|
51
|
+
&.q-textarea {
|
52
|
+
.q-field__control-container {
|
53
|
+
padding: .5rem 0;
|
54
|
+
}
|
55
|
+
}
|
56
|
+
}
|
57
|
+
|
58
|
+
.q-field__marginal, .q-field__input, .q-field__label {
|
59
|
+
color: inherit;
|
60
|
+
height: auto;
|
61
|
+
min-height: 0;
|
62
|
+
line-height: inherit;
|
63
|
+
}
|
64
|
+
}
|
65
65
|
}
|
66
66
|
|
67
67
|
.q-btn {
|
68
|
-
|
69
|
-
|
68
|
+
text-transform: inherit;
|
69
|
+
@apply bg-inherit text-inherit min-h-[auto] p-2;
|
70
70
|
|
71
|
-
|
72
|
-
|
73
|
-
|
71
|
+
&:before {
|
72
|
+
@apply shadow-none;
|
73
|
+
}
|
74
74
|
}
|
75
75
|
|
76
76
|
.q-item {
|
77
|
-
|
77
|
+
min-height: 0;
|
78
78
|
}
|
79
79
|
|
80
80
|
.q-tab-panels {
|
81
|
-
|
82
|
-
|
81
|
+
overflow: visible;
|
82
|
+
background: inherit;
|
83
83
|
|
84
|
-
|
85
|
-
|
84
|
+
.q-panel {
|
85
|
+
overflow: visible;
|
86
86
|
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
87
|
+
&.scroll {
|
88
|
+
overflow: auto;
|
89
|
+
}
|
90
|
+
}
|
91
91
|
|
92
|
-
|
93
|
-
|
94
|
-
|
92
|
+
&.overflow-y-auto {
|
93
|
+
overflow-y: auto;
|
94
|
+
}
|
95
95
|
}
|
96
96
|
|
97
97
|
.dx-dialog {
|
98
|
-
|
99
|
-
|
100
|
-
|
98
|
+
.q-card__section--vert {
|
99
|
+
@apply p-0;
|
100
|
+
}
|
101
101
|
}
|
102
102
|
|
103
103
|
.q-banner {
|
104
|
-
|
104
|
+
@apply min-h-[auto];
|
105
105
|
}
|
@@ -1,13 +1,13 @@
|
|
1
1
|
.dx-field-label {
|
2
|
-
|
2
|
+
@apply text-xs mb-1.5 flex items-center space-x-1;
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
4
|
+
.dx-field-required {
|
5
|
+
@apply text-red-900 ml-0.5 bottom-1 relative;
|
6
|
+
}
|
7
7
|
}
|
8
8
|
|
9
9
|
.q-field {
|
10
|
-
|
11
|
-
|
12
|
-
|
10
|
+
.q-field__label {
|
11
|
+
@apply text-sm text-gray-700;
|
12
|
+
}
|
13
13
|
}
|