@worktile/theia 13.0.0-next.3 → 13.0.2

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 (86) hide show
  1. package/components/color-select/color-select.component.scss +11 -8
  2. package/components/column-resize/column-resize.scss +6 -4
  3. package/components/inline-toolbar/inline-toolbar.component.scss +7 -4
  4. package/components/table-select/table-select.component.scss +7 -5
  5. package/components/toolbar/toolbar.component.d.ts +3 -2
  6. package/components/toolbar/toolbar.component.scss +17 -16
  7. package/components/toolbar-dropdown/toolbar-dropdown.component.scss +18 -27
  8. package/components/toolbar-group/toolbar-group.component.scss +5 -3
  9. package/editor.module.d.ts +58 -58
  10. package/esm2020/components/color-select/color-select.component.mjs +3 -3
  11. package/esm2020/components/column-resize/column-resize-notifier.mjs +3 -3
  12. package/esm2020/components/column-resize/column-resize.directive.mjs +3 -3
  13. package/esm2020/components/column-resize/column-resize.module.mjs +8 -8
  14. package/esm2020/components/column-resize/event-dispatcher.mjs +3 -3
  15. package/esm2020/components/column-resize/overlay-handle.component.mjs +3 -3
  16. package/esm2020/components/column-resize/resizing.store.mjs +3 -3
  17. package/esm2020/components/contextmenu/contextmenu.component.mjs +7 -7
  18. package/esm2020/components/conversion-hint/conversion-hint.component.mjs +3 -3
  19. package/esm2020/components/element/element.component.mjs +3 -3
  20. package/esm2020/components/inline-toolbar/inline-toolbar.component.mjs +3 -3
  21. package/esm2020/components/table-select/table-select.component.mjs +3 -3
  22. package/esm2020/components/template/template.component.mjs +3 -3
  23. package/esm2020/components/text/text.component.mjs +3 -3
  24. package/esm2020/components/toolbar/toolbar.component.mjs +32 -17
  25. package/esm2020/components/toolbar-dropdown/toolbar-dropdown.component.mjs +7 -7
  26. package/esm2020/components/toolbar-group/toolbar-group.component.mjs +6 -6
  27. package/esm2020/components/toolbar-item/toolbar-item.component.mjs +14 -12
  28. package/esm2020/core/toolbar-item/base-toolbar-item.mjs +8 -8
  29. package/esm2020/editor.component.mjs +3 -3
  30. package/esm2020/editor.module.mjs +16 -13
  31. package/esm2020/interfaces/view-base.mjs +3 -3
  32. package/esm2020/pipes.mjs +6 -6
  33. package/esm2020/plugins/blockquote/blockquote.component.mjs +3 -3
  34. package/esm2020/plugins/code/code.component.mjs +9 -9
  35. package/esm2020/plugins/color/color.editor.mjs +2 -2
  36. package/esm2020/plugins/color/toolbar-item.component.mjs +24 -14
  37. package/esm2020/plugins/hr/hr.component.mjs +3 -3
  38. package/esm2020/plugins/image/image.component.mjs +28 -29
  39. package/esm2020/plugins/inline-code/inline-code.component.mjs +3 -3
  40. package/esm2020/plugins/link/edit/link-edit.component.mjs +3 -3
  41. package/esm2020/plugins/link/hover/link-hover.component.mjs +3 -3
  42. package/esm2020/plugins/link/link.component.mjs +6 -6
  43. package/esm2020/plugins/list/components/bulleted-list.component.mjs +3 -3
  44. package/esm2020/plugins/list/components/list-item.component.mjs +3 -3
  45. package/esm2020/plugins/list/components/numbered-list.component.mjs +3 -3
  46. package/esm2020/plugins/quick-insert/components/quick-insert.component.mjs +3 -3
  47. package/esm2020/plugins/quick-insert/components/quick-toolbar/quick-toolbar.component.mjs +6 -6
  48. package/esm2020/plugins/table/components/insert-mark/insert-mark.component.mjs +3 -3
  49. package/esm2020/plugins/table/components/row/row.component.mjs +3 -3
  50. package/esm2020/plugins/table/components/table.component.mjs +29 -54
  51. package/esm2020/plugins/table/components/td/td.component.mjs +5 -10
  52. package/esm2020/plugins/table/components/toolbar/table-options.component.mjs +18 -18
  53. package/esm2020/plugins/table/components/toolbar/table-toolbar.component.mjs +11 -9
  54. package/esm2020/plugins/table/table.service.mjs +3 -3
  55. package/esm2020/plugins/table/table.store.mjs +3 -3
  56. package/esm2020/plugins/table/toolbar-item.component.mjs +14 -12
  57. package/esm2020/plugins/todo-item/todo-item.component.mjs +3 -3
  58. package/esm2020/plugins/vertical-align/toolbar-item.component.mjs +9 -9
  59. package/esm2020/services/color-select.service.mjs +3 -3
  60. package/esm2020/services/context.service.mjs +3 -3
  61. package/esm2020/services/table-contextmenu.service.mjs +3 -3
  62. package/esm2020/services/toolbar.service.mjs +3 -3
  63. package/fesm2015/worktile-theia.mjs +320 -346
  64. package/fesm2015/worktile-theia.mjs.map +1 -1
  65. package/fesm2020/worktile-theia.mjs +319 -346
  66. package/fesm2020/worktile-theia.mjs.map +1 -1
  67. package/package.json +1 -1
  68. package/plugins/code/code.component.scss +16 -23
  69. package/plugins/color/toolbar-item.component.d.ts +2 -0
  70. package/plugins/font-size/toolbar-item.component.scss +1 -4
  71. package/plugins/image/image.component.d.ts +4 -1
  72. package/plugins/image/image.component.scss +15 -17
  73. package/plugins/inline-code/inline-code.component.scss +4 -2
  74. package/plugins/link/link.component.scss +5 -3
  75. package/plugins/quick-insert/components/quick-insert.component.scss +4 -2
  76. package/plugins/quick-insert/components/quick-toolbar/quick-toolbar.component.scss +4 -2
  77. package/plugins/table/components/table.component.d.ts +2 -7
  78. package/plugins/table/components/table.component.scss +34 -42
  79. package/plugins/table/components/td/td.component.d.ts +0 -1
  80. package/styles/editor.scss +15 -92
  81. package/styles/index.scss +29 -21
  82. package/styles/mixins.scss +76 -0
  83. package/styles/typo.scss +33 -60
  84. package/styles/variables.scss +21 -0
  85. package/components/nav-split-line/nav-split-line.component.d.ts +0 -13
  86. package/esm2020/components/nav-split-line/nav-split-line.component.mjs +0 -37
@@ -1,6 +1,9 @@
1
+
2
+ @use 'ngx-tethys/styles/variables.scss';
3
+
1
4
  .color-container {
2
5
  padding: 15px;
3
- background: #ffffff;
6
+ background: variables.$white;
4
7
  border-radius: 4px;
5
8
  line-height: 0;
6
9
  .colors {
@@ -14,17 +17,17 @@
14
17
  top: 50%;
15
18
  left: 50%;
16
19
  transform: translate(-50%, -50%);
17
- color: $white;
20
+ color: variables.$white;
18
21
  }
19
22
 
20
23
  .color-item {
21
24
  thy-icon {
22
- color: $white;
25
+ color: variables.$white;
23
26
  }
24
27
  &.white span {
25
- border: 1px solid $gray-100;
28
+ border: 1px solid variables.$gray-100;
26
29
  thy-icon {
27
- color: $gray-500;
30
+ color: variables.$gray-500;
28
31
  }
29
32
  }
30
33
  }
@@ -65,8 +68,8 @@
65
68
  }
66
69
 
67
70
  &:hover {
68
- border: 1px solid #dddddd;
69
- box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
71
+ border: 1px solid variables.$gray-300;
72
+ box-shadow: 0 2px 4px 0 rgba(variables.$black, 0.08);
70
73
  }
71
74
  }
72
75
 
@@ -82,7 +85,7 @@
82
85
  height: 20px;
83
86
  border-radius: 2px;
84
87
  position: relative;
85
- border: 1px solid #cacaca;
88
+ border: 1px solid variables.$gray-400;
86
89
  margin-right: 5px;
87
90
  }
88
91
 
@@ -1,10 +1,12 @@
1
+ @use 'ngx-tethys/styles/variables.scss';
2
+
1
3
  $swift-ease-in-duration: 300ms !default;
