@foblex/flow 1.0.9 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (124) hide show
  1. package/components/f-connection/{f-connection-base.d.ts → common/f-connection-base.d.ts} +4 -6
  2. package/components/f-connection/common/f-connection-common.module.d.ts +13 -0
  3. package/components/f-connection/{f-connection-text → common/f-connection-text}/f-connection-text-path.directive.d.ts +1 -1
  4. package/components/f-connection/{f-connection-text → common/f-connection-text}/f-connection-text.component.d.ts +1 -1
  5. package/components/f-connection/{f-gradient → common/f-gradient}/f-connection-gradient.component.d.ts +1 -1
  6. package/components/f-connection/{f-path → common/f-path}/f-connection-path.component.d.ts +2 -2
  7. package/components/f-connection/{f-selection → common/f-selection}/f-connection-selection.component.d.ts +1 -1
  8. package/components/f-connection/{i-input-output-model.d.ts → common/i-input-output-model.d.ts} +1 -1
  9. package/components/f-connection/common/index.d.ts +10 -0
  10. package/components/f-connection/common/public-api.d.ts +6 -0
  11. package/components/f-connection/{f-connection.component.d.ts → f-connection/f-connection.component.d.ts} +2 -7
  12. package/components/f-connection/f-connection/f-connection.module.d.ts +9 -0
  13. package/components/f-connection/f-connection/index.d.ts +2 -0
  14. package/components/f-connection/f-temp-connection/f-temp-connection.component.d.ts +4 -4
  15. package/components/f-connection/f-temp-connection/f-temp-connection.module.d.ts +9 -0
  16. package/components/f-connection/f-temp-connection/index.d.ts +1 -0
  17. package/components/f-connection/f-temp-connection/temp-connection-input-output-model.d.ts +1 -1
  18. package/components/f-connection/index.d.ts +2 -11
  19. package/components/f-connection/public-api.d.ts +3 -3
  20. package/components/index.d.ts +0 -1
  21. package/directives/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.handler.d.ts +1 -1
  22. package/directives/f-connect-if-intersect/f-connect-if-intersect-base.d.ts +11 -0
  23. package/directives/f-connect-if-intersect/f-connect-if-intersect.directive.d.ts +7 -7
  24. package/directives/f-connect-if-intersect/index.d.ts +1 -0
  25. package/directives/f-connect-if-intersect/public-api.d.ts +1 -0
  26. package/directives/f-containers/f-connections-container/f-connections-container-base.d.ts +1 -1
  27. package/directives/f-containers/f-connections-container/f-connections-container.component.d.ts +1 -1
  28. package/directives/f-draggable/connections/create-connection/create-connection.on-pointer-move.d.ts +1 -1
  29. package/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-move/reassign-connection.on-pointer-move.d.ts +1 -1
  30. package/directives/f-draggable/f-draggable-base.d.ts +4 -3
  31. package/directives/f-draggable/f-draggable.directive.d.ts +5 -4
  32. package/directives/f-draggable/f-draggable.module.d.ts +2 -4
  33. package/directives/f-draggable/node/node-on-pointer-move/f-connection-source.drag-handler.d.ts +1 -1
  34. package/directives/f-draggable/node/node-on-pointer-move/f-connection-target.drag-handler.d.ts +1 -1
  35. package/directives/f-draggable/node/node-on-pointer-move/f-connection.drag-handler.d.ts +1 -1
  36. package/directives/f-draggable/node/node-on-pointer-up/node.on-pointer-up.d.ts +2 -2
  37. package/directives/f-draggable/public-api.d.ts +1 -0
  38. package/directives/f-draggable/selection/selection-on-pointer-down/selection.on-pointer-down.d.ts +2 -1
  39. package/directives/f-draggable/selection/selection-on-pointer-move/selection.on-pointer-move.d.ts +2 -1
  40. package/directives/f-line-alignment/f-line-alignment.directive.d.ts +1 -1
  41. package/directives/f-selection/f-selection.directive.d.ts +1 -1
  42. package/esm2022/components/f-connection/common/f-connection-base.mjs +32 -0
  43. package/esm2022/components/f-connection/common/f-connection-common.module.mjs +44 -0
  44. package/esm2022/components/f-connection/common/f-connection-identifiers.mjs +21 -0
  45. package/esm2022/components/f-connection/common/f-connection-text/f-connection-text-path.directive.mjs +38 -0
  46. package/esm2022/components/f-connection/common/f-connection-text/f-connection-text.component.mjs +55 -0
  47. package/esm2022/components/f-connection/common/f-connection-text/index.mjs +3 -0
  48. package/esm2022/components/f-connection/common/f-drag-handle/f-connection-drag-handle.component.mjs +30 -0
  49. package/esm2022/components/f-connection/common/f-drag-handle/index.mjs +2 -0
  50. package/esm2022/components/f-connection/common/f-gradient/f-connection-gradient.component.mjs +59 -0
  51. package/esm2022/components/f-connection/common/f-gradient/index.mjs +2 -0
  52. package/esm2022/components/f-connection/common/f-path/f-connection-path.component.mjs +58 -0
  53. package/esm2022/components/f-connection/common/f-path/index.mjs +2 -0
  54. package/esm2022/components/f-connection/common/f-selection/f-connection-selection.component.mjs +34 -0
  55. package/esm2022/components/f-connection/common/f-selection/index.mjs +2 -0
  56. package/esm2022/components/f-connection/common/get-connection-intersect.mjs +10 -0
  57. package/esm2022/components/f-connection/common/i-input-output-model.mjs +2 -0
  58. package/esm2022/components/f-connection/common/index.mjs +11 -0
  59. package/esm2022/components/f-connection/common/public-api.mjs +7 -0
  60. package/esm2022/components/f-connection/f-connection/f-connection.component.mjs +86 -0
  61. package/esm2022/components/f-connection/f-connection/f-connection.module.mjs +28 -0
  62. package/esm2022/components/f-connection/f-connection/index.mjs +3 -0
  63. package/esm2022/components/f-connection/f-temp-connection/f-temp-connection.component.mjs +8 -8
  64. package/esm2022/components/f-connection/f-temp-connection/f-temp-connection.module.mjs +28 -0
  65. package/esm2022/components/f-connection/f-temp-connection/index.mjs +2 -1
  66. package/esm2022/components/f-connection/f-temp-connection/temp-connection-input-output-model.mjs +1 -1
  67. package/esm2022/components/f-connection/index.mjs +3 -12
  68. package/esm2022/components/f-connection/public-api.mjs +4 -4
  69. package/esm2022/components/index.mjs +1 -2
  70. package/esm2022/directives/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.handler.mjs +1 -1
  71. package/esm2022/directives/f-connect-if-intersect/f-connect-if-intersect-base.mjs +10 -0
  72. package/esm2022/directives/f-connect-if-intersect/f-connect-if-intersect.directive.mjs +19 -9
  73. package/esm2022/directives/f-connect-if-intersect/index.mjs +2 -1
  74. package/esm2022/directives/f-connect-if-intersect/public-api.mjs +2 -1
  75. package/esm2022/directives/f-containers/f-connections-container/f-connections-container-base.mjs +1 -1
  76. package/esm2022/directives/f-containers/f-connections-container/f-connections-container.component.mjs +2 -2
  77. package/esm2022/directives/f-draggable/connections/create-connection/create-connection.on-pointer-move.mjs +2 -2
  78. package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection.on-pointer-down.mjs +2 -2
  79. package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-move/reassign-connection.on-pointer-move.mjs +2 -2
  80. package/esm2022/directives/f-draggable/f-draggable-base.mjs +1 -1
  81. package/esm2022/directives/f-draggable/f-draggable.directive.mjs +8 -7
  82. package/esm2022/directives/f-draggable/f-draggable.module.mjs +8 -20
  83. package/esm2022/directives/f-draggable/node/node-on-pointer-move/f-connection-source.drag-handler.mjs +2 -2
  84. package/esm2022/directives/f-draggable/node/node-on-pointer-move/f-connection-target.drag-handler.mjs +2 -2
  85. package/esm2022/directives/f-draggable/node/node-on-pointer-move/f-connection.drag-handler.mjs +2 -2
  86. package/esm2022/directives/f-draggable/node/node-on-pointer-up/node.on-pointer-up.mjs +1 -1
  87. package/esm2022/directives/f-draggable/public-api.mjs +2 -1
  88. package/esm2022/directives/f-draggable/selection/selection-on-pointer-down/selection.on-pointer-down.mjs +1 -1
  89. package/esm2022/directives/f-draggable/selection/selection-on-pointer-move/selection.on-pointer-move.mjs +5 -2
  90. package/esm2022/directives/f-line-alignment/f-line-alignment.directive.mjs +3 -2
  91. package/esm2022/directives/f-selection/f-selection.directive.mjs +3 -2
  92. package/esm2022/f-flow.module.mjs +8 -8
  93. package/esm2022/tokens.mjs +4 -0
  94. package/f-flow.module.d.ts +3 -2
  95. package/fesm2022/foblex-flow.mjs +201 -137
  96. package/fesm2022/foblex-flow.mjs.map +1 -1
  97. package/package.json +5 -6
  98. package/tokens.d.ts +3 -0
  99. package/components/f-connection/f-connection.module.d.ts +0 -15
  100. package/esm2022/components/f-connection/f-connection-base.mjs +0 -33
  101. package/esm2022/components/f-connection/f-connection-identifiers.mjs +0 -21
  102. package/esm2022/components/f-connection/f-connection-text/f-connection-text-path.directive.mjs +0 -38
  103. package/esm2022/components/f-connection/f-connection-text/f-connection-text.component.mjs +0 -55
  104. package/esm2022/components/f-connection/f-connection-text/index.mjs +0 -3
  105. package/esm2022/components/f-connection/f-connection.component.mjs +0 -91
  106. package/esm2022/components/f-connection/f-connection.module.mjs +0 -47
  107. package/esm2022/components/f-connection/f-drag-handle/f-connection-drag-handle.component.mjs +0 -30
  108. package/esm2022/components/f-connection/f-drag-handle/index.mjs +0 -2
  109. package/esm2022/components/f-connection/f-gradient/f-connection-gradient.component.mjs +0 -59
  110. package/esm2022/components/f-connection/f-gradient/index.mjs +0 -2
  111. package/esm2022/components/f-connection/f-path/f-connection-path.component.mjs +0 -58
  112. package/esm2022/components/f-connection/f-path/index.mjs +0 -2
  113. package/esm2022/components/f-connection/f-selection/f-connection-selection.component.mjs +0 -34
  114. package/esm2022/components/f-connection/f-selection/index.mjs +0 -2
  115. package/esm2022/components/f-connection/get-connection-intersect.mjs +0 -10
  116. package/esm2022/components/f-connection/i-input-output-model.mjs +0 -2
  117. /package/components/f-connection/{f-connection-identifiers.d.ts → common/f-connection-identifiers.d.ts} +0 -0
  118. /package/components/f-connection/{f-connection-text → common/f-connection-text}/index.d.ts +0 -0
  119. /package/components/f-connection/{f-drag-handle → common/f-drag-handle}/f-connection-drag-handle.component.d.ts +0 -0
  120. /package/components/f-connection/{f-drag-handle → common/f-drag-handle}/index.d.ts +0 -0
  121. /package/components/f-connection/{f-gradient → common/f-gradient}/index.d.ts +0 -0
  122. /package/components/f-connection/{f-path → common/f-path}/index.d.ts +0 -0
  123. /package/components/f-connection/{f-selection → common/f-selection}/index.d.ts +0 -0
  124. /package/components/f-connection/{get-connection-intersect.d.ts → common/get-connection-intersect.d.ts} +0 -0
