react-aria
Version:
Spectrum UI components in React
38 lines (32 loc) • 1.72 kB
JavaScript
var $35e36a915fcc465d$exports = require("../progress/useProgressBar.cjs");
function $parcel$export(e, n, v, s) {
Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
}
$parcel$export(module.exports, "useMeter", function () { return $9237479db2c94a09$export$e969dbfa146870ff; });
/*
* Copyright 2020 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
function $9237479db2c94a09$export$e969dbfa146870ff(props) {
let { progressBarProps: progressBarProps, labelProps: labelProps } = (0, $35e36a915fcc465d$exports.useProgressBar)(props);
return {
meterProps: {
...progressBarProps,
// Use the meter role if available, but fall back to progressbar if not
// Chrome currently falls back from meter automatically, and Firefox
// does not support meter at all. Safari 13+ seems to support meter properly.
// https://bugs.chromium.org/p/chromium/issues/detail?id=944542
// https://bugzilla.mozilla.org/show_bug.cgi?id=1460378
role: 'meter progressbar'
},
labelProps: labelProps
};
}
//# sourceMappingURL=useMeter.cjs.map