@versini/ui-modal 2.0.6 → 2.0.8
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/README.md +1 -1
- package/dist/index.js +3 -3
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ The Modal component provides fully accessible dialog functionality with focus ma
|
|
|
28
28
|
npm install @versini/ui-modal
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
-
> **Note**: This component requires TailwindCSS and the `@versini/ui-styles` plugin for proper styling. See the [
|
|
31
|
+
> **Note**: This component requires TailwindCSS and the `@versini/ui-styles` plugin for proper styling. See the [installation documentation](https://versini-org.github.io/ui-components/?path=/docs/getting-started-installation--docs) for complete setup instructions.
|
|
32
32
|
|
|
33
33
|
## Usage
|
|
34
34
|
|
package/dist/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { Modal as _, ModalClose as n, ModalContent as t, ModalDescription as a, ModalHeading as d } from "./components/Modal/Modal.js";
|
|
2
2
|
/*!
|
|
3
|
-
@versini/ui-modal v2.0.
|
|
3
|
+
@versini/ui-modal v2.0.8
|
|
4
4
|
© 2025 gizmette.com
|
|
5
5
|
*/
|
|
6
6
|
try {
|
|
7
7
|
window.__VERSINI_UI_MODAL__ || (window.__VERSINI_UI_MODAL__ = {
|
|
8
|
-
version: "2.0.
|
|
9
|
-
buildTime: "08/
|
|
8
|
+
version: "2.0.8",
|
|
9
|
+
buildTime: "08/23/2025 10:06 AM EDT",
|
|
10
10
|
homepage: "https://github.com/aversini/ui-components",
|
|
11
11
|
license: "MIT"
|
|
12
12
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-modal",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.8",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
"main": "dist/index.js",
|
|
16
16
|
"types": "dist/index.d.ts",
|
|
17
17
|
"files": [
|
|
18
|
-
"dist"
|
|
18
|
+
"dist",
|
|
19
|
+
"README.md"
|
|
19
20
|
],
|
|
20
21
|
"scripts": {
|
|
21
22
|
"build:check": "tsc",
|
|
@@ -36,14 +37,14 @@
|
|
|
36
37
|
"react-dom": "^18.3.1 || ^19.0.0"
|
|
37
38
|
},
|
|
38
39
|
"devDependencies": {
|
|
39
|
-
"@versini/ui-types": "
|
|
40
|
+
"@versini/ui-types": "../ui-types"
|
|
40
41
|
},
|
|
41
42
|
"dependencies": {
|
|
42
|
-
"@floating-ui/react": "0.27.
|
|
43
|
+
"@floating-ui/react": "0.27.16",
|
|
43
44
|
"clsx": "2.1.1"
|
|
44
45
|
},
|
|
45
46
|
"sideEffects": [
|
|
46
47
|
"**/*.css"
|
|
47
48
|
],
|
|
48
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "a1afd6e4613b1da7abf61d10a72614611521fb39"
|
|
49
50
|
}
|