@evenicanpm/ui 2.0.0 → 2.4.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.
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
|
|
2
|
+
[43m[30m WARN [39m[49m Failed to replace env in config: ${NPM_TOKEN}
|
|
3
|
+
../../apps/strapi | [43m[30m WARN [39m[49m Unsupported engine: wanted: {"node":">=18.0.0 <=22.x.x"} (current: {"node":"v24.16.0","pnpm":"11.0.0"})
|
|
4
|
+
[2m$ pnpm dlx @biomejs/biome check --write .[22m
|
|
5
|
+
[43m[30m WARN [39m[49m Failed to replace env in config: ${NPM_TOKEN}
|
|
6
|
+
[43m[30m WARN [39m[49m Failed to replace env in config: ${NPM_TOKEN}
|
|
7
|
+
[0m[34mChecked 46 files in 57[0m[0m[2m[34mms[0m[0m[34m.[0m[0m[34m No fixes applied.[0m
|
package/CHANGELOG.md
ADDED
package/package.json
CHANGED
|
@@ -1,37 +1,38 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}
|
|
2
|
+
"name": "@evenicanpm/ui",
|
|
3
|
+
"version": "2.4.1",
|
|
4
|
+
"description": "Common and re-usable UI elements for e4 products.",
|
|
5
|
+
"license": "ISC",
|
|
6
|
+
"author": "",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": "./src/index.ts",
|
|
10
|
+
"./components": "./src/components/index.ts"
|
|
11
|
+
},
|
|
12
|
+
"main": "./src/index.ts",
|
|
13
|
+
"module": "./src/index.ts",
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"@emotion/react": "^11.11.3",
|
|
16
|
+
"@emotion/styled": "^11.11.0",
|
|
17
|
+
"@mui/icons-material": "^6.1.7",
|
|
18
|
+
"@mui/material": "^6.1.7",
|
|
19
|
+
"@types/react": "^19.2.2",
|
|
20
|
+
"clsx": "^2.1.1",
|
|
21
|
+
"react": "^19.2.7",
|
|
22
|
+
"typescript": "^5.6.3"
|
|
23
|
+
},
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"@emotion/react": "^11.11.3",
|
|
26
|
+
"@emotion/styled": "^11.11.0",
|
|
27
|
+
"@mui/icons-material": "^6.1.7",
|
|
28
|
+
"@mui/material": "^6.1.7",
|
|
29
|
+
"@types/react": "^19.2.2",
|
|
30
|
+
"clsx": "^2.1.1",
|
|
31
|
+
"react": "^19.2.7",
|
|
32
|
+
"typescript": "^5.6.3"
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"format": "npx @biomejs/biome format --write ./src",
|
|
36
|
+
"build": "tsc"
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -8,6 +8,8 @@ import clsx from "clsx";
|
|
|
8
8
|
type Ellipsis = { ellipsis: number };
|
|
9
9
|
export interface EllipsisProps extends BoxProps {
|
|
10
10
|
ellipsis?: boolean;
|
|
11
|
+
children?: React.ReactNode;
|
|
12
|
+
className?: string;
|
|
11
13
|
}
|
|
12
14
|
// ==============================================================
|
|
13
15
|
|