@dpa-id-components/dpa-shared-components 0.10.1 → 0.11.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.
@@ -15,6 +15,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
15
15
  required: false;
16
16
  default: boolean;
17
17
  };
18
+ size: {
19
+ type: __PropType<"small" | "medium" | "large" | "xl" | undefined>;
20
+ required: false;
21
+ default: string;
22
+ };
18
23
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
19
24
  color: {
20
25
  type: __PropType<string | undefined>;
@@ -31,9 +36,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
31
36
  required: false;
32
37
  default: boolean;
33
38
  };
39
+ size: {
40
+ type: __PropType<"small" | "medium" | "large" | "xl" | undefined>;
41
+ required: false;
42
+ default: string;
43
+ };
34
44
  }>>, {
35
45
  fill: string | undefined;
36
46
  color: string | undefined;
47
+ size: "small" | "medium" | "large" | "xl" | undefined;
37
48
  iconIsFilled: boolean | undefined;
38
49
  }>;
39
50
  export default _sfc_main;
@@ -0,0 +1,70 @@
1
+ import type { PropType as __PropType } from 'vue';
2
+ declare const _sfc_main: import("vue").DefineComponent<{
3
+ value: {
4
+ type: __PropType<string>;
5
+ required: true;
6
+ default: string;
7
+ };
8
+ placeholder: {
9
+ type: __PropType<string | undefined>;
10
+ required: false;
11
+ default: string;
12
+ };
13
+ backgroundColor: {
14
+ type: __PropType<"white" | "gray">;
15
+ required: true;
16
+ default: string;
17
+ };
18
+ hiddenFilterRules: {
19
+ type: __PropType<number | undefined>;
20
+ required: false;
21
+ default: number;
22
+ };
23
+ isFilterChipEditable: {
24
+ type: __PropType<boolean | undefined>;
25
+ required: false;
26
+ default: boolean;
27
+ };
28
+ }, {
29
+ searchInputRef: import("vue").Ref<HTMLInputElement | undefined>;
30
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input" | "search" | "focus" | "blur" | "submit" | "reset")[], "input" | "search" | "focus" | "blur" | "submit" | "reset", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
31
+ value: {
32
+ type: __PropType<string>;
33
+ required: true;
34
+ default: string;
35
+ };
36
+ placeholder: {
37
+ type: __PropType<string | undefined>;
38
+ required: false;
39
+ default: string;
40
+ };
41
+ backgroundColor: {
42
+ type: __PropType<"white" | "gray">;
43
+ required: true;
44
+ default: string;
45
+ };
46
+ hiddenFilterRules: {
47
+ type: __PropType<number | undefined>;
48
+ required: false;
49
+ default: number;
50
+ };
51
+ isFilterChipEditable: {
52
+ type: __PropType<boolean | undefined>;
53
+ required: false;
54
+ default: boolean;
55
+ };
56
+ }>> & {
57
+ onInput?: ((...args: any[]) => any) | undefined;
58
+ onFocus?: ((...args: any[]) => any) | undefined;
59
+ onBlur?: ((...args: any[]) => any) | undefined;
60
+ onSearch?: ((...args: any[]) => any) | undefined;
61
+ onSubmit?: ((...args: any[]) => any) | undefined;
62
+ onReset?: ((...args: any[]) => any) | undefined;
63
+ }, {
64
+ placeholder: string | undefined;
65
+ value: string;
66
+ backgroundColor: "white" | "gray";
67
+ hiddenFilterRules: number | undefined;
68
+ isFilterChipEditable: boolean | undefined;
69
+ }>;
70
+ export default _sfc_main;
@@ -5,37 +5,44 @@ declare const _sfc_main: import("vue").DefineComponent<{
5
5
  required: false;
6
6
  default: boolean;
7
7
  };
