openxiangda 1.0.145 → 1.0.147
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/lib/cli.js +44 -11
- package/package.json +3 -3
- package/packages/sdk/dist/{ProcessPreview-CUQFUDvw.d.mts → ProcessPreview-BoblxCUt.d.mts} +24 -1
- package/packages/sdk/dist/{ProcessPreview-CUQFUDvw.d.ts → ProcessPreview-BoblxCUt.d.ts} +24 -1
- package/packages/sdk/dist/components/index.cjs +305 -24
- package/packages/sdk/dist/components/index.cjs.map +1 -1
- package/packages/sdk/dist/components/index.d.mts +4 -4
- package/packages/sdk/dist/components/index.d.ts +4 -4
- package/packages/sdk/dist/components/index.mjs +416 -135
- package/packages/sdk/dist/components/index.mjs.map +1 -1
- package/packages/sdk/dist/{dataManagementApi-DQKInwWS.d.mts → dataManagementApi-BCzfV88G.d.mts} +1 -1
- package/packages/sdk/dist/{dataManagementApi-CwBEmnXg.d.ts → dataManagementApi-_FFNPv2e.d.ts} +1 -1
- package/packages/sdk/dist/runtime/index.cjs +305 -24
- package/packages/sdk/dist/runtime/index.cjs.map +1 -1
- package/packages/sdk/dist/runtime/index.d.mts +2 -2
- package/packages/sdk/dist/runtime/index.d.ts +2 -2
- package/packages/sdk/dist/runtime/index.mjs +407 -126
- package/packages/sdk/dist/runtime/index.mjs.map +1 -1
- package/packages/sdk/dist/runtime/react.d.mts +1 -1
- package/packages/sdk/dist/runtime/react.d.ts +1 -1
package/lib/cli.js
CHANGED
|
@@ -4682,7 +4682,8 @@ async function runtime(args) {
|
|
|
4682
4682
|
' openxiangda runtime releases --profile <name>',
|
|
4683
4683
|
'说明:',
|
|
4684
4684
|
' - deploy 上传当前工作区 dist/ 并激活 React SPA runtime release。',
|
|
4685
|
-
' - 默认 --upload-mode auto;multipart 上传遇到 403
|
|
4685
|
+
' - 默认 --upload-mode auto;multipart 上传遇到 403 时自动切换到平台内置对象存储直传。',
|
|
4686
|
+
' - --upload-mode oss-direct 是兼容参数名,实际 provider 由平台内置存储配置决定。',
|
|
4686
4687
|
' - 如果平台服务较旧不支持分片上传,可临时使用 --upload-mode legacy-json。',
|
|
4687
4688
|
' - runtime 只发布前端产物;表单、流程、通知等资源仍走 resource publish。',
|
|
4688
4689
|
].join('\n'));
|
|
@@ -4752,8 +4753,12 @@ async function runtime(args) {
|
|
|
4752
4753
|
assetBaseUrl = plan.assetBaseUrl;
|
|
4753
4754
|
if (uploadMode === 'auto') {
|
|
4754
4755
|
effectiveUploadMode = 'oss-direct';
|
|
4756
|
+
const storageProvider = resolveRuntimeStorageProvider(
|
|
4757
|
+
plan.storageProvider,
|
|
4758
|
+
plan.provider
|
|
4759
|
+
);
|
|
4755
4760
|
printRuntimeProgress(
|
|
4756
|
-
`runtime builtin
|
|
4761
|
+
`runtime builtin storage available; using ${formatRuntimeStorageProvider(storageProvider)} direct upload traceId=${traceId}`
|
|
4757
4762
|
);
|
|
4758
4763
|
}
|
|
4759
4764
|
}
|
|
@@ -4764,7 +4769,7 @@ async function runtime(args) {
|
|
|
4764
4769
|
effectiveUploadMode = 'auto';
|
|
4765
4770
|
assetBaseUrl = gatewayAssetBaseUrl;
|
|
4766
4771
|
printRuntimeProgress(
|
|
4767
|
-
`runtime builtin
|
|
4772
|
+
`runtime builtin storage preflight unavailable; using staged upload first traceId=${traceId}`
|
|
4768
4773
|
);
|
|
4769
4774
|
}
|
|
4770
4775
|
}
|
|
@@ -4821,7 +4826,7 @@ async function runtime(args) {
|
|
|
4821
4826
|
}
|
|
4822
4827
|
effectiveUploadMode = 'oss-direct';
|
|
4823
4828
|
printRuntimeProgress(
|
|
4824
|
-
`runtime staged upload blocked by HTTP 403; fallback to
|
|
4829
|
+
`runtime staged upload blocked by HTTP 403; fallback to builtin storage direct upload traceId=${traceId}`
|
|
4825
4830
|
);
|
|
4826
4831
|
releaseFiles = await uploadRuntimeDistFilesOssDirect({
|
|
4827
4832
|
config,
|
|
@@ -4863,6 +4868,10 @@ async function runtime(args) {
|
|
|
4863
4868
|
assetBaseUrl: releaseAssetBaseUrl,
|
|
4864
4869
|
activated: !flags['no-activate'],
|
|
4865
4870
|
uploadMode: effectiveUploadMode,
|
|
4871
|
+
storageProvider:
|
|
4872
|
+
data?.storageProvider ||
|
|
4873
|
+
releaseFiles.find(file => file.storageProvider)?.storageProvider ||
|
|
4874
|
+
null,
|
|
4866
4875
|
traceId,
|
|
4867
4876
|
};
|
|
4868
4877
|
if (flags.json) return writeJson(result);
|
|
@@ -5019,6 +5028,10 @@ async function uploadRuntimeDistFilesOssDirect(options) {
|
|
|
5019
5028
|
);
|
|
5020
5029
|
const uploadFiles = Array.isArray(plan?.files) ? plan.files : [];
|
|
5021
5030
|
const uploadByPath = new Map(uploadFiles.map(file => [file.path, file]));
|
|
5031
|
+
const planStorageProvider = resolveRuntimeStorageProvider(
|
|
5032
|
+
plan?.storageProvider,
|
|
5033
|
+
plan?.provider
|
|
5034
|
+
);
|
|
5022
5035
|
let completed = 0;
|
|
5023
5036
|
const results = await runWithConcurrency(
|
|
5024
5037
|
files,
|
|
@@ -5026,14 +5039,19 @@ async function uploadRuntimeDistFilesOssDirect(options) {
|
|
|
5026
5039
|
async file => {
|
|
5027
5040
|
const uploadInfo = uploadByPath.get(file.path);
|
|
5028
5041
|
if (!uploadInfo?.uploadUrl) {
|
|
5029
|
-
fail(`runtime
|
|
5042
|
+
fail(`runtime 内置对象存储上传计划缺少文件: ${file.path}`);
|
|
5030
5043
|
}
|
|
5044
|
+
const storageProvider = resolveRuntimeStorageProvider(
|
|
5045
|
+
uploadInfo.storageProvider,
|
|
5046
|
+
uploadInfo.provider,
|
|
5047
|
+
planStorageProvider
|
|
5048
|
+
);
|
|
5031
5049
|
const uploaded = await uploadRuntimeDistFileToSignedUrl(options, file, uploadInfo);
|
|
5032
5050
|
completed += 1;
|
|
5033
5051
|
printRuntimeProgress(
|
|
5034
|
-
`runtime
|
|
5052
|
+
`runtime ${formatRuntimeStorageProvider(storageProvider)} file uploaded [${completed}/${files.length}] ${file.path} ${formatBytes(file.size)} traceId=${options.traceId}`
|
|
5035
5053
|
);
|
|
5036
|
-
return uploaded;
|
|
5054
|
+
return { ...uploaded, storageProvider };
|
|
5037
5055
|
}
|
|
5038
5056
|
);
|
|
5039
5057
|
return results.map(file => ({
|
|
@@ -5041,7 +5059,7 @@ async function uploadRuntimeDistFilesOssDirect(options) {
|
|
|
5041
5059
|
size: file.size,
|
|
5042
5060
|
sha256: file.sha256,
|
|
5043
5061
|
contentType: file.contentType,
|
|
5044
|
-
storageProvider:
|
|
5062
|
+
storageProvider: resolveRuntimeStorageProvider(file.storageProvider),
|
|
5045
5063
|
objectName: file.objectName,
|
|
5046
5064
|
bucketName: file.bucketName,
|
|
5047
5065
|
}));
|
|
@@ -5061,16 +5079,16 @@ async function uploadRuntimeDistFileToSignedUrl(options, file, uploadInfo) {
|
|
|
5061
5079
|
});
|
|
5062
5080
|
} catch (error) {
|
|
5063
5081
|
if (isAbortError(error)) {
|
|
5064
|
-
throw new Error(`runtime
|
|
5082
|
+
throw new Error(`runtime 内置对象存储文件上传超时: ${file.path}, timeout=${timeoutMs}ms`);
|
|
5065
5083
|
}
|
|
5066
|
-
throw new Error(formatFetchError(error, `runtime
|
|
5084
|
+
throw new Error(formatFetchError(error, `runtime builtin storage upload ${file.path}`));
|
|
5067
5085
|
} finally {
|
|
5068
5086
|
clearTimeout(timer);
|
|
5069
5087
|
}
|
|
5070
5088
|
if (!response.ok) {
|
|
5071
5089
|
const text = await response.text().catch(() => '');
|
|
5072
5090
|
throw new Error(
|
|
5073
|
-
`runtime
|
|
5091
|
+
`runtime 内置对象存储文件上传失败: ${file.path}, HTTP ${response.status}: ${
|
|
5074
5092
|
text || response.statusText || 'request failed'
|
|
5075
5093
|
}`
|
|
5076
5094
|
);
|
|
@@ -5152,6 +5170,21 @@ function normalizeRuntimeUploadMode(value) {
|
|
|
5152
5170
|
fail(`--upload-mode 只支持 auto、staged、oss-direct 或 legacy-json,当前: ${value}`);
|
|
5153
5171
|
}
|
|
5154
5172
|
|
|
5173
|
+
function resolveRuntimeStorageProvider(...values) {
|
|
5174
|
+
for (const value of values) {
|
|
5175
|
+
const provider = String(value || '').trim().toLowerCase();
|
|
5176
|
+
if (provider) return provider;
|
|
5177
|
+
}
|
|
5178
|
+
return 'oss';
|
|
5179
|
+
}
|
|
5180
|
+
|
|
5181
|
+
function formatRuntimeStorageProvider(value) {
|
|
5182
|
+
const provider = resolveRuntimeStorageProvider(value);
|
|
5183
|
+
if (provider === 'oss') return 'OSS';
|
|
5184
|
+
if (provider === 'cos') return 'COS';
|
|
5185
|
+
return provider.toUpperCase();
|
|
5186
|
+
}
|
|
5187
|
+
|
|
5155
5188
|
function isRuntimeStagedUploadBlocked(error) {
|
|
5156
5189
|
return /^HTTP 403\b/.test(String(error?.message || ''));
|
|
5157
5190
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openxiangda",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.147",
|
|
4
4
|
"description": "OpenXiangda CLI, workspace build tools, runtime SDK, and form components.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"bin": {
|
|
@@ -124,8 +124,8 @@
|
|
|
124
124
|
"vite": "^6.0.0"
|
|
125
125
|
},
|
|
126
126
|
"peerDependencies": {
|
|
127
|
-
"react": ">=18 <
|
|
128
|
-
"react-dom": ">=18 <
|
|
127
|
+
"react": ">=18 <20",
|
|
128
|
+
"react-dom": ">=18 <20"
|
|
129
129
|
},
|
|
130
130
|
"devDependencies": {
|
|
131
131
|
"@testing-library/jest-dom": "^6.9.1",
|
|
@@ -274,6 +274,7 @@ interface FormRuntimeApi {
|
|
|
274
274
|
getUserList: (params?: Record<string, any>) => Promise<any[]>;
|
|
275
275
|
getDepartmentRoots: () => Promise<any[]>;
|
|
276
276
|
getDepartmentChildren: (parentId: string) => Promise<any[]>;
|
|
277
|
+
searchDepartments?: (params: DepartmentSearchParams) => Promise<DepartmentSearchResult | DepartmentTreeNode[]>;
|
|
277
278
|
getDepartmentParentDepartments: (id: string) => Promise<any[]>;
|
|
278
279
|
getDepartmentMembers: (id: string) => Promise<any[]>;
|
|
279
280
|
getDepartmentMembersPage: (id: string, params?: {
|
|
@@ -757,8 +758,26 @@ interface DepartmentTreeNode {
|
|
|
757
758
|
title?: string;
|
|
758
759
|
hasChildren?: boolean;
|
|
759
760
|
isLeaf?: boolean;
|
|
761
|
+
path?: Array<{
|
|
762
|
+
id: string;
|
|
763
|
+
name: string;
|
|
764
|
+
}>;
|
|
765
|
+
fullPath?: string;
|
|
760
766
|
children?: DepartmentTreeNode[];
|
|
761
767
|
}
|
|
768
|
+
type DepartmentSearchScope = 'loaded' | 'all';
|
|
769
|
+
interface DepartmentSearchParams {
|
|
770
|
+
keyword: string;
|
|
771
|
+
page?: number;
|
|
772
|
+
pageSize?: number;
|
|
773
|
+
includePath?: boolean;
|
|
774
|
+
}
|
|
775
|
+
interface DepartmentSearchResult {
|
|
776
|
+
items: DepartmentTreeNode[];
|
|
777
|
+
total: number;
|
|
778
|
+
page: number;
|
|
779
|
+
pageSize: number;
|
|
780
|
+
}
|
|
762
781
|
/** DepartmentSelectField 专用 Props */
|
|
763
782
|
interface DepartmentSelectFieldProps extends BaseFieldProps {
|
|
764
783
|
defaultValue?: {
|
|
@@ -771,6 +790,10 @@ interface DepartmentSelectFieldProps extends BaseFieldProps {
|
|
|
771
790
|
allowClear?: boolean;
|
|
772
791
|
maxCount?: number;
|
|
773
792
|
notFoundContent?: string;
|
|
793
|
+
showSearch?: boolean;
|
|
794
|
+
searchScope?: DepartmentSearchScope;
|
|
795
|
+
searchMinLength?: number;
|
|
796
|
+
searchDebounceMs?: number;
|
|
774
797
|
showFullPath?: boolean;
|
|
775
798
|
scopeType?: 'all' | 'specified';
|
|
776
799
|
specifiedDepts?: string[];
|
|
@@ -1174,4 +1197,4 @@ interface ProcessPreviewProps {
|
|
|
1174
1197
|
}
|
|
1175
1198
|
declare const ProcessPreview: React__default.FC<ProcessPreviewProps>;
|
|
1176
1199
|
|
|
1177
|
-
export { type DepartmentSelectFieldProps as $, type ApprovalPermission as A, type ReturnParams as B, type ChangeRecordQueryParams as C, type SaveTaskParams as D, type TransferParams as E, type FieldDefinition as F, type TextFieldProps as G, type TextAreaFieldProps as H, type InitiatorSelectCandidate as I, type SelectFieldProps as J, type RadioFieldProps as K, type CheckboxFieldProps as L, type MultiSelectFieldProps as M, type NumberFieldProps as N, type OptionItem as O, type ProcessStatus as P, type DateFieldProps as Q, type RuntimeResponse as R, type StatusMeta as S, type TaskStatus as T, type CascadeDateFieldProps as U, type ValidationPreset as V, type WithdrawParams as W, type AttachmentFieldProps as X, type ImageFieldProps as Y, type SubFormFieldProps as Z, type UserSelectFieldProps as _, type FormRuntimeApi as a,
|
|
1200
|
+
export { type DepartmentSelectFieldProps as $, type ApprovalPermission as A, type ReturnParams as B, type ChangeRecordQueryParams as C, type SaveTaskParams as D, type TransferParams as E, type FieldDefinition as F, type TextFieldProps as G, type TextAreaFieldProps as H, type InitiatorSelectCandidate as I, type SelectFieldProps as J, type RadioFieldProps as K, type CheckboxFieldProps as L, type MultiSelectFieldProps as M, type NumberFieldProps as N, type OptionItem as O, type ProcessStatus as P, type DateFieldProps as Q, type RuntimeResponse as R, type StatusMeta as S, type TaskStatus as T, type CascadeDateFieldProps as U, type ValidationPreset as V, type WithdrawParams as W, type AttachmentFieldProps as X, type ImageFieldProps as Y, type SubFormFieldProps as Z, type UserSelectFieldProps as _, type FormRuntimeApi as a, type PeopleShortcutConfig as a$, type CascadeSelectFieldProps as a0, type AddressFieldProps as a1, type AssociationFormFieldProps as a2, type EditorFieldProps as a3, type EditorChoiceOption as a4, type SerialNumberFieldProps as a5, type LocationFieldProps as a6, type DigitalSignatureFieldProps as a7, type JSONFieldProps as a8, type ProcessAction as a9, type DepartmentTreeNode as aA, type DigitalSignatureValue as aB, type EditorToolbarAction as aC, type FieldLayoutNode as aD, type FieldValueSyncConfig as aE, type FormEffectAction as aF, type FormEffectCondition as aG, type FormEffectConditionOperator as aH, type FormEngineMode as aI, type FormLayoutNode as aJ, FormSection as aK, type FormSectionProps as aL, type FormSubmitBehavior as aM, type FormTemplateConfig as aN, type GridLayoutCell as aO, type GridLayoutNode as aP, type ImageCompressionConfig as aQ, type ImageCompressionVariantConfig as aR, type ImageVariant as aS, type InitiatorSelectScope as aT, type LayoutVisibleWhen as aU, type LinkedFormOptionConfig as aV, type LocationValue as aW, type LowcodePageMeta as aX, type LowcodePageNode as aY, type LowcodePageNodeType as aZ, type OptionSourceType as a_, type InitiatorSelectedApprovers as aa, type ReturnPolicy as ab, type ChangeRecord as ac, type StandardFormPageMode as ad, type LowcodePageSchema as ae, type AddressValue as af, type ApprovalActionType as ag, ApprovalTimeline as ah, type ApprovalTimelineProps as ai, type AssociationFormConfig as aj, type AssociationValue as ak, type AttachmentImageVariants as al, type AttachmentItem as am, type BaseFieldProps as an, type BaseLayoutNode as ao, type DataFilter as ap, type DataLinkageCondition as aq, type DataLinkageConfig as ar, type DateRangeRestriction as as, type DateRestrictionConfig as at, type DateShortcutConfig as au, type DateShortcutType as av, type DefaultValueLinkageConfig as aw, type DepartmentSearchParams as ax, type DepartmentSearchResult as ay, type DepartmentSearchScope as az, type FormSchema as b, type PeopleShortcutType as b0, type ProcessNodeType as b1, ProcessPreview as b2, type ProcessPreviewProps as b3, type RuntimeAuthHeadersProvider as b4, type RuntimeDataQueryParams as b5, type RuntimeDataQueryResult as b6, type RuntimeRequestConfig as b7, type RuntimeUploadOptions as b8, type RuntimeUploadProvider as b9, type SectionLayoutNode as ba, type SignaturePoint as bb, type StepLayoutItem as bc, type StepsLayoutNode as bd, type SubFormColumn as be, type TabLayoutItem as bf, type TabsLayoutNode as bg, type TextShortcutConfig as bh, type TextShortcutType as bi, type UserDisplayFormat as bj, type UserItem as bk, type FormRuntimeApiConfig as c, type FormEngineConfig as d, type FieldBehavior as e, type FormRuntimeConfig as f, type FormAppearanceConfig as g, type ValidationRule as h, type FormEffect as i, type OptionSourceConfig as j, type FormDataDeleteParams as k, type ChangeRecordListResponse as l, type FormDataQueryParams as m, type FormInstanceData as n, type InitiatorSelectRequirement as o, type ProcessBasicInfo as p, type ProcessDefinition as q, type ProcessTask as r, type ReturnableNodeResult as s, type ReturnableNode as t, type ViewPermissionQueryParams as u, type ViewPermissionSummary as v, type ApproveParams as w, type PreviewParams as x, type ProcessRoute as y, type ResubmitParams as z };
|
|
@@ -274,6 +274,7 @@ interface FormRuntimeApi {
|
|
|
274
274
|
getUserList: (params?: Record<string, any>) => Promise<any[]>;
|
|
275
275
|
getDepartmentRoots: () => Promise<any[]>;
|
|
276
276
|
getDepartmentChildren: (parentId: string) => Promise<any[]>;
|
|
277
|
+
searchDepartments?: (params: DepartmentSearchParams) => Promise<DepartmentSearchResult | DepartmentTreeNode[]>;
|
|
277
278
|
getDepartmentParentDepartments: (id: string) => Promise<any[]>;
|
|
278
279
|
getDepartmentMembers: (id: string) => Promise<any[]>;
|
|
279
280
|
getDepartmentMembersPage: (id: string, params?: {
|
|
@@ -757,8 +758,26 @@ interface DepartmentTreeNode {
|
|
|
757
758
|
title?: string;
|
|
758
759
|
hasChildren?: boolean;
|
|
759
760
|
isLeaf?: boolean;
|
|
761
|
+
path?: Array<{
|
|
762
|
+
id: string;
|
|
763
|
+
name: string;
|
|
764
|
+
}>;
|
|
765
|
+
fullPath?: string;
|
|
760
766
|
children?: DepartmentTreeNode[];
|
|
761
767
|
}
|
|
768
|
+
type DepartmentSearchScope = 'loaded' | 'all';
|
|
769
|
+
interface DepartmentSearchParams {
|
|
770
|
+
keyword: string;
|
|
771
|
+
page?: number;
|
|
772
|
+
pageSize?: number;
|
|
773
|
+
includePath?: boolean;
|
|
774
|
+
}
|
|
775
|
+
interface DepartmentSearchResult {
|
|
776
|
+
items: DepartmentTreeNode[];
|
|
777
|
+
total: number;
|
|
778
|
+
page: number;
|
|
779
|
+
pageSize: number;
|
|
780
|
+
}
|
|
762
781
|
/** DepartmentSelectField 专用 Props */
|
|
763
782
|
interface DepartmentSelectFieldProps extends BaseFieldProps {
|
|
764
783
|
defaultValue?: {
|
|
@@ -771,6 +790,10 @@ interface DepartmentSelectFieldProps extends BaseFieldProps {
|
|
|
771
790
|
allowClear?: boolean;
|
|
772
791
|
maxCount?: number;
|
|
773
792
|
notFoundContent?: string;
|
|
793
|
+
showSearch?: boolean;
|
|
794
|
+
searchScope?: DepartmentSearchScope;
|
|
795
|
+
searchMinLength?: number;
|
|
796
|
+
searchDebounceMs?: number;
|
|
774
797
|
showFullPath?: boolean;
|
|
775
798
|
scopeType?: 'all' | 'specified';
|
|
776
799
|
specifiedDepts?: string[];
|
|
@@ -1174,4 +1197,4 @@ interface ProcessPreviewProps {
|
|
|
1174
1197
|
}
|
|
1175
1198
|
declare const ProcessPreview: React__default.FC<ProcessPreviewProps>;
|
|
1176
1199
|
|
|
1177
|
-
export { type DepartmentSelectFieldProps as $, type ApprovalPermission as A, type ReturnParams as B, type ChangeRecordQueryParams as C, type SaveTaskParams as D, type TransferParams as E, type FieldDefinition as F, type TextFieldProps as G, type TextAreaFieldProps as H, type InitiatorSelectCandidate as I, type SelectFieldProps as J, type RadioFieldProps as K, type CheckboxFieldProps as L, type MultiSelectFieldProps as M, type NumberFieldProps as N, type OptionItem as O, type ProcessStatus as P, type DateFieldProps as Q, type RuntimeResponse as R, type StatusMeta as S, type TaskStatus as T, type CascadeDateFieldProps as U, type ValidationPreset as V, type WithdrawParams as W, type AttachmentFieldProps as X, type ImageFieldProps as Y, type SubFormFieldProps as Z, type UserSelectFieldProps as _, type FormRuntimeApi as a,
|
|
1200
|
+
export { type DepartmentSelectFieldProps as $, type ApprovalPermission as A, type ReturnParams as B, type ChangeRecordQueryParams as C, type SaveTaskParams as D, type TransferParams as E, type FieldDefinition as F, type TextFieldProps as G, type TextAreaFieldProps as H, type InitiatorSelectCandidate as I, type SelectFieldProps as J, type RadioFieldProps as K, type CheckboxFieldProps as L, type MultiSelectFieldProps as M, type NumberFieldProps as N, type OptionItem as O, type ProcessStatus as P, type DateFieldProps as Q, type RuntimeResponse as R, type StatusMeta as S, type TaskStatus as T, type CascadeDateFieldProps as U, type ValidationPreset as V, type WithdrawParams as W, type AttachmentFieldProps as X, type ImageFieldProps as Y, type SubFormFieldProps as Z, type UserSelectFieldProps as _, type FormRuntimeApi as a, type PeopleShortcutConfig as a$, type CascadeSelectFieldProps as a0, type AddressFieldProps as a1, type AssociationFormFieldProps as a2, type EditorFieldProps as a3, type EditorChoiceOption as a4, type SerialNumberFieldProps as a5, type LocationFieldProps as a6, type DigitalSignatureFieldProps as a7, type JSONFieldProps as a8, type ProcessAction as a9, type DepartmentTreeNode as aA, type DigitalSignatureValue as aB, type EditorToolbarAction as aC, type FieldLayoutNode as aD, type FieldValueSyncConfig as aE, type FormEffectAction as aF, type FormEffectCondition as aG, type FormEffectConditionOperator as aH, type FormEngineMode as aI, type FormLayoutNode as aJ, FormSection as aK, type FormSectionProps as aL, type FormSubmitBehavior as aM, type FormTemplateConfig as aN, type GridLayoutCell as aO, type GridLayoutNode as aP, type ImageCompressionConfig as aQ, type ImageCompressionVariantConfig as aR, type ImageVariant as aS, type InitiatorSelectScope as aT, type LayoutVisibleWhen as aU, type LinkedFormOptionConfig as aV, type LocationValue as aW, type LowcodePageMeta as aX, type LowcodePageNode as aY, type LowcodePageNodeType as aZ, type OptionSourceType as a_, type InitiatorSelectedApprovers as aa, type ReturnPolicy as ab, type ChangeRecord as ac, type StandardFormPageMode as ad, type LowcodePageSchema as ae, type AddressValue as af, type ApprovalActionType as ag, ApprovalTimeline as ah, type ApprovalTimelineProps as ai, type AssociationFormConfig as aj, type AssociationValue as ak, type AttachmentImageVariants as al, type AttachmentItem as am, type BaseFieldProps as an, type BaseLayoutNode as ao, type DataFilter as ap, type DataLinkageCondition as aq, type DataLinkageConfig as ar, type DateRangeRestriction as as, type DateRestrictionConfig as at, type DateShortcutConfig as au, type DateShortcutType as av, type DefaultValueLinkageConfig as aw, type DepartmentSearchParams as ax, type DepartmentSearchResult as ay, type DepartmentSearchScope as az, type FormSchema as b, type PeopleShortcutType as b0, type ProcessNodeType as b1, ProcessPreview as b2, type ProcessPreviewProps as b3, type RuntimeAuthHeadersProvider as b4, type RuntimeDataQueryParams as b5, type RuntimeDataQueryResult as b6, type RuntimeRequestConfig as b7, type RuntimeUploadOptions as b8, type RuntimeUploadProvider as b9, type SectionLayoutNode as ba, type SignaturePoint as bb, type StepLayoutItem as bc, type StepsLayoutNode as bd, type SubFormColumn as be, type TabLayoutItem as bf, type TabsLayoutNode as bg, type TextShortcutConfig as bh, type TextShortcutType as bi, type UserDisplayFormat as bj, type UserItem as bk, type FormRuntimeApiConfig as c, type FormEngineConfig as d, type FieldBehavior as e, type FormRuntimeConfig as f, type FormAppearanceConfig as g, type ValidationRule as h, type FormEffect as i, type OptionSourceConfig as j, type FormDataDeleteParams as k, type ChangeRecordListResponse as l, type FormDataQueryParams as m, type FormInstanceData as n, type InitiatorSelectRequirement as o, type ProcessBasicInfo as p, type ProcessDefinition as q, type ProcessTask as r, type ReturnableNodeResult as s, type ReturnableNode as t, type ViewPermissionQueryParams as u, type ViewPermissionSummary as v, type ApproveParams as w, type PreviewParams as x, type ProcessRoute as y, type ResubmitParams as z };
|