@lark-project/js-sdk 2.0.15-dev.builder.1 → 2.0.15-dev.builder.3
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/es/index.js +1 -1
- package/dist/lib/index.js +1 -1
- package/dist/types/index.d.ts +14 -11
- package/package.json +1 -1
package/dist/es/index.js
CHANGED
package/dist/lib/index.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -834,8 +834,8 @@ type BuilderPropBoolean = boolean;
|
|
|
834
834
|
type BuilderPropMultiSelect = string[];
|
|
835
835
|
type BuilderPropDateWithTime = number;
|
|
836
836
|
type BuilderPropDateRange = {
|
|
837
|
-
|
|
838
|
-
|
|
837
|
+
start: number;
|
|
838
|
+
end: number;
|
|
839
839
|
};
|
|
840
840
|
type BuilderPropWorkItemType = {
|
|
841
841
|
spaceId: string;
|
|
@@ -844,17 +844,20 @@ type BuilderPropWorkItemType = {
|
|
|
844
844
|
type BuilderPropWorkItemInstance = {
|
|
845
845
|
spaceId: string;
|
|
846
846
|
workObjectId: string;
|
|
847
|
-
workItemId:
|
|
847
|
+
workItemId: number;
|
|
848
|
+
};
|
|
849
|
+
type BuilderPropField = {
|
|
850
|
+
spaceId: string;
|
|
851
|
+
workObjectId: string;
|
|
852
|
+
fieldClass: 'field' | 'role';
|
|
853
|
+
fieldKey: string;
|
|
854
|
+
roleId: string;
|
|
848
855
|
};
|
|
849
856
|
type BuilderPropWorkItemTypeWithField = BuilderPropWorkItemType & {
|
|
850
|
-
fieldList:
|
|
851
|
-
fieldKey: string;
|
|
852
|
-
}[];
|
|
857
|
+
fieldList: BuilderPropField[];
|
|
853
858
|
};
|
|
854
859
|
type BuilderPropWorkItemInsWithField = BuilderPropWorkItemInstance & {
|
|
855
|
-
fieldList:
|
|
856
|
-
fieldKey: string;
|
|
857
|
-
}[];
|
|
860
|
+
fieldList: BuilderPropField[];
|
|
858
861
|
};
|
|
859
862
|
type BuilderPropView = {
|
|
860
863
|
viewId: string;
|
|
@@ -914,7 +917,7 @@ type BuilderComponentConfig = {
|
|
|
914
917
|
[keyOfProp: string]: BuilderCompPropBriefConfig;
|
|
915
918
|
};
|
|
916
919
|
interface BuilderComponentPreset {
|
|
917
|
-
layout
|
|
920
|
+
layout?: {
|
|
918
921
|
width: number;
|
|
919
922
|
height: number;
|
|
920
923
|
};
|
|
@@ -2412,4 +2415,4 @@ declare class NotSupportedError extends CustomError {
|
|
|
2412
2415
|
* @packageDocumentation
|
|
2413
2416
|
*/
|
|
2414
2417
|
|
|
2415
|
-
export { ActionSheet, ActionSheetOptions, AttributeType, BatchButtonFeatureContext, BizLine, BriefField, BriefNode, BriefSpace, BriefTemplate, BriefView, BriefWorkItem, BriefWorkObject, BuilderCompLayoutConfig, BuilderCompPropBriefConfig, BuilderCompPropFullConfig, BuilderCompPropSelectConfig, BuilderComponent, BuilderComponentConfig, BuilderComponentFeatureContext, BuilderComponentPreset, BuilderComponentProps, BuilderPropTemplateType, Button, ButtonFeatureContext, ButtonScene, Clipboard, ColorScheme, ComponentScheduleIdentity, ComponentScheduleScene, Configuration, ConfigurationFeatureContext, ContainerModal, ContainerModalConfigureOptions, Context, Control, ControlFeatureContext, CreateButtonFeatureContext, CustomComponent, CustomComponentFeatureContext, CustomComponentProps, CustomComponentType, CustomField, CustomFieldConfig, CustomFieldFeatureContext, CustomFieldProps, CustomFieldValidateMsg, CustomFieldValueType, ExCompoundFieldValueType, Field, FieldType, FieldValue, FlowMode, I18nTitleConfig, IMPL_KEY, IPluginCustomBuildConfig, IRichTextEditorImageUploadComplete, IntegrationFeatureContext, Intercept, InterceptEvent, InterceptFeatureContext, InternalError, InvalidParamsError, Language, MEEGO_BIZ_HUB, Modal, ModalConfirmOptions, ModalOpenOptions, Navigation, NoAuthError, NodeStatus, NotFoundError, NotSupportedError, Off, OutOfLimitError, Page, PageFeatureContext, RichTextEditor, RichTextEditorContent, RichTextEditorOptions, Role, RoleOwners, SDKClient, SDKClientOptions, ScheduleCompValidateMsg, ScheduleCompValueType, ScheduleUnitButtonFeatureContext, Shared, Space, Storage, SubFieldType, Tab, TabFeatureContext, Toast, ToastOptions, User, UserInfo, Utils, View, ViewFeatureContext, WbsStatus, WorkItem, WorkItemButtonFeatureContext, WorkItemCreateFormPreset, WorkItemFinder, WorkItemFinderOptions, WorkObject, SDKClient as default, unwatch };
|
|
2418
|
+
export { ActionSheet, ActionSheetOptions, AttributeType, BatchButtonFeatureContext, BizLine, BriefField, BriefNode, BriefSpace, BriefTemplate, BriefView, BriefWorkItem, BriefWorkObject, BuilderCompLayoutConfig, BuilderCompPropBriefConfig, BuilderCompPropFullConfig, BuilderCompPropSelectConfig, BuilderCompPropValueType, BuilderComponent, BuilderComponentConfig, BuilderComponentFeatureContext, BuilderComponentPreset, BuilderComponentProps, BuilderPropBoolean, BuilderPropDateRange, BuilderPropDateWithTime, BuilderPropField, BuilderPropLayout, BuilderPropMultiSelect, BuilderPropNumber, BuilderPropSelect, BuilderPropTemplateType, BuilderPropText, BuilderPropView, BuilderPropWorkItemInsWithField, BuilderPropWorkItemInstance, BuilderPropWorkItemListAfterFilter, BuilderPropWorkItemListAfterSort, BuilderPropWorkItemType, BuilderPropWorkItemTypeWithField, Button, ButtonFeatureContext, ButtonScene, Clipboard, ColorScheme, ComponentScheduleIdentity, ComponentScheduleScene, Configuration, ConfigurationFeatureContext, ContainerModal, ContainerModalConfigureOptions, Context, Control, ControlFeatureContext, CreateButtonFeatureContext, CustomComponent, CustomComponentFeatureContext, CustomComponentProps, CustomComponentType, CustomField, CustomFieldConfig, CustomFieldFeatureContext, CustomFieldProps, CustomFieldValidateMsg, CustomFieldValueType, ExCompoundFieldValueType, Field, FieldType, FieldValue, FlowMode, I18nTitleConfig, IMPL_KEY, IPluginCustomBuildConfig, IRichTextEditorImageUploadComplete, IntegrationFeatureContext, Intercept, InterceptEvent, InterceptFeatureContext, InternalError, InvalidParamsError, Language, MEEGO_BIZ_HUB, Modal, ModalConfirmOptions, ModalOpenOptions, Navigation, NoAuthError, NodeStatus, NotFoundError, NotSupportedError, Off, OutOfLimitError, Page, PageFeatureContext, RichTextEditor, RichTextEditorContent, RichTextEditorOptions, Role, RoleOwners, SDKClient, SDKClientOptions, ScheduleCompValidateMsg, ScheduleCompValueType, ScheduleUnitButtonFeatureContext, Shared, Space, Storage, SubFieldType, Tab, TabFeatureContext, Toast, ToastOptions, User, UserInfo, Utils, View, ViewFeatureContext, WbsStatus, WorkItem, WorkItemButtonFeatureContext, WorkItemCreateFormPreset, WorkItemFinder, WorkItemFinderOptions, WorkObject, SDKClient as default, unwatch };
|