openxiangda 1.0.146 → 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/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/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 };
|