@ostack.tech/ui-kform-scaffolder 0.6.4 → 0.7.0

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.
@@ -3,4 +3,4 @@ import { SchematicKind } from './SchematicKind.ts';
3
3
  export interface SchematicBuilderProps extends KFormSchematicBuilderProps {
4
4
  schematicKinds?: SchematicKind[];
5
5
  }
6
- export declare function SchematicBuilder({ name, schematicKinds, scaffolders, scaffoldingData, configs, ...otherProps }: SchematicBuilderProps): import("react/jsx-runtime").JSX.Element;
6
+ export declare function SchematicBuilder({ name, schematicKinds, scaffolders, scaffoldingData, configs, version, ...otherProps }: SchematicBuilderProps): import("react/jsx-runtime").JSX.Element;
@@ -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,3 +1,4 @@
1
1
  import { Schematic } from '@ostack.tech/kform-scaffolder';
2
2
  import { KtData } from '../kotlin/KtData.ts';
3
+ export declare const DEFAULT_INCLUDE_SERIALIZATION_FORMAT_VERSION = true;
3
4
  export declare function scaffoldSerializer(schematic: Schematic, data: KtData): void;