@cuby-ui/core 0.0.537 → 0.0.539
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/esm2022/widgets/model/index.mjs +2 -2
- package/esm2022/widgets/model/loader.options.mjs +2 -0
- package/esm2022/widgets/ui/index.mjs +2 -4
- package/esm2022/widgets/ui/{circle-loader → loader/components/circle-loader}/circle-loader.component.mjs +6 -3
- package/esm2022/widgets/ui/loader/components/circle-loader/index.mjs +2 -0
- package/esm2022/widgets/ui/loader/components/index.mjs +5 -0
- package/esm2022/widgets/ui/loader/components/linear-loader/index.mjs +2 -0
- package/esm2022/widgets/ui/loader/components/linear-loader/linear-loader.component.mjs +23 -0
- package/esm2022/widgets/ui/loader/components/pulse-loader/index.mjs +2 -0
- package/esm2022/widgets/ui/loader/components/pulse-loader/pulse-loader.component.mjs +23 -0
- package/esm2022/widgets/ui/loader/components/stated-loader/index.mjs +2 -0
- package/esm2022/widgets/ui/loader/components/stated-loader/stated-loader.component.mjs +40 -0
- package/esm2022/widgets/ui/loader/index.mjs +3 -0
- package/esm2022/widgets/ui/loader/loader.component.mjs +18 -0
- package/esm2022/widgets/ui/utility-modal/components/utility-modal-create/utility-modal-create.component.mjs +4 -4
- package/fesm2022/cuby-ui-core.mjs +77 -22
- package/fesm2022/cuby-ui-core.mjs.map +1 -1
- package/package.json +4 -4
- package/styles/theme.scss +28 -0
- package/styles/variables/colors.scss +14 -0
- package/widgets/model/index.d.ts +1 -1
- package/widgets/model/loader.options.d.ts +4 -0
- package/widgets/ui/index.d.ts +1 -3
- package/widgets/ui/{circle-loader → loader/components/circle-loader}/circle-loader.component.d.ts +6 -3
- package/widgets/ui/loader/components/circle-loader/index.d.ts +1 -0
- package/widgets/ui/loader/components/index.d.ts +4 -0
- package/widgets/ui/loader/components/linear-loader/index.d.ts +1 -0
- package/widgets/ui/loader/components/linear-loader/linear-loader.component.d.ts +12 -0
- package/widgets/ui/loader/components/pulse-loader/index.d.ts +1 -0
- package/widgets/ui/loader/components/pulse-loader/pulse-loader.component.d.ts +12 -0
- package/widgets/ui/loader/components/stated-loader/index.d.ts +1 -0
- package/widgets/ui/{stated-loader → loader/components/stated-loader}/stated-loader.component.d.ts +6 -2
- package/widgets/ui/loader/index.d.ts +2 -0
- package/widgets/ui/loader/loader.component.d.ts +10 -0
- package/esm2022/widgets/model/circle-loader-size.type.mjs +0 -2
- package/esm2022/widgets/ui/circle-loader/index.mjs +0 -2
- package/esm2022/widgets/ui/linear-loader/index.mjs +0 -2
- package/esm2022/widgets/ui/linear-loader/linear-loader.component.mjs +0 -11
- package/esm2022/widgets/ui/stated-loader/index.mjs +0 -2
- package/esm2022/widgets/ui/stated-loader/stated-loader.component.mjs +0 -36
- package/widgets/model/circle-loader-size.type.d.ts +0 -2
- package/widgets/ui/circle-loader/index.d.ts +0 -1
- package/widgets/ui/linear-loader/index.d.ts +0 -1
- package/widgets/ui/linear-loader/linear-loader.component.d.ts +0 -5
- package/widgets/ui/stated-loader/index.d.ts +0 -1
|
@@ -8211,10 +8211,76 @@ function processChunk(line, observer) {
|
|
|
8211
8211
|
}
|
|
8212
8212
|
}
|
|
8213
8213
|
|
|
8214
|
+
/**
|
|
8215
|
+
* @deprecated Use CuiLoaderComponent with type="circle" instead
|
|
8216
|
+
*/
|
|
8217
|
+
class CuiCircleLoaderComponent {
|
|
8218
|
+
constructor() {
|
|
8219
|
+
this.position = input('auto');
|
|
8220
|
+
this.size = input('md');
|
|
8221
|
+
this.color = input('var(--cui-base-900)');
|
|
8222
|
+
}
|
|
8223
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CuiCircleLoaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8224
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.14", type: CuiCircleLoaderComponent, isStandalone: true, selector: "cui-circle-loader", inputs: { position: { classPropertyName: "position", publicName: "position", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, color: { classPropertyName: "color", publicName: "color", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "class": "size()", "class._center": "position() === \"center\"" } }, ngImport: i0, template: "<cui-svg\n icon=\"cuiIconLoading\"\n [color]=\"color()\"\n class=\"loading\"\n/>\n", styles: [".loading{animation:rotate 1s linear infinite}@keyframes rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}:host.xxs ::ng-deep svg{width:12px}:host.xs ::ng-deep svg{width:16px}:host.sm ::ng-deep svg{width:20px}:host.md ::ng-deep svg{width:32px}:host.lg ::ng-deep svg{width:64px}:host._center{display:flex;flex-direction:row;gap:0;align-items:center;justify-content:center}\n"], dependencies: [{ kind: "ngmodule", type: CuiSvgModule }, { kind: "component", type: CuiSvgComponent, selector: "cui-svg[icon]", inputs: ["width", "height", "strokeWidth", "color", "icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8225
|
+
}
|
|
8226
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CuiCircleLoaderComponent, decorators: [{
|
|
8227
|
+
type: Component,
|
|
8228
|
+
args: [{ selector: 'cui-circle-loader', standalone: true, imports: [CuiSvgModule], changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
8229
|
+
'[class]': 'size()',
|
|
8230
|
+
'[class._center]': 'position() === "center"'
|
|
8231
|
+
}, template: "<cui-svg\n icon=\"cuiIconLoading\"\n [color]=\"color()\"\n class=\"loading\"\n/>\n", styles: [".loading{animation:rotate 1s linear infinite}@keyframes rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}:host.xxs ::ng-deep svg{width:12px}:host.xs ::ng-deep svg{width:16px}:host.sm ::ng-deep svg{width:20px}:host.md ::ng-deep svg{width:32px}:host.lg ::ng-deep svg{width:64px}:host._center{display:flex;flex-direction:row;gap:0;align-items:center;justify-content:center}\n"] }]
|
|
8232
|
+
}] });
|
|
8233
|
+
|
|
8234
|
+
/**
|
|
8235
|
+
* @deprecated Use CuiLoaderComponent with type="linear" instead
|
|
8236
|
+
*/
|
|
8237
|
+
class CuiLinearLoaderComponent {
|
|
8238
|
+
constructor() {
|
|
8239
|
+
this.position = input('auto');
|
|
8240
|
+
this.size = input('sm');
|
|
8241
|
+
this.color = input('var(--cui-blue-500)');
|
|
8242
|
+
}
|
|
8243
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CuiLinearLoaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8244
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.14", type: CuiLinearLoaderComponent, isStandalone: true, selector: "cui-linear-loader", inputs: { position: { classPropertyName: "position", publicName: "position", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, color: { classPropertyName: "color", publicName: "color", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "class": "size()", "class._center": "position() === \"center\"", "style.--loader-color": "color()" } }, ngImport: i0, template: "<div class=\"loader\"></div>\n", styles: [":host{display:block;position:relative;width:100%;overflow:hidden}:host._center{display:flex;flex-direction:row;gap:0;align-items:center;justify-content:center}:host.xxs{height:2px}:host.xs{height:3px}:host.sm{height:4px}:host.md{height:6px}:host.lg{height:8px}.loader{animation:loader-move 15s linear infinite;position:absolute;right:0;width:200%;height:100%;border:none;transform:skew(-60deg);background:repeating-linear-gradient(to right,var(--loader-color, var(--cui-blue-500)) 0px,var(--loader-color, var(--cui-blue-500)) 7px,transparent 7px,transparent 14px);background-size:14px 100%}@media (max-width: 1440px){.loader{animation-duration:10s}}@media (max-width: 1024px){.loader{animation-duration:8s}}@media (max-width: 768px){.loader{animation-duration:5s}}@keyframes loader-move{0%{background-position:0 0}to{background-position:100% 0}}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8245
|
+
}
|
|
8246
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CuiLinearLoaderComponent, decorators: [{
|
|
8247
|
+
type: Component,
|
|
8248
|
+
args: [{ selector: 'cui-linear-loader', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
8249
|
+
'[class]': 'size()',
|
|
8250
|
+
'[class._center]': 'position() === "center"',
|
|
8251
|
+
'[style.--loader-color]': 'color()'
|
|
8252
|
+
}, template: "<div class=\"loader\"></div>\n", styles: [":host{display:block;position:relative;width:100%;overflow:hidden}:host._center{display:flex;flex-direction:row;gap:0;align-items:center;justify-content:center}:host.xxs{height:2px}:host.xs{height:3px}:host.sm{height:4px}:host.md{height:6px}:host.lg{height:8px}.loader{animation:loader-move 15s linear infinite;position:absolute;right:0;width:200%;height:100%;border:none;transform:skew(-60deg);background:repeating-linear-gradient(to right,var(--loader-color, var(--cui-blue-500)) 0px,var(--loader-color, var(--cui-blue-500)) 7px,transparent 7px,transparent 14px);background-size:14px 100%}@media (max-width: 1440px){.loader{animation-duration:10s}}@media (max-width: 1024px){.loader{animation-duration:8s}}@media (max-width: 768px){.loader{animation-duration:5s}}@keyframes loader-move{0%{background-position:0 0}to{background-position:100% 0}}\n"] }]
|
|
8253
|
+
}] });
|
|
8254
|
+
|
|
8255
|
+
/**
|
|
8256
|
+
* @deprecated Use CuiLoaderComponent with type="pulse" instead
|
|
8257
|
+
*/
|
|
8258
|
+
class CuiPulseLoaderComponent {
|
|
8259
|
+
constructor() {
|
|
8260
|
+
this.position = input('auto');
|
|
8261
|
+
this.size = input('md');
|
|
8262
|
+
this.color = input('var(--cui-lavender-400)');
|
|
8263
|
+
}
|
|
8264
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CuiPulseLoaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8265
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.14", type: CuiPulseLoaderComponent, isStandalone: true, selector: "cui-pulse-loader", inputs: { position: { classPropertyName: "position", publicName: "position", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, color: { classPropertyName: "color", publicName: "color", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "class": "size()", "class._center": "position() === \"center\"", "style.--pulse-color": "color()" } }, ngImport: i0, template: "<svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n class=\"footer__loader loader-svg\"\n>\n <circle\n class=\"loader-circle\"\n opacity=\"0.5\"\n cx=\"12.0255\"\n cy=\"11.965\"\n r=\"3.70326\"\n />\n <circle\n class=\"loader-circle\"\n opacity=\"0.5\"\n cx=\"12.0255\"\n cy=\"11.965\"\n r=\"3.70326\"\n />\n <circle\n class=\"loader-circle\"\n opacity=\"0.5\"\n cx=\"12.0255\"\n cy=\"11.965\"\n r=\"3.70326\"\n />\n <circle\n class=\"loader-circle\"\n opacity=\"0.5\"\n cx=\"12.0255\"\n cy=\"11.965\"\n r=\"3.70326\"\n />\n</svg>\n<span class=\"text\">\n <ng-content />\n</span>\n", styles: [":host{display:flex;flex-direction:row;gap:0;align-items:center;justify-content:flex-start}:host._center{align-items:center;justify-content:center}:host.xxs .loader-svg{width:12px;height:12px}:host.xs .loader-svg{width:16px;height:16px}:host.sm .loader-svg{width:20px;height:20px}:host.md .loader-svg{width:24px;height:24px}:host.lg .loader-svg{width:32px;height:32px}.loader-circle{fill:var(--pulse-color, var(--cui-lavender-400));transform-origin:center;animation:pulse 1.5s linear infinite}.loader-circle:nth-child(1){animation-delay:0s}.loader-circle:nth-child(2){animation-delay:.5s}.loader-circle:nth-child(3){animation-delay:1s}.loader-circle:nth-child(4){animation:none}@keyframes pulse{0%{transform:scale(.5);opacity:0}50%{transform:scale(1);opacity:1}to{transform:scale(2);opacity:0}}.text{font-weight:400;font-size:14px;line-height:20px;color:var(--cui-base-400)}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8266
|
+
}
|
|
8267
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CuiPulseLoaderComponent, decorators: [{
|
|
8268
|
+
type: Component,
|
|
8269
|
+
args: [{ selector: 'cui-pulse-loader', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
8270
|
+
'[class]': 'size()',
|
|
8271
|
+
'[class._center]': 'position() === "center"',
|
|
8272
|
+
'[style.--pulse-color]': 'color()'
|
|
8273
|
+
}, template: "<svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n class=\"footer__loader loader-svg\"\n>\n <circle\n class=\"loader-circle\"\n opacity=\"0.5\"\n cx=\"12.0255\"\n cy=\"11.965\"\n r=\"3.70326\"\n />\n <circle\n class=\"loader-circle\"\n opacity=\"0.5\"\n cx=\"12.0255\"\n cy=\"11.965\"\n r=\"3.70326\"\n />\n <circle\n class=\"loader-circle\"\n opacity=\"0.5\"\n cx=\"12.0255\"\n cy=\"11.965\"\n r=\"3.70326\"\n />\n <circle\n class=\"loader-circle\"\n opacity=\"0.5\"\n cx=\"12.0255\"\n cy=\"11.965\"\n r=\"3.70326\"\n />\n</svg>\n<span class=\"text\">\n <ng-content />\n</span>\n", styles: [":host{display:flex;flex-direction:row;gap:0;align-items:center;justify-content:flex-start}:host._center{align-items:center;justify-content:center}:host.xxs .loader-svg{width:12px;height:12px}:host.xs .loader-svg{width:16px;height:16px}:host.sm .loader-svg{width:20px;height:20px}:host.md .loader-svg{width:24px;height:24px}:host.lg .loader-svg{width:32px;height:32px}.loader-circle{fill:var(--pulse-color, var(--cui-lavender-400));transform-origin:center;animation:pulse 1.5s linear infinite}.loader-circle:nth-child(1){animation-delay:0s}.loader-circle:nth-child(2){animation-delay:.5s}.loader-circle:nth-child(3){animation-delay:1s}.loader-circle:nth-child(4){animation:none}@keyframes pulse{0%{transform:scale(.5);opacity:0}50%{transform:scale(1);opacity:1}to{transform:scale(2);opacity:0}}.text{font-weight:400;font-size:14px;line-height:20px;color:var(--cui-base-400)}\n"] }]
|
|
8274
|
+
}] });
|
|
8275
|
+
|
|
8276
|
+
/**
|
|
8277
|
+
* @deprecated Use CuiLoaderComponent with type="stated" instead
|
|
8278
|
+
*/
|
|
8214
8279
|
class CuiStatedLoaderComponent {
|
|
8215
8280
|
constructor() {
|
|
8216
8281
|
this.loaderService = inject(CuiLoaderService);
|
|
8217
8282
|
this.translocoService = inject(TranslocoService);
|
|
8283
|
+
this.color = input('var(--cui-base-500)');
|
|
8218
8284
|
this.state = CuiLoadingState;
|
|
8219
8285
|
this.LoaderString = {
|
|
8220
8286
|
[CuiLoadingState.LOADING]: `${this.translocoService.translate('SAVING')}...`,
|
|
@@ -8234,37 +8300,26 @@ class CuiStatedLoaderComponent {
|
|
|
8234
8300
|
this.loaderService.reset();
|
|
8235
8301
|
}
|
|
8236
8302
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CuiStatedLoaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8237
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: CuiStatedLoaderComponent, isStandalone: true, selector: "cui-stated-loader", ngImport: i0, template: "@if (loaderState() !== state.INITIAL) {\n <cui-svg\n [icon]=\"loaderIcon()\"\n color=\"
|
|
8303
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: CuiStatedLoaderComponent, isStandalone: true, selector: "cui-stated-loader", inputs: { color: { classPropertyName: "color", publicName: "color", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "@if (loaderState() !== state.INITIAL) {\n <cui-svg\n [icon]=\"loaderIcon()\"\n [color]=\"color()\"\n [class.icon_loading]=\"loaderState() === state.LOADING\"\n />\n <span>{{ loaderString() }}</span>\n}\n", styles: [":host{padding:6px 8px;font-weight:500;font-size:12px;line-height:14px;display:flex;align-items:center;gap:6px;color:var(--cui-base-500)}.icon_loading{animation:spin 1s ease-in-out infinite}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(-360deg)}}\n"], dependencies: [{ kind: "ngmodule", type: CuiSvgModule }, { kind: "component", type: CuiSvgComponent, selector: "cui-svg[icon]", inputs: ["width", "height", "strokeWidth", "color", "icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8238
8304
|
}
|
|
8239
8305
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CuiStatedLoaderComponent, decorators: [{
|
|
8240
8306
|
type: Component,
|
|
8241
|
-
args: [{ selector: 'cui-stated-loader', imports: [CuiSvgModule], standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, template: "@if (loaderState() !== state.INITIAL) {\n <cui-svg\n [icon]=\"loaderIcon()\"\n color=\"
|
|
8307
|
+
args: [{ selector: 'cui-stated-loader', imports: [CuiSvgModule], standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, template: "@if (loaderState() !== state.INITIAL) {\n <cui-svg\n [icon]=\"loaderIcon()\"\n [color]=\"color()\"\n [class.icon_loading]=\"loaderState() === state.LOADING\"\n />\n <span>{{ loaderString() }}</span>\n}\n", styles: [":host{padding:6px 8px;font-weight:500;font-size:12px;line-height:14px;display:flex;align-items:center;gap:6px;color:var(--cui-base-500)}.icon_loading{animation:spin 1s ease-in-out infinite}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(-360deg)}}\n"] }]
|
|
8242
8308
|
}] });
|
|
8243
8309
|
|
|
8244
|
-
class
|
|
8310
|
+
class CuiLoaderComponent {
|
|
8245
8311
|
constructor() {
|
|
8312
|
+
this.type = input('circle');
|
|
8246
8313
|
this.position = input('auto');
|
|
8247
8314
|
this.size = input('md');
|
|
8248
8315
|
this.color = input('var(--cui-base-900)');
|
|
8249
8316
|
}
|
|
8250
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
8251
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.
|
|
8317
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CuiLoaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8318
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: CuiLoaderComponent, isStandalone: true, selector: "cui-loader", inputs: { type: { classPropertyName: "type", publicName: "type", isSignal: true, isRequired: false, transformFunction: null }, position: { classPropertyName: "position", publicName: "position", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, color: { classPropertyName: "color", publicName: "color", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "@switch (type()) {\n @case ('circle') {\n <cui-circle-loader\n [position]=\"position()\"\n [size]=\"size()\"\n [color]=\"color()\"\n />\n }\n @case ('stated') {\n <cui-stated-loader [color]=\"color()\" />\n }\n @case ('linear') {\n <cui-linear-loader\n [position]=\"position()\"\n [size]=\"size()\"\n [color]=\"color()\"\n />\n }\n @case ('pulse') {\n <cui-pulse-loader\n [position]=\"position()\"\n [size]=\"size()\"\n [color]=\"color()\"\n >\n <ng-content />\n </cui-pulse-loader>\n }\n}\n", dependencies: [{ kind: "component", type: CuiCircleLoaderComponent, selector: "cui-circle-loader", inputs: ["position", "size", "color"] }, { kind: "component", type: CuiLinearLoaderComponent, selector: "cui-linear-loader", inputs: ["position", "size", "color"] }, { kind: "component", type: CuiPulseLoaderComponent, selector: "cui-pulse-loader", inputs: ["position", "size", "color"] }, { kind: "component", type: CuiStatedLoaderComponent, selector: "cui-stated-loader", inputs: ["color"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8252
8319
|
}
|
|
8253
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type:
|
|
8254
|
-
type: Component,
|
|
8255
|
-
args: [{ selector: 'cui-circle-loader', standalone: true, imports: [CuiSvgModule], changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
8256
|
-
'[class]': 'size()',
|
|
8257
|
-
'[class._center]': 'position() === "center"'
|
|
8258
|
-
}, template: "<cui-svg\n icon=\"cuiIconLoading\"\n [color]=\"color()\"\n class=\"loading\"\n/>\n", styles: [".loading{animation:rotate 1s linear infinite}@keyframes rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}:host.xxs ::ng-deep svg{width:12px}:host.xs ::ng-deep svg{width:16px}:host.sm ::ng-deep svg{width:20px}:host.md ::ng-deep svg{width:32px}:host.lg ::ng-deep svg{width:64px}:host._center{display:flex;flex-direction:row;gap:0;align-items:center;justify-content:center}\n"] }]
|
|
8259
|
-
}] });
|
|
8260
|
-
|
|
8261
|
-
class CuiLinearLoaderComponent {
|
|
8262
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CuiLinearLoaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8263
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: CuiLinearLoaderComponent, isStandalone: true, selector: "cui-linear-loader", ngImport: i0, template: "<div class=\"loader\"></div>\n", styles: [":host{display:block;position:relative;width:100%;height:4px;overflow:hidden}.loader{animation:loader-move 15s linear infinite;position:absolute;right:0;width:200%;height:100%;border:none;transform:skew(-60deg);background:repeating-linear-gradient(to right,var(--cui-blue-500) 0px,var(--cui-blue-500) 7px,transparent 7px,transparent 14px);background-size:14px 100%}@media (max-width: 1440px){.loader{animation-duration:10s}}@media (max-width: 1024px){.loader{animation-duration:8s}}@media (max-width: 768px){.loader{animation-duration:5s}}@keyframes loader-move{0%{background-position:0 0}to{background-position:100% 0}}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8264
|
-
}
|
|
8265
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CuiLinearLoaderComponent, decorators: [{
|
|
8320
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CuiLoaderComponent, decorators: [{
|
|
8266
8321
|
type: Component,
|
|
8267
|
-
args: [{ selector: 'cui-
|
|
8322
|
+
args: [{ selector: 'cui-loader', standalone: true, imports: [CuiCircleLoaderComponent, CuiLinearLoaderComponent, CuiPulseLoaderComponent, CuiStatedLoaderComponent], changeDetection: ChangeDetectionStrategy.OnPush, template: "@switch (type()) {\n @case ('circle') {\n <cui-circle-loader\n [position]=\"position()\"\n [size]=\"size()\"\n [color]=\"color()\"\n />\n }\n @case ('stated') {\n <cui-stated-loader [color]=\"color()\" />\n }\n @case ('linear') {\n <cui-linear-loader\n [position]=\"position()\"\n [size]=\"size()\"\n [color]=\"color()\"\n />\n }\n @case ('pulse') {\n <cui-pulse-loader\n [position]=\"position()\"\n [size]=\"size()\"\n [color]=\"color()\"\n >\n <ng-content />\n </cui-pulse-loader>\n }\n}\n" }]
|
|
8268
8323
|
}] });
|
|
8269
8324
|
|
|
8270
8325
|
class CuiDeleteModalComponent {
|
|
@@ -9863,11 +9918,11 @@ class CuiUtilityModalCreateComponent {
|
|
|
9863
9918
|
this.utilityModalService.deleteUtility(utility).subscribe();
|
|
9864
9919
|
}
|
|
9865
9920
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CuiUtilityModalCreateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
9866
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: CuiUtilityModalCreateComponent, isStandalone: true, selector: "cui-utility-modal-create", inputs: { initialUtility: { classPropertyName: "initialUtility", publicName: "initialUtility", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: "<div\n class=\"wrapper\"\n *transloco=\"let t\"\n>\n <header class=\"header\">\n <ng-container [ngTemplateOutlet]=\"header\" />\n\n <div class=\"header__content\">\n <cui-stated-
|
|
9921
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: CuiUtilityModalCreateComponent, isStandalone: true, selector: "cui-utility-modal-create", inputs: { initialUtility: { classPropertyName: "initialUtility", publicName: "initialUtility", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: "<div\n class=\"wrapper\"\n *transloco=\"let t\"\n>\n <header class=\"header\">\n <ng-container [ngTemplateOutlet]=\"header\" />\n\n <div class=\"header__content\">\n <cui-loader\n type=\"stated\"\n color=\"var(--cui-base-500)\"\n />\n\n <div class=\"actions\">\n @if (!initialUtility()) {\n <button\n type=\"button\"\n cuiButton\n appearance=\"secondary\"\n (click)=\"onCancel()\"\n >\n {{ t('CANCEL') }}\n </button>\n }\n\n <button\n type=\"button\"\n cuiButton\n [disabled]=\"!isFormValid()\"\n appearance=\"action-violet\"\n (click)=\"onSave()\"\n >\n {{ t('DONE') }}\n </button>\n </div>\n </div>\n </header>\n\n <ng-content />\n</div>\n", styles: [".header{display:flex;flex-direction:row;gap:0;align-items:center;justify-content:space-between;padding:16px 24px}.header__content{display:flex;flex-direction:row;gap:8px}.actions{display:flex;flex-direction:row;gap:16px}\n"], dependencies: [{ kind: "ngmodule", type: CuiButtonModule }, { kind: "component", type: CuiButtonComponent, selector: "button[cuiButton], a[cuiButton]", inputs: ["shape", "disabled", "isLoaderShown", "icon", "iconRight", "appearance", "theme", "size"] }, { kind: "component", type: CuiLoaderComponent, selector: "cui-loader", inputs: ["type", "position", "size", "color"] }, { kind: "ngmodule", type: CuiSvgModule }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: TranslocoDirective, selector: "[transloco]", inputs: ["transloco", "translocoParams", "translocoScope", "translocoRead", "translocoPrefix", "translocoLang", "translocoLoadingTpl"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
9867
9922
|
}
|
|
9868
9923
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CuiUtilityModalCreateComponent, decorators: [{
|
|
9869
9924
|
type: Component,
|
|
9870
|
-
args: [{ selector: 'cui-utility-modal-create', imports: [CuiButtonModule,
|
|
9925
|
+
args: [{ selector: 'cui-utility-modal-create', imports: [CuiButtonModule, CuiLoaderComponent, CuiSvgModule, NgTemplateOutlet, TranslocoDirective], standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, template: "<div\n class=\"wrapper\"\n *transloco=\"let t\"\n>\n <header class=\"header\">\n <ng-container [ngTemplateOutlet]=\"header\" />\n\n <div class=\"header__content\">\n <cui-loader\n type=\"stated\"\n color=\"var(--cui-base-500)\"\n />\n\n <div class=\"actions\">\n @if (!initialUtility()) {\n <button\n type=\"button\"\n cuiButton\n appearance=\"secondary\"\n (click)=\"onCancel()\"\n >\n {{ t('CANCEL') }}\n </button>\n }\n\n <button\n type=\"button\"\n cuiButton\n [disabled]=\"!isFormValid()\"\n appearance=\"action-violet\"\n (click)=\"onSave()\"\n >\n {{ t('DONE') }}\n </button>\n </div>\n </div>\n </header>\n\n <ng-content />\n</div>\n", styles: [".header{display:flex;flex-direction:row;gap:0;align-items:center;justify-content:space-between;padding:16px 24px}.header__content{display:flex;flex-direction:row;gap:8px}.actions{display:flex;flex-direction:row;gap:16px}\n"] }]
|
|
9871
9926
|
}] });
|
|
9872
9927
|
|
|
9873
9928
|
class CuiCriterionModalCreateComponent {
|
|
@@ -12500,5 +12555,5 @@ function handleError(handler, useDefaultError = true) {
|
|
|
12500
12555
|
* Generated bundle index. Do not edit.
|
|
12501
12556
|
*/
|
|
12502
12557
|
|
|
12503
|
-
export { AlertHintComponent, AngularOutsideLoaderService, AssigneeRoleItemComponent, AssigneeRolesTabsComponent, ButtonChangeThemeComponent, CUI_ACTIVITY_SERVICE_TOKEN, CUI_ALERTS, CUI_ALERT_CONTEXT, CUI_ALERT_DEFAULT_OPTIONS, CUI_ALERT_OPTIONS, CUI_ANIMATIONS_DEFAULT_DURATION, CUI_BANNER_DEFAULT_OPTIONS, CUI_BANNER_OPTIONS, CUI_BUTTON_DEFAULT_OPTIONS, CUI_BUTTON_OPTIONS, CUI_DEFAULT_THEME, CUI_DIALOGS, CUI_DIALOG_CONTEXT, CUI_DIALOG_DEFAULT_OPTIONS, CUI_DIALOG_OPTIONS, CUI_INPUT_TIME_DEFAULT_OPTIONS, CUI_INPUT_TIME_OPTIONS, CUI_NOTIFICATION_DEFAULT_OPTIONS, CUI_NOTIFICATION_ICONS, CUI_NOTIFICATION_ICON_OPTIONS, CUI_NOTIFICATION_ICON_OPTIONS_DEFAULT_MODE, CUI_NOTIFICATION_ICON_OPTIONS_LIGHT_MODE, CUI_NOTIFICATION_OPTIONS, CUI_RESOURCE_STATE_SERVICE_TOKEN, CUI_ROOT_SELECTOR, CUI_STORAGE_LIST_SERVICE_TOKEN, CUI_SUBJECT_MODAL_SERVICE_TOKEN, CUI_TABS_SERVICE_TOKEN, CUI_TEXT_FIELD_CONTROLLER, CUI_TEXT_FIELD_ICON_LEFT, CUI_TEXT_FIELD_ID, CUI_TEXT_FIELD_IS_ERROR, CUI_TEXT_FIELD_PLACEHOLDER, CUI_TEXT_FIELD_SIZE, CUI_TEXT_FILED_CONTROLLER_PROVIDER, CUI_THEME, CUI_THEME_STORAGE_DEFAULT_KEY, CUI_THEME_STORAGE_KEY, CUI_TOOLTIP_COMPONENT, CUI_TOOLTIP_DEFAULT_OPTIONS, CUI_TOOLTIP_DIRECTIONS, CUI_TOOLTIP_OPTIONS, CUI_TOOLTIP_PROVIDERS, CUI_USED_ELEMENTS_SERVICE_TOKEN, CUI_UTILITY_SERVICE_TOKEN, ContentHeaderComponent, CuiAbstractTabsComponent, CuiAccordionComponent, CuiAccordionDirective, CuiAccordionItemComponent, CuiAccordionModule, CuiActivityBaseService, CuiActivityImplService, CuiAlertComponent, CuiAlertModule, CuiAlertService, CuiAlertsComponent, CuiAttachesTool, CuiAuthBase, CuiAuthService, CuiBadgeComponent, CuiBadgeModule, CuiBannerComponent, CuiBannerModule, CuiBreadcrumbComponent, CuiBreadcrumbsComponent, CuiBreadcrumbsModule, CuiButtonComponent, CuiButtonGroupComponent, CuiButtonGroupModule, CuiButtonModule, CuiCardWrapperComponent, CuiCategoriesComponent, CuiCheckboxComponent, CuiCheckboxModule, CuiChecklistBlockComponent, CuiCircleLoaderComponent, CuiContentWrapperComponent, CuiContextMenuComponent, CuiContextMenuModule, CuiCriterionInfoComponent, CuiCriterionInfoFormComponent, CuiCriterionModalCreateComponent, CuiCriterionReadonlyInfoComponent, CuiDeleteModalComponent, CuiDialogActionsComponent, CuiDialogComponent, CuiDialogHeaderComponent, CuiDialogModule, CuiDialogService, CuiDialogsComponent, CuiDropdownDirective, CuiDropdownWrapperComponent, CuiEditorBlockComponent, CuiEditorComponent, CuiEditorModalComponent, CuiEditorReadonlyComponent, CuiEditorTranslations, CuiEmptyStateComponent, CuiFileIconComponent, CuiFileUploader, CuiFileUploaderStatus, CuiFormFieldComponent, CuiFormFieldModule, CuiFramerPreviewComponent, CuiGeneralControlErrorHintComponent, CuiGhostInputComponent, CuiGlobalErrorHandler, CuiHeaderTool, CuiHintComponent, CuiHintModule, CuiIconButtonComponent, CuiIconButtonModule, CuiImageTool, CuiInputModule, CuiInputNumberComponent, CuiInputNumberModule, CuiInputPasswordComponent, CuiInputPasswordModule, CuiInputTextComponent, CuiInputTimeComponent, CuiInputTimeModule, CuiInstructionInfoComponent, CuiInstructionInfoFormComponent, CuiInstructionModalCreateComponent, CuiInstructionReadonlyInfoComponent, CuiLabelComponent, CuiLabelModule, CuiLayoutComponent, CuiLetterBoxComponent, CuiLibTranslations, CuiLinearLoaderComponent, CuiLinkMarker, CuiListTool, CuiLoaderService, CuiLoadingState, CuiNotificationComponent, CuiNotificationModule, CuiPositionService, CuiRadioComponent, CuiRadioModule, CuiReadonlyCriterionModalComponent, CuiReadonlyInstructionModalComponent, CuiReadonlyUtilityModalComponent, CuiRenderDynamicComponentsComponent, CuiRenderDynamicComponentsService, CuiRoleMarker, CuiRootComponent, CuiRootModule, CuiSelectComponent, CuiSelectModalComponent, CuiSelectModalFolderComponent, CuiSelectModalSearchComponent, CuiSelectModalService, CuiSelectModule, CuiSelectedCategoryService, CuiSidebarContainerComponent, CuiSidebarHeaderComponent, CuiSidebarNavigationComponent, CuiSidebarNavigationContainerComponent, CuiSidebarNavigationItemComponent, CuiSidebarService, CuiSkeleton, CuiStatedLoaderComponent, CuiStorageListComponent, CuiSvgComponent, CuiSvgModule, CuiTabDirective, CuiTabsComponent, CuiTabsServiceImpl, CuiTextFieldController, CuiTextFieldControllerModule, CuiTextFieldIconLeftDirective, CuiTextFieldIdDirective, CuiTextFieldIsErrorDirective, CuiTextFieldPlaceholderDirective, CuiTextFieldSizeDirective, CuiTextareaComponent, CuiTextareaModule, CuiThemeService, CuiToggleComponent, CuiToggleModule, CuiToolMarker, CuiTooltip, CuiTooltipComponent, CuiTooltipDescribe, CuiTooltipDirective, CuiTooltipDriver, CuiTooltipHost, CuiTooltipHover, CuiTooltipManual, CuiTooltipOptionsDirective, CuiTooltipOverflow, CuiTooltipPointer, CuiTooltipPosition, CuiTooltipService, CuiTooltipUnstyled, CuiTooltipUnstyledComponent, CuiTooltips, CuiUserActionContextMenuComponent, CuiUtilityModalComponent, CuiUtilityModalCreateComponent, CuiUtilityReadonlyThumbnailComponent, CuiUtilityThumbnailComponent, CuiVideoTool, CuiVisualViewportService, InsertedComponent, ModalDividedSectionComponent, ModalHeaderComponent, ModalHeaderInsertedButtonsComponent, ModalInfoTabComponent, ModalOperationPartComponent, ModalResourcesTabComponent, OptionsButtonComponent, RenderDynamicModalComponent, ResourceStateBaseService, ResourcesBlockComponent, ResourcesBlockPartComponent, ResourcesBlockTabsComponent$1 as ResourcesBlockTabsComponent, ResourcesOptionsComponent, SubjectModalBaseService, UTILITY_MODAL_SERVICE_TOKEN, UsedElementsBaseService, UtilityBaseService, UtilityInfoReadonlyComponent, createEditorTools, cuiAuthInterceptor, cuiCheckFixedPosition, cuiCreateDefaultValidators, cuiErrorHandlerInterceptor, cuiGetDuration, cuiIsObscured, cuiLoaderInterceptor, cuiOverrideOptions, cuiProvideEditor, cuiRemoveSpaces, cuiReplace, cuiToAnimationOptions, cuiTooltipOptionsProvider, cuiXNdjsonInterceptor, handleError, openFileInBrowser, presetConfigToken, provideCuiAuth, provideCuiErrorHandler, provideCuiTabs, setLoading, sseStreamReaderInterceptor };
|
|
12558
|
+
export { AlertHintComponent, AngularOutsideLoaderService, AssigneeRoleItemComponent, AssigneeRolesTabsComponent, ButtonChangeThemeComponent, CUI_ACTIVITY_SERVICE_TOKEN, CUI_ALERTS, CUI_ALERT_CONTEXT, CUI_ALERT_DEFAULT_OPTIONS, CUI_ALERT_OPTIONS, CUI_ANIMATIONS_DEFAULT_DURATION, CUI_BANNER_DEFAULT_OPTIONS, CUI_BANNER_OPTIONS, CUI_BUTTON_DEFAULT_OPTIONS, CUI_BUTTON_OPTIONS, CUI_DEFAULT_THEME, CUI_DIALOGS, CUI_DIALOG_CONTEXT, CUI_DIALOG_DEFAULT_OPTIONS, CUI_DIALOG_OPTIONS, CUI_INPUT_TIME_DEFAULT_OPTIONS, CUI_INPUT_TIME_OPTIONS, CUI_NOTIFICATION_DEFAULT_OPTIONS, CUI_NOTIFICATION_ICONS, CUI_NOTIFICATION_ICON_OPTIONS, CUI_NOTIFICATION_ICON_OPTIONS_DEFAULT_MODE, CUI_NOTIFICATION_ICON_OPTIONS_LIGHT_MODE, CUI_NOTIFICATION_OPTIONS, CUI_RESOURCE_STATE_SERVICE_TOKEN, CUI_ROOT_SELECTOR, CUI_STORAGE_LIST_SERVICE_TOKEN, CUI_SUBJECT_MODAL_SERVICE_TOKEN, CUI_TABS_SERVICE_TOKEN, CUI_TEXT_FIELD_CONTROLLER, CUI_TEXT_FIELD_ICON_LEFT, CUI_TEXT_FIELD_ID, CUI_TEXT_FIELD_IS_ERROR, CUI_TEXT_FIELD_PLACEHOLDER, CUI_TEXT_FIELD_SIZE, CUI_TEXT_FILED_CONTROLLER_PROVIDER, CUI_THEME, CUI_THEME_STORAGE_DEFAULT_KEY, CUI_THEME_STORAGE_KEY, CUI_TOOLTIP_COMPONENT, CUI_TOOLTIP_DEFAULT_OPTIONS, CUI_TOOLTIP_DIRECTIONS, CUI_TOOLTIP_OPTIONS, CUI_TOOLTIP_PROVIDERS, CUI_USED_ELEMENTS_SERVICE_TOKEN, CUI_UTILITY_SERVICE_TOKEN, ContentHeaderComponent, CuiAbstractTabsComponent, CuiAccordionComponent, CuiAccordionDirective, CuiAccordionItemComponent, CuiAccordionModule, CuiActivityBaseService, CuiActivityImplService, CuiAlertComponent, CuiAlertModule, CuiAlertService, CuiAlertsComponent, CuiAttachesTool, CuiAuthBase, CuiAuthService, CuiBadgeComponent, CuiBadgeModule, CuiBannerComponent, CuiBannerModule, CuiBreadcrumbComponent, CuiBreadcrumbsComponent, CuiBreadcrumbsModule, CuiButtonComponent, CuiButtonGroupComponent, CuiButtonGroupModule, CuiButtonModule, CuiCardWrapperComponent, CuiCategoriesComponent, CuiCheckboxComponent, CuiCheckboxModule, CuiChecklistBlockComponent, CuiCircleLoaderComponent, CuiContentWrapperComponent, CuiContextMenuComponent, CuiContextMenuModule, CuiCriterionInfoComponent, CuiCriterionInfoFormComponent, CuiCriterionModalCreateComponent, CuiCriterionReadonlyInfoComponent, CuiDeleteModalComponent, CuiDialogActionsComponent, CuiDialogComponent, CuiDialogHeaderComponent, CuiDialogModule, CuiDialogService, CuiDialogsComponent, CuiDropdownDirective, CuiDropdownWrapperComponent, CuiEditorBlockComponent, CuiEditorComponent, CuiEditorModalComponent, CuiEditorReadonlyComponent, CuiEditorTranslations, CuiEmptyStateComponent, CuiFileIconComponent, CuiFileUploader, CuiFileUploaderStatus, CuiFormFieldComponent, CuiFormFieldModule, CuiFramerPreviewComponent, CuiGeneralControlErrorHintComponent, CuiGhostInputComponent, CuiGlobalErrorHandler, CuiHeaderTool, CuiHintComponent, CuiHintModule, CuiIconButtonComponent, CuiIconButtonModule, CuiImageTool, CuiInputModule, CuiInputNumberComponent, CuiInputNumberModule, CuiInputPasswordComponent, CuiInputPasswordModule, CuiInputTextComponent, CuiInputTimeComponent, CuiInputTimeModule, CuiInstructionInfoComponent, CuiInstructionInfoFormComponent, CuiInstructionModalCreateComponent, CuiInstructionReadonlyInfoComponent, CuiLabelComponent, CuiLabelModule, CuiLayoutComponent, CuiLetterBoxComponent, CuiLibTranslations, CuiLinearLoaderComponent, CuiLinkMarker, CuiListTool, CuiLoaderComponent, CuiLoaderService, CuiLoadingState, CuiNotificationComponent, CuiNotificationModule, CuiPositionService, CuiPulseLoaderComponent, CuiRadioComponent, CuiRadioModule, CuiReadonlyCriterionModalComponent, CuiReadonlyInstructionModalComponent, CuiReadonlyUtilityModalComponent, CuiRenderDynamicComponentsComponent, CuiRenderDynamicComponentsService, CuiRoleMarker, CuiRootComponent, CuiRootModule, CuiSelectComponent, CuiSelectModalComponent, CuiSelectModalFolderComponent, CuiSelectModalSearchComponent, CuiSelectModalService, CuiSelectModule, CuiSelectedCategoryService, CuiSidebarContainerComponent, CuiSidebarHeaderComponent, CuiSidebarNavigationComponent, CuiSidebarNavigationContainerComponent, CuiSidebarNavigationItemComponent, CuiSidebarService, CuiSkeleton, CuiStatedLoaderComponent, CuiStorageListComponent, CuiSvgComponent, CuiSvgModule, CuiTabDirective, CuiTabsComponent, CuiTabsServiceImpl, CuiTextFieldController, CuiTextFieldControllerModule, CuiTextFieldIconLeftDirective, CuiTextFieldIdDirective, CuiTextFieldIsErrorDirective, CuiTextFieldPlaceholderDirective, CuiTextFieldSizeDirective, CuiTextareaComponent, CuiTextareaModule, CuiThemeService, CuiToggleComponent, CuiToggleModule, CuiToolMarker, CuiTooltip, CuiTooltipComponent, CuiTooltipDescribe, CuiTooltipDirective, CuiTooltipDriver, CuiTooltipHost, CuiTooltipHover, CuiTooltipManual, CuiTooltipOptionsDirective, CuiTooltipOverflow, CuiTooltipPointer, CuiTooltipPosition, CuiTooltipService, CuiTooltipUnstyled, CuiTooltipUnstyledComponent, CuiTooltips, CuiUserActionContextMenuComponent, CuiUtilityModalComponent, CuiUtilityModalCreateComponent, CuiUtilityReadonlyThumbnailComponent, CuiUtilityThumbnailComponent, CuiVideoTool, CuiVisualViewportService, InsertedComponent, ModalDividedSectionComponent, ModalHeaderComponent, ModalHeaderInsertedButtonsComponent, ModalInfoTabComponent, ModalOperationPartComponent, ModalResourcesTabComponent, OptionsButtonComponent, RenderDynamicModalComponent, ResourceStateBaseService, ResourcesBlockComponent, ResourcesBlockPartComponent, ResourcesBlockTabsComponent$1 as ResourcesBlockTabsComponent, ResourcesOptionsComponent, SubjectModalBaseService, UTILITY_MODAL_SERVICE_TOKEN, UsedElementsBaseService, UtilityBaseService, UtilityInfoReadonlyComponent, createEditorTools, cuiAuthInterceptor, cuiCheckFixedPosition, cuiCreateDefaultValidators, cuiErrorHandlerInterceptor, cuiGetDuration, cuiIsObscured, cuiLoaderInterceptor, cuiOverrideOptions, cuiProvideEditor, cuiRemoveSpaces, cuiReplace, cuiToAnimationOptions, cuiTooltipOptionsProvider, cuiXNdjsonInterceptor, handleError, openFileInBrowser, presetConfigToken, provideCuiAuth, provideCuiErrorHandler, provideCuiTabs, setLoading, sseStreamReaderInterceptor };
|
|
12504
12559
|
//# sourceMappingURL=cuby-ui-core.mjs.map
|