inviton-powerduck 0.0.87 → 0.0.90

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 (71) hide show
  1. package/common/utils/dropdown-utils.ts +14 -7
  2. package/components/app/dynamic-component-container.tsx +1 -1
  3. package/components/app/root-dynamic-component-container.tsx +1 -1
  4. package/components/button/button.tsx +1 -1
  5. package/components/button/excel-upload-button.tsx +1 -1
  6. package/components/button/ladda-button.tsx +1 -1
  7. package/components/button/text-button.tsx +1 -1
  8. package/components/button/upload-button.tsx +1 -1
  9. package/components/card/card-body.tsx +1 -1
  10. package/components/card/card-header-with-options.tsx +1 -1
  11. package/components/card/card-header.tsx +1 -1
  12. package/components/card/card.tsx +1 -1
  13. package/components/collapse/index.tsx +1 -1
  14. package/components/contenteditable/index.tsx +1 -1
  15. package/components/context-menu/context-menu.tsx +1 -1
  16. package/components/counter/fetchdata.tsx +1 -1
  17. package/components/counter/index.tsx +1 -1
  18. package/components/datatable/col-vis-modal.tsx +1 -1
  19. package/components/datatable/css/datatable.css +93 -84
  20. package/components/datatable/datatable.tsx +1 -1
  21. package/components/datatable/filter-modal.tsx +1 -1
  22. package/components/dropdown/image-dropdown.tsx +1 -1
  23. package/components/dropdown/timezone-picker.tsx +1 -1
  24. package/components/dropdown-button/dropdown-button-element.tsx +1 -1
  25. package/components/dropdown-button/dropdown-button-heading.tsx +1 -1
  26. package/components/dropdown-button/dropdown-button-item.tsx +1 -1
  27. package/components/dropdown-button/dropdown-button-separator.tsx +1 -1
  28. package/components/dropdown-button/language-dropdown-button.tsx +1 -1
  29. package/components/file-downloader/index.tsx +1 -1
  30. package/components/form/footer-buttons.tsx +1 -1
  31. package/components/form/form.tsx +1 -1
  32. package/components/form/separator.tsx +1 -1
  33. package/components/form/validation-result-displayer.tsx +1 -1
  34. package/components/fullcalendar/fullcalendar-draggable-event.tsx +1 -1
  35. package/components/fullcalendar/timegrid-calendar.tsx +1 -1
  36. package/components/google/maps.tsx +1 -1
  37. package/components/highlight-js/index.tsx +1 -1
  38. package/components/home/index.tsx +1 -1
  39. package/components/html-literal/html-literal.tsx +1 -1
  40. package/components/image-crop/image-cropping-modal.tsx +1 -1
  41. package/components/image-crop/upload-and-crop.tsx +1 -1
  42. package/components/input/checkbox-without-label.tsx +1 -1
  43. package/components/input/geo-json.tsx +1 -1
  44. package/components/loading-indicator/index.tsx +1 -1
  45. package/components/modal/animation-error.tsx +1 -1
  46. package/components/modal/animation-success.tsx +1 -1
  47. package/components/modal/icon-question.tsx +1 -1
  48. package/components/modal/icon-warning.tsx +1 -1
  49. package/components/modal/modal-body.tsx +1 -1
  50. package/components/modal/modal-footer.tsx +1 -1
  51. package/components/modal-wrap/modal-section-wrapper.tsx +1 -1
  52. package/components/modal-wrap/modal-subtitle.tsx +1 -1
  53. package/components/progress-bar/index.tsx +1 -1
  54. package/components/rating/rating-displayer.tsx +1 -1
  55. package/components/rating/rating-picker.tsx +1 -1
  56. package/components/share/share-modal.tsx +1 -1
  57. package/components/share/share.tsx +1 -1
  58. package/components/sortable/sortable-container.tsx +1 -1
  59. package/components/sortable/sortable-item.tsx +1 -1
  60. package/components/spreadsheet/spreadsheet.tsx +1 -1
  61. package/components/summary-stats/summary-stats.tsx +1 -1
  62. package/components/swiper/swiper-gallery.tsx +1 -1
  63. package/components/swiper/swiper-slide.tsx +1 -1
  64. package/components/swiper/swiper.tsx +1 -1
  65. package/components/table-wrapper/css/table-wrapper.css +1 -1
  66. package/components/table-wrapper/table-wrapper.tsx +1 -1
  67. package/components/tilebox/tilebox.tsx +1 -1
  68. package/components/tooltip/index.tsx +1 -1
  69. package/components/transition/index.tsx +1 -1
  70. package/components/wizard/wizard-subtitle.tsx +1 -1
  71. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
1
  import { PortalUtils } from "./utils";
2
2
 
3
3
  export default class DropdownUtils {
4
- static bindDropdownOverflowHack(selector: string, cacheKey: string, hide: boolean): void {
4
+ static bindDropdownOverflowHack(selector: string, cacheKey: string, clonedRootCssClass: string, hide: boolean): void {
5
5
  if (DropdownUtils[cacheKey] == null) {
6
6
  DropdownUtils[cacheKey] = true;
7
7
 
@@ -30,11 +30,15 @@ export default class DropdownUtils {
30
30
  });
31
31
  }
32
32
 
33
+ thisDropdownCopy.find('button').addClass('show');
34
+ thisDropdownCopy.find('.dropdown-menu').addClass('show');
35
+ thisDropdownCopy.addClass(clonedRootCssClass);
36
+
33
37
  $("body").append(
34
38
  thisDropdownCopy.addClass(randomId + " show").css({
35
39
  position: "absolute",
36
40
  left: thisDropdown.offset().left,
37
- top: thisDropdown.offset().top - 10,
41
+ top: thisDropdown.offset().top,
38
42
  }),
39
43
  );
40
44
 
@@ -45,12 +49,15 @@ export default class DropdownUtils {
45
49
  })
46
50
  .on("hidden.bs.dropdown", ".dropdown", function (e) {
47
51
  let id = $(this).attr("data-hcid") || "";
48
- if (id.endsWith("-clone")) {
49
- let originalId = id.replace("-clone", "");
50
- let originalDropdown = $("[data-hcid='" + originalId + "']");
51
- originalDropdown.css("visibility", "").show();
52
- $(this).remove();
52
+ if (id.length == 0) {
53
+ return;
54
+ }
55
+
56
+ const clonedId = id.includes('-clone') ? id : `${id}-clone`;
57
+ const clonedDropdown = $("[data-hcid='" + clonedId + "']");
53
58
 
59
+ if (clonedDropdown.length > 0) {
60
+ clonedDropdown.remove();
54
61
  e.preventDefault();
55
62
  e.stopPropagation();
56
63
  e.stopImmediatePropagation();
@@ -85,5 +85,5 @@ class DynamicComponentContainerComponent extends Vue implements IDynamicComponen
85
85
  }
86
86
  }
87
87
 
88
- const DynamicComponentContainer = toNative(DynamicComponentContainerComponent)
88
+ const DynamicComponentContainer = toNative(DynamicComponentContainerComponent)
89
89
  export default DynamicComponentContainer
@@ -30,5 +30,5 @@ class RootDynamicComponentContainerComponent extends Vue implements IDynamicComp
30
30
  }
31
31
  }
32
32
 
33
- const RootDynamicComponentContainer = toNative(RootDynamicComponentContainerComponent)
33
+ const RootDynamicComponentContainer = toNative(RootDynamicComponentContainerComponent)
34
34
  export default RootDynamicComponentContainer
@@ -122,5 +122,5 @@ class ButtonComponent extends TsxComponent<ButtonArgs> implements ButtonArgs {
122
122
  }
123
123
  }
