@flux-ui/application 3.0.0-next.48 → 3.0.0-next.51

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 (2) hide show
  1. package/README.md +25 -5
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,6 +1,18 @@
1
1
  # `@flux-ui/application`
2
2
 
3
- Contains Flux UI components for creating applications.
3
+ Application shell components for building full apps with [Flux UI](https://flux-ui.dev).
4
+
5
+ ## Highlights
6
+
7
+ - `FluxApplication` — root application shell.
8
+ - `FluxApplicationContent` — main content region.
9
+ - `FluxApplicationSection` — section wrapper.
10
+ - `FluxApplicationSide` — sidebar slot.
11
+ - `FluxApplicationTop` — top bar.
12
+ - `FluxApplicationHero` — hero section.
13
+ - `FluxApplicationMenu` (+ `…Account`, `…Context`, `…ContextStack`, `…Promo`, `…Toggle`) — menu primitives for the application chrome.
14
+
15
+ Integrates with `vue-router` for navigation-aware behavior.
4
16
 
5
17
  ## ⭐️ Prerequisites
6
18
 
@@ -9,8 +21,16 @@ Contains Flux UI components for creating applications.
9
21
 
10
22
  ## 🚀 Getting started
11
23
 
12
- 1. Make sure that the monorepo of Flux is used.
13
- 2. Run `bun install` in the root of the project.
14
- 3. Run `bun --cwd packages/application build` to build the project.
15
- 4. To link Flux Application globally, using Bun, run `bun link --cwd packages/application`.
24
+ 1. Make sure the Flux monorepo is checked out.
25
+ 2. Run `bun install` in the project root.
26
+ 3. Run `bun run --cwd packages/application build` to build the package (runs `vue-tsc` then `vite build`).
27
+ 4. To link Flux Application globally with Bun, run `bun link --cwd packages/application`.
16
28
  - In another project, use `link:@flux-ui/application` as the dependency version in `package.json`.
29
+
30
+ ## 📦 Sibling packages
31
+
32
+ - [`@flux-ui/components`](../components)
33
+ - [`@flux-ui/types`](../types)
34
+ - [`@flux-ui/internals`](../internals)
35
+ - [`@flux-ui/statistics`](../statistics)
36
+ - [`@flux-ui/dashboard`](../dashboard)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@flux-ui/application",
3
3
  "description": "Contains components to create applications with Flux UI.",
4
- "version": "3.0.0-next.48",
4
+ "version": "3.0.0-next.51",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "funding": "https://github.com/sponsors/basmilius",
@@ -51,15 +51,15 @@
51
51
  "typings": "./dist/index.d.ts",
52
52
  "sideEffects": false,
53
53
  "dependencies": {
54
- "@flux-ui/components": "3.0.0-next.48",
55
- "@flux-ui/internals": "3.0.0-next.48",
54
+ "@flux-ui/components": "3.0.0-next.51",
55
+ "@flux-ui/internals": "3.0.0-next.51",
56
56
  "clsx": "^2.1.1",
57
57
  "vue": "^3.6.0-beta.10",
58
58
  "vue-router": "^5.0.6"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@basmilius/vite-preset": "^3.19.0",
62
- "@flux-ui/types": "3.0.0-next.48",
62
+ "@flux-ui/types": "3.0.0-next.51",
63
63
  "@types/node": "^25.6.0",
64
64
  "@vitejs/plugin-vue": "^6.0.6",
65
65
  "@vue/tsconfig": "^0.9.1",