flexmonster 2.9.10 → 2.9.11

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.
Files changed (42) hide show
  1. package/flexmonster.css +41 -11
  2. package/flexmonster.es5.full.js +2423 -2417
  3. package/flexmonster.es5.js +2422 -2416
  4. package/flexmonster.full.js +1392 -1392
  5. package/flexmonster.js +1391 -1391
  6. package/flexmonster.min.css +1 -1
  7. package/package.json +1 -1
  8. package/theme/accessible/flexmonster.css +41 -11
  9. package/theme/accessible/flexmonster.min.css +1 -1
  10. package/theme/blackorange/flexmonster.css +41 -11
  11. package/theme/blackorange/flexmonster.min.css +1 -1
  12. package/theme/brightorange/flexmonster.css +41 -11
  13. package/theme/brightorange/flexmonster.min.css +1 -1
  14. package/theme/dark/flexmonster.css +41 -11
  15. package/theme/dark/flexmonster.min.css +1 -1
  16. package/theme/flexmonster-base.less +46 -12
  17. package/theme/green/flexmonster.css +41 -11
  18. package/theme/green/flexmonster.min.css +1 -1
  19. package/theme/lightblue/flexmonster.css +41 -11
  20. package/theme/lightblue/flexmonster.min.css +1 -1
  21. package/theme/macos/flexmonster.css +41 -11
  22. package/theme/macos/flexmonster.min.css +1 -1
  23. package/theme/midnight/flexmonster.css +41 -11
  24. package/theme/midnight/flexmonster.min.css +1 -1
  25. package/theme/old/flexmonster.css +41 -11
  26. package/theme/old/flexmonster.min.css +1 -1
  27. package/theme/orange/flexmonster.css +41 -11
  28. package/theme/orange/flexmonster.min.css +1 -1
  29. package/theme/purple/flexmonster.css +41 -11
  30. package/theme/purple/flexmonster.min.css +1 -1
  31. package/theme/softdefault/flexmonster.css +41 -11
  32. package/theme/softdefault/flexmonster.min.css +1 -1
  33. package/theme/stripedblue/flexmonster.css +41 -11
  34. package/theme/stripedblue/flexmonster.min.css +1 -1
  35. package/theme/stripedteal/flexmonster.css +41 -11
  36. package/theme/stripedteal/flexmonster.min.css +1 -1
  37. package/theme/teal/flexmonster.css +41 -11
  38. package/theme/teal/flexmonster.min.css +1 -1
  39. package/theme/yellow/flexmonster.css +41 -11
  40. package/theme/yellow/flexmonster.min.css +1 -1
  41. package/toolbar/flexmonster.toolbar.js +1 -1
  42. package/types/flexmonster.d.ts +8 -8
@@ -1,7 +1,7 @@
1
1
  @import (reference) "default/flexmonster.less";
2
2
 
3
3
  :root {
4
- --fm-version: "2.9.10";
4
+ --fm-version: "2.9.11";
5
5
  }
6
6
 
7
7
  /* ===== RESET STYLES ===== */
@@ -3286,8 +3286,9 @@
3286
3286
  }
3287
3287
 
3288
3288
  .fm-popup-header {
3289
+ display: flex;
3289
3290
  .fm-ui-col:first-child {
3290
- max-width: 300px;
3291
+ min-width: 100px;
3291
3292
 
3292
3293
  span.fm-ui-label {
3293
3294
  white-space: nowrap;
@@ -3296,6 +3297,21 @@
3296
3297
  }
3297
3298
  }
3298
3299
 
3300
+ .fm-ui-col:nth-child(1) {
3301
+ flex: 1;
3302
+
3303
+ .fm-popup-subtitle {
3304
+ width: fit-content;
3305
+ }
3306
+ }
3307
+
3308
+ .fm-ui-col:nth-child(2) {
3309
+ min-width: 405px;
3310
+ position: relative;
3311
+ right: 0px;
3312
+ margin-left: 30px;
3313
+ }
3314
+
3299
3315
  .fm-btn-add-measure {
3300
3316
  padding-right: 32px;
3301
3317
  max-width: 250px;
@@ -3910,9 +3926,21 @@
3910
3926
  height: ~"calc(100% - 50px)";
3911
3927
  height: ~"-webkit-calc(100% - 50px)";
3912
3928
  }
3929
+
3930
+ .fm-ui-col:nth-child(2) {
3931
+ min-width: 260px;
3932
+ }
3913
3933
  }
3914
3934
 
