logitude-dashboard-library 3.2.56 → 3.2.57

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.
@@ -1274,4 +1274,93 @@ $dark-grey: #717585;
1274
1274
  display: block;
1275
1275
  overflow: hidden;
1276
1276
  text-overflow: ellipsis;
1277
+ }
1278
+
1279
+ // Widget Copy Dropdown (Duplicate / Copy)
1280
+ .widget-copy-dropdown-container {
1281
+ &-content {
1282
+ padding: 0 !important;
1283
+ border-radius: 4px !important;
1284
+ box-shadow: 0px 8px 16px 0px #0000001A !important;
1285
+ border: 1px solid #F3F4F5 !important;
1286
+ }
1287
+ }
1288
+
1289
+ .widget-copy-dropdown-menu {
1290
+ background: #FFFFFF;
1291
+ border-radius: 4px;
1292
+ width: 168px;
1293
+ height: 72px;
1294
+ padding: 8px;
1295
+ display: flex;
1296
+ flex-direction: column;
1297
+ justify-content: center;
1298
+
1299
+ .widget-copy-dropdown-item {
1300
+ padding: 6px 10px;
1301
+ font-family: "Manrope", sans-serif;
1302
+ font-weight: 500;
1303
+ font-size: 12px;
1304
+ line-height: 16px;
1305
+ color: #404040;
1306
+ cursor: pointer;
1307
+ white-space: nowrap;
1308
+
1309
+ &:hover {
1310
+ background-color: #F3F4F5;
1311
+ border-radius: 4px;
1312
+ }
1313
+ }
1314
+ }
1315
+
1316
+ // Widget Copied Notification
1317
+ .widget-copied-notification {
1318
+ position: absolute;
1319
+ top: 32px;
1320
+ left: 8px;
1321
+ background: #19395C;
1322
+ color: #FFFFFF;
1323
+ padding: 6px;
1324
+ border-radius: 4px;
1325
+ display: flex;
1326
+ align-items: center;
1327
+ gap: 4px;
1328
+ z-index: 1000;
1329
+ white-space: nowrap;
1330
+ width: calc(100% - 16px);
1331
+ max-width: calc(100% - 16px);
1332
+ animation: widgetCopiedFadeIn 0.2s ease;
1333
+
1334
+ .widget-copied-notification-check {
1335
+ font-size: 12px;
1336
+ line-height: 16px;
1337
+ }
1338
+
1339
+ .widget-copied-notification-title {
1340
+ font-family: "Manrope", sans-serif;
1341
+ font-weight: 600;
1342
+ font-size: 12px;
1343
+ line-height: 16px;
1344
+ max-width: calc(100% - 50px);
1345
+ overflow: hidden;
1346
+ text-overflow: ellipsis;
1347
+ }
1348
+
1349
+ .widget-copied-notification-text {
1350
+ font-family: "Manrope", sans-serif;
1351
+ font-weight: 500;
1352
+ font-size: 12px;
1353
+ line-height: 16px;
1354
+ }
1355
+ }
1356
+
1357
+ @keyframes widgetCopiedFadeIn {
1358
+ from {
1359
+ opacity: 0;
1360
+ transform: translateY(-4px);
1361
+ }
1362
+ to {
1363
+ opacity: 1;
1364
+ transform: translateY(0);
1365
+ }
1277
1366
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "logitude-dashboard-library",
3
- "version": "3.2.56",
3
+ "version": "3.2.57",
4
4
  "description": "Made with create-react-library",
5
5
  "author": "logitude",
6
6
  "license": "MIT",