@web-fuse/wf-components 1.0.8 → 1.0.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,3 @@
1
1
  import { MessageInstance } from 'antd/es/message/interface';
2
-
3
2
  export declare const MessageProvider: ({ children }: React.PropsWithChildren) => import('react').FunctionComponentElement<import('react').ProviderProps<MessageInstance | null>>;
4
3
  export declare const useMessageApi: () => MessageInstance | null;
@@ -1,5 +1,4 @@
1
1
  import { theme } from 'antd';
2
-
3
2
  /**
4
3
  * Custom theme algorithm that restores the primary color
5
4
  * Normally the dark algorithm changes the colorPrimary aliasToken
package/package.json CHANGED
@@ -1,67 +1,69 @@
1
- {
2
- "name": "@web-fuse/wf-components",
3
- "version": "1.0.8",
4
- "description": "A library containing common form and display components",
5
- "type": "module",
6
- "main": "dist/index.cjs.js",
7
- "module": "dist/index.es.js",
8
- "types": "dist/index.d.ts",
9
- "files": [
10
- "dist"
11
- ],
12
- "scripts": {
13
- "dev": "vite",
14
- "build": "tsc && vite build",
15
- "preview": "vite preview",
16
- "storybook": "storybook dev -p 6006",
17
- "build-storybook": "storybook build",
18
- "lint": "eslint ./src",
19
- "prepack": "npm run build"
20
- },
21
- "keywords": [],
22
- "author": "Luc Appelman",
23
- "license": "Apache-2.0",
24
- "devDependencies": {
25
- "@chromatic-com/storybook": "^1.2.25",
26
- "@storybook/addon-essentials": "^8.0.5",
27
- "@storybook/addon-interactions": "^8.0.5",
28
- "@storybook/addon-links": "^8.0.5",
29
- "@storybook/addon-themes": "^8.0.5",
30
- "@storybook/blocks": "^8.0.5",
31
- "@storybook/react": "^8.0.5",
32
- "@storybook/react-vite": "^8.0.5",
33
- "@storybook/test": "^8.0.5",
34
- "@types/react": "^18.2.66",
35
- "@types/react-copy-to-clipboard": "^5.0.7",
36
- "@types/react-dom": "^18.2.22",
37
- "@types/react-syntax-highlighter": "^15.5.13",
38
- "@typescript-eslint/eslint-plugin": "^7.4.0",
39
- "@typescript-eslint/parser": "^7.4.0",
40
- "eslint": "^8.57.0",
41
- "eslint-plugin-react": "^7.34.1",
42
- "eslint-plugin-react-hooks": "^4.6.0",
43
- "storybook": "^8.0.5",
44
- "typescript": "^5.4.2",
45
- "vite": "^5.1.6",
46
- "vite-plugin-dts": "^3.7.3",
47
- "vite-plugin-svgr": "^4.2.0",
48
- "vite-tsconfig-paths": "^4.3.2"
49
- },
50
- "peerDependencies": {
51
- "antd": "^5.17.2",
52
- "react": "^18.2.0",
53
- "react-copy-to-clipboard": "^5.1.0",
54
- "react-dom": "^18.2.0",
55
- "react-syntax-highlighter": "^15.5.0",
56
- "styled-components": "^6.1.8"
57
- },
58
- "repository": {
59
- "type": "git",
60
- "url": "git+https://github.com/controlol/wf-components.git"
61
- },
62
- "bugs": {
63
- "url": "https://github.com/controlol/wf-components/issues"
64
- },
65
- "homepage": "https://github.com/controlol/wf-components#readme",
66
- "title": "Web-Fuse Components"
67
- }
1
+ {
2
+ "name": "@web-fuse/wf-components",
3
+ "version": "1.0.9",
4
+ "description": "A library containing common form and display components",
5
+ "type": "module",
6
+ "main": "dist/index.cjs.js",
7
+ "module": "dist/index.es.js",
8
+ "types": "dist/index.d.ts",
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "dev": "vite",
14
+ "build": "tsc && vite build",
15
+ "preview": "vite preview",
16
+ "storybook": "storybook dev -p 6006",
17
+ "build-storybook": "storybook build",
18
+ "lint": "eslint ./src",
19
+ "prepack": "npm run build"
20
+ },
21
+ "keywords": [],
22
+ "author": "Luc Appelman",
23
+ "license": "Apache-2.0",
24
+ "devDependencies": {
25
+ "@chromatic-com/storybook": "^1.2.25",
26
+ "@storybook/addon-essentials": "^8.2.8",
27
+ "@storybook/addon-interactions": "^8.2.8",
28
+ "@storybook/addon-links": "^8.2.8",
29
+ "@storybook/addon-themes": "^8.2.8",
30
+ "@storybook/blocks": "^8.2.8",
31
+ "@storybook/react": "^8.2.8",
32
+ "@storybook/react-vite": "^8.2.8",
33
+ "@storybook/test": "^8.2.8",
34
+ "@swc/plugin-styled-components": "^2.0.11",
35
+ "@types/react": "^18.3.3",
36
+ "@types/react-copy-to-clipboard": "^5.0.7",
37
+ "@types/react-dom": "^18.3.0",
38
+ "@types/react-syntax-highlighter": "^15.5.13",
39
+ "@typescript-eslint/eslint-plugin": "^7.4.0",
40
+ "@typescript-eslint/parser": "^7.4.0",
41
+ "@vitejs/plugin-react-swc": "^3.7.0",
42
+ "eslint": "^8.57.0",
43
+ "eslint-plugin-react": "^7.35.0",
44
+ "eslint-plugin-react-hooks": "^4.6.2",
45
+ "storybook": "^8.2.8",
46
+ "typescript": "^5.5.4",
47
+ "vite": "^5.4.0",
48
+ "vite-plugin-dts": "^4.0.2",
49
+ "vite-plugin-svgr": "^4.2.0",
50
+ "vite-tsconfig-paths": "^5.0.1"
51
+ },
52
+ "peerDependencies": {
53
+ "antd": "^5.20.0",
54
+ "react": "^18.3.1",
55
+ "react-copy-to-clipboard": "^5.1.0",
56
+ "react-dom": "^18.3.1",
57
+ "react-syntax-highlighter": "^15.5.0",
58
+ "styled-components": "^6.1.12"
59
+ },
60
+ "repository": {
61
+ "type": "git",
62
+ "url": "git+https://github.com/controlol/wf-components.git"
63
+ },
64
+ "bugs": {
65
+ "url": "https://github.com/controlol/wf-components/issues"
66
+ },
67
+ "homepage": "https://github.com/controlol/wf-components#readme",
68
+ "title": "Web-Fuse Components"
69
+ }