@primer/view-components 0.33.1-rc.a8598029 → 0.34.0-rc.0af1ef00
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/app/assets/javascripts/primer_view_components.js +1 -1
- package/app/assets/javascripts/primer_view_components.js.map +1 -1
- package/app/assets/styles/primer_view_components.css +1 -1
- package/app/assets/styles/primer_view_components.css.map +1 -1
- package/app/components/primer/alpha/select_panel.css +1 -0
- package/app/components/primer/alpha/select_panel.css.json +7 -0
- package/lib/primer/forms/primer_text_field.js +1 -0
- package/package.json +1 -1
- package/static/classes.json +6 -0
- package/static/constants.json +2 -1
@@ -0,0 +1 @@
|
|
1
|
+
.SelectPanel-emptyPanel,.SelectPanel-loadingPanel{min-height:min(var(--overlay-height) - 10rem,100vh - 2rem)}
|
@@ -47,6 +47,7 @@ let PrimerTextFieldElement = class PrimerTextFieldElement extends HTMLElement {
|
|
47
47
|
clearContents() {
|
48
48
|
this.inputElement.value = '';
|
49
49
|
this.inputElement.focus();
|
50
|
+
this.inputElement.dispatchEvent(new Event('input', { bubbles: true, cancelable: false }));
|
50
51
|
}
|
51
52
|
clearError() {
|
52
53
|
this.inputElement.removeAttribute('invalid');
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@primer/view-components",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.34.0-rc.0af1ef00",
|
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/classes.json
CHANGED
@@ -495,6 +495,12 @@
|
|
495
495
|
"SegmentedControl-item": [
|
496
496
|
"Primer::Alpha::SegmentedControl"
|
497
497
|
],
|
498
|
+
"SelectPanel-emptyPanel": [
|
499
|
+
"Primer::Alpha::SelectPanel"
|
500
|
+
],
|
501
|
+
"SelectPanel-loadingPanel": [
|
502
|
+
"Primer::Alpha::SelectPanel"
|
503
|
+
],
|
498
504
|
"State": [
|
499
505
|
"Primer::Beta::State"
|
500
506
|
],
|