@dpa-id-components/dpa-shared-components 0.14.0 → 0.14.1

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.
@@ -1,39 +1,39 @@
1
1
  import type { PropType as __PropType } from 'vue';
2
2
  declare const _sfc_main: import("vue").DefineComponent<{
3
3
  cursorStyle: {
4
- type: __PropType<"default" | "text" | "pointer">;
5
- required: true;
4
+ type: __PropType<"default" | "text" | "pointer" | undefined>;
5
+ required: false;
6
6
  default: string;
7
7
  };
8
8
  isVisible: {
9
- type: __PropType<boolean>;
10
- required: true;
9
+ type: __PropType<boolean | undefined>;
10
+ required: false;
11
11
  default: boolean;
12
12
  };
13
13
  size: {
14
- type: __PropType<"small" | "medium" | "big">;
15
- required: true;
14
+ type: __PropType<"small" | "medium" | "big" | undefined>;
15
+ required: false;
16
16
  default: string;
17
17
  };
18
18
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
19
19
  cursorStyle: {
20
- type: __PropType<"default" | "text" | "pointer">;
21
- required: true;
20
+ type: __PropType<"default" | "text" | "pointer" | undefined>;
21
+ required: false;
22
22
  default: string;
23
23
  };
24
24
  isVisible: {
25
- type: __PropType<boolean>;
26
- required: true;
25
+ type: __PropType<boolean | undefined>;
26
+ required: false;
27
27
  default: boolean;
28
28
  };
29
29
  size: {
30
- type: __PropType<"small" | "medium" | "big">;
31
- required: true;
30
+ type: __PropType<"small" | "medium" | "big" | undefined>;
31
+ required: false;
32
32
  default: string;
33
33
  };
34
34
  }>>, {
35
- size: "small" | "medium" | "big";
36
- cursorStyle: "default" | "text" | "pointer";
37
- isVisible: boolean;
35
+ size: "small" | "medium" | "big" | undefined;
36
+ cursorStyle: "default" | "text" | "pointer" | undefined;
37
+ isVisible: boolean | undefined;
38
38
  }>;
39
39
  export default _sfc_main;
@@ -3,11 +3,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
3
3
  iconName: {
4
4
  type: __PropType<string>;
5
5
  required: true;
6
- default: string;
7
6
  };
8
7
  title: {
9
- type: __PropType<string>;
10
- required: true;
8
+ type: __PropType<string | undefined>;
9
+ required: false;
11
10
  default: string;
12
11
  };
