profinansy-ui-lib 2.0.71 → 2.0.73
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/components/footer/components/About/About.d.ts +2 -0
- package/dist/components/footer/components/About/About.styled.d.ts +2 -0
- package/dist/components/footer/components/Applications/Applications.styled.d.ts +4 -0
- package/dist/components/footer/components/Contacts/Contacts.d.ts +5 -0
- package/dist/components/footer/components/Contacts/Contacts.styled.d.ts +6 -0
- package/dist/components/footer/components/Documents/Documents.d.ts +6 -0
- package/dist/components/footer/components/Documents/Documents.styled.d.ts +1 -0
- package/dist/components/footer/components/Information/Information.d.ts +5 -0
- package/dist/components/footer/components/Information/Information.styled.d.ts +1 -0
- package/dist/components/footer/components/Navigation/Navigation.d.ts +10 -0
- package/dist/components/footer/components/Navigation/Navigation.styled.d.ts +5 -0
- package/dist/components/footer/components/Networks/Networks.d.ts +2 -0
- package/dist/components/footer/components/Networks/Networks.styled.d.ts +1 -0
- package/dist/components/footer/constants.d.ts +8 -10
- package/dist/components/footer/footer.styled.d.ts +5 -30
- package/dist/components/header/contstants/authLinks.d.ts +14 -0
- package/dist/components/header/contstants/paidLinks.d.ts +14 -9
- package/dist/index.js +194 -230
- package/package.json +69 -69
- package/dist/components/footer/components/AddressBlock/AddressBlock.d.ts +0 -5
- package/dist/components/footer/components/AddressBlock/AddressBlock.styled.d.ts +0 -3
package/package.json
CHANGED
|
@@ -1,69 +1,69 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "profinansy-ui-lib",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"main": "./dist/index.js",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"devDependencies": {
|
|
7
|
-
"@babel/preset-env": "^7.22.5",
|
|
8
|
-
"@babel/preset-react": "^7.22.5",
|
|
9
|
-
"@babel/preset-typescript": "^7.22.5",
|
|
10
|
-
"@storybook/addon-essentials": "7.0.24",
|
|
11
|
-
"@storybook/addon-interactions": "7.0.24",
|
|
12
|
-
"@storybook/addon-links": "7.0.24",
|
|
13
|
-
"@storybook/blocks": "7.0.24",
|
|
14
|
-
"@storybook/react": "7.0.24",
|
|
15
|
-
"@storybook/react-webpack5": "7.0.24",
|
|
16
|
-
"@storybook/testing-library": "0.0.14-next.2",
|
|
17
|
-
"@svgr/webpack": "^8.1.0",
|
|
18
|
-
"@types/file-loader": "^5.0.1",
|
|
19
|
-
"@types/react": "^18.0.27",
|
|
20
|
-
"@types/styled-components": "^5.1.26",
|
|
21
|
-
"@typescript-eslint/eslint-plugin": "^6.2.0",
|
|
22
|
-
"@typescript-eslint/parser": "^6.2.0",
|
|
23
|
-
"chromatic": "^7.2.0",
|
|
24
|
-
"classnames": "^2.3.2",
|
|
25
|
-
"css-loader": "^6.7.3",
|
|
26
|
-
"date-fns": "^2.30.0",
|
|
27
|
-
"eslint": "^8.45.0",
|
|
28
|
-
"eslint-plugin-react": "^7.33.0",
|
|
29
|
-
"file-loader": "^6.2.0",
|
|
30
|
-
"husky": "^8.0.3",
|
|
31
|
-
"prettier": "2.8.8",
|
|
32
|
-
"prop-types": "15.8.1",
|
|
33
|
-
"react": "18.2.0",
|
|
34
|
-
"react-dom": "18.2.0",
|
|
35
|
-
"sass": "^1.57.1",
|
|
36
|
-
"sass-loader": "^13.2.0",
|
|
37
|
-
"storybook": "7.0.24",
|
|
38
|
-
"style-loader": "^3.3.1",
|
|
39
|
-
"styled-components": "^5.3.6",
|
|
40
|
-
"ts-loader": "^9.4.2",
|
|
41
|
-
"tsconfig-paths-webpack-plugin": "^4.1.0",
|
|
42
|
-
"typescript": "^4.9.4",
|
|
43
|
-
"webpack": "^5.75.0",
|
|
44
|
-
"webpack-cli": "^5.0.1"
|
|
45
|
-
},
|
|
46
|
-
"scripts": {
|
|
47
|
-
"build": "webpack",
|
|
48
|
-
"pub": "webpack && npm version patch && npm publish",
|
|
49
|
-
"lint": "eslint .",
|
|
50
|
-
"lint:fix": "eslint --fix",
|
|
51
|
-
"types": "tsc",
|
|
52
|
-
"storybook": "storybook dev -p 6006",
|
|
53
|
-
"build-storybook": "storybook build",
|
|
54
|
-
"icons:story": "node .\\generateIconsStories.ts",
|
|
55
|
-
"prepare": "husky install",
|
|
56
|
-
"checks:pre-commit": "yarn lint",
|
|
57
|
-
"chromatic": "npx chromatic --project-token=chpt_d128c44de33605c --auto-accept-changes"
|
|
58
|
-
},
|
|
59
|
-
"peerDependencies": {
|
|
60
|
-
"react": "^17",
|
|
61
|
-
"styled-components": "^5.3.6"
|
|
62
|
-
},
|
|
63
|
-
"files": [
|
|
64
|
-
"dist"
|
|
65
|
-
],
|
|
66
|
-
"dependencies": {},
|
|
67
|
-
"readme": "ERROR: No README data found!",
|
|
68
|
-
"_id": "profinansy-ui-lib@2.0.66"
|
|
69
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "profinansy-ui-lib",
|
|
3
|
+
"version": "2.0.73",
|
|
4
|
+
"main": "./dist/index.js",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"devDependencies": {
|
|
7
|
+
"@babel/preset-env": "^7.22.5",
|
|
8
|
+
"@babel/preset-react": "^7.22.5",
|
|
9
|
+
"@babel/preset-typescript": "^7.22.5",
|
|
10
|
+
"@storybook/addon-essentials": "7.0.24",
|
|
11
|
+
"@storybook/addon-interactions": "7.0.24",
|
|
12
|
+
"@storybook/addon-links": "7.0.24",
|
|
13
|
+
"@storybook/blocks": "7.0.24",
|
|
14
|
+
"@storybook/react": "7.0.24",
|
|
15
|
+
"@storybook/react-webpack5": "7.0.24",
|
|
16
|
+
"@storybook/testing-library": "0.0.14-next.2",
|
|
17
|
+
"@svgr/webpack": "^8.1.0",
|
|
18
|
+
"@types/file-loader": "^5.0.1",
|
|
19
|
+
"@types/react": "^18.0.27",
|
|
20
|
+
"@types/styled-components": "^5.1.26",
|
|
21
|
+
"@typescript-eslint/eslint-plugin": "^6.2.0",
|
|
22
|
+
"@typescript-eslint/parser": "^6.2.0",
|
|
23
|
+
"chromatic": "^7.2.0",
|
|
24
|
+
"classnames": "^2.3.2",
|
|
25
|
+
"css-loader": "^6.7.3",
|
|
26
|
+
"date-fns": "^2.30.0",
|
|
27
|
+
"eslint": "^8.45.0",
|
|
28
|
+
"eslint-plugin-react": "^7.33.0",
|
|
29
|
+
"file-loader": "^6.2.0",
|
|
30
|
+
"husky": "^8.0.3",
|
|
31
|
+
"prettier": "2.8.8",
|
|
32
|
+
"prop-types": "15.8.1",
|
|
33
|
+
"react": "18.2.0",
|
|
34
|
+
"react-dom": "18.2.0",
|
|
35
|
+
"sass": "^1.57.1",
|
|
36
|
+
"sass-loader": "^13.2.0",
|
|
37
|
+
"storybook": "7.0.24",
|
|
38
|
+
"style-loader": "^3.3.1",
|
|
39
|
+
"styled-components": "^5.3.6",
|
|
40
|
+
"ts-loader": "^9.4.2",
|
|
41
|
+
"tsconfig-paths-webpack-plugin": "^4.1.0",
|
|
42
|
+
"typescript": "^4.9.4",
|
|
43
|
+
"webpack": "^5.75.0",
|
|
44
|
+
"webpack-cli": "^5.0.1"
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "webpack",
|
|
48
|
+
"pub": "webpack && npm version patch && npm publish",
|
|
49
|
+
"lint": "eslint .",
|
|
50
|
+
"lint:fix": "eslint --fix",
|
|
51
|
+
"types": "tsc",
|
|
52
|
+
"storybook": "storybook dev -p 6006",
|
|
53
|
+
"build-storybook": "storybook build",
|
|
54
|
+
"icons:story": "node .\\generateIconsStories.ts",
|
|
55
|
+
"prepare": "husky install",
|
|
56
|
+
"checks:pre-commit": "yarn lint",
|
|
57
|
+
"chromatic": "npx chromatic --project-token=chpt_d128c44de33605c --auto-accept-changes"
|
|
58
|
+
},
|
|
59
|
+
"peerDependencies": {
|
|
60
|
+
"react": "^17",
|
|
61
|
+
"styled-components": "^5.3.6"
|
|
62
|
+
},
|
|
63
|
+
"files": [
|
|
64
|
+
"dist"
|
|
65
|
+
],
|
|
66
|
+
"dependencies": {},
|
|
67
|
+
"readme": "ERROR: No README data found!",
|
|
68
|
+
"_id": "profinansy-ui-lib@2.0.66"
|
|
69
|
+
}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export declare const AddressBlock: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
2
|
-
export declare const CompanyName: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, {}, never>;
|
|
3
|
-
export declare const Address: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, {}, never>;
|