124
124
 
125
- const Button = toNative(ButtonComponent)
125
+ const Button = toNative(ButtonComponent)
126
126
  export default Button
@@ -55,5 +55,5 @@ class ExcelUploadButtonComponent extends TsxComponent<ExcelUploadButtonArgs> imp
55
55
  }
56
56
  }
57
57
 
58
- const ExcelUploadButton = toNative(ExcelUploadButtonComponent)
58
+ const ExcelUploadButton = toNative(ExcelUploadButtonComponent)
59
59
  export default ExcelUploadButton
@@ -61,5 +61,5 @@ class LaddaButtonComponent extends TsxComponent<LaddaButtonArgs> implements Ladd
61
61
  }
62
62
  }
63
63
 
64
- const LaddaButton = toNative(LaddaButtonComponent)
64
+ const LaddaButton = toNative(LaddaButtonComponent)
65
65
  export default LaddaButton
@@ -62,5 +62,5 @@ class TextButtonComponent extends TsxComponent<TextButtonArgs> implements TextBu
62
62
  }
63
63
  }
64
64
 
65
- const TextButton = toNative(TextButtonComponent)
65
+ const TextButton = toNative(TextButtonComponent)
66
66
  export default TextButton
@@ -176,5 +176,5 @@ class UploadButtonComponent extends TsxComponent<UploadButtonArgs> implements Up
176
176
  }
177
177
  }
178
178
 
179
- const UploadButton = toNative(UploadButtonComponent)
179
+ const UploadButton = toNative(UploadButtonComponent)
180
180
  export default UploadButton
@@ -9,5 +9,5 @@ class CardBodyComponent extends TsxComponent<CardBodyArgs> implements CardBodyAr
9
9
  }
10
10
  }
11
11
 
12
- const CardBody = toNative(CardBodyComponent)
12
+ const CardBody = toNative(CardBodyComponent)
13
13
  export default CardBody
@@ -54,5 +54,5 @@ class CardHeaderWithOptionsComponent extends TsxComponent<CardHeaderWithOptionsA
54
54
  }
55
55
  }
56
56
 
57
- const CardHeaderWithOptions = toNative(CardHeaderWithOptionsComponent)
57
+ const CardHeaderWithOptions = toNative(CardHeaderWithOptionsComponent)
58
58
  export default CardHeaderWithOptions
@@ -30,5 +30,5 @@ class CardHeaderComponent extends TsxComponent<CardHeaderArgs> implements CardHe
30
30
  }
31
31
  }
32
32
 
33
- const CardHeader = toNative(CardHeaderComponent)
33
+ const CardHeader = toNative(CardHeaderComponent)
34
34
  export default CardHeader
@@ -72,5 +72,5 @@ class CardComponent extends TsxComponent<CardArgs> implements CardArgs {
72
72
  }
73
73
  }
74
74
 
75
- const Card = toNative(CardComponent)
75
+ const Card = toNative(CardComponent)
76
76
  export default Card
@@ -39,5 +39,5 @@ class CollapseComponent extends TsxComponent<CollapseArgs> implements CollapseAr
39
39
  }
40
40
  }
41
41
 
42
- const Collapse = toNative(CollapseComponent)
42
+ const Collapse = toNative(CollapseComponent)
43
43
  export default Collapse
@@ -50,5 +50,5 @@ class ContentEditableComponent extends TsxComponent<ContentEditableArgs> impleme
50
50
  }
51
51
  }
52
52
 
53
- const ContentEditable = toNative(ContentEditableComponent)
53
+ const ContentEditable = toNative(ContentEditableComponent)
54
54
  export default ContentEditable
@@ -19,5 +19,5 @@ class ContextMenuComponent extends TsxComponent<ContextMenuArgs> implements Cont
19
19
  }
20
20
  }
21
21
 
22
- const ContextMenu = toNative(ContextMenuComponent)
22
+ const ContextMenu = toNative(ContextMenuComponent)
23
23
  export default ContextMenu
@@ -91,5 +91,5 @@ class FetchDataComponentComponent extends PowerduckViewModelBase {
91
91
  }
92
92
  }
93
93
 
94
- const FetchDataComponent = toNative(FetchDataComponentComponent)
94
+ const FetchDataComponent = toNative(FetchDataComponentComponent)
95
95
  export default FetchDataComponent
@@ -97,5 +97,5 @@ class CounterComponentComponent extends Vue {
97
97
  }
98
98
  }
99
99
 
100
- const CounterComponent = toNative(CounterComponentComponent)
100
+ const CounterComponent = toNative(CounterComponentComponent)
101
101
  export default CounterComponent
@@ -59,5 +59,5 @@ class ColVisModalComponent extends TsxComponent<ColVisModalArgs> implements ColV
59
59
  }
60
60
  }
61
61
 
62
- const ColVisModal = toNative(ColVisModalComponent)
62
+ const ColVisModal = toNative(ColVisModalComponent)
63
63
  export default ColVisModal
@@ -62,8 +62,8 @@
62
62
  display: block;
63
63
  }
64
64
 
