inertia-bootstrap-forms 1.0.25 → 1.0.27
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/index.d.ts +63 -0
- package/package.json +4 -3
package/index.d.ts
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
// index.d.ts
|
|
2
|
+
import { DefineComponent } from 'vue';
|
|
3
|
+
|
|
4
|
+
export const AmountInput: DefineComponent<{}, {}, any>;
|
|
5
|
+
export const CaptchaInput: DefineComponent<{}, {}, any>;
|
|
6
|
+
export const CheckboxButtonInput: DefineComponent<{}, {}, any>;
|
|
7
|
+
export const CheckboxInput: DefineComponent<{}, {}, any>;
|
|
8
|
+
export const CheckboxToggle: DefineComponent<{}, {}, any>;
|
|
9
|
+
export const countryCodes: any;
|
|
10
|
+
export const EditorInput: DefineComponent<{}, {}, any>;
|
|
11
|
+
export const EmailInput: DefineComponent<{}, {}, any>;
|
|
12
|
+
export const FileInput: DefineComponent<{
|
|
13
|
+
|
|
14
|
+
}, {}, any>;
|
|
15
|
+
export const FileUploader: DefineComponent<{}, {}, any>;
|
|
16
|
+
export const FormContainer: DefineComponent<{}, {}, any>;
|
|
17
|
+
export const FormLabel: DefineComponent<{}, {}, any>;
|
|
18
|
+
export const GroupControl: DefineComponent<{}, {}, any>;
|
|
19
|
+
export const LocationInput: DefineComponent<{}, {}, any>;
|
|
20
|
+
export const MobileInput: DefineComponent<{}, {}, any>;
|
|
21
|
+
export const MultiQuantityInput: DefineComponent<{}, {}, any>;
|
|
22
|
+
export const PasswordInput: DefineComponent<{}, {}, any>;
|
|
23
|
+
export const PersianDatePickerInput: DefineComponent<{}, {}, any>;
|
|
24
|
+
export const QuantityInput: DefineComponent<{}, {}, any>;
|
|
25
|
+
export const SecondarySubmitButton: DefineComponent<{}, {}, any>;
|
|
26
|
+
export const Select2Input: DefineComponent<{}, {}, any>;
|
|
27
|
+
export const StarRatingInput: DefineComponent<{}, {}, any>;
|
|
28
|
+
export const SubmitButton: DefineComponent<{}, {}, any>;
|
|
29
|
+
export const TelInput: DefineComponent<{}, {}, any>;
|
|
30
|
+
export const TextAreaInput: DefineComponent<{}, {}, any>;
|
|
31
|
+
export const TextInput: DefineComponent<{}, {}, any>;
|
|
32
|
+
|
|
33
|
+
// این قسمت برای اینکه import * as ... هم ساپورت بشه
|
|
34
|
+
declare const Vue3FormComponents: {
|
|
35
|
+
AmountInput: typeof AmountInput;
|
|
36
|
+
CaptchaInput: typeof CaptchaInput;
|
|
37
|
+
CheckboxButtonInput: typeof CheckboxButtonInput;
|
|
38
|
+
CheckboxInput: typeof CheckboxInput;
|
|
39
|
+
CheckboxToggle: typeof CheckboxToggle;
|
|
40
|
+
countryCodes: typeof countryCodes;
|
|
41
|
+
EditorInput: typeof EditorInput;
|
|
42
|
+
EmailInput: typeof EmailInput;
|
|
43
|
+
FileInput: typeof FileInput;
|
|
44
|
+
FileUploader: typeof FileUploader;
|
|
45
|
+
FormContainer: typeof FormContainer;
|
|
46
|
+
FormLabel: typeof FormLabel;
|
|
47
|
+
GroupControl: typeof GroupControl;
|
|
48
|
+
LocationInput: typeof LocationInput;
|
|
49
|
+
MobileInput: typeof MobileInput;
|
|
50
|
+
MultiQuantityInput: typeof MultiQuantityInput;
|
|
51
|
+
PasswordInput: typeof PasswordInput;
|
|
52
|
+
PersianDatePickerInput: typeof PersianDatePickerInput;
|
|
53
|
+
QuantityInput: typeof QuantityInput;
|
|
54
|
+
SecondarySubmitButton: typeof SecondarySubmitButton;
|
|
55
|
+
Select2Input: typeof Select2Input;
|
|
56
|
+
StarRatingInput: typeof StarRatingInput;
|
|
57
|
+
SubmitButton: typeof SubmitButton;
|
|
58
|
+
TelInput: typeof TelInput;
|
|
59
|
+
TextAreaInput: typeof TextAreaInput;
|
|
60
|
+
TextInput: typeof TextInput;
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
export default Vue3FormComponents;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "inertia-bootstrap-forms",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.27",
|
|
4
4
|
"description": "Create bootstrap forms with inertia and twitter bootstrap",
|
|
5
5
|
"main": "dist/inertia-bootstrap-forms.cjs.js",
|
|
6
6
|
"module": "dist/inertia-bootstrap-forms.es.js",
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
13
13
|
"dist",
|
|
14
|
-
"src"
|
|
14
|
+
"src",
|
|
15
|
+
"index.d.ts"
|
|
15
16
|
],
|
|
16
17
|
"exports": {
|
|
17
18
|
".": {
|
|
@@ -41,7 +42,7 @@
|
|
|
41
42
|
"choices.js": "^11.1.0",
|
|
42
43
|
"vue-tel-input": "^9.3.0",
|
|
43
44
|
"vue3-persian-datetime-picker": "^1.2.2",
|
|
44
|
-
"vue3-bootstrap-components": "1.0.
|
|
45
|
+
"vue3-bootstrap-components": "1.0.42"
|
|
45
46
|
},
|
|
46
47
|
"peerDependencies": {
|
|
47
48
|
"@inertiajs/vue3": "^2.0.3",
|