@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.
- package/components/f-connection/{f-connection-base.d.ts → common/f-connection-base.d.ts} +4 -6
- package/components/f-connection/common/f-connection-common.module.d.ts +13 -0
- package/components/f-connection/{f-connection-text → common/f-connection-text}/f-connection-text-path.directive.d.ts +1 -1
- package/components/f-connection/{f-connection-text → common/f-connection-text}/f-connection-text.component.d.ts +1 -1
- package/components/f-connection/{f-gradient → common/f-gradient}/f-connection-gradient.component.d.ts +1 -1
- package/components/f-connection/{f-path → common/f-path}/f-connection-path.component.d.ts +2 -2
- package/components/f-connection/{f-selection → common/f-selection}/f-connection-selection.component.d.ts +1 -1
- package/components/f-connection/{i-input-output-model.d.ts → common/i-input-output-model.d.ts} +1 -1
- package/components/f-connection/common/index.d.ts +10 -0
- package/components/f-connection/common/public-api.d.ts +6 -0
- package/components/f-connection/{f-connection.component.d.ts → f-connection/f-connection.component.d.ts} +2 -7
- package/components/f-connection/f-connection/f-connection.module.d.ts +9 -0
- package/components/f-connection/f-connection/index.d.ts +2 -0
- package/components/f-connection/f-temp-connection/f-temp-connection.component.d.ts +4 -4
- package/components/f-connection/f-temp-connection/f-temp-connection.module.d.ts +9 -0
- package/components/f-connection/f-temp-connection/index.d.ts +1 -0
- package/components/f-connection/f-temp-connection/temp-connection-input-output-model.d.ts +1 -1
- package/components/f-connection/index.d.ts +2 -11
- package/components/f-connection/public-api.d.ts +3 -3
- package/components/index.d.ts +0 -1
- package/directives/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.handler.d.ts +1 -1
- package/directives/f-connect-if-intersect/f-connect-if-intersect-base.d.ts +11 -0
- package/directives/f-connect-if-intersect/f-connect-if-intersect.directive.d.ts +7 -7
- package/directives/f-connect-if-intersect/index.d.ts +1 -0
- package/directives/f-connect-if-intersect/public-api.d.ts +1 -0
- package/directives/f-containers/f-connections-container/f-connections-container-base.d.ts +1 -1
- package/directives/f-containers/f-connections-container/f-connections-container.component.d.ts +1 -1
- package/directives/f-draggable/connections/create-connection/create-connection.on-pointer-move.d.ts +1 -1
- package/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-move/reassign-connection.on-pointer-move.d.ts +1 -1
- package/directives/f-draggable/f-draggable-base.d.ts +4 -3
- package/directives/f-draggable/f-draggable.directive.d.ts +5 -4
- package/directives/f-draggable/f-draggable.module.d.ts +2 -4
- package/directives/f-draggable/node/node-on-pointer-move/f-connection-source.drag-handler.d.ts +1 -1
- package/directives/f-draggable/node/node-on-pointer-move/f-connection-target.drag-handler.d.ts +1 -1
- package/directives/f-draggable/node/node-on-pointer-move/f-connection.drag-handler.d.ts +1 -1
- package/directives/f-draggable/node/node-on-pointer-up/node.on-pointer-up.d.ts +2 -2
- package/directives/f-draggable/public-api.d.ts +1 -0
- package/directives/f-draggable/selection/selection-on-pointer-down/selection.on-pointer-down.d.ts +2 -1
- package/directives/f-draggable/selection/selection-on-pointer-move/selection.on-pointer-move.d.ts +2 -1
- package/directives/f-line-alignment/f-line-alignment.directive.d.ts +1 -1
- package/directives/f-selection/f-selection.directive.d.ts +1 -1
- package/esm2022/components/f-connection/common/f-connection-base.mjs +32 -0
- package/esm2022/components/f-connection/common/f-connection-common.module.mjs +44 -0
- package/esm2022/components/f-connection/common/f-connection-identifiers.mjs +21 -0
- package/esm2022/components/f-connection/common/f-connection-text/f-connection-text-path.directive.mjs +38 -0
- package/esm2022/components/f-connection/common/f-connection-text/f-connection-text.component.mjs +55 -0
- package/esm2022/components/f-connection/common/f-connection-text/index.mjs +3 -0
- package/esm2022/components/f-connection/common/f-drag-handle/f-connection-drag-handle.component.mjs +30 -0
- package/esm2022/components/f-connection/common/f-drag-handle/index.mjs +2 -0
- package/esm2022/components/f-connection/common/f-gradient/f-connection-gradient.component.mjs +59 -0
- package/esm2022/components/f-connection/common/f-gradient/index.mjs +2 -0
- package/esm2022/components/f-connection/common/f-path/f-connection-path.component.mjs +58 -0
- package/esm2022/components/f-connection/common/f-path/index.mjs +2 -0
- package/esm2022/components/f-connection/common/f-selection/f-connection-selection.component.mjs +34 -0
- package/esm2022/components/f-connection/common/f-selection/index.mjs +2 -0
- package/esm2022/components/f-connection/common/get-connection-intersect.mjs +10 -0
- package/esm2022/components/f-connection/common/i-input-output-model.mjs +2 -0
- package/esm2022/components/f-connection/common/index.mjs +11 -0
- package/esm2022/components/f-connection/common/public-api.mjs +7 -0
- package/esm2022/components/f-connection/f-connection/f-connection.component.mjs +86 -0
- package/esm2022/components/f-connection/f-connection/f-connection.module.mjs +28 -0
- package/esm2022/components/f-connection/f-connection/index.mjs +3 -0
- package/esm2022/components/f-connection/f-temp-connection/f-temp-connection.component.mjs +8 -8
- package/esm2022/components/f-connection/f-temp-connection/f-temp-connection.module.mjs +28 -0
- package/esm2022/components/f-connection/f-temp-connection/index.mjs +2 -1
- package/esm2022/components/f-connection/f-temp-connection/temp-connection-input-output-model.mjs +1 -1
- package/esm2022/components/f-connection/index.mjs +3 -12
- package/esm2022/components/f-connection/public-api.mjs +4 -4
- package/esm2022/components/index.mjs +1 -2
- package/esm2022/directives/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.handler.mjs +1 -1
- package/esm2022/directives/f-connect-if-intersect/f-connect-if-intersect-base.mjs +10 -0
- package/esm2022/directives/f-connect-if-intersect/f-connect-if-intersect.directive.mjs +19 -9
- package/esm2022/directives/f-connect-if-intersect/index.mjs +2 -1
- package/esm2022/directives/f-connect-if-intersect/public-api.mjs +2 -1
- package/esm2022/directives/f-containers/f-connections-container/f-connections-container-base.mjs +1 -1
- package/esm2022/directives/f-containers/f-connections-container/f-connections-container.component.mjs +2 -2
- package/esm2022/directives/f-draggable/connections/create-connection/create-connection.on-pointer-move.mjs +2 -2
- package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection.on-pointer-down.mjs +2 -2
- package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-move/reassign-connection.on-pointer-move.mjs +2 -2
- package/esm2022/directives/f-draggable/f-draggable-base.mjs +1 -1
- package/esm2022/directives/f-draggable/f-draggable.directive.mjs +8 -7
- package/esm2022/directives/f-draggable/f-draggable.module.mjs +8 -20
- package/esm2022/directives/f-draggable/node/node-on-pointer-move/f-connection-source.drag-handler.mjs +2 -2
- package/esm2022/directives/f-draggable/node/node-on-pointer-move/f-connection-target.drag-handler.mjs +2 -2
- package/esm2022/directives/f-draggable/node/node-on-pointer-move/f-connection.drag-handler.mjs +2 -2
- package/esm2022/directives/f-draggable/node/node-on-pointer-up/node.on-pointer-up.mjs +1 -1
- package/esm2022/directives/f-draggable/public-api.mjs +2 -1
- package/esm2022/directives/f-draggable/selection/selection-on-pointer-down/selection.on-pointer-down.mjs +1 -1
- package/esm2022/directives/f-draggable/selection/selection-on-pointer-move/selection.on-pointer-move.mjs +5 -2
- package/esm2022/directives/f-line-alignment/f-line-alignment.directive.mjs +3 -2
- package/esm2022/directives/f-selection/f-selection.directive.mjs +3 -2
- package/esm2022/f-flow.module.mjs +8 -8
- package/esm2022/tokens.mjs +4 -0
- package/f-flow.module.d.ts +3 -2
- package/fesm2022/foblex-flow.mjs +201 -137
- package/fesm2022/foblex-flow.mjs.map +1 -1
- package/package.json +5 -6
- package/tokens.d.ts +3 -0
- package/components/f-connection/f-connection.module.d.ts +0 -15
- package/esm2022/components/f-connection/f-connection-base.mjs +0 -33
- package/esm2022/components/f-connection/f-connection-identifiers.mjs +0 -21
- package/esm2022/components/f-connection/f-connection-text/f-connection-text-path.directive.mjs +0 -38
- package/esm2022/components/f-connection/f-connection-text/f-connection-text.component.mjs +0 -55
- package/esm2022/components/f-connection/f-connection-text/index.mjs +0 -3
- package/esm2022/components/f-connection/f-connection.component.mjs +0 -91
- package/esm2022/components/f-connection/f-connection.module.mjs +0 -47
- package/esm2022/components/f-connection/f-drag-handle/f-connection-drag-handle.component.mjs +0 -30
- package/esm2022/components/f-connection/f-drag-handle/index.mjs +0 -2
- package/esm2022/components/f-connection/f-gradient/f-connection-gradient.component.mjs +0 -59
- package/esm2022/components/f-connection/f-gradient/index.mjs +0 -2
- package/esm2022/components/f-connection/f-path/f-connection-path.component.mjs +0 -58
- package/esm2022/components/f-connection/f-path/index.mjs +0 -2
- package/esm2022/components/f-connection/f-selection/f-connection-selection.component.mjs +0 -34
- package/esm2022/components/f-connection/f-selection/index.mjs +0 -2
- package/esm2022/components/f-connection/get-connection-intersect.mjs +0 -10
- package/esm2022/components/f-connection/i-input-output-model.mjs +0 -2
- /package/components/f-connection/{f-connection-identifiers.d.ts → common/f-connection-identifiers.d.ts} +0 -0
- /package/components/f-connection/{f-connection-text → common/f-connection-text}/index.d.ts +0 -0
- /package/components/f-connection/{f-drag-handle → common/f-drag-handle}/f-connection-drag-handle.component.d.ts +0 -0
- /package/components/f-connection/{f-drag-handle → common/f-drag-handle}/index.d.ts +0 -0
- /package/components/f-connection/{f-gradient → common/f-gradient}/index.d.ts +0 -0
- /package/components/f-connection/{f-path → common/f-path}/index.d.ts +0 -0
- /package/components/f-connection/{f-selection → common/f-selection}/index.d.ts +0 -0
- /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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|