@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.
- package/dist/Display/Card/DarkCard.Title.d.ts +0 -1
- package/dist/Display/Card/DarkCard.d.ts +1 -2
- package/dist/Display/Card/LightCard.Title.d.ts +0 -1
- package/dist/Display/Card/LightCard.d.ts +1 -2
- package/dist/Display/Card/index.d.ts +4 -4
- package/dist/Display/CodeBlock/CodeBlockCopy.d.ts +1 -2
- package/dist/Display/CodeBlock/CodeHeader.d.ts +1 -1
- package/dist/Display/CodeBlock/index.d.ts +1 -3
- package/dist/Display/CodeBlock/languages.d.ts +10 -11
- package/dist/Display/Collapse/Collapse.d.ts +2 -3
- package/dist/Display/Collapse/CollapseBase.d.ts +8 -9
- package/dist/Display/Collapse/CollapseContent.d.ts +4 -5
- package/dist/Display/Collapse/index.d.ts +6 -6
- package/dist/Display/Selector/SelectorItem.d.ts +1 -2
- package/dist/Display/Selector/SelectorSubItem.d.ts +1 -2
- package/dist/Display/Selector/index.d.ts +1 -1
- package/dist/Display/Selector/style.d.ts +8 -11
- package/dist/Display/index.d.ts +7 -7
- package/dist/Form/Buttons.d.ts +14 -29
- package/dist/Form/Form/Form.Item.d.ts +2 -3
- package/dist/Form/Form/Form.d.ts +1 -2
- package/dist/Form/Form/index.d.ts +3 -3
- package/dist/Form/HoverLabel.d.ts +2 -2
- package/dist/Form/Input/Input.Password.d.ts +3 -4
- package/dist/Form/Input/Input.Search.d.ts +4 -5
- package/dist/Form/Input/Input.TextArea.d.ts +4 -5
- package/dist/Form/Input/Input.d.ts +10 -11
- package/dist/Form/Input/index.d.ts +5 -5
- package/dist/Form/index.d.ts +7 -7
- package/dist/Layout/Main/MainSelector.d.ts +4 -5
- package/dist/Layout/Main/MainSettings.d.ts +8 -9
- package/dist/Layout/Main/index.d.ts +2 -3
- package/dist/Layout/Navbar/NavbarDropdown.d.ts +1 -2
- package/dist/Layout/Navbar/index.d.ts +1 -2
- package/dist/Layout/Navbar/style.d.ts +4 -5
- package/dist/Layout/index.d.ts +5 -5
- package/dist/Oauth/ErrorBoundary.d.ts +0 -1
- package/dist/Oauth/LoginContainer.d.ts +3 -3
- package/dist/Oauth/PageBackground.d.ts +1 -1
- package/dist/Oauth/index.d.ts +5 -5
- package/dist/index.cjs.js +3 -812
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +5 -5
- package/dist/index.es.js +1340 -26738
- package/dist/index.es.js.map +1 -1
- package/dist/util/index.d.ts +2 -2
- package/dist/util/useMessageApi.d.ts +2 -3
- package/dist/util/wfDarkAlgorithm.d.ts +1 -1
- package/package.json +69 -67
package/dist/util/index.d.ts
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export * from
|
2
|
-
export * from
|
1
|
+
export * from './wfDarkAlgorithm';
|
2
|
+
export * from './useMessageApi';
|
@@ -1,4 +1,3 @@
|
|
1
|
-
|
2
|
-
|
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;
|
package/package.json
CHANGED
@@ -1,67 +1,69 @@
|
|
1
|
-
{
|
2
|
-
"name": "@web-fuse/wf-components",
|
3
|
-
"version": "1.0.
|
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.
|
27
|
-
"@storybook/addon-interactions": "^8.
|
28
|
-
"@storybook/addon-links": "^8.
|
29
|
-
"@storybook/addon-themes": "^8.
|
30
|
-
"@storybook/blocks": "^8.
|
31
|
-
"@storybook/react": "^8.
|
32
|
-
"@storybook/react-vite": "^8.
|
33
|
-
"@storybook/test": "^8.
|
34
|
-
"@
|
35
|
-
"@types/react
|
36
|
-
"@types/react-
|
37
|
-
"@types/react-
|
38
|
-
"@
|
39
|
-
"@typescript-eslint/
|
40
|
-
"eslint": "^
|
41
|
-
"
|
42
|
-
"eslint
|
43
|
-
"
|
44
|
-
"
|
45
|
-
"
|
46
|
-
"
|
47
|
-
"vite
|
48
|
-
"vite-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
"
|
54
|
-
"react
|
55
|
-
"react-
|
56
|
-
"
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
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
|
+
}
|