@pingux/astro 2.134.0 → 2.134.1-alpha.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.stories.js +2 -1
- package/lib/cjs/components/DatePicker/DatePicker.stories.js +2 -1
- package/lib/cjs/components/FileInputField/FileInputField.stories.js +2 -1
- package/lib/cjs/components/SearchField/SearchField.stories.js +2 -1
- package/lib/components/ComboBoxField/ComboBoxField.stories.js +2 -1
- package/lib/components/DatePicker/DatePicker.stories.js +2 -1
- package/lib/components/FileInputField/FileInputField.stories.js +2 -1
- package/lib/components/SearchField/SearchField.stories.js +2 -1
- package/package.json +1 -1
@@ -91,7 +91,8 @@ var _default = {
|
|
91
91
|
}
|
92
92
|
}, _statusProp.statusArgTypes), _ariaAttributes.ariaAttributeBaseArgTypes), _fieldAttributes.inputFieldAttributeBaseArgTypes),
|
93
93
|
args: {
|
94
|
-
label: 'Field Label'
|
94
|
+
label: 'Field Label',
|
95
|
+
'aria-label': 'File Input Field'
|
95
96
|
}
|
96
97
|
};
|
97
98
|
exports["default"] = _default;
|
@@ -80,7 +80,8 @@ var _default = {
|
|
80
80
|
}
|
81
81
|
}, _ariaAttributes.ariaAttributeBaseArgTypes), _fieldAttributes.inputFieldAttributeBaseArgTypes),
|
82
82
|
args: {
|
83
|
-
placeholder: 'Search'
|
83
|
+
placeholder: 'Search',
|
84
|
+
'aria-label': 'Search Field'
|
84
85
|
}
|
85
86
|
};
|
86
87
|
exports["default"] = _default;
|
@@ -103,7 +103,8 @@ export default {
|
|
103
103
|
isReadOnly: false,
|
104
104
|
isRequired: false,
|
105
105
|
label: 'Example Label',
|
106
|
-
onChange: function onChange() {}
|
106
|
+
onChange: function onChange() {},
|
107
|
+
'aria-label': 'Date Picker'
|
107
108
|
}
|
108
109
|
};
|
109
110
|
export var Default = function Default(args) {
|