@f-ewald/components 1.16.0 → 1.17.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
@@ -93,6 +93,7 @@ import "@f-ewald/components/roman-numeral.js";
93
93
  | `<price-history-chart>` | [API reference](https://f-ewald.github.io/components/docs/price-history-chart.html) |
94
94
  | `<radio-cards>` | [API reference](https://f-ewald.github.io/components/docs/radio-cards.html) |
95
95
  | `<radio-pills>` | [API reference](https://f-ewald.github.io/components/docs/radio-pills.html) |
96
+ | `<range-slider>` | [API reference](https://f-ewald.github.io/components/docs/range-slider.html) |
96
97
  | `<relative-time>` | [API reference](https://f-ewald.github.io/components/docs/relative-time.html) |
97
98
  | `<reveal-button>` | [API reference](https://f-ewald.github.io/components/docs/reveal-button.html) |
98
99
  | `<roman-numeral>` | [API reference](https://f-ewald.github.io/components/docs/roman-numeral.html) |
@@ -6669,6 +6669,14 @@
6669
6669
  "module": "./map-circle.js"
6670
6670
  }
6671
6671
  },
6672
+ {
6673
+ "kind": "js",
6674
+ "name": "MapboxMap",
6675
+ "declaration": {
6676
+ "name": "MapboxMap",
6677
+ "module": "./mapbox-map.js"
6678
+ }
6679
+ },
6672
6680
  {
6673
6681
  "kind": "js",
6674
6682
  "name": "RadioCards",
@@ -6701,6 +6709,14 @@
6701
6709
  "module": "./radio-pills.js"
6702
6710
  }
6703
6711
  },
6712
+ {
6713
+ "kind": "js",
6714
+ "name": "RangeSlider",
6715
+ "declaration": {
6716
+ "name": "RangeSlider",
6717
+ "module": "./range-slider.js"
6718
+ }
6719
+ },
6704
6720
  {
6705
6721
  "kind": "js",
6706
6722
  "name": "ButtonGroup",
@@ -9048,6 +9064,188 @@
9048
9064
  }
9049
9065
  ]
9050
9066
  },
9067
+ {
9068
+ "kind": "javascript-module",
9069
+ "path": "src/mapbox-map.ts",
9070
+ "declarations": [
9071
+ {
9072
+ "kind": "class",
9073
+ "description": "A thin, generic wrapper around a `mapboxgl.Map` — construction, access\ntoken, style loading/switching, and container resizing only. It carries no\ndomain logic: no layer registry, no click-handler system, no markers or\npopups. A consumer registers its own sources/layers/handlers against the\n`mapboxgl.Map` instance handed back on `map-ready`, the same instance\n`mapbox-map` continues to own (this component never calls `map.remove()`\nexcept on disconnect, so a consumer's own registrations survive style\nreloads exactly as they would using `mapboxgl.Map` directly).\n\nDeliberately does not construct the map until `styleUrl` is a non-empty\nstring — if a consumer knows the desired style only after an async\nlookup (e.g. a saved user preference), delay setting `styleUrl` rather\nthan setting a default and swapping it later, which would visibly flash\nthe wrong basemap before the real one loads.",
9074
+ "name": "MapboxMap",
9075
+ "members": [
9076
+ {
9077
+ "kind": "field",
9078
+ "name": "accessToken",
9079
+ "type": {
9080
+ "text": "string"
9081
+ },
9082
+ "default": "\"\"",
9083
+ "description": "Mapbox access token. Required before the map can be constructed.",
9084
+ "attribute": "access-token"
9085
+ },
9086
+ {
9087
+ "kind": "field",
9088
+ "name": "styleUrl",
9089
+ "type": {
9090
+ "text": "string"
9091
+ },
9092
+ "default": "\"\"",
9093
+ "description": "Style URL (e.g. `mapbox://styles/mapbox/light-v11`). The map is not\nconstructed until this is a non-empty string — see the class doc.",
9094
+ "attribute": "style-url"
9095
+ },
9096
+ {
9097
+ "kind": "field",
9098
+ "name": "center",
9099
+ "type": {
9100
+ "text": "[number, number]"
9101
+ },
9102
+ "default": "[0, 0]",
9103
+ "description": "Initial center as `[lng, lat]`. Only read at construction time."
9104
+ },
9105
+ {
9106
+ "kind": "field",
9107
+ "name": "zoom",
9108
+ "type": {
9109
+ "text": "number"
9110
+ },
9111
+ "default": "0",
9112
+ "description": "Initial zoom level. Only read at construction time.",
9113
+ "attribute": "zoom"
9114
+ },
9115
+ {
9116
+ "kind": "field",
9117
+ "name": "mapContainer",
9118
+ "type": {
9119
+ "text": "HTMLDivElement"
9120
+ },
9121
+ "privacy": "private"
9122
+ },
9123
+ {
9124
+ "kind": "field",
9125
+ "name": "map",
9126
+ "type": {
9127
+ "text": "mapboxgl.Map | undefined"
9128
+ },
9129
+ "privacy": "private"
9130
+ },
9131
+ {
9132
+ "kind": "field",
9133
+ "name": "mapLoaded",
9134
+ "type": {
9135
+ "text": "boolean"
9136
+ },
9137
+ "privacy": "private",
9138
+ "default": "false"
9139
+ },
9140
+ {
9141
+ "kind": "field",
9142
+ "name": "currentStyleUrl",
9143
+ "type": {
9144
+ "text": "string | undefined"
9145
+ },
9146
+ "privacy": "private"
9147
+ },
9148
+ {
9149
+ "kind": "field",
9150
+ "name": "resizeObserver",
9151
+ "type": {
9152
+ "text": "ResizeObserver | undefined"
9153
+ },
9154
+ "privacy": "private"
9155
+ },
9156
+ {
9157
+ "kind": "method",
9158
+ "name": "getMap",
9159
+ "return": {
9160
+ "type": {
9161
+ "text": "mapboxgl.Map | undefined"
9162
+ }
9163
+ },
9164
+ "description": "The live `mapboxgl.Map` instance, once constructed (also available via `map-ready`'s event detail)."
9165
+ },
9166
+ {
9167
+ "kind": "method",
9168
+ "name": "#initializeMap",
9169
+ "privacy": "private",
9170
+ "return": {
9171
+ "type": {
9172
+ "text": "void"
9173
+ }
9174
+ }
9175
+ }
9176
+ ],
9177
+ "events": [
9178
+ {
9179
+ "name": "map-style-reloaded",
9180
+ "type": {
9181
+ "text": "CustomEvent"
9182
+ },
9183
+ "description": "A subsequent `styleUrl` change finished loading its new style (sources/layers registered by a consumer via the `map-ready` instance do not survive a style change and must be re-registered — same behavior as calling `map.setStyle()` directly); detail: `{ map: mapboxgl.Map }`."
9184
+ },
9185
+ {
9186
+ "name": "map-ready",
9187
+ "type": {
9188
+ "text": "CustomEvent"
9189
+ },
9190
+ "description": "The map (and, if `styleUrl` changed before the initial load finished, its final requested style) has finished loading; detail: `{ map: mapboxgl.Map }`."
9191
+ }
9192
+ ],
9193
+ "attributes": [
9194
+ {
9195
+ "name": "access-token",
9196
+ "type": {
9197
+ "text": "string"
9198
+ },
9199
+ "default": "\"\"",
9200
+ "description": "Mapbox access token. Required before the map can be constructed.",
9201
+ "fieldName": "accessToken"
9202
+ },
9203
+ {
9204
+ "name": "style-url",
9205
+ "type": {
9206
+ "text": "string"
9207
+ },
9208
+ "default": "\"\"",
9209
+ "description": "Style URL (e.g. `mapbox://styles/mapbox/light-v11`). The map is not\nconstructed until this is a non-empty string — see the class doc.",
9210
+ "fieldName": "styleUrl"
9211
+ },
9212
+ {
9213
+ "name": "zoom",
9214
+ "type": {
9215
+ "text": "number"
9216
+ },
9217
+ "default": "0",
9218
+ "description": "Initial zoom level. Only read at construction time.",
9219
+ "fieldName": "zoom"
9220
+ }
9221
+ ],
9222
+ "superclass": {
9223
+ "name": "LitElement",
9224
+ "package": "lit"
9225
+ },
9226
+ "tagName": "mapbox-map",
9227
+ "customElement": true
9228
+ }
9229
+ ],
9230
+ "exports": [
9231
+ {
9232
+ "kind": "js",
9233
+ "name": "MapboxMap",
9234
+ "declaration": {
9235
+ "name": "MapboxMap",
9236
+ "module": "src/mapbox-map.ts"
9237
+ }
9238
+ },
9239
+ {
9240
+ "kind": "custom-element-definition",
9241
+ "name": "mapbox-map",
9242
+ "declaration": {
9243
+ "name": "MapboxMap",
9244
+ "module": "src/mapbox-map.ts"
9245
+ }
9246
+ }
9247
+ ]
9248
+ },
9051
9249
  {
9052
9250
  "kind": "javascript-module",
9053
9251
  "path": "src/markdown-view.ts",
@@ -11859,6 +12057,308 @@
11859
12057
  }
11860
12058
  ]
11861
12059
  },
