quasar-ui-danx 0.2.20 → 0.2.22
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/danx.es.js +2882 -2870
- package/dist/danx.es.js.map +1 -1
- package/dist/danx.umd.js +5 -5
- package/dist/danx.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ActionTable/Filters/CollapsableFiltersSidebar.vue +1 -1
- package/src/components/ActionTable/Filters/FilterListToggle.vue +1 -1
- package/src/components/ActionTable/Filters/FilterToolbarLayout.vue +6 -3
- package/src/components/ActionTable/listControls.ts +11 -10
- package/src/components/Utility/Layouts/CollapsableSidebar.vue +6 -10
- package/tailwind.config.js +3 -1
- package/tsconfig.json +1 -5
package/package.json
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
:show-filters="showFilters"
|
5
5
|
:filter="filter"
|
6
6
|
class="border-r p-4 flex-shrink-0"
|
7
|
-
@update:show-filters="
|
7
|
+
@update:show-filters="onFilter"
|
8
8
|
@update:filter="$emit('update:filter', $event)"
|
9
9
|
/>
|
10
10
|
|
@@ -22,12 +22,15 @@
|
|
22
22
|
import { QSeparator } from "quasar";
|
23
23
|
import { FilterListToggle } from "../Filters";
|
24
24
|
|
25
|
-
defineEmits(["update:show-filters", "update:filter"]);
|
26
|
-
defineProps({
|
25
|
+
const emit = defineEmits(["update:show-filters", "update:filter"]);
|
26
|
+
const props = defineProps({
|
27
27
|
filter: {
|
28
28
|
type: Object,
|
29
29
|
default: null
|
30
30
|
},
|
31
31
|
showFilters: Boolean
|
32
32
|
});
|
33
|
+
function onFilter() {
|
34
|
+
emit("update:show-filters", !props.showFilters);
|
35
|
+
}
|
33
36
|
</script>
|
@@ -28,12 +28,17 @@ export function useListControls(name: string, {
|
|
28
28
|
const pagedItems = ref(null);
|
29
29
|
const filter = ref({});
|
30
30
|
const globalFilter = ref({});
|
31
|
-
const showFilters = ref(
|
31
|
+
const showFilters = ref(false);
|
32
32
|
const selectedRows = ref([]);
|
33
33
|
const isLoadingList = ref(false);
|
34
34
|
const isLoadingSummary = ref(false);
|
35
35
|
const summary = ref(null);
|
36
36
|
|
37
|
+
// Filter fields are the field values available for the currently applied filter on Creative Groups
|
38
|
+
// (ie: all states available under the current filter)
|
39
|
+
const filterFieldOptions = ref({});
|
40
|
+
const isLoadingFilters = ref(false);
|
41
|
+
|
37
42
|
const filterActiveCount = computed(() => Object.keys(filter.value).filter(key => filter.value[key] !== undefined).length);
|
38
43
|
|
39
44
|
const PAGING_DEFAULT = {
|
@@ -87,15 +92,11 @@ export function useListControls(name: string, {
|
|
87
92
|
isLoadingSummary.value = false;
|
88
93
|
}
|
89
94
|
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
watch(() => showFilters.value, (show) => {
|
96
|
-
setItem(`${name}-show-filters`, show);
|
97
|
-
});
|
98
|
-
|
95
|
+
/**
|
96
|
+
* Loads the filter field options for the current filter.
|
97
|
+
*
|
98
|
+
* @returns {Promise<void>}
|
99
|
+
*/
|
99
100
|
async function loadFilterFieldOptions() {
|
100
101
|
if (!filterFieldOptionsRoute || !isInitialized) return;
|
101
102
|
isLoadingFilters.value = true;
|
@@ -46,6 +46,7 @@
|
|
46
46
|
<script setup>
|
47
47
|
import { ChevronLeftIcon as ToggleIcon } from "@heroicons/vue/outline";
|
48
48
|
import { computed, onMounted, ref, watch } from "vue";
|
49
|
+
import { getItem, setItem } from "../../../helpers";
|
49
50
|
|
50
51
|
const emit = defineEmits(["collapse", "update:collapse"]);
|
51
52
|
const props = defineProps({
|
@@ -76,24 +77,19 @@ const props = defineProps({
|
|
76
77
|
hideToggleOnCollapse: Boolean
|
77
78
|
});
|
78
79
|
|
79
|
-
const isCollapsed = ref(props.collapse);
|
80
|
+
const isCollapsed = ref(getItem(props.name + "-is-collapsed", props.collapse));
|
80
81
|
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
isCollapsed.value = stored === "1";
|
82
|
+
function setCollapse(state) {
|
83
|
+
isCollapsed.value = state;
|
84
|
+
setItem(props.name + "-is-collapsed", isCollapsed.value ? "1" : "");
|
85
85
|
}
|
86
|
+
|
86
87
|
function toggleCollapse() {
|
87
88
|
setCollapse(!isCollapsed.value);
|
88
89
|
emit("collapse", isCollapsed.value);
|
89
90
|
emit("update:collapse", isCollapsed.value);
|
90
91
|
}
|
91
92
|
|
92
|
-
function setCollapse(state) {
|
93
|
-
isCollapsed.value = state;
|
94
|
-
localStorage.setItem(props.name + "-is-collapsed", isCollapsed.value ? "1" : "");
|
95
|
-
}
|
96
|
-
|
97
93
|
onMounted(() => {
|
98
94
|
emit("collapse", isCollapsed.value);
|
99
95
|
emit("update:collapse", isCollapsed.value);
|
package/tailwind.config.js
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
/** @type {import("tailwindcss").Config} */
|
2
2
|
import twColors from "tailwindcss/colors";
|
3
3
|
|
4
|
+
const ignore = ["lightBlue", "warmGray", "trueGray", "coolGray", "blueGray"];
|
5
|
+
|
4
6
|
// Convert all TW colors to CSS Variables
|
5
|
-
const colorKeys = Object.keys(twColors).filter(c => twColors[c].hasOwnProperty("500"));
|
7
|
+
const colorKeys = Object.keys(twColors).filter(c => !ignore.includes(c) && twColors[c].hasOwnProperty("500"));
|
6
8
|
const colors = {};
|
7
9
|
|
8
10
|
for (const name of colorKeys) {
|