demio-ui 5.4.3 → 5.4.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/dist/types.d.ts CHANGED
@@ -330,7 +330,7 @@ interface NoteProps {
330
330
  children?: React__default.ReactNode;
331
331
  className?: string;
332
332
  classNameIcon?: string;
333
- type?: 'info' | 'error';
333
+ type?: 'info' | 'error' | 'warning';
334
334
  }
335
335
  declare const Note: FC<NoteProps>;
336
336
 
package/package.json CHANGED
@@ -1,12 +1,16 @@
1
1
  {
2
2
  "name": "demio-ui",
3
- "version": "5.4.3",
3
+ "version": "5.4.6",
4
4
  "description": "",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git@gitlab.com:banzai_io/demio/demio-ui.git"
8
8
  },
9
9
  "license": "ISC",
10
+ "engines": {
11
+ "node": ">=24",
12
+ "npm": ">=11.0.0"
13
+ },
10
14
  "author": "Demio",
11
15
  "main": "dist/cjs/index.js",
12
16
  "module": "dist/esm/index.js",
@@ -40,7 +44,9 @@
40
44
  "format": "prettier --write \"src/**/*.{ts, tsx, css}\"",
41
45
  "lint": "eslint ./src/",
42
46
  "lint:fix": "eslint ./src/ --fix",
47
+ "lint:lockfile": "lockfile-lint --path package-lock.json --type npm --allowed-hosts npm --validate-https",
43
48
  "patch-release": "npm version patch -m 'Upgrade to version %s'",
49
+ "audit:ci": "npm audit --omit=dev --audit-level=high || true",
44
50
  "prepare": "husky install && npm run build",
45
51
  "prepublishOnly": "npm test && npm run lint-all",
46
52
  "storybook": "storybook dev -p 6006",
@@ -85,7 +91,8 @@
85
91
  "@radix-ui/react-tooltip": "^1.2.8",
86
92
  "classnames": "^2.5.1",
87
93
  "react-easy-crop": "^5.5.7",
88
- "react-select": "^5.10.2"
94
+ "react-select": "^5.10.2",
95
+ "lockfile-lint": "^4.14.1"
89
96
  },
90
97
  "devDependencies": {
91
98
  "@babel/core": "^7.29.0",