12060
+ {
12061
+ "kind": "javascript-module",
12062
+ "path": "src/range-slider.ts",
12063
+ "declarations": [
12064
+ {
12065
+ "kind": "class",
12066
+ "description": "A form-associated numeric range slider, usable standalone or inside a\nnative `<form>`. Wraps a native `<input type=\"range\">` (kept for its free\nkeyboard, drag, and screen-reader support) restyled to match this\npackage's track/fill visual language (`stat-meter`, `percent-bar-chart`)\ninstead of the browser-default appearance. Purely a value control — no\nbuilt-in label; wrap in `form-field` for a labeled field, or render a\nvalue readout next to it (see the playground example), matching\n`autocomplete-input`/`form-select`.",
12067
+ "name": "RangeSlider",
12068
+ "members": [
12069
+ {
12070
+ "kind": "field",
12071
+ "name": "formAssociated",
12072
+ "type": {
12073
+ "text": "boolean"
12074
+ },
12075
+ "static": true,
12076
+ "default": "true"
12077
+ },
12078
+ {
12079
+ "kind": "field",
12080
+ "name": "min",
12081
+ "type": {
12082
+ "text": "number"
12083
+ },
12084
+ "default": "0",
12085
+ "description": "Minimum value.",
12086
+ "attribute": "min"
12087
+ },
12088
+ {
12089
+ "kind": "field",
12090
+ "name": "max",
12091
+ "type": {
12092
+ "text": "number"
12093
+ },
12094
+ "default": "100",
12095
+ "description": "Maximum value.",
12096
+ "attribute": "max"
12097
+ },
12098
+ {
12099
+ "kind": "field",
12100
+ "name": "step",
12101
+ "type": {
12102
+ "text": "number"
12103
+ },
12104
+ "default": "1",
12105
+ "description": "Step increment.",
12106
+ "attribute": "step"
12107
+ },
12108
+ {
12109
+ "kind": "field",
12110
+ "name": "value",
12111
+ "type": {
12112
+ "text": "number"
12113
+ },
12114
+ "default": "0",
12115
+ "description": "Current value.",
12116
+ "attribute": "value"
12117
+ },
12118
+ {
12119
+ "kind": "field",
12120
+ "name": "disabled",
12121
+ "type": {
12122
+ "text": "boolean"
12123
+ },
12124
+ "default": "false",
12125
+ "description": "Disables interaction; merged with an ancestor `<fieldset disabled>`.",
12126
+ "attribute": "disabled"
12127
+ },
12128
+ {
12129
+ "kind": "field",
12130
+ "name": "name",
12131
+ "type": {
12132
+ "text": "string"
12133
+ },
12134
+ "default": "\"\"",
12135
+ "description": "Form field name.",
12136
+ "attribute": "name"
12137
+ },
12138
+ {
12139
+ "kind": "field",
12140
+ "name": "_formDisabled",
12141
+ "type": {
12142
+ "text": "boolean"
12143
+ },
12144
+ "privacy": "private",
12145
+ "default": "false"
12146
+ },
12147
+ {
12148
+ "kind": "field",
12149
+ "name": "#internals",
12150
+ "privacy": "private"
12151
+ },
12152
+ {
12153
+ "kind": "field",
12154
+ "name": "#defaultValue",
12155
+ "privacy": "private",
12156
+ "type": {
12157
+ "text": "number"
12158
+ },
12159
+ "default": "0"
12160
+ },
12161
+ {
12162
+ "kind": "field",
12163
+ "name": "#isDisabled",
12164
+ "privacy": "private",
12165
+ "type": {
12166
+ "text": "boolean"
12167
+ },
12168
+ "description": "Whether the host or an ancestor fieldset currently disables the control.",
12169
+ "readonly": true
12170
+ },
12171
+ {
12172
+ "kind": "field",
12173
+ "name": "#percent",
12174
+ "privacy": "private",
12175
+ "type": {
12176
+ "text": "number"
12177
+ },
12178
+ "readonly": true
12179
+ },
12180
+ {
12181
+ "kind": "method",
12182
+ "name": "formResetCallback",
12183
+ "return": {
12184
+ "type": {
12185
+ "text": "void"
12186
+ }
12187
+ },
12188
+ "description": "Resets to the value present at first render, per the form contract."
12189
+ },
12190
+ {
12191
+ "kind": "method",
12192
+ "name": "formDisabledCallback",
12193
+ "return": {
12194
+ "type": {
12195
+ "text": "void"
12196
+ }
12197
+ },
12198
+ "parameters": [
12199
+ {
12200
+ "name": "disabled",
12201
+ "type": {
12202
+ "text": "boolean"
12203
+ }
12204
+ }
12205
+ ],
12206
+ "description": "Mirrors an ancestor fieldset's disabled state."
12207
+ },
12208
+ {
12209
+ "kind": "method",
12210
+ "name": "formStateRestoreCallback",
12211
+ "return": {
12212
+ "type": {
12213
+ "text": "void"
12214
+ }
12215
+ },
12216
+ "parameters": [
12217
+ {
12218
+ "name": "state",
12219
+ "type": {
12220
+ "text": "string | File | FormData | null"
12221
+ }
12222
+ }
12223
+ ],
12224
+ "description": "Restores the value from saved form state (bfcache/autofill)."
12225
+ },
12226
+ {
12227
+ "kind": "method",
12228
+ "name": "#onInput",
12229
+ "privacy": "private",
12230
+ "return": {
12231
+ "type": {
12232
+ "text": "void"
12233
+ }
12234
+ },
12235
+ "parameters": [
12236
+ {
12237
+ "name": "e",
12238
+ "type": {
12239
+ "text": "Event"
12240
+ }
12241
+ }
12242
+ ]
12243
+ },
12244
+ {
12245
+ "kind": "method",
12246
+ "name": "#onChange",
12247
+ "privacy": "private",
12248
+ "return": {
12249
+ "type": {
12250
+ "text": "void"
12251
+ }
12252
+ },
12253
+ "parameters": [
12254
+ {
12255
+ "name": "e",
12256
+ "type": {
12257
+ "text": "Event"
12258
+ }
12259
+ }
12260
+ ]
12261
+ }
12262
+ ],
12263
+ "events": [
12264
+ {
12265
+ "name": "input",
12266
+ "type": {
12267
+ "text": "CustomEvent"
12268
+ },
12269
+ "description": "Fires continuously while dragging/typing; detail: `{ value }`."
12270
+ },
12271
+ {
12272
+ "name": "change",
12273
+ "type": {
12274
+ "text": "CustomEvent"
12275
+ },
12276
+ "description": "Fires once the value is committed (drag released, arrow key released); detail: `{ value }`."
12277
+ }
12278
+ ],
12279
+ "attributes": [
12280
+ {
12281
+ "name": "min",
12282
+ "type": {
12283
+ "text": "number"
12284
+ },
12285
+ "default": "0",
12286
+ "description": "Minimum value.",
12287
+ "fieldName": "min"
12288
+ },
12289
+ {
12290
+ "name": "max",
12291
+ "type": {
12292
+ "text": "number"
12293
+ },
12294
+ "default": "100",
12295
+ "description": "Maximum value.",
12296
+ "fieldName": "max"
12297
+ },
12298
+ {
12299
+ "name": "step",
12300
+ "type": {
12301
+ "text": "number"
12302
+ },
12303
+ "default": "1",
12304
+ "description": "Step increment.",
12305
+ "fieldName": "step"
12306
+ },
12307
+ {
12308
+ "name": "value",
12309
+ "type": {
12310
+ "text": "number"
12311
+ },
12312
+ "default": "0",
12313
+ "description": "Current value.",
12314
+ "fieldName": "value"
12315
+ },
12316
+ {
12317
+ "name": "disabled",
12318
+ "type": {
12319
+ "text": "boolean"
12320
+ },
12321
+ "default": "false",
12322
+ "description": "Disables interaction; merged with an ancestor `<fieldset disabled>`.",
12323
+ "fieldName": "disabled"
12324
+ },
12325
+ {
12326
+ "name": "name",
12327
+ "type": {
12328
+ "text": "string"
12329
+ },
12330
+ "default": "\"\"",
12331
+ "description": "Form field name.",
12332
+ "fieldName": "name"
12333
+ }
12334
+ ],
12335
+ "superclass": {
12336
+ "name": "LitElement",
12337
+ "package": "lit"
12338
+ },
12339
+ "tagName": "range-slider",
12340
+ "customElement": true
12341
+ }
12342
+ ],
12343
+ "exports": [
12344
+ {
12345
+ "kind": "js",
12346
+ "name": "RangeSlider",
12347
+ "declaration": {
12348
+ "name": "RangeSlider",
12349
+ "module": "src/range-slider.ts"
12350
+ }
12351
+ },
12352
+ {
12353
+ "kind": "custom-element-definition",
12354
+ "name": "range-slider",
12355
+ "declaration": {
12356
+ "name": "RangeSlider",
12357
+ "module": "src/range-slider.ts"
12358
+ }
12359
+ }
12360
+ ]
12361
+ },
11862
12362
  {
11863
12363
  "kind": "javascript-module",
11864
12364
  "path": "src/relative-time.ts",
@@ -13979,7 +14479,7 @@
13979
14479
  "declarations": [
13980
14480
  {
13981
14481
  "kind": "class",
13982
- "description": "A form-associated boolean checkbox, usable standalone or inside a native\n`<form>`. Submits `name=on` when checked (matching native\n`<input type=\"checkbox\">` semantics) and participates fully in form\n`reset()`, ancestor `<fieldset disabled>`, and `required` validity.\n\nRenders a native `<input type=\"checkbox\">` wrapped in a `<label>`, styled\nvia `:has()` on the wrapping label (matching `radio-pills`/`radio-cards`)\nrather than styling the native input directly; the checkbox itself renders\nat `1rem`, matching the existing radio-input convention.",
14482
+ "description": "A form-associated boolean checkbox, usable standalone or inside a native\n`<form>`. Submits `name=on` when checked (matching native\n`<input type=\"checkbox\">` semantics) and participates fully in form\n`reset()`, ancestor `<fieldset disabled>`, and `required` validity.\n\nRenders a native `<input type=\"checkbox\">` wrapped in a `<label>`, styled\nvia `:has()` on the wrapping label (matching `radio-pills`/`radio-cards`)\nrather than styling the native input directly; the checkbox itself renders\nat `1rem`, matching the existing radio-input convention. An optional\npre-rendered `icon` (matching `form-select`'s per-option icon convention)\nrenders between the box and the label, inside the same clickable `<label>`\n— for a row that pairs a checkbox with an icon/swatch and needs the whole\nrow, icon included, to stay one click target.",
13983
14483
  "name": "UiCheckbox",
13984
14484
  "members": [
13985
14485
  {
@@ -14051,6 +14551,25 @@
14051
14551
  "description": "Visible label text rendered next to the box.",
14052
14552
  "attribute": "label"
14053
14553
  },
14554
+ {
14555
+ "kind": "field",
14556
+ "name": "icon",
14557
+ "type": {
14558
+ "text": "TemplateResult | null"
14559
+ },
14560
+ "default": "null",
14561
+ "description": "Pre-rendered icon template displayed between the box and the label, e.g. `iconPencil(14)` from this package's icon set."
14562
+ },
14563
+ {
14564
+ "kind": "field",
14565
+ "name": "iconSize",
14566
+ "type": {
14567
+ "text": "number"
14568
+ },
14569
+ "default": "14",
14570
+ "description": "Square icon size in pixels — 14 (inline icon size) by default.",
14571
+ "attribute": "iconSize"
14572
+ },
14054
14573
  {
14055
14574
  "kind": "field",
14056
14575
  "name": "_formDisabled",
@@ -14246,6 +14765,15 @@
14246
14765
  "default": "\"\"",
14247
14766
  "description": "Visible label text rendered next to the box.",
14248
14767
  "fieldName": "label"
14768
+ },
14769
+ {
14770
+ "name": "iconSize",
14771
+ "type": {
14772
+ "text": "number"
14773
+ },
14774
+ "default": "14",
14775
+ "description": "Square icon size in pixels — 14 (inline icon size) by default.",
14776
+ "fieldName": "iconSize"
14249
14777
  }
14250
14778
  ],
14251
14779
  "superclass": {
package/dist/index.d.ts CHANGED
@@ -22,8 +22,10 @@ export { AutocompleteInput, type AutocompleteOption, } from "./autocomplete-inpu
22
22
  export { UserAvatar } from "./user-avatar.js";
23
23
  export { MapPin } from "./map-pin.js";
24
24
  export { MapCircle } from "./map-circle.js";
25
+ export { MapboxMap } from "./mapbox-map.js";
25
26
  export { RadioCards, type RadioCardOption } from "./radio-cards.js";
26
27
  export { RadioPills, type RadioPillOption } from "./radio-pills.js";
28
+ export { RangeSlider } from "./range-slider.js";
27
29
  export { ButtonGroup, type ButtonGroupOption } from "./button-group.js";
28
30
  export { UiButton, type ButtonVariant } from "./ui-button.js";
29
31
  export { StatMeter } from "./stat-meter.js";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/dist/index.js CHANGED
@@ -22,8 +22,10 @@ export { AutocompleteInput, } from "./autocomplete-input.js";
22
22
  export { UserAvatar } from "./user-avatar.js";
23
23
  export { MapPin } from "./map-pin.js";
24
24
  export { MapCircle } from "./map-circle.js";
25
+ export { MapboxMap } from "./mapbox-map.js";
25
26
  export { RadioCards } from "./radio-cards.js";
26
27
  export { RadioPills } from "./radio-pills.js";
28
+ export { RangeSlider } from "./range-slider.js";
27
29
  export { ButtonGroup } from "./button-group.js";
28
30
  export { UiButton } from "./ui-button.js";
29
31
  export { StatMeter } from "./stat-meter.js";
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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","sourcesContent":["export { AnimateConfetti } from \"./animate-confetti.js\";\nexport { GalleryItem } from \"./gallery-item.js\";\nexport { GalleryItemVariant } from \"./gallery-item-variant.js\";\nexport {\n PhotoGallery,\n type PhotoGalleryChangeReason,\n type PhotoGalleryObjectFit,\n type PhotoGallerySlideChangeDetail,\n} from \"./photo-gallery.js\";\nexport { RevealButton } from \"./reveal-button.js\";\nexport { RomanNumeral } from \"./roman-numeral.js\";\nexport { ConfirmDialog } from \"./confirm-dialog.js\";\nexport { ContentDivider } from \"./content-divider.js\";\nexport {\n ToastNotification,\n notifySuccess,\n notifyError,\n notifyInfo,\n notifyWarning,\n type ToastVariant,\n} from \"./toast-notification.js\";\nexport { ScrollToBottom } from \"./scroll-to-bottom.js\";\nexport { ScrollToTop } from \"./scroll-to-top.js\";\nexport { SlidePanel } from \"./slide-panel.js\";\nexport { CopyLinkButton } from \"./copy-link-button.js\";\nexport { RelativeTime } from \"./relative-time.js\";\nexport { DistanceValue } from \"./distance-value.js\";\nexport { PriceHistoryChart, type PricePoint } from \"./price-history-chart.js\";\nexport { DistributionChart, type DistributionValue } from \"./distribution-chart.js\";\nexport { PercentBarChart, type PercentBarGroup } from \"./percent-bar-chart.js\";\nexport { WeightBarChart, type WeightBarItem } from \"./weight-bar-chart.js\";\nexport {\n AddressAutocomplete,\n type AddressSuggestion,\n} from \"./address-autocomplete.js\";\nexport {\n AutocompleteInput,\n type AutocompleteOption,\n} from \"./autocomplete-input.js\";\nexport { UserAvatar } from \"./user-avatar.js\";\nexport { MapPin } from \"./map-pin.js\";\nexport { MapCircle } from \"./map-circle.js\";\nexport { RadioCards, type RadioCardOption } from \"./radio-cards.js\";\nexport { RadioPills, type RadioPillOption } from \"./radio-pills.js\";\nexport { ButtonGroup, type ButtonGroupOption } from \"./button-group.js\";\nexport { UiButton, type ButtonVariant } from \"./ui-button.js\";\nexport { StatMeter } from \"./stat-meter.js\";\nexport { StatusPill, type StatusPillColor } from \"./status-pill.js\";\nexport { EditableText } from \"./editable-text.js\";\nexport { LiveTimer } from \"./live-timer.js\";\nexport { LoadMore } from \"./load-more.js\";\nexport { LoadingSpinner } from \"./loading-spinner.js\";\nexport { LoadingDots } from \"./loading-dots.js\";\nexport {\n ChatMessage,\n type ChatMessageRole,\n type ChatMessageVariant,\n} from \"./chat-message.js\";\nexport { UiCheckbox } from \"./ui-checkbox.js\";\nexport { FormField } from \"./form-field.js\";\nexport { FormSelect, type SelectOption } from \"./form-select.js\";\nexport {\n MultiSelect,\n type MultiSelectOption,\n type MultiSelectVariant,\n} from \"./multi-select.js\";\nexport { DataTable, type DataTableColumn } from \"./data-table.js\";\nexport { TileGrid } from \"./tile-grid.js\";\nexport { TreeView, type TreeNode } from \"./tree-view.js\";\nexport { PopoverPanel } from \"./popover-panel.js\";\nexport { DropdownButton, type DropdownOption } from \"./dropdown-button.js\";\nexport { IconButton } from \"./icon-button.js\";\nexport { KbdHint, type KbdPlatform } from \"./kbd-hint.js\";\nexport { FrameBox } from \"./frame-box.js\";\nexport { AppShell, type SidebarToggleDetail } from \"./app-shell.js\";\nexport { AppSidebar } from \"./app-sidebar.js\";\nexport { ActionBar } from \"./action-bar.js\";\nexport { PageHeader } from \"./page-header.js\";\nexport { PaginationNav, type PageChangeDetail } from \"./pagination-nav.js\";\nexport { FormActions } from \"./form-actions.js\";\nexport { TimelineContainer } from \"./timeline-container.js\";\nexport { TimelineEntry } from \"./timeline-entry.js\";\nexport { CalendarEntry } from \"./calendar-entry.js\";\nexport { CalendarMonth } from \"./calendar-month.js\";\nexport { CalendarYear } from \"./calendar-year.js\";\nexport {\n KanbanBoard,\n type KanbanCardData,\n type KanbanColumnData,\n type KanbanCardMoveDetail,\n type KanbanCardOpenDetail,\n} from \"./kanban-board.js\";\nexport { KanbanColumn } from \"./kanban-column.js\";\nexport { KanbanCard } from \"./kanban-card.js\";\nexport { TextArea } from \"./text-area.js\";\nexport { LinkCard, type LinkCardStatus } from \"./link-card.js\";\nexport { CardGrid } from \"./card-grid.js\";\nexport { MarkdownView } from \"./markdown-view.js\";\nexport { AutoScroll } from \"./auto-scroll.js\";\nexport { formatDuration, type DurationFormat } from \"./utils/duration.js\";\nexport { tokens, tokenValues, darkTokenValues } from \"./tokens.js\";\nexport * from \"./icons.js\";\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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","sourcesContent":["export { AnimateConfetti } from \"./animate-confetti.js\";\nexport { GalleryItem } from \"./gallery-item.js\";\nexport { GalleryItemVariant } from \"./gallery-item-variant.js\";\nexport {\n PhotoGallery,\n type PhotoGalleryChangeReason,\n type PhotoGalleryObjectFit,\n type PhotoGallerySlideChangeDetail,\n} from \"./photo-gallery.js\";\nexport { RevealButton } from \"./reveal-button.js\";\nexport { RomanNumeral } from \"./roman-numeral.js\";\nexport { ConfirmDialog } from \"./confirm-dialog.js\";\nexport { ContentDivider } from \"./content-divider.js\";\nexport {\n ToastNotification,\n notifySuccess,\n notifyError,\n notifyInfo,\n notifyWarning,\n type ToastVariant,\n} from \"./toast-notification.js\";\nexport { ScrollToBottom } from \"./scroll-to-bottom.js\";\nexport { ScrollToTop } from \"./scroll-to-top.js\";\nexport { SlidePanel } from \"./slide-panel.js\";\nexport { CopyLinkButton } from \"./copy-link-button.js\";\nexport { RelativeTime } from \"./relative-time.js\";\nexport { DistanceValue } from \"./distance-value.js\";\nexport { PriceHistoryChart, type PricePoint } from \"./price-history-chart.js\";\nexport { DistributionChart, type DistributionValue } from \"./distribution-chart.js\";\nexport { PercentBarChart, type PercentBarGroup } from \"./percent-bar-chart.js\";\nexport { WeightBarChart, type WeightBarItem } from \"./weight-bar-chart.js\";\nexport {\n AddressAutocomplete,\n type AddressSuggestion,\n} from \"./address-autocomplete.js\";\nexport {\n AutocompleteInput,\n type AutocompleteOption,\n} from \"./autocomplete-input.js\";\nexport { UserAvatar } from \"./user-avatar.js\";\nexport { MapPin } from \"./map-pin.js\";\nexport { MapCircle } from \"./map-circle.js\";\nexport { MapboxMap } from \"./mapbox-map.js\";\nexport { RadioCards, type RadioCardOption } from \"./radio-cards.js\";\nexport { RadioPills, type RadioPillOption } from \"./radio-pills.js\";\nexport { RangeSlider } from \"./range-slider.js\";\nexport { ButtonGroup, type ButtonGroupOption } from \"./button-group.js\";\nexport { UiButton, type ButtonVariant } from \"./ui-button.js\";\nexport { StatMeter } from \"./stat-meter.js\";\nexport { StatusPill, type StatusPillColor } from \"./status-pill.js\";\nexport { EditableText } from \"./editable-text.js\";\nexport { LiveTimer } from \"./live-timer.js\";\nexport { LoadMore } from \"./load-more.js\";\nexport { LoadingSpinner } from \"./loading-spinner.js\";\nexport { LoadingDots } from \"./loading-dots.js\";\nexport {\n ChatMessage,\n type ChatMessageRole,\n type ChatMessageVariant,\n} from \"./chat-message.js\";\nexport { UiCheckbox } from \"./ui-checkbox.js\";\nexport { FormField } from \"./form-field.js\";\nexport { FormSelect, type SelectOption } from \"./form-select.js\";\nexport {\n MultiSelect,\n type MultiSelectOption,\n type MultiSelectVariant,\n} from \"./multi-select.js\";\nexport { DataTable, type DataTableColumn } from \"./data-table.js\";\nexport { TileGrid } from \"./tile-grid.js\";\nexport { TreeView, type TreeNode } from \"./tree-view.js\";\nexport { PopoverPanel } from \"./popover-panel.js\";\nexport { DropdownButton, type DropdownOption } from \"./dropdown-button.js\";\nexport { IconButton } from \"./icon-button.js\";\nexport { KbdHint, type KbdPlatform } from \"./kbd-hint.js\";\nexport { FrameBox } from \"./frame-box.js\";\nexport { AppShell, type SidebarToggleDetail } from \"./app-shell.js\";\nexport { AppSidebar } from \"./app-sidebar.js\";\nexport { ActionBar } from \"./action-bar.js\";\nexport { PageHeader } from \"./page-header.js\";\nexport { PaginationNav, type PageChangeDetail } from \"./pagination-nav.js\";\nexport { FormActions } from \"./form-actions.js\";\nexport { TimelineContainer } from \"./timeline-container.js\";\nexport { TimelineEntry } from \"./timeline-entry.js\";\nexport { CalendarEntry } from \"./calendar-entry.js\";\nexport { CalendarMonth } from \"./calendar-month.js\";\nexport { CalendarYear } from \"./calendar-year.js\";\nexport {\n KanbanBoard,\n type KanbanCardData,\n type KanbanColumnData,\n type KanbanCardMoveDetail,\n type KanbanCardOpenDetail,\n} from \"./kanban-board.js\";\nexport { KanbanColumn } from \"./kanban-column.js\";\nexport { KanbanCard } from \"./kanban-card.js\";\nexport { TextArea } from \"./text-area.js\";\nexport { LinkCard, type LinkCardStatus } from \"./link-card.js\";\nexport { CardGrid } from \"./card-grid.js\";\nexport { MarkdownView } from \"./markdown-view.js\";\nexport { AutoScroll } from \"./auto-scroll.js\";\nexport { formatDuration, type DurationFormat } from \"./utils/duration.js\";\nexport { tokens, tokenValues, darkTokenValues } from \"./tokens.js\";\nexport * from \"./icons.js\";\n"]}