@web-fuse/wf-components 1.0.7 → 1.0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. package/dist/Display/Card/DarkCard.Title.d.ts +0 -1
  2. package/dist/Display/Card/DarkCard.d.ts +1 -2
  3. package/dist/Display/Card/LightCard.Title.d.ts +0 -1
  4. package/dist/Display/Card/LightCard.d.ts +1 -2
  5. package/dist/Display/Card/index.d.ts +4 -4
  6. package/dist/Display/CodeBlock/CodeBlockCopy.d.ts +1 -2
  7. package/dist/Display/CodeBlock/CodeHeader.d.ts +1 -1
  8. package/dist/Display/CodeBlock/index.d.ts +1 -3
  9. package/dist/Display/CodeBlock/languages.d.ts +10 -11
  10. package/dist/Display/Collapse/Collapse.d.ts +2 -3
  11. package/dist/Display/Collapse/CollapseBase.d.ts +8 -9
  12. package/dist/Display/Collapse/CollapseContent.d.ts +4 -5
  13. package/dist/Display/Collapse/index.d.ts +6 -6
  14. package/dist/Display/Selector/SelectorItem.d.ts +1 -2
  15. package/dist/Display/Selector/SelectorSubItem.d.ts +1 -2
  16. package/dist/Display/Selector/index.d.ts +1 -1
  17. package/dist/Display/Selector/style.d.ts +8 -11
  18. package/dist/Display/index.d.ts +7 -7
  19. package/dist/Form/Buttons.d.ts +14 -29
  20. package/dist/Form/Form/Form.Item.d.ts +2 -3
  21. package/dist/Form/Form/Form.d.ts +1 -2
  22. package/dist/Form/Form/index.d.ts +3 -3
  23. package/dist/Form/HoverLabel.d.ts +2 -2
  24. package/dist/Form/Input/Input.Password.d.ts +3 -4
  25. package/dist/Form/Input/Input.Search.d.ts +4 -5
  26. package/dist/Form/Input/Input.TextArea.d.ts +4 -5
  27. package/dist/Form/Input/Input.d.ts +10 -11
  28. package/dist/Form/Input/index.d.ts +5 -5
  29. package/dist/Form/index.d.ts +7 -7
  30. package/dist/Layout/Main/MainSelector.d.ts +4 -5
  31. package/dist/Layout/Main/MainSettings.d.ts +8 -9
  32. package/dist/Layout/Main/index.d.ts +2 -3
  33. package/dist/Layout/Navbar/NavbarDropdown.d.ts +1 -2
  34. package/dist/Layout/Navbar/index.d.ts +1 -2
  35. package/dist/Layout/Navbar/style.d.ts +4 -5
  36. package/dist/Layout/index.d.ts +5 -5
  37. package/dist/Oauth/ErrorBoundary.d.ts +0 -1
  38. package/dist/Oauth/LoginContainer.d.ts +3 -3
  39. package/dist/Oauth/PageBackground.d.ts +1 -1
  40. package/dist/Oauth/index.d.ts +5 -5
  41. package/dist/index.cjs.js +3 -812
  42. package/dist/index.cjs.js.map +1 -1
  43. package/dist/index.d.ts +5 -5
  44. package/dist/index.es.js +1340 -26738
  45. package/dist/index.es.js.map +1 -1
  46. package/dist/util/index.d.ts +2 -2
  47. package/dist/util/useMessageApi.d.ts +2 -3
  48. package/dist/util/wfDarkAlgorithm.d.ts +1 -1
  49. package/package.json +69 -67
@@ -1,2 +1,2 @@
1
- export * from "./wfDarkAlgorithm";
2
- export * from "./useMessageApi";
1
+ export * from './wfDarkAlgorithm';
2
+ export * from './useMessageApi';
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
- import type { MessageInstance } from "antd/es/message/interface";
3
- export declare const MessageProvider: ({ children }: React.PropsWithChildren) => import("react").FunctionComponentElement<import("react").ProviderProps<MessageInstance | null>>;
1
+ import { MessageInstance } from 'antd/es/message/interface';
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,4 +1,4 @@
1
- import { theme } from "antd";
1
+ import { theme } from 'antd';
2
2
  /**
3
3
  * Custom theme algorithm that restores the primary color
4
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.7",
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
+ }