65
- .dt-table.dt-table-mode table > thead > tr.dt-header th,
66
- .dt-table.dt-table-mode table > thead > tr.dt-header-filter th {
65
+ .dt-table.dt-table-mode table>thead>tr.dt-header th,
66
+ .dt-table.dt-table-mode table>thead>tr.dt-header-filter th {
67
67
  z-index: 39;
68
68
  cursor: pointer;
69
69
  font-weight: 400;
@@ -79,20 +79,26 @@
79
79
  border-bottom: 0;
80
80
  letter-spacing: -0.5px;
81
81
  background: white;
82
- -webkit-touch-callout: none; /* iOS Safari */
83
- -webkit-user-select: none; /* Safari */
84
- -khtml-user-select: none; /* Konqueror HTML */
85
- -moz-user-select: none; /* Firefox */
86
- -ms-user-select: none; /* Internet Explorer/Edge */
87
- user-select: none; /* Non-prefixed version, currently
82
+ -webkit-touch-callout: none;
83
+ /* iOS Safari */
84
+ -webkit-user-select: none;
85
+ /* Safari */
86
+ -khtml-user-select: none;
87
+ /* Konqueror HTML */
88
+ -moz-user-select: none;
89
+ /* Firefox */
90
+ -ms-user-select: none;
91
+ /* Internet Explorer/Edge */
92
+ user-select: none;
93
+ /* Non-prefixed version, currently
88
94
  supported by Chrome and Opera */
89
95
  }
90
96
 
91
- .dt-table.dt-table-mode table > thead > tr.dt-header th.dt-header-notsortable {
97
+ .dt-table.dt-table-mode table>thead>tr.dt-header th.dt-header-notsortable {
92
98
  cursor: default;
93
99
  }
94
100
 
95
- .dt-table.dt-table-mode table > tbody .dt-col-indexlabel {
101
+ .dt-table.dt-table-mode table>tbody .dt-col-indexlabel {
96
102
  background: #0075bf;
97
103
  color: #fff;
98
104
  width: 25px;
@@ -107,16 +113,16 @@
107
113
  font-weight: 400;
108
114
  }
109
115
 
110
- .dt-table.dt-table-mode table > tbody > tr {
116
+ .dt-table.dt-table-mode table>tbody>tr {
111
117
  transition: background 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
112
118
  will-change: background;
113
119
  }
114
120
 
115
- .dt-table.dt-table-mode table > tbody > tr:hover {
121
+ .dt-table.dt-table-mode table>tbody>tr:hover {
116
122
  background: #eee;
117
123
  }
118
124
 
119
- .dt-table.dt-table-mode table > tbody > tr > td {
125
+ .dt-table.dt-table-mode table>tbody>tr>td {
120
126
  border: 0;
121
127
  border-bottom: 1px solid #efefef;
122
128
  color: #2c2c2c;
@@ -127,20 +133,20 @@
127
133
  background: white;
128
134
  }
129
135
 
130
- .dt-table.dt-table-mode table > tbody > tr > td.dt-no-results {
136
+ .dt-table.dt-table-mode table>tbody>tr>td.dt-no-results {
131
137
  border-bottom: 0;
132
138
  }
133
139
 
134
- .dt-table.dt-table-mode table > tbody > tr:nth-child(even) > td {
140
+ .dt-table.dt-table-mode table>tbody>tr:nth-child(even)>td {
135
141
  background: #fbfbfb;
136
142
  }
137
143
 
138
144
  .dt-table.dt-table-mode .dt-filter-input .form-control {
139
- background-color: #fff;
140
- border: 0px;
141
- font-size: 11px !important;
142
- padding: 0;
143
- min-height: 21.5px;
145
+ background-color: #fff;
146
+ border: 0px;
147
+ font-size: 11px !important;
148
+ padding: 0;
149
+ min-height: 21.5px;
144
150
  }
145
151
 
146
152
  .dt-table.dt-table-mode input.dt-filter-input,
@@ -228,7 +234,7 @@
228
234
  display: none;
229
235
  }
230
236
 
231
- .dt-table.dt-table-mode .select2-container.select2-container--default.select2-container--open > .select2-dropdown {
237
+ .dt-table.dt-table-mode .select2-container.select2-container--default.select2-container--open>.select2-dropdown {
232
238
  border-color: #d8d8d8;
233
239
  }
234
240
 
@@ -353,7 +359,7 @@
353
359
  display: none;
354
360
  }
355
361
 
356
- .dt-top .dt-buttons .dt-button > span > i.now-ui-icons {
362
+ .dt-top .dt-buttons .dt-button>span>i.now-ui-icons {
357
363
  transform: translateY(2px);
358
364
  }
359
365
 
@@ -390,11 +396,11 @@
390
396
  z-index: 59 !important;
391
397
  }
392
398
 
393
- .dt-massop-btn-wrap > .dropdown {
399
+ .dt-massop-btn-wrap>.dropdown {
394
400
  display: inline-block;
395
401
  }
396
402
 
397
- td.dt-col-index .dt-selection-checkbox > .form-group,
403
+ td.dt-col-index .dt-selection-checkbox>.form-group,
398
404
  th.dt-header-index .dt-header-indexcheckbox {
399
405
  position: absolute;
400
406
  top: 0;
@@ -406,7 +412,7 @@ th.dt-header-index .dt-header-indexcheckbox {
406
412
  left: 13px;
407
413
  }
408
414
 
409
- .dt-skin-compact .dt-table.dt-table-mode table > tbody > tr > td.dt-col-index .dt-selection-checkbox > .form-group {
415
+ .dt-skin-compact .dt-table.dt-table-mode table>tbody>tr>td.dt-col-index .dt-selection-checkbox>.form-group {
410
416
  top: -12px;
411
417
  }
412
418
 
@@ -427,10 +433,6 @@ th.dt-header-index .dt-header-indexcheckbox {
427
433
  right: 0;
428
434
  }
429
435
 
430
- body > .dropdown > .btn.btn-sm {
431
- font-size: 10.4px;
432
- }
433
-
434
436
  .dt-root.dt-breakpoint-desktop tbody .dropdown .dropdown-menu {
435
437
  display: none;
436
438
  }
@@ -439,11 +441,11 @@ body > .dropdown > .btn.btn-sm {
439
441
  display: none;
440
442
  }
441
443
 
442
- .dt-table.dt-table-mode table > tbody > tr > td {
444
+ .dt-table.dt-table-mode table>tbody>tr>td {
443
445
  transition: background 150ms ease-in;
444
446
  }
445
447
 
446
- .dt-table.dt-table-mode table > tbody > tr:hover > td {
448
+ .dt-table.dt-table-mode table>tbody>tr:hover>td {
447
449
  background: #eaeaea;
448
450
  }
449
451
 
@@ -490,8 +492,8 @@ body > .dropdown > .btn.btn-sm {
490
492
  justify-content: center;
491
493
  }
492
494
 
493
- .dt-pagination-length > span,
494
- .dt-pagination-length > span {
495
+ .dt-pagination-length>span,
496
+ .dt-pagination-length>span {
495
497
  font-size: 9px;
496
498
  position: absolute;
497
499
  left: 0px;
@@ -507,27 +509,28 @@ body > .dropdown > .btn.btn-sm {
507
509
  display: none;
508
510
  }
509
511
  }
512
+
510
513
  /*
511
514
  Compact mode - front is smaller and narrower
512
515
  */
513
- .dt-skin-compact .dt-table.dt-table-mode table > thead > tr.dt-header th,
514
- .dt-breakpoint-mobile.dt-mobbehavior-compact .dt-table.dt-table-mode table > thead > tr.dt-header th {
516
+ .dt-skin-compact .dt-table.dt-table-mode table>thead>tr.dt-header th,
517
+ .dt-breakpoint-mobile.dt-mobbehavior-compact .dt-table.dt-table-mode table>thead>tr.dt-header th {
515
518
  font-family: "BenchNine";
516
519
  font-weight: 100;
517
520
  text-transform: capitalize;
518
521
  font-size: 13px;
519
522
  }
520
523
 
521
- .dt-skin-compact .dt-table.dt-table-mode table > thead > tr.dt-header th,
522
- .dt-skin-compact .dt-table.dt-table-mode table > thead > tr.dt-header-filter th,
523
- .dt-breakpoint-mobile.dt-mobbehavior-compact .dt-table.dt-table-mode table > thead > tr.dt-header th,
524
- .dt-breakpoint-mobile.dt-mobbehavior-compact .dt-table.dt-table-mode table > thead > tr.dt-header-filter th {
524
+ .dt-skin-compact .dt-table.dt-table-mode table>thead>tr.dt-header th,
525
+ .dt-skin-compact .dt-table.dt-table-mode table>thead>tr.dt-header-filter th,
526
+ .dt-breakpoint-mobile.dt-mobbehavior-compact .dt-table.dt-table-mode table>thead>tr.dt-header th,
527
+ .dt-breakpoint-mobile.dt-mobbehavior-compact .dt-table.dt-table-mode table>thead>tr.dt-header-filter th {
525
528
  padding-left: 4px;
526
529
  padding-right: 4px;
527
530
  }
528
531
 
529
- .dt-skin-compact .dt-table.dt-table-mode table > tbody > tr > td,
530
- .dt-breakpoint-mobile.dt-mobbehavior-compact .dt-table.dt-table-mode table > tbody > tr > td {
532
+ .dt-skin-compact .dt-table.dt-table-mode table>tbody>tr>td,
533
+ .dt-breakpoint-mobile.dt-mobbehavior-compact .dt-table.dt-table-mode table>tbody>tr>td {
531
534
  font-weight: 400;
532
535
  text-transform: none;
533
536
  font-size: 11px;
@@ -536,8 +539,8 @@ body > .dropdown > .btn.btn-sm {
536
539
  color: #6d6d6d;
537
540
  }
538
541
 
539
- .dt-skin-compact .dt-table.dt-table-mode table > tbody .dt-col-indexlabel,
540
- .dt-breakpoint-mobile.dt-mobbehavior-compact .dt-table.dt-table-mode table > tbody .dt-col-indexlabel {
542
+ .dt-skin-compact .dt-table.dt-table-mode table>tbody .dt-col-indexlabel,
543
+ .dt-breakpoint-mobile.dt-mobbehavior-compact .dt-table.dt-table-mode table>tbody .dt-col-indexlabel {
541
544
  width: 18px;
542
545
  height: 18px;
543
546
  font-size: 9px;
@@ -563,9 +566,9 @@ body > .dropdown > .btn.btn-sm {
563
566
  .dt-skin-compact .pagination .page-item .page-link,
564
567
  .dt-breakpoint-mobile.dt-mobbehavior-compact .pagination .page-item .page-link {
565
568
  min-width: 16px;
566
- height: 20px;
567
- line-height: 20px;
568
- font-size: 11px;
569
+ height: 20px;
570
+ line-height: 20px;
571
+ font-size: 11px;
569
572
  }
570
573
 
571
574
  .dt-skin-compact .dt-col-indexcheckbox {
@@ -574,7 +577,7 @@ body > .dropdown > .btn.btn-sm {
574
577
  height: auto;
575
578
  }
576
579
 
577
- .dt-skin-compact .dt-selection-checkbox > div {
580
+ .dt-skin-compact .dt-selection-checkbox>div {
578
581
  position: absolute;
579
582
  top: -10px;
580
583
  left: 0;
@@ -585,7 +588,7 @@ body > .dropdown > .btn.btn-sm {
585
588
  position: relative;
586
589
  }
587
590
 
588
- .dt-skin-compact .dt-header-indexcheckbox > div {
591
+ .dt-skin-compact .dt-header-indexcheckbox>div {
589
592
  position: absolute;
590
593
  z-index: 2;
591
594
  left: 7px;
@@ -597,7 +600,7 @@ body > .dropdown > .btn.btn-sm {
597
600
  position: relative;
598
601
  }
599
602
 
600
- .header-filter-cell.dt-filtertype-dropdown > .dt-filter-dropdown {
603
+ .header-filter-cell.dt-filtertype-dropdown>.dt-filter-dropdown {
601
604
  position: absolute;
602
605
  top: -2px;
603
606
  left: 9px;
@@ -605,33 +608,34 @@ body > .dropdown > .btn.btn-sm {
605
608
  z-index: 2;
606
609
  }
607
610
 
608
- .header-filter-cell.dt-filtertype-dropdown > .dt-filter-dropdown > .form-group {
611
+ .header-filter-cell.dt-filtertype-dropdown>.dt-filter-dropdown>.form-group {
609
612
  margin-bottom: 0;
610
613
  }
611
614
 
612
615
  .header-filter-cell .input-group .input-group-text {
613
- width: auto;
614
- min-height: auto;
615
- padding: 0px 3px;
616
- margin: auto 0;
617
- background-color: inherit;
618
- border: inherit;
619
- vertical-align: middle;
616
+ width: auto;
617
+ min-height: auto;
618
+ padding: 0px 3px;
619
+ margin: auto 0;
620
+ background-color: inherit;
621
+ border: inherit;
622
+ vertical-align: middle;
620
623
  }
621
624
 
622
- .dt-table.dt-table-mode table > thead > tr.dt-header th .dt-filter-dropdown,
623
- .dt-table.dt-table-mode table > thead > tr.dt-header-filter th .dt-filter-dropdown {
625
+ .dt-table.dt-table-mode table>thead>tr.dt-header th .dt-filter-dropdown,
626
+ .dt-table.dt-table-mode table>thead>tr.dt-header-filter th .dt-filter-dropdown {
624
627
  text-transform: none;
625
628
  }
626
629
 
627
- .dt-skin-compact .header-filter-cell.dt-filtertype-dropdown > .dt-filter-dropdown,
628
- .dt-mobbehavior-compact .header-filter-cell.dt-filtertype-dropdown > .dt-filter-dropdown {
630
+ .dt-skin-compact .header-filter-cell.dt-filtertype-dropdown>.dt-filter-dropdown,
631
+ .dt-mobbehavior-compact .header-filter-cell.dt-filtertype-dropdown>.dt-filter-dropdown {
629
632
  left: 4px;
630
633
  }
631
634
 
632
- .dt-device-desktop.dt-skin-default .header-filter-cell.dt-filtertype-dropdown > .dt-filter-dropdown {
635
+ .dt-device-desktop.dt-skin-default .header-filter-cell.dt-filtertype-dropdown>.dt-filter-dropdown {
633
636
  left: 5px;
634
637
  }
638
+
635
639
  /*
636
640
  Vertical transform - items displayed as blocks
637
641
  */
@@ -680,6 +684,7 @@ body > .dropdown > .btn.btn-sm {
680
684
  width: 58%;
681
685
  display: inline-block;
682
686
  }
687
+
683
688
  /*
684
689
  Mobile mode - some experimental shit
685
690
  */
@@ -796,11 +801,11 @@ body > .dropdown > .btn.btn-sm {
796
801
  display: flex;
797
802
  }
798
803
 
799
- .dt-mobile-filter-rowone > div {
804
+ .dt-mobile-filter-rowone>div {
800
805
  flex: 1;
801
806
  }
802
807
 
803
- .dt-mobile-filter-rowone > button {
808
+ .dt-mobile-filter-rowone>button {
804
809
  margin: 0;
805
810
  margin-left: 1px;
806
811
  }
@@ -815,6 +820,7 @@ body > .dropdown > .btn.btn-sm {
815
820
  top: 50%;
816
821
  margin-top: -15px;
817
822
  }
823
+
818
824
  /*
819
825
  Table sizing
820
826
  */
@@ -888,48 +894,49 @@ body > .dropdown > .btn.btn-sm {
888
894
  }
889
895
 
890
896
  @media (max-width: 767px) {
897
+
891
898
  html.has-dt-fullsize.has-dt-fullsize-mobile:not(.dt-fullsize-beh-mobile),
892
- html.has-dt-fullsize.has-dt-fullsize-mobile:not(.dt-fullsize-beh-mobile) > body,
893
- html.has-dt-fullsize.has-dt-fullsize-mobile:not(.dt-fullsize-beh-mobile) > body > .wrapper,
894
- html.has-dt-fullsize.has-dt-fullsize-mobile:not(.dt-fullsize-beh-mobile) > body > .wrapper > .main-panel,
895
- html.has-dt-fullsize.has-dt-fullsize-mobile:not(.dt-fullsize-beh-mobile) > body > .wrapper > .main-panel > .content,
896
- html.has-dt-fullsize.has-dt-fullsize-mobile:not(.dt-fullsize-beh-mobile) > body > .wrapper > .main-panel > .content > .frm-flex-container,
897
- html.has-dt-fullsize.has-dt-fullsize-mobile:not(.dt-fullsize-beh-mobile) > body > .wrapper > .main-panel > .content > .frm-flex-container > .frm-flex-child,
898
- html.has-dt-fullsize.has-dt-fullsize-mobile:not(.dt-fullsize-beh-mobile) > body > .wrapper > .main-panel .card.single-card,
899
- html.has-dt-fullsize.has-dt-fullsize-mobile:not(.dt-fullsize-beh-mobile) > body > .wrapper > .main-panel .card.single-card > .card-body {
899
+ html.has-dt-fullsize.has-dt-fullsize-mobile:not(.dt-fullsize-beh-mobile)>body,
900
+ html.has-dt-fullsize.has-dt-fullsize-mobile:not(.dt-fullsize-beh-mobile)>body>.wrapper,
901
+ html.has-dt-fullsize.has-dt-fullsize-mobile:not(.dt-fullsize-beh-mobile)>body>.wrapper>.main-panel,
902
+ html.has-dt-fullsize.has-dt-fullsize-mobile:not(.dt-fullsize-beh-mobile)>body>.wrapper>.main-panel>.content,
903
+ html.has-dt-fullsize.has-dt-fullsize-mobile:not(.dt-fullsize-beh-mobile)>body>.wrapper>.main-panel>.content>.frm-flex-container,
904
+ html.has-dt-fullsize.has-dt-fullsize-mobile:not(.dt-fullsize-beh-mobile)>body>.wrapper>.main-panel>.content>.frm-flex-container>.frm-flex-child,
905
+ html.has-dt-fullsize.has-dt-fullsize-mobile:not(.dt-fullsize-beh-mobile)>body>.wrapper>.main-panel .card.single-card,
906
+ html.has-dt-fullsize.has-dt-fullsize-mobile:not(.dt-fullsize-beh-mobile)>body>.wrapper>.main-panel .card.single-card>.card-body {
900
907
  height: 100%;
901
908
  }
902
909
 
903
- html.has-dt-fullsize.has-dt-fullsize-mobile:not(.dt-fullsize-beh-mobile) > body > .wrapper > .main-panel .card.single-card {
910
+ html.has-dt-fullsize.has-dt-fullsize-mobile:not(.dt-fullsize-beh-mobile)>body>.wrapper>.main-panel .card.single-card {
904
911
  height: calc(100% - 6px);
905
912
  }
906
913
 
907
- html.has-dt-fullsize.has-dt-fullsize-mobile:not(.dt-fullsize-beh-mobile.dt-fullsize-skin-default) > body > .wrapper > .main-panel .card.single-card > .card-body {
914
+ html.has-dt-fullsize.has-dt-fullsize-mobile:not(.dt-fullsize-beh-mobile.dt-fullsize-skin-default)>body>.wrapper>.main-panel .card.single-card>.card-body {
908
915
  padding-bottom: 0;
909
916
  }
910
917
 
911
- html .has-dt-fullsize.has-dt-fullsize-mobile > body > .wrapper > .main-panel .card.single-card > .card-body .dt-root.dt-fullsize-table {
918
+ html .has-dt-fullsize.has-dt-fullsize-mobile>body>.wrapper>.main-panel .card.single-card>.card-body .dt-root.dt-fullsize-table {
912
919
  height: calc(100% - 10px);
913
920
  }
914
921
 
915
- html.has-dt-fullsize.has-dt-fullsize-mobile.has-dt-fullsize-ios > body > .wrapper > .main-panel .card.single-card > .card-body .dt-root.dt-fullsize-table {
922
+ html.has-dt-fullsize.has-dt-fullsize-mobile.has-dt-fullsize-ios>body>.wrapper>.main-panel .card.single-card>.card-body .dt-root.dt-fullsize-table {
916
923
  height: 100%;
917
924
  }
918
925
 
919
- html.has-dt-fullsize.has-dt-fullsize-mobile > body > .wrapper > .main-panel .card.single-card {
926
+ html.has-dt-fullsize.has-dt-fullsize-mobile>body>.wrapper>.main-panel .card.single-card {
920
927
  -webkit-overflow-scrolling: touch;
921
928
  overflow-y: auto;
922
929
  }
923
930
 
924
- html.has-dt-fullsize.has-dt-fullsize-mobile > body > .wrapper > .main-panel .card.single-card > .card-body {
931
+ html.has-dt-fullsize.has-dt-fullsize-mobile>body>.wrapper>.main-panel .card.single-card>.card-body {
925
932
  padding-top: 15px;
926
933
  }
927
934
 
928
- html.has-dt-fullsize.has-dt-fullsize-mobile > body > .wrapper > .main-panel .card.single-card > .card-header {
935
+ html.has-dt-fullsize.has-dt-fullsize-mobile>body>.wrapper>.main-panel .card.single-card>.card-header {
929
936
  display: none;
930
937
  }
931
938
 
932
- html.has-dt-fullsize > body > .wrapper > .main-panel .card.single-card > .card-body {
939
+ html.has-dt-fullsize>body>.wrapper>.main-panel .card.single-card>.card-body {
933
940
  padding-left: 10px;
934
941
  padding-right: 10px;
935
942
  overflow-y: auto;
@@ -949,7 +956,7 @@ body > .dropdown > .btn.btn-sm {
949
956
  }
950
957
 
951
958
  @media (min-width: 768px) {
952
- .table-upper-buttons-wrap + .dt-root .dt-massop-btn-wrap {
959
+ .table-upper-buttons-wrap+.dt-root .dt-massop-btn-wrap {
953
960
  padding-left: 0;
954
961
  padding-top: 5px;
955
962
  }
@@ -958,6 +965,7 @@ body > .dropdown > .btn.btn-sm {
958
965
  .has-dt-fullsize .dt-root.dt-mobbehavior-mobile.dt-breakpoint-mobile {
959
966
  height: auto !important;
960
967
  }
968
+
961
969
  /*
962
970
  iOS hacks
963
971
  */
@@ -970,10 +978,11 @@ body > .dropdown > .btn.btn-sm {
970
978
  margin-right: -20% !important;
971
979
  margin-bottom: -10px !important;
972
980
  }
981
+
973
982
  /*
974
983
  Other stylings
975
984
  */
976
- tr.dt-item > td button {
985
+ tr.dt-item>td button {
977
986
  margin-top: 0;
978
987
  margin-bottom: 0;
979
988
  }
@@ -983,6 +992,6 @@ tr.dt-item > td button {
983
992
  margin-bottom: 1px;
984
993
  }
985
994
 
986
- .table-upper-buttons-wrap + .dt-static {
995
+ .table-upper-buttons-wrap+.dt-static {
987
996
  margin-top: 20px;
988
- }
997
+ }
@@ -2334,7 +2334,7 @@ class DataTableComponent extends TsxComponent<DataTableArgs> implements DataTabl
2334
2334
 
2335
2335
  (function () {
2336
2336
  CheckboxUtils.bindTableShiftClick();
2337
- DropdownUtils.bindDropdownOverflowHack(".dt-root.dt-breakpoint-desktop tbody .dropdown", "dataTableDropdown", false);
2337
+ DropdownUtils.bindDropdownOverflowHack(".dt-root.dt-breakpoint-desktop tbody .dropdown", "dataTableDropdown", "dt-dropdown-button-cloned", false);
2338
2338
  })();
2339
2339
 
2340
2340
  const DataTable = toNative(DataTableComponent);
@@ -168,5 +168,5 @@ class ColFilterModalComponent extends TsxComponent<ColFilterModalArgs> implement
168
168
  }
169
169
  }
170
170
 
171
- const ColFilterModal = toNative(ColFilterModalComponent)
171
+ const ColFilterModal = toNative(ColFilterModalComponent)
172
172
  export default ColFilterModal
@@ -237,5 +237,5 @@ class ImageDropdownComponent extends TsxComponent<ImageDropdownArgs> implements
237
237
  }
238
238
  }
239
239
 
240
- const ImageDropdown = toNative(ImageDropdownComponent)
240
+ const ImageDropdown = toNative(ImageDropdownComponent)
241
241
  export default ImageDropdown
@@ -289,5 +289,5 @@ class TimezonePickerComponent extends TsxComponent<TimezonePickerArgs> implement
289
289
  }
290
290
  }
291
291
 
292
- const TimezonePicker = toNative(TimezonePickerComponent)
292
+ const TimezonePicker = toNative(TimezonePickerComponent)
293
293
  export default TimezonePicker
@@ -75,5 +75,5 @@ class DropdownButtonElementComponent extends TsxComponent<DropdownButtonElementA
75
75
  }
76
76
  }
77
77
 
78
- const DropdownButtonElement = toNative(DropdownButtonElementComponent)
78
+ const DropdownButtonElement = toNative(DropdownButtonElementComponent)
79
79
  export default DropdownButtonElement
@@ -13,5 +13,5 @@ class DropdownButtonHeadingComponent extends TsxComponent<DropdownButtonHeadingA
13
13
  }
14
14
  }
15
15
 
16
- const DropdownButtonHeading = toNative(DropdownButtonHeadingComponent)
16
+ const DropdownButtonHeading = toNative(DropdownButtonHeadingComponent)
17
17
  export default DropdownButtonHeading
@@ -92,5 +92,5 @@ class DropdownButtonItemComponent extends TsxComponent<DropdownButtonItemArgs> i
92
92
  }
93
93
  }
94
94
 
95
- const DropdownButtonItem = toNative(DropdownButtonItemComponent)
95
+ const DropdownButtonItem = toNative(DropdownButtonItemComponent)
96
96
  export default DropdownButtonItem
@@ -9,5 +9,5 @@ class DropdownButtonSeparatorComponent extends TsxComponent<DropdownButtonItemAr
9
9
  }
10
10
  }
11
11
 
12
- const DropdownButtonSeparator = toNative(DropdownButtonSeparatorComponent)
12
+ const DropdownButtonSeparator = toNative(DropdownButtonSeparatorComponent)
13
13
  export default DropdownButtonSeparator
@@ -50,5 +50,5 @@ class LanguageDropdownButtonComponent extends TsxComponent<LanguageDropdownButto
50
50
  }
51
51
  }
52
52
 
53
- const LanguageDropdownButton = toNative(LanguageDropdownButtonComponent)
53
+ const LanguageDropdownButton = toNative(LanguageDropdownButtonComponent)
54
54
  export default LanguageDropdownButton
@@ -262,5 +262,5 @@ class FileDownloadDialogComponent extends TsxComponent<FileDownloadDialogBinding
262
262
  }
263
263
  }
264
264
 
265
- const FileDownloadDialog = toNative(FileDownloadDialogComponent)
265
+ const FileDownloadDialog = toNative(FileDownloadDialogComponent)
266
266
  export default FileDownloadDialog
@@ -13,5 +13,5 @@ class FooterButtonsComponent extends TsxComponent<FooterButtonsArgs> implements
13
13
  }
14
14
  }
15
15
 
16
- const FooterButtons = toNative(FooterButtonsComponent)
16
+ const FooterButtons = toNative(FooterButtonsComponent)
17
17
  export default FooterButtons
@@ -9,5 +9,5 @@ class FormComponent extends TsxComponent<FormArgs> implements FormArgs {
9
9
  }
10
10
  }
11
11
 
12
- const Form = toNative(FormComponent)
12
+ const Form = toNative(FormComponent)
13
13
  export default Form
@@ -15,5 +15,5 @@ class SeparatorComponent extends TsxComponent<SeparatorArgs> implements Separato
15
15
  }
16
16
  }
17
17
 
18
- const Separator = toNative(SeparatorComponent)
18
+ const Separator = toNative(SeparatorComponent)
19
19
  export default Separator
@@ -32,5 +32,5 @@ class ValidationResultDisplayerComponent extends TsxComponent<ValidationResultDi
32
32
  }
33
33
  }
34
34
 
35
- const ValidationResultDisplayer = toNative(ValidationResultDisplayerComponent)
35
+ const ValidationResultDisplayer = toNative(ValidationResultDisplayerComponent)
36
36
  export default ValidationResultDisplayer
@@ -82,5 +82,5 @@ class FullCalendarDraggableEventComponent extends TsxComponent<FullCalendarDragg
82
82
  }
83
83
  }
84
84
 
85
- const FullCalendarDraggableEvent = toNative(FullCalendarDraggableEventComponent)
85
+ const FullCalendarDraggableEvent = toNative(FullCalendarDraggableEventComponent)
86
86
  export default FullCalendarDraggableEvent
@@ -496,5 +496,5 @@ class TimegridCalendarComponent extends TsxComponent<TimegridCalendarArgs> imple
496
496
  }
497
497
  }
498
498
 
499
- const TimegridCalendar = toNative(TimegridCalendarComponent)
499
+ const TimegridCalendar = toNative(TimegridCalendarComponent)
500
500
  export default TimegridCalendar
@@ -153,5 +153,5 @@ class GoogleMapComponent extends TsxComponent<GoogleMapArgs> implements GoogleMa
153
153
  }
154
154
  }
155
155
 
156
- const GoogleMap = toNative(GoogleMapComponent)
156
+ const GoogleMap = toNative(GoogleMapComponent)
157
157
  export default GoogleMap
@@ -59,5 +59,5 @@ class HighlightJsComponent extends TsxComponent<HighlightJsArgs> implements High
59
59
  }
60
60
  }
61
61
 
62
- const HighlightJs = toNative(HighlightJsComponent)
62
+ const HighlightJs = toNative(HighlightJsComponent)
63
63
  export default HighlightJs
@@ -45,5 +45,5 @@ class HomeComponentComponent extends Vue {
45
45
  }
46
46
  }
47
47
 
48
- const HomeComponent = toNative(HomeComponentComponent)
48
+ const HomeComponent = toNative(HomeComponentComponent)
49
49
  export default HomeComponent
@@ -37,5 +37,5 @@ class HtmlLiteralComponent extends TsxComponent<HtmlLiteralArgs> implements Html
37
37
  }
38
38
  }
39
39
 
40
- const HtmlLiteral = toNative(HtmlLiteralComponent)
40
+ const HtmlLiteral = toNative(HtmlLiteralComponent)
41
41
  export default HtmlLiteral
@@ -308,5 +308,5 @@ class ImageCropModalComponent extends TsxComponent<ImageCropModalBindingArgs> im
308
308
  }
309
309
  }
310
310
 
311
- const ImageCropModal = toNative(ImageCropModalComponent)
311
+ const ImageCropModal = toNative(ImageCropModalComponent)
312
312
  export default ImageCropModal
@@ -175,5 +175,5 @@ class UploadImageAndCropButtonComponent extends TsxComponent<UploadImageAndCropB
175
175
  }
176
176
  }
177
177
 
178
- const UploadImageAndCropButton = toNative(UploadImageAndCropButtonComponent)
178
+ const UploadImageAndCropButton = toNative(UploadImageAndCropButtonComponent)
179
179
  export default UploadImageAndCropButton
@@ -62,5 +62,5 @@ class CheckBoxWithoutLabelComponent extends TsxComponent<CheckBoxArgs> implement
62
62
  }
63
63
  }
64
64
 
65
- const CheckBoxWithoutLabel = toNative(CheckBoxWithoutLabelComponent)
65
+ const CheckBoxWithoutLabel = toNative(CheckBoxWithoutLabelComponent)
66
66
  export default CheckBoxWithoutLabel
@@ -53,5 +53,5 @@ class GeoJsonEditorComponent extends TsxComponent<GeoJsonEditorArgs> implements
53
53
  }
54
54
  }
55
55
 
56
- const GeoJsonEditor = toNative(GeoJsonEditorComponent)
56
+ const GeoJsonEditor = toNative(GeoJsonEditorComponent)
57
57
  export default GeoJsonEditor
@@ -36,5 +36,5 @@ class LoadingIndicatorComponent extends TsxComponent<LoadingIndicatorArgs> imple
36
36
  }
37
37
  }
38
38
 
39
- const LoadingIndicator = toNative(LoadingIndicatorComponent)
39
+ const LoadingIndicator = toNative(LoadingIndicatorComponent)
40
40
  export default LoadingIndicator
@@ -25,5 +25,5 @@ class ModalAnimationErrorComponent extends TsxComponent<ModalAnimationErrorArgs>
25
25
  }
26
26
  }
