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.
@@ -1262,6 +1262,7 @@
1262
1262
  PebbleIcon["CloseCircle"] = "close-circle";
1263
1263
  PebbleIcon["Close"] = "close";
1264
1264
  PebbleIcon["CloudDownload"] = "cloud-download";
1265
+ PebbleIcon["CloudUploadFilled"] = "cloud-upload-filled";
1265
1266
  PebbleIcon["CloudUpload"] = "cloud-upload";
1266
1267
  PebbleIcon["ConfigureFloors"] = "configure-floors";
1267
1268
  PebbleIcon["ConfigureUnits"] = "configure-units";
@@ -1440,6 +1441,7 @@
1440
1441
  PebbleIcon["Videocam"] = "videocam";
1441
1442
  PebbleIcon["ViewDetails"] = "view-details";
1442
1443
  PebbleIcon["VpnKey"] = "vpn-key";
1444
+ PebbleIcon["WarningFilled"] = "warning-filled";
1443
1445
  PebbleIcon["WarningLine"] = "warning-line";
1444
1446
  PebbleIcon["Warning"] = "warning";
1445
1447
  PebbleIcon["WelcomeLetter"] = "welcome-letter";
@@ -1888,13 +1890,13 @@
1888
1890
  _ref$showRipple = _ref.showRipple,
1889
1891
  showRipple = _ref$showRipple === void 0 ? true : _ref$showRipple,
1890
1892
  loading = _ref.loading,
1891
- filled = _ref.filled,
1893
+ outline = _ref.outline,
1892
1894
  _ref$size = _ref.size,
1893
1895
  size = _ref$size === void 0 ? "small" : _ref$size,
1894
1896
  buttonProps = _ref.buttonProps;
1895
1897
  var disableAction = disabled || loading;
1896
- var _filled = size !== "x-small" && filled !== false;
1897
- var _className = cx(getButtonStyle(size, type, !!showShadow, _filled), className);
1898
+ var _outline = size === "x-small" || !!outline;
1899
+ var _className = cx(getButtonStyle(size, type, !!showShadow, !_outline), className);
1898
1900
  return /*#__PURE__*/React.createElement("button", Object.assign({
1899
1901
  className: _className,
1900
1902
  onClick: !disableAction ? onClick : undefined,