@iblai/web-containers 0.0.6 → 0.2.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/dist/components/hooks/use-toast.d.ts +1 -1
- package/dist/components/index.d.ts +2 -0
- package/dist/components/loader.d.ts +1 -0
- package/dist/components/modals/user-profile-modal.d.ts +14 -0
- package/dist/components/profile/index.d.ts +5 -1
- package/dist/components/profile/security.d.ts +1 -1
- package/dist/components/profile/use-profile.d.ts +1 -1
- package/dist/components/ui/card.d.ts +8 -0
- package/dist/components/ui/pagination.d.ts +1 -1
- package/dist/components/ui/separator.d.ts +4 -0
- package/dist/components/ui/sonner.d.ts +4 -0
- package/dist/components/version.d.ts +6 -0
- package/dist/data-layer/src/config.d.ts +7 -0
- package/dist/data-layer/src/constants.d.ts +30 -0
- package/dist/data-layer/src/core/index.d.ts +4 -0
- package/dist/data-layer/src/features/analytics/api-slice.d.ts +1600 -0
- package/dist/data-layer/src/features/analytics/constants.d.ts +66 -0
- package/dist/data-layer/src/features/analytics/types.d.ts +100 -0
- package/dist/data-layer/src/features/api-keys/api-slice.d.ts +665 -0
- package/dist/data-layer/src/features/apps/api-slice.d.ts +683 -0
- package/dist/data-layer/src/features/auth/api-slice.d.ts +137 -0
- package/dist/data-layer/src/features/auth/constants.d.ts +8 -0
- package/dist/data-layer/src/features/auth/types.d.ts +13 -0
- package/dist/data-layer/src/features/billing/api-slice.d.ts +349 -0
- package/dist/data-layer/src/features/career/api-slice.d.ts +687 -0
- package/dist/data-layer/src/features/catalog/api-slice.d.ts +6602 -0
- package/dist/data-layer/src/features/chat/api-slice.d.ts +1832 -0
- package/dist/data-layer/src/features/chat-history/api-slice.d.ts +1386 -0
- package/dist/data-layer/src/features/constants.d.ts +3 -0
- package/dist/data-layer/src/features/core/api-slice.d.ts +653 -0
- package/dist/data-layer/src/features/core/constants.d.ts +4 -0
- package/dist/data-layer/src/features/credentials/api-slice.d.ts +2129 -0
- package/dist/data-layer/src/features/credentials/constants.d.ts +28 -0
- package/dist/data-layer/src/features/credentials/custom-api-slice.d.ts +1284 -0
- package/dist/data-layer/src/features/credentials/types.d.ts +16 -0
- package/dist/data-layer/src/features/datasets/api-slice.d.ts +576 -0
- package/dist/data-layer/src/features/llms/api-slice.d.ts +333 -0
- package/dist/data-layer/src/features/mentor/api-slice.d.ts +4298 -0
- package/dist/data-layer/src/features/mentor/constants.d.ts +31 -0
- package/dist/data-layer/src/features/mentor/custom-api-slice.d.ts +268 -0
- package/dist/data-layer/src/features/mentor/types.d.ts +38 -0
- package/dist/data-layer/src/features/mentor-categories/api-slice.d.ts +311 -0
- package/dist/data-layer/src/features/notifications/api-slice.d.ts +946 -0
- package/dist/data-layer/src/features/per-learner/api-slice.d.ts +1213 -0
- package/dist/data-layer/src/features/platform/api-slice.d.ts +1124 -0
- package/dist/data-layer/src/features/prompts/api-slice.d.ts +2276 -0
- package/dist/data-layer/src/features/search/api-slice.d.ts +1939 -0
- package/dist/data-layer/src/features/sessions/api-slice.d.ts +705 -0
- package/dist/data-layer/src/features/skills/api-slice.d.ts +1235 -0
- package/dist/data-layer/src/features/stripe/api-slice.d.ts +620 -0
- package/dist/data-layer/src/features/stripe/constants.d.ts +15 -0
- package/dist/data-layer/src/features/stripe/types.d.ts +9 -0
- package/dist/data-layer/src/features/tenant/api-slice.d.ts +759 -0
- package/dist/data-layer/src/features/tenant/constants.d.ts +11 -0
- package/dist/data-layer/src/features/tenant/types.d.ts +18 -0
- package/dist/data-layer/src/features/tenant-logo/api-slice.d.ts +349 -0
- package/dist/data-layer/src/features/tenant-logo/constants.d.ts +24 -0
- package/dist/data-layer/src/features/tools/api-slice.d.ts +333 -0
- package/dist/data-layer/src/features/training-documents/api-slice.d.ts +922 -0
- package/dist/data-layer/src/features/user/api-slice.d.ts +1703 -0
- package/dist/data-layer/src/features/user/constants.d.ts +40 -0
- package/dist/data-layer/src/features/user/types.d.ts +107 -0
- package/dist/data-layer/src/features/user-invitations/api-slice.d.ts +718 -0
- package/dist/data-layer/src/features/utils.d.ts +66 -0
- package/dist/data-layer/src/index.d.ts +47 -0
- package/dist/data-layer/src/reducers/index.d.ts +2 -0
- package/dist/data-layer/src/reducers/mentor.d.ts +2 -0
- package/dist/data-layer/src/reducers/skills.d.ts +1148 -0
- package/dist/data-layer/src/services/StorageService.d.ts +5 -0
- package/dist/data-layer/src/utils/index.d.ts +2 -0
- package/dist/index.esm.js +23491 -2086
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +23569 -2157
- package/dist/index.js.map +1 -1
- package/dist/package.json +98 -0
- package/dist/web-containers/src/components/advance-pagination.d.ts +8 -0
- package/dist/web-containers/src/components/error/client-error-page.d.ts +10 -0
- package/dist/web-containers/src/components/error/error-page.d.ts +18 -0
- package/dist/web-containers/src/components/hooks/use-copy-to-clipboard.d.ts +8 -0
- package/dist/web-containers/src/components/hooks/use-toast.d.ts +44 -0
- package/dist/web-containers/src/components/index.d.ts +13 -0
- package/dist/web-containers/src/components/loader.d.ts +1 -0
- package/dist/web-containers/src/components/modals/user-profile-modal.d.ts +23 -0
- package/dist/web-containers/src/components/notifications/index.d.ts +1 -0
- package/dist/web-containers/src/components/notifications/notification-dropdown.d.ts +6 -0
- package/dist/web-containers/src/components/profile/account.d.ts +19 -0
- package/dist/web-containers/src/components/profile/admin.d.ts +4 -0
- package/dist/web-containers/src/components/profile/advanced.d.ts +5 -0
- package/dist/web-containers/src/components/profile/billing.d.ts +5 -0
- package/dist/web-containers/src/components/profile/index.d.ts +16 -0
- package/dist/web-containers/src/components/profile/integration/api-tab/api-key-modal.d.ts +7 -0
- package/dist/web-containers/src/components/profile/integration/api-tab/constants.d.ts +2 -0
- package/dist/web-containers/src/components/profile/integration/api-tab/create-api-modal.d.ts +8 -0
- package/dist/web-containers/src/components/profile/integration/api-tab/delete-api-modal.d.ts +11 -0
- package/dist/web-containers/src/components/profile/integration/api-tab/integration-autogenerated-table.d.ts +3 -0
- package/dist/web-containers/src/components/profile/integration/data-sources-tab/create-data-source-modal.d.ts +8 -0
- package/dist/web-containers/src/components/profile/integration/data-sources-tab/integration-data-sources-tab.d.ts +3 -0
- package/dist/web-containers/src/components/profile/integration/index.d.ts +4 -0
- package/dist/web-containers/src/components/profile/integration/llms-tab/create-llm-modal.d.ts +8 -0
- package/dist/web-containers/src/components/profile/integration/llms-tab/integration-llms-tab.d.ts +3 -0
- package/dist/web-containers/src/components/profile/invite-user.d.ts +5 -0
- package/dist/web-containers/src/components/profile/invited-users.d.ts +4 -0
- package/dist/web-containers/src/components/profile/organization.d.ts +4 -0
- package/dist/web-containers/src/components/profile/security.d.ts +3 -0
- package/dist/web-containers/src/components/profile/use-profile.d.ts +44 -0
- package/dist/web-containers/src/components/spinner/index.d.ts +6 -0
- package/dist/web-containers/src/components/tenant-switch/index.d.ts +11 -0
- package/dist/web-containers/src/components/tenant-switch/types.d.ts +6 -0
- package/dist/web-containers/src/components/top-banner/index.d.ts +3 -0
- package/dist/web-containers/src/components/top-banner/types.d.ts +10 -0
- package/dist/web-containers/src/components/top-banner/use-top-banner.d.ts +11 -0
- package/dist/web-containers/src/components/ui/avatar.d.ts +13 -0
- package/dist/web-containers/src/components/ui/badge.d.ts +9 -0
- package/dist/web-containers/src/components/ui/button.d.ts +11 -0
- package/dist/web-containers/src/components/ui/calendar.d.ts +8 -0
- package/dist/web-containers/src/components/ui/card.d.ts +8 -0
- package/dist/web-containers/src/components/ui/checkbox.d.ts +4 -0
- package/dist/web-containers/src/components/ui/dialog.d.ts +19 -0
- package/dist/web-containers/src/components/ui/dropdown-menu.d.ts +25 -0
- package/dist/web-containers/src/components/ui/input.d.ts +3 -0
- package/dist/web-containers/src/components/ui/label.d.ts +5 -0
- package/dist/web-containers/src/components/ui/pagination.d.ts +28 -0
- package/dist/web-containers/src/components/ui/popover.d.ts +6 -0
- package/dist/web-containers/src/components/ui/select.d.ts +13 -0
- package/dist/web-containers/src/components/ui/separator.d.ts +4 -0
- package/dist/web-containers/src/components/ui/skeleton.d.ts +2 -0
- package/dist/web-containers/src/components/ui/sonner.d.ts +4 -0
- package/dist/web-containers/src/components/ui/switch.d.ts +4 -0
- package/dist/web-containers/src/components/ui/table.d.ts +10 -0
- package/dist/web-containers/src/components/ui/tabs.d.ts +7 -0
- package/dist/web-containers/src/components/ui/textarea.d.ts +3 -0
- package/dist/web-containers/src/components/ui/toast.d.ts +15 -0
- package/dist/web-containers/src/components/ui/toaster.d.ts +15 -0
- package/dist/web-containers/src/components/ui/tooltip.d.ts +7 -0
- package/dist/web-containers/src/components/ui/use-toast.d.ts +15 -0
- package/dist/web-containers/src/components/user-profile-dropdown/index.d.ts +52 -0
- package/dist/web-containers/src/components/version.d.ts +6 -0
- package/dist/web-containers/src/hooks/index.d.ts +1 -0
- package/dist/web-containers/src/hooks/use-iframe-message-handler.d.ts +8 -0
- package/dist/web-containers/src/index.d.ts +2 -0
- package/dist/web-containers/src/lib/error-utils.d.ts +15 -0
- package/dist/web-containers/src/lib/utils.d.ts +2 -0
- package/dist/web-containers/src/utils.d.ts +1 -0
- package/dist/web-utils/src/features/chat/slice.d.ts +91 -0
- package/dist/web-utils/src/features/index.d.ts +1 -0
- package/dist/web-utils/src/hooks/chat/use-advanced-chat.d.ts +48 -0
- package/dist/web-utils/src/hooks/chat/use-chat-v2.d.ts +56 -0
- package/dist/web-utils/src/hooks/chat/use-mentor-tools.d.ts +18 -0
- package/dist/web-utils/src/hooks/index.d.ts +15 -0
- package/dist/web-utils/src/hooks/profile/use-profile-image-upload.d.ts +13 -0
- package/dist/web-utils/src/hooks/profile/use-user-profile-update.d.ts +28 -0
- package/dist/web-utils/src/hooks/subscription/class-subscription-flow.d.ts +70 -0
- package/dist/web-utils/src/hooks/subscription/constants.d.ts +4 -0
- package/dist/web-utils/src/hooks/subscription/use-subscription-handler.d.ts +11 -0
- package/dist/web-utils/src/hooks/subscription-v2/class-subscription-flow.d.ts +77 -0
- package/dist/web-utils/src/hooks/subscription-v2/constants.d.ts +51 -0
- package/dist/web-utils/src/hooks/subscription-v2/use-external-pricing-plan.d.ts +7 -0
- package/dist/web-utils/src/hooks/subscription-v2/use-subscription-handler.d.ts +16 -0
- package/dist/web-utils/src/hooks/tenant-metadata/config-loader.d.ts +41 -0
- package/dist/web-utils/src/hooks/tenant-metadata/constants.d.ts +9 -0
- package/dist/web-utils/src/hooks/tenant-metadata/types.d.ts +9 -0
- package/dist/web-utils/src/hooks/tenant-metadata/use-tenant-metadata.d.ts +24 -0
- package/dist/web-utils/src/hooks/use-day-js.d.ts +7 -0
- package/dist/web-utils/src/hooks/use-mentor-settings.d.ts +21 -0
- package/dist/web-utils/src/index.d.ts +5 -0
- package/dist/web-utils/src/providers/auth-provider.d.ts +64 -0
- package/dist/web-utils/src/providers/index.d.ts +3 -0
- package/dist/web-utils/src/providers/mentor-provider.d.ts +40 -0
- package/dist/web-utils/src/providers/tenant-provider.d.ts +63 -0
- package/dist/web-utils/src/types/chat.d.ts +1 -0
- package/dist/web-utils/src/types/index.d.ts +55 -0
- package/dist/web-utils/src/types/subscription.d.ts +18 -0
- package/dist/web-utils/src/utils/constants.d.ts +37 -0
- package/dist/web-utils/src/utils/data/advanced-tab.d.ts +62 -0
- package/dist/web-utils/src/utils/helpers.d.ts +6 -0
- package/dist/web-utils/src/utils/index.d.ts +3 -0
- package/package.json +38 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iblai/web-containers",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "ibl web containers",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
@@ -8,17 +8,6 @@
|
|
|
8
8
|
"files": [
|
|
9
9
|
"dist"
|
|
10
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
11
|
"keywords": [
|
|
23
12
|
"web"
|
|
24
13
|
],
|
|
@@ -31,7 +20,9 @@
|
|
|
31
20
|
"@testing-library/jest-dom": "6.6.3",
|
|
32
21
|
"@testing-library/react": "16.3.0",
|
|
33
22
|
"@types/jest": "29.5.14",
|
|
34
|
-
"@types/
|
|
23
|
+
"@types/node": "^22.15.20",
|
|
24
|
+
"@types/react": "19.0.10",
|
|
25
|
+
"@types/react-gravatar": "^2.6.14",
|
|
35
26
|
"@typescript-eslint/eslint-plugin": "8.29.1",
|
|
36
27
|
"@typescript-eslint/parser": "8.29.1",
|
|
37
28
|
"autoprefixer": "^10.4.21",
|
|
@@ -56,28 +47,54 @@
|
|
|
56
47
|
"@radix-ui/react-accordion": "1.2.8",
|
|
57
48
|
"@radix-ui/react-avatar": "1.1.7",
|
|
58
49
|
"@radix-ui/react-checkbox": "1.2.3",
|
|
59
|
-
"@radix-ui/react-dialog": "^1.1.
|
|
50
|
+
"@radix-ui/react-dialog": "^1.1.7",
|
|
51
|
+
"@radix-ui/react-dropdown-menu": "2.1.7",
|
|
60
52
|
"@radix-ui/react-label": "^2.1.6",
|
|
61
|
-
"@radix-ui/react-
|
|
53
|
+
"@radix-ui/react-popover": "1.1.7",
|
|
54
|
+
"@radix-ui/react-select": "2.1.7",
|
|
55
|
+
"@radix-ui/react-separator": "1.1.4",
|
|
56
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
62
57
|
"@radix-ui/react-switch": "^1.2.4",
|
|
58
|
+
"@radix-ui/react-tabs": "1.1.4",
|
|
63
59
|
"@radix-ui/react-toast": "^1.2.13",
|
|
64
60
|
"@radix-ui/react-tooltip": "1.2.4",
|
|
65
61
|
"@shadcn/ui": "0.0.4",
|
|
66
62
|
"@tanstack/react-form": "1.11.2",
|
|
67
63
|
"class-variance-authority": "0.7.1",
|
|
68
64
|
"clsx": "2.1.1",
|
|
65
|
+
"date-fns": "4.1.0",
|
|
69
66
|
"globals": "^16.1.0",
|
|
70
67
|
"lucide-react": "0.507.0",
|
|
68
|
+
"next-themes": "^0.4.6",
|
|
69
|
+
"react-day-picker": "9.6.7",
|
|
70
|
+
"react-gravatar": "^2.6.3",
|
|
71
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
72
|
+
"sonner": "^2.0.3",
|
|
71
73
|
"tailwind-merge": "3.2.0",
|
|
72
74
|
"tw-animate-css": "1.2.9",
|
|
73
|
-
"zod": "3.24.2"
|
|
75
|
+
"zod": "3.24.2",
|
|
76
|
+
"@iblai/data-layer": "0.2.0",
|
|
77
|
+
"@iblai/web-utils": "0.2.0"
|
|
74
78
|
},
|
|
75
79
|
"peerDependencies": {
|
|
76
|
-
"@iblai/
|
|
77
|
-
"@iblai/iblai-api": "3.40.0-ai-plus",
|
|
80
|
+
"@iblai/iblai-api": "4.11.1-ai",
|
|
78
81
|
"@reduxjs/toolkit": "2.7.0",
|
|
79
|
-
"react": "19.
|
|
80
|
-
"react-dom": "19.
|
|
82
|
+
"react": "19.0.0",
|
|
83
|
+
"react-dom": "19.0.0",
|
|
81
84
|
"react-redux": "9.2.0"
|
|
85
|
+
},
|
|
86
|
+
"publishConfig": {
|
|
87
|
+
"access": "public",
|
|
88
|
+
"registry": "https://registry.npmjs.org/"
|
|
89
|
+
},
|
|
90
|
+
"scripts": {
|
|
91
|
+
"build": "rollup -c",
|
|
92
|
+
"test": "jest",
|
|
93
|
+
"test:watch": "jest --watch",
|
|
94
|
+
"test:coverage": "jest --coverage",
|
|
95
|
+
"format": "prettier --write .",
|
|
96
|
+
"format:check": "prettier --check .",
|
|
97
|
+
"lint": "eslint --fix",
|
|
98
|
+
"lint:check": "eslint"
|
|
82
99
|
}
|
|
83
|
-
}
|
|
100
|
+
}
|