3915
3935
  &.fm-layout-mobile-small {
3936
+ .fm-popup-header {
3937
+ flex-direction: column;
3938
+ }
3939
+
3940
+ .fm-ui-col:nth-child(2) {
3941
+ margin-left: auto;
3942
+ }
3943
+
3916
3944
  .fm-popup-content {
3917
3945
  height: ~"calc(100% - 95px)";
3918
3946
  height: ~"-webkit-calc(100% - 95px)";
@@ -3930,8 +3958,13 @@
3930
3958
  height: 467px;
3931
3959
 
3932
3960
  .fm-popup-header {
3933
- .fm-ui-col:first-child {
3961
+ .fm-ui-col:nth-child(1) {
3934
3962
  margin-right: 20px;
3963
+ flex: none;
3964
+ }
3965
+
3966
+ .fm-ui-col:nth-child(2) {
3967
+ min-width: auto;
3935
3968
  }
3936
3969
 
3937
3970
  .fm-btn-add-measure {
@@ -6369,21 +6402,20 @@
6369
6402
  flex-direction: column;
6370
6403
 
6371
6404
  .fm-title-text.fm-ui-col {
6372
- max-width: unset;
6405
+ max-width: none !important;
6373
6406
  width: 100%;
6374
6407
  font-size: @ui-title-font-size-smaller;
6375
6408
  margin-bottom: 10px;
6376
6409
  }
6377
-
6378
6410
  }
6379
6411
 
6380
6412
  .fm-toolbox {
6381
6413
  display: flex;
6382
- max-width: unset !important;
6383
- width: unset !important;
6414
+ max-width: none !important;
6415
+ width: auto !important;
6384
6416
 
6385
6417
  .fm-ui-btn:not(.fm-button-add) {
6386
- max-width: unset;
6418
+ max-width: none;
6387
6419
  flex: 1;
6388
6420
  }
6389
6421
  }
@@ -6402,7 +6434,7 @@
6402
6434
  }
6403
6435
 
6404
6436
  .fm-title-text {
6405
- max-width: 46%;
6437
+ max-width: 46% !important;
6406
6438
  width: ~"-webkit-calc(100% - 270px)";
6407
6439
  width: ~"calc(100% - 270px)";
6408
6440
  }
@@ -6444,7 +6476,8 @@
6444
6476
  }
6445
6477
 
6446
6478
  .fm-values {
6447
- width: 150px;
6479
+ width: ~"calc(100% - 390px)";
6480
+ width: ~"-webkit-calc(100% - 390px)";
6448
6481
  }
6449
6482
 
6450
6483
  .fm-conditions {
@@ -6452,7 +6485,8 @@
6452
6485
  }
6453
6486
 
6454
6487
  .fm-font-family {
6455
- width: 150px;
6488
+ width: ~"calc(100% - 390px)";
6489
+ width: ~"-webkit-calc(100% - 390px)";
6456
6490
  }
6457
6491
 
6458
6492
  .fm-font-size {
@@ -7151,7 +7185,7 @@
7151
7185
 
7152
7186
  #fm-toolbar-wrapper .fm-toolbar-ui .fm-button-add {
7153
7187
  padding-right: 30px;
7154
- min-width: unset;
7188
+ min-width: auto;
7155
7189
  }
7156
7190
 
7157
7191
  #fm-toolbar-wrapper .fm-toolbar-ui .fm-button-add-large {
@@ -1,5 +1,5 @@
1
1
  :root {
2
- --fm-version: "2.9.10";
2
+ --fm-version: "2.9.11";
3
3
  }
4
4
  /* ===== RESET STYLES ===== */
5
5
  #fm-pivot-view,
@@ -3441,14 +3441,29 @@
3441
3441
  #fm-pivot-view .fm-fields-view .fm-btn-add-measure-2:hover:before {
3442
3442
  color: #59a10e;
3443
3443
  }
3444
+ #fm-pivot-view .fm-fields-view .fm-popup-header {
3445
+ display: flex;
3446
+ }
3444
3447
  #fm-pivot-view .fm-fields-view .fm-popup-header .fm-ui-col:first-child {
3445
- max-width: 300px;
3448
+ min-width: 100px;
3446
3449
  }
3447
3450
  #fm-pivot-view .fm-fields-view .fm-popup-header .fm-ui-col:first-child span.fm-ui-label {
3448
3451
  white-space: nowrap;
3449
3452
  text-overflow: ellipsis;
3450
3453
  overflow: hidden;
3451
3454
  }
3455
+ #fm-pivot-view .fm-fields-view .fm-popup-header .fm-ui-col:nth-child(1) {
3456
+ flex: 1;
3457
+ }
3458
+ #fm-pivot-view .fm-fields-view .fm-popup-header .fm-ui-col:nth-child(1) .fm-popup-subtitle {
3459
+ width: fit-content;
3460
+ }
3461
+ #fm-pivot-view .fm-fields-view .fm-popup-header .fm-ui-col:nth-child(2) {
3462
+ min-width: 405px;
3463
+ position: relative;
3464
+ right: 0px;
3465
+ margin-left: 30px;
3466
+ }
3452
3467
  #fm-pivot-view .fm-fields-view .fm-popup-header .fm-btn-add-measure {
3453
3468
  padding-right: 32px;
