quasar-ui-danx 0.4.46 → 0.4.47

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quasar-ui-danx",
3
- "version": "0.4.46",
3
+ "version": "0.4.47",
4
4
  "author": "Dan <dan@flytedesk.com>",
5
5
  "description": "DanX Vue / Quasar component library",
6
6
  "license": "MIT",
@@ -15,50 +15,49 @@
15
15
  :show-icon="selectIcon || DefaultSelectIcon"
16
16
  class="mr-2"
17
17
  >
18
- <template #label>
19
- <QMenu
20
- :model-value="isSelecting"
21
- @before-hide="isSelecting = false"
22
- @hide="isSelecting = false"
23
- >
24
- <div>
25
- <div
26
- v-for="option in options"
27
- :key="option.id"
28
- v-ripple
29
- class="cursor-pointer flex items-center relative"
30
- :class="{'bg-sky-900 hover:bg-sky-800': selected?.id === option.id, 'hover:bg-slate-600': selected?.id !== option.id}"
31
- @click="selected = option"
32
- >
33
- <div class="flex-grow px-4 py-2">
34
- {{ option.name }}
35
- </div>
36
- <ActionButton
37
- v-if="deletable"
38
- type="trash"
39
- class="ml-4 mr-2"
40
- @click.stop.prevent="$emit('delete', option)"
41
- />
18
+ <QMenu
19
+ :model-value="isSelecting"
20
+ @before-hide="isSelecting = false"
21
+ @hide="isSelecting = false"
22
+ >
23
+ <div>
24
+ <div
25
+ v-for="option in options"
26
+ :key="option.id"
27
+ v-ripple
28
+ class="cursor-pointer flex items-center relative"
29
+ :class="{'bg-sky-900 hover:bg-sky-800': selected?.id === option.id, 'hover:bg-slate-600': selected?.id !== option.id}"
30
+ @click="selected = option"
31
+ >
32
+ <div class="flex-grow px-4 py-2">
33
+ {{ option.name }}
42
34
  </div>
43
- <template v-if="creatable">
44
- <QSeparator class="bg-slate-400 my-2" />
45
- <div class="px-4 mb-2">
46
- <QBtn
47
- :class="createClass"
48
- :loading="loading"
49
- @click="$emit('create')"
50
- >
51
- <CreateIcon
52
- class="w-3"
53
- :class="createText ? 'mr-2' : ''"
54
- />
55
- {{ createText }}
56
- </QBtn>
57
- </div>
58
- </template>
35
+ <ActionButton
36
+ v-if="deletable"
37
+ type="trash"
38
+ class="ml-4 mr-2"
39
+ size="sm"
40
+ @click.stop.prevent="$emit('delete', option)"
41
+ />
59
42
  </div>
60
- </QMenu>
61
- </template>
43
+ <template v-if="creatable">
44
+ <QSeparator class="bg-slate-400 my-2" />
45
+ <div class="px-4 mb-2">
46
+ <QBtn
47
+ :class="createClass"
48
+ :loading="loading"
49
+ @click="$emit('create')"
50
+ >
51
+ <CreateIcon
52
+ class="w-3"
53
+ :class="createText ? 'mr-2' : ''"
54
+ />
55
+ {{ createText }}
56
+ </QBtn>
57
+ </div>
58
+ </template>
59
+ </div>
60
+ </QMenu>
62
61
  </ShowHideButton>
63
62
 
64
63
  <div :class="labelClass">
@@ -39,14 +39,12 @@ const props = withDefaults(defineProps<Props>(), {
39
39
  label: ""
40
40
  });
41
41
 
42
- console.log("isShowing", isShowing.value);
43
42
  const SETTINGS_KEY = "show-hide-button";
44
43
  const settings = getItem(SETTINGS_KEY, {});
45
44
 
46
45
  if (props.name) {
47
46
  if (settings[props.name] !== undefined) {
48
47
  isShowing.value = settings[props.name];
49
- console.log("setting is sowing to", isShowing.value);
50
48
  }
51
49
  }
52
50
 
@@ -21,6 +21,7 @@ const colorClasses = {
21
21
  yellow: "bg-yellow-950 text-yellow-400",
22
22
  blue: "bg-blue-950 text-blue-400",
23
23
  slate: "bg-slate-950 text-slate-400",
24
+ "slate-mid": "bg-slate-800 text-slate-400",
24
25
  gray: "bg-slate-700 text-gray-300",
25
26
  none: ""
26
27
  };