@bigbinary/neeto-api-keys-frontend 2.1.0 → 2.2.1

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/index.js CHANGED
@@ -9,6 +9,9 @@ import '@bigbinary/neeto-molecules/HelpPopover';
9
9
  import '@bigbinary/neetoui/Alert';
10
10
  import '@bigbinary/neetoui/Button';
11
11
  import 'react-i18next';
12
+ import 'ramda';
13
+ import 'react-router-dom';
14
+ import '@bigbinary/neeto-commons-frontend/utils';
12
15
  import '@bigbinary/neeto-commons-frontend/initializers';
13
16
  import '@tanstack/react-query';
14
17
  import 'axios';
@@ -20,11 +23,9 @@ import '@bigbinary/neetoui/formik/Checkbox';
20
23
  import '@bigbinary/neetoui/formik/ActionBlock';
21
24
  import 'formik';
22
25
  import '@bigbinary/neetoui/DatePicker';
23
- import 'ramda';
24
26
  import 'dayjs';
25
- import '@bigbinary/neeto-commons-frontend/utils';
26
- import '@bigbinary/neeto-molecules/MoreDropdown';
27
27
  import '@bigbinary/neeto-molecules/CopyToClipboardButton';
28
+ import '@bigbinary/neeto-molecules/MoreDropdown';
28
29
  import '@bigbinary/neetoui/Tag';
29
30
  import 'yup';
30
31
  import 'react/jsx-runtime';
@@ -32,5 +33,4 @@ import '@bigbinary/neeto-molecules/PageLoader';
32
33
  import '@bigbinary/neeto-molecules/TableWrapper';
33
34
  import '@bigbinary/neetoui/Table';
34
35
  import '@bigbinary/neetoui/NoData';
35
- import 'react-router-dom';
36
36
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-api-keys-frontend",
3
- "version": "2.1.0",
3
+ "version": "2.2.1",
4
4
  "description": "A repo acts as the source of truth for the new nano's structure, configs, data etc.",
5
5
  "license": "UNLICENSED",
6
6
  "homepage": "https://github.com/bigbinary/neeto-api-keys-nano",
@@ -63,11 +63,11 @@
63
63
  "@bigbinary/eslint-plugin-neeto": "1.5.2",
64
64
  "@bigbinary/neeto-audit-frontend": "2.0.12",
65
65
  "@bigbinary/neeto-cist": "1.0.11",
66
- "@bigbinary/neeto-commons-frontend": "4.1.3",
67
- "@bigbinary/neeto-filters-frontend": "4.0.1",
68
- "@bigbinary/neeto-icons": "1.20.0",
69
- "@bigbinary/neeto-molecules": "3.2.16",
70
- "@bigbinary/neetoui": "8.1.1",
66
+ "@bigbinary/neeto-commons-frontend": "4.3.9",
67
+ "@bigbinary/neeto-filters-frontend": "4.2.0",
68
+ "@bigbinary/neeto-icons": "1.20.2",
69
+ "@bigbinary/neeto-molecules": "3.3.16",
70
+ "@bigbinary/neetoui": "8.2.3",
71
71
  "@emotion/is-prop-valid": "1.2.0",
72
72
  "@faker-js/faker": "8.2.0",
73
73
  "@honeybadger-io/js": "6.5.3",
@@ -164,12 +164,12 @@
164
164
  },
165
165
  "peerDependencies": {
166
166
  "@bigbinary/neeto-cist": "latest",
167
- "@bigbinary/neeto-commons-frontend": "4.1.3",
167
+ "@bigbinary/neeto-commons-frontend": "4.3.9",
168
168
  "@bigbinary/neeto-editor": "^1.26.3",
169
- "@bigbinary/neeto-filters-frontend": "4.0.1",
170
- "@bigbinary/neeto-icons": "1.20.0",
171
- "@bigbinary/neeto-molecules": "3.2.16",
172
- "@bigbinary/neetoui": "8.1.1",
169
+ "@bigbinary/neeto-filters-frontend": "4.2.0",
170
+ "@bigbinary/neeto-icons": "1.20.2",
171
+ "@bigbinary/neeto-molecules": "3.3.16",
172
+ "@bigbinary/neetoui": "8.2.3",
173
173
  "@honeybadger-io/js": "^6.5.3",
174
174
  "@honeybadger-io/react": "^6.1.9",
175
175
  "@tanstack/react-query": "5.40.0",
package/types.d.ts CHANGED
@@ -1,6 +1,7 @@
1
- import { DropdownProps, NoDataProps } from "@bigbinary/neetoui";
2
1
  import React from "react";
3
2
 
3
+ import { DropdownProps, NoDataProps, ButtonProps, PopoverProps } from "@bigbinary/neetoui";
4
+
4
5
  type Breadcrumb = {
5
6
  text: string;
6
7
  link: string;
@@ -19,9 +20,22 @@ type HeaderProps = {
19
20
  menuBarToggle?: (...args: any[]) => any;
20
21
  };
21
22
 
23
+
24
+ type titleHelpPopoverProps = {
25
+ title?: string;
26
+ description?: React.ReactNode;
27
+ helpLinkProps?: ButtonProps;
28
+ popoverProps?: PopoverProps;
29
+ size?: "default" | "large";
30
+ className?: string;
31
+ icon?: React.ReactNode;
32
+ iconColor?: string;
33
+ }
34
+
22
35
  interface ApiKeys {
23
36
  noDataProps?: NoDataProps;
24
37
  headerProps?: HeaderProps;
38
+ titleHelpPopoverProps?: titleHelpPopoverProps;
25
39
  }
26
40
 
27
41
  export const ApiKeys = React.FC<ApiKeys>;