crumb-widget 1.2.3 → 1.3.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 +3 -7
- package/dist/module.js +1875 -3438
- package/package.json +16 -8
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
[](https://www.npmjs.com/package/crumb-widget)
|
|
10
10
|
[](https://crumb.bmlt.app/)
|
|
11
11
|
|
|
12
|
-
An embeddable NA meeting finder widget. Built with Svelte 5, distributed as a single self-contained JavaScript file. Available as a [WordPress plugin](https://wordpress.org/plugins/crumb/), [CDN script](https://cdn.aws.bmlt.app/crumb-widget.js), or [npm package](https://www.npmjs.com/package/crumb-widget).
|
|
12
|
+
An embeddable NA meeting finder widget. Built with Svelte 5, distributed as a single self-contained JavaScript file. Available as a [WordPress plugin](https://wordpress.org/plugins/crumb/), [Drupal module](https://github.com/bmlt-enabled/crumb-drupal), [CDN script](https://cdn.aws.bmlt.app/crumb-widget.js), or [npm package](https://www.npmjs.com/package/crumb-widget).
|
|
13
13
|
|
|
14
14
|
## Features
|
|
15
15
|
|
|
@@ -17,18 +17,14 @@ An embeddable NA meeting finder widget. Built with Svelte 5, distributed as a si
|
|
|
17
17
|
- Meeting detail with directions, virtual join link, and formats
|
|
18
18
|
- Geolocation-based nearby search
|
|
19
19
|
- Individual meeting links via built-in router
|
|
20
|
-
- Multi-language support
|
|
20
|
+
- Multi-language support (12 languages, including RTL layout for Persian)
|
|
21
21
|
- Configurable columns, map tiles, and custom markers
|
|
22
22
|
- Printer-friendly list view
|
|
23
23
|
|
|
24
24
|
## Quick Start
|
|
25
25
|
|
|
26
26
|
```html
|
|
27
|
-
<div
|
|
28
|
-
id="crumb-widget"
|
|
29
|
-
data-server="https://myserver.com/main_server/"
|
|
30
|
-
data-service-body="3"
|
|
31
|
-
></div>
|
|
27
|
+
<div id="crumb-widget" data-server="https://myserver.com/main_server/" data-service-body="3"></div>
|
|
32
28
|
<script type="module" src="https://cdn.aws.bmlt.app/crumb-widget.js"></script>
|
|
33
29
|
```
|
|
34
30
|
|