27
27
 
28
- const ModalAnimationError = toNative(ModalAnimationErrorComponent)
28
+ const ModalAnimationError = toNative(ModalAnimationErrorComponent)
29
29
  export default ModalAnimationError
@@ -27,5 +27,5 @@ class ModalAnimationSuccessComponent extends TsxComponent<ModalAnimationSuccessA
27
27
  }
28
28
  }
29
29
 
30
- const ModalAnimationSuccess = toNative(ModalAnimationSuccessComponent)
30
+ const ModalAnimationSuccess = toNative(ModalAnimationSuccessComponent)
31
31
  export default ModalAnimationSuccess
@@ -22,5 +22,5 @@ class ModalIconQuestionComponent extends TsxComponent<ModalIconQuestionArgs> imp
22
22
  }
23
23
  }
24
24
 
25
- const ModalIconQuestion = toNative(ModalIconQuestionComponent)
25
+ const ModalIconQuestion = toNative(ModalIconQuestionComponent)
26
26
  export default ModalIconQuestion
@@ -22,5 +22,5 @@ class ModalIconWarningComponent extends TsxComponent<ModalIconWarningArgs> imple
22
22
  }
23
23
  }
24
24
 
25
- const ModalIconWarning = toNative(ModalIconWarningComponent)
25
+ const ModalIconWarning = toNative(ModalIconWarningComponent)
26
26
  export default ModalIconWarning
