@astrake/lumora-ui 0.7.2 → 0.7.4
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/CHANGELOG.md +50 -0
- package/README.md +6 -10
- package/package.json +15 -3
- package/scripts/postinstall.mjs +35 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,56 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## [0.7.4] — 2026-05-30
|
|
8
|
+
|
|
9
|
+
### Maintenance
|
|
10
|
+
|
|
11
|
+
- overhaul agentic infrastructure for fail-safe development (`3b081cd`)
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## [0.7.3] — 2026-05-23
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
|
|
19
|
+
- update shared skins for select, forms, timeline, calendar, and planner (`10cf2ba`)
|
|
20
|
+
- extend LuCalendar with mini size and showEventLabels prop (`41462de`)
|
|
21
|
+
- add LuPlanner weekly scheduling component (`759cc1f`)
|
|
22
|
+
- redesign LuTimeline with compact, numbered, and status variants (`ed6ff6c`)
|
|
23
|
+
- enhance LuDataGrid with sorting, select-all, and local search/filter (`8374caf`)
|
|
24
|
+
- overhaul LuCheckbox, LuRadio, LuSwitch with improved skins and tri-state switch (`2248907`)
|
|
25
|
+
- redesign LuSelect with search, groups, and chip multi-select (`b6c8d4f`)
|
|
26
|
+
- add LuToast, LuChip, LuAccordion (`f85b57e`)
|
|
27
|
+
- add LuDrawer, LuList, LuPopover, LuBottomSheet; integrate floating-ui (`04fd13b`)
|
|
28
|
+
- complete v0.3.0 to v0.5.0 roadmap (`14ec1c8`)
|
|
29
|
+
|
|
30
|
+
### Fixed
|
|
31
|
+
|
|
32
|
+
- restore LuThemeSwitch recipe (`35f5988`)
|
|
33
|
+
- repair LuFormWizard step navigation and layout (`c8a5ba9`)
|
|
34
|
+
- resolve remaining headless violations and strengthen tests (`d4f8e25`)
|
|
35
|
+
|
|
36
|
+
### Changed
|
|
37
|
+
|
|
38
|
+
- restructure navigation into functional categories (`c2575d6`)
|
|
39
|
+
- remove domain-specific components from core exports (`1310993`)
|
|
40
|
+
|
|
41
|
+
### Documentation
|
|
42
|
+
|
|
43
|
+
- add LuCodeBlock documentation page (`02a6f77`)
|
|
44
|
+
- integrate missing v0.5.0 components and fix charts renderer error (`ffbf80d`)
|
|
45
|
+
|
|
46
|
+
### Maintenance
|
|
47
|
+
|
|
48
|
+
- bump version to 0.7.2 (`b4ea3c4`)
|
|
49
|
+
- bump version to 0.7.1 (`754ee2b`)
|
|
50
|
+
- bump version to 0.7.0 (`0fe5c37`)
|
|
51
|
+
- bump version to 0.6.0 (`2e62243`)
|
|
52
|
+
- bump version to 0.5.0 (`18b82f6`)
|
|
53
|
+
|
|
54
|
+
|
|
5
55
|
---
|
|
6
56
|
|
|
7
57
|
## [0.7.2] — 2026-05-23
|
package/README.md
CHANGED
|
@@ -30,18 +30,14 @@
|
|
|
30
30
|
## Install
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
bun add @astrake/lumora-ui
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
pnpm add @astrake/lumora-ui
|
|
33
|
+
bun add @astrake/lumora-ui vue@^3.5.0 tailwindcss @tailwindcss/vite \
|
|
34
|
+
echarts vue-echarts \
|
|
35
|
+
@tiptap/vue-3 @tiptap/starter-kit @tiptap/extension-placeholder \
|
|
36
|
+
vue-draggable-plus
|
|
38
37
|
```
|
|
39
38
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
```bash
|
|
43
|
-
bun add vue@^3.5.0
|
|
44
|
-
```
|
|
39
|
+
> The `postinstall` script will print this command automatically after
|
|
40
|
+
> `bun add @astrake/lumora-ui`.
|
|
45
41
|
|
|
46
42
|
---
|
|
47
43
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astrake/lumora-ui",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.4",
|
|
4
4
|
"description": "Headless Vue 3 component framework for three surface targets — Mobile, Desktop, and Embedded — with a unified --lu-* design token system.",
|
|
5
5
|
"author": "Anuvab Chakraborty (https://github.com/madlybong)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -72,6 +72,7 @@
|
|
|
72
72
|
"files": [
|
|
73
73
|
"dist",
|
|
74
74
|
"src/lumora.css",
|
|
75
|
+
"scripts/postinstall.mjs",
|
|
75
76
|
"README.md",
|
|
76
77
|
"CHANGELOG.md"
|
|
77
78
|
],
|
|
@@ -80,11 +81,22 @@
|
|
|
80
81
|
"postpack": "bun -e \"import { unlinkSync } from 'fs'; try { unlinkSync('README.md') } catch(e){} try { unlinkSync('CHANGELOG.md') } catch(e){}\"",
|
|
81
82
|
"build:types": "bun -e \"import { rmSync } from 'node:fs'; rmSync('dist', { recursive: true, force: true })\" && bun run vue-tsc -p tsconfig.build.json",
|
|
82
83
|
"build": "bun -e \"import { rmSync } from 'node:fs'; rmSync('dist', { recursive: true, force: true })\" && bun run vue-tsc -p tsconfig.build.json && bun run ../../node_modules/vite/bin/vite.js build -c vite.config.ts",
|
|
83
|
-
"check": "vue-tsc -p ./tsconfig.json"
|
|
84
|
+
"check": "vue-tsc -p ./tsconfig.json",
|
|
85
|
+
"postinstall": "node scripts/postinstall.mjs"
|
|
84
86
|
},
|
|
85
87
|
"peerDependencies": {
|
|
88
|
+
"vue": "^3.5.0",
|
|
86
89
|
"tailwindcss": "^4.0.0",
|
|
87
|
-
"
|
|
90
|
+
"echarts": "^5.4.0",
|
|
91
|
+
"vue-echarts": "^7.0.0",
|
|
92
|
+
"@tiptap/vue-3": "^3.0.0",
|
|
93
|
+
"@tiptap/starter-kit": "^3.0.0",
|
|
94
|
+
"@tiptap/extension-placeholder": "^3.0.0",
|
|
95
|
+
"vue-draggable-plus": "^0.6.0"
|
|
96
|
+
},
|
|
97
|
+
"engines": {
|
|
98
|
+
"node": ">=18.0.0",
|
|
99
|
+
"bun": ">=1.0.0"
|
|
88
100
|
},
|
|
89
101
|
"dependencies": {
|
|
90
102
|
"@floating-ui/dom": "^1.7.6",
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
// @astrake/lumora-ui — postinstall peer dependency guide
|
|
2
|
+
// Skips itself when running inside the LumoraUI monorepo (development).
|
|
3
|
+
|
|
4
|
+
import { existsSync } from 'node:fs'
|
|
5
|
+
import { resolve, dirname } from 'node:path'
|
|
6
|
+
import { fileURLToPath } from 'node:url'
|
|
7
|
+
|
|
8
|
+
const __dirname = dirname(fileURLToPath(import.meta.url))
|
|
9
|
+
|
|
10
|
+
// Heuristic: ../../packages/core exists only when inside the monorepo workspace
|
|
11
|
+
const isMonorepo =
|
|
12
|
+
existsSync(resolve(__dirname, '../../packages/core')) &&
|
|
13
|
+
existsSync(resolve(__dirname, '../../bun.lock'))
|
|
14
|
+
|
|
15
|
+
if (isMonorepo) process.exit(0)
|
|
16
|
+
|
|
17
|
+
const b = '\x1b[1m'
|
|
18
|
+
const c = '\x1b[36m'
|
|
19
|
+
const r = '\x1b[0m'
|
|
20
|
+
const d = '\x1b[2m'
|
|
21
|
+
|
|
22
|
+
console.log(`
|
|
23
|
+
${b}${c}╔═══════════════════════════════════════════════════════════╗
|
|
24
|
+
║ @astrake/lumora-ui — Install peer deps ║
|
|
25
|
+
╚═══════════════════════════════════════════════════════════╝${r}
|
|
26
|
+
|
|
27
|
+
Run this to install all required peer dependencies:
|
|
28
|
+
|
|
29
|
+
${c} bun add vue@^3.5.0 tailwindcss @tailwindcss/vite \\
|
|
30
|
+
echarts vue-echarts \\
|
|
31
|
+
@tiptap/vue-3 @tiptap/starter-kit @tiptap/extension-placeholder \\
|
|
32
|
+
vue-draggable-plus${r}
|
|
33
|
+
|
|
34
|
+
${d}Docs: https://ui.lumora.astrake.com/docs/setup${r}
|
|
35
|
+
`)
|