@ostack.tech/ui-kform-scaffolder 0.6.3 → 0.6.5
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/ostack-ui-kform-scaffolder.js +223 -198
- package/dist/ostack-ui-kform-scaffolder.js.map +1 -1
- package/dist/types/scaffolding/ScaffoldingData.d.ts +7 -0
- package/dist/types/scaffolding/scaffolders/scaffoldAppComponent.d.ts +1 -5
- package/dist/types/scaffolding/scaffolders/scaffoldSerializer.d.ts +1 -0
- package/dist/webapp/assets/{index-Be9u6yRI.js → index-Ooi-iJKI.js} +337 -322
- package/dist/webapp/index.html +1 -1
- package/package.json +1 -1
|
@@ -4,6 +4,13 @@ import { SerializationFormat } from '../configs/SerializationFormatConfig.tsx';
|
|
|
4
4
|
export interface ScaffoldingData extends KFormScaffoldingData {
|
|
5
5
|
/** Serialization format to use. */
|
|
6
6
|
serializationFormat?: SerializationFormat;
|
|
7
|
+
/**
|
|
8
|
+
* Whether to generate a version property on the application class to indicate
|
|
9
|
+
* the serialization format version.
|
|
10
|
+
*/
|
|
11
|
+
includeSerializationFormatVersion?: boolean;
|
|
12
|
+
/** XML namespace to use when the serialization format is XML. */
|
|
13
|
+
xmlNamespace?: string;
|
|
7
14
|
/** Application's default locale. */
|
|
8
15
|
defaultLocale?: string;
|
|
9
16
|
/** Name of the active path search parameter. */
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import { Schematic } from '@ostack.tech/kform-scaffolder';
|
|
2
2
|
import { ReactAppData } from '../reactApp/ReactAppData.ts';
|
|
3
|
-
import { LayoutAnnex, LayoutFormPage } from '../reactApp/util/reactAppLayout.ts';
|
|
4
3
|
export declare const DEFAULT_ACTIVE_PATH_SEARCH_PARAM = "activePath";
|
|
5
4
|
export declare function scaffoldAppComponent(schematic: Schematic, data: ReactAppData): void;
|
|
6
|
-
export declare function
|
|
7
|
-
export declare function scaffoldAnnex(annex: LayoutAnnex, data: ReactAppData): string;
|
|
8
|
-
export declare function scaffoldFormPages(annex: LayoutAnnex, data: ReactAppData): string;
|
|
9
|
-
export declare function scaffoldFormPage(annex: LayoutAnnex, formPage: LayoutFormPage, data: ReactAppData): string;
|
|
5
|
+
export declare function scaffoldAppLayout(schematic: Schematic, data: ReactAppData, scaffoldTopBarFn?: (data: ReactAppData, annexesManager?: string) => string): string;
|