@f-ewald/components 1.16.0 → 1.18.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 +2 -0
- package/custom-elements.json +620 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/mapbox-map.d.ts +59 -0
- package/dist/mapbox-map.d.ts.map +1 -0
- package/dist/mapbox-map.js +144 -0
- package/dist/mapbox-map.js.map +1 -0
- package/dist/range-slider.d.ts +48 -0
- package/dist/range-slider.d.ts.map +1 -0
- package/dist/range-slider.js +240 -0
- package/dist/range-slider.js.map +1 -0
- package/dist/split-hero.d.ts +26 -0
- package/dist/split-hero.d.ts.map +1 -0
- package/dist/split-hero.js +132 -0
- package/dist/split-hero.js.map +1 -0
- package/dist/ui-checkbox.d.ts +11 -3
- package/dist/ui-checkbox.d.ts.map +1 -1
- package/dist/ui-checkbox.js +31 -2
- package/dist/ui-checkbox.js.map +1 -1
- package/docs/mapbox-map.md +62 -0
- package/docs/range-slider.md +59 -0
- package/docs/split-hero.md +55 -0
- package/docs/ui-checkbox.md +9 -1
- package/llms.txt +100 -2
- package/package.json +3 -1
package/custom-elements.json
CHANGED
|
@@ -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",
|
|
@@ -7181,6 +7197,14 @@
|
|
|
7181
7197
|
"module": "./auto-scroll.js"
|
|
7182
7198
|
}
|
|
7183
7199
|
},
|
|
7200
|
+
{
|
|
7201
|
+
"kind": "js",
|
|
7202
|
+
"name": "SplitHero",
|
|
7203
|
+
"declaration": {
|
|
7204
|
+
"name": "SplitHero",
|
|
7205
|
+
"module": "./split-hero.js"
|
|
7206
|
+
}
|
|
7207
|
+
},
|
|
7184
7208
|
{
|
|
7185
7209
|
"kind": "js",
|
|
7186
7210
|
"name": "formatDuration",
|
|
@@ -9048,6 +9072,188 @@
|
|
|
9048
9072
|
}
|
|
9049
9073
|
]
|
|
9050
9074
|
},
|
|
9075
|
+
{
|
|
9076
|
+
"kind": "javascript-module",
|
|
9077
|
+
"path": "src/mapbox-map.ts",
|
|
9078
|
+
"declarations": [
|
|
9079
|
+
{
|
|
9080
|
+
"kind": "class",
|
|
9081
|
+
"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.",
|
|
9082
|
+
"name": "MapboxMap",
|
|
9083
|
+
"members": [
|
|
9084
|
+
{
|
|
9085
|
+
"kind": "field",
|
|
9086
|
+
"name": "accessToken",
|
|
9087
|
+
"type": {
|
|
9088
|
+
"text": "string"
|
|
9089
|
+
},
|
|
9090
|
+
"default": "\"\"",
|
|
9091
|
+
"description": "Mapbox access token. Required before the map can be constructed.",
|
|
9092
|
+
"attribute": "access-token"
|
|
9093
|
+
},
|
|
9094
|
+
{
|
|
9095
|
+
"kind": "field",
|
|
9096
|
+
"name": "styleUrl",
|
|
9097
|
+
"type": {
|
|
9098
|
+
"text": "string"
|
|
9099
|
+
},
|
|
9100
|
+
"default": "\"\"",
|
|
9101
|
+
"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.",
|
|
9102
|
+
"attribute": "style-url"
|
|
9103
|
+
},
|
|
9104
|
+
{
|
|
9105
|
+
"kind": "field",
|
|
9106
|
+
"name": "center",
|
|
9107
|
+
"type": {
|
|
9108
|
+
"text": "[number, number]"
|
|
9109
|
+
},
|
|
9110
|
+
"default": "[0, 0]",
|
|
9111
|
+
"description": "Initial center as `[lng, lat]`. Only read at construction time."
|
|
9112
|
+
},
|
|
9113
|
+
{
|
|
9114
|
+
"kind": "field",
|
|
9115
|
+
"name": "zoom",
|
|
9116
|
+
"type": {
|
|
9117
|
+
"text": "number"
|
|
9118
|
+
},
|
|
9119
|
+
"default": "0",
|
|
9120
|
+
"description": "Initial zoom level. Only read at construction time.",
|
|
9121
|
+
"attribute": "zoom"
|
|
9122
|
+
},
|
|
9123
|
+
{
|
|
9124
|
+
"kind": "field",
|
|
9125
|
+
"name": "mapContainer",
|
|
9126
|
+
"type": {
|
|
9127
|
+
"text": "HTMLDivElement"
|
|
9128
|
+
},
|
|
9129
|
+
"privacy": "private"
|
|
9130
|
+
},
|
|
9131
|
+
{
|
|
9132
|
+
"kind": "field",
|
|
9133
|
+
"name": "map",
|
|
9134
|
+
"type": {
|
|
9135
|
+
"text": "mapboxgl.Map | undefined"
|
|
9136
|
+
},
|
|
9137
|
+
"privacy": "private"
|
|
9138
|
+
},
|
|
9139
|
+
{
|
|
9140
|
+
"kind": "field",
|
|
9141
|
+
"name": "mapLoaded",
|
|
9142
|
+
"type": {
|
|
9143
|
+
"text": "boolean"
|
|
9144
|
+
},
|
|
9145
|
+
"privacy": "private",
|
|
9146
|
+
"default": "false"
|
|
9147
|
+
},
|
|
9148
|
+
{
|
|
9149
|
+
"kind": "field",
|
|
9150
|
+
"name": "currentStyleUrl",
|
|
9151
|
+
"type": {
|
|
9152
|
+
"text": "string | undefined"
|
|
9153
|
+
},
|
|
9154
|
+
"privacy": "private"
|
|
9155
|
+
},
|
|
9156
|
+
{
|
|
9157
|
+
"kind": "field",
|
|
9158
|
+
"name": "resizeObserver",
|
|
9159
|
+
"type": {
|
|
9160
|
+
"text": "ResizeObserver | undefined"
|
|
9161
|
+
},
|
|
9162
|
+
"privacy": "private"
|
|
9163
|
+
},
|
|
9164
|
+
{
|
|
9165
|
+
"kind": "method",
|
|
9166
|
+
"name": "getMap",
|
|
9167
|
+
"return": {
|
|
9168
|
+
"type": {
|
|
9169
|
+
"text": "mapboxgl.Map | undefined"
|
|
9170
|
+
}
|
|
9171
|
+
},
|
|
9172
|
+
"description": "The live `mapboxgl.Map` instance, once constructed (also available via `map-ready`'s event detail)."
|
|
9173
|
+
},
|
|
9174
|
+
{
|
|
9175
|
+
"kind": "method",
|
|
9176
|
+
"name": "#initializeMap",
|
|
9177
|
+
"privacy": "private",
|
|
9178
|
+
"return": {
|
|
9179
|
+
"type": {
|
|
9180
|
+
"text": "void"
|
|
9181
|
+
}
|
|
9182
|
+
}
|
|
9183
|
+
}
|
|
9184
|
+
],
|
|
9185
|
+
"events": [
|
|
9186
|
+
{
|
|
9187
|
+
"name": "map-style-reloaded",
|
|
9188
|
+
"type": {
|
|
9189
|
+
"text": "CustomEvent"
|
|
9190
|
+
},
|
|
9191
|
+
"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 }`."
|
|
9192
|
+
},
|
|
9193
|
+
{
|
|
9194
|
+
"name": "map-ready",
|
|
9195
|
+
"type": {
|
|
9196
|
+
"text": "CustomEvent"
|
|
9197
|
+
},
|
|
9198
|
+
"description": "The map (and, if `styleUrl` changed before the initial load finished, its final requested style) has finished loading; detail: `{ map: mapboxgl.Map }`."
|
|
9199
|
+
}
|
|
9200
|
+
],
|
|
9201
|
+
"attributes": [
|
|
9202
|
+
{
|
|
9203
|
+
"name": "access-token",
|
|
9204
|
+
"type": {
|
|
9205
|
+
"text": "string"
|
|
9206
|
+
},
|
|
9207
|
+
"default": "\"\"",
|
|
9208
|
+
"description": "Mapbox access token. Required before the map can be constructed.",
|
|
9209
|
+
"fieldName": "accessToken"
|
|
9210
|
+
},
|
|
9211
|
+
{
|
|
9212
|
+
"name": "style-url",
|
|
9213
|
+
"type": {
|
|
9214
|
+
"text": "string"
|
|
9215
|
+
},
|
|
9216
|
+
"default": "\"\"",
|
|
9217
|
+
"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.",
|
|
9218
|
+
"fieldName": "styleUrl"
|
|
9219
|
+
},
|
|
9220
|
+
{
|
|
9221
|
+
"name": "zoom",
|
|
9222
|
+
"type": {
|
|
9223
|
+
"text": "number"
|
|
9224
|
+
},
|
|
9225
|
+
"default": "0",
|
|
9226
|
+
"description": "Initial zoom level. Only read at construction time.",
|
|
9227
|
+
"fieldName": "zoom"
|
|
9228
|
+
}
|
|
9229
|
+
],
|
|
9230
|
+
"superclass": {
|
|
9231
|
+
"name": "LitElement",
|
|
9232
|
+
"package": "lit"
|
|
9233
|
+
},
|
|
9234
|
+
"tagName": "mapbox-map",
|
|
9235
|
+
"customElement": true
|
|
9236
|
+
}
|
|
9237
|
+
],
|
|
9238
|
+
"exports": [
|
|
9239
|
+
{
|
|
9240
|
+
"kind": "js",
|
|
9241
|
+
"name": "MapboxMap",
|
|
9242
|
+
"declaration": {
|
|
9243
|
+
"name": "MapboxMap",
|
|
9244
|
+
"module": "src/mapbox-map.ts"
|
|
9245
|
+
}
|
|
9246
|
+
},
|
|
9247
|
+
{
|
|
9248
|
+
"kind": "custom-element-definition",
|
|
9249
|
+
"name": "mapbox-map",
|
|
9250
|
+
"declaration": {
|
|
9251
|
+
"name": "MapboxMap",
|
|
9252
|
+
"module": "src/mapbox-map.ts"
|
|
9253
|
+
}
|
|
9254
|
+
}
|
|
9255
|
+
]
|
|
9256
|
+
},
|
|
9051
9257
|
{
|
|
9052
9258
|
"kind": "javascript-module",
|
|
9053
9259
|
"path": "src/markdown-view.ts",
|
|
@@ -11859,6 +12065,308 @@
|
|
|
11859
12065
|
}
|
|
11860
12066
|
]
|
|
11861
12067
|
},
|
|
12068
|
+
{
|
|
12069
|
+
"kind": "javascript-module",
|
|
12070
|
+
"path": "src/range-slider.ts",
|
|
12071
|
+
"declarations": [
|
|
12072
|
+
{
|
|
12073
|
+
"kind": "class",
|
|
12074
|
+
"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`.",
|
|
12075
|
+
"name": "RangeSlider",
|
|
12076
|
+
"members": [
|
|
12077
|
+
{
|
|
12078
|
+
"kind": "field",
|
|
12079
|
+
"name": "formAssociated",
|
|
12080
|
+
"type": {
|
|
12081
|
+
"text": "boolean"
|
|
12082
|
+
},
|
|
12083
|
+
"static": true,
|
|
12084
|
+
"default": "true"
|
|
12085
|
+
},
|
|
12086
|
+
{
|
|
12087
|
+
"kind": "field",
|
|
12088
|
+
"name": "min",
|
|
12089
|
+
"type": {
|
|
12090
|
+
"text": "number"
|
|
12091
|
+
},
|
|
12092
|
+
"default": "0",
|
|
12093
|
+
"description": "Minimum value.",
|
|
12094
|
+
"attribute": "min"
|
|
12095
|
+
},
|
|
12096
|
+
{
|
|
12097
|
+
"kind": "field",
|
|
12098
|
+
"name": "max",
|
|
12099
|
+
"type": {
|
|
12100
|
+
"text": "number"
|
|
12101
|
+
},
|
|
12102
|
+
"default": "100",
|
|
12103
|
+
"description": "Maximum value.",
|
|
12104
|
+
"attribute": "max"
|
|
12105
|
+
},
|
|
12106
|
+
{
|
|
12107
|
+
"kind": "field",
|
|
12108
|
+
"name": "step",
|
|
12109
|
+
"type": {
|
|
12110
|
+
"text": "number"
|
|
12111
|
+
},
|
|
12112
|
+
"default": "1",
|
|
12113
|
+
"description": "Step increment.",
|
|
12114
|
+
"attribute": "step"
|
|
12115
|
+
},
|
|
12116
|
+
{
|
|
12117
|
+
"kind": "field",
|
|
12118
|
+
"name": "value",
|
|
12119
|
+
"type": {
|
|
12120
|
+
"text": "number"
|
|
12121
|
+
},
|
|
12122
|
+
"default": "0",
|
|
12123
|
+
"description": "Current value.",
|
|
12124
|
+
"attribute": "value"
|
|
12125
|
+
},
|
|
12126
|
+
{
|
|
12127
|
+
"kind": "field",
|
|
12128
|
+
"name": "disabled",
|
|
12129
|
+
"type": {
|
|
12130
|
+
"text": "boolean"
|
|
12131
|
+
},
|
|
12132
|
+
"default": "false",
|
|
12133
|
+
"description": "Disables interaction; merged with an ancestor `<fieldset disabled>`.",
|
|
12134
|
+
"attribute": "disabled"
|
|
12135
|
+
},
|
|
12136
|
+
{
|
|
12137
|
+
"kind": "field",
|
|
12138
|
+
"name": "name",
|
|
12139
|
+
"type": {
|
|
12140
|
+
"text": "string"
|
|
12141
|
+
},
|
|
12142
|
+
"default": "\"\"",
|
|
12143
|
+
"description": "Form field name.",
|
|
12144
|
+
"attribute": "name"
|
|
12145
|
+
},
|
|
12146
|
+
{
|
|
12147
|
+
"kind": "field",
|
|
12148
|
+
"name": "_formDisabled",
|
|
12149
|
+
"type": {
|
|
12150
|
+
"text": "boolean"
|
|
12151
|
+
},
|
|
12152
|
+
"privacy": "private",
|
|
12153
|
+
"default": "false"
|
|
12154
|
+
},
|
|
12155
|
+
{
|
|
12156
|
+
"kind": "field",
|
|
12157
|
+
"name": "#internals",
|
|
12158
|
+
"privacy": "private"
|
|
12159
|
+
},
|
|
12160
|
+
{
|
|
12161
|
+
"kind": "field",
|
|
12162
|
+
"name": "#defaultValue",
|
|
12163
|
+
"privacy": "private",
|
|
12164
|
+
"type": {
|
|
12165
|
+
"text": "number"
|
|
12166
|
+
},
|
|
12167
|
+
"default": "0"
|
|
12168
|
+
},
|
|
12169
|
+
{
|
|
12170
|
+
"kind": "field",
|
|
12171
|
+
"name": "#isDisabled",
|
|
12172
|
+
"privacy": "private",
|
|
12173
|
+
"type": {
|
|
12174
|
+
"text": "boolean"
|
|
12175
|
+
},
|
|
12176
|
+
"description": "Whether the host or an ancestor fieldset currently disables the control.",
|
|
12177
|
+
"readonly": true
|
|
12178
|
+
},
|
|
12179
|
+
{
|
|
12180
|
+
"kind": "field",
|
|
12181
|
+
"name": "#percent",
|
|
12182
|
+
"privacy": "private",
|
|
12183
|
+
"type": {
|
|
12184
|
+
"text": "number"
|
|
12185
|
+
},
|
|
12186
|
+
"readonly": true
|
|
12187
|
+
},
|
|
12188
|
+
{
|
|
12189
|
+
"kind": "method",
|
|
12190
|
+
"name": "formResetCallback",
|
|
12191
|
+
"return": {
|
|
12192
|
+
"type": {
|
|
12193
|
+
"text": "void"
|
|
12194
|
+
}
|
|
12195
|
+
},
|
|
12196
|
+
"description": "Resets to the value present at first render, per the form contract."
|
|
12197
|
+
},
|
|
12198
|
+
{
|
|
12199
|
+
"kind": "method",
|
|
12200
|
+
"name": "formDisabledCallback",
|
|
12201
|
+
"return": {
|
|
12202
|
+
"type": {
|
|
12203
|
+
"text": "void"
|
|
12204
|
+
}
|
|
12205
|
+
},
|
|
12206
|
+
"parameters": [
|
|
12207
|
+
{
|
|
12208
|
+
"name": "disabled",
|
|
12209
|
+
"type": {
|
|
12210
|
+
"text": "boolean"
|
|
12211
|
+
}
|
|
12212
|
+
}
|
|
12213
|
+
],
|
|
12214
|
+
"description": "Mirrors an ancestor fieldset's disabled state."
|
|
12215
|
+
},
|
|
12216
|
+
{
|
|
12217
|
+
"kind": "method",
|
|
12218
|
+
"name": "formStateRestoreCallback",
|
|
12219
|
+
"return": {
|
|
12220
|
+
"type": {
|
|
12221
|
+
"text": "void"
|
|
12222
|
+
}
|
|
12223
|
+
},
|
|
12224
|
+
"parameters": [
|
|
12225
|
+
{
|
|
12226
|
+
"name": "state",
|
|
12227
|
+
"type": {
|
|
12228
|
+
"text": "string | File | FormData | null"
|
|
12229
|
+
}
|
|
12230
|
+
}
|
|
12231
|
+
],
|
|
12232
|
+
"description": "Restores the value from saved form state (bfcache/autofill)."
|
|
12233
|
+
},
|
|
12234
|
+
{
|
|
12235
|
+
"kind": "method",
|
|
12236
|
+
"name": "#onInput",
|
|
12237
|
+
"privacy": "private",
|
|
12238
|
+
"return": {
|
|
12239
|
+
"type": {
|
|
12240
|
+
"text": "void"
|
|
12241
|
+
}
|
|
12242
|
+
},
|
|
12243
|
+
"parameters": [
|
|
12244
|
+
{
|
|
12245
|
+
"name": "e",
|
|
12246
|
+
"type": {
|
|
12247
|
+
"text": "Event"
|
|
12248
|
+
}
|
|
12249
|
+
}
|
|
12250
|
+
]
|
|
12251
|
+
},
|
|
12252
|
+
{
|
|
12253
|
+
"kind": "method",
|
|
12254
|
+
"name": "#onChange",
|
|
12255
|
+
"privacy": "private",
|
|
12256
|
+
"return": {
|
|
12257
|
+
"type": {
|
|
12258
|
+
"text": "void"
|
|
12259
|
+
}
|
|
12260
|
+
},
|
|
12261
|
+
"parameters": [
|
|
12262
|
+
{
|
|
12263
|
+
"name": "e",
|
|
12264
|
+
"type": {
|
|
12265
|
+
"text": "Event"
|
|
12266
|
+
}
|
|
12267
|
+
}
|
|
12268
|
+
]
|
|
12269
|
+
}
|
|
12270
|
+
],
|
|
12271
|
+
"events": [
|
|
12272
|
+
{
|
|
12273
|
+
"name": "input",
|
|
12274
|
+
"type": {
|
|
12275
|
+
"text": "CustomEvent"
|
|
12276
|
+
},
|
|
12277
|
+
"description": "Fires continuously while dragging/typing; detail: `{ value }`."
|
|
12278
|
+
},
|
|
12279
|
+
{
|
|
12280
|
+
"name": "change",
|
|
12281
|
+
"type": {
|
|
12282
|
+
"text": "CustomEvent"
|
|
12283
|
+
},
|
|
12284
|
+
"description": "Fires once the value is committed (drag released, arrow key released); detail: `{ value }`."
|
|
12285
|
+
}
|
|
12286
|
+
],
|
|
12287
|
+
"attributes": [
|
|
12288
|
+
{
|
|
12289
|
+
"name": "min",
|
|
12290
|
+
"type": {
|
|
12291
|
+
"text": "number"
|
|
12292
|
+
},
|
|
12293
|
+
"default": "0",
|
|
12294
|
+
"description": "Minimum value.",
|
|
12295
|
+
"fieldName": "min"
|
|
12296
|
+
},
|
|
12297
|
+
{
|
|
12298
|
+
"name": "max",
|
|
12299
|
+
"type": {
|
|
12300
|
+
"text": "number"
|
|
12301
|
+
},
|
|
12302
|
+
"default": "100",
|
|
12303
|
+
"description": "Maximum value.",
|
|
12304
|
+
"fieldName": "max"
|
|
12305
|
+
},
|
|
12306
|
+
{
|
|
12307
|
+
"name": "step",
|
|
12308
|
+
"type": {
|
|
12309
|
+
"text": "number"
|
|
12310
|
+
},
|
|
12311
|
+
"default": "1",
|
|
12312
|
+
"description": "Step increment.",
|
|
12313
|
+
"fieldName": "step"
|
|
12314
|
+
},
|
|
12315
|
+
{
|
|
12316
|
+
"name": "value",
|
|
12317
|
+
"type": {
|
|
12318
|
+
"text": "number"
|
|
12319
|
+
},
|
|
12320
|
+
"default": "0",
|
|
12321
|
+
"description": "Current value.",
|
|
12322
|
+
"fieldName": "value"
|
|
12323
|
+
},
|
|
12324
|
+
{
|
|
12325
|
+
"name": "disabled",
|
|
12326
|
+
"type": {
|
|
12327
|
+
"text": "boolean"
|
|
12328
|
+
},
|
|
12329
|
+
"default": "false",
|
|
12330
|
+
"description": "Disables interaction; merged with an ancestor `<fieldset disabled>`.",
|
|
12331
|
+
"fieldName": "disabled"
|
|
12332
|
+
},
|
|
12333
|
+
{
|
|
12334
|
+
"name": "name",
|
|
12335
|
+
"type": {
|
|
12336
|
+
"text": "string"
|
|
12337
|
+
},
|
|
12338
|
+
"default": "\"\"",
|
|
12339
|
+
"description": "Form field name.",
|
|
12340
|
+
"fieldName": "name"
|
|
12341
|
+
}
|
|
12342
|
+
],
|
|
12343
|
+
"superclass": {
|
|
12344
|
+
"name": "LitElement",
|
|
12345
|
+
"package": "lit"
|
|
12346
|
+
},
|
|
12347
|
+
"tagName": "range-slider",
|
|
12348
|
+
"customElement": true
|
|
12349
|
+
}
|
|
12350
|
+
],
|
|
12351
|
+
"exports": [
|
|
12352
|
+
{
|
|
12353
|
+
"kind": "js",
|
|
12354
|
+
"name": "RangeSlider",
|
|
12355
|
+
"declaration": {
|
|
12356
|
+
"name": "RangeSlider",
|
|
12357
|
+
"module": "src/range-slider.ts"
|
|
12358
|
+
}
|
|
12359
|
+
},
|
|
12360
|
+
{
|
|
12361
|
+
"kind": "custom-element-definition",
|
|
12362
|
+
"name": "range-slider",
|
|
12363
|
+
"declaration": {
|
|
12364
|
+
"name": "RangeSlider",
|
|
12365
|
+
"module": "src/range-slider.ts"
|
|
12366
|
+
}
|
|
12367
|
+
}
|
|
12368
|
+
]
|
|
12369
|
+
},
|
|
11862
12370
|
{
|
|
11863
12371
|
"kind": "javascript-module",
|
|
11864
12372
|
"path": "src/relative-time.ts",
|
|
@@ -12489,6 +12997,89 @@
|
|
|
12489
12997
|
}
|
|
12490
12998
|
]
|
|
12491
12999
|
},
|
|
13000
|
+
{
|
|
13001
|
+
"kind": "javascript-module",
|
|
13002
|
+
"path": "src/split-hero.ts",
|
|
13003
|
+
"declarations": [
|
|
13004
|
+
{
|
|
13005
|
+
"kind": "class",
|
|
13006
|
+
"description": "Full-viewport split layout: a user-supplied photo fills one half, the\ndefault slot (typically a sign-in/sign-up form) fills the other. Below the\nshared 48rem breakpoint the photo becomes a blurred, full-bleed backdrop\nbehind a solid content card instead of disappearing outright.\n\nGive the host a height the same way as `app-shell` (e.g. `height: 100vh`).",
|
|
13007
|
+
"name": "SplitHero",
|
|
13008
|
+
"slots": [
|
|
13009
|
+
{
|
|
13010
|
+
"description": "Form or other content for the non-image half.",
|
|
13011
|
+
"name": ""
|
|
13012
|
+
}
|
|
13013
|
+
],
|
|
13014
|
+
"members": [
|
|
13015
|
+
{
|
|
13016
|
+
"kind": "field",
|
|
13017
|
+
"name": "src",
|
|
13018
|
+
"type": {
|
|
13019
|
+
"text": "string"
|
|
13020
|
+
},
|
|
13021
|
+
"default": "\"\"",
|
|
13022
|
+
"description": "URL of the image filling the visual half; omit to render content full-width.",
|
|
13023
|
+
"attribute": "src"
|
|
13024
|
+
},
|
|
13025
|
+
{
|
|
13026
|
+
"kind": "field",
|
|
13027
|
+
"name": "alt",
|
|
13028
|
+
"type": {
|
|
13029
|
+
"text": "string"
|
|
13030
|
+
},
|
|
13031
|
+
"default": "\"\"",
|
|
13032
|
+
"description": "Accessible alternative text for the image; leave empty for a decorative photo.",
|
|
13033
|
+
"attribute": "alt"
|
|
13034
|
+
}
|
|
13035
|
+
],
|
|
13036
|
+
"attributes": [
|
|
13037
|
+
{
|
|
13038
|
+
"name": "src",
|
|
13039
|
+
"type": {
|
|
13040
|
+
"text": "string"
|
|
13041
|
+
},
|
|
13042
|
+
"default": "\"\"",
|
|
13043
|
+
"description": "URL of the image filling the visual half; omit to render content full-width.",
|
|
13044
|
+
"fieldName": "src"
|
|
13045
|
+
},
|
|
13046
|
+
{
|
|
13047
|
+
"name": "alt",
|
|
13048
|
+
"type": {
|
|
13049
|
+
"text": "string"
|
|
13050
|
+
},
|
|
13051
|
+
"default": "\"\"",
|
|
13052
|
+
"description": "Accessible alternative text for the image; leave empty for a decorative photo.",
|
|
13053
|
+
"fieldName": "alt"
|
|
13054
|
+
}
|
|
13055
|
+
],
|
|
13056
|
+
"superclass": {
|
|
13057
|
+
"name": "LitElement",
|
|
13058
|
+
"package": "lit"
|
|
13059
|
+
},
|
|
13060
|
+
"tagName": "split-hero",
|
|
13061
|
+
"customElement": true
|
|
13062
|
+
}
|
|
13063
|
+
],
|
|
13064
|
+
"exports": [
|
|
13065
|
+
{
|
|
13066
|
+
"kind": "js",
|
|
13067
|
+
"name": "SplitHero",
|
|
13068
|
+
"declaration": {
|
|
13069
|
+
"name": "SplitHero",
|
|
13070
|
+
"module": "src/split-hero.ts"
|
|
13071
|
+
}
|
|
13072
|
+
},
|
|
13073
|
+
{
|
|
13074
|
+
"kind": "custom-element-definition",
|
|
13075
|
+
"name": "split-hero",
|
|
13076
|
+
"declaration": {
|
|
13077
|
+
"name": "SplitHero",
|
|
13078
|
+
"module": "src/split-hero.ts"
|
|
13079
|
+
}
|
|
13080
|
+
}
|
|
13081
|
+
]
|
|
13082
|
+
},
|
|
12492
13083
|
{
|
|
12493
13084
|
"kind": "javascript-module",
|
|
12494
13085
|
"path": "src/stat-meter.ts",
|
|
@@ -13979,7 +14570,7 @@
|
|
|
13979
14570
|
"declarations": [
|
|
13980
14571
|
{
|
|
13981
14572
|
"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.",
|
|
14573
|
+
"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
14574
|
"name": "UiCheckbox",
|
|
13984
14575
|
"members": [
|
|
13985
14576
|
{
|
|
@@ -14051,6 +14642,25 @@
|
|
|
14051
14642
|
"description": "Visible label text rendered next to the box.",
|
|
14052
14643
|
"attribute": "label"
|
|
14053
14644
|
},
|
|
14645
|
+
{
|
|
14646
|
+
"kind": "field",
|
|
14647
|
+
"name": "icon",
|
|
14648
|
+
"type": {
|
|
14649
|
+
"text": "TemplateResult | null"
|
|
14650
|
+
},
|
|
14651
|
+
"default": "null",
|
|
14652
|
+
"description": "Pre-rendered icon template displayed between the box and the label, e.g. `iconPencil(14)` from this package's icon set."
|
|
14653
|
+
},
|
|
14654
|
+
{
|
|
14655
|
+
"kind": "field",
|
|
14656
|
+
"name": "iconSize",
|
|
14657
|
+
"type": {
|
|
14658
|
+
"text": "number"
|
|
14659
|
+
},
|
|
14660
|
+
"default": "14",
|
|
14661
|
+
"description": "Square icon size in pixels — 14 (inline icon size) by default.",
|
|
14662
|
+
"attribute": "iconSize"
|
|
14663
|
+
},
|
|
14054
14664
|
{
|
|
14055
14665
|
"kind": "field",
|
|
14056
14666
|
"name": "_formDisabled",
|
|
@@ -14246,6 +14856,15 @@
|
|
|
14246
14856
|
"default": "\"\"",
|
|
14247
14857
|
"description": "Visible label text rendered next to the box.",
|
|
14248
14858
|
"fieldName": "label"
|
|
14859
|
+
},
|
|
14860
|
+
{
|
|
14861
|
+
"name": "iconSize",
|
|
14862
|
+
"type": {
|
|
14863
|
+
"text": "number"
|
|
14864
|
+
},
|
|
14865
|
+
"default": "14",
|
|
14866
|
+
"description": "Square icon size in pixels — 14 (inline icon size) by default.",
|
|
14867
|
+
"fieldName": "iconSize"
|
|
14249
14868
|
}
|
|
14250
14869
|
],
|
|
14251
14870
|
"superclass": {
|