@iblai/web-containers 0.0.1
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 +5 -0
- package/dist/components/advance-pagination.d.ts +8 -0
- package/dist/components/hooks/use-toast.d.ts +44 -0
- package/dist/components/index.d.ts +3 -0
- package/dist/components/profile/admin.d.ts +4 -0
- package/dist/components/profile/index.d.ts +7 -0
- package/dist/components/profile/invite-user.d.ts +5 -0
- package/dist/components/profile/invited-users.d.ts +4 -0
- package/dist/components/profile/security.d.ts +3 -0
- package/dist/components/profile/use-profile.d.ts +23 -0
- package/dist/components/spinner/index.d.ts +6 -0
- package/dist/components/ui/avatar.d.ts +13 -0
- package/dist/components/ui/badge.d.ts +9 -0
- package/dist/components/ui/button.d.ts +11 -0
- package/dist/components/ui/checkbox.d.ts +4 -0
- package/dist/components/ui/dialog.d.ts +19 -0
- package/dist/components/ui/input.d.ts +3 -0
- package/dist/components/ui/label.d.ts +5 -0
- package/dist/components/ui/pagination.d.ts +28 -0
- package/dist/components/ui/select.d.ts +13 -0
- package/dist/components/ui/switch.d.ts +4 -0
- package/dist/components/ui/table.d.ts +10 -0
- package/dist/components/ui/textarea.d.ts +3 -0
- package/dist/components/ui/toast.d.ts +15 -0
- package/dist/components/ui/toaster.d.ts +15 -0
- package/dist/components/ui/use-toast.d.ts +15 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/use-iframe-message-handler.d.ts +7 -0
- package/dist/index.css +128 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.esm.css +128 -0
- package/dist/index.esm.js +14201 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.js +14224 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/utils.d.ts +2 -0
- package/dist/utils.d.ts +1 -0
- package/package.json +83 -0
package/dist/utils.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const getUserName: () => string;
|
package/package.json
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@iblai/web-containers",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "ibl web containers",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.esm.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "rollup -c",
|
|
13
|
+
"test": "jest",
|
|
14
|
+
"test:watch": "jest --watch",
|
|
15
|
+
"test:coverage": "jest --coverage",
|
|
16
|
+
"prepare": "husky",
|
|
17
|
+
"format": "prettier --write .",
|
|
18
|
+
"format:check": "prettier --check .",
|
|
19
|
+
"lint": "eslint --fix",
|
|
20
|
+
"lint:check": "eslint"
|
|
21
|
+
},
|
|
22
|
+
"keywords": [
|
|
23
|
+
"web"
|
|
24
|
+
],
|
|
25
|
+
"author": "iblai",
|
|
26
|
+
"license": "ISC",
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@rollup/plugin-commonjs": "25.0.8",
|
|
29
|
+
"@rollup/plugin-node-resolve": "15.3.1",
|
|
30
|
+
"@rollup/plugin-typescript": "11.1.6",
|
|
31
|
+
"@testing-library/jest-dom": "6.6.3",
|
|
32
|
+
"@testing-library/react": "16.3.0",
|
|
33
|
+
"@types/jest": "29.5.14",
|
|
34
|
+
"@types/react": "19.1.1",
|
|
35
|
+
"@typescript-eslint/eslint-plugin": "8.29.1",
|
|
36
|
+
"@typescript-eslint/parser": "8.29.1",
|
|
37
|
+
"eslint": "9.24.0",
|
|
38
|
+
"eslint-config-prettier": "10.1.2",
|
|
39
|
+
"husky": "9.1.7",
|
|
40
|
+
"jest": "29.7.0",
|
|
41
|
+
"jest-environment-jsdom": "29.7.0",
|
|
42
|
+
"prettier": "3.5.3",
|
|
43
|
+
"rollup": "4.40.0",
|
|
44
|
+
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
45
|
+
"rollup-plugin-strip-code": "^0.2.8",
|
|
46
|
+
"rollup-plugin-typescript2": "0.36.0",
|
|
47
|
+
"ts-jest": "29.3.2",
|
|
48
|
+
"tslib": "2.8.1",
|
|
49
|
+
"typescript": "5.8.3"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"@radix-ui/react-accordion": "1.2.8",
|
|
53
|
+
"@radix-ui/react-avatar": "1.1.7",
|
|
54
|
+
"@radix-ui/react-checkbox": "1.2.3",
|
|
55
|
+
"@radix-ui/react-dialog": "^1.1.13",
|
|
56
|
+
"@radix-ui/react-label": "^2.1.6",
|
|
57
|
+
"@radix-ui/react-select": "2.2.2",
|
|
58
|
+
"@radix-ui/react-switch": "^1.2.4",
|
|
59
|
+
"@radix-ui/react-toast": "^1.2.13",
|
|
60
|
+
"@radix-ui/react-tooltip": "1.2.4",
|
|
61
|
+
"@shadcn/ui": "0.0.4",
|
|
62
|
+
"@tanstack/react-form": "1.9.1",
|
|
63
|
+
"autoprefixer": "10.4.21",
|
|
64
|
+
"class-variance-authority": "0.7.1",
|
|
65
|
+
"clsx": "2.1.1",
|
|
66
|
+
"globals": "^16.1.0",
|
|
67
|
+
"lucide-react": "0.507.0",
|
|
68
|
+
"postcss": "8.5.3",
|
|
69
|
+
"rollup-plugin-postcss": "4.0.2",
|
|
70
|
+
"tailwind-merge": "3.2.0",
|
|
71
|
+
"tailwindcss": "4.1.4",
|
|
72
|
+
"tw-animate-css": "1.2.9",
|
|
73
|
+
"zod": "3.24.2"
|
|
74
|
+
},
|
|
75
|
+
"peerDependencies": {
|
|
76
|
+
"@iblai/data-layer": "0.0.3",
|
|
77
|
+
"@iblai/iblai-api": "3.40.0-ai-plus",
|
|
78
|
+
"@reduxjs/toolkit": "2.7.0",
|
|
79
|
+
"react": "19.1.0",
|
|
80
|
+
"react-dom": "19.1.0",
|
|
81
|
+
"react-redux": "9.2.0"
|
|
82
|
+
}
|
|
83
|
+
}
|