@@ -13,5 +13,5 @@ class ModalBodyComponent extends TsxComponent<ModalBodyArgs> implements ModalBod
13
13
  }
14
14
  }
15
15
 
16
- const ModalBody = toNative(ModalBodyComponent)
16
+ const ModalBody = toNative(ModalBodyComponent)
17
17
  export default ModalBody
@@ -9,5 +9,5 @@ class ModalFooterComponent extends TsxComponent<ModalFooterArgs> implements Moda
9
9
  }
10
10
  }
11
11
 
12
- const ModalFooter = toNative(ModalFooterComponent)
12
+ const ModalFooter = toNative(ModalFooterComponent)
13
13
  export default ModalFooter
@@ -61,5 +61,5 @@ class ModalSectionWrapperComponent extends TsxComponent<ModalSectionWrapperArgs>
61
61
  }
62
62
  }
63
63
 
64
- const ModalSectionWrapper = toNative(ModalSectionWrapperComponent)
64
+ const ModalSectionWrapper = toNative(ModalSectionWrapperComponent)
65
65
  export default ModalSectionWrapper
@@ -15,5 +15,5 @@ class ModalSubtitleComponent extends TsxComponent<TabPageArgs> implements TabPag
15
15
  }
16
16
  }
17
17
 
18
- const ModalSubtitle = toNative(ModalSubtitleComponent)
18
+ const ModalSubtitle = toNative(ModalSubtitleComponent)
19
19
  export default ModalSubtitle
