@a-vision-software/vue-input-components 1.4.18 → 1.4.20

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.
@@ -22,6 +22,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
22
22
  labelPosition: string;
23
23
  labelAlign: string;
24
24
  labelWidth: string;
25
+ readonly: boolean;
25
26
  }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
26
27
  "update:modelValue": (value: string | string[]) => void;
27
28
  changed: () => void;
@@ -48,6 +49,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
48
49
  labelPosition: string;
49
50
  labelAlign: string;
50
51
  labelWidth: string;
52
+ readonly: boolean;
51
53
  }>>> & Readonly<{
52
54
  "onUpdate:modelValue"?: ((value: string | string[]) => any) | undefined;
53
55
  onChanged?: (() => any) | undefined;
@@ -74,6 +76,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
74
76
  placeholder: string;
75
77
  filterable: boolean;
76
78
  maxHeight: string;
79
+ readonly: boolean;
77
80
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
78
81
  export default _default;
79
82
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -3,4 +3,12 @@ export declare const config: {
3
3
  locale: string;
4
4
  options: Intl.DateTimeFormatOptions;
5
5
  };
6
+ datetimeFormat: {
7
+ locale: string;
8
+ options: Intl.DateTimeFormatOptions;
9
+ };
10
+ timeFormat: {
11
+ locale: string;
12
+ options: Intl.DateTimeFormatOptions;
13
+ };
6
14
  };
@@ -28,4 +28,5 @@ export interface DropdownProps {
28
28
  labelPosition?: 'top' | 'left';
29
29
  labelAlign?: 'left' | 'center' | 'right';
30
30
  labelWidth?: string;
31
+ readonly?: boolean;
31
32
  }
@@ -1,7 +1,7 @@
1
1
  import { ListActionProps } from './action';
2
2
 
3
3
  type ListPresentation = 'default' | 'minimal';
4
- type ListDataType = 'text' | 'number' | 'date' | 'action' | 'checkbox' | 'icon' | 'email';
4
+ type ListDataType = 'text' | 'number' | 'date' | 'action' | 'checkbox' | 'icon' | 'email' | 'datetime' | 'time';
5
5
  interface ListAction {
6
6
  id: string;
7
7
  label?: string;
@@ -11,6 +11,9 @@ interface ListAction {
11
11
  onClick?: (item: any) => void;
12
12
  onActionClick?: (item: any, action: any) => void;
13
13
  }
14
+ interface conditionalClassList {
15
+ [key: string]: (value: any) => boolean;
16
+ }
14
17
  interface ListColumn {
15
18
  key: string;
16
19
  label: string;
@@ -21,6 +24,7 @@ interface ListColumn {
21
24
  width?: string;
22
25
  minWidth?: string;
23
26
  maxWidth?: string;
27
+ cellClasses?: conditionalClassList;
24
28
  }
25
29
  interface ListFilter {
26
30
  placeholder?: string;