@apexcura/ui-components 0.0.12-Beta85 → 0.0.12-Beta87
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.css +0 -12
- package/dist/index.js +7 -2
- package/dist/index.mjs +7 -2
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -338,12 +338,6 @@ video {
|
|
|
338
338
|
.m-\[10px\] {
|
|
339
339
|
margin: 10px;
|
|
340
340
|
}
|
|
341
|
-
.ml-\[-7px\] {
|
|
342
|
-
margin-left: -7px;
|
|
343
|
-
}
|
|
344
|
-
.mt-\[-10px\] {
|
|
345
|
-
margin-top: -10px;
|
|
346
|
-
}
|
|
347
341
|
.table {
|
|
348
342
|
display: table;
|
|
349
343
|
}
|
|
@@ -388,15 +382,9 @@ video {
|
|
|
388
382
|
.p-\[6px\] {
|
|
389
383
|
padding: 6px;
|
|
390
384
|
}
|
|
391
|
-
.pl-\[3px\] {
|
|
392
|
-
padding-left: 3px;
|
|
393
|
-
}
|
|
394
385
|
.text-center {
|
|
395
386
|
text-align: center;
|
|
396
387
|
}
|
|
397
|
-
.text-\[10px\] {
|
|
398
|
-
font-size: 10px;
|
|
399
|
-
}
|
|
400
388
|
.italic {
|
|
401
389
|
font-style: italic;
|
|
402
390
|
}
|
package/dist/index.js
CHANGED
|
@@ -554,11 +554,15 @@ var import_react18 = __toESM(require("react"));
|
|
|
554
554
|
var import_react15 = __toESM(require("react"));
|
|
555
555
|
var import_antd12 = require("antd");
|
|
556
556
|
var import_io = require("react-icons/io");
|
|
557
|
+
var popoverContentStyle = {
|
|
558
|
+
minWidth: "300px",
|
|
559
|
+
maxWidth: "100%"
|
|
560
|
+
};
|
|
557
561
|
var Notification = (props) => /* @__PURE__ */ import_react15.default.createElement(
|
|
558
562
|
import_antd12.Popover,
|
|
559
563
|
{
|
|
560
564
|
className: props.className,
|
|
561
|
-
content: /* @__PURE__ */ import_react15.default.createElement("div",
|
|
565
|
+
content: /* @__PURE__ */ import_react15.default.createElement("div", { style: popoverContentStyle }, " ", /* @__PURE__ */ import_react15.default.createElement(
|
|
562
566
|
import_antd12.List,
|
|
563
567
|
{
|
|
564
568
|
itemLayout: "horizontal",
|
|
@@ -586,7 +590,8 @@ var SpanElement = (props) => /* @__PURE__ */ import_react16.default.createElemen
|
|
|
586
590
|
// src/Components/Profile.tsx
|
|
587
591
|
var import_react17 = __toESM(require("react"));
|
|
588
592
|
var import_antd13 = require("antd");
|
|
589
|
-
var
|
|
593
|
+
var import_icons3 = require("@ant-design/icons");
|
|
594
|
+
var Profile = (props) => /* @__PURE__ */ import_react17.default.createElement("div", { className: props.className }, /* @__PURE__ */ import_react17.default.createElement(import_antd13.Avatar, { style: { backgroundColor: "#87d068" }, icon: /* @__PURE__ */ import_react17.default.createElement(import_icons3.UserOutlined, null) }), /* @__PURE__ */ import_react17.default.createElement("div", { className: props.profileSubClassName }, /* @__PURE__ */ import_react17.default.createElement("p", null, props.primaryText), /* @__PURE__ */ import_react17.default.createElement("p", { className: props.secondTextClassName }, " ", props.secondaryText)));
|
|
590
595
|
|
|
591
596
|
// src/Components/Navbar.tsx
|
|
592
597
|
var Navbar = (props) => {
|
package/dist/index.mjs
CHANGED
|
@@ -505,11 +505,15 @@ import React17 from "react";
|
|
|
505
505
|
import React14 from "react";
|
|
506
506
|
import { Popover, Badge, Button as Button4, Avatar, List } from "antd";
|
|
507
507
|
import { IoIosNotifications } from "react-icons/io";
|
|
508
|
+
var popoverContentStyle = {
|
|
509
|
+
minWidth: "300px",
|
|
510
|
+
maxWidth: "100%"
|
|
511
|
+
};
|
|
508
512
|
var Notification = (props) => /* @__PURE__ */ React14.createElement(
|
|
509
513
|
Popover,
|
|
510
514
|
{
|
|
511
515
|
className: props.className,
|
|
512
|
-
content: /* @__PURE__ */ React14.createElement("div",
|
|
516
|
+
content: /* @__PURE__ */ React14.createElement("div", { style: popoverContentStyle }, " ", /* @__PURE__ */ React14.createElement(
|
|
513
517
|
List,
|
|
514
518
|
{
|
|
515
519
|
itemLayout: "horizontal",
|
|
@@ -537,7 +541,8 @@ var SpanElement = (props) => /* @__PURE__ */ React15.createElement("span", null,
|
|
|
537
541
|
// src/Components/Profile.tsx
|
|
538
542
|
import React16 from "react";
|
|
539
543
|
import { Avatar as Avatar2 } from "antd";
|
|
540
|
-
|
|
544
|
+
import { UserOutlined } from "@ant-design/icons";
|
|
545
|
+
var Profile = (props) => /* @__PURE__ */ React16.createElement("div", { className: props.className }, /* @__PURE__ */ React16.createElement(Avatar2, { style: { backgroundColor: "#87d068" }, icon: /* @__PURE__ */ React16.createElement(UserOutlined, null) }), /* @__PURE__ */ React16.createElement("div", { className: props.profileSubClassName }, /* @__PURE__ */ React16.createElement("p", null, props.primaryText), /* @__PURE__ */ React16.createElement("p", { className: props.secondTextClassName }, " ", props.secondaryText)));
|
|
541
546
|
|
|
542
547
|
// src/Components/Navbar.tsx
|
|
543
548
|
var Navbar = (props) => {
|