@evenicanpm/ui 1.8.1 → 2.4.0

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
+  WARN  Failed to replace env in config: ${NPM_TOKEN}
3
+ ../../apps/strapi |  WARN  Unsupported engine: wanted: {"node":">=18.0.0 <=22.x.x"} (current: {"node":"v24.16.0","pnpm":"11.0.0"})
4
+ $ pnpm dlx @biomejs/biome check --write .
5
+  WARN  Failed to replace env in config: ${NPM_TOKEN}
6
+  WARN  Failed to replace env in config: ${NPM_TOKEN}
7
+ Checked 46 files in 57ms. No fixes applied.
@@ -0,0 +1,2 @@
1
+
2
+  WARN  Failed to replace env in config: ${NPM_TOKEN}
package/CHANGELOG.md ADDED
@@ -0,0 +1,3 @@
1
+ # @evenicanpm/ui
2
+
3
+ ## 2.4.0
package/package.json CHANGED
@@ -1,37 +1,38 @@
1
1
  {
2
- "name": "@evenicanpm/ui",
3
- "version": "1.8.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
- "scripts": {
15
- "format": "npx @biomejs/biome format --write ./src",
16
- "build": "tsc"
17
- },
18
- "devDependencies": {
19
- "@emotion/react": "^11.11.3",
20
- "@emotion/styled": "^11.11.0",
21
- "@mui/icons-material": "^6.1.7",
22
- "@mui/material": "^6.1.7",
23
- "@types/react": "^18.3.24",
24
- "react": "^19.0.0",
25
- "typescript": "^5.6.3"
26
- },
27
- "peerDependencies": {
28
- "@emotion/react": "^11.11.3",
29
- "@emotion/styled": "^11.11.0",
30
- "@mui/icons-material": "^6.1.7",
31
- "@mui/material": "^6.1.7",
32
- "@types/react": "^18.3.24",
33
- "react": "^19.0.0",
34
- "typescript": "^5.6.3"
35
- },
36
- "gitHead": "07cfd4496c6a137e1420a6572298998b25b6369d"
37
- }
2
+ "name": "@evenicanpm/ui",
3
+ "version": "2.4.0",
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
+ }
@@ -2,4 +2,4 @@ import FlexBetween from "./flex-between";
2
2
  import FlexBox from "./flex-box";
3
3
  import FlexRowCenter from "./flex-row-center";
4
4
 
5
- export { FlexBox, FlexBetween, FlexRowCenter };
5
+ export { FlexBetween, FlexBox, FlexRowCenter };
@@ -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
 
@@ -3,8 +3,8 @@
3
3
  import type React from "react";
4
4
  import { useState } from "react";
5
5
  import { Button } from "../button";
6
- import { UserAvatar, UserIconButton } from "./styles/index";
7
6
  import { UserDropdown } from "./dropdown";
7
+ import { UserAvatar, UserIconButton } from "./styles/index";
8
8
 
9
9
  export type Props = {
10
10
  user?: {