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.
- package/dist/ExampleApp.vue.d.ts +3 -0
- package/dist/components/inputs/DateInput.vue.d.ts +4 -0
- package/dist/components/inputs/Select.vue.d.ts +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +6159 -5988
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/ExampleApp.vue.d.ts
CHANGED
|
@@ -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;
|