cnhis-design-vue 3.1.33-beta.8 → 3.1.33

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.
Files changed (115) hide show
  1. package/README.md +123 -123
  2. package/es/components/big-table/index.d.ts +1 -1
  3. package/es/components/big-table/src/BigTable.vue.d.ts +1 -1
  4. package/es/components/big-table/src/BigTable.vue2.js +7 -9
  5. package/es/components/big-table/src/components/edit-form/edit-input.js +1 -1
  6. package/es/components/big-table/src/components/edit-form/edit-select.js +1 -1
  7. package/es/components/big-table/src/components/edit-form/edit-time.js +5 -3
  8. package/es/components/big-table/src/components/edit-form/useCommon.d.ts +2 -1
  9. package/es/components/big-table/src/components/edit-form/useCommon.js +7 -3
  10. package/es/components/big-table/src/hooks/useFormat.js +1 -1
  11. package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
  12. package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +1 -0
  13. package/es/components/bpmn-workflow/types/ModelingModule.d.ts +1 -0
  14. package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +1 -0
  15. package/es/components/button-print/index.d.ts +13 -0
  16. package/es/components/button-print/src/ButtonPrint.vue.d.ts +13 -0
  17. package/es/components/button-print/src/ButtonPrint.vue2.js +6 -1
  18. package/es/components/button-print/src/utils/print.d.ts +2 -2
  19. package/es/components/button-print/src/utils/print.js +7 -4
  20. package/es/components/fabric-chart/index.d.ts +133 -2
  21. package/es/components/fabric-chart/src/BirthProcessChart.vue.d.ts +132 -0
  22. package/es/components/fabric-chart/src/BirthProcessChart.vue.js +62 -8
  23. package/es/components/fabric-chart/src/FabricChart.vue.d.ts +133 -2
  24. package/es/components/fabric-chart/src/FabricChart.vue.js +2 -2
  25. package/es/components/fabric-chart/src/TemperatureChart.vue.d.ts +1 -2
  26. package/es/components/fabric-chart/src/TemperatureChart.vue.js +17 -9
  27. package/es/components/fabric-chart/src/components/PopupMenu.js +2 -2
  28. package/es/components/fabric-chart/src/components/PopupTip.vue.d.ts +3 -2
  29. package/es/components/fabric-chart/src/hooks/index.d.ts +1 -0
  30. package/es/components/fabric-chart/src/hooks/index.js +1 -0
  31. package/es/components/fabric-chart/src/hooks/useBirthProcess.d.ts +23 -1
  32. package/es/components/fabric-chart/src/hooks/useBirthProcess.js +305 -9
  33. package/es/components/fabric-chart/src/hooks/useCenter.d.ts +0 -2
  34. package/es/components/fabric-chart/src/hooks/useCenter.js +27 -45
  35. package/es/components/fabric-chart/src/hooks/useCommon.d.ts +8 -0
  36. package/es/components/fabric-chart/src/hooks/useCommon.js +32 -0
  37. package/es/components/fabric-chart/src/hooks/useCumputedPoint.d.ts +5 -2
  38. package/es/components/fabric-chart/src/hooks/useCumputedPoint.js +27 -10
  39. package/es/components/fabric-chart/src/hooks/useLeft.d.ts +1 -1
  40. package/es/components/fabric-chart/src/hooks/useLeft.js +12 -7
  41. package/es/components/fabric-chart/src/interface.d.ts +1 -0
  42. package/es/components/fabric-chart/src/utils/index.d.ts +6823 -0
  43. package/es/components/fabric-chart/src/utils/utils.d.ts +11 -0
  44. package/es/components/fabric-chart/src/utils/utils.js +27 -0
  45. package/es/components/iho-table/index.d.ts +4 -3
  46. package/es/components/iho-table/src/IhoTable.vue.d.ts +4 -3
  47. package/es/components/iho-table/src/IhoTable.vue.js +6 -4
  48. package/es/components/iho-table/src/components/IhoTableColumn.js +1 -1
  49. package/es/components/iho-table/src/constants/index.d.ts +3 -3
  50. package/es/components/iho-table/src/constants/index.js +0 -1
  51. package/es/components/iho-table/src/hooks/tapHooks/index.d.ts +5 -1
  52. package/es/components/iho-table/src/hooks/tapHooks/index.js +10 -9
  53. package/es/components/iho-table/src/hooks/tapHooks/useDataHooks.d.ts +2 -2
  54. package/es/components/iho-table/src/hooks/tapHooks/useEventHooks.d.ts +119 -119
  55. package/es/components/iho-table/src/hooks/tapHooks/useExposeHooks.d.ts +5 -3
  56. package/es/components/iho-table/src/hooks/tapHooks/useExposeHooks.js +1 -1
  57. package/es/components/iho-table/src/hooks/tapHooks/useFieldHooks.d.ts +16 -4
  58. package/es/components/iho-table/src/hooks/tapHooks/useFieldHooks.js +9 -4
  59. package/es/components/iho-table/src/hooks/useColumnConfigAdaptor.js +5 -1
  60. package/es/components/iho-table/src/plugins/defaultConfigPlugin/index.js +1 -1
  61. package/es/components/iho-table/src/plugins/filterPlugin/filter.vue.d.ts +51 -24
  62. package/es/components/iho-table/src/plugins/filterPlugin/filter.vue.js +37 -51
  63. package/es/components/iho-table/src/plugins/filterPlugin/index.js +181 -20
  64. package/es/components/iho-table/src/plugins/filterPlugin/types.d.ts +2 -6
  65. package/es/components/iho-table/src/plugins/filterPlugin/types.js +0 -7
  66. package/es/components/iho-table/src/plugins/index.js +1 -1
  67. package/es/components/iho-table/src/plugins/keyboardEventPlugin/index.js +1 -1
  68. package/es/components/iho-table/src/plugins/lowCodeFieldAdaptorPlugin/index.js +7 -4
  69. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/editSeparate.vue.js +3 -1
  70. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/index.js +3 -3
  71. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/checkRendererPlugin.js +3 -5
  72. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/seqRendererPlugin.js +5 -2
  73. package/es/components/iho-table/src/plugins/rowGroupSettingPlugin/rowGroupUtils.js +7 -4
  74. package/es/components/iho-table/src/plugins/virtualTreePlugin/index.js +1 -1
  75. package/es/components/iho-table/src/types/index.d.ts +10 -12
  76. package/es/components/iho-table/src/types/pluginType.d.ts +28 -12
  77. package/es/components/iho-table/style/index.css +1 -1
  78. package/es/components/index.css +1 -1
  79. package/es/components/info-header/src/InfoHeader.vue.js +1 -1
  80. package/es/components/info-header/style/index.css +1 -1
  81. package/es/components/keyboard/index.d.ts +62 -1
  82. package/es/components/keyboard/src/Keyboard.vue.d.ts +62 -1
  83. package/es/components/keyboard/src/Keyboard.vue.js +4 -1
  84. package/es/components/keyboard/src/components/NumberPanel.vue.d.ts +67 -5
  85. package/es/components/keyboard/src/components/NumberPanel.vue.js +48 -26
  86. package/es/components/keyboard/style/index.css +1 -1
  87. package/es/shared/assets/img/failure.js +1 -1
  88. package/es/shared/assets/img/failure.png.js +1 -1
  89. package/es/shared/assets/img/icon-asc.js +1 -1
  90. package/es/shared/assets/img/icon-desc.js +1 -1
  91. package/es/shared/assets/img/no-permission.js +1 -1
  92. package/es/shared/assets/img/no-permission.png.js +1 -1
  93. package/es/shared/assets/img/nodata.js +1 -1
  94. package/es/shared/assets/img/nodata.png.js +1 -1
  95. package/es/shared/assets/img/notfound.js +1 -1
  96. package/es/shared/assets/img/notfound.png.js +1 -1
  97. package/es/shared/assets/img/qr.js +1 -1
  98. package/es/shared/assets/img/qr.png.js +1 -1
  99. package/es/shared/assets/img/success.js +1 -1
  100. package/es/shared/assets/img/success.png.js +1 -1
  101. package/es/shared/assets/img/video.js +1 -1
  102. package/es/shared/assets/img/video.png.js +1 -1
  103. package/es/shared/assets/img/video_default_cover.js +1 -1
  104. package/es/shared/assets/img/video_default_cover.png.js +1 -1
  105. package/es/shared/assets/img/video_hover.js +1 -1
  106. package/es/shared/assets/img/video_play_hover.js +1 -1
  107. package/es/shared/assets/img/xb_big.js +1 -1
  108. package/es/shared/assets/img/xb_big.png.js +1 -1
  109. package/es/shared/assets/img/xb_small.js +1 -1
  110. package/es/shared/assets/img/xb_small.png.js +1 -1
  111. package/es/shared/components/VueDraggable/src/vuedraggable.d.ts +86 -0
  112. package/es/shared/utils/tapable/index.d.ts +139 -0
  113. package/package.json +2 -2
  114. package/es/components/fabric-chart/src/constants/index.d.ts +0 -4
  115. package/es/components/fabric-chart/src/constants/index.js +0 -4
