@lingshugroup/web-plus 1.4.5 → 1.5.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.
@@ -1,7 +1,7 @@
1
1
  export type { BellMessageListType } from '../bellMessage/types';
2
- export type { BreadCrumpListType } from '../breadcrumb/types';
2
+ export type { BreadCrumpType, BreadCrumpListType } from '../breadcrumb/types';
3
3
  export type { IconConfigType } from '../icon/types';
4
- export type { ChartDataType, ChartTemplatePatchType, ChartTemplateType } from '../chart/types';
4
+ export type { ChartDataType, ChartTemplatePatchType, ChartTemplateType, ChartMapDataType } from '../chart/types';
5
5
  export type { DescriptionsListType } from '../descriptions/types';
6
6
  export type { DialogBtnType } from '../dialog/types';
7
7
  export type { MarkerAnchorType } from '../map/types';
@@ -1,10 +1,11 @@
1
1
  import { EpPropFinalized } from '../_utils/types';
2
- export type BreadCrumpListType = {
2
+ export type BreadCrumpType = {
3
3
  title: string;
4
4
  name?: string;
5
5
  link?: string;
6
6
  query?: any;
7
- }[];
7
+ };
8
+ export type BreadCrumpListType = BreadCrumpType[];
8
9
  export declare const lsBreadcrumbProp: {
9
10
  defineList: EpPropFinalized<(new (...args: any[]) => BreadCrumpListType) | (() => BreadCrumpListType) | (((new (...args: any[]) => BreadCrumpListType) | (() => BreadCrumpListType)) | null)[], unknown, unknown, () => never[], boolean>;
10
11
  showPos: EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
@@ -16,6 +16,7 @@ export type MenuBaseType = {
16
16
  defJump?: boolean;
17
17
  link?: string;
18
18
  children?: Array<MenuBaseType>;
19
+ icon?: String;
19
20
  };
20
21
  export type BCListItemType = {
21
22
  title: string;
@@ -29,6 +29,7 @@ export type UploadItemType = {
29
29
  defProfile?: string;
30
30
  hideCoverBtn?: boolean;
31
31
  tipContent?: string;
32
+ limitAllFail?: boolean;
32
33
  };
33
34
  export declare const lsUploadProps: {
34
35
  item: EpPropFinalized<(new (...args: any[]) => UploadItemType) | (() => UploadItemType) | (((new (...args: any[]) => UploadItemType) | (() => UploadItemType)) | null)[], unknown, unknown, () => UploadItemType, boolean>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lingshugroup/web-plus",
3
- "version": "1.4.5",
3
+ "version": "1.5.0",
4
4
  "description": "零数科技前端UI组件库(Vue3)",
5
5
  "type": "module",
6
6
  "main": "./lib/index/index.cjs",