@das-fed/ui 6.4.0-dev.55.21 → 6.4.0-dev.55.22

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,65 +1,4 @@
1
1
 
2
- interface optionsProps {
3
-
4
- disabled?: boolean
5
-
6
- mutual?: boolean
7
- [idx: string]: any
8
- }
9
-
10
- interface ValLabel<N> {
11
- value?: N
12
- label?: N
13
- }
14
-
15
2
  export interface Props {
16
-
17
- modelValue?: any
18
-
19
-
20
- checkboxType?: 'default' | 'group'
21
-
22
-
23
- disabled?: boolean
24
-
25
-
26
- optionType?: 'default' | 'square' | 'filterSquare'
27
-
28
-
29
- options?: optionsProps[]
30
-
31
-
32
- defaultProps?: ValLabel<string>
33
-
34
-
35
- name?: string
36
-
37
-
38
- layout?: 'default' | 'vertical'
39
-
40
-
41
- indeterminate?: boolean
42
-
43
-
44
- isView?: boolean
45
-
46
-
47
- width?: string
48
-
49
-
50
- maxWidth?: string
51
-
52
-
53
- size?: 'small' | 'middle' | 'large'
54
-
55
-
56
- error?: boolean
57
-
58
- errorLabel?: string
59
-
60
- teleported?: boolean
61
-
62
- errorMode?: 'default' | 'overlay'
63
-
64
- isErrorTitle?: boolean
3
+
65
4
  }