@bigbinary/neeto-payments-frontend 1.0.27 → 1.0.29

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-payments-frontend",
3
- "version": "1.0.27",
3
+ "version": "1.0.29",
4
4
  "description": "To manage payments across the neeto products.",
5
5
  "license": "UNLICENSED",
6
6
  "homepage": "https://github.com/bigbinary/neeto-payments-frontend#readme",
@@ -37,13 +37,14 @@
37
37
  "@babel/preset-react": "7.18.6",
38
38
  "@babel/preset-typescript": "7.21.0",
39
39
  "@babel/runtime": "7.21.0",
40
- "@bigbinary/eslint-plugin-neeto": "1.0.23",
41
- "@bigbinary/neeto-commons-frontend": "2.0.54",
40
+ "@bigbinary/babel-preset-neeto": "1.0.3",
41
+ "@bigbinary/eslint-plugin-neeto": "1.1.9",
42
+ "@bigbinary/neeto-commons-frontend": "2.0.115",
42
43
  "@bigbinary/neeto-editor": "1.25.0",
43
- "@bigbinary/neeto-filters-frontend": "2.10.0",
44
- "@bigbinary/neeto-icons": "1.11.0",
45
- "@bigbinary/neeto-molecules": "1.0.22",
46
- "@bigbinary/neetoui": "4.4.10",
44
+ "@bigbinary/neeto-filters-frontend": "2.12.7",
45
+ "@bigbinary/neeto-icons": "1.14.0",
46
+ "@bigbinary/neeto-molecules": "1.0.76",
47
+ "@bigbinary/neetoui": "5.1.4",
47
48
  "@faker-js/faker": "7.6.0",
48
49
  "@honeybadger-io/react": "2.0.1",
49
50
  "@rollup/plugin-alias": "4.0.3",
@@ -118,12 +119,12 @@
118
119
  "yup": "0.32.11"
119
120
  },
120
121
  "peerDependencies": {
121
- "@bigbinary/neeto-commons-frontend": "^2.0.54",
122
+ "@bigbinary/neeto-commons-frontend": "latest",
122
123
  "@bigbinary/neeto-editor": "^1.25.0",
123
124
  "@bigbinary/neeto-filters-frontend": "^2.8.1",
124
- "@bigbinary/neeto-icons": "^1.9.22",
125
- "@bigbinary/neeto-molecules": "^1.0.9",
126
- "@bigbinary/neetoui": "^4.4.10",
125
+ "@bigbinary/neeto-icons": "latest",
126
+ "@bigbinary/neeto-molecules": "latest",
127
+ "@bigbinary/neetoui": "latest",
127
128
  "@honeybadger-io/react": "^2.0.1",
128
129
  "axios": "^0.27.2",
129
130
  "classnames": "^2.3.2",
package/types.d.ts CHANGED
@@ -40,3 +40,11 @@ export function SquareCard(props: {
40
40
  options?: object = {};
41
41
  disabled?: boolean = false;
42
42
  });
43
+
44
+ export function SquareDashboard(props: {
45
+ holdableId?: string = null;
46
+ payableEntityColumns?: object[] = [];
47
+ searchProps: SearchPropType;
48
+ headerProps?: object = {};
49
+ kind?: string = "squarePayment";
50
+ }): JSX.Element;