gd-bs 5.8.9 → 5.9.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/build/components/inputGroup/index.js +1 -1
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +2 -1
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/components/inputGroup/index.ts +3 -3
- package/src/components/inputGroup/types.d.ts +2 -1
|
@@ -175,7 +175,7 @@ var _InputGroup = /** @class */ (function (_super) {
|
|
|
175
175
|
// See if this is a file
|
|
176
176
|
if (this.props.type == InputGroupTypes.File) {
|
|
177
177
|
// Set the change event
|
|
178
|
-
elInput.addEventListener("
|
|
178
|
+
elInput.addEventListener("change", function (ev) {
|
|
179
179
|
// Get the source file
|
|
180
180
|
var srcFile = ev.target["files"][0];
|
|
181
181
|
if (srcFile) {
|