@@ -78,11 +78,11 @@ function separateRendererPlugins() {
78
78
  }, []);
79
79
  }
80
80
  });
81
- hooks.dataHooks.data.tapPromise(pluginName, async (rowData, {
81
+ hooks.dataHooks.data.tapPromise(pluginName, async (rowData, config, {
82
82
  insertAfter,
83
83
  index: dataIndex,
84
84
  $table
85
- }, config) => {
85
+ }) => {
86
86
  if (!config.uuid)
87
87
  return;
88
88
  const separateColumns = separateColumnMap.get(config.uuid);
@@ -123,7 +123,7 @@ function separateRendererPlugins() {
123
123
  });
124
124
  hooks.eventHooks.onResizableChange.tap(pluginName, async ({
125
125
  column
126
- }, context) => {
126
+ }, _, context) => {
127
127
  if (!isSeparateColumn(column))
128
128
  return;
129
129
  context.updateTableDataRef();
@@ -6,19 +6,17 @@ function checkRendererPlugin() {
6
6
  return defineTablePlugin({
7
7
  name: pluginName,
8
8
  apply(hooks) {
9
- hooks.fieldHooks.field.tap({
10
- name: pluginName,
11
- before: "seqRendererPlugin"
12
- }, (field, {
9
+ hooks.fieldHooks.field.tap(pluginName, (field, {
13
10
  index,
14
11
  insertBefore
15
12
  }, config) => {
16
13
  if (index === 0 && config.selectType) {
17
14
  insertBefore({
18
15
  field: pluginName,
19
- width: 50,
16
+ width: 45,
20
17
  align: "center",
21
18
  annotation: false,
19
+ fixed: "left",
22
20
  type: config.selectType
23
21
  });
24
22
  }
@@ -11,7 +11,10 @@ function seqRendererPlugin() {
11
11
  return defineTablePlugin({
12
12
  name: pluginName,
13
13
  apply(hooks) {
14
- hooks.fieldHooks.field.tap(pluginName, (field, {
14
+ hooks.fieldHooks.field.tap({
15
+ name: pluginName,
16
+ before: "checkRendererPlugin"
17
+ }, (field, {
15
18
  index,
16
19
  insertBefore
17
20
  }, config) => {
@@ -22,7 +25,7 @@ function seqRendererPlugin() {
22
25
  fixed: "left",
23
26
  width: 50,
24
27
  type: "seq",
25
- field: "iho_table_sequence_unique_id",
28
+ field: pluginName,
26
29
  annotation: false,
27
30
  slots: {
28
31
  header() {
@@ -12,13 +12,14 @@ function createRowGroupList(rowGroupSetting, fieldList, getKey = (field) => fiel
12
12
  if (!isArray(groupSetting.list) || !groupSetting.list.length)
13
13
  return;
14
14
  const children = [];
15
+ let currentGroupItem = null;
15
16
  groupSetting.list.forEach((fieldName, idx) => {
16
- const groupIdx = groupIndexSearcher(fieldName, result);
17
+ const groupIdx = groupIndexSearcher(fieldName, result, currentGroupItem);
17
18
  if (!~groupIdx)
18
19
  return;
19
20
  children.push(result[groupIdx]);
20
21
  if (idx === 0) {
21
- result.splice(groupIdx, 1, { fieldName: groupSetting.title, children });
22
+ result.splice(groupIdx, 1, currentGroupItem = { fieldName: groupSetting.title, children });
22
23
  } else {
23
24
  result.splice(groupIdx, 1);
24
25
  }
@@ -26,8 +27,10 @@ function createRowGroupList(rowGroupSetting, fieldList, getKey = (field) => fiel
26
27
  });
27
28
  });
28
29
  return result;
29
- function groupIndexSearcher(fieldName, groupList) {
30
- return groupList.findIndex((group) => (isObject(group) ? group.fieldName : group) === fieldName);
30
+ function groupIndexSearcher(fieldName, groupList, currentGroupItem) {
31
+ return groupList.findIndex(
32
+ (group) => group !== currentGroupItem && (isObject(group) ? group.fieldName : group) === fieldName
33
+ );
31
34
  }
32
35
  }
33
36
  function groupTraverser(groupList, replacer) {
@@ -10,7 +10,7 @@ function virtualTreePlugin() {
10
10
  return defineTablePlugin({
11
11
  name: pluginName,
12
12
  apply(hooks) {
13
- hooks.dataHooks.data.tap(pluginName, (rowData, context, config) => {
13
+ hooks.dataHooks.data.tap(pluginName, (rowData, config, context) => {
14
14
  if (!config.treeConfig)
15
15
  return;
16
16
  const {
@@ -2,7 +2,7 @@ import { AnyObject, TupleToUnion } from '../../../../../es/shared/types';
2
2
  import { VxeTableProps, VxeTableDefines, VxeTableInstance, VxeColumnPropTypes } from 'vxe-table';
3
3
  import { VxeTableEventProps } from 'vxe-table/types/table';
4
4
  import { IHO_TABLE_STRING_STATUS, IhoTableCustomEventNameTuple, IhoTableEventNameTuple, IhoTableRowGroupSequence, VxeEventListenerNameList } from '../../../../../es/components/iho-table/src/constants';
5
- import { FilterState, IHO_TABLE_FILTER_STATUS } from '../../../../../es/components/iho-table/src/plugins/filterPlugin/types';
5
+ import { FilterState } from '../../../../../es/components/iho-table/src/plugins/filterPlugin/types';
6
6
  export * from './pluginType';
7
7
  export interface IhoTableRowGroupItem {
8
8
  groupName: string;
@@ -24,7 +24,9 @@ export declare type IhoTableConfig = VxeTableProps & Partial<{
24
24
  }>;
25
25
  export declare type IhoTableFieldItem = {
26
26
  [K in keyof VxeTableDefines.ColumnInfo]?: K extends 'children' ? IhoTableFieldItem[] : K extends keyof VxeTableDefines.ColumnInfo ? VxeTableDefines.ColumnInfo[K] : never;
27
- };
27
+ } & Partial<{
28
+ annotation: boolean;
29
+ }>;
28
30
  export declare namespace IhoTableLowCodeField {
29
31
  type FieldSetting = {
30
32
  notParticipatingSearch: IHO_TABLE_STRING_STATUS;
@@ -59,9 +61,12 @@ export declare type LowCodeTableFieldItem = {
59
61
  showOverflow: VxeTableDefines.ColumnInfo['showOverflow'];
60
62
  options: AnyObject[];
61
63
  annotation: boolean;
64
+ slots: IhoTableFieldItem['slots'];
65
+ slotFn: NonNullable<IhoTableFieldItem['slots']>['default'];
66
+ headerSlotFn: NonNullable<IhoTableFieldItem['slots']>['header'];
62
67
  filterDefaultValue: Partial<{
63
68
  checked: string[];
64
- sortStatus: 0 | 1 | 2;
69
+ sortStatus: null | 'asc' | 'desc';
65
70
  }>;
66
71
  }> & Partial<Pick<VxeTableDefines.ColumnInfo, 'resizable'>>;
67
72
  export declare type IhoTableFormChangePayload = {
@@ -76,16 +81,9 @@ export declare type EventListenerToEventName<T extends string> = T extends `on${
76
81
  export declare type EventNameToEventListener<T extends string> = T extends `${infer L}${infer R}` ? `on${Uppercase<L>}${R}` : never;
77
82
  export declare type IhoTableHandler = Record<'updateConfigRef' | 'updateFieldListRef' | 'updateTableDataRef', () => void>;
78
83
  export declare type IhoTableEventNameUnion = TupleToUnion<typeof IhoTableEventNameTuple>;
79
- export declare type IhoTableFilterPayload = {
80
- type: 'sort';
81
- value: IHO_TABLE_FILTER_STATUS;
82
- } | {
83
- type: 'filter';
84
- value: string[];
85
- };
86
84
  export declare type IhoTableEmitPayload<T extends typeof IhoTableEventNameTuple[number]> = T extends 'formChange' | 'formClick' ? [IhoTableFormChangePayload] : T extends 'keyboard' ? [IhoTableFormChangePayload & {
87
85
  key: string;
88
- }] : T extends 'settingClick' ? [] : T extends 'sortChange' ? [IhoTableFilterPayload] : Parameters<NonNullable<VxeTableEventProps[EventNameToEventListener<Exclude<T, typeof IhoTableCustomEventNameTuple[number]>>]>>;
86
+ }] : T extends 'settingClick' ? [] : Parameters<NonNullable<VxeTableEventProps[EventNameToEventListener<Exclude<T, typeof IhoTableCustomEventNameTuple[number]>>]>>;
89
87
  export declare type IhoTableAnchorItem = {
90
88
  field: string;
91
89
  title: string;
@@ -93,5 +91,5 @@ export declare type IhoTableAnchorItem = {
93
91
  };
94
92
  export declare type IhoTableExpose = {
95
93
  $table: VxeTableInstance;
96
- setFilter(fieldName: string, value: Partial<Omit<FilterState, 'options'>>): void;
94
+ setFilterState(fieldName: string, value: Partial<Omit<FilterState, 'options'>>): void;
97
95
  };
@@ -56,18 +56,26 @@ export interface FieldHookContext {
56
56
  insertBefore(field: ArrayAble<IhoTableFieldItem>): void;
57
57
  insertAfter(field: ArrayAble<IhoTableFieldItem>): void;
58
58
  }
59
+ export declare type WithFieldHookContext<T = []> = [
60
+ ...WithTableConfig<T>,
61
+ {
62
+ $table: Ref<Nullable<VxeTableInstance>>;
63
+ emits: IhoTableEmits;
64
+ }
65
+ ];
59
66
  export declare abstract class AbstractFieldHooks {
60
- abstract readonly fieldStart: AsyncParallelHook<WithTableConfig>;
61
- abstract readonly field: SyncWaterfallHook<WithTableConfig<[IhoTableFieldItem, FieldHookContext]>>;
62
- abstract readonly fieldList: SyncWaterfallHook<WithTableConfig<[IhoTableFieldItem[]]>>;
63
- abstract readonly fieldEnd: AsyncParallelHook<WithTableConfig>;
67
+ abstract readonly fieldStart: AsyncParallelHook<WithFieldHookContext>;
68
+ abstract readonly field: SyncWaterfallHook<WithFieldHookContext<[IhoTableFieldItem, FieldHookContext]>>;
69
+ abstract readonly fieldList: SyncWaterfallHook<WithFieldHookContext<[IhoTableFieldItem[]]>>;
70
+ abstract readonly fieldEnd: AsyncParallelHook<WithFieldHookContext>;
64
71
  }
65
- export declare type WithIhoEventContext<T> = T extends any[] ? [...T, IhoTableHandler & {
66
- $table: Nullable<VxeTableInstance>;
67
- emits: IhoTableEmits;
68
- }, IhoTableConfig] : [T, IhoTableHandler & {
69
- $table: Nullable<VxeTableInstance>;
70
- }, IhoTableConfig];
72
+ export declare type WithIhoEventContext<T> = [
73
+ ...WithTableConfig<T>,
74
+ IhoTableHandler & {
75
+ $table: Nullable<VxeTableInstance>;
76
+ emits: IhoTableEmits;
77
+ }
78
+ ];
71
79
  declare type EventHookType<T extends Func> = AsyncParallelHook<WithIhoEventContext<Parameters<T>>>;
72
80
  declare type VxeEventTypes = Required<{
73
81
  readonly [K in keyof VxeTableEventProps]: EventHookType<NonNullable<VxeTableEventProps[K]>>;
@@ -140,7 +148,7 @@ declare type DataHookContext = {
140
148
  insertBefore(data: ArrayAble<AnyObject>): void;
141
149
  insertAfter(data: ArrayAble<AnyObject>): void;
142
150
  };
143
- export declare type WithTableDataContext<T> = T extends any[] ? [...T, ...WithTableConfig<DataHookContext>] : [T, ...WithTableConfig<DataHookContext>];
151
+ export declare type WithTableDataContext<T> = [...WithTableConfig<T>, DataHookContext];
144
152
  export declare abstract class AbstractDataHooks {
145
153
  abstract readonly data: AsyncSeriesHook<WithTableDataContext<[AnyObject]>>;
146
154
  }
@@ -151,7 +159,15 @@ export declare abstract class AbstractDomInsertHooks {
151
159
  abstract readonly header: SyncWaterfallHook<[VNode[]]>;
152
160
  abstract readonly footer: SyncWaterfallHook<[VNode[]]>;
153
161
  }
162
+ export declare type WithExposeHookConfig<T = []> = [
163
+ ...(T extends any[] ? T : [T]),
164
+ Ref<IhoTableConfig>,
165
+ {
166
+ $table: Ref<Nullable<VxeTableInstance>>;
167
+ emits: IhoTableEmits;
168
+ }
169
+ ];
154
170
  export declare abstract class AbstractExposeHooks {
155
- abstract readonly expose: SyncWaterfallHook<[Record<string, Func>, Ref<IhoTableConfig>]>;
171
+ abstract readonly expose: SyncWaterfallHook<WithExposeHookConfig<Record<string, Func>>>;
156
172
  }
157
173
  export {};
@@ -1 +1 @@
1
- .iho-table .vxe-table--render-default .vxe-table--fixed-left-wrapper.scrolling--middle{box-shadow:7px 0 8px -3px rgba(0,0,0,.15)}.iho-table .vxe-table--render-default .vxe-table--fixed-right-wrapper.scrolling--middle{box-shadow:-7px 0 8px -3px rgba(0,0,0,.15)}.iho-table__boldCell{font-weight:700}.iho-table .vxe-table--body-wrapper::-webkit-scrollbar,.iho-table .vxe-table--footer-wrapper.body--wrapper::-webkit-scrollbar{background-color:transparent;height:10px;width:10px}.iho-table .vxe-table--body-wrapper::-webkit-scrollbar-thumb,.iho-table .vxe-table--footer-wrapper.body--wrapper::-webkit-scrollbar-thumb{background-clip:padding-box;background-color:#f2f2f2;border:3px dashed transparent;border-radius:5px}.iho-table .vxe-table--body-wrapper::-webkit-scrollbar-thumb:hover,.iho-table .vxe-table--footer-wrapper.body--wrapper::-webkit-scrollbar-thumb:hover{background:#b2b2b2}.iho-table .icon-dot{background:var(--table-icon-color);box-shadow:0 2px 4px 0 var(--table-icon-shadow)}.iho-table .icon-dot,.iho-table .icon-dot-red{border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.iho-table .icon-dot-red{background:red;box-shadow:0 2px 4px 0 rgba(255,0,0,.5)}.iho-table .icon-dot-blue{background:blue;box-shadow:0 2px 4px 0 rgba(0,0,255,.5)}.iho-table .icon-dot-blue,.iho-table .icon-dot-green{border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.iho-table .icon-dot-green{background:green;box-shadow:0 2px 4px 0 rgba(0,128,0,.5)}.iho-table .icon-dot-gray{background:gray;box-shadow:0 2px 4px 0 hsla(0,0%,50%,.5)}.iho-table .icon-dot-gray,.iho-table .icon-dot-yellow{border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.iho-table .icon-dot-yellow{background:#ff0;box-shadow:0 2px 4px 0 rgba(255,255,0,.5)}.iho-table .icon-dot-resolved{background:#36be8c;box-shadow:0 2px 4px 0 rgba(54,190,140,.5)}.iho-table .icon-dot-huifu,.iho-table .icon-dot-resolved{border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.iho-table .icon-dot-huifu{background:#42d0f6;box-shadow:0 2px 4px 0 rgba(66,208,246,.5)}.iho-table .icon-dot-close{background:#718391;box-shadow:0 2px 4px 0 rgba(113,131,145,.5)}.iho-table .icon-dot-audit,.iho-table .icon-dot-close{border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.iho-table .icon-dot-audit{background:#f4ba32;box-shadow:0 2px 4px 0 rgba(244,186,50,.5)}.iho-table .icon-dot-design{background:#927ce1;box-shadow:0 2px 4px 0 rgba(146,124,225,.5)}.iho-table .icon-dot-design,.iho-table .icon-dot-develop{border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.iho-table .icon-dot-develop{background:#4eb0ef;box-shadow:0 2px 4px 0 rgba(78,176,239,.5)}.iho-table .icon-dot-develop-complete{background:#6381f9;border-radius:50%;box-shadow:0 2px 4px 0 rgba(99,129,249,.5);display:inline-block;height:8px;margin-right:6px;width:8px}.iho-table__filterIcon{cursor:pointer;padding:0 4px}.iho-table__filterIcon:hover{opacity:.7}.iho-table__filterIcon.is-active{color:#5585f5}.iho-table__filterWrapper{display:flex;flex-direction:column;gap:8px;width:200px}.iho-table__filterButton{align-items:center;border-radius:4px;cursor:pointer;display:flex;height:30px;padding:0 8px}.iho-table__filterButton--active{color:#5585f5}.iho-table__filterButton:hover{background:rgba(0,0,0,.05)}.iho-table__filterListWrapper{border:1px solid rgba(0,0,0,.05)}.iho-table__filterListItem{align-items:center;border-radius:4px;display:flex;height:32px;padding:0 8px}.iho-table__filterListItem:hover{background:rgba(0,0,0,.05)}.iho-table__filterFooter{display:flex;justify-content:space-between}.iho-table .vxe-header--column [annotation-hover-show=true]{visibility:hidden}.iho-table .vxe-header--column:hover [annotation-hover-show=true]{visibility:visible}.iho-table__headerWrapper{display:inline-flex}
1
+ .iho-table__boldCell{font-weight:700}.iho-table .vxe-table--body-wrapper::-webkit-scrollbar,.iho-table .vxe-table--footer-wrapper.body--wrapper::-webkit-scrollbar{background-color:transparent;height:10px;width:10px}.iho-table .vxe-table--body-wrapper::-webkit-scrollbar-thumb,.iho-table .vxe-table--footer-wrapper.body--wrapper::-webkit-scrollbar-thumb{background-clip:padding-box;background-color:#f2f2f2;border:3px dashed transparent;border-radius:5px}.iho-table .vxe-table--body-wrapper::-webkit-scrollbar-thumb:hover,.iho-table .vxe-table--footer-wrapper.body--wrapper::-webkit-scrollbar-thumb:hover{background:#b2b2b2}.iho-table .vxe-table{transform:translateZ(0)}.iho-table .vxe-table .vxe-table--empty-content,.iho-table .vxe-table .vxe-table--empty-content>div{height:100%;width:100%}.iho-table .vxe-table .vxe-table--empty-content>div .no-data-tip{display:inline-flex}.iho-table .vxe-table .col--checkbox .vxe-cell,.iho-table .vxe-table .col--seq .vxe-cell{padding:0}.iho-table .vxe-table .col--checkbox .vxe-cell .vxe-checkbox--label,.iho-table .vxe-table .col--seq .vxe-cell .vxe-checkbox--label{padding-left:0}.iho-table .vxe-table .vxe-cell .vxe-tree-cell{height:100%}.iho-table .vxe-table .scan-multi-delete{color:#f06f64}.iho-table .vxe-table .vxe-table--header{background-color:#f2f2f2}.iho-table .vxe-table .vxe-table--header .vxe-header--column .vxe-cell--title{color:#35393c;height:100%;line-height:unset}.iho-table .vxe-table .vxe-table--header .vxe-header--column .vxe-cell--title .header-title-span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.iho-table .vxe-table .vxe-table--header .col--checkbox .vxe-cell--title,.iho-table .vxe-table .vxe-table--header .col--seq .vxe-cell--title{display:inline-block}.iho-table .vxe-table .vxe-table--body-wrapper::-webkit-scrollbar,.iho-table .vxe-table .vxe-table--footer-wrapper.body--wrapper::-webkit-scrollbar{background-color:transparent;height:10px;width:10px}.iho-table .vxe-table .vxe-table--body-wrapper::-webkit-scrollbar-thumb,.iho-table .vxe-table .vxe-table--footer-wrapper.body--wrapper::-webkit-scrollbar-thumb{background-clip:padding-box;background-color:#f2f2f2;border:3px dashed transparent;border-radius:0}.iho-table .vxe-table .vxe-table--body-wrapper::-webkit-scrollbar-thumb:hover,.iho-table .vxe-table .vxe-table--footer-wrapper.body--wrapper::-webkit-scrollbar-thumb:hover{background:#b2b2b2}.iho-table .vxe-table .vxe-footer--row .vxe-footer--column>.vxe-cell .vxe-cell--item{height:30px;line-height:30px}.iho-table .vxe-table .vxe-cell--checkbox .vxe-checkbox--label{display:none}.iho-table .vxe-table--render-default .vxe-body--expanded-column,.iho-table .vxe-table--render-default .vxe-table--border-line{border-color:#d5d5d599}.iho-table .vxe-table--render-default .vxe-table--footer-wrapper{border-top-color:#d5d5d599}.iho-table .vxe-table--render-default.border--default .vxe-body--column,.iho-table .vxe-table--render-default.border--default .vxe-footer--column,.iho-table .vxe-table--render-default.border--default .vxe-header--column,.iho-table .vxe-table--render-default.border--inner .vxe-body--column,.iho-table .vxe-table--render-default.border--inner .vxe-footer--column,.iho-table .vxe-table--render-default.border--inner .vxe-header--column{background-image:linear-gradient(#d5d5d599,#d5d5d599)}.iho-table .vxe-table--render-default.border--full .vxe-body--column,.iho-table .vxe-table--render-default.border--full .vxe-footer--column,.iho-table .vxe-table--render-default.border--full .vxe-header--column{background-image:linear-gradient(#d5d5d599,#d5d5d599),linear-gradient(#d5d5d599,#d5d5d599)}.iho-table .vxe-table--render-default.border--full .vxe-table--fixed-left-wrapper .vxe-body--column{border-right-color:#d5d5d599}.iho-table .vxe-table--render-default.border--default .vxe-table--header-wrapper .vxe-header--row:last-child .vxe-header--gutter,.iho-table .vxe-table--render-default.border--full .vxe-table--header-wrapper .vxe-header--row:last-child .vxe-header--gutter,.iho-table .vxe-table--render-default.border--inner .vxe-table--header-wrapper .vxe-header--row:last-child .vxe-header--gutter,.iho-table .vxe-table--render-default.border--outer .vxe-table--header-wrapper .vxe-header--row:last-child .vxe-header--gutter{background-image:linear-gradient(#d5d5d599,#d5d5d599)}.iho-table .vxe-table--render-default.border--default .vxe-table--header-wrapper .vxe-table--header-border-line,.iho-table .vxe-table--render-default.border--full .vxe-table--header-wrapper .vxe-table--header-border-line,.iho-table .vxe-table--render-default.border--inner .vxe-table--header-wrapper .vxe-table--header-border-line,.iho-table .vxe-table--render-default.border--outer .vxe-table--header-wrapper .vxe-table--header-border-line{border-bottom-color:#d5d5d599}.iho-table .vxe-table--render-default .vxe-table--fixed-left-wrapper.scrolling--middle{box-shadow:7px 0 8px -3px rgba(0,0,0,.15)}.iho-table .vxe-table--render-default .vxe-table--fixed-right-wrapper.scrolling--middle{box-shadow:-7px 0 8px -3px rgba(0,0,0,.15)}.iho-table .vxe-table--render-default .vxe-cell--checkbox .vxe-checkbox--icon{color:#d5d5d5;font-weight:400}.iho-table .icon-dot{background:var(--table-icon-color);box-shadow:0 2px 4px 0 var(--table-icon-shadow)}.iho-table .icon-dot,.iho-table .icon-dot-red{border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.iho-table .icon-dot-red{background:red;box-shadow:0 2px 4px 0 rgba(255,0,0,.5)}.iho-table .icon-dot-blue{background:blue;box-shadow:0 2px 4px 0 rgba(0,0,255,.5)}.iho-table .icon-dot-blue,.iho-table .icon-dot-green{border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.iho-table .icon-dot-green{background:green;box-shadow:0 2px 4px 0 rgba(0,128,0,.5)}.iho-table .icon-dot-gray{background:gray;box-shadow:0 2px 4px 0 hsla(0,0%,50%,.5)}.iho-table .icon-dot-gray,.iho-table .icon-dot-yellow{border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.iho-table .icon-dot-yellow{background:#ff0;box-shadow:0 2px 4px 0 rgba(255,255,0,.5)}.iho-table .icon-dot-resolved{background:#36be8c;box-shadow:0 2px 4px 0 rgba(54,190,140,.5)}.iho-table .icon-dot-huifu,.iho-table .icon-dot-resolved{border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.iho-table .icon-dot-huifu{background:#42d0f6;box-shadow:0 2px 4px 0 rgba(66,208,246,.5)}.iho-table .icon-dot-close{background:#718391;box-shadow:0 2px 4px 0 rgba(113,131,145,.5)}.iho-table .icon-dot-audit,.iho-table .icon-dot-close{border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.iho-table .icon-dot-audit{background:#f4ba32;box-shadow:0 2px 4px 0 rgba(244,186,50,.5)}.iho-table .icon-dot-design{background:#927ce1;box-shadow:0 2px 4px 0 rgba(146,124,225,.5)}.iho-table .icon-dot-design,.iho-table .icon-dot-develop{border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.iho-table .icon-dot-develop{background:#4eb0ef;box-shadow:0 2px 4px 0 rgba(78,176,239,.5)}.iho-table .icon-dot-develop-complete{background:#6381f9;border-radius:50%;box-shadow:0 2px 4px 0 rgba(99,129,249,.5);display:inline-block;height:8px;margin-right:6px;width:8px}.iho-table__filterIcon{cursor:pointer;padding:0 4px}.iho-table__filterIcon:hover{opacity:.7}.iho-table__filterIcon.is-active{color:#5585f5}.iho-table__filterWrapper{display:flex;flex-direction:column;gap:8px;width:200px}.iho-table__filterButton{align-items:center;border-radius:4px;cursor:pointer;display:flex;height:30px;padding:0 8px}.iho-table__filterButton--active{color:#5585f5}.iho-table__filterButton:hover{background:rgba(0,0,0,.05)}.iho-table__filterListWrapper{border:1px solid rgba(0,0,0,.05)}.iho-table__filterListItem{align-items:center;border-radius:4px;display:flex;height:32px;padding:0 8px}.iho-table__filterListItem:hover{background:rgba(0,0,0,.05)}.iho-table__filterFooter{display:flex;justify-content:space-between}.iho-table .vxe-header--column [annotation-hover-show=true]{visibility:hidden}.iho-table .vxe-header--column:hover [annotation-hover-show=true]{visibility:visible}.iho-table__headerWrapper{display:inline-flex}