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