@sfxcode/formkit-primevue 1.7.0 → 1.7.2
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/README.md +2 -0
- package/dist/formkit/PrimeTreeSelect.vue.d.ts +6 -0
- package/dist/formkit/index.d.ts +2 -0
- package/dist/formkit-primevue.es.js +253 -204
- package/dist/formkit-primevue.umd.js +1 -1
- package/package.json +18 -18
package/README.md
CHANGED
|
@@ -52,6 +52,7 @@ You can use it or take it as base for your own styling.
|
|
|
52
52
|
## Supported Inputs
|
|
53
53
|
|
|
54
54
|
- Calendar
|
|
55
|
+
- CascadeSelect
|
|
55
56
|
- Checkbox
|
|
56
57
|
- Dropdown
|
|
57
58
|
- Editor (HTML Editor)
|
|
@@ -71,6 +72,7 @@ You can use it or take it as base for your own styling.
|
|
|
71
72
|
- SelectButton
|
|
72
73
|
- TriStateCheckbox
|
|
73
74
|
- RadioButton
|
|
75
|
+
- TreeSelect
|
|
74
76
|
|
|
75
77
|
## Demo
|
|
76
78
|
[Demo/Playground](https://formkit-primevue.netlify.app/)
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
context: ObjectConstructor;
|
|
3
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
4
|
+
context: ObjectConstructor;
|
|
5
|
+
}>>, {}, {}>;
|
|
6
|
+
export default _default;
|
package/dist/formkit/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export declare const primeToggleButtonDefinition: FormKitTypeDefinition;
|
|
|
22
22
|
export declare const primeSelectButtonDefinition: FormKitTypeDefinition;
|
|
23
23
|
export declare const primeTriStateCheckboxDefinition: FormKitTypeDefinition;
|
|
24
24
|
export declare const primeCascadeSelectDefinition: FormKitTypeDefinition;
|
|
25
|
+
export declare const primeTreeSelectDefinition: FormKitTypeDefinition;
|
|
25
26
|
export declare const primeInputs: {
|
|
26
27
|
primeAutoComplete: FormKitTypeDefinition;
|
|
27
28
|
primeInputText: FormKitTypeDefinition;
|
|
@@ -46,4 +47,5 @@ export declare const primeInputs: {
|
|
|
46
47
|
primeSelectButton: FormKitTypeDefinition;
|
|
47
48
|
primeTriStateCheckbox: FormKitTypeDefinition;
|
|
48
49
|
primeCascadeSelect: FormKitTypeDefinition;
|
|
50
|
+
primeTreeSelect: FormKitTypeDefinition;
|
|
49
51
|
};
|