mtrl 0.4.3 → 0.4.5
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/dist/components/textfield/features/placement.d.ts +1 -1
- package/dist/core/compose/features/textinput.d.ts +4 -0
- package/dist/index.cjs +15 -15
- package/dist/index.cjs.map +5 -5
- package/dist/index.js +15 -15
- package/dist/index.js.map +5 -5
- package/dist/package.json +1 -1
- package/dist/styles.css +2 -2
- package/package.json +13 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mtrl",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.5",
|
|
4
4
|
"description": "A functional TypeScript/JavaScript component library with composable architecture based on Material Design 3",
|
|
5
5
|
"author": "floor",
|
|
6
6
|
"license": "MIT License",
|
|
@@ -20,7 +20,17 @@
|
|
|
20
20
|
"type-safe"
|
|
21
21
|
],
|
|
22
22
|
"type": "module",
|
|
23
|
-
"main": "./index.
|
|
23
|
+
"main": "./dist/index.cjs",
|
|
24
|
+
"module": "./dist/index.js",
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"import": "./dist/index.js",
|
|
29
|
+
"require": "./dist/index.cjs",
|
|
30
|
+
"types": "./dist/index.d.ts"
|
|
31
|
+
},
|
|
32
|
+
"./styles": "./dist/styles.css"
|
|
33
|
+
},
|
|
24
34
|
"files": [
|
|
25
35
|
"dist"
|
|
26
36
|
],
|
|
@@ -36,7 +46,7 @@
|
|
|
36
46
|
"build:lib": "bun run build.ts",
|
|
37
47
|
"prepublishOnly": "bun run build:lib",
|
|
38
48
|
"lint": "bunx eslint src --ext .ts,.tsx",
|
|
39
|
-
"lint:fix": "bunx eslint src --ext .ts,.tsx --fix",
|
|
49
|
+
"lint:fix": "bunx eslint src --ext .ts,.tsx --fix",
|
|
40
50
|
"format": "bunx prettier --write .",
|
|
41
51
|
"format:check": "bunx prettier --check .",
|
|
42
52
|
"test": "bun test",
|