@sparrowengg/integrations-templates-frontend 1.9.57 → 1.9.59
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/cjs/_virtual/index10.js +2 -2
- package/dist/cjs/_virtual/index9.js +2 -2
- package/dist/cjs/index.css +1 -1
- package/dist/cjs/integration-template/components/dashboard.js +16 -4
- package/dist/cjs/integration-template/components/dashboard.js.map +1 -1
- package/dist/cjs/node_modules/html-dom-parser/node_modules/domutils/lib/index.js +1 -1
- package/dist/cjs/node_modules/html-dom-parser/node_modules/htmlparser2/lib/index.js +1 -1
- package/dist/cjs/node_modules/style-to-js/cjs/index.js +1 -1
- package/dist/cjs/node_modules/style-to-object/cjs/index.js +1 -1
- package/dist/cjs/single-mapping/index.js +3 -1
- package/dist/cjs/single-mapping/index.js.map +1 -1
- package/dist/es/_virtual/index10.js +2 -2
- package/dist/es/_virtual/index9.js +2 -2
- package/dist/es/index.css +1 -1
- package/dist/es/integration-template/components/dashboard.js +16 -4
- package/dist/es/integration-template/components/dashboard.js.map +1 -1
- package/dist/es/node_modules/html-dom-parser/node_modules/domutils/lib/index.js +1 -1
- package/dist/es/node_modules/html-dom-parser/node_modules/htmlparser2/lib/index.js +1 -1
- package/dist/es/node_modules/style-to-js/cjs/index.js +1 -1
- package/dist/es/node_modules/style-to-object/cjs/index.js +1 -1
- package/dist/es/single-mapping/index.js +3 -1
- package/dist/es/single-mapping/index.js.map +1 -1
- package/dist/index.d.ts +289 -7
- package/package.json +2 -13
package/dist/cjs/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
.triggerText{color:#848484!important;font-size:13.33px;font-weight:400!important;line-height:30px}.triggerTextBold{color:#6a6a6a!important;font-weight:600!important}@keyframes rotate360{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.rotate{animation:rotate360 1s linear infinite}
|
|
@@ -82,7 +82,10 @@ const Dashboard = ({
|
|
|
82
82
|
{
|
|
83
83
|
sideOffset: 4,
|
|
84
84
|
align: "start",
|
|
85
|
-
css: { maxWidth: 240, zIndex: 10
|
|
85
|
+
css: { maxWidth: 240, zIndex: 10, "& p": {
|
|
86
|
+
margin: "0 !important",
|
|
87
|
+
padding: "0 !important"
|
|
88
|
+
} }
|
|
86
89
|
},
|
|
87
90
|
hasDropdownComponents.trigger ? /* @__PURE__ */ React.createElement(
|
|
88
91
|
DropdownItem,
|
|
@@ -550,7 +553,10 @@ const TriggerDasboardItem = ({
|
|
|
550
553
|
)), /* @__PURE__ */ React.createElement(
|
|
551
554
|
dropdown.DropdownMenuContent,
|
|
552
555
|
{
|
|
553
|
-
css: { minWidth: 180, zIndex: 10
|
|
556
|
+
css: { minWidth: 180, zIndex: 10, "& p": {
|
|
557
|
+
margin: "0 !important",
|
|
558
|
+
padding: "0 !important"
|
|
559
|
+
} },
|
|
554
560
|
sideOffset: 4,
|
|
555
561
|
align: "end"
|
|
556
562
|
},
|
|
@@ -763,7 +769,10 @@ const SingleMappingDashboardItem = ({
|
|
|
763
769
|
)), /* @__PURE__ */ React.createElement(
|
|
764
770
|
dropdown.DropdownMenuContent,
|
|
765
771
|
{
|
|
766
|
-
css: { minWidth: 180, zIndex: 10
|
|
772
|
+
css: { minWidth: 180, zIndex: 10, "& p": {
|
|
773
|
+
margin: "0 !important",
|
|
774
|
+
padding: "0 !important"
|
|
775
|
+
} },
|
|
767
776
|
sideOffset: 4,
|
|
768
777
|
align: "end"
|
|
769
778
|
},
|
|
@@ -1123,7 +1132,10 @@ const DashboardItem = ({
|
|
|
1123
1132
|
)), /* @__PURE__ */ React.createElement(
|
|
1124
1133
|
dropdown.DropdownMenuContent,
|
|
1125
1134
|
{
|
|
1126
|
-
css: { minWidth: 180, zIndex: 10
|
|
1135
|
+
css: { minWidth: 180, zIndex: 10, "& p": {
|
|
1136
|
+
margin: "0 !important",
|
|
1137
|
+
padding: "0 !important"
|
|
1138
|
+
} },
|
|
1127
1139
|
sideOffset: 4,
|
|
1128
1140
|
align: "end"
|
|
1129
1141
|
},
|