@pyreon/elements 0.11.8 → 0.11.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pyreon/elements",
3
- "version": "0.11.8",
3
+ "version": "0.11.10",
4
4
  "description": "Foundational UI components for Pyreon",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -41,14 +41,14 @@
41
41
  "typecheck": "tsc --noEmit"
42
42
  },
43
43
  "devDependencies": {
44
- "@pyreon/typescript": "^0.11.8",
44
+ "@pyreon/typescript": "^0.11.10",
45
45
  "@vitus-labs/tools-rolldown": "^1.15.3"
46
46
  },
47
47
  "peerDependencies": {
48
- "@pyreon/core": "^0.11.8",
49
- "@pyreon/reactivity": "^0.11.8",
50
- "@pyreon/ui-core": "^0.11.8",
51
- "@pyreon/unistyle": "^0.11.8"
48
+ "@pyreon/core": "^0.11.10",
49
+ "@pyreon/reactivity": "^0.11.10",
50
+ "@pyreon/ui-core": "^0.11.10",
51
+ "@pyreon/unistyle": "^0.11.10"
52
52
  },
53
53
  "engines": {
54
54
  "node": ">= 22"
@@ -57,7 +57,7 @@ const sel = <T,>(cond: boolean, a: T, b: T): T => (cond ? a : b)
57
57
 
58
58
  const devWarn = (msg: string) => {
59
59
  if (!IS_DEVELOPMENT) return
60
- // biome-ignore lint/suspicious/noConsole: dev-mode warning
60
+ // oxlint-disable-next-line no-console
61
61
  console.warn(msg)
62
62
  }
63
63