@f-ewald/components 1.1.1 → 1.2.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 +4 -0
- package/custom-elements.json +2329 -301
- package/dist/form-select.d.ts +5 -4
- package/dist/form-select.d.ts.map +1 -1
- package/dist/form-select.js +6 -5
- package/dist/form-select.js.map +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/kanban-board.d.ts +110 -0
- package/dist/kanban-board.d.ts.map +1 -0
- package/dist/kanban-board.js +619 -0
- package/dist/kanban-board.js.map +1 -0
- package/dist/kanban-card.d.ts +35 -0
- package/dist/kanban-card.d.ts.map +1 -0
- package/dist/kanban-card.js +163 -0
- package/dist/kanban-card.js.map +1 -0
- package/dist/kanban-column.d.ts +30 -0
- package/dist/kanban-column.d.ts.map +1 -0
- package/dist/kanban-column.js +166 -0
- package/dist/kanban-column.js.map +1 -0
- package/dist/multi-select.d.ts +142 -0
- package/dist/multi-select.d.ts.map +1 -0
- package/dist/multi-select.js +1304 -0
- package/dist/multi-select.js.map +1 -0
- package/dist/tokens.css +3 -0
- package/dist/tokens.d.ts.map +1 -1
- package/dist/tokens.js +2 -0
- package/dist/tokens.js.map +1 -1
- package/docs/design-language.md +8 -0
- package/docs/form-select.md +5 -4
- package/docs/kanban-board.md +96 -0
- package/docs/kanban-card.md +56 -0
- package/docs/kanban-column.md +58 -0
- package/docs/multi-select.md +120 -0
- package/llms.txt +182 -4
- package/package.json +1 -1
package/custom-elements.json
CHANGED
|
@@ -3485,7 +3485,7 @@
|
|
|
3485
3485
|
"declarations": [
|
|
3486
3486
|
{
|
|
3487
3487
|
"kind": "class",
|
|
3488
|
-
"description": "A styled dropdown select: a trigger button showing the current option's\nlabel, opening a listbox popover on click. Drop-in generic replacement for\na native `<select>` wherever consistent cross-browser styling and a\n`change` event carrying `{ value }` are wanted (e.g. a task's status\npicker).\n\nThe trigger fills its host's width (`justify-content: space-between`\npushes the chevron to the far edge),
|
|
3488
|
+
"description": "A styled dropdown select: a trigger button showing the current option's\nlabel, opening a listbox popover on click. Drop-in generic replacement for\na native `<select>` wherever consistent cross-browser styling and a\n`change` event carrying `{ value }` are wanted (e.g. a task's status\npicker).\n\nThe trigger fills its host's width (`justify-content: space-between`\npushes the chevron to the far edge), and the host is `display: block`, so a\n`form-select` fills its container's width by default — matching the other\nform fields. To make an instance shrink to its content instead (e.g. in a\nfilter bar or a status picker), constrain the host:\n`form-select { display: inline-block; }` (or `width: fit-content`).\n\nSet `searchable` to replace the button trigger with an editable combobox\nthat filters the predefined options by case-insensitive label infix. Typed\ntext is only a query: `value` changes exclusively when an actual option is\nselected, and an uncommitted query is discarded when the list closes.\nEach option may also provide a pre-rendered `icon` and square `iconSize`;\niconless options reserve no leading space.",
|
|
3489
3489
|
"name": "FormSelect",
|
|
3490
3490
|
"members": [
|
|
3491
3491
|
{
|
|
@@ -5557,6 +5557,30 @@
|
|
|
5557
5557
|
"module": "./form-select.js"
|
|
5558
5558
|
}
|
|
5559
5559
|
},
|
|
5560
|
+
{
|
|
5561
|
+
"kind": "js",
|
|
5562
|
+
"name": "MultiSelect",
|
|
5563
|
+
"declaration": {
|
|
5564
|
+
"name": "MultiSelect",
|
|
5565
|
+
"module": "./multi-select.js"
|
|
5566
|
+
}
|
|
5567
|
+
},
|
|
5568
|
+
{
|
|
5569
|
+
"kind": "js",
|
|
5570
|
+
"name": "MultiSelectOption",
|
|
5571
|
+
"declaration": {
|
|
5572
|
+
"name": "MultiSelectOption",
|
|
5573
|
+
"module": "./multi-select.js"
|
|
5574
|
+
}
|
|
5575
|
+
},
|
|
5576
|
+
{
|
|
5577
|
+
"kind": "js",
|
|
5578
|
+
"name": "MultiSelectVariant",
|
|
5579
|
+
"declaration": {
|
|
5580
|
+
"name": "MultiSelectVariant",
|
|
5581
|
+
"module": "./multi-select.js"
|
|
5582
|
+
}
|
|
5583
|
+
},
|
|
5560
5584
|
{
|
|
5561
5585
|
"kind": "js",
|
|
5562
5586
|
"name": "DataTable",
|
|
@@ -5661,6 +5685,62 @@
|
|
|
5661
5685
|
"module": "./calendar-year.js"
|
|
5662
5686
|
}
|
|
5663
5687
|
},
|
|
5688
|
+
{
|
|
5689
|
+
"kind": "js",
|
|
5690
|
+
"name": "KanbanBoard",
|
|
5691
|
+
"declaration": {
|
|
5692
|
+
"name": "KanbanBoard",
|
|
5693
|
+
"module": "./kanban-board.js"
|
|
5694
|
+
}
|
|
5695
|
+
},
|
|
5696
|
+
{
|
|
5697
|
+
"kind": "js",
|
|
5698
|
+
"name": "KanbanCardData",
|
|
5699
|
+
"declaration": {
|
|
5700
|
+
"name": "KanbanCardData",
|
|
5701
|
+
"module": "./kanban-board.js"
|
|
5702
|
+
}
|
|
5703
|
+
},
|
|
5704
|
+
{
|
|
5705
|
+
"kind": "js",
|
|
5706
|
+
"name": "KanbanColumnData",
|
|
5707
|
+
"declaration": {
|
|
5708
|
+
"name": "KanbanColumnData",
|
|
5709
|
+
"module": "./kanban-board.js"
|
|
5710
|
+
}
|
|
5711
|
+
},
|
|
5712
|
+
{
|
|
5713
|
+
"kind": "js",
|
|
5714
|
+
"name": "KanbanCardMoveDetail",
|
|
5715
|
+
"declaration": {
|
|
5716
|
+
"name": "KanbanCardMoveDetail",
|
|
5717
|
+
"module": "./kanban-board.js"
|
|
5718
|
+
}
|
|
5719
|
+
},
|
|
5720
|
+
{
|
|
5721
|
+
"kind": "js",
|
|
5722
|
+
"name": "KanbanCardOpenDetail",
|
|
5723
|
+
"declaration": {
|
|
5724
|
+
"name": "KanbanCardOpenDetail",
|
|
5725
|
+
"module": "./kanban-board.js"
|
|
5726
|
+
}
|
|
5727
|
+
},
|
|
5728
|
+
{
|
|
5729
|
+
"kind": "js",
|
|
5730
|
+
"name": "KanbanColumn",
|
|
5731
|
+
"declaration": {
|
|
5732
|
+
"name": "KanbanColumn",
|
|
5733
|
+
"module": "./kanban-column.js"
|
|
5734
|
+
}
|
|
5735
|
+
},
|
|
5736
|
+
{
|
|
5737
|
+
"kind": "js",
|
|
5738
|
+
"name": "KanbanCard",
|
|
5739
|
+
"declaration": {
|
|
5740
|
+
"name": "KanbanCard",
|
|
5741
|
+
"module": "./kanban-card.js"
|
|
5742
|
+
}
|
|
5743
|
+
},
|
|
5664
5744
|
{
|
|
5665
5745
|
"kind": "js",
|
|
5666
5746
|
"name": "formatDuration",
|
|
@@ -5713,475 +5793,2423 @@
|
|
|
5713
5793
|
},
|
|
5714
5794
|
{
|
|
5715
5795
|
"kind": "javascript-module",
|
|
5716
|
-
"path": "src/
|
|
5796
|
+
"path": "src/kanban-board.ts",
|
|
5717
5797
|
"declarations": [
|
|
5718
5798
|
{
|
|
5719
5799
|
"kind": "class",
|
|
5720
|
-
"description": "
|
|
5721
|
-
"name": "
|
|
5800
|
+
"description": "A configurable kanban board: a horizontally scrolling row of columns, each\nholding cards. **A card's column is its state** — moving a card to another\ncolumn (by drag-and-drop, keyboard, or the detail popover's state selector)\nchanges its state, and the board emits a single `card-move` for all three.\n\nData-driven: set the `columns` property to `KanbanColumnData[]`. The board\nkeeps its own working copy and mutates it optimistically on every move, so it\nworks standalone; re-assign `columns` at any time to stay controlled from a\nstore. Cards show only their ticket number and title in the overview; the\nfull detail (description, state, created/updated timestamps) opens in a\nscreen-centered `popover-panel`.\n\nPointer drag-and-drop supports both cross-column moves and within-column\nreordering with a live drop indicator (set `reorderable` false to keep only\ncross-column moves when intra-column order isn't persisted). Keyboard parity:\nfocus a card and press Space to pick it up, arrow keys to move it (left/right\nacross columns, up/down within a column), Space to drop, or Escape to cancel;\nEnter opens the detail. Moves are announced in a polite live region, and the\nmoved card briefly flashes a warm highlight so you can see where it landed.\n\nSet `manual` for a server-authoritative board (API + WebSocket/SSE): every\nmove still emits `card-move`, but the board does NOT apply it locally, so it\nreflects only what you assign to `columns` — e.g. the change echoed back over\nthe socket. The default is optimistic local updates.",
|
|
5801
|
+
"name": "KanbanBoard",
|
|
5722
5802
|
"members": [
|
|
5723
5803
|
{
|
|
5724
5804
|
"kind": "field",
|
|
5725
|
-
"name": "
|
|
5805
|
+
"name": "columns",
|
|
5726
5806
|
"type": {
|
|
5727
|
-
"text": "
|
|
5807
|
+
"text": "KanbanColumnData[]"
|
|
5728
5808
|
},
|
|
5729
|
-
"default": "
|
|
5730
|
-
"description": "
|
|
5731
|
-
"attribute": "keys"
|
|
5809
|
+
"default": "[]",
|
|
5810
|
+
"description": "Columns (with their cards) to render, in display order."
|
|
5732
5811
|
},
|
|
5733
5812
|
{
|
|
5734
5813
|
"kind": "field",
|
|
5735
|
-
"name": "
|
|
5814
|
+
"name": "label",
|
|
5736
5815
|
"type": {
|
|
5737
|
-
"text": "
|
|
5816
|
+
"text": "string"
|
|
5738
5817
|
},
|
|
5739
|
-
"default": "\"
|
|
5740
|
-
"description": "
|
|
5741
|
-
"attribute": "
|
|
5818
|
+
"default": "\"Board\"",
|
|
5819
|
+
"description": "Accessible label for the board's group role.",
|
|
5820
|
+
"attribute": "label"
|
|
5742
5821
|
},
|
|
5743
5822
|
{
|
|
5744
5823
|
"kind": "field",
|
|
5745
|
-
"name": "
|
|
5824
|
+
"name": "manual",
|
|
5746
5825
|
"type": {
|
|
5747
5826
|
"text": "boolean"
|
|
5748
5827
|
},
|
|
5749
|
-
"
|
|
5750
|
-
"description": "
|
|
5751
|
-
"
|
|
5828
|
+
"default": "false",
|
|
5829
|
+
"description": "Server-authoritative mode. When true, moves emit `card-move` but are not\napplied to the board locally; it reflects only what you assign to\n`columns` (e.g. echoed back over WebSocket/SSE), keeping the server as the\nsingle source of truth. Defaults to optimistic local updates.",
|
|
5830
|
+
"attribute": "manual",
|
|
5831
|
+
"reflects": true
|
|
5752
5832
|
},
|
|
5753
5833
|
{
|
|
5754
5834
|
"kind": "field",
|
|
5755
|
-
"name": "
|
|
5835
|
+
"name": "reorderable",
|
|
5756
5836
|
"type": {
|
|
5757
|
-
"text": "
|
|
5837
|
+
"text": "boolean"
|
|
5758
5838
|
},
|
|
5759
|
-
"
|
|
5760
|
-
"description": "
|
|
5761
|
-
"
|
|
5762
|
-
|
|
5763
|
-
|
|
5764
|
-
"attributes": [
|
|
5839
|
+
"default": "true",
|
|
5840
|
+
"description": "Whether cards can be reordered within a column. Defaults to true. Set false\nwhen intra-column order isn't persisted (no server `rank`): drag and\nkeyboard still move cards *between* columns (appended to the target), but\nreordering inside a column is disabled, so the UI only offers what sticks.",
|
|
5841
|
+
"attribute": "reorderable",
|
|
5842
|
+
"reflects": true
|
|
5843
|
+
},
|
|
5765
5844
|
{
|
|
5766
|
-
"
|
|
5845
|
+
"kind": "field",
|
|
5846
|
+
"name": "_cols",
|
|
5767
5847
|
"type": {
|
|
5768
|
-
"text": "
|
|
5848
|
+
"text": "KanbanColumnData[]"
|
|
5769
5849
|
},
|
|
5770
|
-
"
|
|
5771
|
-
"
|
|
5772
|
-
"fieldName": "keys"
|
|
5850
|
+
"privacy": "private",
|
|
5851
|
+
"default": "[]"
|
|
5773
5852
|
},
|
|
5774
5853
|
{
|
|
5775
|
-
"
|
|
5854
|
+
"kind": "field",
|
|
5855
|
+
"name": "_openCardId",
|
|
5776
5856
|
"type": {
|
|
5777
|
-
"text": "
|
|
5857
|
+
"text": "string | null"
|
|
5778
5858
|
},
|
|
5779
|
-
"
|
|
5780
|
-
"
|
|
5781
|
-
|
|
5782
|
-
}
|
|
5783
|
-
],
|
|
5784
|
-
"superclass": {
|
|
5785
|
-
"name": "LitElement",
|
|
5786
|
-
"package": "lit"
|
|
5787
|
-
},
|
|
5788
|
-
"tagName": "kbd-hint",
|
|
5789
|
-
"customElement": true
|
|
5790
|
-
}
|
|
5791
|
-
],
|
|
5792
|
-
"exports": [
|
|
5793
|
-
{
|
|
5794
|
-
"kind": "js",
|
|
5795
|
-
"name": "KbdHint",
|
|
5796
|
-
"declaration": {
|
|
5797
|
-
"name": "KbdHint",
|
|
5798
|
-
"module": "src/kbd-hint.ts"
|
|
5799
|
-
}
|
|
5800
|
-
},
|
|
5801
|
-
{
|
|
5802
|
-
"kind": "custom-element-definition",
|
|
5803
|
-
"name": "kbd-hint",
|
|
5804
|
-
"declaration": {
|
|
5805
|
-
"name": "KbdHint",
|
|
5806
|
-
"module": "src/kbd-hint.ts"
|
|
5807
|
-
}
|
|
5808
|
-
}
|
|
5809
|
-
]
|
|
5810
|
-
},
|
|
5811
|
-
{
|
|
5812
|
-
"kind": "javascript-module",
|
|
5813
|
-
"path": "src/live-timer.ts",
|
|
5814
|
-
"declarations": [
|
|
5815
|
-
{
|
|
5816
|
-
"kind": "class",
|
|
5817
|
-
"description": "Per-second ticking count-up timer, e.g. a live \"running for 12s\" or\n\"Sleeping for 3 seconds\" indicator. Renders nothing while `since` is unset\nor unparseable.",
|
|
5818
|
-
"name": "LiveTimer",
|
|
5819
|
-
"members": [
|
|
5859
|
+
"privacy": "private",
|
|
5860
|
+
"default": "null"
|
|
5861
|
+
},
|
|
5820
5862
|
{
|
|
5821
5863
|
"kind": "field",
|
|
5822
|
-
"name": "
|
|
5864
|
+
"name": "_drag",
|
|
5823
5865
|
"type": {
|
|
5824
|
-
"text": "
|
|
5866
|
+
"text": "DragState | null"
|
|
5825
5867
|
},
|
|
5826
|
-
"
|
|
5827
|
-
"
|
|
5828
|
-
"attribute": "since"
|
|
5868
|
+
"privacy": "private",
|
|
5869
|
+
"default": "null"
|
|
5829
5870
|
},
|
|
5830
5871
|
{
|
|
5831
5872
|
"kind": "field",
|
|
5832
|
-
"name": "
|
|
5873
|
+
"name": "_pointer",
|
|
5833
5874
|
"type": {
|
|
5834
|
-
"text": "
|
|
5875
|
+
"text": "Indicator | null"
|
|
5835
5876
|
},
|
|
5836
|
-
"
|
|
5837
|
-
"
|
|
5838
|
-
"attribute": "format"
|
|
5877
|
+
"privacy": "private",
|
|
5878
|
+
"default": "null"
|
|
5839
5879
|
},
|
|
5840
5880
|
{
|
|
5841
5881
|
"kind": "field",
|
|
5842
|
-
"name": "
|
|
5882
|
+
"name": "_grab",
|
|
5843
5883
|
"type": {
|
|
5844
|
-
"text": "
|
|
5884
|
+
"text": "GrabState | null"
|
|
5845
5885
|
},
|
|
5846
|
-
"
|
|
5847
|
-
"
|
|
5848
|
-
"attribute": "prefix"
|
|
5886
|
+
"privacy": "private",
|
|
5887
|
+
"default": "null"
|
|
5849
5888
|
},
|
|
5850
5889
|
{
|
|
5851
5890
|
"kind": "field",
|
|
5852
|
-
"name": "
|
|
5891
|
+
"name": "_liveMessage",
|
|
5853
5892
|
"type": {
|
|
5854
5893
|
"text": "string"
|
|
5855
5894
|
},
|
|
5856
|
-
"
|
|
5857
|
-
"
|
|
5858
|
-
"attribute": "suffix"
|
|
5895
|
+
"privacy": "private",
|
|
5896
|
+
"default": "\"\""
|
|
5859
5897
|
},
|
|
5860
5898
|
{
|
|
5861
5899
|
"kind": "field",
|
|
5862
|
-
"name": "
|
|
5863
|
-
"privacy": "private"
|
|
5900
|
+
"name": "_highlighted",
|
|
5901
|
+
"privacy": "private",
|
|
5902
|
+
"default": "new Set<string>()"
|
|
5864
5903
|
},
|
|
5865
5904
|
{
|
|
5866
5905
|
"kind": "field",
|
|
5867
|
-
"name": "
|
|
5906
|
+
"name": "#refocus",
|
|
5907
|
+
"privacy": "private",
|
|
5868
5908
|
"type": {
|
|
5869
|
-
"text": "
|
|
5909
|
+
"text": "string | null"
|
|
5870
5910
|
},
|
|
5871
|
-
"privacy": "private",
|
|
5872
5911
|
"default": "null"
|
|
5873
|
-
}
|
|
5874
|
-
],
|
|
5875
|
-
"attributes": [
|
|
5912
|
+
},
|
|
5876
5913
|
{
|
|
5877
|
-
"
|
|
5914
|
+
"kind": "field",
|
|
5915
|
+
"name": "#pendingHighlight",
|
|
5916
|
+
"privacy": "private",
|
|
5878
5917
|
"type": {
|
|
5879
5918
|
"text": "string | null"
|
|
5880
5919
|
},
|
|
5881
|
-
"default": "null"
|
|
5882
|
-
"description": "ISO-8601 start instant; elapsed time is measured from here.",
|
|
5883
|
-
"fieldName": "since"
|
|
5920
|
+
"default": "null"
|
|
5884
5921
|
},
|
|
5885
5922
|
{
|
|
5886
|
-
"
|
|
5887
|
-
"
|
|
5888
|
-
|
|
5923
|
+
"kind": "field",
|
|
5924
|
+
"name": "#highlightTimers",
|
|
5925
|
+
"privacy": "private",
|
|
5926
|
+
"default": "new Map<string, ReturnType<typeof setTimeout>>()"
|
|
5927
|
+
},
|
|
5928
|
+
{
|
|
5929
|
+
"kind": "method",
|
|
5930
|
+
"name": "#findCard",
|
|
5931
|
+
"privacy": "private",
|
|
5932
|
+
"return": {
|
|
5933
|
+
"type": {
|
|
5934
|
+
"text": "{ card: KanbanCardData; column: KanbanColumnData; index: number } | null"
|
|
5935
|
+
}
|
|
5889
5936
|
},
|
|
5890
|
-
"
|
|
5891
|
-
|
|
5892
|
-
|
|
5937
|
+
"parameters": [
|
|
5938
|
+
{
|
|
5939
|
+
"name": "cardId",
|
|
5940
|
+
"type": {
|
|
5941
|
+
"text": "string"
|
|
5942
|
+
}
|
|
5943
|
+
}
|
|
5944
|
+
],
|
|
5945
|
+
"description": "Returns the card, its column, and index for a card id, or null if unknown."
|
|
5893
5946
|
},
|
|
5894
5947
|
{
|
|
5895
|
-
"
|
|
5896
|
-
"
|
|
5897
|
-
|
|
5948
|
+
"kind": "method",
|
|
5949
|
+
"name": "#columnCount",
|
|
5950
|
+
"privacy": "private",
|
|
5951
|
+
"return": {
|
|
5952
|
+
"type": {
|
|
5953
|
+
"text": "number"
|
|
5954
|
+
}
|
|
5898
5955
|
},
|
|
5899
|
-
"
|
|
5900
|
-
|
|
5901
|
-
|
|
5956
|
+
"parameters": [
|
|
5957
|
+
{
|
|
5958
|
+
"name": "columnId",
|
|
5959
|
+
"type": {
|
|
5960
|
+
"text": "string"
|
|
5961
|
+
}
|
|
5962
|
+
}
|
|
5963
|
+
],
|
|
5964
|
+
"description": "Number of cards currently in a column (0 if unknown)."
|
|
5902
5965
|
},
|
|
5903
5966
|
{
|
|
5904
|
-
"
|
|
5905
|
-
"
|
|
5906
|
-
|
|
5967
|
+
"kind": "method",
|
|
5968
|
+
"name": "#highlight",
|
|
5969
|
+
"privacy": "private",
|
|
5970
|
+
"return": {
|
|
5971
|
+
"type": {
|
|
5972
|
+
"text": "void"
|
|
5973
|
+
}
|
|
5907
5974
|
},
|
|
5908
|
-
"
|
|
5909
|
-
|
|
5910
|
-
|
|
5911
|
-
|
|
5912
|
-
|
|
5913
|
-
|
|
5914
|
-
|
|
5915
|
-
|
|
5916
|
-
|
|
5917
|
-
|
|
5918
|
-
|
|
5919
|
-
|
|
5920
|
-
|
|
5921
|
-
|
|
5922
|
-
|
|
5923
|
-
|
|
5924
|
-
|
|
5925
|
-
|
|
5975
|
+
"parameters": [
|
|
5976
|
+
{
|
|
5977
|
+
"name": "cardId",
|
|
5978
|
+
"type": {
|
|
5979
|
+
"text": "string"
|
|
5980
|
+
}
|
|
5981
|
+
}
|
|
5982
|
+
],
|
|
5983
|
+
"description": "Flashes the warm \"just moved\" highlight on a card, clearing it after HIGHLIGHT_MS."
|
|
5984
|
+
},
|
|
5985
|
+
{
|
|
5986
|
+
"kind": "method",
|
|
5987
|
+
"name": "#move",
|
|
5988
|
+
"privacy": "private",
|
|
5989
|
+
"return": {
|
|
5990
|
+
"type": {
|
|
5991
|
+
"text": "void"
|
|
5992
|
+
}
|
|
5993
|
+
},
|
|
5994
|
+
"parameters": [
|
|
5995
|
+
{
|
|
5996
|
+
"name": "cardId",
|
|
5997
|
+
"type": {
|
|
5998
|
+
"text": "string"
|
|
5999
|
+
}
|
|
6000
|
+
},
|
|
6001
|
+
{
|
|
6002
|
+
"name": "fromColumnId",
|
|
6003
|
+
"type": {
|
|
6004
|
+
"text": "string"
|
|
6005
|
+
}
|
|
6006
|
+
},
|
|
6007
|
+
{
|
|
6008
|
+
"name": "toColumnId",
|
|
6009
|
+
"type": {
|
|
6010
|
+
"text": "string"
|
|
6011
|
+
}
|
|
6012
|
+
},
|
|
6013
|
+
{
|
|
6014
|
+
"name": "toIndex",
|
|
6015
|
+
"type": {
|
|
6016
|
+
"text": "number"
|
|
6017
|
+
}
|
|
6018
|
+
}
|
|
6019
|
+
],
|
|
6020
|
+
"description": "Applies a move to the working copy and emits `card-move`. `toIndex` is the destination index after removal."
|
|
6021
|
+
},
|
|
6022
|
+
{
|
|
6023
|
+
"kind": "method",
|
|
6024
|
+
"name": "#toDestIndex",
|
|
6025
|
+
"privacy": "private",
|
|
6026
|
+
"return": {
|
|
6027
|
+
"type": {
|
|
6028
|
+
"text": "number"
|
|
6029
|
+
}
|
|
6030
|
+
},
|
|
6031
|
+
"parameters": [
|
|
6032
|
+
{
|
|
6033
|
+
"name": "fromColumnId",
|
|
6034
|
+
"type": {
|
|
6035
|
+
"text": "string"
|
|
6036
|
+
}
|
|
6037
|
+
},
|
|
6038
|
+
{
|
|
6039
|
+
"name": "originIndex",
|
|
6040
|
+
"type": {
|
|
6041
|
+
"text": "number"
|
|
6042
|
+
}
|
|
6043
|
+
},
|
|
6044
|
+
{
|
|
6045
|
+
"name": "toColumnId",
|
|
6046
|
+
"type": {
|
|
6047
|
+
"text": "string"
|
|
6048
|
+
}
|
|
6049
|
+
},
|
|
6050
|
+
{
|
|
6051
|
+
"name": "domIndex",
|
|
6052
|
+
"type": {
|
|
6053
|
+
"text": "number"
|
|
6054
|
+
}
|
|
6055
|
+
}
|
|
6056
|
+
],
|
|
6057
|
+
"description": "Converts a DOM insertion index (which counts the moving card) into a destination index after removal."
|
|
6058
|
+
},
|
|
6059
|
+
{
|
|
6060
|
+
"kind": "method",
|
|
6061
|
+
"name": "#pointerIndex",
|
|
6062
|
+
"privacy": "private",
|
|
6063
|
+
"return": {
|
|
6064
|
+
"type": {
|
|
6065
|
+
"text": "number"
|
|
6066
|
+
}
|
|
6067
|
+
},
|
|
6068
|
+
"parameters": [
|
|
6069
|
+
{
|
|
6070
|
+
"name": "columnId",
|
|
6071
|
+
"type": {
|
|
6072
|
+
"text": "string"
|
|
6073
|
+
}
|
|
6074
|
+
},
|
|
6075
|
+
{
|
|
6076
|
+
"name": "clientY",
|
|
6077
|
+
"type": {
|
|
6078
|
+
"text": "number"
|
|
6079
|
+
}
|
|
6080
|
+
}
|
|
6081
|
+
],
|
|
6082
|
+
"description": "Computes the DOM insertion index within a column from the pointer's vertical position."
|
|
6083
|
+
},
|
|
6084
|
+
{
|
|
6085
|
+
"kind": "method",
|
|
6086
|
+
"name": "#onDragStart",
|
|
6087
|
+
"privacy": "private",
|
|
6088
|
+
"return": {
|
|
6089
|
+
"type": {
|
|
6090
|
+
"text": "void"
|
|
6091
|
+
}
|
|
6092
|
+
},
|
|
6093
|
+
"parameters": [
|
|
6094
|
+
{
|
|
6095
|
+
"name": "event",
|
|
6096
|
+
"type": {
|
|
6097
|
+
"text": "DragEvent"
|
|
6098
|
+
}
|
|
6099
|
+
},
|
|
6100
|
+
{
|
|
6101
|
+
"name": "columnId",
|
|
6102
|
+
"type": {
|
|
6103
|
+
"text": "string"
|
|
6104
|
+
}
|
|
6105
|
+
},
|
|
6106
|
+
{
|
|
6107
|
+
"name": "cardId",
|
|
6108
|
+
"type": {
|
|
6109
|
+
"text": "string"
|
|
6110
|
+
}
|
|
6111
|
+
}
|
|
6112
|
+
]
|
|
6113
|
+
},
|
|
6114
|
+
{
|
|
6115
|
+
"kind": "method",
|
|
6116
|
+
"name": "#onDragOver",
|
|
6117
|
+
"privacy": "private",
|
|
6118
|
+
"return": {
|
|
6119
|
+
"type": {
|
|
6120
|
+
"text": "void"
|
|
6121
|
+
}
|
|
6122
|
+
},
|
|
6123
|
+
"parameters": [
|
|
6124
|
+
{
|
|
6125
|
+
"name": "event",
|
|
6126
|
+
"type": {
|
|
6127
|
+
"text": "DragEvent"
|
|
6128
|
+
}
|
|
6129
|
+
},
|
|
6130
|
+
{
|
|
6131
|
+
"name": "columnId",
|
|
6132
|
+
"type": {
|
|
6133
|
+
"text": "string"
|
|
6134
|
+
}
|
|
6135
|
+
}
|
|
6136
|
+
]
|
|
6137
|
+
},
|
|
6138
|
+
{
|
|
6139
|
+
"kind": "method",
|
|
6140
|
+
"name": "#onDrop",
|
|
6141
|
+
"privacy": "private",
|
|
6142
|
+
"return": {
|
|
6143
|
+
"type": {
|
|
6144
|
+
"text": "void"
|
|
6145
|
+
}
|
|
6146
|
+
},
|
|
6147
|
+
"parameters": [
|
|
6148
|
+
{
|
|
6149
|
+
"name": "event",
|
|
6150
|
+
"type": {
|
|
6151
|
+
"text": "DragEvent"
|
|
6152
|
+
}
|
|
6153
|
+
},
|
|
6154
|
+
{
|
|
6155
|
+
"name": "columnId",
|
|
6156
|
+
"type": {
|
|
6157
|
+
"text": "string"
|
|
6158
|
+
}
|
|
6159
|
+
}
|
|
6160
|
+
]
|
|
6161
|
+
},
|
|
6162
|
+
{
|
|
6163
|
+
"kind": "method",
|
|
6164
|
+
"name": "#onDragEnd",
|
|
6165
|
+
"privacy": "private",
|
|
6166
|
+
"return": {
|
|
6167
|
+
"type": {
|
|
6168
|
+
"text": "void"
|
|
6169
|
+
}
|
|
6170
|
+
}
|
|
6171
|
+
},
|
|
6172
|
+
{
|
|
6173
|
+
"kind": "method",
|
|
6174
|
+
"name": "#onCardKeydown",
|
|
6175
|
+
"privacy": "private",
|
|
6176
|
+
"return": {
|
|
6177
|
+
"type": {
|
|
6178
|
+
"text": "void"
|
|
6179
|
+
}
|
|
6180
|
+
},
|
|
6181
|
+
"parameters": [
|
|
6182
|
+
{
|
|
6183
|
+
"name": "event",
|
|
6184
|
+
"type": {
|
|
6185
|
+
"text": "KeyboardEvent"
|
|
6186
|
+
}
|
|
6187
|
+
},
|
|
6188
|
+
{
|
|
6189
|
+
"name": "columnId",
|
|
6190
|
+
"type": {
|
|
6191
|
+
"text": "string"
|
|
6192
|
+
}
|
|
6193
|
+
},
|
|
6194
|
+
{
|
|
6195
|
+
"name": "cardId",
|
|
6196
|
+
"type": {
|
|
6197
|
+
"text": "string"
|
|
6198
|
+
}
|
|
6199
|
+
}
|
|
6200
|
+
]
|
|
6201
|
+
},
|
|
6202
|
+
{
|
|
6203
|
+
"kind": "method",
|
|
6204
|
+
"name": "#startGrab",
|
|
6205
|
+
"privacy": "private",
|
|
6206
|
+
"return": {
|
|
6207
|
+
"type": {
|
|
6208
|
+
"text": "void"
|
|
6209
|
+
}
|
|
6210
|
+
},
|
|
6211
|
+
"parameters": [
|
|
6212
|
+
{
|
|
6213
|
+
"name": "columnId",
|
|
6214
|
+
"type": {
|
|
6215
|
+
"text": "string"
|
|
6216
|
+
}
|
|
6217
|
+
},
|
|
6218
|
+
{
|
|
6219
|
+
"name": "cardId",
|
|
6220
|
+
"type": {
|
|
6221
|
+
"text": "string"
|
|
6222
|
+
}
|
|
6223
|
+
}
|
|
6224
|
+
]
|
|
6225
|
+
},
|
|
6226
|
+
{
|
|
6227
|
+
"kind": "method",
|
|
6228
|
+
"name": "#grabMove",
|
|
6229
|
+
"privacy": "private",
|
|
6230
|
+
"return": {
|
|
6231
|
+
"type": {
|
|
6232
|
+
"text": "void"
|
|
6233
|
+
}
|
|
6234
|
+
},
|
|
6235
|
+
"parameters": [
|
|
6236
|
+
{
|
|
6237
|
+
"name": "columnDelta",
|
|
6238
|
+
"type": {
|
|
6239
|
+
"text": "number"
|
|
6240
|
+
}
|
|
6241
|
+
},
|
|
6242
|
+
{
|
|
6243
|
+
"name": "indexDelta",
|
|
6244
|
+
"type": {
|
|
6245
|
+
"text": "number"
|
|
6246
|
+
}
|
|
6247
|
+
}
|
|
6248
|
+
]
|
|
6249
|
+
},
|
|
6250
|
+
{
|
|
6251
|
+
"kind": "method",
|
|
6252
|
+
"name": "#commitGrab",
|
|
6253
|
+
"privacy": "private",
|
|
6254
|
+
"return": {
|
|
6255
|
+
"type": {
|
|
6256
|
+
"text": "void"
|
|
6257
|
+
}
|
|
6258
|
+
}
|
|
6259
|
+
},
|
|
6260
|
+
{
|
|
6261
|
+
"kind": "method",
|
|
6262
|
+
"name": "#cancelGrab",
|
|
6263
|
+
"privacy": "private",
|
|
6264
|
+
"return": {
|
|
6265
|
+
"type": {
|
|
6266
|
+
"text": "void"
|
|
6267
|
+
}
|
|
6268
|
+
}
|
|
6269
|
+
},
|
|
6270
|
+
{
|
|
6271
|
+
"kind": "method",
|
|
6272
|
+
"name": "#announce",
|
|
6273
|
+
"privacy": "private",
|
|
6274
|
+
"return": {
|
|
6275
|
+
"type": {
|
|
6276
|
+
"text": "void"
|
|
6277
|
+
}
|
|
6278
|
+
},
|
|
6279
|
+
"parameters": [
|
|
6280
|
+
{
|
|
6281
|
+
"name": "message",
|
|
6282
|
+
"type": {
|
|
6283
|
+
"text": "string"
|
|
6284
|
+
}
|
|
6285
|
+
}
|
|
6286
|
+
]
|
|
6287
|
+
},
|
|
6288
|
+
{
|
|
6289
|
+
"kind": "method",
|
|
6290
|
+
"name": "#openDetail",
|
|
6291
|
+
"privacy": "private",
|
|
6292
|
+
"return": {
|
|
6293
|
+
"type": {
|
|
6294
|
+
"text": "void"
|
|
6295
|
+
}
|
|
6296
|
+
},
|
|
6297
|
+
"parameters": [
|
|
6298
|
+
{
|
|
6299
|
+
"name": "cardId",
|
|
6300
|
+
"type": {
|
|
6301
|
+
"text": "string"
|
|
6302
|
+
}
|
|
6303
|
+
}
|
|
6304
|
+
]
|
|
6305
|
+
},
|
|
6306
|
+
{
|
|
6307
|
+
"kind": "method",
|
|
6308
|
+
"name": "#closeDetail",
|
|
6309
|
+
"privacy": "private",
|
|
6310
|
+
"return": {
|
|
6311
|
+
"type": {
|
|
6312
|
+
"text": "void"
|
|
6313
|
+
}
|
|
6314
|
+
}
|
|
6315
|
+
},
|
|
6316
|
+
{
|
|
6317
|
+
"kind": "method",
|
|
6318
|
+
"name": "#onStateChange",
|
|
6319
|
+
"privacy": "private",
|
|
6320
|
+
"return": {
|
|
6321
|
+
"type": {
|
|
6322
|
+
"text": "void"
|
|
6323
|
+
}
|
|
6324
|
+
},
|
|
6325
|
+
"parameters": [
|
|
6326
|
+
{
|
|
6327
|
+
"name": "cardId",
|
|
6328
|
+
"type": {
|
|
6329
|
+
"text": "string"
|
|
6330
|
+
}
|
|
6331
|
+
},
|
|
6332
|
+
{
|
|
6333
|
+
"name": "fromColumnId",
|
|
6334
|
+
"type": {
|
|
6335
|
+
"text": "string"
|
|
6336
|
+
}
|
|
6337
|
+
},
|
|
6338
|
+
{
|
|
6339
|
+
"name": "toColumnId",
|
|
6340
|
+
"type": {
|
|
6341
|
+
"text": "string"
|
|
6342
|
+
}
|
|
6343
|
+
}
|
|
6344
|
+
]
|
|
6345
|
+
},
|
|
6346
|
+
{
|
|
6347
|
+
"kind": "method",
|
|
6348
|
+
"name": "#renderColumn",
|
|
6349
|
+
"privacy": "private",
|
|
6350
|
+
"parameters": [
|
|
6351
|
+
{
|
|
6352
|
+
"name": "column",
|
|
6353
|
+
"type": {
|
|
6354
|
+
"text": "KanbanColumnData"
|
|
6355
|
+
}
|
|
6356
|
+
},
|
|
6357
|
+
{
|
|
6358
|
+
"name": "indicator",
|
|
6359
|
+
"type": {
|
|
6360
|
+
"text": "Indicator | null"
|
|
6361
|
+
}
|
|
6362
|
+
},
|
|
6363
|
+
{
|
|
6364
|
+
"name": "dragCardId",
|
|
6365
|
+
"type": {
|
|
6366
|
+
"text": "string | null"
|
|
6367
|
+
}
|
|
6368
|
+
}
|
|
6369
|
+
]
|
|
6370
|
+
},
|
|
6371
|
+
{
|
|
6372
|
+
"kind": "method",
|
|
6373
|
+
"name": "#renderDetail",
|
|
6374
|
+
"privacy": "private"
|
|
6375
|
+
}
|
|
6376
|
+
],
|
|
6377
|
+
"events": [
|
|
6378
|
+
{
|
|
6379
|
+
"name": "card-move",
|
|
6380
|
+
"type": {
|
|
6381
|
+
"text": "CustomEvent"
|
|
6382
|
+
},
|
|
6383
|
+
"description": "A card changed column/position; detail: { cardId, fromColumnId, toColumnId, toIndex }."
|
|
6384
|
+
},
|
|
6385
|
+
{
|
|
6386
|
+
"name": "card-open",
|
|
6387
|
+
"type": {
|
|
6388
|
+
"text": "CustomEvent"
|
|
6389
|
+
},
|
|
6390
|
+
"description": "A card's detail view was opened; detail: { cardId }."
|
|
6391
|
+
}
|
|
6392
|
+
],
|
|
6393
|
+
"attributes": [
|
|
6394
|
+
{
|
|
6395
|
+
"name": "label",
|
|
6396
|
+
"type": {
|
|
6397
|
+
"text": "string"
|
|
6398
|
+
},
|
|
6399
|
+
"default": "\"Board\"",
|
|
6400
|
+
"description": "Accessible label for the board's group role.",
|
|
6401
|
+
"fieldName": "label"
|
|
6402
|
+
},
|
|
6403
|
+
{
|
|
6404
|
+
"name": "manual",
|
|
6405
|
+
"type": {
|
|
6406
|
+
"text": "boolean"
|
|
6407
|
+
},
|
|
6408
|
+
"default": "false",
|
|
6409
|
+
"description": "Server-authoritative mode. When true, moves emit `card-move` but are not\napplied to the board locally; it reflects only what you assign to\n`columns` (e.g. echoed back over WebSocket/SSE), keeping the server as the\nsingle source of truth. Defaults to optimistic local updates.",
|
|
6410
|
+
"fieldName": "manual"
|
|
6411
|
+
},
|
|
6412
|
+
{
|
|
6413
|
+
"name": "reorderable",
|
|
6414
|
+
"type": {
|
|
6415
|
+
"text": "boolean"
|
|
6416
|
+
},
|
|
6417
|
+
"default": "true",
|
|
6418
|
+
"description": "Whether cards can be reordered within a column. Defaults to true. Set false\nwhen intra-column order isn't persisted (no server `rank`): drag and\nkeyboard still move cards *between* columns (appended to the target), but\nreordering inside a column is disabled, so the UI only offers what sticks.",
|
|
6419
|
+
"fieldName": "reorderable"
|
|
6420
|
+
}
|
|
6421
|
+
],
|
|
6422
|
+
"superclass": {
|
|
6423
|
+
"name": "LitElement",
|
|
6424
|
+
"package": "lit"
|
|
6425
|
+
},
|
|
6426
|
+
"tagName": "kanban-board",
|
|
6427
|
+
"customElement": true
|
|
6428
|
+
}
|
|
6429
|
+
],
|
|
6430
|
+
"exports": [
|
|
6431
|
+
{
|
|
6432
|
+
"kind": "js",
|
|
6433
|
+
"name": "KanbanBoard",
|
|
6434
|
+
"declaration": {
|
|
6435
|
+
"name": "KanbanBoard",
|
|
6436
|
+
"module": "src/kanban-board.ts"
|
|
6437
|
+
}
|
|
6438
|
+
},
|
|
6439
|
+
{
|
|
6440
|
+
"kind": "custom-element-definition",
|
|
6441
|
+
"name": "kanban-board",
|
|
6442
|
+
"declaration": {
|
|
6443
|
+
"name": "KanbanBoard",
|
|
6444
|
+
"module": "src/kanban-board.ts"
|
|
6445
|
+
}
|
|
6446
|
+
}
|
|
6447
|
+
]
|
|
6448
|
+
},
|
|
6449
|
+
{
|
|
6450
|
+
"kind": "javascript-module",
|
|
6451
|
+
"path": "src/kanban-card.ts",
|
|
6452
|
+
"declarations": [
|
|
6453
|
+
{
|
|
6454
|
+
"kind": "class",
|
|
6455
|
+
"description": "A single kanban card's compact overview: its ticket number and title only.\nPurely presentational and metadata-only — it is created and driven by\n`kanban-board`, which owns drag-and-drop, selection, and the richer detail\nview (description, state, and timestamps live in the board's popover, not\nhere). The board sets `draggable`, toggles the `dragging`/`grabbed`\nattributes for pointer and keyboard moves, and binds the open/keyboard\nhandlers; focus is delegated to the inner control so the board can move\nkeyboard focus to a card after a move.",
|
|
6456
|
+
"name": "KanbanCard",
|
|
6457
|
+
"members": [
|
|
6458
|
+
{
|
|
6459
|
+
"kind": "field",
|
|
6460
|
+
"name": "shadowRootOptions",
|
|
6461
|
+
"type": {
|
|
6462
|
+
"text": "object"
|
|
6463
|
+
},
|
|
6464
|
+
"static": true,
|
|
6465
|
+
"default": "{ ...LitElement.shadowRootOptions, delegatesFocus: true, }"
|
|
6466
|
+
},
|
|
6467
|
+
{
|
|
6468
|
+
"kind": "field",
|
|
6469
|
+
"name": "ticket",
|
|
6470
|
+
"type": {
|
|
6471
|
+
"text": "string"
|
|
6472
|
+
},
|
|
6473
|
+
"default": "\"\"",
|
|
6474
|
+
"description": "Ticket identifier shown before the title, e.g. `\"PROJ-142\"`.",
|
|
6475
|
+
"attribute": "ticket"
|
|
6476
|
+
},
|
|
6477
|
+
{
|
|
6478
|
+
"kind": "field",
|
|
6479
|
+
"name": "heading",
|
|
6480
|
+
"type": {
|
|
6481
|
+
"text": "string"
|
|
6482
|
+
},
|
|
6483
|
+
"default": "\"\"",
|
|
6484
|
+
"description": "Card title shown in the overview.",
|
|
6485
|
+
"attribute": "heading"
|
|
6486
|
+
}
|
|
6487
|
+
],
|
|
6488
|
+
"attributes": [
|
|
6489
|
+
{
|
|
6490
|
+
"name": "ticket",
|
|
6491
|
+
"type": {
|
|
6492
|
+
"text": "string"
|
|
6493
|
+
},
|
|
6494
|
+
"default": "\"\"",
|
|
6495
|
+
"description": "Ticket identifier shown before the title, e.g. `\"PROJ-142\"`.",
|
|
6496
|
+
"fieldName": "ticket"
|
|
6497
|
+
},
|
|
6498
|
+
{
|
|
6499
|
+
"name": "heading",
|
|
6500
|
+
"type": {
|
|
6501
|
+
"text": "string"
|
|
6502
|
+
},
|
|
6503
|
+
"default": "\"\"",
|
|
6504
|
+
"description": "Card title shown in the overview.",
|
|
6505
|
+
"fieldName": "heading"
|
|
6506
|
+
}
|
|
6507
|
+
],
|
|
6508
|
+
"superclass": {
|
|
6509
|
+
"name": "LitElement",
|
|
6510
|
+
"package": "lit"
|
|
6511
|
+
},
|
|
6512
|
+
"tagName": "kanban-card",
|
|
6513
|
+
"customElement": true
|
|
6514
|
+
}
|
|
6515
|
+
],
|
|
6516
|
+
"exports": [
|
|
6517
|
+
{
|
|
6518
|
+
"kind": "js",
|
|
6519
|
+
"name": "KanbanCard",
|
|
6520
|
+
"declaration": {
|
|
6521
|
+
"name": "KanbanCard",
|
|
6522
|
+
"module": "src/kanban-card.ts"
|
|
6523
|
+
}
|
|
6524
|
+
},
|
|
6525
|
+
{
|
|
6526
|
+
"kind": "custom-element-definition",
|
|
6527
|
+
"name": "kanban-card",
|
|
6528
|
+
"declaration": {
|
|
6529
|
+
"name": "KanbanCard",
|
|
6530
|
+
"module": "src/kanban-card.ts"
|
|
6531
|
+
}
|
|
6532
|
+
}
|
|
6533
|
+
]
|
|
6534
|
+
},
|
|
6535
|
+
{
|
|
6536
|
+
"kind": "javascript-module",
|
|
6537
|
+
"path": "src/kanban-column.ts",
|
|
6538
|
+
"declarations": [
|
|
6539
|
+
{
|
|
6540
|
+
"kind": "class",
|
|
6541
|
+
"description": "A single kanban column: a titled, vertically scrollable region that holds\nits `kanban-card` children (its default `<slot>`), with a header showing the\ncolumn title and card count. Purely presentational and metadata-only —\n`kanban-board` creates it, positions the cards inside it, and drives the\ndrop-target highlight via the reflected `dragover` attribute and the empty\nhint via `empty`.",
|
|
6542
|
+
"name": "KanbanColumn",
|
|
6543
|
+
"slots": [
|
|
6544
|
+
{
|
|
6545
|
+
"description": "The column's `kanban-card` elements, in display order.",
|
|
6546
|
+
"name": ""
|
|
6547
|
+
}
|
|
6548
|
+
],
|
|
6549
|
+
"members": [
|
|
6550
|
+
{
|
|
6551
|
+
"kind": "field",
|
|
6552
|
+
"name": "heading",
|
|
6553
|
+
"type": {
|
|
6554
|
+
"text": "string"
|
|
6555
|
+
},
|
|
6556
|
+
"default": "\"\"",
|
|
6557
|
+
"description": "Column title shown in the header.",
|
|
6558
|
+
"attribute": "heading"
|
|
6559
|
+
},
|
|
6560
|
+
{
|
|
6561
|
+
"kind": "field",
|
|
6562
|
+
"name": "count",
|
|
6563
|
+
"type": {
|
|
6564
|
+
"text": "number"
|
|
6565
|
+
},
|
|
6566
|
+
"default": "0",
|
|
6567
|
+
"description": "Number of cards in the column, shown as a count badge.",
|
|
6568
|
+
"attribute": "count"
|
|
6569
|
+
},
|
|
6570
|
+
{
|
|
6571
|
+
"kind": "field",
|
|
6572
|
+
"name": "dragover",
|
|
6573
|
+
"type": {
|
|
6574
|
+
"text": "boolean"
|
|
6575
|
+
},
|
|
6576
|
+
"default": "false",
|
|
6577
|
+
"description": "Set by the board while a card is dragged over this column, for highlight.",
|
|
6578
|
+
"attribute": "dragover",
|
|
6579
|
+
"reflects": true
|
|
6580
|
+
},
|
|
6581
|
+
{
|
|
6582
|
+
"kind": "field",
|
|
6583
|
+
"name": "empty",
|
|
6584
|
+
"type": {
|
|
6585
|
+
"text": "boolean"
|
|
6586
|
+
},
|
|
6587
|
+
"default": "false",
|
|
6588
|
+
"description": "Whether the column currently has no cards, so it renders an empty hint.",
|
|
6589
|
+
"attribute": "empty",
|
|
6590
|
+
"reflects": true
|
|
6591
|
+
}
|
|
6592
|
+
],
|
|
6593
|
+
"attributes": [
|
|
6594
|
+
{
|
|
6595
|
+
"name": "heading",
|
|
6596
|
+
"type": {
|
|
6597
|
+
"text": "string"
|
|
6598
|
+
},
|
|
6599
|
+
"default": "\"\"",
|
|
6600
|
+
"description": "Column title shown in the header.",
|
|
6601
|
+
"fieldName": "heading"
|
|
6602
|
+
},
|
|
6603
|
+
{
|
|
6604
|
+
"name": "count",
|
|
6605
|
+
"type": {
|
|
6606
|
+
"text": "number"
|
|
6607
|
+
},
|
|
6608
|
+
"default": "0",
|
|
6609
|
+
"description": "Number of cards in the column, shown as a count badge.",
|
|
6610
|
+
"fieldName": "count"
|
|
6611
|
+
},
|
|
6612
|
+
{
|
|
6613
|
+
"name": "dragover",
|
|
6614
|
+
"type": {
|
|
6615
|
+
"text": "boolean"
|
|
6616
|
+
},
|
|
6617
|
+
"default": "false",
|
|
6618
|
+
"description": "Set by the board while a card is dragged over this column, for highlight.",
|
|
6619
|
+
"fieldName": "dragover"
|
|
6620
|
+
},
|
|
6621
|
+
{
|
|
6622
|
+
"name": "empty",
|
|
6623
|
+
"type": {
|
|
6624
|
+
"text": "boolean"
|
|
6625
|
+
},
|
|
6626
|
+
"default": "false",
|
|
6627
|
+
"description": "Whether the column currently has no cards, so it renders an empty hint.",
|
|
6628
|
+
"fieldName": "empty"
|
|
6629
|
+
}
|
|
6630
|
+
],
|
|
6631
|
+
"superclass": {
|
|
6632
|
+
"name": "LitElement",
|
|
6633
|
+
"package": "lit"
|
|
6634
|
+
},
|
|
6635
|
+
"tagName": "kanban-column",
|
|
6636
|
+
"customElement": true
|
|
6637
|
+
}
|
|
6638
|
+
],
|
|
6639
|
+
"exports": [
|
|
6640
|
+
{
|
|
6641
|
+
"kind": "js",
|
|
6642
|
+
"name": "KanbanColumn",
|
|
6643
|
+
"declaration": {
|
|
6644
|
+
"name": "KanbanColumn",
|
|
6645
|
+
"module": "src/kanban-column.ts"
|
|
6646
|
+
}
|
|
6647
|
+
},
|
|
6648
|
+
{
|
|
6649
|
+
"kind": "custom-element-definition",
|
|
6650
|
+
"name": "kanban-column",
|
|
6651
|
+
"declaration": {
|
|
6652
|
+
"name": "KanbanColumn",
|
|
6653
|
+
"module": "src/kanban-column.ts"
|
|
6654
|
+
}
|
|
6655
|
+
}
|
|
6656
|
+
]
|
|
6657
|
+
},
|
|
6658
|
+
{
|
|
6659
|
+
"kind": "javascript-module",
|
|
6660
|
+
"path": "src/kbd-hint.ts",
|
|
6661
|
+
"declarations": [
|
|
6662
|
+
{
|
|
6663
|
+
"kind": "class",
|
|
6664
|
+
"description": "Renders a keyboard shortcut as one boxed keycap per `+`-separated token.\nModifier keys are platform-aware: `Mod` becomes Command on macOS and\nControl elsewhere. Keycaps derive their presentation from `currentColor`,\nso the hint works inside neutral and accent-colored controls.",
|
|
6665
|
+
"name": "KbdHint",
|
|
6666
|
+
"members": [
|
|
6667
|
+
{
|
|
6668
|
+
"kind": "field",
|
|
6669
|
+
"name": "keys",
|
|
6670
|
+
"type": {
|
|
6671
|
+
"text": "string"
|
|
6672
|
+
},
|
|
6673
|
+
"default": "\"\"",
|
|
6674
|
+
"description": "Shortcut as case-insensitive, `+`-separated tokens, e.g. `\"Mod+Enter\"`.",
|
|
6675
|
+
"attribute": "keys"
|
|
6676
|
+
},
|
|
6677
|
+
{
|
|
6678
|
+
"kind": "field",
|
|
6679
|
+
"name": "platform",
|
|
6680
|
+
"type": {
|
|
6681
|
+
"text": "KbdPlatform"
|
|
6682
|
+
},
|
|
6683
|
+
"default": "\"auto\"",
|
|
6684
|
+
"description": "Platform override; `auto` detects macOS from the browser.",
|
|
6685
|
+
"attribute": "platform"
|
|
6686
|
+
},
|
|
6687
|
+
{
|
|
6688
|
+
"kind": "field",
|
|
6689
|
+
"name": "isMac",
|
|
6690
|
+
"type": {
|
|
6691
|
+
"text": "boolean"
|
|
6692
|
+
},
|
|
6693
|
+
"privacy": "private",
|
|
6694
|
+
"description": "Whether modifier aliases should use macOS glyphs.",
|
|
6695
|
+
"readonly": true
|
|
6696
|
+
},
|
|
6697
|
+
{
|
|
6698
|
+
"kind": "field",
|
|
6699
|
+
"name": "parsedKeys",
|
|
6700
|
+
"type": {
|
|
6701
|
+
"text": "KeyRender[]"
|
|
6702
|
+
},
|
|
6703
|
+
"privacy": "private",
|
|
6704
|
+
"description": "Parses the shortcut into visual/spoken key descriptors.",
|
|
6705
|
+
"readonly": true
|
|
6706
|
+
}
|
|
6707
|
+
],
|
|
6708
|
+
"attributes": [
|
|
6709
|
+
{
|
|
6710
|
+
"name": "keys",
|
|
6711
|
+
"type": {
|
|
6712
|
+
"text": "string"
|
|
6713
|
+
},
|
|
6714
|
+
"default": "\"\"",
|
|
6715
|
+
"description": "Shortcut as case-insensitive, `+`-separated tokens, e.g. `\"Mod+Enter\"`.",
|
|
6716
|
+
"fieldName": "keys"
|
|
6717
|
+
},
|
|
6718
|
+
{
|
|
6719
|
+
"name": "platform",
|
|
6720
|
+
"type": {
|
|
6721
|
+
"text": "KbdPlatform"
|
|
6722
|
+
},
|
|
6723
|
+
"default": "\"auto\"",
|
|
6724
|
+
"description": "Platform override; `auto` detects macOS from the browser.",
|
|
6725
|
+
"fieldName": "platform"
|
|
6726
|
+
}
|
|
6727
|
+
],
|
|
6728
|
+
"superclass": {
|
|
6729
|
+
"name": "LitElement",
|
|
6730
|
+
"package": "lit"
|
|
6731
|
+
},
|
|
6732
|
+
"tagName": "kbd-hint",
|
|
6733
|
+
"customElement": true
|
|
6734
|
+
}
|
|
6735
|
+
],
|
|
6736
|
+
"exports": [
|
|
6737
|
+
{
|
|
6738
|
+
"kind": "js",
|
|
6739
|
+
"name": "KbdHint",
|
|
6740
|
+
"declaration": {
|
|
6741
|
+
"name": "KbdHint",
|
|
6742
|
+
"module": "src/kbd-hint.ts"
|
|
6743
|
+
}
|
|
6744
|
+
},
|
|
6745
|
+
{
|
|
6746
|
+
"kind": "custom-element-definition",
|
|
6747
|
+
"name": "kbd-hint",
|
|
6748
|
+
"declaration": {
|
|
6749
|
+
"name": "KbdHint",
|
|
6750
|
+
"module": "src/kbd-hint.ts"
|
|
6751
|
+
}
|
|
6752
|
+
}
|
|
6753
|
+
]
|
|
6754
|
+
},
|
|
6755
|
+
{
|
|
6756
|
+
"kind": "javascript-module",
|
|
6757
|
+
"path": "src/live-timer.ts",
|
|
6758
|
+
"declarations": [
|
|
6759
|
+
{
|
|
6760
|
+
"kind": "class",
|
|
6761
|
+
"description": "Per-second ticking count-up timer, e.g. a live \"running for 12s\" or\n\"Sleeping for 3 seconds\" indicator. Renders nothing while `since` is unset\nor unparseable.",
|
|
6762
|
+
"name": "LiveTimer",
|
|
6763
|
+
"members": [
|
|
6764
|
+
{
|
|
6765
|
+
"kind": "field",
|
|
6766
|
+
"name": "since",
|
|
6767
|
+
"type": {
|
|
6768
|
+
"text": "string | null"
|
|
6769
|
+
},
|
|
6770
|
+
"default": "null",
|
|
6771
|
+
"description": "ISO-8601 start instant; elapsed time is measured from here.",
|
|
6772
|
+
"attribute": "since"
|
|
6773
|
+
},
|
|
6774
|
+
{
|
|
6775
|
+
"kind": "field",
|
|
6776
|
+
"name": "format",
|
|
6777
|
+
"type": {
|
|
6778
|
+
"text": "DurationFormat"
|
|
6779
|
+
},
|
|
6780
|
+
"default": "\"seconds\"",
|
|
6781
|
+
"description": "`\"seconds\"` -> \"1 second\", \"12 seconds\"; `\"compact\"` -> \"12s\", \"3m 12s\", \"1h 03m 12s\".",
|
|
6782
|
+
"attribute": "format"
|
|
6783
|
+
},
|
|
6784
|
+
{
|
|
6785
|
+
"kind": "field",
|
|
6786
|
+
"name": "prefix",
|
|
6787
|
+
"type": {
|
|
6788
|
+
"text": "string"
|
|
6789
|
+
},
|
|
6790
|
+
"default": "\"\"",
|
|
6791
|
+
"description": "Text rendered before the formatted value.",
|
|
6792
|
+
"attribute": "prefix"
|
|
6793
|
+
},
|
|
6794
|
+
{
|
|
6795
|
+
"kind": "field",
|
|
6796
|
+
"name": "suffix",
|
|
6797
|
+
"type": {
|
|
6798
|
+
"text": "string"
|
|
6799
|
+
},
|
|
6800
|
+
"default": "\"\"",
|
|
6801
|
+
"description": "Text rendered after the formatted value.",
|
|
6802
|
+
"attribute": "suffix"
|
|
6803
|
+
},
|
|
6804
|
+
{
|
|
6805
|
+
"kind": "field",
|
|
6806
|
+
"name": "_now",
|
|
6807
|
+
"privacy": "private"
|
|
6808
|
+
},
|
|
6809
|
+
{
|
|
6810
|
+
"kind": "field",
|
|
6811
|
+
"name": "_timer",
|
|
6812
|
+
"type": {
|
|
6813
|
+
"text": "ReturnType<typeof setInterval> | null"
|
|
6814
|
+
},
|
|
6815
|
+
"privacy": "private",
|
|
6816
|
+
"default": "null"
|
|
6817
|
+
}
|
|
6818
|
+
],
|
|
6819
|
+
"attributes": [
|
|
6820
|
+
{
|
|
6821
|
+
"name": "since",
|
|
6822
|
+
"type": {
|
|
6823
|
+
"text": "string | null"
|
|
6824
|
+
},
|
|
6825
|
+
"default": "null",
|
|
6826
|
+
"description": "ISO-8601 start instant; elapsed time is measured from here.",
|
|
6827
|
+
"fieldName": "since"
|
|
6828
|
+
},
|
|
6829
|
+
{
|
|
6830
|
+
"name": "format",
|
|
6831
|
+
"type": {
|
|
6832
|
+
"text": "DurationFormat"
|
|
6833
|
+
},
|
|
6834
|
+
"default": "\"seconds\"",
|
|
6835
|
+
"description": "`\"seconds\"` -> \"1 second\", \"12 seconds\"; `\"compact\"` -> \"12s\", \"3m 12s\", \"1h 03m 12s\".",
|
|
6836
|
+
"fieldName": "format"
|
|
6837
|
+
},
|
|
6838
|
+
{
|
|
6839
|
+
"name": "prefix",
|
|
6840
|
+
"type": {
|
|
6841
|
+
"text": "string"
|
|
6842
|
+
},
|
|
6843
|
+
"default": "\"\"",
|
|
6844
|
+
"description": "Text rendered before the formatted value.",
|
|
6845
|
+
"fieldName": "prefix"
|
|
6846
|
+
},
|
|
6847
|
+
{
|
|
6848
|
+
"name": "suffix",
|
|
6849
|
+
"type": {
|
|
6850
|
+
"text": "string"
|
|
6851
|
+
},
|
|
6852
|
+
"default": "\"\"",
|
|
6853
|
+
"description": "Text rendered after the formatted value.",
|
|
6854
|
+
"fieldName": "suffix"
|
|
6855
|
+
}
|
|
6856
|
+
],
|
|
6857
|
+
"superclass": {
|
|
6858
|
+
"name": "LitElement",
|
|
6859
|
+
"package": "lit"
|
|
6860
|
+
},
|
|
6861
|
+
"tagName": "live-timer",
|
|
6862
|
+
"customElement": true
|
|
6863
|
+
}
|
|
6864
|
+
],
|
|
6865
|
+
"exports": [
|
|
6866
|
+
{
|
|
6867
|
+
"kind": "js",
|
|
6868
|
+
"name": "LiveTimer",
|
|
6869
|
+
"declaration": {
|
|
6870
|
+
"name": "LiveTimer",
|
|
6871
|
+
"module": "src/live-timer.ts"
|
|
6872
|
+
}
|
|
6873
|
+
},
|
|
6874
|
+
{
|
|
6875
|
+
"kind": "custom-element-definition",
|
|
6876
|
+
"name": "live-timer",
|
|
6877
|
+
"declaration": {
|
|
5926
6878
|
"name": "LiveTimer",
|
|
5927
6879
|
"module": "src/live-timer.ts"
|
|
5928
6880
|
}
|
|
6881
|
+
}
|
|
6882
|
+
]
|
|
6883
|
+
},
|
|
6884
|
+
{
|
|
6885
|
+
"kind": "javascript-module",
|
|
6886
|
+
"path": "src/map-circle.ts",
|
|
6887
|
+
"declarations": [
|
|
6888
|
+
{
|
|
6889
|
+
"kind": "class",
|
|
6890
|
+
"description": "A plain circular map marker: a light-to-dark gradient fill with a white\nouter ring, no point/tail (unlike `<map-pin>`) — for markers that don't\nneed to visually \"point\" at their exact coordinate. Purely a visual\nprimitive — it has no `mapbox-gl` (or any mapping library) dependency;\nthe consumer positions it, e.g. via `new mapboxgl.Marker({ element: el })`.\nIt can also replace the former `<map-point>` dense-layer primitive: use\n`size=\"14\" ring-width=\"3\"`, leave the slot empty, and rasterize one marker\nper color for use as a map `icon-image`.",
|
|
6891
|
+
"name": "MapCircle",
|
|
6892
|
+
"slots": [
|
|
6893
|
+
{
|
|
6894
|
+
"description": "Optional badge content shown centered on the circle — a rank number, an emoji, a small icon.",
|
|
6895
|
+
"name": ""
|
|
6896
|
+
}
|
|
6897
|
+
],
|
|
6898
|
+
"members": [
|
|
6899
|
+
{
|
|
6900
|
+
"kind": "field",
|
|
6901
|
+
"name": "color",
|
|
6902
|
+
"type": {
|
|
6903
|
+
"text": "string"
|
|
6904
|
+
},
|
|
6905
|
+
"default": "\"#4f46e5\"",
|
|
6906
|
+
"description": "Fill color; the gradient's light (top) and dark (bottom) stops are derived from this.",
|
|
6907
|
+
"attribute": "color"
|
|
6908
|
+
},
|
|
6909
|
+
{
|
|
6910
|
+
"kind": "field",
|
|
6911
|
+
"name": "size",
|
|
6912
|
+
"type": {
|
|
6913
|
+
"text": "number"
|
|
6914
|
+
},
|
|
6915
|
+
"default": "18",
|
|
6916
|
+
"description": "Diameter, in CSS pixels.",
|
|
6917
|
+
"attribute": "size"
|
|
6918
|
+
},
|
|
6919
|
+
{
|
|
6920
|
+
"kind": "field",
|
|
6921
|
+
"name": "ringWidth",
|
|
6922
|
+
"type": {
|
|
6923
|
+
"text": "number"
|
|
6924
|
+
},
|
|
6925
|
+
"default": "4",
|
|
6926
|
+
"description": "White outer ring thickness, in the same viewBox units as `size` (scales with it).",
|
|
6927
|
+
"attribute": "ring-width"
|
|
6928
|
+
},
|
|
6929
|
+
{
|
|
6930
|
+
"kind": "field",
|
|
6931
|
+
"name": "highlighted",
|
|
6932
|
+
"type": {
|
|
6933
|
+
"text": "boolean"
|
|
6934
|
+
},
|
|
6935
|
+
"default": "false",
|
|
6936
|
+
"description": "Scales and glows the circle — a generic emphasis state (e.g. hover, selection).",
|
|
6937
|
+
"attribute": "highlighted",
|
|
6938
|
+
"reflects": true
|
|
6939
|
+
},
|
|
6940
|
+
{
|
|
6941
|
+
"kind": "field",
|
|
6942
|
+
"name": "_gradId",
|
|
6943
|
+
"privacy": "private",
|
|
6944
|
+
"readonly": true,
|
|
6945
|
+
"default": "`map-circle-grad-${gradientIdCounter++}`"
|
|
6946
|
+
}
|
|
6947
|
+
],
|
|
6948
|
+
"attributes": [
|
|
6949
|
+
{
|
|
6950
|
+
"name": "color",
|
|
6951
|
+
"type": {
|
|
6952
|
+
"text": "string"
|
|
6953
|
+
},
|
|
6954
|
+
"default": "\"#4f46e5\"",
|
|
6955
|
+
"description": "Fill color; the gradient's light (top) and dark (bottom) stops are derived from this.",
|
|
6956
|
+
"fieldName": "color"
|
|
6957
|
+
},
|
|
6958
|
+
{
|
|
6959
|
+
"name": "size",
|
|
6960
|
+
"type": {
|
|
6961
|
+
"text": "number"
|
|
6962
|
+
},
|
|
6963
|
+
"default": "18",
|
|
6964
|
+
"description": "Diameter, in CSS pixels.",
|
|
6965
|
+
"fieldName": "size"
|
|
6966
|
+
},
|
|
6967
|
+
{
|
|
6968
|
+
"name": "ring-width",
|
|
6969
|
+
"type": {
|
|
6970
|
+
"text": "number"
|
|
6971
|
+
},
|
|
6972
|
+
"default": "4",
|
|
6973
|
+
"description": "White outer ring thickness, in the same viewBox units as `size` (scales with it).",
|
|
6974
|
+
"fieldName": "ringWidth"
|
|
6975
|
+
},
|
|
6976
|
+
{
|
|
6977
|
+
"name": "highlighted",
|
|
6978
|
+
"type": {
|
|
6979
|
+
"text": "boolean"
|
|
6980
|
+
},
|
|
6981
|
+
"default": "false",
|
|
6982
|
+
"description": "Scales and glows the circle — a generic emphasis state (e.g. hover, selection).",
|
|
6983
|
+
"fieldName": "highlighted"
|
|
6984
|
+
}
|
|
6985
|
+
],
|
|
6986
|
+
"superclass": {
|
|
6987
|
+
"name": "LitElement",
|
|
6988
|
+
"package": "lit"
|
|
6989
|
+
},
|
|
6990
|
+
"tagName": "map-circle",
|
|
6991
|
+
"customElement": true
|
|
6992
|
+
}
|
|
6993
|
+
],
|
|
6994
|
+
"exports": [
|
|
6995
|
+
{
|
|
6996
|
+
"kind": "js",
|
|
6997
|
+
"name": "MapCircle",
|
|
6998
|
+
"declaration": {
|
|
6999
|
+
"name": "MapCircle",
|
|
7000
|
+
"module": "src/map-circle.ts"
|
|
7001
|
+
}
|
|
5929
7002
|
},
|
|
5930
7003
|
{
|
|
5931
7004
|
"kind": "custom-element-definition",
|
|
5932
|
-
"name": "
|
|
7005
|
+
"name": "map-circle",
|
|
5933
7006
|
"declaration": {
|
|
5934
|
-
"name": "
|
|
5935
|
-
"module": "src/
|
|
7007
|
+
"name": "MapCircle",
|
|
7008
|
+
"module": "src/map-circle.ts"
|
|
5936
7009
|
}
|
|
5937
7010
|
}
|
|
5938
7011
|
]
|
|
5939
7012
|
},
|
|
5940
7013
|
{
|
|
5941
7014
|
"kind": "javascript-module",
|
|
5942
|
-
"path": "src/map-
|
|
7015
|
+
"path": "src/map-pin.ts",
|
|
5943
7016
|
"declarations": [
|
|
5944
7017
|
{
|
|
5945
7018
|
"kind": "class",
|
|
5946
|
-
"description": "A
|
|
5947
|
-
"name": "
|
|
7019
|
+
"description": "A circular \"Apple Maps\"-style map pin: a light-to-dark gradient fill with\na slight point at the bottom. Purely a visual primitive — it has no\n`mapbox-gl` (or any mapping library) dependency; the consumer positions\nit, e.g. via `new mapboxgl.Marker({ element: pinEl })`.",
|
|
7020
|
+
"name": "MapPin",
|
|
5948
7021
|
"slots": [
|
|
5949
7022
|
{
|
|
5950
|
-
"description": "
|
|
5951
|
-
"name": ""
|
|
5952
|
-
}
|
|
5953
|
-
],
|
|
5954
|
-
"members": [
|
|
7023
|
+
"description": "Badge content shown centered on the pin's circular head — a rank number, an emoji, a small icon.",
|
|
7024
|
+
"name": ""
|
|
7025
|
+
}
|
|
7026
|
+
],
|
|
7027
|
+
"members": [
|
|
7028
|
+
{
|
|
7029
|
+
"kind": "field",
|
|
7030
|
+
"name": "color",
|
|
7031
|
+
"type": {
|
|
7032
|
+
"text": "string"
|
|
7033
|
+
},
|
|
7034
|
+
"default": "\"#4f46e5\"",
|
|
7035
|
+
"description": "Fill color; the gradient's light (top) and dark (bottom) stops are derived from this.",
|
|
7036
|
+
"attribute": "color"
|
|
7037
|
+
},
|
|
7038
|
+
{
|
|
7039
|
+
"kind": "field",
|
|
7040
|
+
"name": "size",
|
|
7041
|
+
"type": {
|
|
7042
|
+
"text": "number"
|
|
7043
|
+
},
|
|
7044
|
+
"default": "32",
|
|
7045
|
+
"description": "Diameter of the circular head, in CSS pixels.",
|
|
7046
|
+
"attribute": "size"
|
|
7047
|
+
},
|
|
7048
|
+
{
|
|
7049
|
+
"kind": "field",
|
|
7050
|
+
"name": "highlighted",
|
|
7051
|
+
"type": {
|
|
7052
|
+
"text": "boolean"
|
|
7053
|
+
},
|
|
7054
|
+
"default": "false",
|
|
7055
|
+
"description": "Scales and glows the pin — a generic emphasis state (e.g. hover, selection).",
|
|
7056
|
+
"attribute": "highlighted",
|
|
7057
|
+
"reflects": true
|
|
7058
|
+
},
|
|
7059
|
+
{
|
|
7060
|
+
"kind": "field",
|
|
7061
|
+
"name": "_gradId",
|
|
7062
|
+
"privacy": "private",
|
|
7063
|
+
"readonly": true,
|
|
7064
|
+
"default": "`map-pin-grad-${gradientIdCounter++}`"
|
|
7065
|
+
}
|
|
7066
|
+
],
|
|
7067
|
+
"attributes": [
|
|
7068
|
+
{
|
|
7069
|
+
"name": "color",
|
|
7070
|
+
"type": {
|
|
7071
|
+
"text": "string"
|
|
7072
|
+
},
|
|
7073
|
+
"default": "\"#4f46e5\"",
|
|
7074
|
+
"description": "Fill color; the gradient's light (top) and dark (bottom) stops are derived from this.",
|
|
7075
|
+
"fieldName": "color"
|
|
7076
|
+
},
|
|
7077
|
+
{
|
|
7078
|
+
"name": "size",
|
|
7079
|
+
"type": {
|
|
7080
|
+
"text": "number"
|
|
7081
|
+
},
|
|
7082
|
+
"default": "32",
|
|
7083
|
+
"description": "Diameter of the circular head, in CSS pixels.",
|
|
7084
|
+
"fieldName": "size"
|
|
7085
|
+
},
|
|
7086
|
+
{
|
|
7087
|
+
"name": "highlighted",
|
|
7088
|
+
"type": {
|
|
7089
|
+
"text": "boolean"
|
|
7090
|
+
},
|
|
7091
|
+
"default": "false",
|
|
7092
|
+
"description": "Scales and glows the pin — a generic emphasis state (e.g. hover, selection).",
|
|
7093
|
+
"fieldName": "highlighted"
|
|
7094
|
+
}
|
|
7095
|
+
],
|
|
7096
|
+
"superclass": {
|
|
7097
|
+
"name": "LitElement",
|
|
7098
|
+
"package": "lit"
|
|
7099
|
+
},
|
|
7100
|
+
"tagName": "map-pin",
|
|
7101
|
+
"customElement": true
|
|
7102
|
+
}
|
|
7103
|
+
],
|
|
7104
|
+
"exports": [
|
|
7105
|
+
{
|
|
7106
|
+
"kind": "js",
|
|
7107
|
+
"name": "MapPin",
|
|
7108
|
+
"declaration": {
|
|
7109
|
+
"name": "MapPin",
|
|
7110
|
+
"module": "src/map-pin.ts"
|
|
7111
|
+
}
|
|
7112
|
+
},
|
|
7113
|
+
{
|
|
7114
|
+
"kind": "custom-element-definition",
|
|
7115
|
+
"name": "map-pin",
|
|
7116
|
+
"declaration": {
|
|
7117
|
+
"name": "MapPin",
|
|
7118
|
+
"module": "src/map-pin.ts"
|
|
7119
|
+
}
|
|
7120
|
+
}
|
|
7121
|
+
]
|
|
7122
|
+
},
|
|
7123
|
+
{
|
|
7124
|
+
"kind": "javascript-module",
|
|
7125
|
+
"path": "src/mcp-server.ts",
|
|
7126
|
+
"declarations": [],
|
|
7127
|
+
"exports": []
|
|
7128
|
+
},
|
|
7129
|
+
{
|
|
7130
|
+
"kind": "javascript-module",
|
|
7131
|
+
"path": "src/multi-select.ts",
|
|
7132
|
+
"declarations": [
|
|
7133
|
+
{
|
|
7134
|
+
"kind": "class",
|
|
7135
|
+
"description": "A form-associated multi-select: a trigger showing a compact summary of the\ncurrent selection, opening a multi-selectable listbox popover, with an\noptional removable-chip list of the chosen values. A drop-in generic\nreplacement for a native `<select multiple>` — set `name` on the element\nitself and each\nselected value is submitted as a repeated `name=value` entry, matching native\nmultiple-select semantics; `new FormData(form).getAll(name)` and\n`form.reset()` work unchanged.\n\nThe trigger visually follows `form-select`: a `2rem` field showing the\n`placeholder` when empty, the single selected label when one value is chosen,\nand `N selected` when several are. Set `show-chips` to additionally render\nthe selected values as compact chips below the trigger, each with an\naccessible `32px` remove control; chips are off by default and the region\nreserves no space while nothing is selected. Like `form-select`, the host is\n`display: block` and fills its container by default; constrain the host\n(`multi-select { display: inline-block; }`) to shrink it to its content\ninstead.\n\nSet `searchable` to replace the button trigger with an editable combobox that\ninfix-filters the predefined options by case-insensitive label. Typed text is\nonly a query: `values` changes exclusively when options are toggled, and an\nuncommitted query is discarded when the list closes.\n\nThe `variant` chooses between two presentations, and `searchable` applies to\nboth:\n\n- `\"dropdown\"` (default) is the popover form described above: a compact\n trigger (button, or search combobox when `searchable`) that opens a\n multi-selectable listbox on demand, closes on outside click / Escape, and\n shows a chevron.\n- `\"list\"` renders the options as a persistently visible, bordered surface\n with no popover, no chevron, and no `open` host state; it never registers\n outside-click listeners. Its scroll viewport is sized to roughly\n `visibleRows` `2rem` rows (see `visible-rows`). When not `searchable` the\n `listbox` itself is focusable and drives Arrow/Home/End/Enter/Space keyboard\n navigation via `aria-activedescendant`; when `searchable` a `2rem` search\n field sits above the list and owns navigation, and Escape only clears the\n query instead of hiding the list.",
|
|
7136
|
+
"name": "MultiSelect",
|
|
7137
|
+
"members": [
|
|
7138
|
+
{
|
|
7139
|
+
"kind": "field",
|
|
7140
|
+
"name": "formAssociated",
|
|
7141
|
+
"type": {
|
|
7142
|
+
"text": "boolean"
|
|
7143
|
+
},
|
|
7144
|
+
"static": true,
|
|
7145
|
+
"default": "true"
|
|
7146
|
+
},
|
|
7147
|
+
{
|
|
7148
|
+
"kind": "field",
|
|
7149
|
+
"name": "options",
|
|
7150
|
+
"type": {
|
|
7151
|
+
"text": "MultiSelectOption[]"
|
|
7152
|
+
},
|
|
7153
|
+
"default": "[]",
|
|
7154
|
+
"description": "The full list of selectable options."
|
|
7155
|
+
},
|
|
7156
|
+
{
|
|
7157
|
+
"kind": "field",
|
|
7158
|
+
"name": "values",
|
|
7159
|
+
"type": {
|
|
7160
|
+
"text": "string[]"
|
|
7161
|
+
},
|
|
7162
|
+
"default": "[]",
|
|
7163
|
+
"description": "The currently selected values. Programmatic assignments are deduplicated\nwhile preserving order and never fire `change`."
|
|
7164
|
+
},
|
|
7165
|
+
{
|
|
7166
|
+
"kind": "field",
|
|
7167
|
+
"name": "name",
|
|
7168
|
+
"type": {
|
|
7169
|
+
"text": "string"
|
|
7170
|
+
},
|
|
7171
|
+
"default": "\"\"",
|
|
7172
|
+
"description": "Form control name; each selected value submits under it.",
|
|
7173
|
+
"attribute": "name"
|
|
7174
|
+
},
|
|
7175
|
+
{
|
|
7176
|
+
"kind": "field",
|
|
7177
|
+
"name": "label",
|
|
7178
|
+
"type": {
|
|
7179
|
+
"text": "string"
|
|
7180
|
+
},
|
|
7181
|
+
"default": "\"\"",
|
|
7182
|
+
"description": "Accessible label applied to the trigger.",
|
|
7183
|
+
"attribute": "label"
|
|
7184
|
+
},
|
|
7185
|
+
{
|
|
7186
|
+
"kind": "field",
|
|
7187
|
+
"name": "placeholder",
|
|
7188
|
+
"type": {
|
|
7189
|
+
"text": "string"
|
|
7190
|
+
},
|
|
7191
|
+
"default": "\"Select options\"",
|
|
7192
|
+
"description": "Text shown on the trigger when nothing is selected.",
|
|
7193
|
+
"attribute": "placeholder"
|
|
7194
|
+
},
|
|
7195
|
+
{
|
|
7196
|
+
"kind": "field",
|
|
7197
|
+
"name": "disabled",
|
|
7198
|
+
"type": {
|
|
7199
|
+
"text": "boolean"
|
|
7200
|
+
},
|
|
7201
|
+
"default": "false",
|
|
7202
|
+
"description": "Disables the whole control, preventing the popover from opening.",
|
|
7203
|
+
"attribute": "disabled"
|
|
7204
|
+
},
|
|
7205
|
+
{
|
|
7206
|
+
"kind": "field",
|
|
7207
|
+
"name": "required",
|
|
7208
|
+
"type": {
|
|
7209
|
+
"text": "boolean"
|
|
7210
|
+
},
|
|
7211
|
+
"default": "false",
|
|
7212
|
+
"description": "Marks the control as required for native form validation.",
|
|
7213
|
+
"attribute": "required"
|
|
7214
|
+
},
|
|
7215
|
+
{
|
|
7216
|
+
"kind": "field",
|
|
7217
|
+
"name": "searchable",
|
|
7218
|
+
"type": {
|
|
7219
|
+
"text": "boolean"
|
|
7220
|
+
},
|
|
7221
|
+
"default": "false",
|
|
7222
|
+
"description": "Enables editable, case-insensitive infix filtering by option label.\nTyped text never becomes a selected value.",
|
|
7223
|
+
"attribute": "searchable",
|
|
7224
|
+
"reflects": true
|
|
7225
|
+
},
|
|
7226
|
+
{
|
|
7227
|
+
"kind": "field",
|
|
7228
|
+
"name": "max",
|
|
7229
|
+
"type": {
|
|
7230
|
+
"text": "number"
|
|
7231
|
+
},
|
|
7232
|
+
"default": "0",
|
|
7233
|
+
"description": "Maximum number of selectable values; `0` (default) means unlimited.",
|
|
7234
|
+
"attribute": "max"
|
|
7235
|
+
},
|
|
7236
|
+
{
|
|
7237
|
+
"kind": "field",
|
|
7238
|
+
"name": "variant",
|
|
7239
|
+
"type": {
|
|
7240
|
+
"text": "MultiSelectVariant"
|
|
7241
|
+
},
|
|
7242
|
+
"default": "\"dropdown\"",
|
|
7243
|
+
"description": "Presentation variant. `\"dropdown\"` (default) opens a popover listbox;\n`\"list\"` renders a persistently visible, bordered list surface. Reflected\nso consumers can style by `[variant=\"list\"]`.",
|
|
7244
|
+
"attribute": "variant",
|
|
7245
|
+
"reflects": true
|
|
7246
|
+
},
|
|
7247
|
+
{
|
|
7248
|
+
"kind": "field",
|
|
7249
|
+
"name": "visibleRows",
|
|
7250
|
+
"type": {
|
|
7251
|
+
"text": "number"
|
|
7252
|
+
},
|
|
7253
|
+
"default": "5",
|
|
7254
|
+
"description": "Number of `2rem` rows the `list` variant's scroll viewport shows before it\nscrolls, mirroring a native `<select size>`. Normalized to an integer of at\nleast `1` (default `5`); ignored by the `dropdown` variant.",
|
|
7255
|
+
"attribute": "visible-rows"
|
|
7256
|
+
},
|
|
7257
|
+
{
|
|
7258
|
+
"kind": "field",
|
|
7259
|
+
"name": "showChips",
|
|
7260
|
+
"type": {
|
|
7261
|
+
"text": "boolean"
|
|
7262
|
+
},
|
|
7263
|
+
"default": "false",
|
|
7264
|
+
"description": "When true, the selected values are also rendered as removable chips below\nthe trigger, each with an accessible `32px` remove control. Off by default:\nthe trigger already summarizes the selection, and values can be toggled off\nin the listbox. Applies to both variants.",
|
|
7265
|
+
"attribute": "show-chips"
|
|
7266
|
+
},
|
|
7267
|
+
{
|
|
7268
|
+
"kind": "field",
|
|
7269
|
+
"name": "_open",
|
|
7270
|
+
"type": {
|
|
7271
|
+
"text": "boolean"
|
|
7272
|
+
},
|
|
7273
|
+
"privacy": "private",
|
|
7274
|
+
"default": "false"
|
|
7275
|
+
},
|
|
7276
|
+
{
|
|
7277
|
+
"kind": "field",
|
|
7278
|
+
"name": "_activeIndex",
|
|
7279
|
+
"type": {
|
|
7280
|
+
"text": "number"
|
|
7281
|
+
},
|
|
7282
|
+
"privacy": "private",
|
|
7283
|
+
"default": "-1"
|
|
7284
|
+
},
|
|
7285
|
+
{
|
|
7286
|
+
"kind": "field",
|
|
7287
|
+
"name": "_query",
|
|
7288
|
+
"type": {
|
|
7289
|
+
"text": "string | null"
|
|
7290
|
+
},
|
|
7291
|
+
"privacy": "private",
|
|
7292
|
+
"default": "null"
|
|
7293
|
+
},
|
|
7294
|
+
{
|
|
7295
|
+
"kind": "field",
|
|
7296
|
+
"name": "_formDisabled",
|
|
7297
|
+
"type": {
|
|
7298
|
+
"text": "boolean"
|
|
7299
|
+
},
|
|
7300
|
+
"privacy": "private",
|
|
7301
|
+
"default": "false"
|
|
7302
|
+
},
|
|
7303
|
+
{
|
|
7304
|
+
"kind": "field",
|
|
7305
|
+
"name": "#internals",
|
|
7306
|
+
"privacy": "private"
|
|
7307
|
+
},
|
|
7308
|
+
{
|
|
7309
|
+
"kind": "field",
|
|
7310
|
+
"name": "#defaultValues",
|
|
7311
|
+
"privacy": "private",
|
|
7312
|
+
"type": {
|
|
7313
|
+
"text": "string[] | null"
|
|
7314
|
+
},
|
|
7315
|
+
"default": "null"
|
|
7316
|
+
},
|
|
7317
|
+
{
|
|
7318
|
+
"kind": "field",
|
|
7319
|
+
"name": "#listboxPointerDown",
|
|
7320
|
+
"privacy": "private",
|
|
7321
|
+
"type": {
|
|
7322
|
+
"text": "boolean"
|
|
7323
|
+
},
|
|
7324
|
+
"default": "false"
|
|
7325
|
+
},
|
|
7326
|
+
{
|
|
7327
|
+
"kind": "field",
|
|
7328
|
+
"name": "#suppressNextBlur",
|
|
7329
|
+
"privacy": "private",
|
|
7330
|
+
"type": {
|
|
7331
|
+
"text": "boolean"
|
|
7332
|
+
},
|
|
7333
|
+
"default": "false"
|
|
7334
|
+
},
|
|
7335
|
+
{
|
|
7336
|
+
"kind": "field",
|
|
7337
|
+
"name": "#restoringSearchFocus",
|
|
7338
|
+
"privacy": "private",
|
|
7339
|
+
"type": {
|
|
7340
|
+
"text": "boolean"
|
|
7341
|
+
},
|
|
7342
|
+
"default": "false"
|
|
7343
|
+
},
|
|
7344
|
+
{
|
|
7345
|
+
"kind": "field",
|
|
7346
|
+
"name": "#searchSelection",
|
|
7347
|
+
"privacy": "private",
|
|
7348
|
+
"type": {
|
|
7349
|
+
"text": "[number | null, number | null] | null"
|
|
7350
|
+
},
|
|
7351
|
+
"default": "null"
|
|
7352
|
+
},
|
|
7353
|
+
{
|
|
7354
|
+
"kind": "field",
|
|
7355
|
+
"name": "#isComposing",
|
|
7356
|
+
"privacy": "private",
|
|
7357
|
+
"type": {
|
|
7358
|
+
"text": "boolean"
|
|
7359
|
+
},
|
|
7360
|
+
"default": "false"
|
|
7361
|
+
},
|
|
7362
|
+
{
|
|
7363
|
+
"kind": "field",
|
|
7364
|
+
"name": "#compositionJustEnded",
|
|
7365
|
+
"privacy": "private",
|
|
7366
|
+
"type": {
|
|
7367
|
+
"text": "boolean"
|
|
7368
|
+
},
|
|
7369
|
+
"default": "false"
|
|
7370
|
+
},
|
|
7371
|
+
{
|
|
7372
|
+
"kind": "field",
|
|
7373
|
+
"name": "#compositionEndTimer",
|
|
7374
|
+
"privacy": "private",
|
|
7375
|
+
"type": {
|
|
7376
|
+
"text": "ReturnType<typeof setTimeout> | null"
|
|
7377
|
+
},
|
|
7378
|
+
"default": "null"
|
|
7379
|
+
},
|
|
7380
|
+
{
|
|
7381
|
+
"kind": "field",
|
|
7382
|
+
"name": "#blurTimer",
|
|
7383
|
+
"privacy": "private",
|
|
7384
|
+
"type": {
|
|
7385
|
+
"text": "ReturnType<typeof setTimeout> | null"
|
|
7386
|
+
},
|
|
7387
|
+
"default": "null"
|
|
7388
|
+
},
|
|
7389
|
+
{
|
|
7390
|
+
"kind": "field",
|
|
7391
|
+
"name": "#listboxId",
|
|
7392
|
+
"privacy": "private",
|
|
7393
|
+
"readonly": true,
|
|
7394
|
+
"default": "`multi-select-listbox-${++instanceCount}`"
|
|
7395
|
+
},
|
|
7396
|
+
{
|
|
7397
|
+
"kind": "field",
|
|
7398
|
+
"name": "#isDisabled",
|
|
7399
|
+
"privacy": "private",
|
|
7400
|
+
"type": {
|
|
7401
|
+
"text": "boolean"
|
|
7402
|
+
},
|
|
7403
|
+
"description": "Whether the host or an ancestor fieldset currently disables the control.",
|
|
7404
|
+
"readonly": true
|
|
7405
|
+
},
|
|
7406
|
+
{
|
|
7407
|
+
"kind": "field",
|
|
7408
|
+
"name": "#rows",
|
|
7409
|
+
"privacy": "private",
|
|
7410
|
+
"type": {
|
|
7411
|
+
"text": "number"
|
|
7412
|
+
},
|
|
7413
|
+
"description": "`visibleRows` normalized to a whole number of rows, at least `1`.",
|
|
7414
|
+
"readonly": true
|
|
7415
|
+
},
|
|
7416
|
+
{
|
|
7417
|
+
"kind": "method",
|
|
7418
|
+
"name": "formResetCallback",
|
|
7419
|
+
"return": {
|
|
7420
|
+
"type": {
|
|
7421
|
+
"text": "void"
|
|
7422
|
+
}
|
|
7423
|
+
},
|
|
7424
|
+
"description": "Restores the selection captured at first render, per the form contract."
|
|
7425
|
+
},
|
|
7426
|
+
{
|
|
7427
|
+
"kind": "method",
|
|
7428
|
+
"name": "formDisabledCallback",
|
|
7429
|
+
"return": {
|
|
7430
|
+
"type": {
|
|
7431
|
+
"text": "void"
|
|
7432
|
+
}
|
|
7433
|
+
},
|
|
7434
|
+
"parameters": [
|
|
7435
|
+
{
|
|
7436
|
+
"name": "disabled",
|
|
7437
|
+
"type": {
|
|
7438
|
+
"text": "boolean"
|
|
7439
|
+
}
|
|
7440
|
+
}
|
|
7441
|
+
],
|
|
7442
|
+
"description": "Mirrors an ancestor fieldset's disabled state and closes the popover."
|
|
7443
|
+
},
|
|
7444
|
+
{
|
|
7445
|
+
"kind": "method",
|
|
7446
|
+
"name": "formStateRestoreCallback",
|
|
7447
|
+
"return": {
|
|
7448
|
+
"type": {
|
|
7449
|
+
"text": "void"
|
|
7450
|
+
}
|
|
7451
|
+
},
|
|
7452
|
+
"parameters": [
|
|
7453
|
+
{
|
|
7454
|
+
"name": "state",
|
|
7455
|
+
"type": {
|
|
7456
|
+
"text": "string | File | FormData | null"
|
|
7457
|
+
}
|
|
7458
|
+
}
|
|
7459
|
+
],
|
|
7460
|
+
"description": "Restores the selection from the saved form state on navigation/autofill."
|
|
7461
|
+
},
|
|
7462
|
+
{
|
|
7463
|
+
"kind": "method",
|
|
7464
|
+
"name": "#syncFormValue",
|
|
7465
|
+
"privacy": "private",
|
|
7466
|
+
"return": {
|
|
7467
|
+
"type": {
|
|
7468
|
+
"text": "void"
|
|
7469
|
+
}
|
|
7470
|
+
}
|
|
7471
|
+
},
|
|
7472
|
+
{
|
|
7473
|
+
"kind": "method",
|
|
7474
|
+
"name": "#syncValidity",
|
|
7475
|
+
"privacy": "private",
|
|
7476
|
+
"return": {
|
|
7477
|
+
"type": {
|
|
7478
|
+
"text": "void"
|
|
7479
|
+
}
|
|
7480
|
+
}
|
|
7481
|
+
},
|
|
7482
|
+
{
|
|
7483
|
+
"kind": "method",
|
|
7484
|
+
"name": "#anchorElement",
|
|
7485
|
+
"privacy": "private",
|
|
7486
|
+
"return": {
|
|
7487
|
+
"type": {
|
|
7488
|
+
"text": "HTMLElement | null"
|
|
7489
|
+
}
|
|
7490
|
+
}
|
|
7491
|
+
},
|
|
7492
|
+
{
|
|
7493
|
+
"kind": "method",
|
|
7494
|
+
"name": "#dedupe",
|
|
7495
|
+
"privacy": "private",
|
|
7496
|
+
"return": {
|
|
7497
|
+
"type": {
|
|
7498
|
+
"text": "string[]"
|
|
7499
|
+
}
|
|
7500
|
+
},
|
|
7501
|
+
"parameters": [
|
|
7502
|
+
{
|
|
7503
|
+
"name": "values",
|
|
7504
|
+
"type": {
|
|
7505
|
+
"text": "readonly string[]"
|
|
7506
|
+
}
|
|
7507
|
+
}
|
|
7508
|
+
]
|
|
7509
|
+
},
|
|
7510
|
+
{
|
|
7511
|
+
"kind": "method",
|
|
7512
|
+
"name": "#optionByValue",
|
|
7513
|
+
"privacy": "private",
|
|
7514
|
+
"return": {
|
|
7515
|
+
"type": {
|
|
7516
|
+
"text": "MultiSelectOption | undefined"
|
|
7517
|
+
}
|
|
7518
|
+
},
|
|
7519
|
+
"parameters": [
|
|
7520
|
+
{
|
|
7521
|
+
"name": "value",
|
|
7522
|
+
"type": {
|
|
7523
|
+
"text": "string"
|
|
7524
|
+
}
|
|
7525
|
+
}
|
|
7526
|
+
],
|
|
7527
|
+
"description": "First option matching `value`, so duplicate values resolve deterministically."
|
|
7528
|
+
},
|
|
7529
|
+
{
|
|
7530
|
+
"kind": "method",
|
|
7531
|
+
"name": "#labelFor",
|
|
7532
|
+
"privacy": "private",
|
|
7533
|
+
"return": {
|
|
7534
|
+
"type": {
|
|
7535
|
+
"text": "string"
|
|
7536
|
+
}
|
|
7537
|
+
},
|
|
7538
|
+
"parameters": [
|
|
7539
|
+
{
|
|
7540
|
+
"name": "value",
|
|
7541
|
+
"type": {
|
|
7542
|
+
"text": "string"
|
|
7543
|
+
}
|
|
7544
|
+
}
|
|
7545
|
+
]
|
|
7546
|
+
},
|
|
7547
|
+
{
|
|
7548
|
+
"kind": "method",
|
|
7549
|
+
"name": "#summaryText",
|
|
7550
|
+
"privacy": "private",
|
|
7551
|
+
"return": {
|
|
7552
|
+
"type": {
|
|
7553
|
+
"text": "string"
|
|
7554
|
+
}
|
|
7555
|
+
}
|
|
7556
|
+
},
|
|
7557
|
+
{
|
|
7558
|
+
"kind": "method",
|
|
7559
|
+
"name": "#liveText",
|
|
7560
|
+
"privacy": "private",
|
|
7561
|
+
"return": {
|
|
7562
|
+
"type": {
|
|
7563
|
+
"text": "string"
|
|
7564
|
+
}
|
|
7565
|
+
}
|
|
7566
|
+
},
|
|
7567
|
+
{
|
|
7568
|
+
"kind": "method",
|
|
7569
|
+
"name": "#visibleOptions",
|
|
7570
|
+
"privacy": "private",
|
|
7571
|
+
"return": {
|
|
7572
|
+
"type": {
|
|
7573
|
+
"text": "MultiSelectOption[]"
|
|
7574
|
+
}
|
|
7575
|
+
}
|
|
7576
|
+
},
|
|
7577
|
+
{
|
|
7578
|
+
"kind": "method",
|
|
7579
|
+
"name": "#atCap",
|
|
7580
|
+
"privacy": "private",
|
|
7581
|
+
"return": {
|
|
7582
|
+
"type": {
|
|
7583
|
+
"text": "boolean"
|
|
7584
|
+
}
|
|
7585
|
+
},
|
|
7586
|
+
"parameters": [
|
|
7587
|
+
{
|
|
7588
|
+
"name": "value",
|
|
7589
|
+
"type": {
|
|
7590
|
+
"text": "string"
|
|
7591
|
+
}
|
|
7592
|
+
}
|
|
7593
|
+
],
|
|
7594
|
+
"description": "Whether `value` is currently at the selection cap and cannot be added."
|
|
7595
|
+
},
|
|
7596
|
+
{
|
|
7597
|
+
"kind": "method",
|
|
7598
|
+
"name": "#isOptionDisabled",
|
|
7599
|
+
"privacy": "private",
|
|
7600
|
+
"return": {
|
|
7601
|
+
"type": {
|
|
7602
|
+
"text": "boolean"
|
|
7603
|
+
}
|
|
7604
|
+
},
|
|
7605
|
+
"parameters": [
|
|
7606
|
+
{
|
|
7607
|
+
"name": "option",
|
|
7608
|
+
"type": {
|
|
7609
|
+
"text": "MultiSelectOption"
|
|
7610
|
+
}
|
|
7611
|
+
}
|
|
7612
|
+
]
|
|
7613
|
+
},
|
|
7614
|
+
{
|
|
7615
|
+
"kind": "method",
|
|
7616
|
+
"name": "#toggleOption",
|
|
7617
|
+
"privacy": "private",
|
|
7618
|
+
"return": {
|
|
7619
|
+
"type": {
|
|
7620
|
+
"text": "void"
|
|
7621
|
+
}
|
|
7622
|
+
},
|
|
7623
|
+
"parameters": [
|
|
7624
|
+
{
|
|
7625
|
+
"name": "option",
|
|
7626
|
+
"type": {
|
|
7627
|
+
"text": "MultiSelectOption"
|
|
7628
|
+
}
|
|
7629
|
+
}
|
|
7630
|
+
]
|
|
7631
|
+
},
|
|
7632
|
+
{
|
|
7633
|
+
"kind": "method",
|
|
7634
|
+
"name": "#removeValue",
|
|
7635
|
+
"privacy": "private",
|
|
7636
|
+
"return": {
|
|
7637
|
+
"type": {
|
|
7638
|
+
"text": "void"
|
|
7639
|
+
}
|
|
7640
|
+
},
|
|
7641
|
+
"parameters": [
|
|
7642
|
+
{
|
|
7643
|
+
"name": "value",
|
|
7644
|
+
"type": {
|
|
7645
|
+
"text": "string"
|
|
7646
|
+
}
|
|
7647
|
+
}
|
|
7648
|
+
]
|
|
7649
|
+
},
|
|
7650
|
+
{
|
|
7651
|
+
"kind": "method",
|
|
7652
|
+
"name": "#commit",
|
|
7653
|
+
"privacy": "private",
|
|
7654
|
+
"return": {
|
|
7655
|
+
"type": {
|
|
7656
|
+
"text": "void"
|
|
7657
|
+
}
|
|
7658
|
+
},
|
|
7659
|
+
"parameters": [
|
|
7660
|
+
{
|
|
7661
|
+
"name": "next",
|
|
7662
|
+
"type": {
|
|
7663
|
+
"text": "string[]"
|
|
7664
|
+
}
|
|
7665
|
+
}
|
|
7666
|
+
]
|
|
7667
|
+
},
|
|
7668
|
+
{
|
|
7669
|
+
"kind": "field",
|
|
7670
|
+
"name": "#onWindowMousedown",
|
|
7671
|
+
"privacy": "private"
|
|
7672
|
+
},
|
|
7673
|
+
{
|
|
7674
|
+
"kind": "field",
|
|
7675
|
+
"name": "#onFocusOut",
|
|
7676
|
+
"privacy": "private"
|
|
7677
|
+
},
|
|
7678
|
+
{
|
|
7679
|
+
"kind": "method",
|
|
7680
|
+
"name": "#toggle",
|
|
7681
|
+
"privacy": "private",
|
|
7682
|
+
"return": {
|
|
7683
|
+
"type": {
|
|
7684
|
+
"text": "void"
|
|
7685
|
+
}
|
|
7686
|
+
}
|
|
7687
|
+
},
|
|
7688
|
+
{
|
|
7689
|
+
"kind": "method",
|
|
7690
|
+
"name": "#open",
|
|
7691
|
+
"privacy": "private",
|
|
7692
|
+
"return": {
|
|
7693
|
+
"type": {
|
|
7694
|
+
"text": "void"
|
|
7695
|
+
}
|
|
7696
|
+
}
|
|
7697
|
+
},
|
|
7698
|
+
{
|
|
7699
|
+
"kind": "method",
|
|
7700
|
+
"name": "#close",
|
|
7701
|
+
"privacy": "private",
|
|
7702
|
+
"return": {
|
|
7703
|
+
"type": {
|
|
7704
|
+
"text": "void"
|
|
7705
|
+
}
|
|
7706
|
+
}
|
|
7707
|
+
},
|
|
7708
|
+
{
|
|
7709
|
+
"kind": "method",
|
|
7710
|
+
"name": "#initialActiveIndex",
|
|
7711
|
+
"privacy": "private",
|
|
7712
|
+
"return": {
|
|
7713
|
+
"type": {
|
|
7714
|
+
"text": "number"
|
|
7715
|
+
}
|
|
7716
|
+
}
|
|
7717
|
+
},
|
|
7718
|
+
{
|
|
7719
|
+
"kind": "method",
|
|
7720
|
+
"name": "#moveActive",
|
|
7721
|
+
"privacy": "private",
|
|
7722
|
+
"return": {
|
|
7723
|
+
"type": {
|
|
7724
|
+
"text": "void"
|
|
7725
|
+
}
|
|
7726
|
+
},
|
|
7727
|
+
"parameters": [
|
|
7728
|
+
{
|
|
7729
|
+
"name": "delta",
|
|
7730
|
+
"type": {
|
|
7731
|
+
"text": "number"
|
|
7732
|
+
}
|
|
7733
|
+
}
|
|
7734
|
+
]
|
|
7735
|
+
},
|
|
7736
|
+
{
|
|
7737
|
+
"kind": "method",
|
|
7738
|
+
"name": "#toggleActive",
|
|
7739
|
+
"privacy": "private",
|
|
7740
|
+
"return": {
|
|
7741
|
+
"type": {
|
|
7742
|
+
"text": "void"
|
|
7743
|
+
}
|
|
7744
|
+
}
|
|
7745
|
+
},
|
|
5955
7746
|
{
|
|
5956
|
-
"kind": "
|
|
5957
|
-
"name": "
|
|
5958
|
-
"
|
|
5959
|
-
|
|
7747
|
+
"kind": "method",
|
|
7748
|
+
"name": "#onTriggerKeydown",
|
|
7749
|
+
"privacy": "private",
|
|
7750
|
+
"return": {
|
|
7751
|
+
"type": {
|
|
7752
|
+
"text": "void"
|
|
7753
|
+
}
|
|
7754
|
+
},
|
|
7755
|
+
"parameters": [
|
|
7756
|
+
{
|
|
7757
|
+
"name": "e",
|
|
7758
|
+
"type": {
|
|
7759
|
+
"text": "KeyboardEvent"
|
|
7760
|
+
}
|
|
7761
|
+
}
|
|
7762
|
+
]
|
|
7763
|
+
},
|
|
7764
|
+
{
|
|
7765
|
+
"kind": "method",
|
|
7766
|
+
"name": "#onSearchFocus",
|
|
7767
|
+
"privacy": "private",
|
|
7768
|
+
"return": {
|
|
7769
|
+
"type": {
|
|
7770
|
+
"text": "void"
|
|
7771
|
+
}
|
|
7772
|
+
},
|
|
7773
|
+
"parameters": [
|
|
7774
|
+
{
|
|
7775
|
+
"name": "e",
|
|
7776
|
+
"type": {
|
|
7777
|
+
"text": "FocusEvent"
|
|
7778
|
+
}
|
|
7779
|
+
}
|
|
7780
|
+
]
|
|
7781
|
+
},
|
|
7782
|
+
{
|
|
7783
|
+
"kind": "method",
|
|
7784
|
+
"name": "#onSearchClick",
|
|
7785
|
+
"privacy": "private",
|
|
7786
|
+
"return": {
|
|
7787
|
+
"type": {
|
|
7788
|
+
"text": "void"
|
|
7789
|
+
}
|
|
7790
|
+
}
|
|
7791
|
+
},
|
|
7792
|
+
{
|
|
7793
|
+
"kind": "method",
|
|
7794
|
+
"name": "#onSearchMousedown",
|
|
7795
|
+
"privacy": "private",
|
|
7796
|
+
"return": {
|
|
7797
|
+
"type": {
|
|
7798
|
+
"text": "void"
|
|
7799
|
+
}
|
|
7800
|
+
},
|
|
7801
|
+
"parameters": [
|
|
7802
|
+
{
|
|
7803
|
+
"name": "e",
|
|
7804
|
+
"type": {
|
|
7805
|
+
"text": "MouseEvent"
|
|
7806
|
+
}
|
|
7807
|
+
}
|
|
7808
|
+
]
|
|
7809
|
+
},
|
|
7810
|
+
{
|
|
7811
|
+
"kind": "method",
|
|
7812
|
+
"name": "#onListFocus",
|
|
7813
|
+
"privacy": "private",
|
|
7814
|
+
"return": {
|
|
7815
|
+
"type": {
|
|
7816
|
+
"text": "void"
|
|
7817
|
+
}
|
|
7818
|
+
},
|
|
7819
|
+
"description": "Seeds the active option when the persistent (non-searchable) list focuses."
|
|
7820
|
+
},
|
|
7821
|
+
{
|
|
7822
|
+
"kind": "method",
|
|
7823
|
+
"name": "#onListKeydown",
|
|
7824
|
+
"privacy": "private",
|
|
7825
|
+
"return": {
|
|
7826
|
+
"type": {
|
|
7827
|
+
"text": "void"
|
|
7828
|
+
}
|
|
7829
|
+
},
|
|
7830
|
+
"parameters": [
|
|
7831
|
+
{
|
|
7832
|
+
"name": "e",
|
|
7833
|
+
"type": {
|
|
7834
|
+
"text": "KeyboardEvent"
|
|
7835
|
+
}
|
|
7836
|
+
}
|
|
7837
|
+
],
|
|
7838
|
+
"description": "Keyboard navigation for the focusable, non-searchable persistent list."
|
|
7839
|
+
},
|
|
7840
|
+
{
|
|
7841
|
+
"kind": "method",
|
|
7842
|
+
"name": "#onListSearchInput",
|
|
7843
|
+
"privacy": "private",
|
|
7844
|
+
"return": {
|
|
7845
|
+
"type": {
|
|
7846
|
+
"text": "void"
|
|
7847
|
+
}
|
|
7848
|
+
},
|
|
7849
|
+
"parameters": [
|
|
7850
|
+
{
|
|
7851
|
+
"name": "e",
|
|
7852
|
+
"type": {
|
|
7853
|
+
"text": "InputEvent"
|
|
7854
|
+
}
|
|
7855
|
+
}
|
|
7856
|
+
],
|
|
7857
|
+
"description": "Infix-filters the persistent list as the searchable-list query changes."
|
|
7858
|
+
},
|
|
7859
|
+
{
|
|
7860
|
+
"kind": "method",
|
|
7861
|
+
"name": "#onListSearchKeydown",
|
|
7862
|
+
"privacy": "private",
|
|
7863
|
+
"return": {
|
|
7864
|
+
"type": {
|
|
7865
|
+
"text": "void"
|
|
7866
|
+
}
|
|
7867
|
+
},
|
|
7868
|
+
"parameters": [
|
|
7869
|
+
{
|
|
7870
|
+
"name": "e",
|
|
7871
|
+
"type": {
|
|
7872
|
+
"text": "KeyboardEvent"
|
|
7873
|
+
}
|
|
7874
|
+
}
|
|
7875
|
+
],
|
|
7876
|
+
"description": "Keyboard navigation for the search field above a searchable persistent list."
|
|
7877
|
+
},
|
|
7878
|
+
{
|
|
7879
|
+
"kind": "method",
|
|
7880
|
+
"name": "#onSearchInput",
|
|
7881
|
+
"privacy": "private",
|
|
7882
|
+
"return": {
|
|
7883
|
+
"type": {
|
|
7884
|
+
"text": "void"
|
|
7885
|
+
}
|
|
7886
|
+
},
|
|
7887
|
+
"parameters": [
|
|
7888
|
+
{
|
|
7889
|
+
"name": "e",
|
|
7890
|
+
"type": {
|
|
7891
|
+
"text": "InputEvent"
|
|
7892
|
+
}
|
|
7893
|
+
}
|
|
7894
|
+
]
|
|
7895
|
+
},
|
|
7896
|
+
{
|
|
7897
|
+
"kind": "method",
|
|
7898
|
+
"name": "#onSearchKeydown",
|
|
7899
|
+
"privacy": "private",
|
|
7900
|
+
"return": {
|
|
7901
|
+
"type": {
|
|
7902
|
+
"text": "void"
|
|
7903
|
+
}
|
|
7904
|
+
},
|
|
7905
|
+
"parameters": [
|
|
7906
|
+
{
|
|
7907
|
+
"name": "e",
|
|
7908
|
+
"type": {
|
|
7909
|
+
"text": "KeyboardEvent"
|
|
7910
|
+
}
|
|
7911
|
+
}
|
|
7912
|
+
]
|
|
7913
|
+
},
|
|
7914
|
+
{
|
|
7915
|
+
"kind": "method",
|
|
7916
|
+
"name": "#onSearchBlur",
|
|
7917
|
+
"privacy": "private",
|
|
7918
|
+
"return": {
|
|
7919
|
+
"type": {
|
|
7920
|
+
"text": "void"
|
|
7921
|
+
}
|
|
7922
|
+
}
|
|
7923
|
+
},
|
|
7924
|
+
{
|
|
7925
|
+
"kind": "method",
|
|
7926
|
+
"name": "#focusSearchInput",
|
|
7927
|
+
"privacy": "private",
|
|
7928
|
+
"return": {
|
|
7929
|
+
"type": {
|
|
7930
|
+
"text": "void"
|
|
7931
|
+
}
|
|
7932
|
+
},
|
|
7933
|
+
"parameters": [
|
|
7934
|
+
{
|
|
7935
|
+
"name": "e",
|
|
7936
|
+
"type": {
|
|
7937
|
+
"text": "MouseEvent"
|
|
7938
|
+
}
|
|
7939
|
+
}
|
|
7940
|
+
]
|
|
7941
|
+
},
|
|
7942
|
+
{
|
|
7943
|
+
"kind": "method",
|
|
7944
|
+
"name": "#onCompositionStart",
|
|
7945
|
+
"privacy": "private",
|
|
7946
|
+
"return": {
|
|
7947
|
+
"type": {
|
|
7948
|
+
"text": "void"
|
|
7949
|
+
}
|
|
7950
|
+
}
|
|
7951
|
+
},
|
|
7952
|
+
{
|
|
7953
|
+
"kind": "method",
|
|
7954
|
+
"name": "#onCompositionEnd",
|
|
7955
|
+
"privacy": "private",
|
|
7956
|
+
"return": {
|
|
7957
|
+
"type": {
|
|
7958
|
+
"text": "void"
|
|
7959
|
+
}
|
|
7960
|
+
}
|
|
7961
|
+
},
|
|
7962
|
+
{
|
|
7963
|
+
"kind": "method",
|
|
7964
|
+
"name": "#onListboxMousedown",
|
|
7965
|
+
"privacy": "private",
|
|
7966
|
+
"return": {
|
|
7967
|
+
"type": {
|
|
7968
|
+
"text": "void"
|
|
7969
|
+
}
|
|
7970
|
+
},
|
|
7971
|
+
"parameters": [
|
|
7972
|
+
{
|
|
7973
|
+
"name": "e",
|
|
7974
|
+
"type": {
|
|
7975
|
+
"text": "MouseEvent"
|
|
7976
|
+
}
|
|
7977
|
+
}
|
|
7978
|
+
]
|
|
7979
|
+
},
|
|
7980
|
+
{
|
|
7981
|
+
"kind": "method",
|
|
7982
|
+
"name": "#onOptionMousedown",
|
|
7983
|
+
"privacy": "private",
|
|
7984
|
+
"return": {
|
|
7985
|
+
"type": {
|
|
7986
|
+
"text": "void"
|
|
7987
|
+
}
|
|
5960
7988
|
},
|
|
5961
|
-
"
|
|
5962
|
-
|
|
5963
|
-
|
|
7989
|
+
"parameters": [
|
|
7990
|
+
{
|
|
7991
|
+
"name": "e",
|
|
7992
|
+
"type": {
|
|
7993
|
+
"text": "MouseEvent"
|
|
7994
|
+
}
|
|
7995
|
+
},
|
|
7996
|
+
{
|
|
7997
|
+
"name": "option",
|
|
7998
|
+
"type": {
|
|
7999
|
+
"text": "MultiSelectOption"
|
|
8000
|
+
}
|
|
8001
|
+
}
|
|
8002
|
+
]
|
|
5964
8003
|
},
|
|
5965
8004
|
{
|
|
5966
|
-
"kind": "
|
|
5967
|
-
"name": "
|
|
5968
|
-
"
|
|
5969
|
-
|
|
8005
|
+
"kind": "method",
|
|
8006
|
+
"name": "#optionIconSize",
|
|
8007
|
+
"privacy": "private",
|
|
8008
|
+
"return": {
|
|
8009
|
+
"type": {
|
|
8010
|
+
"text": "number"
|
|
8011
|
+
}
|
|
5970
8012
|
},
|
|
5971
|
-
"
|
|
5972
|
-
|
|
5973
|
-
|
|
8013
|
+
"parameters": [
|
|
8014
|
+
{
|
|
8015
|
+
"name": "option",
|
|
8016
|
+
"type": {
|
|
8017
|
+
"text": "MultiSelectOption"
|
|
8018
|
+
}
|
|
8019
|
+
}
|
|
8020
|
+
]
|
|
5974
8021
|
},
|
|
5975
8022
|
{
|
|
5976
|
-
"kind": "
|
|
5977
|
-
"name": "
|
|
5978
|
-
"
|
|
5979
|
-
|
|
5980
|
-
|
|
5981
|
-
|
|
5982
|
-
|
|
5983
|
-
|
|
8023
|
+
"kind": "method",
|
|
8024
|
+
"name": "#renderOptionIcon",
|
|
8025
|
+
"privacy": "private",
|
|
8026
|
+
"parameters": [
|
|
8027
|
+
{
|
|
8028
|
+
"name": "option",
|
|
8029
|
+
"type": {
|
|
8030
|
+
"text": "MultiSelectOption"
|
|
8031
|
+
}
|
|
8032
|
+
}
|
|
8033
|
+
]
|
|
5984
8034
|
},
|
|
5985
8035
|
{
|
|
5986
|
-
"kind": "
|
|
5987
|
-
"name": "
|
|
5988
|
-
"
|
|
5989
|
-
|
|
5990
|
-
|
|
5991
|
-
|
|
5992
|
-
|
|
5993
|
-
|
|
5994
|
-
|
|
8036
|
+
"kind": "method",
|
|
8037
|
+
"name": "renderOptionItems",
|
|
8038
|
+
"privacy": "private",
|
|
8039
|
+
"parameters": [
|
|
8040
|
+
{
|
|
8041
|
+
"name": "options",
|
|
8042
|
+
"type": {
|
|
8043
|
+
"text": "MultiSelectOption[]"
|
|
8044
|
+
}
|
|
8045
|
+
}
|
|
8046
|
+
],
|
|
8047
|
+
"description": "The shared `<li role=\"option\">` items for both variants' listboxes."
|
|
5995
8048
|
},
|
|
5996
8049
|
{
|
|
5997
|
-
"kind": "
|
|
5998
|
-
"name": "
|
|
5999
|
-
"privacy": "private"
|
|
6000
|
-
|
|
6001
|
-
|
|
8050
|
+
"kind": "method",
|
|
8051
|
+
"name": "renderListbox",
|
|
8052
|
+
"privacy": "private"
|
|
8053
|
+
},
|
|
8054
|
+
{
|
|
8055
|
+
"kind": "method",
|
|
8056
|
+
"name": "renderChips",
|
|
8057
|
+
"privacy": "private"
|
|
8058
|
+
},
|
|
8059
|
+
{
|
|
8060
|
+
"kind": "method",
|
|
8061
|
+
"name": "renderSearchTrigger",
|
|
8062
|
+
"privacy": "private"
|
|
8063
|
+
},
|
|
8064
|
+
{
|
|
8065
|
+
"kind": "method",
|
|
8066
|
+
"name": "renderButtonTrigger",
|
|
8067
|
+
"privacy": "private"
|
|
8068
|
+
},
|
|
8069
|
+
{
|
|
8070
|
+
"kind": "method",
|
|
8071
|
+
"name": "renderListSearch",
|
|
8072
|
+
"privacy": "private"
|
|
8073
|
+
},
|
|
8074
|
+
{
|
|
8075
|
+
"kind": "method",
|
|
8076
|
+
"name": "renderPersistentList",
|
|
8077
|
+
"privacy": "private"
|
|
8078
|
+
},
|
|
8079
|
+
{
|
|
8080
|
+
"kind": "method",
|
|
8081
|
+
"name": "renderListVariant",
|
|
8082
|
+
"privacy": "private"
|
|
8083
|
+
}
|
|
8084
|
+
],
|
|
8085
|
+
"events": [
|
|
8086
|
+
{
|
|
8087
|
+
"name": "change",
|
|
8088
|
+
"type": {
|
|
8089
|
+
"text": "CustomEvent"
|
|
8090
|
+
},
|
|
8091
|
+
"description": "Fired with `{ values: string[] }` (a copied array) when a value is added or removed through the UI. Programmatic `values` assignments do not fire it."
|
|
6002
8092
|
}
|
|
6003
8093
|
],
|
|
6004
8094
|
"attributes": [
|
|
6005
8095
|
{
|
|
6006
|
-
"name": "
|
|
8096
|
+
"name": "name",
|
|
6007
8097
|
"type": {
|
|
6008
8098
|
"text": "string"
|
|
6009
8099
|
},
|
|
6010
|
-
"default": "\"
|
|
6011
|
-
"description": "
|
|
6012
|
-
"fieldName": "
|
|
8100
|
+
"default": "\"\"",
|
|
8101
|
+
"description": "Form control name; each selected value submits under it.",
|
|
8102
|
+
"fieldName": "name"
|
|
6013
8103
|
},
|
|
6014
8104
|
{
|
|
6015
|
-
"name": "
|
|
8105
|
+
"name": "label",
|
|
6016
8106
|
"type": {
|
|
6017
|
-
"text": "
|
|
8107
|
+
"text": "string"
|
|
6018
8108
|
},
|
|
6019
|
-
"default": "
|
|
6020
|
-
"description": "
|
|
6021
|
-
"fieldName": "
|
|
8109
|
+
"default": "\"\"",
|
|
8110
|
+
"description": "Accessible label applied to the trigger.",
|
|
8111
|
+
"fieldName": "label"
|
|
6022
8112
|
},
|
|
6023
8113
|
{
|
|
6024
|
-
"name": "
|
|
8114
|
+
"name": "placeholder",
|
|
6025
8115
|
"type": {
|
|
6026
|
-
"text": "
|
|
8116
|
+
"text": "string"
|
|
6027
8117
|
},
|
|
6028
|
-
"default": "
|
|
6029
|
-
"description": "
|
|
6030
|
-
"fieldName": "
|
|
8118
|
+
"default": "\"Select options\"",
|
|
8119
|
+
"description": "Text shown on the trigger when nothing is selected.",
|
|
8120
|
+
"fieldName": "placeholder"
|
|
6031
8121
|
},
|
|
6032
8122
|
{
|
|
6033
|
-
"name": "
|
|
8123
|
+
"name": "disabled",
|
|
6034
8124
|
"type": {
|
|
6035
8125
|
"text": "boolean"
|
|
6036
8126
|
},
|
|
6037
8127
|
"default": "false",
|
|
6038
|
-
"description": "
|
|
6039
|
-
"fieldName": "
|
|
6040
|
-
}
|
|
6041
|
-
],
|
|
6042
|
-
"superclass": {
|
|
6043
|
-
"name": "LitElement",
|
|
6044
|
-
"package": "lit"
|
|
6045
|
-
},
|
|
6046
|
-
"tagName": "map-circle",
|
|
6047
|
-
"customElement": true
|
|
6048
|
-
}
|
|
6049
|
-
],
|
|
6050
|
-
"exports": [
|
|
6051
|
-
{
|
|
6052
|
-
"kind": "js",
|
|
6053
|
-
"name": "MapCircle",
|
|
6054
|
-
"declaration": {
|
|
6055
|
-
"name": "MapCircle",
|
|
6056
|
-
"module": "src/map-circle.ts"
|
|
6057
|
-
}
|
|
6058
|
-
},
|
|
6059
|
-
{
|
|
6060
|
-
"kind": "custom-element-definition",
|
|
6061
|
-
"name": "map-circle",
|
|
6062
|
-
"declaration": {
|
|
6063
|
-
"name": "MapCircle",
|
|
6064
|
-
"module": "src/map-circle.ts"
|
|
6065
|
-
}
|
|
6066
|
-
}
|
|
6067
|
-
]
|
|
6068
|
-
},
|
|
6069
|
-
{
|
|
6070
|
-
"kind": "javascript-module",
|
|
6071
|
-
"path": "src/map-pin.ts",
|
|
6072
|
-
"declarations": [
|
|
6073
|
-
{
|
|
6074
|
-
"kind": "class",
|
|
6075
|
-
"description": "A circular \"Apple Maps\"-style map pin: a light-to-dark gradient fill with\na slight point at the bottom. Purely a visual primitive — it has no\n`mapbox-gl` (or any mapping library) dependency; the consumer positions\nit, e.g. via `new mapboxgl.Marker({ element: pinEl })`.",
|
|
6076
|
-
"name": "MapPin",
|
|
6077
|
-
"slots": [
|
|
6078
|
-
{
|
|
6079
|
-
"description": "Badge content shown centered on the pin's circular head — a rank number, an emoji, a small icon.",
|
|
6080
|
-
"name": ""
|
|
6081
|
-
}
|
|
6082
|
-
],
|
|
6083
|
-
"members": [
|
|
6084
|
-
{
|
|
6085
|
-
"kind": "field",
|
|
6086
|
-
"name": "color",
|
|
6087
|
-
"type": {
|
|
6088
|
-
"text": "string"
|
|
6089
|
-
},
|
|
6090
|
-
"default": "\"#4f46e5\"",
|
|
6091
|
-
"description": "Fill color; the gradient's light (top) and dark (bottom) stops are derived from this.",
|
|
6092
|
-
"attribute": "color"
|
|
8128
|
+
"description": "Disables the whole control, preventing the popover from opening.",
|
|
8129
|
+
"fieldName": "disabled"
|
|
6093
8130
|
},
|
|
6094
8131
|
{
|
|
6095
|
-
"
|
|
6096
|
-
"name": "size",
|
|
8132
|
+
"name": "required",
|
|
6097
8133
|
"type": {
|
|
6098
|
-
"text": "
|
|
8134
|
+
"text": "boolean"
|
|
6099
8135
|
},
|
|
6100
|
-
"default": "
|
|
6101
|
-
"description": "
|
|
6102
|
-
"
|
|
8136
|
+
"default": "false",
|
|
8137
|
+
"description": "Marks the control as required for native form validation.",
|
|
8138
|
+
"fieldName": "required"
|
|
6103
8139
|
},
|
|
6104
8140
|
{
|
|
6105
|
-
"
|
|
6106
|
-
"name": "highlighted",
|
|
8141
|
+
"name": "searchable",
|
|
6107
8142
|
"type": {
|
|
6108
8143
|
"text": "boolean"
|
|
6109
8144
|
},
|
|
6110
8145
|
"default": "false",
|
|
6111
|
-
"description": "
|
|
6112
|
-
"
|
|
6113
|
-
"reflects": true
|
|
8146
|
+
"description": "Enables editable, case-insensitive infix filtering by option label.\nTyped text never becomes a selected value.",
|
|
8147
|
+
"fieldName": "searchable"
|
|
6114
8148
|
},
|
|
6115
8149
|
{
|
|
6116
|
-
"
|
|
6117
|
-
"
|
|
6118
|
-
|
|
6119
|
-
|
|
6120
|
-
"default": "
|
|
6121
|
-
|
|
6122
|
-
|
|
6123
|
-
|
|
8150
|
+
"name": "max",
|
|
8151
|
+
"type": {
|
|
8152
|
+
"text": "number"
|
|
8153
|
+
},
|
|
8154
|
+
"default": "0",
|
|
8155
|
+
"description": "Maximum number of selectable values; `0` (default) means unlimited.",
|
|
8156
|
+
"fieldName": "max"
|
|
8157
|
+
},
|
|
6124
8158
|
{
|
|
6125
|
-
"name": "
|
|
8159
|
+
"name": "variant",
|
|
6126
8160
|
"type": {
|
|
6127
|
-
"text": "
|
|
8161
|
+
"text": "MultiSelectVariant"
|
|
6128
8162
|
},
|
|
6129
|
-
"default": "\"
|
|
6130
|
-
"description": "
|
|
6131
|
-
"fieldName": "
|
|
8163
|
+
"default": "\"dropdown\"",
|
|
8164
|
+
"description": "Presentation variant. `\"dropdown\"` (default) opens a popover listbox;\n`\"list\"` renders a persistently visible, bordered list surface. Reflected\nso consumers can style by `[variant=\"list\"]`.",
|
|
8165
|
+
"fieldName": "variant"
|
|
6132
8166
|
},
|
|
6133
8167
|
{
|
|
6134
|
-
"name": "
|
|
8168
|
+
"name": "visible-rows",
|
|
6135
8169
|
"type": {
|
|
6136
8170
|
"text": "number"
|
|
6137
8171
|
},
|
|
6138
|
-
"default": "
|
|
6139
|
-
"description": "
|
|
6140
|
-
"fieldName": "
|
|
8172
|
+
"default": "5",
|
|
8173
|
+
"description": "Number of `2rem` rows the `list` variant's scroll viewport shows before it\nscrolls, mirroring a native `<select size>`. Normalized to an integer of at\nleast `1` (default `5`); ignored by the `dropdown` variant.",
|
|
8174
|
+
"fieldName": "visibleRows"
|
|
6141
8175
|
},
|
|
6142
8176
|
{
|
|
6143
|
-
"name": "
|
|
8177
|
+
"name": "show-chips",
|
|
6144
8178
|
"type": {
|
|
6145
8179
|
"text": "boolean"
|
|
6146
8180
|
},
|
|
6147
8181
|
"default": "false",
|
|
6148
|
-
"description": "
|
|
6149
|
-
"fieldName": "
|
|
8182
|
+
"description": "When true, the selected values are also rendered as removable chips below\nthe trigger, each with an accessible `32px` remove control. Off by default:\nthe trigger already summarizes the selection, and values can be toggled off\nin the listbox. Applies to both variants.",
|
|
8183
|
+
"fieldName": "showChips"
|
|
6150
8184
|
}
|
|
6151
8185
|
],
|
|
6152
8186
|
"superclass": {
|
|
6153
8187
|
"name": "LitElement",
|
|
6154
8188
|
"package": "lit"
|
|
6155
8189
|
},
|
|
6156
|
-
"tagName": "
|
|
8190
|
+
"tagName": "multi-select",
|
|
6157
8191
|
"customElement": true
|
|
6158
8192
|
}
|
|
6159
8193
|
],
|
|
6160
8194
|
"exports": [
|
|
6161
8195
|
{
|
|
6162
8196
|
"kind": "js",
|
|
6163
|
-
"name": "
|
|
8197
|
+
"name": "MultiSelect",
|
|
6164
8198
|
"declaration": {
|
|
6165
|
-
"name": "
|
|
6166
|
-
"module": "src/
|
|
8199
|
+
"name": "MultiSelect",
|
|
8200
|
+
"module": "src/multi-select.ts"
|
|
6167
8201
|
}
|
|
6168
8202
|
},
|
|
6169
8203
|
{
|
|
6170
8204
|
"kind": "custom-element-definition",
|
|
6171
|
-
"name": "
|
|
8205
|
+
"name": "multi-select",
|
|
6172
8206
|
"declaration": {
|
|
6173
|
-
"name": "
|
|
6174
|
-
"module": "src/
|
|
8207
|
+
"name": "MultiSelect",
|
|
8208
|
+
"module": "src/multi-select.ts"
|
|
6175
8209
|
}
|
|
6176
8210
|
}
|
|
6177
8211
|
]
|
|
6178
8212
|
},
|
|
6179
|
-
{
|
|
6180
|
-
"kind": "javascript-module",
|
|
6181
|
-
"path": "src/mcp-server.ts",
|
|
6182
|
-
"declarations": [],
|
|
6183
|
-
"exports": []
|
|
6184
|
-
},
|
|
6185
8213
|
{
|
|
6186
8214
|
"kind": "javascript-module",
|
|
6187
8215
|
"path": "src/percent-bar-chart.ts",
|
|
@@ -8388,7 +10416,7 @@
|
|
|
8388
10416
|
"type": {
|
|
8389
10417
|
"text": "Record<string, string>"
|
|
8390
10418
|
},
|
|
8391
|
-
"default": "{ // Colors \"--ui-primary\": \"#4f46e5\", // indigo-600 \"--ui-primary-hover\": \"#4338ca\", // indigo-700 \"--ui-info\": \"#0ea5e9\", // sky-500 \"--ui-info-hover\": \"#0284c7\", // sky-600 \"--ui-danger\": \"#dc2626\", // red-600 \"--ui-danger-hover\": \"#b91c1c\", // red-700 \"--ui-success\": \"#16a34a\", // green-600 \"--ui-warning\": \"#d97706\", // amber-600 \"--ui-warning-hover\": \"#b45309\", // amber-700 \"--ui-on-accent\": \"#ffffff\", \"--ui-text\": \"#0f172a\", // slate-900 \"--ui-text-muted\": \"#64748b\", // slate-500 \"--ui-border\": \"#e2e8f0\", // slate-200 \"--ui-surface\": \"#ffffff\", // white \"--ui-surface-muted\": \"#f8fafc\", // slate-50 \"--ui-tooltip\": \"#0f172a\", // slate-900 \"--ui-hover-overlay\": \"rgb(255 255 255 / 0.32)\", \"--ui-overlay\": \"rgb(15 23 42 / 0.45)\", // slate-900 / 45% // Shape / depth \"--ui-radius\": \"0.5rem\", // rounded-lg \"--ui-radius-sm\": \"0.25rem\", // rounded \"--ui-shadow\": \"0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)\", // shadow-md \"--ui-shadow-lg\": \"0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)\", // shadow-xl \"--ui-focus-ring\": \"0 0 0 3px rgb(79 70 229 / 0.35)\", // Type \"--ui-font\": 'ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"', \"--ui-font-mono\": \"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace\", \"--ui-font-size-lg\": \"1rem\", // text-base \"--ui-font-size\": \"0.875rem\", // text-sm \"--ui-font-size-sm\": \"0.75rem\", // text-xs \"--ui-font-size-xs\": \"0.6875rem\", // Font weights — the only four weights the system uses. \"--ui-font-weight-regular\": \"400\", \"--ui-font-weight-medium\": \"500\", \"--ui-font-weight-semibold\": \"600\", \"--ui-font-weight-bold\": \"700\", // Line heights — glyph (icon/marker box), tight (headings), normal (body). \"--ui-line-height-glyph\": \"1\", \"--ui-line-height-tight\": \"1.25\", \"--ui-line-height-normal\": \"1.5\", // Letter spacing / tracking — default and the single widened step. \"--ui-tracking-normal\": \"0\", \"--ui-tracking-wide\": \"0.04em\", }",
|
|
10419
|
+
"default": "{ // Colors \"--ui-primary\": \"#4f46e5\", // indigo-600 \"--ui-primary-hover\": \"#4338ca\", // indigo-700 \"--ui-info\": \"#0ea5e9\", // sky-500 \"--ui-info-hover\": \"#0284c7\", // sky-600 \"--ui-danger\": \"#dc2626\", // red-600 \"--ui-danger-hover\": \"#b91c1c\", // red-700 \"--ui-success\": \"#16a34a\", // green-600 \"--ui-warning\": \"#d97706\", // amber-600 \"--ui-warning-hover\": \"#b45309\", // amber-700 \"--ui-on-accent\": \"#ffffff\", \"--ui-text\": \"#0f172a\", // slate-900 \"--ui-text-muted\": \"#64748b\", // slate-500 \"--ui-border\": \"#e2e8f0\", // slate-200 \"--ui-surface\": \"#ffffff\", // white \"--ui-surface-muted\": \"#f8fafc\", // slate-50 \"--ui-highlight\": \"#fde68a\", // amber-200 — transient \"just changed\" flash \"--ui-tooltip\": \"#0f172a\", // slate-900 \"--ui-hover-overlay\": \"rgb(255 255 255 / 0.32)\", \"--ui-overlay\": \"rgb(15 23 42 / 0.45)\", // slate-900 / 45% // Shape / depth \"--ui-radius\": \"0.5rem\", // rounded-lg \"--ui-radius-sm\": \"0.25rem\", // rounded \"--ui-shadow\": \"0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)\", // shadow-md \"--ui-shadow-lg\": \"0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)\", // shadow-xl \"--ui-focus-ring\": \"0 0 0 3px rgb(79 70 229 / 0.35)\", // Type \"--ui-font\": 'ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"', \"--ui-font-mono\": \"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace\", \"--ui-font-size-lg\": \"1rem\", // text-base \"--ui-font-size\": \"0.875rem\", // text-sm \"--ui-font-size-sm\": \"0.75rem\", // text-xs \"--ui-font-size-xs\": \"0.6875rem\", // Font weights — the only four weights the system uses. \"--ui-font-weight-regular\": \"400\", \"--ui-font-weight-medium\": \"500\", \"--ui-font-weight-semibold\": \"600\", \"--ui-font-weight-bold\": \"700\", // Line heights — glyph (icon/marker box), tight (headings), normal (body). \"--ui-line-height-glyph\": \"1\", \"--ui-line-height-tight\": \"1.25\", \"--ui-line-height-normal\": \"1.5\", // Letter spacing / tracking — default and the single widened step. \"--ui-tracking-normal\": \"0\", \"--ui-tracking-wide\": \"0.04em\", }",
|
|
8392
10420
|
"description": "Design token values, sourced from Tailwind v4's default theme palette.\nEach entry maps a `--ui-*` custom property name to its default value.\nThese are the same values baked in as `var(--ui-*, <fallback>)` fallbacks\nthroughout component styles, so components render correctly with zero\nexternal CSS. Consumers may override any of these by setting the custom\nproperty on `:root` or an ancestor element (see `tokens.css`)."
|
|
8393
10421
|
},
|
|
8394
10422
|
{
|
|
@@ -8397,7 +10425,7 @@
|
|
|
8397
10425
|
"type": {
|
|
8398
10426
|
"text": "Record<string, string>"
|
|
8399
10427
|
},
|
|
8400
|
-
"default": "{ \"--ui-primary\": \"#6366f1\", // indigo-500 \"--ui-primary-hover\": \"#818cf8\", // indigo-400 \"--ui-info\": \"#38bdf8\", // sky-400 \"--ui-info-hover\": \"#7dd3fc\", // sky-300 \"--ui-danger\": \"#ef4444\", // red-500 \"--ui-danger-hover\": \"#f87171\", // red-400 \"--ui-success\": \"#22c55e\", // green-500 \"--ui-warning\": \"#f59e0b\", // amber-500 \"--ui-warning-hover\": \"#fbbf24\", // amber-400 \"--ui-on-accent\": \"#ffffff\", \"--ui-text\": \"#f1f5f9\", // slate-100 \"--ui-text-muted\": \"#94a3b8\", // slate-400 \"--ui-border\": \"#334155\", // slate-700 \"--ui-surface\": \"#0f172a\", // slate-900 \"--ui-surface-muted\": \"#1e293b\", // slate-800 \"--ui-tooltip\": \"#020617\", // slate-950 \"--ui-hover-overlay\": \"rgb(255 255 255 / 0.12)\", \"--ui-overlay\": \"rgb(2 6 23 / 0.6)\", // slate-950 / 60% \"--ui-focus-ring\": \"0 0 0 3px rgb(99 102 241 / 0.45)\", }",
|
|
10428
|
+
"default": "{ \"--ui-primary\": \"#6366f1\", // indigo-500 \"--ui-primary-hover\": \"#818cf8\", // indigo-400 \"--ui-info\": \"#38bdf8\", // sky-400 \"--ui-info-hover\": \"#7dd3fc\", // sky-300 \"--ui-danger\": \"#ef4444\", // red-500 \"--ui-danger-hover\": \"#f87171\", // red-400 \"--ui-success\": \"#22c55e\", // green-500 \"--ui-warning\": \"#f59e0b\", // amber-500 \"--ui-warning-hover\": \"#fbbf24\", // amber-400 \"--ui-on-accent\": \"#ffffff\", \"--ui-text\": \"#f1f5f9\", // slate-100 \"--ui-text-muted\": \"#94a3b8\", // slate-400 \"--ui-border\": \"#334155\", // slate-700 \"--ui-surface\": \"#0f172a\", // slate-900 \"--ui-surface-muted\": \"#1e293b\", // slate-800 \"--ui-highlight\": \"#854d0e\", // amber-800 — transient \"just changed\" flash on dark \"--ui-tooltip\": \"#020617\", // slate-950 \"--ui-hover-overlay\": \"rgb(255 255 255 / 0.12)\", \"--ui-overlay\": \"rgb(2 6 23 / 0.6)\", // slate-950 / 60% \"--ui-focus-ring\": \"0 0 0 3px rgb(99 102 241 / 0.45)\", }",
|
|
8401
10429
|
"description": "Dark-mode overrides for the same `--ui-*` custom properties, applied by\n`tokens.css` via `@media (prefers-color-scheme: dark)` and `[data-theme]`\n(see generate-tokens-css.mjs). Same Tailwind slate scale as the light\npalette, inverted, with primary/danger/success lightened one step (500\ninstead of 600) for sufficient contrast against dark surfaces. Shape/type\ntokens are theme-independent and not repeated here."
|
|
8402
10430
|
},
|
|
8403
10431
|
{
|