@formkit/pro 0.111.9 → 0.111.10

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
@@ -114,7 +114,8 @@ declare namespace inputs {
114
114
  datepicker,
115
115
  taglist,
116
116
  mask,
117
- transferlist
117
+ transferlist,
118
+ slider
118
119
  }
119
120
  }
120
121
  export { inputs }
@@ -143,6 +144,12 @@ export declare const repeater: FormKitProInput;
143
144
  */
144
145
  declare type SectionFactory = <IsRoot extends boolean = false>(sectionName: string, schema: string | (() => FormKitSchemaNode), root?: IsRoot) => FormKitProSection<IsRoot>;
145
146
 
147
+ /**
148
+ * Input definition for a slider input.
149
+ * @public
150
+ */
151
+ export declare const slider: FormKitProInput;
152
+
146
153
  /**
147
154
  * Input definition for a taglist input.
148
155
  * @public