8
- placeholder: {
8
+ label: {
9
9
  type: __PropType<string | undefined>;
10
10
  required: false;
11
11
  default: string;
12
12
  };
13
- value: {
14
- type: __PropType<{
15
- value: string;
16
- }[]>;
13
+ modelValue: {
14
+ type: __PropType<string[]>;
17
15
  required: true;
18
16
  };
19
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "input"[], "input", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
17
+ placeholder: {
18
+ type: __PropType<string | undefined>;
19
+ required: false;
20
+ default: string;
21
+ };
22
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
20
23
  hasAddEntryOption: {
21
24
  type: __PropType<boolean | undefined>;
22
25
  required: false;
23
26
  default: boolean;
24
27
  };
25
- placeholder: {
28
+ label: {
26
29
  type: __PropType<string | undefined>;
27
30
  required: false;
28
31
  default: string;
29
32
  };
30
- value: {
31
- type: __PropType<{
32
- value: string;
33
- }[]>;
33
+ modelValue: {
34
+ type: __PropType<string[]>;
34
35
  required: true;
35
36
  };
37
+ placeholder: {
38
+ type: __PropType<string | undefined>;
39
+ required: false;
40
+ default: string;
41
+ };
36
42
  }>> & {
37
- onInput?: ((...args: any[]) => any) | undefined;
43
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
38
44
  }, {
45
+ label: string | undefined;
39
46
  placeholder: string | undefined;
40
47
  hasAddEntryOption: boolean | undefined;
41
48
  }>;
@@ -18,11 +18,12 @@ import UiMenu from "./UiMenu/UiMenu.vue";
18
18
  import UiOverlay from "./UiOverlay/UiOverlay.vue";
19
19
  import UiOverlayMenu from "./UiOverlayMenu/UiOverlayMenu.vue";
20
20
  import UiRadioInputGroup from '../components/UiRadioInputGroup/UiRadioInputGroup.vue';
21
- import UiSearchInput from "./UiSearchInput/UiSearchInput.vue";
22
21
  import UiSection from "./UiSection/UiSection.vue";
23
22
  import UiSectionDivider from "./UiSectionDivider/UiSectionDivider.vue";
24
23
  import UiSkeletonBox from "./UiSkeletonBox/UiSkeletonBox.vue";
25
24
  import UiSpinner from "./UiSpinner/UiSpinner.vue";
26
25
  import UiSnackbar from "./UiSnackbar/UiSnackbar.vue";
27
26
  import UiToggleButton from "./UiToggleButton/UiToggleButton.vue";
28
- export { UiAutocomplete, UiBadge, UiButton, UiButtonGroup, UiCard, UiCheckbox, UiChip, UiDialog, UiFilterBadge, UiFilterButton, UiIcon, UiIconButton, UiInfoContent, UiInput, UiList, UiListItem, UiMenu, UiOverlay, UiOverlayMenu, UiRadioInputGroup, UiSearchInput, UiSection, UiSectionDivider, UiSkeletonBox, UiSpinner, UiSnackbar, UiToggleButton, };
27
+ import UiSearchInput from "./UiSearchInput/UiSearchInput.vue";
28
+ import UiSearchBar from "./UiSearchBar/UiSearchBar.vue";
29
+ export { UiAutocomplete, UiBadge, UiButton, UiButtonGroup, UiCard, UiCheckbox, UiChip, UiDialog, UiFilterBadge, UiFilterButton, UiIcon, UiIconButton, UiInfoContent, UiInput, UiList, UiListItem, UiMenu, UiOverlay, UiOverlayMenu, UiRadioInputGroup, UiSection, UiSectionDivider, UiSkeletonBox, UiSpinner, UiSnackbar, UiToggleButton, UiSearchInput, UiSearchBar, };
@@ -1 +1,52 @@
1
- export * from './index'
1
+ import type { AllowedComponentProps } from 'vue';
2
+ import type { ComponentCustomProps } from 'vue';
3
+ import type { ComponentOptionsMixin } from 'vue';
4
+ import type { DefineComponent } from 'vue';
5
+ import type { ExtractPropTypes } from 'vue';
6
+ import type { VNodeProps } from 'vue';
7
+
8
+ export declare const UiAutocomplete: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
9
+
10
+ export declare const UiBadge: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
11
+
12
+ export declare const UiButton: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
13
+
14
+ export declare const UiCard: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
15
+
16
+ export declare const UiCheckbox: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
17
+
18
+ export declare const UiChip: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
19
+
20
+ export declare const UiDialog: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
21
+
22
+ export declare const UiFilterBadge: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
23
+
24
+ export declare const UiFilterButton: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
25
+
26
+ export declare const UiIcon: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
27
+
28
+ export declare const UiIconButton: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
29
+
30
+ export declare const UiInfoContent: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
31
+
32
+ export declare const UiInput: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
33
+
34
+ export declare const UiList: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
35
+
36
+ export declare const UiListItem: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
37
+
38
+ export declare const UiOverlay: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
39
+
40
+ export declare const UiOverlayMenu: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
41
+
42
+ export declare const UiSearchInput: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
43
+
44
+ export declare const UiSection: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
45
+
46
+ export declare const UiSkeletonBox: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
47
+
48
+ export declare const UiSpinner: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
49
+
50
+ export declare const UiToggleButton: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
51
+
52
+ export { }