pebble-web 2.12.0 → 2.13.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.
@@ -1398,6 +1398,7 @@
1398
1398
  PebbleIcon["CloseCircle"] = "close-circle";
1399
1399
  PebbleIcon["Close"] = "close";
1400
1400
  PebbleIcon["CloudDownload"] = "cloud-download";
1401
+ PebbleIcon["CloudUploadFilled"] = "cloud-upload-filled";
1401
1402
  PebbleIcon["CloudUpload"] = "cloud-upload";
1402
1403
  PebbleIcon["ConfigureFloors"] = "configure-floors";
1403
1404
  PebbleIcon["ConfigureUnits"] = "configure-units";
@@ -1576,6 +1577,7 @@
1576
1577
  PebbleIcon["Videocam"] = "videocam";
1577
1578
  PebbleIcon["ViewDetails"] = "view-details";
1578
1579
  PebbleIcon["VpnKey"] = "vpn-key";
1580
+ PebbleIcon["WarningFilled"] = "warning-filled";
1579
1581
  PebbleIcon["WarningLine"] = "warning-line";
1580
1582
  PebbleIcon["Warning"] = "warning";
1581
1583
  PebbleIcon["WelcomeLetter"] = "welcome-letter";
@@ -2030,13 +2032,13 @@
2030
2032
  _ref$showRipple = _ref.showRipple,
2031
2033
  showRipple = _ref$showRipple === void 0 ? true : _ref$showRipple,
2032
2034
  loading = _ref.loading,
2033
- filled = _ref.filled,
2035
+ outline = _ref.outline,
2034
2036
  _ref$size = _ref.size,
2035
2037
  size = _ref$size === void 0 ? "small" : _ref$size,
2036
2038
  buttonProps = _ref.buttonProps;
2037
2039
  var disableAction = disabled || loading;
2038
- var _filled = size !== "x-small" && filled !== false;
2039
- var _className = cx(getButtonStyle(size, type, !!showShadow, _filled), className);
2040
+ var _outline = size === "x-small" || !!outline;
2041
+ var _className = cx(getButtonStyle(size, type, !!showShadow, !_outline), className);
2040
2042
  return /*#__PURE__*/React.createElement("button", Object.assign({
2041
2043
  className: _className,
2042
2044
  onClick: !disableAction ? onClick : undefined,