@apexcura/ui-components 0.0.12-Beta77 → 0.0.12-Beta79
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.
- package/dist/index.js +1 -1
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -565,7 +565,7 @@ var Notification = (props) => /* @__PURE__ */ import_react15.default.createEleme
|
|
|
565
565
|
trigger: "focus",
|
|
566
566
|
placement: "bottomRight"
|
|
567
567
|
},
|
|
568
|
-
/* @__PURE__ */ import_react15.default.createElement(import_antd12.Button, { className: props.
|
|
568
|
+
/* @__PURE__ */ import_react15.default.createElement(import_antd12.Button, { className: props.buttonClassName }, /* @__PURE__ */ import_react15.default.createElement(import_antd12.Badge, { size: "small", count: props.count }, props.icon))
|
|
569
569
|
);
|
|
570
570
|
|
|
571
571
|
// src/Components/Profile.tsx
|
package/dist/index.mjs
CHANGED
|
@@ -503,7 +503,7 @@ import React16 from "react";
|
|
|
503
503
|
|
|
504
504
|
// src/Components/Notification.tsx
|
|
505
505
|
import React14 from "react";
|
|
506
|
-
import { Popover, Button as Button4 } from "antd";
|
|
506
|
+
import { Popover, Badge, Button as Button4 } from "antd";
|
|
507
507
|
var Notification = (props) => /* @__PURE__ */ React14.createElement(
|
|
508
508
|
Popover,
|
|
509
509
|
{
|
|
@@ -516,7 +516,7 @@ var Notification = (props) => /* @__PURE__ */ React14.createElement(
|
|
|
516
516
|
trigger: "focus",
|
|
517
517
|
placement: "bottomRight"
|
|
518
518
|
},
|
|
519
|
-
/* @__PURE__ */ React14.createElement(Button4, { className: props.
|
|
519
|
+
/* @__PURE__ */ React14.createElement(Button4, { className: props.buttonClassName }, /* @__PURE__ */ React14.createElement(Badge, { size: "small", count: props.count }, props.icon))
|
|
520
520
|
);
|
|
521
521
|
|
|
522
522
|
// src/Components/Profile.tsx
|