@point-hub/papp 0.0.140 → 0.0.142
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/base-choosen.vue.d.ts +2 -0
- package/dist/components/base-input-mask.vue.d.ts +2 -0
- package/dist/components/base-input-number.vue.d.ts +2 -0
- package/dist/components/base-input.vue.d.ts +2 -0
- package/dist/components/base-select.vue.d.ts +2 -0
- package/dist/index.css +1 -1
- package/dist/index.js +355 -339
- package/dist/index.umd.cjs +1 -1
- package/package.json +1 -1
|
@@ -19,6 +19,7 @@ export interface Props {
|
|
|
19
19
|
readonly?: boolean;
|
|
20
20
|
disabled?: boolean;
|
|
21
21
|
helpers?: string[];
|
|
22
|
+
paddingless?: boolean;
|
|
22
23
|
dataTestid?: string;
|
|
23
24
|
}
|
|
24
25
|
type __VLS_Props = Props;
|
|
@@ -72,6 +73,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
72
73
|
readonly: boolean;
|
|
73
74
|
border: BaseChoosenBorderType;
|
|
74
75
|
autofocus: boolean;
|
|
76
|
+
paddingless: boolean;
|
|
75
77
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
76
78
|
modalRef: unknown;
|
|
77
79
|
inputRef: unknown;
|
|
@@ -17,6 +17,7 @@ export interface Props {
|
|
|
17
17
|
rounded?: boolean;
|
|
18
18
|
helpers?: string[];
|
|
19
19
|
options?: any;
|
|
20
|
+
paddingless?: boolean;
|
|
20
21
|
dataTestid?: string;
|
|
21
22
|
}
|
|
22
23
|
type __VLS_Props = Props;
|
|
@@ -40,6 +41,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
40
41
|
readonly: boolean;
|
|
41
42
|
border: BaseInputMaskBorderType;
|
|
42
43
|
autofocus: boolean;
|
|
44
|
+
paddingless: boolean;
|
|
43
45
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
44
46
|
inputRef: HTMLInputElement;
|
|
45
47
|
}, any>;
|
|
@@ -16,6 +16,7 @@ export interface Props {
|
|
|
16
16
|
autofocus?: boolean;
|
|
17
17
|
size?: string;
|
|
18
18
|
rounded?: boolean;
|
|
19
|
+
paddingless?: boolean;
|
|
19
20
|
/**
|
|
20
21
|
* Clearing or resetting errors when an update or change occurs.
|
|
21
22
|
*
|
|
@@ -63,6 +64,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
63
64
|
readonly: boolean;
|
|
64
65
|
border: BaseInputNumberBorderType;
|
|
65
66
|
autofocus: boolean;
|
|
67
|
+
paddingless: boolean;
|
|
66
68
|
resetErrorsOnUpdate: boolean;
|
|
67
69
|
decimalLength: number;
|
|
68
70
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
@@ -17,6 +17,7 @@ export interface Props {
|
|
|
17
17
|
disabled?: boolean;
|
|
18
18
|
size?: string;
|
|
19
19
|
rounded?: boolean;
|
|
20
|
+
paddingless?: boolean;
|
|
20
21
|
/**
|
|
21
22
|
* Clearing or resetting errors when an update or change occurs.
|
|
22
23
|
*
|
|
@@ -68,6 +69,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
68
69
|
readonly: boolean;
|
|
69
70
|
border: BaseInputBorderType;
|
|
70
71
|
autofocus: boolean;
|
|
72
|
+
paddingless: boolean;
|
|
71
73
|
resetErrorsOnUpdate: boolean;
|
|
72
74
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
73
75
|
inputRef: HTMLInputElement;
|
|
@@ -17,6 +17,7 @@ export interface Props {
|
|
|
17
17
|
required?: boolean;
|
|
18
18
|
readonly?: boolean;
|
|
19
19
|
disabled?: boolean;
|
|
20
|
+
paddingless?: boolean;
|
|
20
21
|
helpers?: string[];
|
|
21
22
|
dataTestid?: string;
|
|
22
23
|
}
|
|
@@ -52,6 +53,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
52
53
|
readonly: boolean;
|
|
53
54
|
border: BaseSelectBorderType;
|
|
54
55
|
autofocus: boolean;
|
|
56
|
+
paddingless: boolean;
|
|
55
57
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
56
58
|
inputRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
57
59
|
as: {
|