pulse-js-framework 1.7.4 → 1.7.6

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/types/index.d.ts CHANGED
@@ -180,3 +180,47 @@ export {
180
180
  debounce,
181
181
  throttle
182
182
  } from './utils';
183
+
184
+ // Async Primitives
185
+ export {
186
+ VersionedContext,
187
+ VersionedAsyncController,
188
+ VersionedAsyncOptions,
189
+ AsyncStatus,
190
+ UseAsyncOptions,
191
+ UseAsyncReturn,
192
+ ResourceOptions,
193
+ UseResourceReturn,
194
+ PollingOptions,
195
+ UsePollingReturn,
196
+ ResourceCacheStats,
197
+ createVersionedAsync,
198
+ useAsync,
199
+ useResource,
200
+ usePolling,
201
+ clearResourceCache,
202
+ getResourceCacheStats
203
+ } from './async';
204
+
205
+ // Form Management
206
+ export {
207
+ ValidationResult,
208
+ AsyncValidationResult,
209
+ ValidationRule,
210
+ AsyncValidationRule,
211
+ AnyValidationRule,
212
+ AsyncValidatorOptions,
213
+ Validators,
214
+ validators,
215
+ Field,
216
+ ValidationSchema,
217
+ FormOptions,
218
+ FormFields,
219
+ FormErrors,
220
+ UseFormReturn,
221
+ UseFieldOptions,
222
+ UseFieldArrayReturn,
223
+ useForm,
224
+ useField,
225
+ useFieldArray
226
+ } from './form';