portal-design-system 0.0.965 → 0.0.966

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,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
15
15
  readonly multiple?: boolean | undefined;
16
16
  readonly searchable?: boolean | undefined;
17
17
  readonly showSelectedCount?: boolean | undefined;
18
+ readonly showSelectedOptions?: boolean | undefined;
18
19
  readonly disabled?: boolean | undefined;
19
20
  readonly classList?: string | undefined;
20
21
  readonly labelClassList?: string | undefined;
@@ -58,6 +59,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
58
59
  multiple?: boolean;
59
60
  searchable?: boolean;
60
61
  showSelectedCount?: boolean;
62
+ showSelectedOptions?: boolean;
61
63
  disabled?: boolean;
62
64
  classList?: string;
63
65
  labelClassList?: string;
@@ -111,6 +113,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
111
113
  multiple?: boolean;
112
114
  searchable?: boolean;
113
115
  showSelectedCount?: boolean;
116
+ showSelectedOptions?: boolean;
114
117
  disabled?: boolean;
115
118
  classList?: string;
116
119
  labelClassList?: string;
@@ -3,7 +3,11 @@ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOp
3
3
  type __VLS_Props = {
4
4
  id: string;
5
5
  label?: string;
6
+ labelStart?: string;
7
+ labelEnd?: string;
6
8
  placeholder?: string;
9
+ placeholderStart?: string;
10
+ placeholderEnd?: string;
7
11
  rounded?: 'full' | 'lg' | 'xl';
8
12
  classList?: string;
9
13
  labelClassList?: string;
@@ -8,6 +8,7 @@ type __VLS_Props = {
8
8
  multiple?: boolean;
9
9
  searchable?: boolean;
10
10
  showSelectedCount?: boolean;
11
+ showSelectedOptions?: boolean;
11
12
  disabled?: boolean;
12
13
  classList?: string;
13
14
  labelClassList?: string;