crumb-widget 1.0.3 → 1.0.4

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
@@ -2,11 +2,11 @@
2
2
 
3
3
  [![test](https://github.com/bmlt-enabled/crumb-widget/actions/workflows/test.yml/badge.svg)](https://github.com/bmlt-enabled/crumb-widget/actions/workflows/test.yml)
4
4
  [![codecov](https://codecov.io/gh/bmlt-enabled/crumb-widget/graph/badge.svg)](https://codecov.io/gh/bmlt-enabled/crumb-widget)
5
+ [![npm](https://img.shields.io/npm/v/crumb-widget)](https://www.npmjs.com/package/crumb-widget)
5
6
 
6
- An embeddable NA meeting finder widget. Drop a `<div>` and a `<script>` tag into any page and get a fully functional
7
- meeting finder - search, filters, list view, map, and meeting detail.
7
+ An embeddable NA meeting finder widget with search, filters, list view, map, and meeting detail. Drop a `<div>` and a `<script>` tag into any page, or install from npm for use in JavaScript and TypeScript projects.
8
8
 
9
- Built with Svelte 5, compiled to a **single self-contained JavaScript file** with no host-page dependencies.
9
+ Built with Svelte 5, distributed as a **single self-contained JavaScript file** with no host-page dependencies. Available as a CDN script or as an [npm package](https://www.npmjs.com/package/crumb-widget).
10
10
 
11
11
  ## Features
12
12
 
package/dist/module.d.ts CHANGED
@@ -9,6 +9,7 @@ export declare interface CrumbWidgetConfig {
9
9
  height?: number;
10
10
  darkMode?: 'auto' | true | false;
11
11
  nowOffset?: number;
12
+ hideHeader?: boolean;
12
13
  map?: {
13
14
  tiles?: TilesConfig;
14
15
  tiles_dark?: TilesConfig;