@bigbinary/neeto-molecules 1.7.9 → 1.7.11

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-molecules",
3
- "version": "1.7.9",
3
+ "version": "1.7.11",
4
4
  "description": "A package of reusable molecular components for neeto products.",
5
5
  "repository": "git@github.com:bigbinary/neeto-molecules.git",
6
6
  "author": "Amaljith K <amaljith.k@bigbinary.com>",
@@ -32,8 +32,8 @@ type Column = {
32
32
  * const { hideColumn } = useHiddenColumns(localStorageKey);
33
33
  * const [columns, setColumns] = useState([]);
34
34
  * const DEFAULT_COLUMNS_DATA = [
35
- * { title: "Id", dataIndex: "id", key: "id" },
36
- * { title: "Name", dataIndex: "name", key: "name" },
35
+ * { title: "Id", dataIndex: "id", key: "id", isHidable: false },
36
+ * { title: "Name", dataIndex: "name", key: "name", isHidable: false },
37
37
  * {
38
38
  * title: () => (
39
39
  * <>
@@ -63,7 +63,6 @@ const Columns: React.FC<{
63
63
  actionBlock?: React.ReactNode;
64
64
  checkboxProps?: CheckboxProps;
65
65
  columnData: Column[];
66
- fixedColumns?: string[];
67
66
  isSearchable?: boolean;
68
67
  localStorageKey: string;
69
68
  noColumnMessage?: string;
@@ -30,6 +30,7 @@ const ProductEmbed: React.FC<{
30
30
  goBackLink?: string;
31
31
  customEmbedScriptPath?: string,
32
32
  customPreviewIframeUrl?: string,
33
+ extraArgs?: object,
33
34
  id: string;
34
35
  options?: {
35
36
  inline?: InlineProps;
@@ -10,6 +10,7 @@ type NavLinkItemType = {
10
10
  count?: number;
11
11
  type?: string;
12
12
  filters?: filters;
13
+ checkpointKey?: string;
13
14
  } & React.PropsWithoutRef<NavLinkProps<any>> & React.RefAttributes<HTMLAnchorElement>;
14
15
  /**
15
16
  *
@@ -19,7 +19,6 @@ type ColumnsButtonProps = {
19
19
  actionBlock?: React.ReactNode;
20
20
  checkboxProps?: Partial<CheckboxProps>;
21
21
  columnData?: ColumnData[];
22
- fixedColumns?: string[];
23
22
  isSearchable?: boolean;
24
23
  localStorageKey?: string;
25
24
  initialValue?: string[];