@@ -121,5 +121,5 @@ class ProgressBarComponent extends TsxComponent<ProgressBarArgs> implements Prog
121
121
  }
122
122
  }
123
123
 
124
- const ProgressBar = toNative(ProgressBarComponent)
124
+ const ProgressBar = toNative(ProgressBarComponent)
125
125
  export default ProgressBar
@@ -28,5 +28,5 @@ class RatingDisplayerComponent extends TsxComponent<RatingDisplayerArgs> impleme
28
28
  }
29
29
  }
30
30
 
31
- const RatingDisplayer = toNative(RatingDisplayerComponent)
31
+ const RatingDisplayer = toNative(RatingDisplayerComponent)
32
32
  export default RatingDisplayer
@@ -80,5 +80,5 @@ class RatingPickerComponent extends TsxComponent<RatingPickerArgs> implements Ra
80
80
  }
81
81
  }
82
82
 
83
- const RatingPicker = toNative(RatingPickerComponent)
83
+ const RatingPicker = toNative(RatingPickerComponent)
84
84
  export default RatingPicker
@@ -265,5 +265,5 @@ class ShareModalComponent extends TsxComponent<ShareComponentBindingArgs> implem
265
265
  }
266
266
  }
267
267
 
268
- const ShareModal = toNative(ShareModalComponent)
268
+ const ShareModal = toNative(ShareModalComponent)
269
269
  export default ShareModal
