diefra_ecm_ui 1.0.0
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/README.md +138 -0
- package/dist/components/Attachment/index.d.ts +13 -0
- package/dist/components/Attachment/useFluigAttachment.d.ts +4 -0
- package/dist/components/Checkbox/index.d.ts +16 -0
- package/dist/components/DatePicker/index.d.ts +14 -0
- package/dist/components/Input/index.d.ts +17 -0
- package/dist/components/Modal/index.d.ts +12 -0
- package/dist/components/RadioBtn/index.d.ts +24 -0
- package/dist/components/Select/index.d.ts +26 -0
- package/dist/components/SideBar/index.d.ts +26 -0
- package/dist/components/SimpleTable/index.d.ts +34 -0
- package/dist/components/SimpleTable/useSimpleTable.d.ts +36 -0
- package/dist/components/StatusBadge/index.d.ts +17 -0
- package/dist/components/TextArea/index.d.ts +15 -0
- package/dist/components/index.d.ts +11 -0
- package/dist/diefra-logo-green.png +0 -0
- package/dist/diefra-logo-white.png +0 -0
- package/dist/diefra-logo.png +0 -0
- package/dist/fluig-ui.css +1 -0
- package/dist/index.cjs +59 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1540 -0
- package/dist/utils/index.d.ts +1 -0
- package/package.json +66 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function useClickOutside(callback: () => void): import('../../node_modules/react').RefObject<HTMLDivElement | null>;
|
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "diefra_ecm_ui",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "./dist/index.cjs",
|
|
9
|
+
"module": "./dist/index.js",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/index.js",
|
|
15
|
+
"require": "./dist/index.cjs"
|
|
16
|
+
},
|
|
17
|
+
"./style": "./dist/fluig-ui.css"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"start": "vite",
|
|
24
|
+
"dev": "vite build --watch",
|
|
25
|
+
"build": "vite build && tsc",
|
|
26
|
+
"fluig:build": "cross-env BUILD_TARGET=widget fluig-wcm-build",
|
|
27
|
+
"lint": "eslint ."
|
|
28
|
+
},
|
|
29
|
+
"peerDependencies": {
|
|
30
|
+
"@fluig-kit/core": "^1.0.5",
|
|
31
|
+
"@fluig-kit/ecm": "^1.0.10",
|
|
32
|
+
"date-fns": "^2.0.0 || ^3.0.0 || ^4.0.0",
|
|
33
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
34
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
35
|
+
"react-hook-form": "^7.0.0"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"lucide-react": "^0.575.0",
|
|
39
|
+
"shiki": "^3.21.0",
|
|
40
|
+
"@fluig-kit/wcm": "1.0.4",
|
|
41
|
+
"clsx": "^2.1.1"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@eslint/js": "^9.39.1",
|
|
45
|
+
"@fluig-kit/core": "^1.0.5",
|
|
46
|
+
"@fluig-kit/ecm": "^1.0.10",
|
|
47
|
+
"@types/node": "^24.10.1",
|
|
48
|
+
"@types/react": "^19.2.7",
|
|
49
|
+
"@types/react-dom": "^19.2.3",
|
|
50
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
51
|
+
"cross-env": "^7.0.3",
|
|
52
|
+
"date-fns": "^4.1.0",
|
|
53
|
+
"eslint": "^9.39.1",
|
|
54
|
+
"globals": "^16.5.0",
|
|
55
|
+
"prop-types": "^15.8.1",
|
|
56
|
+
"react": "^19.2.0",
|
|
57
|
+
"react-datepicker": "^7.0.0",
|
|
58
|
+
"react-dom": "^19.2.0",
|
|
59
|
+
"react-hook-form": "^7.71.1",
|
|
60
|
+
"react-imask": "^7.0.0",
|
|
61
|
+
"typescript": "~5.9.3",
|
|
62
|
+
"typescript-eslint": "^8.48.0",
|
|
63
|
+
"vite": "^6.0.0",
|
|
64
|
+
"vite-plugin-dts": "^3.0.0"
|
|
65
|
+
}
|
|
66
|
+
}
|