13
12
  disabled: {
@@ -16,29 +15,28 @@ declare const _sfc_main: import("vue").DefineComponent<{
16
15
  default: boolean;
17
16
  };
18
17
  backgroundColor: {
19
- type: __PropType<"blue" | "none">;
20
- required: true;
18
+ type: __PropType<"blue" | "none" | undefined>;
19
+ required: false;
21
20
  default: string;
22
21
  };
23
22
  iconColor: {
24
- type: __PropType<"blue" | "white" | "gray">;
25
- required: true;
23
+ type: __PropType<"blue" | "white" | "gray" | undefined>;
24
+ required: false;
26
25
  default: string;
27
26
  };
28
27
  size: {
29
- type: __PropType<"small" | "medium" | "large" | "xl">;
30
- required: true;
28
+ type: __PropType<"small" | "medium" | "large" | "xl" | undefined>;
29
+ required: false;
31
30
  default: string;
32
31
  };
33
32
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
34
33
  iconName: {
35
34
  type: __PropType<string>;
36
35
  required: true;
37
- default: string;
38
36
  };
39
37
  title: {
40
- type: __PropType<string>;
41
- required: true;
38
+ type: __PropType<string | undefined>;
39
+ required: false;
42
40
  default: string;
43
41
  };
44
42
  disabled: {
@@ -47,28 +45,27 @@ declare const _sfc_main: import("vue").DefineComponent<{
47
45
  default: boolean;
48
46
  };
49
47
  backgroundColor: {
50
- type: __PropType<"blue" | "none">;
51
- required: true;
48
+ type: __PropType<"blue" | "none" | undefined>;
49
+ required: false;
52
50
  default: string;
53
51
  };
54
52
  iconColor: {
55
- type: __PropType<"blue" | "white" | "gray">;
56
- required: true;
53
+ type: __PropType<"blue" | "white" | "gray" | undefined>;
54
+ required: false;
57
55
  default: string;
58
56
  };
59
57
  size: {
60
- type: __PropType<"small" | "medium" | "large" | "xl">;
61
- required: true;
58
+ type: __PropType<"small" | "medium" | "large" | "xl" | undefined>;
59
+ required: false;
62
60
  default: string;
63
61
  };
64
62
  }>> & {
65
63
  onClick?: ((...args: any[]) => any) | undefined;
66
64
  }, {
67
- title: string;
68
- iconName: string;
69
- size: "small" | "medium" | "large" | "xl";
65
+ title: string | undefined;
66
+ size: "small" | "medium" | "large" | "xl" | undefined;
70
67
  disabled: boolean | undefined;
71
- backgroundColor: "blue" | "none";
72
- iconColor: "blue" | "white" | "gray";
68
+ backgroundColor: "blue" | "none" | undefined;
69
+ iconColor: "blue" | "white" | "gray" | undefined;
73
70
  }>;
74
71
  export default _sfc_main;
@@ -5,7 +5,7 @@ import UiButton from "./UiButton/UiButton.vue";
5
5
  import UiButtonGroup from "./UiButtonGroup/UiButtonGroup.vue";
6
6
  import UiCard from "./UiCard/UiCard.vue";
7
7
  import UiCheckbox from "./UiCheckBox/UiCheckBox.vue";
8
- import UiCheckboxGroup from "./UiCheckBoxGroup/UiCheckBoxGroup.vue";
8
+ import UiCheckBoxGroup from "./UiCheckBoxGroup/UiCheckBoxGroup.vue";
9
9
  import UiChip from "./UiChip/UiChip.vue";
10
10
  import UiDialog from "./UiDialog/UiDialog.vue";
11
11
  import UiFilterBadge from "./UiFilterBadge/UiFilterBadge.vue";
@@ -29,4 +29,4 @@ import UiToggleButton from "./UiToggleButton/UiToggleButton.vue";
29
29
  import UiTooltip from "./UiTooltip/UiTooltip.vue";
30
30
  import UiSearchInput from "./UiSearchInput/UiSearchInput.vue";
31
31
  import UiSearchBar from "./UiSearchBar/UiSearchBar.vue";
32
- export { DpaEventItem, UiAutocomplete, UiBadge, UiButton, UiButtonGroup, UiCard, UiCheckbox, UiCheckboxGroup, UiChip, UiDialog, UiFilterBadge, UiFilterButton, UiIcon, UiIconButton, UiInfoContent, UiInput, UiList, UiListItem, UiMenu, UiOverlay, UiOverlayMenu, UiRadioInputGroup, UiSection, UiSectionDivider, UiSkeletonBox, UiSpinner, UiSnackbar, UiToggleButton, UiTooltip, UiSearchInput, UiSearchBar, };
32
+ export { DpaEventItem, UiAutocomplete, UiBadge, UiButton, UiButtonGroup, UiCard, UiCheckbox, UiCheckBoxGroup, UiChip, UiDialog, UiFilterBadge, UiFilterButton, UiIcon, UiIconButton, UiInfoContent, UiInput, UiList, UiListItem, UiMenu, UiOverlay, UiOverlayMenu, UiRadioInputGroup, UiSection, UiSectionDivider, UiSkeletonBox, UiSpinner, UiSnackbar, UiToggleButton, UiTooltip, UiSearchInput, UiSearchBar, };
@@ -5725,11 +5725,7 @@ const Nf = /* @__PURE__ */ ht(Iu, [["render", Au]]), zf = /* @__PURE__ */ ce({
5725
5725
  big: "h-8 px-2 text-sm"
5726
5726
  })[t.size]);
5727
5727
  return (a, c) => (R(), q("div", {
5728
- class: X(["whitespace-no-wrap min-w-max items-center rounded-full bg-gray-300 align-middle leading-normal text-gray-900", [
5729
- e.isVisible ? "inline-flex" : "hidden",
5730
- Z(n),
5731
- Z(r)
5732
- ]])
5728
+ class: X(["whitespace-no-wrap min-w-max items-center rounded-full bg-gray-300 align-middle leading-normal text-gray-900", [e.isVisible ? "inline-flex" : "hidden", Z(n), Z(r)]])
5733
5729
  }, [
5734
5730
  re(a.$slots, "default")
5735
5731
  ], 2));
@@ -5878,7 +5874,7 @@ const Uf = /* @__PURE__ */ ce({
5878
5874
  }), Mu = ["disabled", "aria-label"], Vr = /* @__PURE__ */ ce({
5879
5875
  __name: "UiIconButton",
5880
5876
  props: {
5881
- iconName: { default: "alert" },
5877
+ iconName: null,
5882
5878
  title: { default: "" },
5883
5879
  disabled: { type: Boolean, default: !1 },
5884
5880
  backgroundColor: { default: "blue" },
@@ -7570,8 +7566,8 @@ export {
7570
7566
  Rf as UiButton,
7571
7567
  Mf as UiButtonGroup,
7572
7568
  Nf as UiCard,
7569
+ zf as UiCheckBoxGroup,
7573
7570
  wu as UiCheckbox,
7574
- zf as UiCheckboxGroup,
7575
7571
  qf as UiChip,
7576
7572
  Ff as UiDialog,
7577
7573
  Uf as UiFilterBadge,