@@ -1,34 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, Input } from "@angular/core";
2
- import { F_CONNECTION_IDENTIFIERS } from '../f-connection-identifiers';
3
- import * as i0 from "@angular/core";
4
- export class FConnectionSelectionComponent {
5
- get connectionForSelectionId() {
6
- return F_CONNECTION_IDENTIFIERS.connectionForSelectionId(this.fromTo?.output.id + this.fromTo?.input?.id);
7
- }
8
- get hostElement() {
9
- return this.elementReference.nativeElement;
10
- }
11
- constructor(elementReference) {
12
- this.elementReference = elementReference;
13
- }
14
- setPath(path) {
15
- this.hostElement.setAttribute("d", `${path}`);
16
- }
17
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionSelectionComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
18
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.5", type: FConnectionSelectionComponent, selector: "path[fConnectionSelection]", inputs: { fromTo: "fromTo" }, host: { properties: { "attr.id": "connectionForSelectionId" }, classAttribute: "f-component f-connection-selection" }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
19
- }
20
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionSelectionComponent, decorators: [{
21
- type: Component,
22
- args: [{
23
- selector: "path[fConnectionSelection]",
24
- template: '',
25
- changeDetection: ChangeDetectionStrategy.OnPush,
26
- host: {
27
- class: "f-component f-connection-selection",
28
- '[attr.id]': 'connectionForSelectionId',
29
- },
30
- }]
31
- }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { fromTo: [{
32
- type: Input
33
- }] } });
34
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1jb25uZWN0aW9uLXNlbGVjdGlvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9mLWZsb3cvc3JjL2NvbXBvbmVudHMvZi1jb25uZWN0aW9uL2Ytc2VsZWN0aW9uL2YtY29ubmVjdGlvbi1zZWxlY3Rpb24uY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUFjLEtBQUssRUFDN0IsTUFBTSxlQUFlLENBQUM7QUFFdkIsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sNkJBQTZCLENBQUM7O0FBYXZFLE1BQU0sT0FBTyw2QkFBNkI7SUFLeEMsSUFBVyx3QkFBd0I7UUFDakMsT0FBTyx3QkFBd0IsQ0FBQyx3QkFBd0IsQ0FDcEQsSUFBSSxDQUFDLE1BQU0sRUFBRSxNQUFNLENBQUMsRUFBRSxHQUFHLElBQUksQ0FBQyxNQUFNLEVBQUUsS0FBSyxFQUFFLEVBQUUsQ0FDbEQsQ0FBQztJQUNKLENBQUM7SUFFRCxJQUFXLFdBQVc7UUFDcEIsT0FBTyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsYUFBYSxDQUFDO0lBQzdDLENBQUM7SUFFRCxZQUNZLGdCQUE0QztRQUE1QyxxQkFBZ0IsR0FBaEIsZ0JBQWdCLENBQTRCO0lBRXhELENBQUM7SUFFTSxPQUFPLENBQUMsSUFBWTtRQUN6QixJQUFJLENBQUMsV0FBVyxDQUFDLFlBQVksQ0FBQyxHQUFHLEVBQUUsR0FBSSxJQUFLLEVBQUUsQ0FBQyxDQUFDO0lBQ2xELENBQUM7OEdBdEJVLDZCQUE2QjtrR0FBN0IsNkJBQTZCLHVOQVA5QixFQUFFOzsyRkFPRCw2QkFBNkI7a0JBVHpDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLDRCQUE0QjtvQkFDdEMsUUFBUSxFQUFFLEVBQUU7b0JBQ1osZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLElBQUksRUFBRTt3QkFDSixLQUFLLEVBQUUsb0NBQW9DO3dCQUMzQyxXQUFXLEVBQUUsMEJBQTBCO3FCQUN4QztpQkFDRjtpR0FJUSxNQUFNO3NCQURaLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgQ29tcG9uZW50LCBFbGVtZW50UmVmLCBJbnB1dFxufSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xuaW1wb3J0IHsgSUhhc0hvc3RFbGVtZW50IH0gZnJvbSAnQGZvYmxleC9jb3JlJztcbmltcG9ydCB7IEZfQ09OTkVDVElPTl9JREVOVElGSUVSUyB9IGZyb20gJy4uL2YtY29ubmVjdGlvbi1pZGVudGlmaWVycyc7XG5pbXBvcnQgeyBJSW5wdXRPdXRwdXRNb2RlbCB9IGZyb20gJy4uL2ktaW5wdXQtb3V0cHV0LW1vZGVsJztcbmltcG9ydCB7IEZOb2RlT3V0bGV0QmFzZSwgRk5vZGVPdXRwdXRCYXNlIH0gZnJvbSAnLi4vLi4vZi1jb25uZWN0b3JzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiBcInBhdGhbZkNvbm5lY3Rpb25TZWxlY3Rpb25dXCIsXG4gIHRlbXBsYXRlOiAnJyxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogXCJmLWNvbXBvbmVudCBmLWNvbm5lY3Rpb24tc2VsZWN0aW9uXCIsXG4gICAgJ1thdHRyLmlkXSc6ICdjb25uZWN0aW9uRm9yU2VsZWN0aW9uSWQnLFxuICB9LFxufSlcbmV4cG9ydCBjbGFzcyBGQ29ubmVjdGlvblNlbGVjdGlvbkNvbXBvbmVudCBpbXBsZW1lbnRzIElIYXNIb3N0RWxlbWVudCB7XG5cbiAgQElucHV0KClcbiAgcHVibGljIGZyb21UbzogSUlucHV0T3V0cHV0TW9kZWw8Rk5vZGVPdXRwdXRCYXNlIHwgRk5vZGVPdXRsZXRCYXNlPiB8IHVuZGVmaW5lZDtcblxuICBwdWJsaWMgZ2V0IGNvbm5lY3Rpb25Gb3JTZWxlY3Rpb25JZCgpOiBzdHJpbmcge1xuICAgIHJldHVybiBGX0NPTk5FQ1RJT05fSURFTlRJRklFUlMuY29ubmVjdGlvbkZvclNlbGVjdGlvbklkKFxuICAgICAgICB0aGlzLmZyb21Ubz8ub3V0cHV0LmlkICsgdGhpcy5mcm9tVG8/LmlucHV0Py5pZFxuICAgICk7XG4gIH1cblxuICBwdWJsaWMgZ2V0IGhvc3RFbGVtZW50KCk6IFNWR1BhdGhFbGVtZW50IHtcbiAgICByZXR1cm4gdGhpcy5lbGVtZW50UmVmZXJlbmNlLm5hdGl2ZUVsZW1lbnQ7XG4gIH1cblxuICBjb25zdHJ1Y3RvcihcbiAgICAgIHByaXZhdGUgZWxlbWVudFJlZmVyZW5jZTogRWxlbWVudFJlZjxTVkdQYXRoRWxlbWVudD4sXG4gICkge1xuICB9XG5cbiAgcHVibGljIHNldFBhdGgocGF0aDogc3RyaW5nKSB7XG4gICAgdGhpcy5ob3N0RWxlbWVudC5zZXRBdHRyaWJ1dGUoXCJkXCIsIGAkeyBwYXRoIH1gKTtcbiAgfVxufVxuXG4iXX0=
@@ -1,2 +0,0 @@
1
- export * from './f-connection-selection.component';
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9mLWZsb3cvc3JjL2NvbXBvbmVudHMvZi1jb25uZWN0aW9uL2Ytc2VsZWN0aW9uL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsb0NBQW9DLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2YtY29ubmVjdGlvbi1zZWxlY3Rpb24uY29tcG9uZW50JztcbiJdfQ==
@@ -1,10 +0,0 @@
1
- import { RectExtensions } from '@foblex/core';
2
- export function getConnectionIntersect(fromRect, toRect) {
3
- const fromResult = RectExtensions.intersectionWithVector(fromRect, fromRect.gravityCenter, toRect.gravityCenter);
4
- const toResult = RectExtensions.intersectionWithVector(toRect, fromRect.gravityCenter, toRect.gravityCenter);
5
- return {
6
- point1: fromResult ? fromResult[1] : fromRect.gravityCenter,
7
- point2: toResult ? toResult[0] : toRect.gravityCenter,
8
- };
9
- }
10
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0LWNvbm5lY3Rpb24taW50ZXJzZWN0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZi1mbG93L3NyYy9jb21wb25lbnRzL2YtY29ubmVjdGlvbi9nZXQtY29ubmVjdGlvbi1pbnRlcnNlY3QudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFrQixjQUFjLEVBQUUsTUFBTSxjQUFjLENBQUM7QUFFOUQsTUFBTSxVQUFVLHNCQUFzQixDQUFDLFFBQWUsRUFBRSxNQUFhO0lBRW5FLE1BQU0sVUFBVSxHQUFHLGNBQWMsQ0FBQyxzQkFBc0IsQ0FBQyxRQUFRLEVBQUUsUUFBUSxDQUFDLGFBQWEsRUFBRSxNQUFNLENBQUMsYUFBYSxDQUFDLENBQUM7SUFDakgsTUFBTSxRQUFRLEdBQUcsY0FBYyxDQUFDLHNCQUFzQixDQUFDLE1BQU0sRUFBRSxRQUFRLENBQUMsYUFBYSxFQUFFLE1BQU0sQ0FBQyxhQUFhLENBQUMsQ0FBQztJQUU3RyxPQUFPO1FBQ0wsTUFBTSxFQUFFLFVBQVUsQ0FBQyxDQUFDLENBQUMsVUFBVSxDQUFFLENBQUMsQ0FBRSxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUMsYUFBYTtRQUM3RCxNQUFNLEVBQUUsUUFBUSxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUUsQ0FBQyxDQUFFLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxhQUFhO0tBQ3hELENBQUE7QUFDSCxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSVJlY3QsIElWZWN0b3IsIFJlY3RFeHRlbnNpb25zIH0gZnJvbSAnQGZvYmxleC9jb3JlJztcblxuZXhwb3J0IGZ1bmN0aW9uIGdldENvbm5lY3Rpb25JbnRlcnNlY3QoZnJvbVJlY3Q6IElSZWN0LCB0b1JlY3Q6IElSZWN0KTogSVZlY3RvciB7XG5cbiAgY29uc3QgZnJvbVJlc3VsdCA9IFJlY3RFeHRlbnNpb25zLmludGVyc2VjdGlvbldpdGhWZWN0b3IoZnJvbVJlY3QsIGZyb21SZWN0LmdyYXZpdHlDZW50ZXIsIHRvUmVjdC5ncmF2aXR5Q2VudGVyKTtcbiAgY29uc3QgdG9SZXN1bHQgPSBSZWN0RXh0ZW5zaW9ucy5pbnRlcnNlY3Rpb25XaXRoVmVjdG9yKHRvUmVjdCwgZnJvbVJlY3QuZ3Jhdml0eUNlbnRlciwgdG9SZWN0LmdyYXZpdHlDZW50ZXIpO1xuXG4gIHJldHVybiB7XG4gICAgcG9pbnQxOiBmcm9tUmVzdWx0ID8gZnJvbVJlc3VsdFsgMSBdIDogZnJvbVJlY3QuZ3Jhdml0eUNlbnRlcixcbiAgICBwb2ludDI6IHRvUmVzdWx0ID8gdG9SZXN1bHRbIDAgXSA6IHRvUmVjdC5ncmF2aXR5Q2VudGVyLFxuICB9XG59XG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1pbnB1dC1vdXRwdXQtbW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9mLWZsb3cvc3JjL2NvbXBvbmVudHMvZi1jb25uZWN0aW9uL2ktaW5wdXQtb3V0cHV0LW1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBGTm9kZUlucHV0QmFzZSwgRk5vZGVPdXRwdXRCYXNlIH0gZnJvbSAnLi4vZi1jb25uZWN0b3JzJztcblxuZXhwb3J0IGludGVyZmFjZSBJSW5wdXRPdXRwdXRNb2RlbDxUT3V0cHV0ID0gRk5vZGVPdXRwdXRCYXNlLCBUSW5wdXQgPSBGTm9kZUlucHV0QmFzZT4ge1xuXG4gIGlucHV0OiBUSW5wdXQ7XG5cbiAgb3V0cHV0OiBUT3V0cHV0O1xufVxuIl19