avalynx-modal 0.0.2 → 1.0.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.
package/README.md CHANGED
@@ -42,8 +42,8 @@ Replace `path/to/avalynx-modal.js` and `path/to/avalynx-modal.css` with the actu
42
42
  AvalynxModal is also available via [jsDelivr](https://www.jsdelivr.com/). You can include it in your project like this:
43
43
 
44
44
  ```html
45
- <link href="https://cdn.jsdelivr.net/npm/avalynx-modal@0.0.2/dist/css/avalynx-modal.css" rel="stylesheet">
46
- <script src="https://cdn.jsdelivr.net/npm/avalynx-modal@0.0.2/dist/js/avalynx-modal.js"></script>
45
+ <link href="https://cdn.jsdelivr.net/npm/avalynx-modal@1.0.0/dist/css/avalynx-modal.css" rel="stylesheet">
46
+ <script src="https://cdn.jsdelivr.net/npm/avalynx-modal@1.0.0/dist/js/avalynx-modal.js"></script>
47
47
  ```
48
48
 
49
49
  Make sure to also include Bootstrap's JS/CSS in your project to ensure AvalynxModal displays correctly.
@@ -80,6 +80,17 @@ import 'avalynx-modal/dist/css/avalynx-modal.min.css';
80
80
 
81
81
  Make sure to also include Bootstrap's JS/CSS in your project to ensure AvalynxModal displays correctly.
82
82
 
83
+ ## Installation via Symfony AssetComposer
84
+
85
+ More information about the Symfony AssetComposer Bundle can be found [here](https://github.com/jbsnewmedia/asset-composer-bundle).
86
+
87
+ ```twig
88
+ {% do addAssetComposer('avalynx/avalynx-modal/dist/css/avalynx-modal.css') %}
89
+ {% do addAssetComposer('avalynx/avalynx-modal/dist/js/avalynx-modal.js') %}
90
+ ```
91
+
92
+ Make sure to also include Bootstrap's JS/CSS in your project to ensure AvalynxModal displays correctly.
93
+
83
94
  ## Installation via Composer ([Link](https://packagist.org/packages/avalynx/avalynx-modal))
84
95
 
85
96
  AvalynxModal is also available as a Composer package. You can add it to your project with the following command:
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * AvalynxModal is a simple modal system for web applications with fullscreen support. Based on Bootstrap >=5.3 without any framework dependencies.
5
5
  *
6
- * @version 0.0.2
6
+ * @version 1.0.0
7
7
  * @license MIT
8
8
  * @author https://github.com/avalynx/avalynx-modal/graphs/contributors
9
9
  * @website https://github.com/avalynx/
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * AvalynxModal is a simple modal system for web applications with fullscreen support. Based on Bootstrap >=5.3 without any framework dependencies.
5
5
  *
6
- * @version 0.0.2
6
+ * @version 1.0.0
7
7
  * @license MIT
8
8
  * @author https://github.com/avalynx/avalynx-modal/graphs/contributors
9
9
  * @website https://github.com/avalynx/
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * AvalynxModal is a simple modal system for web applications with fullscreen support. Based on Bootstrap >=5.3 without any framework dependencies.
5
5
  *
6
- * @version 0.0.2
6
+ * @version 1.0.0
7
7
  * @license MIT
8
8
  * @author https://github.com/avalynx/avalynx-modal/graphs/contributors
9
9
  * @website https://github.com/avalynx/
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "avalynx-modal",
3
3
  "title": "AvalynxModal",
4
4
  "description": "AvalynxModal is a simple modal system for web applications with fullscreen support. Based on Bootstrap >=5.3 without any framework dependencies.",
5
- "version": "0.0.2",
5
+ "version": "1.0.0",
6
6
  "license": "MIT",
7
7
  "main": "dist/js/avalynx-modal.js",
8
8
  "module": "dist/js/avalynx-modal.esm.js",