pdap-design-system 3.1.0-beta.41 → 3.1.0-beta.43
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/README.md +1 -1
- package/dist/components/AsyncTypeahead/AsyncTypeahead.vue.d.ts +3 -0
- package/dist/components/AsyncTypeahead/types.d.ts +1 -0
- package/dist/index.cjs +6 -6
- package/dist/index.js +1414 -1415
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -6,7 +6,7 @@ _A `Vue` component library, styling system, and image asset repository for PDAP-
|
|
6
6
|
|
7
7
|
[](https://discord.gg/vKhDv7nC8B)
|
8
8
|
|
9
|
-
## Usage
|
9
|
+
## Usage
|
10
10
|
|
11
11
|
1. Install the package
|
12
12
|
|
@@ -8,6 +8,7 @@ declare const _default: <T>(__VLS_props: {
|
|
8
8
|
items: T[] | undefined;
|
9
9
|
formatItemForDisplay?: ((item: T) => string) | undefined;
|
10
10
|
error?: string | undefined;
|
11
|
+
position?: "top" | "bottom" | undefined;
|
11
12
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
|
12
13
|
attrs: any;
|
13
14
|
emit: (event: "onInput" | "onFocus" | "onBlur" | "selectItem", ...args: any[]) => void;
|
@@ -33,6 +34,7 @@ declare const _default: <T>(__VLS_props: {
|
|
33
34
|
items: T[] | undefined;
|
34
35
|
formatItemForDisplay?: ((item: T) => string) | undefined;
|
35
36
|
error?: string | undefined;
|
37
|
+
position?: "top" | "bottom" | undefined;
|
36
38
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
37
39
|
expose(exposed: import("vue").ShallowUnwrapRef<{
|
38
40
|
boldMatchText: (text: string) => string;
|
@@ -62,6 +64,7 @@ declare const _default: <T>(__VLS_props: {
|
|
62
64
|
items: T[] | undefined;
|
63
65
|
formatItemForDisplay?: ((item: T) => string) | undefined;
|
64
66
|
error?: string | undefined;
|
67
|
+
position?: "top" | "bottom" | undefined;
|
65
68
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
66
69
|
expose(exposed: import("vue").ShallowUnwrapRef<{
|
67
70
|
boldMatchText: (text: string) => string;
|