@gaddario98/react-core 2.1.1 → 2.1.3
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/form/index.d.ts +1 -1
- package/dist/form/index.js +79 -31
- package/dist/form/index.js.map +1 -1
- package/dist/form/index.mjs +79 -31
- package/dist/form/index.mjs.map +1 -1
- package/dist/index.d.ts +15 -2697
- package/dist/localization/index.d.ts +1 -1
- package/dist/pages/index.d.ts +4 -4
- package/dist/queries/index.d.ts +2 -2
- package/package.json +3 -2
package/dist/pages/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import * as _gaddario98_react_form from '
|
|
3
|
-
import { FieldValues, FormManagerConfig, Submit, SetValueFunction, FormManager, SubmitKeysArg, FormElements } from '
|
|
4
|
-
import { QueriesArray, MultipleQueryResponse, AllMutation, QueryDefinition, MutationConfig, QueryProps, QueryAtIndex, ExtractQuery } from '
|
|
2
|
+
import * as _gaddario98_react_form from '../form/index';
|
|
3
|
+
import { FieldValues, FormManagerConfig, Submit, SetValueFunction, FormManager, SubmitKeysArg, FormElements } from '../form/index';
|
|
4
|
+
import { QueriesArray, MultipleQueryResponse, AllMutation, QueryDefinition, MutationConfig, QueryProps, QueryAtIndex, ExtractQuery } from '../queries/index';
|
|
5
5
|
import { DeepKeys, DeepValue } from '@tanstack/react-form';
|
|
6
6
|
import { ComponentProps } from 'react';
|
|
7
7
|
import * as jotai from 'jotai';
|
|
8
|
-
import { AuthState } from '
|
|
8
|
+
import { AuthState } from '../auth/index';
|
|
9
9
|
import * as jotai_family from 'jotai-family';
|
|
10
10
|
|
|
11
11
|
/**
|
package/dist/queries/index.d.ts
CHANGED
|
@@ -2,9 +2,9 @@ import * as jotai from 'jotai';
|
|
|
2
2
|
import * as jotai_utils from 'jotai/utils';
|
|
3
3
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
4
4
|
import { useMutation, MutateOptions, UseMutationOptions, UseQueryOptions, useQuery, UseMutationResult, QueryClient } from '@tanstack/react-query';
|
|
5
|
-
import { NotificationConfig } from '
|
|
5
|
+
import { NotificationConfig } from '../notifications/index';
|
|
6
6
|
import { AxiosRequestConfig } from 'axios';
|
|
7
|
-
import * as _gaddario98_react_state from '
|
|
7
|
+
import * as _gaddario98_react_state from '../state/index';
|
|
8
8
|
import { PersistQueryClientOptions } from '@tanstack/react-query-persist-client';
|
|
9
9
|
import { PropsWithChildren } from 'react';
|
|
10
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gaddario98/react-core",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
],
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "rollup -c rollup.config.js && rollup -c rollup.dts.config.js",
|
|
14
|
-
"prepublishOnly": "yarn build"
|
|
14
|
+
"prepublishOnly": "yarn build",
|
|
15
|
+
"deploy": "npm publish --access public"
|
|
15
16
|
},
|
|
16
17
|
"devDependencies": {
|
|
17
18
|
"@rollup/plugin-babel": "^6.0.4",
|