quasar-ui-danx 0.4.49 → 0.4.50

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.49",
3
+ "version": "0.4.50",
4
4
  "author": "Dan <dan@flytedesk.com>",
5
5
  "description": "DanX Vue / Quasar component library",
6
6
  "license": "MIT",
@@ -1,5 +1,6 @@
1
1
  <template>
2
2
  <QDialog
3
+ class="full-screen-dialog"
3
4
  :model-value="modelValue"
4
5
  maximized
5
6
  transition-show="slide-up"
@@ -22,28 +23,31 @@
22
23
  </QDialog>
23
24
  </template>
24
25
 
25
- <script setup>
26
+ <script setup lang="ts">
26
27
  import { computed } from "vue";
27
28
  import { XIcon } from "../../../svg";
28
29
 
29
30
  const emit = defineEmits(["update:model-value", "close"]);
30
- const props = defineProps({
31
- modelValue: Boolean,
32
- center: Boolean,
33
- blue: Boolean,
34
- closeable: Boolean
31
+ const props = withDefaults(defineProps<{
32
+ modelValue: boolean;
33
+ center?: boolean;
34
+ blue?: boolean;
35
+ closeable?: boolean;
36
+ contentClass?: string;
37
+ }>(), {
38
+ contentClass: "bg-white text-gray-400"
35
39
  });
36
40
 
37
41
  let computedClass = computed(() => {
38
- return {
39
- "bg-blue-600 text-white": props.blue,
40
- "bg-white text-gray-400": !props.blue,
41
- "items-center": props.center
42
- };
42
+ return {
43
+ "bg-blue-600 text-white": props.blue,
44
+ "items-center": props.center,
45
+ [props.contentClass]: !props.blue
46
+ };
43
47
  });
44
48
 
45
49
  function onClose() {
46
- emit("update:model-value", false);
47
- emit("close");
50
+ emit("update:model-value", false);
51
+ emit("close");
48
52
  }
49
53
  </script>
@@ -1,5 +1,5 @@
1
1
  export interface LabelPillWidgetProps {
2
- label?: string;
2
+ label?: string | number;
3
3
  size?: "xs" | "sm" | "md" | "lg";
4
4
  color?: "sky" | "green" | "red" | "amber" | "yellow" | "blue" | "slate" | "gray" | "none";
5
5
  }