@djangocfg/ui-core 1.0.5 → 2.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@djangocfg/ui-core",
3
- "version": "1.0.5",
3
+ "version": "2.1.1",
4
4
  "description": "Pure React UI component library without Next.js dependencies - for Electron, Vite, CRA apps",
5
5
  "keywords": [
6
6
  "ui-components",
@@ -65,9 +65,12 @@
65
65
  "@radix-ui/react-collapsible": "^1.1.12",
66
66
  "@radix-ui/react-context-menu": "^2.2.16",
67
67
  "@radix-ui/react-dialog": "^1.1.15",
68
+ "@radix-ui/react-dropdown-menu": "^2.1.16",
68
69
  "@radix-ui/react-hover-card": "^1.1.15",
69
70
  "@radix-ui/react-icons": "^1.3.2",
70
71
  "@radix-ui/react-label": "^2.1.7",
72
+ "@radix-ui/react-menubar": "^1.1.16",
73
+ "@radix-ui/react-navigation-menu": "^1.2.14",
71
74
  "@radix-ui/react-popover": "^1.1.15",
72
75
  "@radix-ui/react-progress": "^1.1.7",
73
76
  "@radix-ui/react-radio-group": "^1.3.8",
@@ -99,10 +102,10 @@
99
102
  "vaul": "1.1.2"
100
103
  },
101
104
  "devDependencies": {
102
- "@djangocfg/typescript-config": "^1.4.47",
105
+ "@djangocfg/typescript-config": "^2.1.1",
103
106
  "@types/node": "^24.7.2",
104
- "@types/react": "^19.2.7",
105
- "@types/react-dom": "^19.2.3",
107
+ "@types/react": "^19.1.0",
108
+ "@types/react-dom": "^19.1.0",
106
109
  "typescript": "^5.9.3"
107
110
  },
108
111
  "publishConfig": {
@@ -1,11 +1,9 @@
1
1
  /**
2
- * Tailwind v4 Source Detection for UI Package
2
+ * Tailwind v4 Source Detection for UI-Core Package
3
3
  *
4
4
  * @source directive tells Tailwind v4 where to scan for utility classes.
5
5
  * In monorepo, this is critical because automatic detection may not work.
6
6
  *
7
- * "./" scans the entire UI package starting from this file's location.
7
+ * Scans all TypeScript files recursively from package root.
8
8
  */
9
- @source "../components";
10
- @source "../layouts";
11
- @source "../blocks";
9
+ @source "../**/*.{ts,tsx}";