@primer/view-components 0.28.0-rc.4d641547 → 0.28.0-rc.bfe86ece
Sign up to get free protection for your applications and to get access to all the features.
- package/app/assets/javascripts/app/components/primer/alpha/select_panel_element.d.ts +3 -1
- package/app/assets/javascripts/primer_view_components.js +1 -1
- package/app/assets/javascripts/primer_view_components.js.map +1 -1
- package/app/components/primer/alpha/select_panel_element.d.ts +3 -1
- package/app/components/primer/alpha/select_panel_element.js +71 -66
- package/package.json +1 -1
- package/static/arguments.json +0 -118
- package/static/audited_at.json +0 -1
- package/static/constants.json +0 -16
- package/static/info_arch.json +128 -883
- package/static/previews.json +0 -268
- package/static/statuses.json +0 -1
@@ -20,7 +20,7 @@ export declare class SelectPanelElement extends HTMLElement {
|
|
20
20
|
ariaLiveContainer: HTMLElement;
|
21
21
|
noResults: HTMLElement;
|
22
22
|
fragmentErrorElement: HTMLElement;
|
23
|
-
|
23
|
+
errorBannerElement: HTMLElement;
|
24
24
|
bodySpinner: HTMLElement;
|
25
25
|
filterFn?: FilterFn;
|
26
26
|
get open(): boolean;
|
@@ -52,6 +52,8 @@ export declare class SelectPanelElement extends HTMLElement {
|
|
52
52
|
disableItem(item: SelectPanelItem | null): void;
|
53
53
|
enableItem(item: SelectPanelItem | null): void;
|
54
54
|
isItemHidden(item: SelectPanelItem | null): boolean;
|
55
|
+
hideItem(item: SelectPanelItem | null): void;
|
56
|
+
showItem(item: SelectPanelItem | null): void;
|
55
57
|
isItemChecked(item: SelectPanelItem | null): boolean;
|
56
58
|
checkItem(item: SelectPanelItem | null): void;
|
57
59
|
uncheckItem(item: SelectPanelItem | null): void;
|
@@ -15,7 +15,7 @@ var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (
|
|
15
15
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
16
16
|
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
17
17
|
};
|
18
|
-
var _SelectPanelElement_instances, _SelectPanelElement_dialogIntersectionObserver, _SelectPanelElement_abortController, _SelectPanelElement_originalLabel, _SelectPanelElement_inputName, _SelectPanelElement_selectedItems, _SelectPanelElement_loadingDelayTimeoutId, _SelectPanelElement_loadingAnnouncementTimeoutId,
|
18
|
+
var _SelectPanelElement_instances, _SelectPanelElement_dialogIntersectionObserver, _SelectPanelElement_abortController, _SelectPanelElement_originalLabel, _SelectPanelElement_inputName, _SelectPanelElement_selectedItems, _SelectPanelElement_loadingDelayTimeoutId, _SelectPanelElement_loadingAnnouncementTimeoutId, _SelectPanelElement_softDisableItems, _SelectPanelElement_updateTabIndices, _SelectPanelElement_potentiallyDisallowActivation, _SelectPanelElement_isAnchorActivationViaSpace, _SelectPanelElement_isActivation, _SelectPanelElement_checkSelectedItems, _SelectPanelElement_addSelectedItem, _SelectPanelElement_removeSelectedItem, _SelectPanelElement_setTextFieldLoadingSpinnerTimer, _SelectPanelElement_handleIncludeFragmentEvent, _SelectPanelElement_toggleIncludeFragmentElements, _SelectPanelElement_handleRemoteInputEvent, _SelectPanelElement_defaultFilterFn, _SelectPanelElement_handleSearchFieldEvent, _SelectPanelElement_updateItemVisibility, _SelectPanelElement_inErrorState, _SelectPanelElement_setErrorState, _SelectPanelElement_clearErrorState, _SelectPanelElement_maybeAnnounce, _SelectPanelElement_fetchStrategy_get, _SelectPanelElement_filterInputTextFieldElement_get, _SelectPanelElement_performFilteringLocally, _SelectPanelElement_handleInvokerActivated, _SelectPanelElement_handleDialogItemActivated, _SelectPanelElement_handleItemActivated, _SelectPanelElement_setDynamicLabel, _SelectPanelElement_updateInput, _SelectPanelElement_firstItem_get, _SelectPanelElement_getItemContent;
|
19
19
|
import { getAnchoredPosition } from '@primer/behaviors';
|
20
20
|
import { controller, target } from '@github/catalyst';
|
21
21
|
import { announceFromElement, announce } from '../aria_live';
|
@@ -170,35 +170,64 @@ let SelectPanelElement = class SelectPanelElement extends HTMLElement {
|
|
170
170
|
__classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_updateInput).call(this);
|
171
171
|
__classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_softDisableItems).call(this);
|
172
172
|
updateWhenVisible(this);
|
173
|
-
|
173
|
+
if (this.remoteInput) {
|
174
174
|
this.remoteInput.addEventListener('loadstart', this, { signal });
|
175
175
|
this.remoteInput.addEventListener('loadend', this, { signal });
|
176
|
-
}
|
177
|
-
|
176
|
+
}
|
177
|
+
else {
|
178
|
+
const mutationObserver = new MutationObserver(() => {
|
179
|
+
if (this.remoteInput) {
|
180
|
+
this.remoteInput.addEventListener('loadstart', this, { signal });
|
181
|
+
this.remoteInput.addEventListener('loadend', this, { signal });
|
182
|
+
mutationObserver.disconnect();
|
183
|
+
}
|
184
|
+
});
|
185
|
+
mutationObserver.observe(this, { childList: true, subtree: true });
|
186
|
+
}
|
187
|
+
if (this.includeFragment) {
|
178
188
|
this.includeFragment.addEventListener('include-fragment-replaced', this, { signal });
|
179
189
|
this.includeFragment.addEventListener('error', this, { signal });
|
180
190
|
this.includeFragment.addEventListener('loadend', this, { signal });
|
181
|
-
}
|
191
|
+
}
|
192
|
+
else {
|
193
|
+
const mutationObserver = new MutationObserver(() => {
|
194
|
+
if (this.includeFragment) {
|
195
|
+
this.includeFragment.addEventListener('include-fragment-replaced', this, { signal });
|
196
|
+
this.includeFragment.addEventListener('error', this, { signal });
|
197
|
+
this.includeFragment.addEventListener('loadend', this, { signal });
|
198
|
+
mutationObserver.disconnect();
|
199
|
+
}
|
200
|
+
});
|
201
|
+
mutationObserver.observe(this, { childList: true, subtree: true });
|
202
|
+
}
|
182
203
|
__classPrivateFieldSet(this, _SelectPanelElement_dialogIntersectionObserver, new IntersectionObserver(entries => {
|
183
204
|
for (const entry of entries) {
|
184
205
|
const elem = entry.target;
|
185
206
|
if (entry.isIntersecting && elem === this.dialog) {
|
186
207
|
this.updateAnchorPosition();
|
208
|
+
if (__classPrivateFieldGet(this, _SelectPanelElement_instances, "a", _SelectPanelElement_fetchStrategy_get) === FetchStrategy.LOCAL) {
|
209
|
+
__classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_updateItemVisibility).call(this);
|
210
|
+
}
|
187
211
|
}
|
188
212
|
}
|
189
213
|
}), "f");
|
190
|
-
|
214
|
+
if (this.dialog) {
|
191
215
|
if (this.getAttribute('data-open-on-load') === 'true') {
|
192
216
|
this.show();
|
193
217
|
}
|
194
218
|
__classPrivateFieldGet(this, _SelectPanelElement_dialogIntersectionObserver, "f").observe(this.dialog);
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
219
|
+
}
|
220
|
+
else {
|
221
|
+
const mutationObserver = new MutationObserver(() => {
|
222
|
+
if (this.dialog) {
|
223
|
+
if (this.getAttribute('data-open-on-load') === 'true') {
|
224
|
+
this.show();
|
225
|
+
}
|
226
|
+
__classPrivateFieldGet(this, _SelectPanelElement_dialogIntersectionObserver, "f").observe(this.dialog);
|
227
|
+
mutationObserver.disconnect();
|
228
|
+
}
|
201
229
|
});
|
230
|
+
mutationObserver.observe(this, { childList: true, subtree: true });
|
202
231
|
}
|
203
232
|
}
|
204
233
|
disconnectedCallback() {
|
@@ -233,14 +262,7 @@ let SelectPanelElement = class SelectPanelElement extends HTMLElement {
|
|
233
262
|
return;
|
234
263
|
}
|
235
264
|
if (targetIsCloseButton && eventIsActivation) {
|
236
|
-
// hide
|
237
|
-
return;
|
238
|
-
}
|
239
|
-
if (event.target === this.dialog && event.type === 'close') {
|
240
|
-
this.dispatchEvent(new CustomEvent('panelClosed', {
|
241
|
-
detail: { panel: this },
|
242
|
-
bubbles: true,
|
243
|
-
}));
|
265
|
+
// #hide will automatically be called by dialog event triggered from `data-close-dialog-id`
|
244
266
|
return;
|
245
267
|
}
|
246
268
|
const item = event.target.closest(visibleMenuItemSelectors)?.parentElement;
|
@@ -293,6 +315,10 @@ let SelectPanelElement = class SelectPanelElement extends HTMLElement {
|
|
293
315
|
}
|
294
316
|
hide() {
|
295
317
|
this.dialog.close();
|
318
|
+
this.dispatchEvent(new CustomEvent('panelClosed', {
|
319
|
+
detail: { panel: this },
|
320
|
+
bubbles: true,
|
321
|
+
}));
|
296
322
|
}
|
297
323
|
get visibleItems() {
|
298
324
|
return Array.from(this.querySelectorAll(visibleMenuItemSelectors)).map(element => element.parentElement);
|
@@ -341,6 +367,16 @@ let SelectPanelElement = class SelectPanelElement extends HTMLElement {
|
|
341
367
|
return false;
|
342
368
|
}
|
343
369
|
}
|
370
|
+
hideItem(item) {
|
371
|
+
if (item) {
|
372
|
+
item.setAttribute('hidden', 'hidden');
|
373
|
+
}
|
374
|
+
}
|
375
|
+
showItem(item) {
|
376
|
+
if (item) {
|
377
|
+
item.removeAttribute('hidden');
|
378
|
+
}
|
379
|
+
}
|
344
380
|
isItemChecked(item) {
|
345
381
|
if (item) {
|
346
382
|
return __classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_getItemContent).call(this, item).getAttribute(this.ariaSelectionType) === 'true';
|
@@ -372,18 +408,6 @@ _SelectPanelElement_selectedItems = new WeakMap();
|
|
372
408
|
_SelectPanelElement_loadingDelayTimeoutId = new WeakMap();
|
373
409
|
_SelectPanelElement_loadingAnnouncementTimeoutId = new WeakMap();
|
374
410
|
_SelectPanelElement_instances = new WeakSet();
|
375
|
-
_SelectPanelElement_waitForCondition = function _SelectPanelElement_waitForCondition(condition, body) {
|
376
|
-
if (condition()) {
|
377
|
-
body();
|
378
|
-
}
|
379
|
-
else {
|
380
|
-
const mutationObserver = new MutationObserver(() => {
|
381
|
-
body();
|
382
|
-
mutationObserver.disconnect();
|
383
|
-
});
|
384
|
-
mutationObserver.observe(this, { childList: true, subtree: true });
|
385
|
-
}
|
386
|
-
};
|
387
411
|
_SelectPanelElement_softDisableItems = function _SelectPanelElement_softDisableItems() {
|
388
412
|
const { signal } = __classPrivateFieldGet(this, _SelectPanelElement_abortController, "f");
|
389
413
|
for (const item of this.querySelectorAll(validSelectors.join(','))) {
|
@@ -459,28 +483,23 @@ _SelectPanelElement_isActivation = function _SelectPanelElement_isActivation(eve
|
|
459
483
|
};
|
460
484
|
_SelectPanelElement_checkSelectedItems = function _SelectPanelElement_checkSelectedItems() {
|
461
485
|
for (const item of this.items) {
|
462
|
-
const
|
463
|
-
if (!itemContent)
|
464
|
-
continue;
|
465
|
-
const value = itemContent.getAttribute('data-value');
|
486
|
+
const value = item.getAttribute('data-value');
|
466
487
|
if (value) {
|
467
488
|
if (__classPrivateFieldGet(this, _SelectPanelElement_selectedItems, "f").has(value)) {
|
468
|
-
|
489
|
+
item.setAttribute(this.ariaSelectionType, 'true');
|
469
490
|
}
|
470
491
|
}
|
471
492
|
}
|
472
493
|
__classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_updateInput).call(this);
|
473
494
|
};
|
474
495
|
_SelectPanelElement_addSelectedItem = function _SelectPanelElement_addSelectedItem(item) {
|
475
|
-
const
|
476
|
-
|
477
|
-
return;
|
478
|
-
const value = itemContent.getAttribute('data-value');
|
496
|
+
const button = item.querySelector('button');
|
497
|
+
const value = item.getAttribute('data-value');
|
479
498
|
if (value) {
|
480
499
|
__classPrivateFieldGet(this, _SelectPanelElement_selectedItems, "f").set(value, {
|
481
500
|
value,
|
482
|
-
label:
|
483
|
-
inputName:
|
501
|
+
label: button.querySelector('.ActionListItem-label')?.textContent?.trim(),
|
502
|
+
inputName: button.getAttribute('data-input-name'),
|
484
503
|
element: item,
|
485
504
|
});
|
486
505
|
}
|
@@ -614,11 +633,11 @@ _SelectPanelElement_updateItemVisibility = function _SelectPanelElement_updateIt
|
|
614
633
|
const filter = this.filterFn || __classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_defaultFilterFn);
|
615
634
|
for (const item of this.items) {
|
616
635
|
if (filter(item, query)) {
|
617
|
-
|
636
|
+
this.showItem(item);
|
618
637
|
atLeastOneResult = true;
|
619
638
|
}
|
620
639
|
else {
|
621
|
-
|
640
|
+
this.hideItem(item);
|
622
641
|
}
|
623
642
|
}
|
624
643
|
}
|
@@ -628,10 +647,7 @@ _SelectPanelElement_updateItemVisibility = function _SelectPanelElement_updateIt
|
|
628
647
|
__classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_updateTabIndices).call(this);
|
629
648
|
__classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_maybeAnnounce).call(this);
|
630
649
|
for (const item of this.items) {
|
631
|
-
const
|
632
|
-
if (!itemContent)
|
633
|
-
continue;
|
634
|
-
const value = itemContent.getAttribute('data-value');
|
650
|
+
const value = item.getAttribute('data-value');
|
635
651
|
if (value && !__classPrivateFieldGet(this, _SelectPanelElement_selectedItems, "f").has(value) && this.isItemChecked(item)) {
|
636
652
|
__classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_addSelectedItem).call(this, item);
|
637
653
|
}
|
@@ -656,17 +672,17 @@ _SelectPanelElement_inErrorState = function _SelectPanelElement_inErrorState() {
|
|
656
672
|
if (this.fragmentErrorElement && !this.fragmentErrorElement.hasAttribute('hidden')) {
|
657
673
|
return true;
|
658
674
|
}
|
659
|
-
return !this.
|
675
|
+
return !this.errorBannerElement.hasAttribute('hidden');
|
660
676
|
};
|
661
677
|
_SelectPanelElement_setErrorState = function _SelectPanelElement_setErrorState(type) {
|
662
678
|
let errorElement = this.fragmentErrorElement;
|
663
679
|
if (type === ErrorStateType.BODY) {
|
664
680
|
this.fragmentErrorElement?.removeAttribute('hidden');
|
665
|
-
this.
|
681
|
+
this.errorBannerElement.setAttribute('hidden', '');
|
666
682
|
}
|
667
683
|
else {
|
668
|
-
errorElement = this.
|
669
|
-
this.
|
684
|
+
errorElement = this.errorBannerElement;
|
685
|
+
this.errorBannerElement?.removeAttribute('hidden');
|
670
686
|
this.fragmentErrorElement?.setAttribute('hidden', '');
|
671
687
|
}
|
672
688
|
// check if the errorElement is visible in the dom
|
@@ -677,7 +693,7 @@ _SelectPanelElement_setErrorState = function _SelectPanelElement_setErrorState(t
|
|
677
693
|
};
|
678
694
|
_SelectPanelElement_clearErrorState = function _SelectPanelElement_clearErrorState() {
|
679
695
|
this.fragmentErrorElement?.setAttribute('hidden', '');
|
680
|
-
this.
|
696
|
+
this.errorBannerElement.setAttribute('hidden', '');
|
681
697
|
};
|
682
698
|
_SelectPanelElement_maybeAnnounce = function _SelectPanelElement_maybeAnnounce() {
|
683
699
|
if (this.open && this.list) {
|
@@ -798,7 +814,6 @@ _SelectPanelElement_handleItemActivated = function _SelectPanelElement_handleIte
|
|
798
814
|
}
|
799
815
|
}
|
800
816
|
__classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_updateInput).call(this);
|
801
|
-
__classPrivateFieldGet(this, _SelectPanelElement_instances, "m", _SelectPanelElement_updateTabIndices).call(this);
|
802
817
|
this.dispatchEvent(new CustomEvent('itemActivated', {
|
803
818
|
bubbles: true,
|
804
819
|
detail: { item, checked },
|
@@ -869,16 +884,6 @@ _SelectPanelElement_updateInput = function _SelectPanelElement_updateInput() {
|
|
869
884
|
_SelectPanelElement_firstItem_get = function _SelectPanelElement_firstItem_get() {
|
870
885
|
return (this.querySelector(visibleMenuItemSelectors)?.parentElement || null);
|
871
886
|
};
|
872
|
-
_SelectPanelElement_hideItem = function _SelectPanelElement_hideItem(item) {
|
873
|
-
if (item) {
|
874
|
-
item.setAttribute('hidden', 'hidden');
|
875
|
-
}
|
876
|
-
};
|
877
|
-
_SelectPanelElement_showItem = function _SelectPanelElement_showItem(item) {
|
878
|
-
if (item) {
|
879
|
-
item.removeAttribute('hidden');
|
880
|
-
}
|
881
|
-
};
|
882
887
|
_SelectPanelElement_getItemContent = function _SelectPanelElement_getItemContent(item) {
|
883
888
|
return item.querySelector('.ActionListContent');
|
884
889
|
};
|
@@ -908,7 +913,7 @@ __decorate([
|
|
908
913
|
], SelectPanelElement.prototype, "fragmentErrorElement", void 0);
|
909
914
|
__decorate([
|
910
915
|
target
|
911
|
-
], SelectPanelElement.prototype, "
|
916
|
+
], SelectPanelElement.prototype, "errorBannerElement", void 0);
|
912
917
|
__decorate([
|
913
918
|
target
|
914
919
|
], SelectPanelElement.prototype, "bodySpinner", void 0);
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@primer/view-components",
|
3
|
-
"version": "0.28.0-rc.
|
3
|
+
"version": "0.28.0-rc.bfe86ece",
|
4
4
|
"description": "ViewComponents for the Primer Design System",
|
5
5
|
"main": "app/assets/javascripts/primer_view_components.js",
|
6
6
|
"module": "app/components/primer/primer.js",
|
package/static/arguments.json
CHANGED
@@ -2352,124 +2352,6 @@
|
|
2352
2352
|
}
|
2353
2353
|
]
|
2354
2354
|
},
|
2355
|
-
{
|
2356
|
-
"component": "SelectPanel",
|
2357
|
-
"status": "alpha",
|
2358
|
-
"a11y_reviewed": false,
|
2359
|
-
"short_name": "SelectPanel",
|
2360
|
-
"source": "https://github.com/primer/view_components/tree/main/app/components/primer/alpha/select_panel.rb",
|
2361
|
-
"lookbook": "https://primer.style/view-components/lookbook/inspect/primer/alpha/select_panel/default/",
|
2362
|
-
"parameters": [
|
2363
|
-
{
|
2364
|
-
"name": "src",
|
2365
|
-
"type": "String",
|
2366
|
-
"default": "`nil`",
|
2367
|
-
"description": "The URL to fetch search results from."
|
2368
|
-
},
|
2369
|
-
{
|
2370
|
-
"name": "title",
|
2371
|
-
"type": "String",
|
2372
|
-
"default": "`\"Menu\"`",
|
2373
|
-
"description": "The title that appears at the top of the panel."
|
2374
|
-
},
|
2375
|
-
{
|
2376
|
-
"name": "id",
|
2377
|
-
"type": "String",
|
2378
|
-
"default": "`self.class.generate_id`",
|
2379
|
-
"description": "The unique ID of the panel."
|
2380
|
-
},
|
2381
|
-
{
|
2382
|
-
"name": "size",
|
2383
|
-
"type": "Symbol",
|
2384
|
-
"default": "`:small`",
|
2385
|
-
"description": "The size of the panel. One of `:auto`, `:large`, `:medium`, `:medium_portrait`, `:small`, or `:xlarge`."
|
2386
|
-
},
|
2387
|
-
{
|
2388
|
-
"name": "select_variant",
|
2389
|
-
"type": "Symbol",
|
2390
|
-
"default": "`:single`",
|
2391
|
-
"description": "One of `:multiple`, `:multiple_checkbox`, `:none`, or `:single`."
|
2392
|
-
},
|
2393
|
-
{
|
2394
|
-
"name": "fetch_strategy",
|
2395
|
-
"type": "Symbol",
|
2396
|
-
"default": "`:remote`",
|
2397
|
-
"description": "One of `:eventually_local`, `:local`, or `:remote`."
|
2398
|
-
},
|
2399
|
-
{
|
2400
|
-
"name": "no_results_label",
|
2401
|
-
"type": "String",
|
2402
|
-
"default": "`\"No results found\"`",
|
2403
|
-
"description": "The label to display when no results are found."
|
2404
|
-
},
|
2405
|
-
{
|
2406
|
-
"name": "preload",
|
2407
|
-
"type": "Boolean",
|
2408
|
-
"default": "`false`",
|
2409
|
-
"description": "Whether to preload search results when the page loads. If this option is false, results are loaded when the panel is opened."
|
2410
|
-
},
|
2411
|
-
{
|
2412
|
-
"name": "dynamic_label",
|
2413
|
-
"type": "Boolean",
|
2414
|
-
"default": "`false`",
|
2415
|
-
"description": "Whether or not to display the text of the currently selected item in the show button."
|
2416
|
-
},
|
2417
|
-
{
|
2418
|
-
"name": "dynamic_label_prefix",
|
2419
|
-
"type": "String",
|
2420
|
-
"default": "`nil`",
|
2421
|
-
"description": "If provided, the prefix is prepended to the dynamic label and displayed in the show button."
|
2422
|
-
},
|
2423
|
-
{
|
2424
|
-
"name": "dynamic_aria_label_prefix",
|
2425
|
-
"type": "String",
|
2426
|
-
"default": "`nil`",
|
2427
|
-
"description": "If provided, the prefix is prepended to the dynamic label and set as the value of the `aria-label` attribute on the show button."
|
2428
|
-
},
|
2429
|
-
{
|
2430
|
-
"name": "body_id",
|
2431
|
-
"type": "String",
|
2432
|
-
"default": "`nil`",
|
2433
|
-
"description": "The unique ID of the panel body. If not provided, the body ID will be set to the panel ID with a \"-body\" suffix."
|
2434
|
-
},
|
2435
|
-
{
|
2436
|
-
"name": "list_arguments",
|
2437
|
-
"type": "Hash",
|
2438
|
-
"default": "`{}`",
|
2439
|
-
"description": "Arguments to pass to the underlying [ActionList](/components/alpha/actionlist) component. Only has an effect for the local fetch strategy."
|
2440
|
-
},
|
2441
|
-
{
|
2442
|
-
"name": "form_arguments",
|
2443
|
-
"type": "Hash",
|
2444
|
-
"default": "`{}`",
|
2445
|
-
"description": "Form arguments to pass to the underlying [ActionList](/components/alpha/actionlist) component. Only has an effect for the local fetch strategy."
|
2446
|
-
},
|
2447
|
-
{
|
2448
|
-
"name": "show_filter",
|
2449
|
-
"type": "Boolean",
|
2450
|
-
"default": "`true`",
|
2451
|
-
"description": "Whether or not to show the filter input."
|
2452
|
-
},
|
2453
|
-
{
|
2454
|
-
"name": "open_on_load",
|
2455
|
-
"type": "Boolean",
|
2456
|
-
"default": "`false`",
|
2457
|
-
"description": "Open the panel when the page loads."
|
2458
|
-
},
|
2459
|
-
{
|
2460
|
-
"name": "anchor_align",
|
2461
|
-
"type": "Symbol",
|
2462
|
-
"default": "`:start`",
|
2463
|
-
"description": "The anchor alignment of the Overlay. One of `:center`, `:end`, or `:start`."
|
2464
|
-
},
|
2465
|
-
{
|
2466
|
-
"name": "anchor_side",
|
2467
|
-
"type": "Symbol",
|
2468
|
-
"default": "`:outside_bottom`",
|
2469
|
-
"description": "The side to anchor the Overlay to. One of `:inside_bottom`, `:inside_center`, `:inside_left`, `:inside_right`, `:inside_top`, `:outside_bottom`, `:outside_left`, `:outside_right`, or `:outside_top`."
|
2470
|
-
}
|
2471
|
-
]
|
2472
|
-
},
|
2473
2355
|
{
|
2474
2356
|
"component": "SubmitButton",
|
2475
2357
|
"status": "alpha",
|
package/static/audited_at.json
CHANGED
@@ -52,7 +52,6 @@
|
|
52
52
|
"Primer::Alpha::SegmentedControl": "2023-02-01",
|
53
53
|
"Primer::Alpha::SegmentedControl::Item": "2023-02-01",
|
54
54
|
"Primer::Alpha::Select": "",
|
55
|
-
"Primer::Alpha::SelectPanel": "",
|
56
55
|
"Primer::Alpha::SubmitButton": "",
|
57
56
|
"Primer::Alpha::TabContainer": "",
|
58
57
|
"Primer::Alpha::TabNav": "",
|
package/static/constants.json
CHANGED
@@ -597,22 +597,6 @@
|
|
597
597
|
},
|
598
598
|
"Primer::Alpha::Select": {
|
599
599
|
},
|
600
|
-
"Primer::Alpha::SelectPanel": {
|
601
|
-
"DEFAULT_FETCH_STRATEGY": "remote",
|
602
|
-
"DEFAULT_PRELOAD": false,
|
603
|
-
"DEFAULT_SELECT_VARIANT": "single",
|
604
|
-
"FETCH_STRATEGIES": [
|
605
|
-
"remote",
|
606
|
-
"eventually_local",
|
607
|
-
"local"
|
608
|
-
],
|
609
|
-
"ItemList": "Primer::Alpha::ActionList",
|
610
|
-
"SELECT_VARIANT_OPTIONS": [
|
611
|
-
"single",
|
612
|
-
"multiple",
|
613
|
-
"none"
|
614
|
-
]
|
615
|
-
},
|
616
600
|
"Primer::Alpha::SubmitButton": {
|
617
601
|
},
|
618
602
|
"Primer::Alpha::TabContainer": {
|