2
4
  $swift-ease-in-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2) !default;
3
5
  $swift-ease-in: all $swift-ease-in-duration $swift-ease-in-timing-function !default;
4
6
 
5
7
  // $non-resizable-hover-divider: mat-color($foreground, divider);
6
- $resizable-hover-divider: $primary;
7
- $resizable-active-divider: $primary;
8
+ $resizable-hover-divider: variables.$primary;
9
+ $resizable-active-divider: variables.$primary;
8
10
 
9
11
  @mixin no-select {
10
12
  -webkit-touch-callout: none;
@@ -31,7 +33,7 @@ $resizable-active-divider: $primary;
31
33
  position: absolute;
32
34
  width: 2px;
33
35
  height: 100%;
34
- background-color: $primary;
36
+ background-color: variables.$primary;
35
37
  pointer-events: none;
36
38
  }
37
39
  }
@@ -56,7 +58,7 @@ $resizable-active-divider: $primary;
56
58
  position: absolute;
57
59
  width: 100%;
58
60
  height: 2px;
59
- background-color: $primary;
61
+ background-color: variables.$primary;
60
62
  pointer-events: none;
61
63
  }
62
64
  }
@@ -1,12 +1,15 @@
1
- .the-editable-container .the-inline-toolbar {
1
+ @use 'ngx-tethys/styles/variables.scss';
2
+ @use '../../styles/mixins.scss' as mixins;
3
+
4
+ .the-inline-toolbar {
2
5
  position: fixed;
3
6
  top: -10000px;
4
7
  left: -10000px;
5
8
  width: auto;
6
9
  margin-top: -6px;
7
10
  border-radius: 4px;
8
- background: $white;
9
- box-shadow: $box-shadow;
11
+ background: variables.$white;
12
+ box-shadow: variables.$box-shadow;
10
13
  opacity: 0;
11
14
  z-index: 9;
12
15
  transition: opacity 0.75s;
@@ -15,5 +18,5 @@
15
18
  display: none;
16
19
  }
17
20
 
18
- @include thy-icon-nav-disabled();
21
+ @include mixins.the-action-disabled();
19
22
  }
@@ -1,3 +1,5 @@
1
+ @use 'ngx-tethys/styles/variables.scss';
2
+
1
3
  .the-table-selector-pannel {
2
4
  text-align: center;
3
5
 
@@ -18,18 +20,18 @@
18
20
  display: inline-block;
19
21
  font-size: 0;
20
22
  vertical-align: middle;
21
- background: $gray-80;
22
- border: 1px solid $gray-300;
23
+ background: variables.$gray-80;
24
+ border: 1px solid variables.$gray-300;
23
25
  }
24
26
 
25
27
  .active-cell {
26
- border-color: rgba($primary, 0.15);
27
- background: rgba($primary, 0.15)
28
+ border-color: rgba(variables.$primary, 0.15);
29
+ background: rgba(variables.$primary, 0.15)
28
30
  }
29
31
 
30
32
  .selector-text {
31
33
  padding-top: 3px;
32
34
  font-size: 14px;
33
- color: $gray-700;
35
+ color: variables.$gray-700;
34
36
  }
35
37
  }
@@ -16,6 +16,7 @@ export declare class TheToolbarComponent implements OnInit, OnChanges, OnDestroy
16
16
  isMore: boolean;
17
17
  afterTemplate: TemplateRef<any>;
18
18
  toolbarContainer: ViewContainerRef;
19
+ get justifyContent(): ToolbarAlignment;
19
20
  components: Map<string, ComponentRef<any>>;
20
21
  moreGroupMenu: ToolbarItem;
21
22
  resizeObserver: any;
@@ -39,8 +40,8 @@ export declare class TheToolbarComponent implements OnInit, OnChanges, OnDestroy
39
40
  * | | \---------- only when toolbar items overflow --------/ | |
40
41
  * | └───────────────────────────────────────────────────────────────────────────────────────────┘ |
41
42
  * └───────────────────────────────────────────────────────────────────────────────────────────────┘
42
- * split width: 6px
43
- * item width: default item: 35px; dropdown item: 50px
43
+ * split width: 17px
44
+ * item width: default item: 35px; dropdown item: 42px
44
45
  * set aside 50px
45
46
  */
46
47
  private toolbarItemsCompose;
