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