@progress/kendo-angular-progressbar 3.1.2 → 11.0.0-develop.80
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/NOTICE.txt +3 -3
- package/chunk/chunk-progressbar.component.d.ts +8 -4
- package/circularprogressbar/center-template.directive.d.ts +3 -3
- package/circularprogressbar/circular-progressbar.component.d.ts +2 -2
- package/circularprogressbar/models/center-template-context.interface.d.ts +1 -1
- package/circularprogressbar/models/circular-progressbar-progress-color-interface.d.ts +1 -1
- package/common/constants.d.ts +1 -1
- package/common/localization/custom-messages.component.d.ts +1 -1
- package/common/localization/localized-messages.directive.d.ts +1 -1
- package/common/localization/messages.d.ts +2 -2
- package/common/progressbar-base.d.ts +1 -1
- package/common/util.d.ts +16 -6
- package/{esm2015/chunk/chunk-progressbar.component.js → esm2020/chunk/chunk-progressbar.component.mjs} +18 -13
- package/{esm2015/circularprogressbar/center-template.directive.js → esm2020/circularprogressbar/center-template.directive.mjs} +5 -5
- package/{esm2015/circularprogressbar/circular-progressbar.component.js → esm2020/circularprogressbar/circular-progressbar.component.mjs} +29 -26
- package/{esm2015/circularprogressbar/models/center-template-context.interface.js → esm2020/circularprogressbar/models/center-template-context.interface.mjs} +1 -1
- package/{esm2015/circularprogressbar/models/circular-progressbar-progress-color-interface.js → esm2020/circularprogressbar/models/circular-progressbar-progress-color-interface.mjs} +1 -1
- package/{esm2015/common/constants.js → esm2020/common/constants.mjs} +1 -1
- package/{esm2015/common/localization/custom-messages.component.js → esm2020/common/localization/custom-messages.component.mjs} +5 -4
- package/{esm2015/common/localization/localized-messages.directive.js → esm2020/common/localization/localized-messages.directive.mjs} +5 -4
- package/{esm2015/common/localization/messages.js → esm2020/common/localization/messages.mjs} +5 -8
- package/{esm2015/common/progressbar-base.js → esm2020/common/progressbar-base.mjs} +9 -8
- package/{esm2015/common/util.js → esm2020/common/util.mjs} +5 -5
- package/{esm2015/main.js → esm2020/index.mjs} +1 -1
- package/{esm2015/package-metadata.js → esm2020/package-metadata.mjs} +3 -3
- package/{esm2015/kendo-angular-progressbar.js → esm2020/progress-kendo-angular-progressbar.mjs} +2 -2
- package/{esm2015/progressbar.component.js → esm2020/progressbar.component.mjs} +8 -8
- package/{esm2015/progressbar.module.js → esm2020/progressbar.module.mjs} +5 -5
- package/{esm2015/types/label-fn-type.js → esm2020/types/animation-end-event.mjs} +1 -1
- package/{esm2015/types/animation-end-event.js → esm2020/types/animation-options.interface.mjs} +1 -1
- package/{esm2015/types/animation-options.interface.js → esm2020/types/label-fn-type.mjs} +1 -1
- package/esm2020/types/label-position.mjs +5 -0
- package/esm2020/types/label-settings.interface.mjs +5 -0
- package/esm2020/types/label-type.mjs +5 -0
- package/esm2020/types/progressbar-animation.interface.mjs +5 -0
- package/esm2020/types/progressbar-orientation.mjs +5 -0
- package/fesm2015/{kendo-angular-progressbar.js → progress-kendo-angular-progressbar.mjs} +79 -74
- package/fesm2020/progress-kendo-angular-progressbar.mjs +1456 -0
- package/{main.d.ts → index.d.ts} +1 -1
- package/package-metadata.d.ts +1 -1
- package/package.json +28 -54
- package/{kendo-angular-progressbar.d.ts → progress-kendo-angular-progressbar.d.ts} +2 -2
- package/progressbar.component.d.ts +1 -1
- package/progressbar.module.d.ts +1 -1
- package/schematics/ngAdd/index.js +1 -5
- package/types/animation-end-event.d.ts +1 -1
- package/types/animation-options.interface.d.ts +1 -1
- package/types/label-fn-type.d.ts +1 -1
- package/types/label-position.d.ts +1 -1
- package/types/label-settings.interface.d.ts +1 -1
- package/types/label-type.d.ts +1 -1
- package/types/progressbar-animation.interface.d.ts +1 -1
- package/types/progressbar-orientation.d.ts +1 -1
- package/bundles/kendo-angular-progressbar.umd.js +0 -5
- package/esm2015/types/label-position.js +0 -5
- package/esm2015/types/label-settings.interface.js +0 -5
- package/esm2015/types/label-type.js +0 -5
- package/esm2015/types/progressbar-animation.interface.js +0 -5
- package/esm2015/types/progressbar-orientation.js +0 -5
- package/schematics/ngAdd/index.js.map +0 -1
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2022 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import {
|
|
5
|
+
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
6
|
+
import { HostBinding, Input, Component, ElementRef, Renderer2 } from '@angular/core';
|
|
6
7
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
7
8
|
import { packageMetadata } from '../package-metadata';
|
|
8
9
|
import { validateRange, adjustValueToRange, calculateRatio, extractValueFromChanges } from './util';
|
|
@@ -142,11 +143,11 @@ export class ProgressBarBase {
|
|
|
142
143
|
const min = extractValueFromChanges(changes, 'min', this.min);
|
|
143
144
|
const max = extractValueFromChanges(changes, 'max', this.max);
|
|
144
145
|
const value = extractValueFromChanges(changes, 'value', this.value);
|
|
145
|
-
if (changes
|
|
146
|
-
if (changes
|
|
146
|
+
if (changes['min'] || changes['max'] || changes['value']) {
|
|
147
|
+
if (changes['min'] || changes['max']) {
|
|
147
148
|
validateRange(min, max);
|
|
148
149
|
}
|
|
149
|
-
if (changes
|
|
150
|
+
if (changes['value']) {
|
|
150
151
|
if (value == null || Number.isNaN(value)) {
|
|
151
152
|
this.value = min;
|
|
152
153
|
}
|
|
@@ -165,9 +166,9 @@ export class ProgressBarBase {
|
|
|
165
166
|
}
|
|
166
167
|
}
|
|
167
168
|
}
|
|
168
|
-
ProgressBarBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
169
|
-
ProgressBarBase.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "
|
|
170
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
169
|
+
ProgressBarBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ProgressBarBase, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
170
|
+
ProgressBarBase.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ProgressBarBase, selector: "ng-component", inputs: { max: "max", min: "min", value: "value", orientation: "orientation", disabled: "disabled", reverse: "reverse", indeterminate: "indeterminate" }, host: { properties: { "class.k-progressbar": "this.hostClasses", "class.k-progressbar-horizontal": "this.isHorizontal", "class.k-progressbar-vertical": "this.isVertical", "class.k-disabled": "this.disabledClass", "class.k-progressbar-reverse": "this.reverseClass", "class.k-progressbar-indeterminate": "this.indeterminateClass", "attr.dir": "this.dirAttribute", "attr.role": "this.roleAttribute", "attr.aria-valuemin": "this.ariaMinAttribute", "attr.aria-valuemax": "this.ariaMaxAttribute", "attr.aria-valuenow": "this.ariaValueAttribute" } }, usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
171
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ProgressBarBase, decorators: [{
|
|
171
172
|
type: Component,
|
|
172
173
|
args: [{
|
|
173
174
|
template: ''
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2022 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { LABEL_DECIMALS, MIN_MAX_ERROR_MESSAGE, MIN_RATIO } from './constants';
|
|
@@ -70,13 +70,13 @@ export const extractValueFromChanges = (changes, type, value) => changes[type] &
|
|
|
70
70
|
/**
|
|
71
71
|
* @hidden
|
|
72
72
|
*/
|
|
73
|
-
export const runAnimation = (changes, animation, previousValue, displayValue) => animation && typeof requestAnimationFrame !== 'undefined' && changes
|
|
73
|
+
export const runAnimation = (changes, animation, previousValue, displayValue) => animation && typeof requestAnimationFrame !== 'undefined' && changes['value'] && previousValue !== displayValue;
|
|
74
74
|
/**
|
|
75
75
|
* @hidden
|
|
76
76
|
*/
|
|
77
77
|
export const stopCurrentAnimation = (changes) => {
|
|
78
|
-
const isAnimationChanged = Boolean(changes
|
|
79
|
-
const hasAnimation = isAnimationChanged && changes
|
|
78
|
+
const isAnimationChanged = Boolean(changes['animation']);
|
|
79
|
+
const hasAnimation = isAnimationChanged && changes['animation'].currentValue;
|
|
80
80
|
return isAnimationChanged && !hasAnimation;
|
|
81
81
|
};
|
|
82
82
|
/**
|
|
@@ -99,5 +99,5 @@ export const removeProgressBarStyles = (props, renderer) => {
|
|
|
99
99
|
* @hidden
|
|
100
100
|
*/
|
|
101
101
|
export const hasElementSize = (element) => {
|
|
102
|
-
return element.style.width && element.style.height;
|
|
102
|
+
return !!(element.style.width && element.style.height);
|
|
103
103
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2022 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
export { ProgressBarComponent } from './progressbar.component';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2022 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-progressbar',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
12
|
+
publishDate: 1672394452,
|
|
13
13
|
version: '',
|
|
14
|
-
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license
|
|
14
|
+
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
package/{esm2015/kendo-angular-progressbar.js → esm2020/progress-kendo-angular-progressbar.mjs}
RENAMED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2022 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
6
6
|
* Generated bundle index. Do not edit.
|
|
7
7
|
*/
|
|
8
|
-
export * from './
|
|
8
|
+
export * from './index';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2022 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { ProgressBarBase } from './common/progressbar-base';
|
|
6
|
-
import { Component, Input, ViewChild, Output, EventEmitter } from '@angular/core';
|
|
6
|
+
import { Component, Input, NgZone, Renderer2, ViewChild, ElementRef, Output, EventEmitter } from '@angular/core';
|
|
7
7
|
import { formatValue, calculateRatio, runAnimation, stopCurrentAnimation } from './common/util';
|
|
8
8
|
import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
9
9
|
import { hasObservers } from '@progress/kendo-angular-common';
|
|
@@ -114,7 +114,7 @@ export class ProgressBarComponent extends ProgressBarBase {
|
|
|
114
114
|
if (this.isAnimationInProgress && stopCurrentAnimation(changes)) {
|
|
115
115
|
this.cancelCurrentAnimation = true;
|
|
116
116
|
}
|
|
117
|
-
if (runAnimation(changes, this.animation, this.previousValue, this.displayValue) && !changes
|
|
117
|
+
if (runAnimation(changes, this.animation, this.previousValue, this.displayValue) && !changes['value'].firstChange) {
|
|
118
118
|
this.startAnimation(this.previousValue);
|
|
119
119
|
}
|
|
120
120
|
}
|
|
@@ -218,8 +218,8 @@ export class ProgressBarComponent extends ProgressBarBase {
|
|
|
218
218
|
});
|
|
219
219
|
}
|
|
220
220
|
}
|
|
221
|
-
ProgressBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
222
|
-
ProgressBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "
|
|
221
|
+
ProgressBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ProgressBarComponent, deps: [{ token: i1.LocalizationService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
222
|
+
ProgressBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ProgressBarComponent, selector: "kendo-progressbar", inputs: { label: "label", progressCssStyle: "progressCssStyle", progressCssClass: "progressCssClass", emptyCssStyle: "emptyCssStyle", emptyCssClass: "emptyCssClass", animation: "animation" }, outputs: { animationEnd: "animationEnd" }, providers: [
|
|
223
223
|
LocalizationService,
|
|
224
224
|
{
|
|
225
225
|
provide: L10N_PREFIX,
|
|
@@ -241,7 +241,7 @@ ProgressBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
241
241
|
</span>
|
|
242
242
|
<div
|
|
243
243
|
#progressStatus
|
|
244
|
-
class="k-selected"
|
|
244
|
+
class="k-selected k-progressbar-value"
|
|
245
245
|
[class.k-complete]="isCompleted"
|
|
246
246
|
[ngStyle]="progressCssStyle"
|
|
247
247
|
[ngClass]="progressCssClass"
|
|
@@ -261,7 +261,7 @@ ProgressBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
261
261
|
</span>
|
|
262
262
|
</div>
|
|
263
263
|
`, isInline: true, directives: [{ type: i2.LocalizedProgressBarMessagesDirective, selector: "[kendoProgressBarLocalizedMessages]" }, { type: i3.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
264
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
264
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ProgressBarComponent, decorators: [{
|
|
265
265
|
type: Component,
|
|
266
266
|
args: [{
|
|
267
267
|
exportAs: 'kendoProgressBar',
|
|
@@ -282,7 +282,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
282
282
|
</span>
|
|
283
283
|
<div
|
|
284
284
|
#progressStatus
|
|
285
|
-
class="k-selected"
|
|
285
|
+
class="k-selected k-progressbar-value"
|
|
286
286
|
[class.k-complete]="isCompleted"
|
|
287
287
|
[ngStyle]="progressCssStyle"
|
|
288
288
|
[ngClass]="progressCssClass"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2022 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { ChunkProgressBarComponent } from './chunk/chunk-progressbar.component';
|
|
@@ -54,8 +54,8 @@ const MODULES = [CommonModule, ResizeSensorModule];
|
|
|
54
54
|
*/
|
|
55
55
|
export class ProgressBarModule {
|
|
56
56
|
}
|
|
57
|
-
ProgressBarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
58
|
-
ProgressBarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "
|
|
57
|
+
ProgressBarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ProgressBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
58
|
+
ProgressBarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ProgressBarModule, declarations: [ProgressBarComponent,
|
|
59
59
|
ChunkProgressBarComponent,
|
|
60
60
|
CircularProgressBarComponent,
|
|
61
61
|
CircularProgressbarCenterTemplateDirective,
|
|
@@ -66,8 +66,8 @@ ProgressBarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", versi
|
|
|
66
66
|
CircularProgressbarCenterTemplateDirective,
|
|
67
67
|
LocalizedProgressBarMessagesDirective,
|
|
68
68
|
ProgressBarCustomMessagesComponent] });
|
|
69
|
-
ProgressBarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
70
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
69
|
+
ProgressBarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ProgressBarModule, imports: [MODULES] });
|
|
70
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ProgressBarModule, decorators: [{
|
|
71
71
|
type: NgModule,
|
|
72
72
|
args: [{
|
|
73
73
|
declarations: COMPONENT_DIRECTIVES,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2022 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
export {};
|
package/{esm2015/types/animation-end-event.js → esm2020/types/animation-options.interface.mjs}
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2022 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2022 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2022 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2022 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2022 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2022 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2022 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
export {};
|