@@ -1,27 +1,27 @@
1
+ @use 'ngx-tethys/styles/variables.scss';
2
+ @use '../../styles/variables.scss' as theVariables;
3
+ @use '../../styles/mixins.scss' as mixins;
4
+
1
5
  .the-toolbar-container {
2
6
  position: relative;
3
7
  z-index: 3;
4
- display: flex;
5
- padding: 5px;
8
+ padding: theVariables.$nav-item-margin;
6
9
  border: none;
7
- border-bottom: 1px solid $gray-100;
8
- background-color: $gray-80;
10
+ border-bottom: 1px solid variables.$gray-100;
11
+ background-color: variables.$gray-80;
9
12
  box-sizing: border-box;
10
13
 
11
- .thy-icon-nav {
12
- flex: 1;
13
- flex-wrap: initial;
14
- }
15
-
16
14
  .head-type-dropdown {
17
15
  width: 70px;
18
- .action-menu-item:not(:first-child) {
16
+
17
+ .dropdown-menu-item:not(:first-child) {
19
18
  padding-top: 0;
20
19
  padding-bottom: 0;
20
+
21
21
  .name {
22
22
  font-weight: bold;
23
23
  line-height: 100%;
24
- color: #333333;
24
+ color: variables.$gray-800;
25
25
  display: block;
26
26
  margin: auto 0;
27
27
  }
@@ -29,14 +29,15 @@
29
29
  }
30
30
 
31
31
  .the-toolbar-item {
32
- padding-right: 5px;
32
+ margin-right: theVariables.$thy-action-margin-right;
33
33
 
34
- @include the-toolbar-disabled();
34
+ @include mixins.the-toolbar-divider-spacing();
35
+ @include mixins.the-toolbar-disabled();
35
36
  }
36
37
 
37
- @include custom-thy-icon-nav();
38
- @include thy-icon-nav-disabled();
39
- @include the-toolbar-active();
38
+ @include mixins.the-custom-action();
39
+ @include mixins.the-action-disabled();
40
+ @include mixins.the-toolbar-active();
40
41
  }
41
42
  .the-toolbar-disabled {
42
43
  pointer-events: none;
@@ -1,27 +1,28 @@
1
+ @use 'ngx-tethys/styles/variables.scss';
2
+ @use '../../styles/variables.scss' as theVariables;
3
+ @use '../../styles/mixins.scss' as mixins;
4
+
1
5
  .the-toolbar-dropdown-container {
2
- display: inline-block;
3
- color: $gray-700;
4
- margin-right: $nav-item-margin;
5
6
  position: relative;
7
+ display: inline-block;
8
+ margin-right: theVariables.$thy-action-margin-right;
6
9
  cursor: pointer;
7
10
 
8
- @include the-toolbar-disabled();
11
+ @include mixins.the-toolbar-disabled();
12
+ @include mixins.the-toolbar-divider-spacing();
9
13
 
10
14
  &.heading-list {
11
- width: 70px;
12
- padding: 0;
15
+ .show-text {
16
+ width: 38px;
17
+ }
13
18
  }
14
-
15
- .text-mode {
16
- width: auto;
19
+ &.font-size {
20
+ .show-text {
21
+ width: 10px;
22
+ }
17
23
  }
18
24
 
19
- .show-text {
20
- display: inline-block;
21
- user-select: none;
22
- line-height: 30px;
23
- height: 30px;
24
- }
25
+
25
26
  .caret-down-icon {
26
27
  margin-left: 3px;
27
28
  }
@@ -49,25 +50,15 @@
49
50
  min-width: 200px;
50
51
  }
51
52
 
52
- .dropdown {
53
- display: flex;
54
- flex-direction: column;
55
- width: 200px;
56
- max-height: 300px;
57
- overflow-y: auto;
58
- background-color: white;
59
- z-index: 100;
60
- }
61
-
62
53
  &.heading-list {
63
- .action-menu-item:not(:first-child) {
54
+ .dropdown-menu-item:not(:first-child) {
64
55
  padding-top: 0;
65
56
  padding-bottom: 0;
66
57
 
67
58
  .name {
68
59
  font-weight: bold;
69
60
  line-height: 100%;
70
- color: #333333;
61
+ color: variables.$gray-800;
71
62
  display: block;
72
63
  margin: auto 0;
73
64
  }
@@ -1,3 +1,5 @@
1
+ @use 'ngx-tethys/styles/variables.scss';
2
+
1
3
  .the-toolbar-group-container {
2
4
  .thy-popover-container {
3
5
  min-width: 50px;
@@ -6,12 +8,12 @@
6
8
  width: auto;
7
9
  max-height: 40px;
8
10
  padding: 5px 10px;
9
- background-color: white;
10
- box-shadow: 0px 2px 8px -1px rgba(0, 0, 0, 0.15);
11
+ background-color: variables.$white;
12
+ box-shadow: 0px 2px 8px -1px rgba(variables.$black, 0.15);
11
13
  border-radius: 4px;
12
14
 
13
15
  .the-toolbar-item:last-child {
14
- padding-right: initial;
16
+ margin-right: initial;
15
17
  }
16
18
  }
17
19
  }
@@ -4,7 +4,6 @@ import { TheImageComponent } from './plugins/image/image.component';
4
4
  import { TheToolbarComponent } from './components/toolbar/toolbar.component';
5
5
  import { TheToolbarDropdownComponent } from './components/toolbar-dropdown/toolbar-dropdown.component';
6
6
  import { TheToolbarItemComponent } from './components/toolbar-item/toolbar-item.component';
7
- import { NavSplitLineComponent } from './components/nav-split-line/nav-split-line.component';
8
7
  import { TheTemplateComponent } from './components/template/template.component';
9
8
  import { TheBlockquoteComponent } from './plugins/blockquote/blockquote.component';
10
9
  import { TheTodoItemComponent } from './plugins/todo-item/todo-item.component';
@@ -36,65 +35,66 @@ import * as i4 from "./components/toolbar-dropdown/toolbar-dropdown.component";
36
35
  import * as i5 from "./components/toolbar-group/toolbar-group.component";
37
36
  import * as i6 from "./components/toolbar-item/toolbar-item.component";
38
37
  import * as i7 from "./components/inline-toolbar/inline-toolbar.component";
39
- import * as i8 from "./components/nav-split-line/nav-split-line.component";
40
- import * as i9 from "./components/text/text.component";
41
- import * as i10 from "./components/element/element.component";
42
- import * as i11 from "./plugins/quick-insert/components/quick-insert.component";
43
- import * as i12 from "./plugins/quick-insert/components/quick-toolbar/quick-toolbar.component";
44
- import * as i13 from "./components/color-select/color-select.component";
45
- import * as i14 from "./plugins/color/toolbar-item.component";
46
- import * as i15 from "./components/contextmenu/contextmenu.component";
47
- import * as i16 from "./plugins/table/components/insert-mark/insert-mark.component";
48
- import * as i17 from "./components/table-select/table-select.component";
49
- import * as i18 from "./plugins/table/toolbar-item.component";
50
- import * as i19 from "./components/conversion-hint/conversion-hint.component";
51
- import * as i20 from "./plugins/vertical-align/toolbar-item.component";
52
- import * as i21 from "./plugins/table/components/toolbar/table-options.component";
53
- import * as i22 from "./plugins/image/image.component";
54
- import * as i23 from "./components/template/template.component";
55
- import * as i24 from "./plugins/hr/hr.component";
56
- import * as i25 from "./plugins/blockquote/blockquote.component";
57
- import * as i26 from "./plugins/todo-item/todo-item.component";
58
- import * as i27 from "./plugins/list/components/list-item.component";
59
- import * as i28 from "./plugins/list/components/bulleted-list.component";
60
- import * as i29 from "./plugins/list/components/numbered-list.component";
61
- import * as i30 from "./plugins/code/code.component";
62
- import * as i31 from "./plugins/link/link.component";
63
- import * as i32 from "./plugins/link/edit/link-edit.component";
64
- import * as i33 from "./plugins/link/hover/link-hover.component";
65
- import * as i34 from "./plugins/table/components/toolbar/table-toolbar.component";
66
- import * as i35 from "./plugins/table/components/table.component";
67
- import * as i36 from "./plugins/table/components/row/row.component";
68
- import * as i37 from "./plugins/table/components/td/td.component";
69
- import * as i38 from "./plugins/inline-code/inline-code.component";
70
- import * as i39 from "@angular/common";
71
- import * as i40 from "slate-angular";
72
- import * as i41 from "@angular/forms";
73
- import * as i42 from "ngx-tethys/icon";
74
- import * as i43 from "ngx-tethys/avatar";
75
- import * as i44 from "ngx-tethys/nav";
76
- import * as i45 from "ngx-tethys/form";
77
- import * as i46 from "ngx-tethys/shared";
78
- import * as i47 from "ngx-tethys/list";
79
- import * as i48 from "ngx-tethys/tooltip";
80
- import * as i49 from "ngx-tethys/progress";
81
- import * as i50 from "ngx-tethys/autocomplete";
82
- import * as i51 from "ngx-tethys/action-menu";
83
- import * as i52 from "ngx-tethys/input";
84
- import * as i53 from "ngx-tethys/select";
85
- import * as i54 from "ngx-tethys/button";
86
- import * as i55 from "ngx-tethys/notify";
87
- import * as i56 from "ngx-tethys/alert";
88
- import * as i57 from "ngx-tethys/resizable";
89
- import * as i58 from "ngx-tethys/switch";
90
- import * as i59 from "ngx-tethys/image";
91
- import * as i60 from "ngx-tethys/dialog";
92
- import * as i61 from "ng-codemirror";
93
- import * as i62 from "./components/column-resize/column-resize.module";
94
- export declare const COMPONENTS: (typeof TheToolbarGroupComponent | typeof TheColorSelectComponent | typeof TheTableOptionsComponent | typeof TheContextMenuComponent | typeof TheTextComponent | typeof TheDefaultElementComponent | typeof TheToolbarItemComponent | typeof NavSplitLineComponent | typeof TheToolbarDropdownComponent | typeof TheToolbarComponent | typeof TheQuickToolbarComponent | typeof TheQuickInsertComponent | typeof TheConversionHintComponent | typeof TheTableSelectComponent | typeof TheTableToolbarItemComponent | typeof TheVerticalToolbarItemComponent | typeof TheColorToolbarItemComponent | typeof TheInsertMarkComponent | typeof TheInlineToolbarComponent)[];
38
+ import * as i8 from "./components/text/text.component";
39
+ import * as i9 from "./components/element/element.component";
40
+ import * as i10 from "./plugins/quick-insert/components/quick-insert.component";
41
+ import * as i11 from "./plugins/quick-insert/components/quick-toolbar/quick-toolbar.component";
42
+ import * as i12 from "./components/color-select/color-select.component";
43
+ import * as i13 from "./plugins/color/toolbar-item.component";
44
+ import * as i14 from "./components/contextmenu/contextmenu.component";
45
+ import * as i15 from "./plugins/table/components/insert-mark/insert-mark.component";
46
+ import * as i16 from "./components/table-select/table-select.component";
47
+ import * as i17 from "./plugins/table/toolbar-item.component";
48
+ import * as i18 from "./components/conversion-hint/conversion-hint.component";
49
+ import * as i19 from "./plugins/vertical-align/toolbar-item.component";
50
+ import * as i20 from "./plugins/table/components/toolbar/table-options.component";
51
+ import * as i21 from "./plugins/image/image.component";
52
+ import * as i22 from "./components/template/template.component";
53
+ import * as i23 from "./plugins/hr/hr.component";
54
+ import * as i24 from "./plugins/blockquote/blockquote.component";
55
+ import * as i25 from "./plugins/todo-item/todo-item.component";
56
+ import * as i26 from "./plugins/list/components/list-item.component";
57
+ import * as i27 from "./plugins/list/components/bulleted-list.component";
58
+ import * as i28 from "./plugins/list/components/numbered-list.component";
59
+ import * as i29 from "./plugins/code/code.component";
60
+ import * as i30 from "./plugins/link/link.component";
61
+ import * as i31 from "./plugins/link/edit/link-edit.component";
62
+ import * as i32 from "./plugins/link/hover/link-hover.component";
63
+ import * as i33 from "./plugins/table/components/toolbar/table-toolbar.component";
64
+ import * as i34 from "./plugins/table/components/table.component";
65
+ import * as i35 from "./plugins/table/components/row/row.component";
66
+ import * as i36 from "./plugins/table/components/td/td.component";
67
+ import * as i37 from "./plugins/inline-code/inline-code.component";
68
+ import * as i38 from "@angular/common";
69
+ import * as i39 from "slate-angular";
70
+ import * as i40 from "@angular/forms";
71
+ import * as i41 from "ngx-tethys/icon";
72
+ import * as i42 from "ngx-tethys/avatar";
73
+ import * as i43 from "ngx-tethys/nav";
74
+ import * as i44 from "ngx-tethys/form";
75
+ import * as i45 from "ngx-tethys/shared";
76
+ import * as i46 from "ngx-tethys/list";
77
+ import * as i47 from "ngx-tethys/tooltip";
78
+ import * as i48 from "ngx-tethys/progress";
79
+ import * as i49 from "ngx-tethys/autocomplete";
80
+ import * as i50 from "ngx-tethys/input";
81
+ import * as i51 from "ngx-tethys/select";
82
+ import * as i52 from "ngx-tethys/button";
83
+ import * as i53 from "ngx-tethys/notify";
84
+ import * as i54 from "ngx-tethys/alert";
85
+ import * as i55 from "ngx-tethys/resizable";
86
+ import * as i56 from "ngx-tethys/switch";
87
+ import * as i57 from "ngx-tethys/image";
88
+ import * as i58 from "ngx-tethys/dialog";
89
+ import * as i59 from "ngx-tethys/action";
90
+ import * as i60 from "ngx-tethys/divider";
91
+ import * as i61 from "ngx-tethys/dropdown";
92
+ import * as i62 from "ng-codemirror";
93
+ import * as i63 from "./components/column-resize/column-resize.module";
94
+ export declare const COMPONENTS: (typeof TheToolbarGroupComponent | typeof TheColorSelectComponent | typeof TheTableOptionsComponent | typeof TheContextMenuComponent | typeof TheTextComponent | typeof TheDefaultElementComponent | typeof TheToolbarItemComponent | typeof TheToolbarDropdownComponent | typeof TheToolbarComponent | typeof TheQuickToolbarComponent | typeof TheQuickInsertComponent | typeof TheConversionHintComponent | typeof TheTableSelectComponent | typeof TheTableToolbarItemComponent | typeof TheVerticalToolbarItemComponent | typeof TheColorToolbarItemComponent | typeof TheInsertMarkComponent | typeof TheInlineToolbarComponent)[];
95
95
  export declare const PLUGIN_COMPONENTS: (typeof TheTableToolbarComponent | typeof TheTableComponent | typeof TheTemplateComponent | typeof TheImageComponent | typeof TheTodoItemComponent | typeof TheBlockquoteComponent | typeof TheCodeComponent | typeof TheLinkHoverComponent | typeof TheLinkEditComponent | typeof TheLinkComponent | typeof TheTdComponent)[];
96
96
  export declare class TheEditorModule {
97
97
  static ɵfac: i0.ɵɵFactoryDeclaration<TheEditorModule, never>;
98
- static ɵmod: i0.ɵɵNgModuleDeclaration<TheEditorModule, [typeof i1.TheEditorComponent, typeof i2.ElementStylePipe, typeof i2.ElementClassPipe, typeof i3.TheToolbarComponent, typeof i4.TheToolbarDropdownComponent, typeof i5.TheToolbarGroupComponent, typeof i6.TheToolbarItemComponent, typeof i7.TheInlineToolbarComponent, typeof i8.NavSplitLineComponent, typeof i9.TheTextComponent, typeof i10.TheDefaultElementComponent, typeof i11.TheQuickInsertComponent, typeof i12.TheQuickToolbarComponent, typeof i13.TheColorSelectComponent, typeof i14.TheColorToolbarItemComponent, typeof i15.TheContextMenuComponent, typeof i16.TheInsertMarkComponent, typeof i17.TheTableSelectComponent, typeof i18.TheTableToolbarItemComponent, typeof i19.TheConversionHintComponent, typeof i20.TheVerticalToolbarItemComponent, typeof i21.TheTableOptionsComponent, typeof i22.TheImageComponent, typeof i23.TheTemplateComponent, typeof i24.TheHrComponent, typeof i25.TheBlockquoteComponent, typeof i26.TheTodoItemComponent, typeof i27.TheListItemComponent, typeof i28.TheBulletedListComponent, typeof i29.TheNumberedListComponent, typeof i30.TheCodeComponent, typeof i31.TheLinkComponent, typeof i32.TheLinkEditComponent, typeof i33.TheLinkHoverComponent, typeof i34.TheTableToolbarComponent, typeof i35.TheTableComponent, typeof i36.TheTableRowComponent, typeof i37.TheTdComponent, typeof i38.TheInlineCodeComponent], [typeof i39.CommonModule, typeof i40.SlateModule, typeof i41.FormsModule, typeof i42.ThyIconModule, typeof i43.ThyAvatarModule, typeof i44.ThyNavModule, typeof i45.ThyFormModule, typeof i46.ThySharedModule, typeof i47.ThyListModule, typeof i48.ThyTooltipModule, typeof i49.ThyProgressModule, typeof i50.ThyAutocompleteModule, typeof i51.ThyActionMenuModule, typeof i52.ThyInputModule, typeof i53.ThySelectModule, typeof i54.ThyButtonModule, typeof i55.ThyNotifyModule, typeof i56.ThyAlertModule, typeof i57.ThyResizableModule, typeof i58.ThySwitchModule, typeof i59.ThyImageModule, typeof i60.ThyDialogModule, typeof i61.CodemirrorModule, typeof i62.TheColumnSizeModule], [typeof i1.TheEditorComponent, typeof i3.TheToolbarComponent, typeof i4.TheToolbarDropdownComponent, typeof i6.TheToolbarItemComponent, typeof i10.TheDefaultElementComponent]>;
98
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TheEditorModule, [typeof i1.TheEditorComponent, typeof i2.ElementStylePipe, typeof i2.ElementClassPipe, typeof i3.TheToolbarComponent, typeof i4.TheToolbarDropdownComponent, typeof i5.TheToolbarGroupComponent, typeof i6.TheToolbarItemComponent, typeof i7.TheInlineToolbarComponent, typeof i8.TheTextComponent, typeof i9.TheDefaultElementComponent, typeof i10.TheQuickInsertComponent, typeof i11.TheQuickToolbarComponent, typeof i12.TheColorSelectComponent, typeof i13.TheColorToolbarItemComponent, typeof i14.TheContextMenuComponent, typeof i15.TheInsertMarkComponent, typeof i16.TheTableSelectComponent, typeof i17.TheTableToolbarItemComponent, typeof i18.TheConversionHintComponent, typeof i19.TheVerticalToolbarItemComponent, typeof i20.TheTableOptionsComponent, typeof i21.TheImageComponent, typeof i22.TheTemplateComponent, typeof i23.TheHrComponent, typeof i24.TheBlockquoteComponent, typeof i25.TheTodoItemComponent, typeof i26.TheListItemComponent, typeof i27.TheBulletedListComponent, typeof i28.TheNumberedListComponent, typeof i29.TheCodeComponent, typeof i30.TheLinkComponent, typeof i31.TheLinkEditComponent, typeof i32.TheLinkHoverComponent, typeof i33.TheTableToolbarComponent, typeof i34.TheTableComponent, typeof i35.TheTableRowComponent, typeof i36.TheTdComponent, typeof i37.TheInlineCodeComponent], [typeof i38.CommonModule, typeof i39.SlateModule, typeof i40.FormsModule, typeof i41.ThyIconModule, typeof i42.ThyAvatarModule, typeof i43.ThyNavModule, typeof i44.ThyFormModule, typeof i45.ThySharedModule, typeof i46.ThyListModule, typeof i47.ThyTooltipModule, typeof i48.ThyProgressModule, typeof i49.ThyAutocompleteModule, typeof i50.ThyInputModule, typeof i51.ThySelectModule, typeof i52.ThyButtonModule, typeof i53.ThyNotifyModule, typeof i54.ThyAlertModule, typeof i55.ThyResizableModule, typeof i56.ThySwitchModule, typeof i57.ThyImageModule, typeof i58.ThyDialogModule, typeof i59.ThyActionModule, typeof i60.ThyDividerModule, typeof i61.ThyDropdownModule, typeof i62.CodemirrorModule, typeof i63.TheColumnSizeModule], [typeof i1.TheEditorComponent, typeof i3.TheToolbarComponent, typeof i4.TheToolbarDropdownComponent, typeof i6.TheToolbarItemComponent, typeof i9.TheDefaultElementComponent]>;
99
99
  static ɵinj: i0.ɵɵInjectorDeclaration<TheEditorModule>;
100
100
  }
@@ -81,9 +81,9 @@ export class TheColorSelectComponent {
81
81
  this.popoverRef.close();
82
82
  }
83
83
  }
84
- TheColorSelectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.9", ngImport: i0, type: TheColorSelectComponent, deps: [{ token: i1.ThyPopoverRef }], target: i0.ɵɵFactoryTarget.Component });
85
- TheColorSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.9", type: TheColorSelectComponent, selector: "the-color-select", inputs: { selectedColor: "selectedColor", selectAction: "selectAction", showCustom: "showCustom", colors: "colors", option: "option" }, host: { listeners: { "document: mousedown": "handleDocumentMouseDown($event)", "mousedown": "handleMouseDown($event)", "keydown": "handleKeydown($event)" } }, ngImport: i0, template: "<div class=\"color-container\">\n <div class=\"colors\">\n <div *ngFor=\"let row of selectColors; let rowIndex = index\">\n <span\n class=\"color-item\"\n *ngFor=\"let _color of row.rowValue; let i = index\"\n [ngClass]=\"_color.classMaps\"\n (mousedown)=\"_selectColor($event, _color.value)\"\n >\n <span [ngStyle]=\"{ background: _color.value }\">\n <thy-icon thyIconName=\"check\" [ngStyle]=\"{ color: row.tickColor }\"></thy-icon>\n </span>\n </span>\n </div>\n </div>\n <div *ngIf=\"option.showCustom\" class=\"select-color\">\n <span class=\"color\" [ngStyle]=\"{ background: selectedColor }\"></span>\n #\n <input\n thyInput\n maxlength=\"6\"\n (keydown.enter)=\"customInputColorEnter($event)\"\n onkeyup=\"value=value.replace(/[^0-9A-Fa-f]/g,'')\"\n class=\"value\"\n [(ngModel)]=\"customColor\"\n (ngModelChange)=\"colorChange(false)\"\n />\n </div>\n</div>\n", components: [{ type: i2.ThyIconComponent, selector: "thy-icon", inputs: ["thyIconType", "thyTwotoneColor", "thyIconName", "thyIconRotate", "thyIconSet", "thyIconLegging", "thyIconLinearGradient"] }], directives: [{ type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i3.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i5.ThyInputDirective, selector: "[thyInput]", inputs: ["thySize", "thyAutocomplete"] }, { type: i4.MaxLengthValidator, selector: "[maxlength][formControlName],[maxlength][formControl],[maxlength][ngModel]", inputs: ["maxlength"] }, { type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
86
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.9", ngImport: i0, type: TheColorSelectComponent, decorators: [{
84
+ TheColorSelectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TheColorSelectComponent, deps: [{ token: i1.ThyPopoverRef }], target: i0.ɵɵFactoryTarget.Component });
85
+ TheColorSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.8", type: TheColorSelectComponent, selector: "the-color-select", inputs: { selectedColor: "selectedColor", selectAction: "selectAction", showCustom: "showCustom", colors: "colors", option: "option" }, host: { listeners: { "document: mousedown": "handleDocumentMouseDown($event)", "mousedown": "handleMouseDown($event)", "keydown": "handleKeydown($event)" } }, ngImport: i0, template: "<div class=\"color-container\">\n <div class=\"colors\">\n <div *ngFor=\"let row of selectColors; let rowIndex = index\">\n <span\n class=\"color-item\"\n *ngFor=\"let _color of row.rowValue; let i = index\"\n [ngClass]=\"_color.classMaps\"\n (mousedown)=\"_selectColor($event, _color.value)\"\n >\n <span [ngStyle]=\"{ background: _color.value }\">\n <thy-icon thyIconName=\"check\" [ngStyle]=\"{ color: row.tickColor }\"></thy-icon>\n </span>\n </span>\n </div>\n </div>\n <div *ngIf=\"option.showCustom\" class=\"select-color\">\n <span class=\"color\" [ngStyle]=\"{ background: selectedColor }\"></span>\n #\n <input\n thyInput\n maxlength=\"6\"\n (keydown.enter)=\"customInputColorEnter($event)\"\n onkeyup=\"value=value.replace(/[^0-9A-Fa-f]/g,'')\"\n class=\"value\"\n [(ngModel)]=\"customColor\"\n (ngModelChange)=\"colorChange(false)\"\n />\n </div>\n</div>\n", components: [{ type: i2.ThyIconComponent, selector: "thy-icon, [thy-icon]", inputs: ["thyIconType", "thyTwotoneColor", "thyIconName", "thyIconRotate", "thyIconSet", "thyIconLegging", "thyIconLinearGradient"] }], directives: [{ type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i3.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i5.ThyInputDirective, selector: "[thyInput]", inputs: ["thySize", "thyAutocomplete"] }, { type: i4.MaxLengthValidator, selector: "[maxlength][formControlName],[maxlength][formControl],[maxlength][ngModel]", inputs: ["maxlength"] }, { type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
86
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TheColorSelectComponent, decorators: [{
87
87
  type: Component,
88
88
  args: [{ selector: 'the-color-select', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"color-container\">\n <div class=\"colors\">\n <div *ngFor=\"let row of selectColors; let rowIndex = index\">\n <span\n class=\"color-item\"\n *ngFor=\"let _color of row.rowValue; let i = index\"\n [ngClass]=\"_color.classMaps\"\n (mousedown)=\"_selectColor($event, _color.value)\"\n >\n <span [ngStyle]=\"{ background: _color.value }\">\n <thy-icon thyIconName=\"check\" [ngStyle]=\"{ color: row.tickColor }\"></thy-icon>\n </span>\n </span>\n </div>\n </div>\n <div *ngIf=\"option.showCustom\" class=\"select-color\">\n <span class=\"color\" [ngStyle]=\"{ background: selectedColor }\"></span>\n #\n <input\n thyInput\n maxlength=\"6\"\n (keydown.enter)=\"customInputColorEnter($event)\"\n onkeyup=\"value=value.replace(/[^0-9A-Fa-f]/g,'')\"\n class=\"value\"\n [(ngModel)]=\"customColor\"\n (ngModelChange)=\"colorChange(false)\"\n />\n </div>\n</div>\n" }]
89
89
  }], ctorParameters: function () { return [{ type: i1.ThyPopoverRef }]; }, propDecorators: { selectedColor: [{
@@ -23,9 +23,9 @@ export class ColumnResizeNotifierSource {
23
23
  this.triggerResize = new Subject();
24
24
  }
25
25
  }
26
- ColumnResizeNotifierSource.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.9", ngImport: i0, type: ColumnResizeNotifierSource, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
27
- ColumnResizeNotifierSource.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.9", ngImport: i0, type: ColumnResizeNotifierSource });
28
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.9", ngImport: i0, type: ColumnResizeNotifierSource, decorators: [{
26
+ ColumnResizeNotifierSource.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ColumnResizeNotifierSource, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
27
+ ColumnResizeNotifierSource.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ColumnResizeNotifierSource });
28
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ColumnResizeNotifierSource, decorators: [{
29
29
  type: Injectable
30
30
  }] });
31
31
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sdW1uLXJlc2l6ZS1ub3RpZmllci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL3NyYy9jb21wb25lbnRzL2NvbHVtbi1yZXNpemUvY29sdW1uLXJlc2l6ZS1ub3RpZmllci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7O0dBTUc7QUFFSCxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzNDLE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxNQUFNLENBQUM7O0FBd0IvQjs7O0dBR0c7QUFFSCxNQUFNLE9BQU8sMEJBQTBCO0lBRHZDO1FBRUksb0RBQW9EO1FBQzNDLG1CQUFjLEdBQUcsSUFBSSxPQUFPLEVBQW9CLENBQUM7UUFFMUQsc0NBQXNDO1FBQzdCLG9CQUFlLEdBQUcsSUFBSSxPQUFPLEVBQWMsQ0FBQztRQUU1QyxrQkFBYSxHQUFHLElBQUksT0FBTyxFQUFjLENBQUM7UUFFbkQsZ0NBQWdDO1FBQ3ZCLGtCQUFhLEdBQUcsSUFBSSxPQUFPLEVBQW9CLENBQUM7S0FDNUQ7O3VIQVhZLDBCQUEwQjsySEFBMUIsMEJBQTBCOzJGQUExQiwwQkFBMEI7a0JBRHRDLFVBQVUiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEBsaWNlbnNlXG4gKiBDb3B5cmlnaHQgR29vZ2xlIExMQyBBbGwgUmlnaHRzIFJlc2VydmVkLlxuICpcbiAqIFVzZSBvZiB0aGlzIHNvdXJjZSBjb2RlIGlzIGdvdmVybmVkIGJ5IGFuIE1JVC1zdHlsZSBsaWNlbnNlIHRoYXQgY2FuIGJlXG4gKiBmb3VuZCBpbiB0aGUgTElDRU5TRSBmaWxlIGF0IGh0dHBzOi8vYW5ndWxhci5pby9saWNlbnNlXG4gKi9cblxuaW1wb3J0IHsgSW5qZWN0YWJsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgU3ViamVjdCB9IGZyb20gJ3J4anMnO1xuXG4vKiogSW5kaWNhdGVzIHRoZSB3aWR0aCBvZiBhIGNvbHVtbi4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgQ29sdW1uU2l6ZSB7XG4gICAgLyoqIFRoZSBJRC9uYW1lIG9mIHRoZSBjb2x1bW4sIGFzIGRlZmluZWQgaW4gQ2RrQ29sdW1uRGVmLiAqL1xuICAgIHJlYWRvbmx5IHRhYmxlQ2VsbDogSFRNTEVsZW1lbnQ7XG5cbiAgICAvKiogVGhlIHdpZHRoIC8gaGVpZ2h0IGluIHBpeGVscyBvZiB0aGUgY29sdW1uIC8gcm93LiAqL1xuICAgIHJlYWRvbmx5IGRlbHRhU2l6ZT86IG51bWJlcjtcblxuICAgIC8qKiBUaGUgd2lkdGggLyBoZWlnaHQgaW4gcGl4ZWxzIG9mIHRoZSBjb2x1bW4gLyByb3cgcHJpb3IgdG8gdGhpcyB1cGRhdGUsIGlmIGtub3duLiAqL1xuICAgIHJlYWRvbmx5IHByZXZpb3VzU2l6ZT86IG51bWJlcjtcbn1cblxuLyoqIEludGVyZmFjZSBkZXNjcmliaW5nIGNvbHVtbiBzaXplIGNoYW5nZXMuICovXG5leHBvcnQgaW50ZXJmYWNlIENvbHVtblNpemVBY3Rpb24gZXh0ZW5kcyBDb2x1bW5TaXplIHtcbiAgICAvKipcbiAgICAgKiBXaGV0aGVyIHRoZSByZXNpemUgYWN0aW9uIHNob3VsZCBiZSBhcHBsaWVkIGluc3RhbnRhbmVvdXNseS4gRmFsc2UgZm9yIGV2ZW50cyB0cmlnZ2VyZWQgZHVyaW5nXG4gICAgICogYSBVSS10cmlnZ2VyZWQgcmVzaXplIChzdWNoIGFzIHdpdGggdGhlIG1vdXNlKSB1bnRpbCB0aGUgbW91c2UgYnV0dG9uIGlzIHJlbGVhc2VkLiBUcnVlXG4gICAgICogZm9yIGFsbCBwcm9ncmFtYXRpY2FsbHkgdHJpZ2dlcmVkIHJlc2l6ZXMuXG4gICAgICovXG4gICAgcmVhZG9ubHkgY29tcGxldGVJbW1lZGlhdGVseT86IGJvb2xlYW47XG59XG5cbi8qKlxuICogT3JpZ2luYXRpbmcgc291cmNlIG9mIGNvbHVtbiByZXNpemUgZXZlbnRzIHdpdGhpbiBhIHRhYmxlLlxuICogQGRvY3MtcHJpdmF0ZVxuICovXG5ASW5qZWN0YWJsZSgpXG5leHBvcnQgY2xhc3MgQ29sdW1uUmVzaXplTm90aWZpZXJTb3VyY2Uge1xuICAgIC8qKiBFbWl0cyB3aGVuIGFuIGluLXByb2dyZXNzIHJlc2l6ZSBpcyBjYW5jZWxlZC4gKi9cbiAgICByZWFkb25seSByZXNpemVDYW5jZWxlZCA9IG5ldyBTdWJqZWN0PENvbHVtblNpemVBY3Rpb24+KCk7XG5cbiAgICAvKiogRW1pdHMgd2hlbiBhIHJlc2l6ZSBpcyBhcHBsaWVkLiAqL1xuICAgIHJlYWRvbmx5IHJlc2l6ZUNvbXBsZXRlZCA9IG5ldyBTdWJqZWN0PENvbHVtblNpemU+KCk7XG5cbiAgICByZWFkb25seSByZXNpemVTdGFydGVkID0gbmV3IFN1YmplY3Q8Q29sdW1uU2l6ZT4oKTtcblxuICAgIC8qKiBUcmlnZ2VycyBhIHJlc2l6ZSBhY3Rpb24uICovXG4gICAgcmVhZG9ubHkgdHJpZ2dlclJlc2l6ZSA9IG5ldyBTdWJqZWN0PENvbHVtblNpemVBY3Rpb24+KCk7XG59XG4iXX0=
@@ -85,9 +85,9 @@ export class TheColumnResizeDirective {
85
85
  this.destroyed.complete();
86
86
  }
87
87
  }
88
- TheColumnResizeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.9", ngImport: i0, type: TheColumnResizeDirective, deps: [{ token: i0.ElementRef }, { token: i0.ViewContainerRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i1.TableCellEventDispatcher }, { token: i2.ColumnResizeNotifierSource }, { token: TheTableToken }], target: i0.ɵɵFactoryTarget.Directive });
89
- TheColumnResizeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.9", type: TheColumnResizeDirective, selector: "div[theColumnResize]", ngImport: i0 });
90
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.9", ngImport: i0, type: TheColumnResizeDirective, decorators: [{
88
+ TheColumnResizeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TheColumnResizeDirective, deps: [{ token: i0.ElementRef }, { token: i0.ViewContainerRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i1.TableCellEventDispatcher }, { token: i2.ColumnResizeNotifierSource }, { token: TheTableToken }], target: i0.ɵɵFactoryTarget.Directive });
89
+ TheColumnResizeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: TheColumnResizeDirective, selector: "div[theColumnResize]", ngImport: i0 });
90
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TheColumnResizeDirective, decorators: [{
91
91
  type: Directive,
92
92
  args: [{
93
93
  selector: 'div[theColumnResize]'
@@ -7,10 +7,10 @@ const ENTRY_COMMON_COMPONENTS = [TheColumnResizeOverlayHandleComponent];
7
7
  const DIRECTIVES = [TheColumnResizeDirective];
8
8
  export class TheColumnResizeCommonModule {
9
9
  }
10
- TheColumnResizeCommonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.9", ngImport: i0, type: TheColumnResizeCommonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
11
- TheColumnResizeCommonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.9", ngImport: i0, type: TheColumnResizeCommonModule, declarations: [TheColumnResizeOverlayHandleComponent], exports: [TheColumnResizeOverlayHandleComponent] });
12
- TheColumnResizeCommonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.9", ngImport: i0, type: TheColumnResizeCommonModule });
13
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.9", ngImport: i0, type: TheColumnResizeCommonModule, decorators: [{
10
+ TheColumnResizeCommonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TheColumnResizeCommonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
11
+ TheColumnResizeCommonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TheColumnResizeCommonModule, declarations: [TheColumnResizeOverlayHandleComponent], exports: [TheColumnResizeOverlayHandleComponent] });
12
+ TheColumnResizeCommonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TheColumnResizeCommonModule });
13
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TheColumnResizeCommonModule, decorators: [{
14
14
  type: NgModule,
15
15
  args: [{
16
16
  declarations: ENTRY_COMMON_COMPONENTS,
@@ -19,10 +19,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.9", ngImpor
19
19
  }] });
20
20
  export class TheColumnSizeModule {
21
21
  }
22
- TheColumnSizeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.9", ngImport: i0, type: TheColumnSizeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
23
- TheColumnSizeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.9", ngImport: i0, type: TheColumnSizeModule, declarations: [TheColumnResizeDirective], imports: [OverlayModule, TheColumnResizeCommonModule], exports: [TheColumnResizeDirective] });
24
- TheColumnSizeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.9", ngImport: i0, type: TheColumnSizeModule, imports: [[OverlayModule, TheColumnResizeCommonModule]] });
25
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.9", ngImport: i0, type: TheColumnSizeModule, decorators: [{
22
+ TheColumnSizeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TheColumnSizeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
23
+ TheColumnSizeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TheColumnSizeModule, declarations: [TheColumnResizeDirective], imports: [OverlayModule, TheColumnResizeCommonModule], exports: [TheColumnResizeDirective] });
24
+ TheColumnSizeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TheColumnSizeModule, imports: [[OverlayModule, TheColumnResizeCommonModule]] });
25
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TheColumnSizeModule, decorators: [{
26
26
  type: NgModule,
27
27
  args: [{
28
28
  imports: [OverlayModule, TheColumnResizeCommonModule],
@@ -48,9 +48,9 @@ export class TableCellEventDispatcher {
48
48
  }));
49
49
  }
50
50
  }
