pangea-lib 2.11.576 → 2.11.577
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 +31 -31
- package/dist/main.css +1 -1
- package/dist/main.es.js +3204 -3141
- package/dist/types/components/form/inputs/PgaColorSelector.vue.d.ts +50 -0
- package/dist/types/components/index.d.ts +2 -1
- package/package.json +1 -1
- /package/dist/types/components/form/inputs/{PgaSelectIcon.vue.d.ts → PgaIconSelector.vue.d.ts} +0 -0
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { InputError } from '../../../types';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<{
|
|
4
|
+
modelValue: {
|
|
5
|
+
required: true;
|
|
6
|
+
type: import('vue').PropType<string>;
|
|
7
|
+
};
|
|
8
|
+
label: {
|
|
9
|
+
type: import('vue').PropType<string>;
|
|
10
|
+
};
|
|
11
|
+
withOptionalLabel: {
|
|
12
|
+
type: import('vue').PropType<boolean>;
|
|
13
|
+
};
|
|
14
|
+
withLabelSpace: {
|
|
15
|
+
type: import('vue').PropType<boolean>;
|
|
16
|
+
};
|
|
17
|
+
errors: {
|
|
18
|
+
type: import('vue').PropType<InputError[]>;
|
|
19
|
+
};
|
|
20
|
+
disabled: {
|
|
21
|
+
type: import('vue').PropType<boolean>;
|
|
22
|
+
};
|
|
23
|
+
grow: {
|
|
24
|
+
type: import('vue').PropType<number>;
|
|
25
|
+
};
|
|
26
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
27
|
+
modelValue: {
|
|
28
|
+
required: true;
|
|
29
|
+
type: import('vue').PropType<string>;
|
|
30
|
+
};
|
|
31
|
+
label: {
|
|
32
|
+
type: import('vue').PropType<string>;
|
|
33
|
+
};
|
|
34
|
+
withOptionalLabel: {
|
|
35
|
+
type: import('vue').PropType<boolean>;
|
|
36
|
+
};
|
|
37
|
+
withLabelSpace: {
|
|
38
|
+
type: import('vue').PropType<boolean>;
|
|
39
|
+
};
|
|
40
|
+
errors: {
|
|
41
|
+
type: import('vue').PropType<InputError[]>;
|
|
42
|
+
};
|
|
43
|
+
disabled: {
|
|
44
|
+
type: import('vue').PropType<boolean>;
|
|
45
|
+
};
|
|
46
|
+
grow: {
|
|
47
|
+
type: import('vue').PropType<number>;
|
|
48
|
+
};
|
|
49
|
+
}>>, {}, {}>;
|
|
50
|
+
export default _default;
|
|
@@ -28,13 +28,14 @@ export { default as PgaForm } from './form/PgaForm.vue';
|
|
|
28
28
|
export { default as PgaFormRow } from './form/PgaFormRow.vue';
|
|
29
29
|
export { default as PgaInputGroup } from './form/PgaInputGroup.vue';
|
|
30
30
|
export { default as PgaLoginForm } from './form/PgaLoginForm.vue';
|
|
31
|
+
export { default as PgaColorSelector } from './form/inputs/PgaColorSelector.vue';
|
|
31
32
|
export { default as PgaDatePicker } from './form/inputs/PgaDatePicker.vue';
|
|
33
|
+
export { default as PgaIconSelector } from './form/inputs/PgaIconSelector.vue';
|
|
32
34
|
export { default as PgaInput } from './form/inputs/PgaInput.vue';
|
|
33
35
|
export { default as PgaInputFile } from './form/inputs/PgaInputFile.vue';
|
|
34
36
|
export { default as PgaInputFileExcel } from './form/inputs/PgaInputFileExcel.vue';
|
|
35
37
|
export { default as PgaInputSelect } from './form/inputs/PgaInputSelect.vue';
|
|
36
38
|
export { default as PgaSelect } from './form/inputs/PgaSelect.vue';
|
|
37
|
-
export { default as PgaSelectIcon } from './form/inputs/PgaSelectIcon.vue';
|
|
38
39
|
export { default as PgaSwitch } from './form/inputs/PgaSwitch.vue';
|
|
39
40
|
export { default as PgaSwitchOptions } from './form/inputs/PgaSwitchOptions.vue';
|
|
40
41
|
export { default as PgaImage } from './image/PgaImage.vue';
|
package/package.json
CHANGED
/package/dist/types/components/form/inputs/{PgaSelectIcon.vue.d.ts → PgaIconSelector.vue.d.ts}
RENAMED
|
File without changes
|