@selvajs/ui 6.1.1 → 6.1.2

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.
@@ -25,7 +25,7 @@
25
25
  bind:ref
26
26
  data-slot="dialog-content"
27
27
  class={cn(
28
- 'gap-4 p-6 shadow-lg data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95 sm:max-w-lg fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] rounded-lg border bg-background duration-200',
28
+ 'gap-4 p-6 shadow-lg data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95 sm:max-w-lg fixed top-[50%] left-[50%] z-50 grid max-h-[85dvh] w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] overflow-y-auto rounded-lg border bg-background duration-200',
29
29
  className
30
30
  )}
31
31
  {...restProps}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@selvajs/ui",
3
- "version": "6.1.1",
3
+ "version": "6.1.2",
4
4
  "description": "Shared UI components and utilities for Selva applications",
5
5
  "license": "MIT",
6
6
  "author": "VektorNode",
@@ -60,9 +60,9 @@
60
60
  "tailwind-variants": "^3.3.1",
61
61
  "three": "^0.185.1",
62
62
  "@selvajs/compute": "^4.0.2",
63
- "@selvajs/schemas": "^5.0.0",
64
- "@selvajs/solve": "^1.0.3",
65
- "@selvajs/visualization": "^1.0.1"
63
+ "@selvajs/solve": "^1.0.4",
64
+ "@selvajs/visualization": "^1.0.1",
65
+ "@selvajs/schemas": "^5.0.1"
66
66
  },
67
67
  "peerDependenciesMeta": {
68
68
  "three": {
@@ -91,10 +91,10 @@
91
91
  "tailwind-variants": "^3.3.1",
92
92
  "vitest": "^4.1.10",
93
93
  "@selvajs/config": "0.0.4",
94
- "@selvajs/schemas": "5.0.0",
95
- "@selvajs/compute": "4.0.2",
96
- "@selvajs/solve": "1.0.3",
97
- "@selvajs/visualization": "1.0.1"
94
+ "@selvajs/schemas": "5.0.1",
95
+ "@selvajs/visualization": "1.0.1",
96
+ "@selvajs/solve": "1.0.4",
97
+ "@selvajs/compute": "4.0.2"
98
98
  },
99
99
  "scripts": {
100
100
  "predev": "node ../../scripts/sync-shared-assets.js",
@@ -109,6 +109,7 @@
109
109
  "test": "vitest run",
110
110
  "test:watch": "vitest",
111
111
  "format": "prettier --write .",
112
- "lint": "prettier --check . && eslint ."
112
+ "lint": "prettier --check . && eslint .",
113
+ "lint:types": "eslint . --config eslint.typed.config.js"
113
114
  }
114
115
  }
@@ -25,7 +25,7 @@
25
25
  bind:ref
26
26
  data-slot="dialog-content"
27
27
  class={cn(
28
- 'gap-4 p-6 shadow-lg data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95 sm:max-w-lg fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] rounded-lg border bg-background duration-200',
28
+ 'gap-4 p-6 shadow-lg data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95 sm:max-w-lg fixed top-[50%] left-[50%] z-50 grid max-h-[85dvh] w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] overflow-y-auto rounded-lg border bg-background duration-200',
29
29
  className
30
30
  )}
31
31
  {...restProps}