aquasis-fe-components 1.7.4 → 1.7.6

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.
@@ -2,6 +2,7 @@ import { FC } from 'react';
2
2
  import { HelpdeskProps } from './index';
3
3
  declare const ConnectedHelpdesk: import('react-redux').ConnectedComponent<FC<HelpdeskProps>, {
4
4
  size?: import('antd/es/button').ButtonSize;
5
+ placement?: import('antd/es/tooltip').TooltipPlacement | undefined;
5
6
  context?: import('react').Context<import('react-redux').ReactReduxContextValue<any, import('redux').UnknownAction> | null> | undefined;
6
7
  store?: import('redux').Store | undefined;
7
8
  }>;
@@ -1,6 +1,8 @@
1
+ import { PopoverProps } from 'antd';
1
2
  import { SizeType } from 'antd/es/config-provider/SizeContext';
2
- import { FC } from 'react';
3
+ import { FC, PropsWithChildren } from 'react';
3
4
  export interface HelpdeskProps {
4
5
  size?: SizeType;
6
+ placement?: PopoverProps["placement"];
5
7
  }
6
- export declare const Helpdesk: FC<HelpdeskProps>;
8
+ export declare const Helpdesk: FC<PropsWithChildren<HelpdeskProps>>;
package/package.json CHANGED
@@ -1,119 +1,119 @@
1
- {
2
- "name": "aquasis-fe-components",
3
- "private": false,
4
- "version": "1.7.4",
5
- "type": "module",
6
- "license": "ISC",
7
- "author": "Ewerton Souza",
8
- "scripts": {
9
- "dev": "vite",
10
- "build": "tsc && vite build",
11
- "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
12
- "preview": "vite preview",
13
- "upd-version": "npm version patch --no-git-tag-version",
14
- "prepublishOnly": "npm run build",
15
- "publish-beta": "npm publish --tag beta"
16
- },
17
- "peerDependencies": {
18
- "i18next": "^24.0.2",
19
- "react": "18.x",
20
- "react-dom": "18.x",
21
- "react-i18next": "^15.1.1"
22
- },
23
- "files": [
24
- "dist"
25
- ],
26
- "main": "dist/aquasis-fe-components.umd.cjs",
27
- "module": "dist/aquasis-fe-components.js",
28
- "types": "dist/src/index.d.ts",
29
- "exports": {
30
- ".": {
31
- "import": {
32
- "default": "./dist/aquasis-fe-components.js",
33
- "types": "./dist/src/index.d.ts"
34
- },
35
- "require": {
36
- "default": "./dist/aquasis-fe-components.umd.cjs",
37
- "types": "./dist/src/index.d.ts"
38
- }
39
- }
40
- },
41
- "repository": {
42
- "type": "git",
43
- "url": "git+https://github.com/AQUASISPT/FrontendComponents.git"
44
- },
45
- "keywords": [
46
- "react"
47
- ],
48
- "homepage": "https://github.com/AQUASISPT/FrontendComponents",
49
- "browserslist": {
50
- "production": [
51
- ">0.2%",
52
- "not dead",
53
- "not op_mini all"
54
- ],
55
- "development": [
56
- "last 1 chrome version",
57
- "last 1 firefox version",
58
- "last 1 safari version"
59
- ],
60
- "eslintConfig": {
61
- "env": {
62
- "browser": true,
63
- "node": true,
64
- "es2020": true
65
- },
66
- "extends": [
67
- "eslint:recommended",
68
- "plugin:react/recommended"
69
- ],
70
- "parserOptions": {
71
- "sourceType": "module"
72
- }
73
- }
74
- },
75
- "devDependencies": {
76
- "@types/lodash": "^4.17.14",
77
- "@types/node": "^22.7.6",
78
- "@types/react": "^18.3.11",
79
- "@types/react-dom": "^18.3.1",
80
- "@typescript-eslint/eslint-plugin": "^8.10.0",
81
- "@typescript-eslint/parser": "^8.10.0",
82
- "@vitejs/plugin-react": "^4.3.2",
83
- "eslint": "^9.12.0",
84
- "eslint-plugin-react-hooks": "^5.0.0",
85
- "eslint-plugin-react-refresh": "^0.4.12",
86
- "json": "^11.0.0",
87
- "sass": "^1.80.2",
88
- "typescript": "^5.6.3",
89
- "vite": "^5.4.9"
90
- },
91
- "dependencies": {
92
- "@ant-design/icons": "^6.0.2",
93
- "@fortawesome/fontawesome-svg-core": "^6.6.0",
94
- "@fortawesome/free-regular-svg-icons": "^6.6.0",
95
- "@fortawesome/free-solid-svg-icons": "^6.6.0",
96
- "@fortawesome/react-fontawesome": "^0.2.2",
97
- "@reduxjs/toolkit": "^2.3.0",
98
- "@types/hoist-non-react-statics": "^3.3.5",
99
- "@uidotdev/usehooks": "^2.4.1",
100
- "antd": "^5.27.3",
101
- "axios": "^1.7.7",
102
- "dayjs": "^1.11.13",
103
- "hoist-non-react-statics": "^3.3.2",
104
- "i18next": "^24.0.2",
105
- "i18next-browser-languagedetector": "^8.0.0",
106
- "lodash": "^4.17.21",
107
- "react": "18",
108
- "react-dom": "18",
109
- "react-i18next": "^15.1.1",
110
- "react-query": "^3.39.3",
111
- "react-redux": "^9.1.2",
112
- "react-router-dom": "^6.27.0",
113
- "redux": "^5.0.1",
114
- "scss": "^0.2.4",
115
- "universal-cookie": "^7.2.1",
116
- "vite-plugin-dts": "^4.2.4",
117
- "vite-plugin-lib-inject-css": "^2.1.1"
118
- }
119
- }
1
+ {
2
+ "name": "aquasis-fe-components",
3
+ "private": false,
4
+ "version": "1.7.6",
5
+ "type": "module",
6
+ "license": "ISC",
7
+ "author": "Ewerton Souza",
8
+ "scripts": {
9
+ "dev": "vite",
10
+ "build": "tsc && vite build",
11
+ "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
12
+ "preview": "vite preview",
13
+ "upd-version": "npm version patch --no-git-tag-version",
14
+ "prepublishOnly": "npm run build",
15
+ "publish-beta": "npm publish --tag beta"
16
+ },
17
+ "peerDependencies": {
18
+ "i18next": "^24.0.2",
19
+ "react": "18.x",
20
+ "react-dom": "18.x",
21
+ "react-i18next": "^15.1.1"
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "main": "dist/aquasis-fe-components.umd.cjs",
27
+ "module": "dist/aquasis-fe-components.js",
28
+ "types": "dist/src/index.d.ts",
29
+ "exports": {
30
+ ".": {
31
+ "import": {
32
+ "types": "./dist/src/index.d.ts",
33
+ "default": "./dist/aquasis-fe-components.js"
34
+ },
35
+ "require": {
36
+ "types": "./dist/src/index.d.ts",
37
+ "default": "./dist/aquasis-fe-components.umd.cjs"
38
+ }
39
+ }
40
+ },
41
+ "repository": {
42
+ "type": "git",
43
+ "url": "git+https://github.com/AQUASISPT/FrontendComponents.git"
44
+ },
45
+ "keywords": [
46
+ "react"
47
+ ],
48
+ "homepage": "https://github.com/AQUASISPT/FrontendComponents",
49
+ "browserslist": {
50
+ "production": [
51
+ ">0.2%",
52
+ "not dead",
53
+ "not op_mini all"
54
+ ],
55
+ "development": [
56
+ "last 1 chrome version",
57
+ "last 1 firefox version",
58
+ "last 1 safari version"
59
+ ],
60
+ "eslintConfig": {
61
+ "env": {
62
+ "browser": true,
63
+ "node": true,
64
+ "es2020": true
65
+ },
66
+ "extends": [
67
+ "eslint:recommended",
68
+ "plugin:react/recommended"
69
+ ],
70
+ "parserOptions": {
71
+ "sourceType": "module"
72
+ }
73
+ }
74
+ },
75
+ "devDependencies": {
76
+ "@types/lodash": "^4.17.14",
77
+ "@types/node": "^22.7.6",
78
+ "@types/react": "^18.3.11",
79
+ "@types/react-dom": "^18.3.1",
80
+ "@typescript-eslint/eslint-plugin": "^8.10.0",
81
+ "@typescript-eslint/parser": "^8.10.0",
82
+ "@vitejs/plugin-react": "^4.3.2",
83
+ "eslint": "^9.12.0",
84
+ "eslint-plugin-react-hooks": "^5.0.0",
85
+ "eslint-plugin-react-refresh": "^0.4.12",
86
+ "json": "^11.0.0",
87
+ "sass": "^1.80.2",
88
+ "typescript": "^5.6.3",
89
+ "vite": "^5.4.9"
90
+ },
91
+ "dependencies": {
92
+ "@ant-design/icons": "^6.1.0",
93
+ "@fortawesome/fontawesome-svg-core": "^6.6.0",
94
+ "@fortawesome/free-regular-svg-icons": "^6.6.0",
95
+ "@fortawesome/free-solid-svg-icons": "^6.6.0",
96
+ "@fortawesome/react-fontawesome": "^3.1.0",
97
+ "@reduxjs/toolkit": "^2.3.0",
98
+ "@types/hoist-non-react-statics": "^3.3.5",
99
+ "@uidotdev/usehooks": "^2.4.1",
100
+ "antd": "^5.27.6",
101
+ "axios": "^1.7.7",
102
+ "dayjs": "^1.11.13",
103
+ "hoist-non-react-statics": "^3.3.2",
104
+ "i18next": "^24.0.2",
105
+ "i18next-browser-languagedetector": "^8.0.0",
106
+ "lodash": "^4.17.21",
107
+ "react": "18",
108
+ "react-dom": "18",
109
+ "react-i18next": "^15.1.1",
110
+ "react-query": "^3.39.3",
111
+ "react-redux": "^9.1.2",
112
+ "react-router-dom": "^6.27.0",
113
+ "redux": "^5.0.1",
114
+ "scss": "^0.2.4",
115
+ "universal-cookie": "^7.2.1",
116
+ "vite-plugin-dts": "^4.2.4",
117
+ "vite-plugin-lib-inject-css": "^2.1.1"
118
+ }
119
+ }