flexmonster 2.9.11 → 2.9.15-1
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/README.md +1 -1
- package/flexmonster.css +14 -18
- package/flexmonster.es5.full.js +2734 -2703
- package/flexmonster.es5.js +2696 -2671
- package/flexmonster.full.js +2432 -2403
- package/flexmonster.js +2348 -2325
- package/flexmonster.min.css +1 -1
- package/lib/canvg.min.js +2 -6
- package/lib/flexmonster.highcharts.js +13 -15
- package/lib/html2canvas.v1.min.js +3 -2
- package/lib/promise.min.js +1 -1
- package/lib/sha1.min.js +21 -13
- package/package.json +1 -1
- package/theme/accessible/flexmonster.css +14 -18
- package/theme/accessible/flexmonster.min.css +1 -1
- package/theme/blackorange/flexmonster.css +14 -18
- package/theme/blackorange/flexmonster.min.css +1 -1
- package/theme/brightorange/flexmonster.css +14 -18
- package/theme/brightorange/flexmonster.min.css +1 -1
- package/theme/dark/flexmonster.css +14 -18
- package/theme/dark/flexmonster.min.css +1 -1
- package/theme/flexmonster-base.less +16 -23
- package/theme/green/flexmonster.css +14 -18
- package/theme/green/flexmonster.min.css +1 -1
- package/theme/lightblue/flexmonster.css +14 -18
- package/theme/lightblue/flexmonster.min.css +1 -1
- package/theme/macos/flexmonster.css +14 -18
- package/theme/macos/flexmonster.min.css +1 -1
- package/theme/midnight/flexmonster.css +14 -18
- package/theme/midnight/flexmonster.min.css +1 -1
- package/theme/old/flexmonster.css +14 -18
- package/theme/old/flexmonster.min.css +1 -1
- package/theme/orange/flexmonster.css +14 -18
- package/theme/orange/flexmonster.min.css +1 -1
- package/theme/purple/flexmonster.css +14 -18
- package/theme/purple/flexmonster.min.css +1 -1
- package/theme/softdefault/flexmonster.css +14 -18
- package/theme/softdefault/flexmonster.min.css +1 -1
- package/theme/stripedblue/flexmonster.css +14 -18
- package/theme/stripedblue/flexmonster.min.css +1 -1
- package/theme/stripedteal/flexmonster.css +14 -18
- package/theme/stripedteal/flexmonster.min.css +1 -1
- package/theme/teal/flexmonster.css +14 -18
- package/theme/teal/flexmonster.min.css +1 -1
- package/theme/yellow/flexmonster.css +14 -18
- package/theme/yellow/flexmonster.min.css +1 -1
- package/toolbar/flexmonster.toolbar.js +4 -3
- package/types/flexmonster.d.ts +5 -5
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@import (reference) "default/flexmonster.less";
|
|
2
2
|
|
|
3
3
|
:root {
|
|
4
|
-
--fm-version: "2.9.
|
|
4
|
+
--fm-version: "2.9.15";
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
/* ===== RESET STYLES ===== */
|
|
@@ -3306,7 +3306,7 @@
|
|
|
3306
3306
|
}
|
|
3307
3307
|
|
|
3308
3308
|
.fm-ui-col:nth-child(2) {
|
|
3309
|
-
min-width:
|
|
3309
|
+
min-width: fit-content;
|
|
3310
3310
|
position: relative;
|
|
3311
3311
|
right: 0px;
|
|
3312
3312
|
margin-left: 30px;
|
|
@@ -3598,6 +3598,11 @@
|
|
|
3598
3598
|
}
|
|
3599
3599
|
}
|
|
3600
3600
|
|
|
3601
|
+
.fm-search-highlight {
|
|
3602
|
+
background-color: @grid-table-header-filter-column-search-highlight;
|
|
3603
|
+
font-weight: inherit;
|
|
3604
|
+
}
|
|
3605
|
+
|
|
3601
3606
|
.fm-lst-hierarchies {
|
|
3602
3607
|
position: relative;
|
|
3603
3608
|
|
|
@@ -3926,10 +3931,6 @@
|
|
|
3926
3931
|
height: ~"calc(100% - 50px)";
|
|
3927
3932
|
height: ~"-webkit-calc(100% - 50px)";
|
|
3928
3933
|
}
|
|
3929
|
-
|
|
3930
|
-
.fm-ui-col:nth-child(2) {
|
|
3931
|
-
min-width: 260px;
|
|
3932
|
-
}
|
|
3933
3934
|
}
|
|
3934
3935
|
|
|
3935
3936
|
&.fm-layout-mobile-small {
|
|
@@ -3958,14 +3959,6 @@
|
|
|
3958
3959
|
height: 467px;
|
|
3959
3960
|
|
|
3960
3961
|
.fm-popup-header {
|
|
3961
|
-
.fm-ui-col:nth-child(1) {
|
|
3962
|
-
margin-right: 20px;
|
|
3963
|
-
flex: none;
|
|
3964
|
-
}
|
|
3965
|
-
|
|
3966
|
-
.fm-ui-col:nth-child(2) {
|
|
3967
|
-
min-width: auto;
|
|
3968
|
-
}
|
|
3969
3962
|
|
|
3970
3963
|
.fm-btn-add-measure {
|
|
3971
3964
|
min-width: 40px;
|
|
@@ -4201,11 +4194,6 @@
|
|
|
4201
4194
|
}
|
|
4202
4195
|
/* layouts */
|
|
4203
4196
|
&.fm-layout-tablet {
|
|
4204
|
-
.fm-popup-header {
|
|
4205
|
-
.fm-ui-col:first-child {
|
|
4206
|
-
margin-right: 20px;
|
|
4207
|
-
}
|
|
4208
|
-
}
|
|
4209
4197
|
|
|
4210
4198
|
.fm-list-wrap .fm-list-header.fm-list-header-wide {
|
|
4211
4199
|
.fm-list-header-label-wrap {
|
|
@@ -6319,11 +6307,13 @@
|
|
|
6319
6307
|
}
|
|
6320
6308
|
|
|
6321
6309
|
#fm-toolbar-wrapper div.fm-panel .fm-title-bar .fm-toolbox {
|
|
6310
|
+
flex: 1;
|
|
6322
6311
|
margin-top: 0;
|
|
6323
|
-
|
|
6324
|
-
width:
|
|
6312
|
+
min-width: fit-content;
|
|
6313
|
+
width: fit-content;
|
|
6325
6314
|
float: right;
|
|
6326
6315
|
text-align: right;
|
|
6316
|
+
margin-left: 30px;
|
|
6327
6317
|
}
|
|
6328
6318
|
|
|
6329
6319
|
#fm-toolbar-wrapper div.fm-panel .fm-toolbox .fm-ui-btn {
|
|
@@ -6343,8 +6333,10 @@
|
|
|
6343
6333
|
|
|
6344
6334
|
#fm-toolbar-wrapper div.fm-panel .fm-panel-content {
|
|
6345
6335
|
position: relative;
|
|
6346
|
-
|
|
6336
|
+
|
|
6347
6337
|
.fm-title-bar {
|
|
6338
|
+
display: flex;
|
|
6339
|
+
justify-content: center;
|
|
6348
6340
|
clear: both;
|
|
6349
6341
|
margin-bottom: 24px;
|
|
6350
6342
|
|
|
@@ -6360,7 +6352,7 @@
|
|
|
6360
6352
|
|
|
6361
6353
|
&.fm-ui-col {
|
|
6362
6354
|
text-align: left;
|
|
6363
|
-
|
|
6355
|
+
flex: 1;
|
|
6364
6356
|
}
|
|
6365
6357
|
}
|
|
6366
6358
|
}
|
|
@@ -6413,6 +6405,7 @@
|
|
|
6413
6405
|
display: flex;
|
|
6414
6406
|
max-width: none !important;
|
|
6415
6407
|
width: auto !important;
|
|
6408
|
+
margin-left: 0;
|
|
6416
6409
|
|
|
6417
6410
|
.fm-ui-btn:not(.fm-button-add) {
|
|
6418
6411
|
max-width: none;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
--fm-version: "2.9.
|
|
2
|
+
--fm-version: "2.9.15";
|
|
3
3
|
}
|
|
4
4
|
/* ===== RESET STYLES ===== */
|
|
5
5
|
#fm-pivot-view,
|
|
@@ -3459,7 +3459,7 @@
|
|
|
3459
3459
|
width: fit-content;
|
|
3460
3460
|
}
|
|
3461
3461
|
#fm-pivot-view .fm-fields-view .fm-popup-header .fm-ui-col:nth-child(2) {
|
|
3462
|
-
min-width:
|
|
3462
|
+
min-width: fit-content;
|
|
3463
3463
|
position: relative;
|
|
3464
3464
|
right: 0px;
|
|
3465
3465
|
margin-left: 30px;
|
|
@@ -3757,6 +3757,10 @@
|
|
|
3757
3757
|
#fm-pivot-view .fm-fields-view .fm-popup-content .fm-list-wrap .fm-list-content li.fm-selected .fm-text-display {
|
|
3758
3758
|
font-weight: bold;
|
|
3759
3759
|
}
|
|
3760
|
+
#fm-pivot-view .fm-fields-view .fm-popup-content .fm-list-wrap .fm-list-content .fm-search-highlight {
|
|
3761
|
+
background-color: #FFFF00;
|
|
3762
|
+
font-weight: inherit;
|
|
3763
|
+
}
|
|
3760
3764
|
#fm-pivot-view .fm-fields-view .fm-popup-content .fm-list-wrap .fm-list-content .fm-lst-hierarchies {
|
|
3761
3765
|
position: relative;
|
|
3762
3766
|
}
|
|
@@ -4328,9 +4332,6 @@
|
|
|
4328
4332
|
height: calc(100% - 50px);
|
|
4329
4333
|
height: -webkit-calc(100% - 50px);
|
|
4330
4334
|
}
|
|
4331
|
-
#fm-pivot-view .fm-fields-view.fm-layout-mobile .fm-ui-col:nth-child(2) {
|
|
4332
|
-
min-width: 260px;
|
|
4333
|
-
}
|
|
4334
4335
|
#fm-pivot-view .fm-fields-view.fm-layout-mobile-small .fm-popup-header {
|
|
4335
4336
|
flex-direction: column;
|
|
4336
4337
|
}
|
|
@@ -4350,13 +4351,6 @@
|
|
|
4350
4351
|
min-height: 467px;
|
|
4351
4352
|
height: 467px;
|
|
4352
4353
|
}
|
|
4353
|
-
#fm-pivot-view .fm-fields-view.fm-flat-fields .fm-popup-header .fm-ui-col:nth-child(1) {
|
|
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;
|
|
4359
|
-
}
|
|
4360
4354
|
#fm-pivot-view .fm-fields-view.fm-flat-fields .fm-popup-header .fm-btn-add-measure {
|
|
4361
4355
|
min-width: 40px;
|
|
4362
4356
|
width: 40px;
|
|
@@ -4595,9 +4589,6 @@
|
|
|
4595
4589
|
height: calc(100% - 35px);
|
|
4596
4590
|
height: -webkit-calc(100% - 35px);
|
|
4597
4591
|
}
|
|
4598
|
-
#fm-pivot-view .fm-fields-view.fm-layout-tablet .fm-popup-header .fm-ui-col:first-child {
|
|
4599
|
-
margin-right: 20px;
|
|
4600
|
-
}
|
|
4601
4592
|
#fm-pivot-view .fm-fields-view.fm-layout-tablet .fm-list-wrap .fm-list-header.fm-list-header-wide .fm-list-header-label-wrap {
|
|
4602
4593
|
position: absolute;
|
|
4603
4594
|
top: 50%;
|
|
@@ -6474,11 +6465,13 @@
|
|
|
6474
6465
|
text-align: center;
|
|
6475
6466
|
}
|
|
6476
6467
|
#fm-toolbar-wrapper div.fm-panel .fm-title-bar .fm-toolbox {
|
|
6468
|
+
flex: 1;
|
|
6477
6469
|
margin-top: 0;
|
|
6478
|
-
|
|
6479
|
-
width:
|
|
6470
|
+
min-width: fit-content;
|
|
6471
|
+
width: fit-content;
|
|
6480
6472
|
float: right;
|
|
6481
6473
|
text-align: right;
|
|
6474
|
+
margin-left: 30px;
|
|
6482
6475
|
}
|
|
6483
6476
|
#fm-toolbar-wrapper div.fm-panel .fm-toolbox .fm-ui-btn {
|
|
6484
6477
|
height: 38px;
|
|
@@ -6496,6 +6489,8 @@
|
|
|
6496
6489
|
position: relative;
|
|
6497
6490
|
}
|
|
6498
6491
|
#fm-toolbar-wrapper div.fm-panel .fm-panel-content .fm-title-bar {
|
|
6492
|
+
display: flex;
|
|
6493
|
+
justify-content: center;
|
|
6499
6494
|
clear: both;
|
|
6500
6495
|
margin-bottom: 24px;
|
|
6501
6496
|
}
|
|
@@ -6511,7 +6506,7 @@
|
|
|
6511
6506
|
}
|
|
6512
6507
|
#fm-toolbar-wrapper div.fm-panel .fm-panel-content .fm-title-bar .fm-title-text.fm-ui-col {
|
|
6513
6508
|
text-align: left;
|
|
6514
|
-
|
|
6509
|
+
flex: 1;
|
|
6515
6510
|
}
|
|
6516
6511
|
#fm-toolbar-wrapper .fm-popup-modal-overlay {
|
|
6517
6512
|
z-index: 20;
|
|
@@ -6551,6 +6546,7 @@
|
|
|
6551
6546
|
display: flex;
|
|
6552
6547
|
max-width: none !important;
|
|
6553
6548
|
width: auto !important;
|
|
6549
|
+
margin-left: 0;
|
|
6554
6550
|
}
|
|
6555
6551
|
#fm-toolbar-wrapper div.fm-panel.fm-popup.fm-layout-mobile .fm-panel-content .fm-toolbox .fm-ui-btn:not(.fm-button-add) {
|
|
6556
6552
|
max-width: none;
|