@formkit/pro 1.0.0-alpha.10 → 1.0.0-alpha.100-6bfa4da

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 CHANGED
@@ -56,6 +56,12 @@ export declare function createProPlugin(apiKey: string, inputs?: Record<string,
56
56
  */
57
57
  export declare function createSectionFactory(inputCode: string): SectionFactory;
58
58
 
59
+ /**
60
+ * Input definition for a datepicker input.
61
+ * @public
62
+ */
63
+ export declare const datepicker: FormKitProInput;
64
+
59
65
  /**
60
66
  * Input definition for a dropdown input.
61
67
  * @public
@@ -104,11 +110,21 @@ declare namespace inputs {
104
110
  toggle,
105
111
  repeater,
106
112
  rating,
107
- autocomplete
113
+ autocomplete,
114
+ datepicker,
115
+ taglist,
116
+ mask,
117
+ transferlist
108
118
  }
109
119
  }
110
120
  export { inputs }
111
121
 
122
+ /**
123
+ * Input definition for a mask input.
124
+ * @public
125
+ */
126
+ export declare const mask: FormKitProInput;
127
+
112
128
  /**
113
129
  * Input definition for a rating input.
114
130
  * @public
@@ -127,12 +143,24 @@ export declare const repeater: FormKitProInput;
127
143
  */
128
144
  declare type SectionFactory = <IsRoot extends boolean = false>(sectionName: string, schema: string | (() => FormKitSchemaNode), root?: IsRoot) => FormKitProSection<IsRoot>;
129
145
 
146
+ /**
147
+ * Input definition for a taglist input.
148
+ * @public
149
+ */
150
+ export declare const taglist: FormKitProInput;
151
+
130
152
  /**
131
153
  * Input definition for a toggle input.
132
154
  * @public
133
155
  */
134
156
  export declare const toggle: FormKitProInput;
135
157
 
158
+ /**
159
+ * Input definition for a transferlist input.
160
+ * @public
161
+ */
162
+ export declare const transferlist: FormKitProInput;
163
+
136
164
 
137
165
  /**
138
166
  * @public