es-grid-template 1.9.30 → 1.9.32

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.
@@ -194,10 +194,10 @@ export declare const fixColumnsLeft: <RecordType>(columns: ColumnTable<RecordTyp
194
194
  value: any;
195
195
  rowData: RecordType;
196
196
  }) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactNode);
197
- onCellStyles?: Omit<CSSProperties, "left" | "right" | "position" | "display" | "minWidth" | "width"> | ((cellValue: any, cell: import("@tanstack/react-table").Cell<RecordType, unknown>) => Omit<CSSProperties, "left" | "right" | "position" | "display" | "minWidth" | "width">);
198
- onCellHeaderStyles?: Omit<CSSProperties, "left" | "right" | "position" | "display" | "minWidth" | "width"> | ((cell: import("@tanstack/react-table").Header<RecordType, unknown>) => Omit<CSSProperties, "left" | "right" | "position" | "display" | "minWidth" | "width">);
197
+ onCellStyles?: Omit<CSSProperties, "position" | "display" | "width" | "minWidth" | "left" | "right"> | ((cellValue: any, cell: import("@tanstack/react-table").Cell<RecordType, unknown>) => Omit<CSSProperties, "position" | "display" | "width" | "minWidth" | "left" | "right">);
198
+ onCellHeaderStyles?: Omit<CSSProperties, "position" | "display" | "width" | "minWidth" | "left" | "right"> | ((cell: import("@tanstack/react-table").Header<RecordType, unknown>) => Omit<CSSProperties, "position" | "display" | "width" | "minWidth" | "left" | "right">);
199
199
  onCell?: (rowData: RecordType, index: number) => import("react").TdHTMLAttributes<HTMLTableCellElement>;
200
- onCellFooterStyles?: Omit<CSSProperties, "left" | "right" | "position" | "display" | "minWidth" | "width"> | ((cellValue: any, cell: import("@tanstack/react-table").Header<RecordType, unknown>) => Omit<CSSProperties, "left" | "right" | "position" | "display" | "minWidth" | "width">);
200
+ onCellFooterStyles?: Omit<CSSProperties, "position" | "display" | "width" | "minWidth" | "left" | "right"> | ((cellValue: any, cell: import("@tanstack/react-table").Header<RecordType, unknown>) => Omit<CSSProperties, "position" | "display" | "width" | "minWidth" | "left" | "right">);
201
201
  getValue?: (row: any, rowIndex: number) => any;
202
202
  getCellProps?: (value: any, row: any, rowIndex: number) => import("./../../grid-component/type").CellProps;
203
203
  headerCellProps?: import("./../../grid-component/type").CellProps;
@@ -195,6 +195,12 @@ const InternalTable = props => {
195
195
  },
196
196
  Pagination: {
197
197
  fontSize: 12
198
+ },
199
+ Dropdown: {
200
+ zIndexPopup: 1058
201
+ },
202
+ Popover: {
203
+ zIndexPopup: 1058
198
204
  }
199
205
  }
200
206
  }
@@ -1,7 +1,7 @@
1
1
  import _extends from "@babel/runtime/helpers/esm/extends";
2
2
  import React, { useContext } from "react";
3
- import { DatePicker, TimePicker } from "rc-master-ui";
4
- import { Divider, Row, Col, Input, ColorPicker, Button } from "antd";
3
+ import { DatePicker, TimePicker, ColorPicker } from "rc-master-ui";
4
+ import { Divider, Row, Col, Input, Button } from "antd";
5
5
  import { checkDecimalSeparator, checkThousandSeparator, checkFieldKey, convertArrayWithIndent, convertDateToDayjs, convertLabelToTitle, getDatepickerFormat, isDisable, isEmpty, isNullOrUndefined, customWeekStartEndFormat, convertDayjsToDate, parseBooleanToValue, isColor, genPresets, getFormat, removeVietnameseTones } from "../hook/utils";
6
6
  import classNames from "classnames";
7
7
  import { NumericFormat } from "react-numeric-component";
@@ -335,6 +335,14 @@ $cell-index-focus-bg-Dark: #E6EFFD !default;
335
335
  }
336
336
  }
337
337
 
338
+ .ui-rc-color-picker-trigger {
339
+ width: 100%;
340
+ border-radius: 0;
341
+ .ui-rc-color-picker-color-block {
342
+ width: 100%;
343
+ }
344
+ }
345
+
338
346
  textarea.ant-input {
339
347
  line-height: 1.8;
340
348
  }
@@ -364,7 +364,7 @@ const Grid = props => {
364
364
  padding: '15px 10px'
365
365
  },
366
366
  wrapper: {
367
- zIndex: 1050
367
+ zIndex: 1058
368
368
  }
369
369
  },
370
370
  title: /*#__PURE__*/React.createElement("div", {
@@ -204,6 +204,12 @@ const InternalTable = props => {
204
204
  },
205
205
  Pagination: {
206
206
  fontSize: 12
207
+ },
208
+ Dropdown: {
209
+ zIndexPopup: 1058
210
+ },
211
+ Popover: {
212
+ zIndexPopup: 1058
207
213
  }
208
214
  }
209
215
  }
@@ -956,7 +956,7 @@ const EditableCell = props => {
956
956
  green: _colors.green,
957
957
  cyan: _colors.cyan
958
958
  });
959
- return /*#__PURE__*/_react.default.createElement(_antd.ColorPicker, {
959
+ return /*#__PURE__*/_react.default.createElement(_rcMasterUi.ColorPicker, {
960
960
  value: color,
961
961
  allowClear: column.isClearable ?? true,
962
962
  onChangeComplete: valueColor => {
@@ -335,6 +335,14 @@ $cell-index-focus-bg-Dark: #E6EFFD !default;
335
335
  }
336
336
  }
337
337
 
338
+ .ui-rc-color-picker-trigger {
339
+ width: 100%;
340
+ border-radius: 0;
341
+ .ui-rc-color-picker-color-block {
342
+ width: 100%;
343
+ }
344
+ }
345
+
338
346
  textarea.ant-input {
339
347
  line-height: 1.8;
340
348
  }
@@ -369,7 +369,7 @@ const Grid = props => {
369
369
  padding: '15px 10px'
370
370
  },
371
371
  wrapper: {
372
- zIndex: 1050
372
+ zIndex: 1058
373
373
  }
374
374
  },
375
375
  title: /*#__PURE__*/_react.default.createElement("div", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "es-grid-template",
3
- "version": "1.9.30",
3
+ "version": "1.9.32",
4
4
  "description": "es-grid-template",
5
5
  "keywords": [
6
6
  "react",