@@ -237,5 +237,5 @@ class ShareComponentComponent extends TsxComponent<ShareComponentArgs> implement
237
237
  }
238
238
  }
239
239
 
240
- const ShareComponent = toNative(ShareComponentComponent)
240
+ const ShareComponent = toNative(ShareComponentComponent)
241
241
  export default ShareComponent
@@ -59,5 +59,5 @@ class SortableContainerComponent extends TsxComponent<SortableContainerArgs> imp
59
59
  }
60
60
  }
61
61
 
62
- const SortableContainer = toNative(SortableContainerComponent)
62
+ const SortableContainer = toNative(SortableContainerComponent)
63
63
  export default SortableContainer
@@ -15,5 +15,5 @@ class SortableItemComponent extends TsxComponent<SortableItemArgs> implements So
15
15
  }
16
16
  }
17
17
 
18
- const SortableItem = toNative(SortableItemComponent)
18
+ const SortableItem = toNative(SortableItemComponent)
19
19
  export default SortableItem
@@ -132,5 +132,5 @@ class SpreadsheetComponent extends TsxComponent<SpreadsheetArgs> implements Spre
132
132
  }
133
133
  }
134
134
 
135
- const Spreadsheet = toNative(SpreadsheetComponent)
135
+ const Spreadsheet = toNative(SpreadsheetComponent)
136
136
  export default Spreadsheet
