@meonode/ui 0.1.5 → 0.1.6
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 +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -239,25 +239,25 @@ yarn add @meonode/mui @mui/material
|
|
|
239
239
|
```
|
|
240
240
|
|
|
241
241
|
```ts
|
|
242
|
-
import {
|
|
242
|
+
import { Button, TextField } from '@meonode/mui';
|
|
243
243
|
|
|
244
244
|
const MuiLoginForm = Component(() =>
|
|
245
245
|
Div({
|
|
246
246
|
maxWidth: '400px',
|
|
247
247
|
margin: '0 auto',
|
|
248
248
|
children: [
|
|
249
|
-
|
|
249
|
+
TextField({
|
|
250
250
|
label: 'Email',
|
|
251
251
|
fullWidth: true,
|
|
252
252
|
margin: 'normal'
|
|
253
253
|
}),
|
|
254
|
-
|
|
254
|
+
TextField({
|
|
255
255
|
label: 'Password',
|
|
256
256
|
type: 'password',
|
|
257
257
|
fullWidth: true,
|
|
258
258
|
margin: 'normal'
|
|
259
259
|
}),
|
|
260
|
-
|
|
260
|
+
Button({
|
|
261
261
|
variant: 'contained',
|
|
262
262
|
color: 'primary',
|
|
263
263
|
children: 'Sign In'
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meonode/ui",
|
|
3
3
|
"description": "A structured approach to component composition with built-in theming, prop separation, and dynamic children handling.",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.6",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/main.js",
|
|
7
7
|
"types": "./dist/main.d.ts",
|