@resistdesign/voltra 3.0.0-alpha.31 → 3.0.0-alpha.32
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/api/ORM/drivers/common/index.d.ts +0 -10
- package/api/ORM/drivers/index.d.ts +1 -15
- package/api/ORM/index.d.ts +0 -15
- package/app/forms/core/index.d.ts +0 -5
- package/app/forms/index.d.ts +0 -5
- package/app/utils/index.d.ts +0 -15
- package/iac-packs/index.d.ts +0 -1
- package/native/index.js +0 -1
- package/native/utils/Route.d.ts +1 -4
- package/native/utils/index.d.ts +0 -1
- package/package.json +1 -1
- package/web/utils/Route.d.ts +0 -4
|
@@ -1,12 +1,2 @@
|
|
|
1
1
|
export * from "./Types";
|
|
2
2
|
export * from "./SupportedTypeInfoORMDBDrivers";
|
|
3
|
-
/**
|
|
4
|
-
* @category api
|
|
5
|
-
* @group Type Dependencies
|
|
6
|
-
*/
|
|
7
|
-
export type { ListItemsConfig, ListItemsResults, } from "../../../../common/SearchTypes";
|
|
8
|
-
/**
|
|
9
|
-
* @category api
|
|
10
|
-
* @group Type Dependencies
|
|
11
|
-
*/
|
|
12
|
-
export type { TypeInfoDataItem, TypeInfoPack, } from "../../../../common/TypeParsing/TypeInfo";
|
|
@@ -5,18 +5,4 @@ export * from "./InMemoryItemRelationshipDBDriver";
|
|
|
5
5
|
export * from "./InMemoryFileItemDBDriver";
|
|
6
6
|
export * from "./IndexingRelationshipDriver";
|
|
7
7
|
export * from "./common";
|
|
8
|
-
|
|
9
|
-
* @category api
|
|
10
|
-
* @group Type Dependencies
|
|
11
|
-
*/
|
|
12
|
-
export type { ListRelationshipsConfig, SearchCriteria, } from "../../../common/SearchTypes";
|
|
13
|
-
/**
|
|
14
|
-
* @category api
|
|
15
|
-
* @group Type Dependencies
|
|
16
|
-
*/
|
|
17
|
-
export type { TypeInfoMap, } from "../../../common/TypeParsing/TypeInfo";
|
|
18
|
-
/**
|
|
19
|
-
* @category api
|
|
20
|
-
* @group Type Dependencies
|
|
21
|
-
*/
|
|
22
|
-
export type { S3SpecificConfig, } from "./S3FileItemDBDriver/ConfigTypes";
|
|
8
|
+
export type { S3SpecificConfig } from "./S3FileItemDBDriver/ConfigTypes";
|
package/api/ORM/index.d.ts
CHANGED
|
@@ -5,21 +5,6 @@ export * from "./drivers";
|
|
|
5
5
|
export * from "./TypeInfoORMService";
|
|
6
6
|
export * from "./DACUtils";
|
|
7
7
|
export * from "./ORMRouteMap";
|
|
8
|
-
/**
|
|
9
|
-
* @category api
|
|
10
|
-
* @group Type Dependencies
|
|
11
|
-
*/
|
|
12
|
-
export type { DeleteRelationshipResults, ORMOperation, RelationshipOperation, TypeInfoORMAPI, TypeInfoORMContext, } from "../../common/TypeInfoORM/Types";
|
|
13
|
-
/**
|
|
14
|
-
* @category api
|
|
15
|
-
* @group Type Dependencies
|
|
16
|
-
*/
|
|
17
|
-
export type { LiteralValue, TypeInfo, TypeInfoField, TypeOperation, } from "../../common/TypeParsing/TypeInfo";
|
|
18
|
-
/**
|
|
19
|
-
* @category api
|
|
20
|
-
* @group Type Dependencies
|
|
21
|
-
*/
|
|
22
|
-
export type { CustomTypeInfoFieldValidatorMap, TypeInfoValidationResults, } from "../../common/TypeParsing/Validation";
|
|
23
8
|
/**
|
|
24
9
|
* @category api
|
|
25
10
|
* @group Type Dependencies
|
|
@@ -9,8 +9,3 @@ export * from "./resolveSuite";
|
|
|
9
9
|
export * from "./createAutoField";
|
|
10
10
|
export * from "./createFormRenderer";
|
|
11
11
|
export * from "./mergeSuites";
|
|
12
|
-
/**
|
|
13
|
-
* @category app
|
|
14
|
-
* @group Type Dependencies
|
|
15
|
-
*/
|
|
16
|
-
export type { LiteralValue, TypeInfoDataItem, TypeInfoField, } from "../../../common/TypeParsing/TypeInfo";
|
package/app/forms/index.d.ts
CHANGED
|
@@ -8,8 +8,3 @@ export type { ComponentSuite, FieldKind, FieldRenderContext, FieldRenderer, Fiel
|
|
|
8
8
|
export { createAutoField, createFormRenderer, getFieldKind, mergeSuites, resolveSuite, withRendererOverride, } from "./core";
|
|
9
9
|
export * from "./Engine";
|
|
10
10
|
export * from "./UI";
|
|
11
|
-
/**
|
|
12
|
-
* @category app
|
|
13
|
-
* @group Type Dependencies
|
|
14
|
-
*/
|
|
15
|
-
export type { LiteralValue, TypeInfo, TypeInfoDataItem, TypeInfoField, TypeOperation, } from "../../common/TypeParsing/TypeInfo";
|
package/app/utils/index.d.ts
CHANGED
|
@@ -22,18 +22,3 @@ export * from "./UniversalRouteAdapter";
|
|
|
22
22
|
export * from "./Service";
|
|
23
23
|
export * from "./TypeInfoORMAPIUtils";
|
|
24
24
|
export * from "./TypeInfoORMClient";
|
|
25
|
-
/**
|
|
26
|
-
* @category app
|
|
27
|
-
* @group Type Dependencies
|
|
28
|
-
*/
|
|
29
|
-
export type { ListItemsConfig, ListItemsResults, ListRelationshipsConfig, } from "../../common/SearchTypes";
|
|
30
|
-
/**
|
|
31
|
-
* @category app
|
|
32
|
-
* @group Type Dependencies
|
|
33
|
-
*/
|
|
34
|
-
export type { DeleteRelationshipResults, TypeInfoORMAPIRoutePaths, TypeInfoORMClientAPI, TypeInfoORMServiceError, } from "../../common/TypeInfoORM/Types";
|
|
35
|
-
/**
|
|
36
|
-
* @category app
|
|
37
|
-
* @group Type Dependencies
|
|
38
|
-
*/
|
|
39
|
-
export type { TypeInfoDataItem, } from "../../common/TypeParsing/TypeInfo";
|
package/iac-packs/index.d.ts
CHANGED
package/native/index.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { createHistoryBackHandler, buildHistoryPath, parseHistoryPath, createMemoryHistory, Route, buildRoutePath, computeTrackPixels } from '../chunk-G5CLUK4Y.js';
|
|
2
|
-
export { buildHistoryPath, createHistoryBackHandler, createMemoryHistory, parseHistoryPath, useRouteContext } from '../chunk-G5CLUK4Y.js';
|
|
3
2
|
import { createFormRenderer, AutoFormView, AutoForm, parseTemplate, validateAreas, computeAreaBounds } from '../chunk-WELZGQDJ.js';
|
|
4
3
|
import '../chunk-IWRHGGGH.js';
|
|
5
4
|
import { getPathArray } from '../chunk-GYWRAW3Y.js';
|
package/native/utils/Route.d.ts
CHANGED
|
@@ -4,8 +4,7 @@
|
|
|
4
4
|
* Native routing helpers that adapt common navigation state to RouteAdapter.
|
|
5
5
|
*/
|
|
6
6
|
import { type PropsWithChildren } from "react";
|
|
7
|
-
import type { RouteAdapter,
|
|
8
|
-
import { useRouteContext } from "../../app/utils/Route";
|
|
7
|
+
import type { RouteAdapter, RouteProps, RouteQuery, RouteRuntimeIntegration } from "../../app/utils/Route";
|
|
9
8
|
/**
|
|
10
9
|
* Options to adapt a navigation state container into a RouteAdapter.
|
|
11
10
|
*/
|
|
@@ -79,5 +78,3 @@ export declare const Route: <ParamsType extends Record<string, any>>(props: Prop
|
|
|
79
78
|
* @returns Serialized path string.
|
|
80
79
|
*/
|
|
81
80
|
export declare const buildPathFromRouteChain: (routeChain: NavigationRouteNode[], config: NavigationRouteConfig, query?: RouteQuery) => string;
|
|
82
|
-
export { useRouteContext };
|
|
83
|
-
export type { RouteAdapter, RouteContextType, RouteProps, RouteProviderProps, RouteQuery, RouteQueryValue, RouteRuntimeIntegration, };
|
package/native/utils/index.d.ts
CHANGED
package/package.json
CHANGED
package/web/utils/Route.d.ts
CHANGED
|
@@ -4,11 +4,7 @@
|
|
|
4
4
|
* Web routing exports unified app Route implementation.
|
|
5
5
|
*/
|
|
6
6
|
import { PropsWithChildren } from "react";
|
|
7
|
-
import { Route, useRouteContext } from "../../app/utils/Route";
|
|
8
|
-
import { createBrowserRouteAdapter } from "../../app/utils/UniversalRouteAdapter";
|
|
9
7
|
/**
|
|
10
8
|
* Backward-compatible web RouteProvider that auto-creates a browser adapter.
|
|
11
9
|
*/
|
|
12
10
|
export declare const RouteProvider: ({ children }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
-
export { Route, useRouteContext, createBrowserRouteAdapter };
|
|
14
|
-
export type { RouteAdapter, RouteContextType, RouteProps, RouteProviderProps, RouteQuery, RouteQueryValue, } from "../../app/utils/Route";
|