@@ -15,5 +15,5 @@ class SummaryStatsComponent extends TsxComponent<SummaryStatsArgs> implements Su
15
15
  }
16
16
  }
17
17
 
18
- const SummaryStats = toNative(SummaryStatsComponent)
18
+ const SummaryStats = toNative(SummaryStatsComponent)
19
19
  export default SummaryStats
@@ -86,5 +86,5 @@ class SwiperGalleryComponent extends TsxComponent<SwiperGalleryArgs> implements
86
86
  }
87
87
  }
88
88
 
89
- const SwiperGallery = toNative(SwiperGalleryComponent)
89
+ const SwiperGallery = toNative(SwiperGalleryComponent)
90
90
  export default SwiperGallery
@@ -9,5 +9,5 @@ class SwiperSlideComponent extends TsxComponent<SwiperSlideArgs> implements Swip
9
9
  }
10
10
  }
11
11
 
12
- const SwiperSlide = toNative(SwiperSlideComponent)
12
+ const SwiperSlide = toNative(SwiperSlideComponent)
13
13
  export default SwiperSlide
@@ -131,5 +131,5 @@ class SwiperComponent extends TsxComponent<SwiperArgs> implements SwiperArgs {
131
131
  }
132
132
  }
133
133
 
134
- const Swiper = toNative(SwiperComponent)
134
+ const Swiper = toNative(SwiperComponent)
135
135
  export default Swiper
@@ -38,7 +38,7 @@
38
38
 
39
39
  .table-upper-buttons-wrap {
40
40
  position: absolute;
41
- top: 20px;
41
+ top: 8px;
42
42
  z-index: 1;
43
43
  }
44
44
 
@@ -23,5 +23,5 @@ class TableWrapperComponent extends TsxComponent<TableWrapperArgs> implements Ta
23
23
  }
24
24
  }
25
25
 
26
- const TableWrapper = toNative(TableWrapperComponent)
26
+ const TableWrapper = toNative(TableWrapperComponent)
27
27
  export default TableWrapper
@@ -77,5 +77,5 @@ class TileboxComponent extends TsxComponent<TileboxArgs> implements TileboxArgs
77
77
  }
78
78
  }
79
79
 
80
- const Tilebox = toNative(TileboxComponent)
80
+ const Tilebox = toNative(TileboxComponent)
81
81
  export default Tilebox
@@ -96,5 +96,5 @@ class TooltipContainerComponent extends TsxComponent<TooltipContainerArgs> imple
96
96
  }
97
97
  }
98
98
 
99
- const TooltipContainer = toNative(TooltipContainerComponent)
99
+ const TooltipContainer = toNative(TooltipContainerComponent)
100
100
  export default TooltipContainer
@@ -14,5 +14,5 @@ class TransitionHolderComponent extends TsxComponent<TransitionArgs> implements
14
14
  }
15
15
  }
16
16
 
17
- const TransitionHolder = toNative(TransitionHolderComponent)
17
+ const TransitionHolder = toNative(TransitionHolderComponent)
18
18
  export default TransitionHolder
@@ -9,5 +9,5 @@ class WizardSubtitleComponent extends TsxComponent<WizardSubtitleArgs> implement
9
9
  }
10
10
  }
11
11
 
12
- const WizardSubtitle = toNative(WizardSubtitleComponent)
12
+ const WizardSubtitle = toNative(WizardSubtitleComponent)
13
13
  export default WizardSubtitle
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inviton-powerduck",
3
- "version": "0.0.87",
3
+ "version": "0.0.90",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": " vite build && vue-tsc --declaration --emitDeclarationOnly",