pdap-design-system 3.0.0 → 3.1.0-beta.1
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/components/Form/PdapForm.vue.d.ts +3 -1
- package/dist/components/RecordTypeIcon/RecordTypeIcon.vue.d.ts +16 -0
- package/dist/components/RecordTypeIcon/index.d.ts +1 -0
- package/dist/components/RecordTypeIcon/util.d.ts +5 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.cjs +558 -3
- package/dist/index.js +4408 -1211
- package/dist/styles.css +1 -1
- package/package.json +6 -1
@@ -107,7 +107,9 @@ import { PdapFormProps } from './types';
|
|
107
107
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PdapFormProps>, {
|
108
108
|
error: null;
|
109
109
|
resetOn: string;
|
110
|
-
}>, {
|
110
|
+
}>, {
|
111
|
+
setValues: <T extends Record<string, string>>(update: T) => void;
|
112
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
111
113
|
change: (...args: any[]) => void;
|
112
114
|
submit: (...args: any[]) => void;
|
113
115
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PdapFormProps>, {
|
@@ -0,0 +1,16 @@
|
|
1
|
+
interface Props {
|
2
|
+
recordType: string;
|
3
|
+
}
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {
|
5
|
+
recordTypesToIcons: import("vue").Ref<Map<string, import("@fortawesome/fontawesome-common-types").IconDefinition>>;
|
6
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {}, {}>;
|
7
|
+
export default _default;
|
8
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
9
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
10
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
11
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
12
|
+
} : {
|
13
|
+
type: import('vue').PropType<T[K]>;
|
14
|
+
required: true;
|
15
|
+
};
|
16
|
+
};
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as RecordTypeIcon } from './RecordTypeIcon.vue';
|