@osovitny/anatoly 3.20.1 → 3.20.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/osovitny-anatoly.mjs +22 -18
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -4279,6 +4279,21 @@ class Utils {
|
|
|
4279
4279
|
*/
|
|
4280
4280
|
//consts
|
|
4281
4281
|
|
|
4282
|
+
/*
|
|
4283
|
+
<file>
|
|
4284
|
+
Project:
|
|
4285
|
+
@osovitny/anatoly
|
|
4286
|
+
|
|
4287
|
+
Authors:
|
|
4288
|
+
Vadim Osovitny vadim.osovitny@osovitny.com
|
|
4289
|
+
|
|
4290
|
+
Created:
|
|
4291
|
+
11 Nov 2024
|
|
4292
|
+
|
|
4293
|
+
Copyright (c) 2016-2025 Osovitny Inc. All rights reserved.
|
|
4294
|
+
</file>
|
|
4295
|
+
*/
|
|
4296
|
+
|
|
4282
4297
|
/*
|
|
4283
4298
|
<file>
|
|
4284
4299
|
Project:
|
|
@@ -4302,6 +4317,8 @@ class ComponentBase {
|
|
|
4302
4317
|
this.dataLoading = true;
|
|
4303
4318
|
this.dataLoaded = false;
|
|
4304
4319
|
this.dataFound = false;
|
|
4320
|
+
//Inputs
|
|
4321
|
+
this.mode = Mode.View;
|
|
4305
4322
|
this.title = '';
|
|
4306
4323
|
this.isTitleVisible = true;
|
|
4307
4324
|
this.isRequired = false;
|
|
@@ -4333,14 +4350,16 @@ class ComponentBase {
|
|
|
4333
4350
|
this.dataFound = found;
|
|
4334
4351
|
}
|
|
4335
4352
|
static { this.ɵfac = function ComponentBase_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ComponentBase)(); }; }
|
|
4336
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ComponentBase, selectors: [["ng-component"]], inputs: { classes: "classes", title: "title", isTitleVisible: "isTitleVisible", isRequired: "isRequired" }, decls: 0, vars: 0, template: function ComponentBase_Template(rf, ctx) { }, encapsulation: 2 }); }
|
|
4353
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ComponentBase, selectors: [["ng-component"]], inputs: { mode: "mode", classes: "classes", title: "title", isTitleVisible: "isTitleVisible", isRequired: "isRequired" }, decls: 0, vars: 0, template: function ComponentBase_Template(rf, ctx) { }, encapsulation: 2 }); }
|
|
4337
4354
|
}
|
|
4338
4355
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ComponentBase, [{
|
|
4339
4356
|
type: Component,
|
|
4340
4357
|
args: [{
|
|
4341
4358
|
template: ''
|
|
4342
4359
|
}]
|
|
4343
|
-
}], () => [], {
|
|
4360
|
+
}], () => [], { mode: [{
|
|
4361
|
+
type: Input
|
|
4362
|
+
}], classes: [{
|
|
4344
4363
|
type: Input
|
|
4345
4364
|
}], title: [{
|
|
4346
4365
|
type: Input
|
|
@@ -4349,7 +4368,7 @@ class ComponentBase {
|
|
|
4349
4368
|
}], isRequired: [{
|
|
4350
4369
|
type: Input
|
|
4351
4370
|
}] }); })();
|
|
4352
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ComponentBase, { className: "ComponentBase", filePath: "lib/ui/components/base/components/component.ts", lineNumber:
|
|
4371
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ComponentBase, { className: "ComponentBase", filePath: "lib/ui/components/base/components/component.ts", lineNumber: 26 }); })();
|
|
4353
4372
|
|
|
4354
4373
|
/*
|
|
4355
4374
|
<file>
|
|
@@ -5110,21 +5129,6 @@ class DialogBase extends EditComponentBase {
|
|
|
5110
5129
|
}] }); })();
|
|
5111
5130
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(DialogBase, { className: "DialogBase", filePath: "lib/ui/components/base/dialog.ts", lineNumber: 28 }); })();
|
|
5112
5131
|
|
|
5113
|
-
/*
|
|
5114
|
-
<file>
|
|
5115
|
-
Project:
|
|
5116
|
-
@osovitny/anatoly
|
|
5117
|
-
|
|
5118
|
-
Authors:
|
|
5119
|
-
Vadim Osovitny vadim.osovitny@osovitny.com
|
|
5120
|
-
|
|
5121
|
-
Created:
|
|
5122
|
-
11 Nov 2024
|
|
5123
|
-
|
|
5124
|
-
Copyright (c) 2016-2025 Osovitny Inc. All rights reserved.
|
|
5125
|
-
</file>
|
|
5126
|
-
*/
|
|
5127
|
-
|
|
5128
5132
|
/*
|
|
5129
5133
|
<file>
|
|
5130
5134
|
Project:
|