@dpa-id-components/dpa-shared-components 3.1.4 → 3.1.6
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 +13 -0
- package/dist/components/UiDatePicker/UiDatePicker.vue.d.ts +3 -3
- package/dist/components/testcomponent.vue.d.ts +2 -0
- package/dist/dpa-shared-components.mjs +3704 -3272
- package/dist/dpa-shared-components.umd.js +6 -6
- package/dist/filter-e213ae59.mjs +15 -0
- package/dist/filter-outline-91e5aa0a.mjs +19 -0
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -6,6 +6,19 @@ Collection of vue 3 components for usage across dpa projects.
|
|
|
6
6
|
|
|
7
7
|
This projects requires a node version >= 16.
|
|
8
8
|
|
|
9
|
+
### Notes
|
|
10
|
+
|
|
11
|
+
This project uses Typescript version >= 5.0. This upgrade included changes to the module resolution, which are not yet
|
|
12
|
+
reflected fully in the tsconfig.
|
|
13
|
+
If your project uses TS 5.0 or higher itself you most likely need to set
|
|
14
|
+
|
|
15
|
+
```JSON
|
|
16
|
+
"resolvePackageJsonExports": false
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
to prevent transpiler errors. For more information
|
|
20
|
+
see [the migration guide of ts](https://github.com/vuejs/tsconfig#migrating-from-typescript--50).
|
|
21
|
+
|
|
9
22
|
## Usage
|
|
10
23
|
|
|
11
24
|
To use a component just import it from `@dpa-id-components/dpa-shared-components` like
|
|
@@ -92,7 +92,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
92
92
|
default: number;
|
|
93
93
|
};
|
|
94
94
|
maxDate: {
|
|
95
|
-
type: __PropType<Date |
|
|
95
|
+
type: __PropType<Date | undefined>;
|
|
96
96
|
required: false;
|
|
97
97
|
default: null;
|
|
98
98
|
};
|
|
@@ -198,7 +198,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
198
198
|
default: number;
|
|
199
199
|
};
|
|
200
200
|
maxDate: {
|
|
201
|
-
type: __PropType<Date |
|
|
201
|
+
type: __PropType<Date | undefined>;
|
|
202
202
|
required: false;
|
|
203
203
|
default: null;
|
|
204
204
|
};
|
|
@@ -238,7 +238,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
238
238
|
cancel: string | undefined;
|
|
239
239
|
submit: string | undefined;
|
|
240
240
|
firstAvailableDate: number | undefined;
|
|
241
|
-
maxDate: Date |
|
|
241
|
+
maxDate: Date | undefined;
|
|
242
242
|
autoRange: number | null | undefined;
|
|
243
243
|
activeState: boolean | undefined;
|
|
244
244
|
monthPicker: boolean | undefined;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|