@pingux/astro 2.79.0-alpha.1 → 2.79.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/lib/cjs/components/ComboBoxField/ComboBoxField.js +2 -1
- package/lib/cjs/recipes/AttributeMapping.stories.js +0 -4
- package/lib/cjs/recipes/CountryPicker.stories.js +1 -2
- package/lib/components/ComboBoxField/ComboBoxField.js +2 -1
- package/lib/recipes/AttributeMapping.stories.js +0 -4
- package/lib/recipes/CountryPicker.stories.js +1 -2
- package/package.json +1 -1
@@ -81,7 +81,8 @@ var ComboBoxField = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
81
81
|
inputValue: inputValue,
|
82
82
|
menuTrigger: menuTrigger,
|
83
83
|
shouldFlip: !isNotFlippable,
|
84
|
-
direction: direction
|
84
|
+
direction: direction,
|
85
|
+
label: 'default'
|
85
86
|
}, nonAriaProps);
|
86
87
|
var popoverRef = (0, _react.useRef)();
|
87
88
|
var buttonRef = (0, _react.useRef)();
|
@@ -400,12 +400,10 @@ var EditRow = function EditRow(props) {
|
|
400
400
|
id: "leftInputField ".concat(index),
|
401
401
|
key: "leftInputField ".concat(index),
|
402
402
|
labelProps: {
|
403
|
-
'aria-label': 'selection field',
|
404
403
|
mb: 0
|
405
404
|
},
|
406
405
|
"aria-label": "selection field",
|
407
406
|
controlProps: {
|
408
|
-
'aria-label': 'selection field',
|
409
407
|
sx: editSx.comboBoxField
|
410
408
|
},
|
411
409
|
containerProps: {
|
@@ -427,12 +425,10 @@ var EditRow = function EditRow(props) {
|
|
427
425
|
id: "rightInputField ".concat(index),
|
428
426
|
key: "rightInputField ".concat(index),
|
429
427
|
labelProps: {
|
430
|
-
'aria-label': 'selection field',
|
431
428
|
mb: 0
|
432
429
|
},
|
433
430
|
"aria-label": "selection field",
|
434
431
|
controlProps: {
|
435
|
-
'aria-label': 'selection field',
|
436
432
|
sx: editSx.comboBoxField
|
437
433
|
},
|
438
434
|
containerProps: {
|
@@ -130,8 +130,7 @@ var Default = function Default() {
|
|
130
130
|
onInputChange: inputHandler,
|
131
131
|
onSelectionChange: selectionHandler,
|
132
132
|
menuTrigger: "focus",
|
133
|
-
"aria-labelledby": "group-label"
|
134
|
-
label: " "
|
133
|
+
"aria-labelledby": "group-label"
|
135
134
|
}, function (item) {
|
136
135
|
var _context3, _context4;
|
137
136
|
return (0, _react2.jsx)(_index.Item, {
|
@@ -70,7 +70,8 @@ var ComboBoxField = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
70
70
|
inputValue: inputValue,
|
71
71
|
menuTrigger: menuTrigger,
|
72
72
|
shouldFlip: !isNotFlippable,
|
73
|
-
direction: direction
|
73
|
+
direction: direction,
|
74
|
+
label: 'default'
|
74
75
|
}, nonAriaProps);
|
75
76
|
var popoverRef = useRef();
|
76
77
|
var buttonRef = useRef();
|
@@ -382,12 +382,10 @@ export var EditRow = function EditRow(props) {
|
|
382
382
|
id: "leftInputField ".concat(index),
|
383
383
|
key: "leftInputField ".concat(index),
|
384
384
|
labelProps: {
|
385
|
-
'aria-label': 'selection field',
|
386
385
|
mb: 0
|
387
386
|
},
|
388
387
|
"aria-label": "selection field",
|
389
388
|
controlProps: {
|
390
|
-
'aria-label': 'selection field',
|
391
389
|
sx: editSx.comboBoxField
|
392
390
|
},
|
393
391
|
containerProps: {
|
@@ -409,12 +407,10 @@ export var EditRow = function EditRow(props) {
|
|
409
407
|
id: "rightInputField ".concat(index),
|
410
408
|
key: "rightInputField ".concat(index),
|
411
409
|
labelProps: {
|
412
|
-
'aria-label': 'selection field',
|
413
410
|
mb: 0
|
414
411
|
},
|
415
412
|
"aria-label": "selection field",
|
416
413
|
controlProps: {
|
417
|
-
'aria-label': 'selection field',
|
418
414
|
sx: editSx.comboBoxField
|
419
415
|
},
|
420
416
|
containerProps: {
|
@@ -116,8 +116,7 @@ export var Default = function Default() {
|
|
116
116
|
onInputChange: inputHandler,
|
117
117
|
onSelectionChange: selectionHandler,
|
118
118
|
menuTrigger: "focus",
|
119
|
-
"aria-labelledby": "group-label"
|
120
|
-
label: " "
|
119
|
+
"aria-labelledby": "group-label"
|
121
120
|
}, function (item) {
|
122
121
|
var _context3, _context4;
|
123
122
|
return ___EmotionJSX(Item, {
|