@regle/core 0.1.6 → 0.1.7
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/dist/index.cjs +2 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -93,6 +93,7 @@ type AddDollarToOptions<T extends Record<string, any>> = {
|
|
|
93
93
|
|
|
94
94
|
interface Regle<TState extends Record<string, any> = EmptyObject, TRules extends ReglePartialValidationTree<TState, CustomRulesDeclarationTree> = EmptyObject, TExternal extends RegleExternalErrorTree<TState> = never, TValidationGroups extends Record<string, RegleValidationGroupEntry[]> = never> {
|
|
95
95
|
regle: RegleStatus<TState, TRules, TValidationGroups>;
|
|
96
|
+
r$: RegleStatus<TState, TRules, TValidationGroups>;
|
|
96
97
|
/** Show active errors based on your behaviour options (lazy, autoDirty)
|
|
97
98
|
* It allow you to skip scouting the `regle` object
|
|
98
99
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -93,6 +93,7 @@ type AddDollarToOptions<T extends Record<string, any>> = {
|
|
|
93
93
|
|
|
94
94
|
interface Regle<TState extends Record<string, any> = EmptyObject, TRules extends ReglePartialValidationTree<TState, CustomRulesDeclarationTree> = EmptyObject, TExternal extends RegleExternalErrorTree<TState> = never, TValidationGroups extends Record<string, RegleValidationGroupEntry[]> = never> {
|
|
95
95
|
regle: RegleStatus<TState, TRules, TValidationGroups>;
|
|
96
|
+
r$: RegleStatus<TState, TRules, TValidationGroups>;
|
|
96
97
|
/** Show active errors based on your behaviour options (lazy, autoDirty)
|
|
97
98
|
* It allow you to skip scouting the `regle` object
|
|
98
99
|
*/
|