51
- TableCellEventDispatcher.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.9", ngImport: i0, type: TableCellEventDispatcher, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
52
- TableCellEventDispatcher.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.9", ngImport: i0, type: TableCellEventDispatcher });
53
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.9", ngImport: i0, type: TableCellEventDispatcher, decorators: [{
51
+ TableCellEventDispatcher.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TableCellEventDispatcher, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
52
+ TableCellEventDispatcher.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TableCellEventDispatcher });
53
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TableCellEventDispatcher, decorators: [{
54
54
  type: Injectable
55
55
  }], ctorParameters: function () { return [{ type: i0.NgZone }]; } });
56
56
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXZlbnQtZGlzcGF0Y2hlci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL3NyYy9jb21wb25lbnRzL2NvbHVtbi1yZXNpemUvZXZlbnQtZGlzcGF0Y2hlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQ25ELE9BQU8sRUFBRSxPQUFPLEVBQTRCLFVBQVUsRUFBRSxhQUFhLEVBQUUsTUFBTSxNQUFNLENBQUM7QUFDcEYsT0FBTyxFQUFFLG9CQUFvQixFQUFFLEtBQUssRUFBRSxHQUFHLEVBQUUsU0FBUyxFQUFFLElBQUksRUFBTyxNQUFNLGdCQUFnQixDQUFDOztBQUV4RixNQUFNLENBQU4sSUFBWSxRQUtYO0FBTEQsV0FBWSxRQUFRO0lBQ2hCLHVCQUFXLENBQUE7SUFDWCwyQkFBZSxDQUFBO0lBQ2YsNkJBQWlCLENBQUE7SUFDakIseUJBQWEsQ0FBQTtBQUNqQixDQUFDLEVBTFcsUUFBUSxLQUFSLFFBQVEsUUFLbkI7QUFDRCxNQUFNLE9BQU8sZUFBZTtDQUczQjtBQUdELE1BQU0sT0FBTyx3QkFBd0I7SUFLakMsWUFBNkIsTUFBYztRQUFkLFdBQU0sR0FBTixNQUFNLENBQVE7UUFKbEMscUJBQWdCLEdBQUcsSUFBSSxPQUFPLEVBQTBCLENBQUM7UUFFekQsK0JBQTBCLEdBQUcsSUFBSSxPQUFPLEVBQTBCLENBQUM7UUFJbkUscUNBQWdDLEdBQUcsYUFBYSxDQUNyRCxJQUFJLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsRUFBRSxvQkFBb0IsRUFBRSxDQUFDLEVBQ25FLElBQUksQ0FBQywwQkFBMEIsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxFQUFFLG9CQUFvQixFQUFFLENBQUMsQ0FDaEYsQ0FBQyxJQUFJLENBQ0YsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLHdDQUF3QztRQUNqRCxHQUFHLENBQUMsQ0FBQyxDQUFDLE9BQU8sRUFBRSxNQUFNLENBQUMsRUFBRSxFQUFFLENBQUMsTUFBTSxJQUFJLE9BQU8sQ0FBQyxFQUM3QyxvQkFBb0IsRUFBRSxFQUN0QixLQUFLLEVBQUUsQ0FDVixDQUFDO1FBRWUseUNBQW9DLEdBQUcsSUFBSSxDQUFDLGdDQUFnQyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsVUFBVSxFQUFFLEVBQUUsS0FBSyxFQUFFLENBQUMsQ0FBQztRQUV2SCxrQkFBYSxHQUFtQixJQUFJLENBQUM7UUFDckMsdUJBQWtCLEdBQXVDLElBQUksQ0FBQztJQWZ4QixDQUFDO0lBaUIvQzs7O09BR0c7SUFDSCxnQ0FBZ0MsQ0FBQyxJQUFhO1FBQzFDLElBQUksSUFBSSxLQUFLLElBQUksQ0FBQyxhQUFhLEVBQUU7WUFDN0IsSUFBSSxDQUFDLGFBQWEsR0FBRyxJQUFJLENBQUM7WUFDMUIsSUFBSSxDQUFDLGtCQUFrQixHQUFHLElBQUksQ0FBQyxvQ0FBb0MsQ0FBQyxJQUFJLENBQ3BFLEdBQUcsQ0FBQyxXQUFXLENBQUMsRUFBRTtnQkFDZCxJQUFJLFdBQVcsSUFBSSxXQUFXLENBQUMsSUFBSSxLQUFLLElBQUksRUFBRTtvQkFDMUMsT0FBTyxXQUFXLENBQUM7aUJBQ3RCO3FCQUFNO29CQUNILE9BQU8sSUFBSSxDQUFDO2lCQUNmO1lBQ0wsQ0FBQyxDQUFDLEVBQ0Ysb0JBQW9CLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsSUFBSSxLQUFLLENBQUMsQ0FBQyxJQUFJLElBQUksQ0FBQyxDQUFDLFFBQVEsS0FBSyxDQUFDLENBQUMsUUFBUSxDQUFDLENBQUMsRUFDckcsS0FBSyxFQUFFLENBQ1YsQ0FBQztTQUNMO1FBRUQsT0FBTyxJQUFJLENBQUMsa0JBQW1CLENBQUM7SUFDcEMsQ0FBQztJQUVPLFVBQVU7UUFDZCxPQUFPLENBQUMsTUFBcUIsRUFBRSxFQUFFLENBQzdCLElBQUksVUFBVSxDQUFJLFFBQVEsQ0FBQyxFQUFFLENBQ3pCLE1BQU0sQ0FBQyxTQUFTLENBQUM7WUFDYixJQUFJLEVBQUUsS0FBSyxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLEdBQUcsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO1lBQzFELEtBQUssRUFBRSxHQUFHLENBQUMsRUFBRSxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUFDO1lBQ2pDLFFBQVEsRUFBRSxHQUFHLEVBQUUsQ0FBQyxRQUFRLENBQUMsUUFBUSxFQUFFO1NBQ3RDLENBQUMsQ0FDTCxDQUFDO0lBQ1YsQ0FBQzs7cUhBdERRLHdCQUF3Qjt5SEFBeEIsd0JBQXdCOzJGQUF4Qix3QkFBd0I7a0JBRHBDLFVBQVUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlLCBOZ1pvbmUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFN1YmplY3QsIE1vbm9UeXBlT3BlcmF0b3JGdW5jdGlvbiwgT2JzZXJ2YWJsZSwgY29tYmluZUxhdGVzdCB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgZGlzdGluY3RVbnRpbENoYW5nZWQsIHNoYXJlLCBtYXAsIHN0YXJ0V2l0aCwgc2tpcCwgdGFwIH0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xuXG5leHBvcnQgZW51bSBQb3NpdGlvbiB7XG4gICAgdG9wID0gJ3RvcCcsXG4gICAgcmlnaHQgPSAncmlnaHQnLFxuICAgIGJvdHRvbSA9ICdib3R0b20nLFxuICAgIGxlZnQgPSAnbGVmdCdcbn1cbmV4cG9ydCBjbGFzcyBIb3ZlcmVkQ2VsbEluZm8ge1xuICAgIGNlbGw6IEhUTUxUYWJsZUNlbGxFbGVtZW50O1xuICAgIHBvc2l0aW9uOiBQb3NpdGlvbjtcbn1cblxuQEluamVjdGFibGUoKVxuZXhwb3J0IGNsYXNzIFRhYmxlQ2VsbEV2ZW50RGlzcGF0Y2hlciB7XG4gICAgcmVhZG9ubHkgdGFibGVDZWxsSG92ZXJlZCA9IG5ldyBTdWJqZWN0PEhvdmVyZWRDZWxsSW5mbyB8IG51bGw+KCk7XG5cbiAgICByZWFkb25seSBvdmVybGF5SGFuZGxlQWN0aXZlRm9yQ2VsbCA9IG5ldyBTdWJqZWN0PEhvdmVyZWRDZWxsSW5mbyB8IG51bGw+KCk7XG5cbiAgICBjb25zdHJ1Y3Rvcihwcml2YXRlIHJlYWRvbmx5IG5nWm9uZTogTmdab25lKSB7fVxuXG4gICAgcmVhZG9ubHkgdGFibGVDZWxsSG92ZXJlZE9yQWN0aXZlRGlzdGluY3QgPSBjb21iaW5lTGF0ZXN0KFxuICAgICAgICB0aGlzLnRhYmxlQ2VsbEhvdmVyZWQucGlwZShzdGFydFdpdGgobnVsbCksIGRpc3RpbmN0VW50aWxDaGFuZ2VkKCkpLFxuICAgICAgICB0aGlzLm92ZXJsYXlIYW5kbGVBY3RpdmVGb3JDZWxsLnBpcGUoc3RhcnRXaXRoKG51bGwpLCBkaXN0aW5jdFVudGlsQ2hhbmdlZCgpKVxuICAgICkucGlwZShcbiAgICAgICAgc2tpcCgxKSwgLy8gSWdub3JlIGluaXRpYWwgW251bGwsIG51bGxdIGVtaXNzaW9uLlxuICAgICAgICBtYXAoKFtob3ZlcmVkLCBhY3RpdmVdKSA9PiBhY3RpdmUgfHwgaG92ZXJlZCksXG4gICAgICAgIGRpc3RpbmN0VW50aWxDaGFuZ2VkKCksXG4gICAgICAgIHNoYXJlKClcbiAgICApO1xuXG4gICAgcHJpdmF0ZSByZWFkb25seSBfdGFibGVDZWxsSG92ZXJlZERpc3RpbmN0UmVlbnRlclpvbmUgPSB0aGlzLnRhYmxlQ2VsbEhvdmVyZWRPckFjdGl2ZURpc3RpbmN0LnBpcGUodGhpcy5fZW50ZXJab25lKCksIHNoYXJlKCkpO1xuXG4gICAgcHJpdmF0ZSBfbGFzdFNlZW5DZWxsOiBFbGVtZW50IHwgbnVsbCA9IG51bGw7XG4gICAgcHJpdmF0ZSBfbGFzdFNlZW5DZWxsSG92ZXI6IE9ic2VydmFibGU8SG92ZXJlZENlbGxJbmZvPiB8IG51bGwgPSBudWxsO1xuXG4gICAgLyoqXG4gICAgICogRW1pdHMgd2hldGhlciB0aGUgc3BlY2lmaWVkIHJvdyBzaG91bGQgc2hvdyBpdHMgb3ZlcmxheSBjb250cm9scy5cbiAgICAgKiBFbWlzc2lvbiBvY2N1cnMgd2l0aGluIHRoZSBOZ1pvbmUuXG4gICAgICovXG4gICAgcmVzaXplT3ZlcmxheVZpc2libGVGb3JUYWJsZUNlbGwoY2VsbDogRWxlbWVudCk6IE9ic2VydmFibGU8SG92ZXJlZENlbGxJbmZvPiB7XG4gICAgICAgIGlmIChjZWxsICE9PSB0aGlzLl9sYXN0U2VlbkNlbGwpIHtcbiAgICAgICAgICAgIHRoaXMuX2xhc3RTZWVuQ2VsbCA9IGNlbGw7XG4gICAgICAgICAgICB0aGlzLl9sYXN0U2VlbkNlbGxIb3ZlciA9IHRoaXMuX3RhYmxlQ2VsbEhvdmVyZWREaXN0aW5jdFJlZW50ZXJab25lLnBpcGUoXG4gICAgICAgICAgICAgICAgbWFwKGhvdmVyZWRDZWxsID0+IHtcbiAgICAgICAgICAgICAgICAgICAgaWYgKGhvdmVyZWRDZWxsICYmIGhvdmVyZWRDZWxsLmNlbGwgPT09IGNlbGwpIHtcbiAgICAgICAgICAgICAgICAgICAgICAgIHJldHVybiBob3ZlcmVkQ2VsbDtcbiAgICAgICAgICAgICAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgICAgICAgICAgICAgIHJldHVybiBudWxsO1xuICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgfSksXG4gICAgICAgICAgICAgICAgZGlzdGluY3RVbnRpbENoYW5nZWQoKHgsIHkpID0+IHggPT09IHkgfHwgKHggJiYgeSAmJiB4LmNlbGwgPT09IHkuY2VsbCAmJiB4LnBvc2l0aW9uID09PSB5LnBvc2l0aW9uKSksXG4gICAgICAgICAgICAgICAgc2hhcmUoKVxuICAgICAgICAgICAgKTtcbiAgICAgICAgfVxuXG4gICAgICAgIHJldHVybiB0aGlzLl9sYXN0U2VlbkNlbGxIb3ZlciE7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBfZW50ZXJab25lPFQ+KCk6IE1vbm9UeXBlT3BlcmF0b3JGdW5jdGlvbjxUPiB7XG4gICAgICAgIHJldHVybiAoc291cmNlOiBPYnNlcnZhYmxlPFQ+KSA9PlxuICAgICAgICAgICAgbmV3IE9ic2VydmFibGU8VD4ob2JzZXJ2ZXIgPT5cbiAgICAgICAgICAgICAgICBzb3VyY2Uuc3Vic2NyaWJlKHtcbiAgICAgICAgICAgICAgICAgICAgbmV4dDogdmFsdWUgPT4gdGhpcy5uZ1pvbmUucnVuKCgpID0+IG9ic2VydmVyLm5leHQodmFsdWUpKSxcbiAgICAgICAgICAgICAgICAgICAgZXJyb3I6IGVyciA9PiBvYnNlcnZlci5lcnJvcihlcnIpLFxuICAgICAgICAgICAgICAgICAgICBjb21wbGV0ZTogKCkgPT4gb2JzZXJ2ZXIuY29tcGxldGUoKVxuICAgICAgICAgICAgICAgIH0pXG4gICAgICAgICAgICApO1xuICAgIH1cbn1cbiJdfQ==
@@ -124,9 +124,9 @@ export class TheColumnResizeOverlayHandleComponent {
124
124
  this.destroyed.complete();
125
125
  }