3454
3469
  max-width: 250px;
@@ -4313,6 +4328,15 @@
4313
4328
  height: calc(100% - 50px);
4314
4329
  height: -webkit-calc(100% - 50px);
4315
4330
  }
4331
+ #fm-pivot-view .fm-fields-view.fm-layout-mobile .fm-ui-col:nth-child(2) {
4332
+ min-width: 260px;
4333
+ }
4334
+ #fm-pivot-view .fm-fields-view.fm-layout-mobile-small .fm-popup-header {
4335
+ flex-direction: column;
4336
+ }
4337
+ #fm-pivot-view .fm-fields-view.fm-layout-mobile-small .fm-ui-col:nth-child(2) {
4338
+ margin-left: auto;
4339
+ }
4316
4340
  #fm-pivot-view .fm-fields-view.fm-layout-mobile-small .fm-popup-content {
4317
4341
  height: calc(100% - 95px);
4318
4342
  height: -webkit-calc(100% - 95px);
@@ -4326,8 +4350,12 @@
4326
4350
  min-height: 467px;
4327
4351
  height: 467px;
4328
4352
  }
4329
- #fm-pivot-view .fm-fields-view.fm-flat-fields .fm-popup-header .fm-ui-col:first-child {
4353
+ #fm-pivot-view .fm-fields-view.fm-flat-fields .fm-popup-header .fm-ui-col:nth-child(1) {
4330
4354
  margin-right: 20px;
4355
+ flex: none;
4356
+ }
4357
+ #fm-pivot-view .fm-fields-view.fm-flat-fields .fm-popup-header .fm-ui-col:nth-child(2) {
4358
+ min-width: auto;
4331
4359
  }
4332
4360
  #fm-pivot-view .fm-fields-view.fm-flat-fields .fm-popup-header .fm-btn-add-measure {
4333
4361
  min-width: 40px;
@@ -6514,18 +6542,18 @@
6514
6542
  flex-direction: column;
6515
6543
  }
6516
6544
  #fm-toolbar-wrapper div.fm-panel.fm-popup.fm-layout-mobile .fm-panel-content .fm-title-bar .fm-title-text.fm-ui-col {
6517
- max-width: unset;
6545
+ max-width: none !important;
6518
6546
  width: 100%;
6519
6547
  font-size: 18px;
6520
6548
  margin-bottom: 10px;
6521
6549
  }
6522
6550
  #fm-toolbar-wrapper div.fm-panel.fm-popup.fm-layout-mobile .fm-panel-content .fm-toolbox {
6523
6551
  display: flex;
6524
- max-width: unset !important;
6525
- width: unset !important;
6552
+ max-width: none !important;
6553
+ width: auto !important;
6526
6554
  }
6527
6555
  #fm-toolbar-wrapper div.fm-panel.fm-popup.fm-layout-mobile .fm-panel-content .fm-toolbox .fm-ui-btn:not(.fm-button-add) {
6528
- max-width: unset;
6556
+ max-width: none;
6529
6557
  flex: 1;
6530
6558
  }
6531
6559
  /* Conditional formatting */
@@ -6538,7 +6566,7 @@
6538
6566
  width: 54% !important;
6539
6567
  }
6540
6568
  #fm-toolbar-wrapper .fm-popup-conditional .fm-title-text {
6541
- max-width: 46%;
6569
+ max-width: 46% !important;
6542
6570
  width: -webkit-calc(100% - 270px);
6543
6571
  width: calc(100% - 270px);
6544
6572
  }
@@ -6574,13 +6602,15 @@
6574
6602
  color: #59a10e;
6575
6603
  }
6576
6604
  #fm-toolbar-wrapper .fm-popup-conditional .fm-condition-row .fm-values {
6577
- width: 150px;
6605
+ width: calc(100% - 390px);
6606
+ width: -webkit-calc(100% - 390px);
6578
6607
  }
6579
6608
  #fm-toolbar-wrapper .fm-popup-conditional .fm-condition-row .fm-conditions {
6580
6609
  width: 150px;
6581
6610
  }
6582
6611
  #fm-toolbar-wrapper .fm-popup-conditional .fm-condition-row .fm-font-family {
6583
- width: 150px;
6612
+ width: calc(100% - 390px);
6613
+ width: -webkit-calc(100% - 390px);
6584
6614
  }
6585
6615
  #fm-toolbar-wrapper .fm-popup-conditional .fm-condition-row .fm-font-size {
6586
6616
  width: 100px;
@@ -7171,7 +7201,7 @@
7171
7201
  }
7172
7202
  #fm-toolbar-wrapper .fm-toolbar-ui .fm-button-add {
7173
7203
  padding-right: 30px;
7174
- min-width: unset;
7204
+ min-width: auto;
7175
7205
  }
7176
7206
  #fm-toolbar-wrapper .fm-toolbar-ui .fm-button-add-large {
7177
7207
  padding-left: 36px;