pangea-lib 2.12.65 → 2.12.67
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/main.cjs.js +17 -17
- package/dist/main.css +1 -1
- package/dist/main.es.js +1617 -1599
- package/dist/types/components/form/PgaFormTitle.vue.d.ts +17 -0
- package/dist/types/components/index.d.ts +1 -0
- package/dist/types/components/info-panel/PgaInfoPanel.vue.d.ts +1 -0
- package/dist/types/components/info-panel/PgaInfoPanelItem.vue.d.ts +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { TextProp } from '../../types';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
title: TextProp;
|
|
5
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
+
title: TextProp;
|
|
7
|
+
}>>>, {}, {}>;
|
|
8
|
+
export default _default;
|
|
9
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
10
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
11
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
12
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
13
|
+
} : {
|
|
14
|
+
type: import('vue').PropType<T[K]>;
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -30,6 +30,7 @@ export { default as PgaDisplayPrice } from './display/PgaDisplayPrice.vue';
|
|
|
30
30
|
export { default as PgaDisplayText } from './display/PgaDisplayText.vue';
|
|
31
31
|
export { default as PgaForm } from './form/PgaForm.vue';
|
|
32
32
|
export { default as PgaFormRow } from './form/PgaFormRow.vue';
|
|
33
|
+
export { default as PgaFormTitle } from './form/PgaFormTitle.vue';
|
|
33
34
|
export { default as PgaInputGroup } from './form/PgaInputGroup.vue';
|
|
34
35
|
export { default as PgaLoginForm } from './form/PgaLoginForm.vue';
|
|
35
36
|
export { default as PgaCheckbox } from './form/inputs/PgaCheckbox.vue';
|
|
@@ -3,9 +3,11 @@ import { TextProp } from '../../types';
|
|
|
3
3
|
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
4
4
|
title: TextProp;
|
|
5
5
|
info: TextProp;
|
|
6
|
+
fullWidth?: boolean;
|
|
6
7
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
8
|
title: TextProp;
|
|
8
9
|
info: TextProp;
|
|
10
|
+
fullWidth?: boolean;
|
|
9
11
|
}>>>, {}, {}>;
|
|
10
12
|
export default _default;
|
|
11
13
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|