@absolutejs/absolute 0.19.0-beta.695 → 0.19.0-beta.697

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.
Files changed (39) hide show
  1. package/README.md +1 -1
  2. package/dist/angular/browser.js +48 -40
  3. package/dist/angular/browser.js.map +4 -4
  4. package/dist/angular/index.js +2308 -2232
  5. package/dist/angular/index.js.map +14 -13
  6. package/dist/angular/server.js +2279 -2203
  7. package/dist/angular/server.js.map +14 -14
  8. package/dist/build.js +42796 -6393
  9. package/dist/build.js.map +9 -20
  10. package/dist/cli/index.js +9 -2
  11. package/dist/core/streamingSlotRegistrar.js +24 -16
  12. package/dist/core/streamingSlotRegistrar.js.map +2 -2
  13. package/dist/core/streamingSlotRegistry.js +42 -29
  14. package/dist/core/streamingSlotRegistry.js.map +2 -2
  15. package/dist/index.js +42693 -5631
  16. package/dist/index.js.map +19 -24
  17. package/dist/react/components/index.js +24 -16
  18. package/dist/react/components/index.js.map +2 -2
  19. package/dist/react/index.js +922 -868
  20. package/dist/react/index.js.map +12 -12
  21. package/dist/react/server.js +903 -848
  22. package/dist/react/server.js.map +11 -11
  23. package/dist/src/build/compileTailwind.d.ts +3 -0
  24. package/dist/src/core/pageHandlers.d.ts +0 -2
  25. package/dist/src/core/ssrCache.d.ts +3 -0
  26. package/dist/svelte/index.js +963 -899
  27. package/dist/svelte/index.js.map +14 -13
  28. package/dist/svelte/server.js +777 -712
  29. package/dist/svelte/server.js.map +12 -12
  30. package/dist/types/build.d.ts +5 -4
  31. package/dist/types/index.d.ts +0 -1
  32. package/dist/types/island.d.ts +14 -11
  33. package/dist/vue/components/index.js +24 -16
  34. package/dist/vue/components/index.js.map +2 -2
  35. package/dist/vue/index.js +1040 -976
  36. package/dist/vue/index.js.map +12 -12
  37. package/dist/vue/server.js +908 -841
  38. package/dist/vue/server.js.map +11 -11
  39. package/package.json +16 -8
package/package.json CHANGED
@@ -20,11 +20,11 @@
20
20
  "@eslint/js": "^10.0.1",
21
21
  "@happy-dom/global-registrator": "^20.8.3",
22
22
  "@stylistic/eslint-plugin": "^5.10.0",
23
- "@tailwindcss/cli": "4.1.7",
24
23
  "@types/bun": "1.3.9",
25
24
  "@types/react": "19.2.0",
26
25
  "@types/react-dom": "19.2.0",
27
26
  "autoprefixer": "10.4.21",
27
+ "bun-plugin-tailwind": "^0.1.2",
28
28
  "elysia": "1.4.18",
29
29
  "elysia-scoped-state": "0.1.1",
30
30
  "eslint": "10.0.3",
@@ -219,12 +219,12 @@
219
219
  "main": "./dist/index.js",
220
220
  "name": "@absolutejs/absolute",
221
221
  "optionalDependencies": {
222
- "@absolutejs/native-darwin-arm64": "0.19.0-beta.695",
223
- "@absolutejs/native-darwin-x64": "0.19.0-beta.695",
224
- "@absolutejs/native-linux-arm64": "0.19.0-beta.695",
225
- "@absolutejs/native-linux-x64": "0.19.0-beta.695",
226
- "@absolutejs/native-windows-arm64": "0.19.0-beta.695",
227
- "@absolutejs/native-windows-x64": "0.19.0-beta.695"
222
+ "@absolutejs/native-darwin-arm64": "0.19.0-beta.697",
223
+ "@absolutejs/native-darwin-x64": "0.19.0-beta.697",
224
+ "@absolutejs/native-linux-arm64": "0.19.0-beta.697",
225
+ "@absolutejs/native-linux-x64": "0.19.0-beta.697",
226
+ "@absolutejs/native-windows-arm64": "0.19.0-beta.697",
227
+ "@absolutejs/native-windows-x64": "0.19.0-beta.697"
228
228
  },
229
229
  "overrides": {
230
230
  "@typescript-eslint/utils": "8.56.1"
@@ -236,6 +236,7 @@
236
236
  "@angular/platform-browser": "^21.0.0",
237
237
  "@angular/platform-server": "^21.0.0",
238
238
  "@angular/ssr": "^21.0.0",
239
+ "bun-plugin-tailwind": "^0.1.2",
239
240
  "elysia": "^1.4.0",
240
241
  "less": "^4.6.0",
241
242
  "postcss": "^8.5.0",
@@ -246,6 +247,7 @@
246
247
  "sharp": ">=0.33.0",
247
248
  "stylus": "^0.64.0",
248
249
  "svelte": "^5.35.2",
250
+ "tailwindcss": "^4.1.0",
249
251
  "typescript": "^5.9.3",
250
252
  "vue": "^3.5.27",
251
253
  "zone.js": "^0.15.0"
@@ -269,6 +271,9 @@
269
271
  "@angular/ssr": {
270
272
  "optional": true
271
273
  },
274
+ "bun-plugin-tailwind": {
275
+ "optional": true
276
+ },
272
277
  "less": {
273
278
  "optional": true
274
279
  },
@@ -296,6 +301,9 @@
296
301
  "svelte": {
297
302
  "optional": true
298
303
  },
304
+ "tailwindcss": {
305
+ "optional": true
306
+ },
299
307
  "typescript": {
300
308
  "optional": true
301
309
  },
@@ -325,5 +333,5 @@
325
333
  "typecheck": "bun run src/cli/index.ts typecheck --config example/absolute.config.ts"
326
334
  },
327
335
  "types": "./dist/src/index.d.ts",
328
- "version": "0.19.0-beta.695"
336
+ "version": "0.19.0-beta.697"
329
337
  }