@pol-studios/ui 1.0.0 → 1.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 +351 -0
- package/dist/auth/index.js +1 -1
- package/dist/components/chat-agent/index.js +1 -1
- package/dist/components/index.js +543 -648
- package/dist/feedback/index.js +1 -1
- package/dist/navbar/index.js +3 -3
- package/package.json +12 -18
package/dist/feedback/index.js
CHANGED
|
@@ -8838,7 +8838,7 @@ import { useToast } from "@pol-studios/hooks";
|
|
|
8838
8838
|
import { useInsert } from "@pol-studios/db";
|
|
8839
8839
|
import { useUpload, BUCKETS } from "@pol-studios/storage";
|
|
8840
8840
|
import { cn as cn19 } from "@pol-studios/utils";
|
|
8841
|
-
import { useAuth } from "@pol-studios/auth";
|
|
8841
|
+
import { useAuth } from "@pol-studios/db/auth";
|
|
8842
8842
|
import { jsx as jsx25, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
8843
8843
|
var SupportTicketButton = ({
|
|
8844
8844
|
className,
|
package/dist/navbar/index.js
CHANGED
|
@@ -43188,7 +43188,7 @@ import {
|
|
|
43188
43188
|
SystemInAppNotification,
|
|
43189
43189
|
useSupabase as useSupabase5
|
|
43190
43190
|
} from "@pol-studios/db";
|
|
43191
|
-
import { useSetupAuth } from "@pol-studios/auth";
|
|
43191
|
+
import { useSetupAuth } from "@pol-studios/db/auth";
|
|
43192
43192
|
import {
|
|
43193
43193
|
useDbRealtimeQuery as useDbRealtimeQuery2,
|
|
43194
43194
|
useDbMultiDelete as useDbMultiDelete2,
|
|
@@ -44394,7 +44394,7 @@ import { Link as Link5, useLocation as useLocation2 } from "@tanstack/react-rout
|
|
|
44394
44394
|
import { cn as cn31 } from "@pol-studios/utils";
|
|
44395
44395
|
import { isUsable as isUsable10 } from "@pol-studios/utils";
|
|
44396
44396
|
import { useDevice } from "@pol-studios/hooks";
|
|
44397
|
-
import { useAuth as useAuth2 } from "@pol-studios/auth";
|
|
44397
|
+
import { useAuth as useAuth2 } from "@pol-studios/db/auth";
|
|
44398
44398
|
import { Fragment as Fragment9, jsx as jsx59, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
44399
44399
|
var Logo = ({ className }) => {
|
|
44400
44400
|
return /* @__PURE__ */ jsx59(
|
|
@@ -44423,7 +44423,7 @@ var SidebarContext = createContext11(
|
|
|
44423
44423
|
|
|
44424
44424
|
// src/navbar/aceternity/side-bar-2.tsx
|
|
44425
44425
|
import { useSupabase as useSupabase6 } from "@pol-studios/db";
|
|
44426
|
-
import { useAuth as useAuth3 } from "@pol-studios/auth";
|
|
44426
|
+
import { useAuth as useAuth3 } from "@pol-studios/db/auth";
|
|
44427
44427
|
import { Link as Link6, useLocation as useLocation3 } from "@tanstack/react-router";
|
|
44428
44428
|
|
|
44429
44429
|
// src/navbar/aceternity/sidebar.config.tsx
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pol-studios/ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "UI components for POL applications",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"type": "module",
|
|
@@ -97,19 +97,12 @@
|
|
|
97
97
|
},
|
|
98
98
|
"./styles/globals.css": "./src/styles/globals.css"
|
|
99
99
|
},
|
|
100
|
-
"scripts": {
|
|
101
|
-
"build": "tsup",
|
|
102
|
-
"dev": "tsup --watch",
|
|
103
|
-
"typecheck": "tsc --noEmit",
|
|
104
|
-
"prepublishOnly": "pnpm build"
|
|
105
|
-
},
|
|
106
100
|
"publishConfig": {
|
|
107
101
|
"access": "public"
|
|
108
102
|
},
|
|
109
103
|
"peerDependencies": {
|
|
110
104
|
"react": "^18.0.0 || ^19.0.0",
|
|
111
105
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
112
|
-
"@pol-studios/auth": ">=1.0.0",
|
|
113
106
|
"@pol-studios/db": ">=1.0.0",
|
|
114
107
|
"@pol-studios/filters": ">=1.0.0",
|
|
115
108
|
"@pol-studios/hooks": ">=1.0.0",
|
|
@@ -137,9 +130,6 @@
|
|
|
137
130
|
"next-themes": {
|
|
138
131
|
"optional": true
|
|
139
132
|
},
|
|
140
|
-
"@pol-studios/auth": {
|
|
141
|
-
"optional": true
|
|
142
|
-
},
|
|
143
133
|
"@pol-studios/db": {
|
|
144
134
|
"optional": true
|
|
145
135
|
},
|
|
@@ -210,17 +200,21 @@
|
|
|
210
200
|
"zod": "^3.24.4"
|
|
211
201
|
},
|
|
212
202
|
"devDependencies": {
|
|
213
|
-
"@pol-studios/auth": "workspace:*",
|
|
214
|
-
"@pol-studios/db": "workspace:*",
|
|
215
|
-
"@pol-studios/filters": "workspace:*",
|
|
216
|
-
"@pol-studios/hooks": "workspace:*",
|
|
217
|
-
"@pol-studios/utils": "workspace:*",
|
|
218
203
|
"@types/react": "^19.0.0",
|
|
219
204
|
"@types/react-dom": "^19.0.0",
|
|
220
205
|
"shadcn": "^3.7.0",
|
|
221
206
|
"tailwindcss": "^3.4.17",
|
|
222
207
|
"tailwindcss-animate": "^1.0.7",
|
|
223
208
|
"tsup": "^8.0.0",
|
|
224
|
-
"typescript": "^5.7.2"
|
|
209
|
+
"typescript": "^5.7.2",
|
|
210
|
+
"@pol-studios/db": "1.0.1",
|
|
211
|
+
"@pol-studios/hooks": "1.0.1",
|
|
212
|
+
"@pol-studios/filters": "1.0.1",
|
|
213
|
+
"@pol-studios/utils": "1.0.1"
|
|
214
|
+
},
|
|
215
|
+
"scripts": {
|
|
216
|
+
"build": "tsup",
|
|
217
|
+
"dev": "tsup --watch",
|
|
218
|
+
"typecheck": "tsc --noEmit"
|
|
225
219
|
}
|
|
226
|
-
}
|
|
220
|
+
}
|