126
126
  }
127
- TheColumnResizeOverlayHandleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.9", ngImport: i0, type: TheColumnResizeOverlayHandleComponent, deps: [{ token: i0.ElementRef }, { token: i0.ViewContainerRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i1.ResizeRef }, { token: i2.TableCellEventDispatcher }, { token: DOCUMENT }, { token: i3.ColumnResizeNotifierSource }], target: i0.ɵɵFactoryTarget.Component });
128
- TheColumnResizeOverlayHandleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.9", type: TheColumnResizeOverlayHandleComponent, selector: "ng-component", host: { classAttribute: "the-table-resize-overlay-thumb" }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
129
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.9", ngImport: i0, type: TheColumnResizeOverlayHandleComponent, decorators: [{
127
+ TheColumnResizeOverlayHandleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TheColumnResizeOverlayHandleComponent, deps: [{ token: i0.ElementRef }, { token: i0.ViewContainerRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i1.ResizeRef }, { token: i2.TableCellEventDispatcher }, { token: DOCUMENT }, { token: i3.ColumnResizeNotifierSource }], target: i0.ɵɵFactoryTarget.Component });
128
+ TheColumnResizeOverlayHandleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.8", type: TheColumnResizeOverlayHandleComponent, selector: "ng-component", host: { classAttribute: "the-table-resize-overlay-thumb" }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
129
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TheColumnResizeOverlayHandleComponent, decorators: [{
130
130
  type: Component,
131
131
  args: [{
132
132
  host: { class: 'the-table-resize-overlay-thumb' },