@mezo-org/mezo-clay 0.1.0-dev.35 → 0.1.0-dev.37
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/icons/line/check-square/index.d.ts +9 -0
- package/dist/components/icons/line/index.d.ts +3 -0
- package/dist/components/icons/line/lock/index.d.ts +8 -0
- package/dist/components/icons/line/waves/index.d.ts +9 -0
- package/dist/components/segmented-progress-bar/segmented-progress-bar.d.ts +1 -1
- package/dist/components/segmented-progress-bar/types.d.ts +20 -1
- package/dist/mezo-clay.es.js +3340 -3134
- package/dist/mezo-clay.umd.js +24 -24
- package/package.json +18 -17
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mezo-org/mezo-clay",
|
|
3
|
-
"version": "0.1.0-dev.
|
|
3
|
+
"version": "0.1.0-dev.37",
|
|
4
4
|
"repository": "git@github.com:mezo-org/clay.git",
|
|
5
|
+
"packageManager": "pnpm@9.15.0",
|
|
5
6
|
"main": "./dist/mezo-clay.umd.js",
|
|
6
7
|
"module": "./dist/mezo-clay.es.js",
|
|
7
8
|
"types": "./dist/index.d.ts",
|
|
@@ -9,6 +10,21 @@
|
|
|
9
10
|
"dist"
|
|
10
11
|
],
|
|
11
12
|
"prettier": "@thesis/prettier-config",
|
|
13
|
+
"scripts": {
|
|
14
|
+
"dev": "pnpm run storybook",
|
|
15
|
+
"build": "pnpm run build-storybook",
|
|
16
|
+
"build:lib": "tsc && vite build",
|
|
17
|
+
"lint:config": "prettier -c '**/*.@(json|yaml|toml)'",
|
|
18
|
+
"lint:config:fix": "prettier -w '**/*.@(json|yaml|toml)'",
|
|
19
|
+
"lint:eslint": "eslint . --ext ts,tsx,mts",
|
|
20
|
+
"lint:eslint:fix": "eslint . --fix",
|
|
21
|
+
"format": "pnpm run lint:eslint && pnpm run lint:config",
|
|
22
|
+
"format:fix": "pnpm run lint:eslint:fix && pnpm run lint:config:fix",
|
|
23
|
+
"test": "vitest run",
|
|
24
|
+
"test-watch": "vitest",
|
|
25
|
+
"storybook": "storybook dev -p 6006",
|
|
26
|
+
"build-storybook": "storybook build"
|
|
27
|
+
},
|
|
12
28
|
"dependencies": {
|
|
13
29
|
"@storybook/blocks": "^8.4.7",
|
|
14
30
|
"@storybook/experimental-addon-test": "^8.4.7",
|
|
@@ -51,20 +67,5 @@
|
|
|
51
67
|
"react": "^18.3.1",
|
|
52
68
|
"react-dom": "^18.3.1",
|
|
53
69
|
"styletron-engine-monolithic": "^1.0.0"
|
|
54
|
-
},
|
|
55
|
-
"scripts": {
|
|
56
|
-
"dev": "pnpm run storybook",
|
|
57
|
-
"build": "pnpm run build-storybook",
|
|
58
|
-
"build:lib": "tsc && vite build",
|
|
59
|
-
"lint:config": "prettier -c '**/*.@(json|yaml|toml)'",
|
|
60
|
-
"lint:config:fix": "prettier -w '**/*.@(json|yaml|toml)'",
|
|
61
|
-
"lint:eslint": "eslint . --ext ts,tsx,mts",
|
|
62
|
-
"lint:eslint:fix": "eslint . --fix",
|
|
63
|
-
"format": "pnpm run lint:eslint && pnpm run lint:config",
|
|
64
|
-
"format:fix": "pnpm run lint:eslint:fix && pnpm run lint:config:fix",
|
|
65
|
-
"test": "vitest run",
|
|
66
|
-
"test-watch": "vitest",
|
|
67
|
-
"storybook": "storybook dev -p 6006",
|
|
68
|
-
"build-storybook": "storybook build"
|
|
69
70
|
}
|
|
70
|
-
}
|
|
71
|
+
}
|