@machinemetrics/mm-react-components 0.2.3-30 → 0.2.3-32
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 +1 -1
- package/dist/App.d.ts.map +1 -1
- package/dist/README.md +1 -1
- package/dist/components/shadcn/button.d.ts.map +1 -1
- package/dist/components/shadcn/calendar.d.ts +1 -1
- package/dist/components/shadcn/calendar.d.ts.map +1 -1
- package/dist/components/shadcn/form.d.ts +1 -1
- package/dist/components/shadcn/form.d.ts.map +1 -1
- package/dist/components/shadcn/select.d.ts.map +1 -1
- package/dist/components/ui/data-table/TableView.d.ts.map +1 -1
- package/dist/components/ui/data-table/cards/ResponsiveTable.d.ts.map +1 -1
- package/dist/components/ui/data-table/columnTypes/badgeColumn.d.ts.map +1 -1
- package/dist/components/ui/data-table/columnTypes/multiBadgeColumn.d.ts.map +1 -1
- package/dist/components/ui/data-table/columnTypes/numericColumn.d.ts.map +1 -1
- package/dist/components/ui/data-table/parts/SortableHeader.d.ts.map +1 -1
- package/dist/components/ui/data-table/useTableController.d.ts.map +1 -1
- package/dist/components/ui/slider.d.ts.map +1 -1
- package/dist/components/ui/table/Table.d.ts.map +1 -1
- package/dist/docs/GETTING_STARTED.md +1 -1
- package/dist/docs/TAILWIND_SETUP.md +5 -1
- package/dist/lib/fonts/inconsolata-latin-400-normal.7bb81ff1.woff +0 -0
- package/dist/lib/fonts/inconsolata-latin-400-normal.eb50e0cc.woff2 +0 -0
- package/dist/lib/fonts/inconsolata-latin-ext-400-normal.8c9bd94c.woff +0 -0
- package/dist/lib/fonts/inconsolata-latin-ext-400-normal.e91396bf.woff2 +0 -0
- package/dist/lib/fonts/inconsolata-vietnamese-400-normal.0fdec2a6.woff +0 -0
- package/dist/lib/fonts/inconsolata-vietnamese-400-normal.788ea873.woff2 +0 -0
- package/dist/lib/fonts/noto-sans-cyrillic-ext-wght-normal.ced7f40b.woff2 +0 -0
- package/dist/lib/fonts/noto-sans-cyrillic-wght-normal.56471747.woff2 +0 -0
- package/dist/lib/fonts/noto-sans-devanagari-wght-normal.90412b4c.woff2 +0 -0
- package/dist/lib/fonts/noto-sans-greek-ext-wght-normal.6a0bbd3e.woff2 +0 -0
- package/dist/lib/fonts/noto-sans-greek-wght-normal.dc06dc3b.woff2 +0 -0
- package/dist/lib/fonts/noto-sans-latin-ext-wght-normal.15bcee04.woff2 +0 -0
- package/dist/lib/fonts/noto-sans-latin-wght-normal.20625185.woff2 +0 -0
- package/dist/lib/fonts/noto-sans-vietnamese-wght-normal.d0a8e686.woff2 +0 -0
- package/dist/lib/mm-react-components.css +1 -1
- package/dist/mm-react-components.es.js +542 -45876
- package/dist/mm-react-components.es.js.map +1 -1
- package/dist/mm-react-components.umd.js +1 -88
- package/dist/mm-react-components.umd.js.map +1 -1
- package/dist/tailwind.base.config.js +1 -1
- package/dist/themes/carbide.css +3 -3
- package/docs/TAILWIND_SETUP.md +5 -1
- package/package.json +41 -38
package/dist/themes/carbide.css
CHANGED
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
/* --- Typography tokens (shadcn/ui reference) --- */
|
|
41
41
|
--font-sans:
|
|
42
42
|
ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
|
|
43
|
-
Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
|
|
43
|
+
Roboto, 'Helvetica Neue', Arial, 'Noto Sans Variable', sans-serif,
|
|
44
44
|
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
45
45
|
--font-mono:
|
|
46
46
|
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono',
|
|
@@ -152,9 +152,9 @@
|
|
|
152
152
|
|
|
153
153
|
/* Core Fonts */
|
|
154
154
|
--font-sans:
|
|
155
|
-
'Noto Sans', Inter, ui-sans-serif, system-ui, -apple-system,
|
|
155
|
+
'Noto Sans Variable', Inter, ui-sans-serif, system-ui, -apple-system,
|
|
156
156
|
BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
|
|
157
|
-
'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
|
|
157
|
+
'Noto Sans Variable', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
|
|
158
158
|
'Segoe UI Symbol', 'Noto Color Emoji';
|
|
159
159
|
--font-mono:
|
|
160
160
|
'Inconsolata', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
|
package/docs/TAILWIND_SETUP.md
CHANGED
|
@@ -328,8 +328,12 @@ The configuration includes a comprehensive color system:
|
|
|
328
328
|
## Typography
|
|
329
329
|
|
|
330
330
|
- **Sans Font**: Noto Sans (primary), Inter, system fonts
|
|
331
|
+
- Note: When using `/styles` export, Noto Sans is embedded via @fontsource
|
|
332
|
+
- When using `/themes/carbide`, import fonts separately or use Google Fonts CDN
|
|
331
333
|
- **Mono Font**: Inconsolata (primary), system monospace fonts
|
|
332
|
-
-
|
|
334
|
+
- Note: When using `/styles` export, Inconsolata is embedded via @fontsource
|
|
335
|
+
- **Font Weights**: Normal (400), Medium (500), Semibold (600)
|
|
336
|
+
- Note: Bold (700) is not used; Carbide theme overrides bold to 600 (semibold)
|
|
333
337
|
|
|
334
338
|
## Animation
|
|
335
339
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@machinemetrics/mm-react-components",
|
|
3
|
-
"version": "0.2.3-
|
|
3
|
+
"version": "0.2.3-32",
|
|
4
4
|
"description": "Industrial-grade React components for manufacturing applications",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -103,75 +103,78 @@
|
|
|
103
103
|
"@dnd-kit/modifiers": "9.0.0",
|
|
104
104
|
"@dnd-kit/sortable": "10.0.0",
|
|
105
105
|
"@dnd-kit/utilities": "3.2.2",
|
|
106
|
+
"@fontsource-variable/noto-sans": "^5.2.10",
|
|
107
|
+
"@fontsource/inconsolata": "^5.2.8",
|
|
106
108
|
"@hookform/resolvers": "^5.2.2",
|
|
107
109
|
"@radix-ui/react-accordion": "^1.2.12",
|
|
108
110
|
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
109
|
-
"@radix-ui/react-avatar": "^1.1.
|
|
111
|
+
"@radix-ui/react-avatar": "^1.1.11",
|
|
110
112
|
"@radix-ui/react-checkbox": "^1.3.3",
|
|
111
113
|
"@radix-ui/react-collapsible": "^1.1.12",
|
|
112
114
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
113
115
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
114
|
-
"@radix-ui/react-label": "^2.1.
|
|
116
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
115
117
|
"@radix-ui/react-popover": "^1.1.15",
|
|
116
|
-
"@radix-ui/react-progress": "^1.1.
|
|
118
|
+
"@radix-ui/react-progress": "^1.1.8",
|
|
117
119
|
"@radix-ui/react-radio-group": "^1.3.8",
|
|
118
120
|
"@radix-ui/react-select": "^2.2.6",
|
|
119
|
-
"@radix-ui/react-separator": "^1.1.
|
|
121
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
120
122
|
"@radix-ui/react-slider": "^1.3.6",
|
|
121
|
-
"@radix-ui/react-slot": "^1.2.
|
|
123
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
122
124
|
"@radix-ui/react-switch": "^1.2.6",
|
|
123
125
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
124
126
|
"@radix-ui/react-toggle": "^1.1.10",
|
|
125
127
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
126
128
|
"@tanstack/react-table": "^8.21.3",
|
|
127
|
-
"@tanstack/react-virtual": "3.13.
|
|
129
|
+
"@tanstack/react-virtual": "3.13.18",
|
|
128
130
|
"class-variance-authority": "^0.7.1",
|
|
129
131
|
"clsx": "^2.1.1",
|
|
130
132
|
"cmdk": "^1.1.1",
|
|
131
133
|
"date-fns": "^4.1.0",
|
|
132
|
-
"lucide-react": "^0.
|
|
134
|
+
"lucide-react": "^0.562.0",
|
|
133
135
|
"next-themes": "^0.4.6",
|
|
134
|
-
"react": "^19.
|
|
135
|
-
"react-day-picker": "^9.
|
|
136
|
-
"react-dom": "^19.
|
|
136
|
+
"react": "^19.2.3",
|
|
137
|
+
"react-day-picker": "^9.13.0",
|
|
138
|
+
"react-dom": "^19.2.3",
|
|
137
139
|
"react-dropzone": "14.3.8",
|
|
138
|
-
"react-hook-form": "^7.
|
|
140
|
+
"react-hook-form": "^7.71.0",
|
|
139
141
|
"recharts": "^2.15.4",
|
|
140
142
|
"sonner": "^2.0.7",
|
|
141
|
-
"tailwind-merge": "^3.
|
|
142
|
-
"tw-animate-css": "^1.
|
|
143
|
+
"tailwind-merge": "^3.4.0",
|
|
144
|
+
"tw-animate-css": "^1.4.0",
|
|
143
145
|
"vaul": "^1.1.2",
|
|
144
|
-
"zod": "^4.
|
|
146
|
+
"zod": "^4.3.5"
|
|
145
147
|
},
|
|
146
148
|
"devDependencies": {
|
|
147
|
-
"@eslint/js": "^9.
|
|
148
|
-
"@
|
|
149
|
-
"@
|
|
150
|
-
"@tailwindcss/
|
|
151
|
-
"@
|
|
152
|
-
"@types/
|
|
153
|
-
"@types/react
|
|
149
|
+
"@eslint/js": "^9.39.2",
|
|
150
|
+
"@laynezh/vite-plugin-lib-assets": "^2.1.3",
|
|
151
|
+
"@playwright/test": "^1.57.0",
|
|
152
|
+
"@tailwindcss/postcss": "^4.1.18",
|
|
153
|
+
"@tailwindcss/vite": "^4.1.18",
|
|
154
|
+
"@types/node": "^25.0.6",
|
|
155
|
+
"@types/react": "^19.2.8",
|
|
156
|
+
"@types/react-dom": "^19.2.3",
|
|
154
157
|
"@types/react-table": "^7.7.20",
|
|
155
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
156
|
-
"@typescript-eslint/parser": "^8.
|
|
157
|
-
"@vitejs/plugin-react": "^5.
|
|
158
|
-
"autoprefixer": "^10.4.
|
|
159
|
-
"eslint": "^9.
|
|
158
|
+
"@typescript-eslint/eslint-plugin": "^8.53.0",
|
|
159
|
+
"@typescript-eslint/parser": "^8.53.0",
|
|
160
|
+
"@vitejs/plugin-react": "^5.1.2",
|
|
161
|
+
"autoprefixer": "^10.4.23",
|
|
162
|
+
"eslint": "^9.39.2",
|
|
160
163
|
"eslint-config-prettier": "^10.1.8",
|
|
161
164
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
162
165
|
"eslint-plugin-prettier": "^5.5.4",
|
|
163
166
|
"eslint-plugin-react": "^7.37.5",
|
|
164
|
-
"eslint-plugin-react-hooks": "^
|
|
165
|
-
"eslint-plugin-react-refresh": "^0.4.
|
|
166
|
-
"globals": "^
|
|
167
|
-
"playwright": "^1.
|
|
168
|
-
"prettier": "^3.
|
|
169
|
-
"tailwindcss": "^4.1.
|
|
170
|
-
"terser": "^5.44.
|
|
171
|
-
"tsx": "^4.
|
|
172
|
-
"typescript": "~5.
|
|
173
|
-
"typescript-eslint": "^8.
|
|
174
|
-
"vite": "^7.1
|
|
167
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
168
|
+
"eslint-plugin-react-refresh": "^0.4.26",
|
|
169
|
+
"globals": "^17.0.0",
|
|
170
|
+
"playwright": "^1.57.0",
|
|
171
|
+
"prettier": "^3.7.4",
|
|
172
|
+
"tailwindcss": "^4.1.18",
|
|
173
|
+
"terser": "^5.44.1",
|
|
174
|
+
"tsx": "^4.21.0",
|
|
175
|
+
"typescript": "~5.9.3",
|
|
176
|
+
"typescript-eslint": "^8.53.0",
|
|
177
|
+
"vite": "^7.3.1"
|
|
175
178
|
},
|
|
176
179
|
"files": [
|
|
177
180
|
"dist",
|