@dev-tcloud/tcloud-ui 2.0.3 → 2.1.4
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/README.md +10 -2
- package/esm2022/lib/_directives/currency/currency.directive.mjs +33 -8
- package/esm2022/lib/_directives/directives.module.mjs +6 -6
- package/esm2022/lib/_modules/tcloud-ui-loading/components/tcloud-ui-cubes/tcloud-ui-cubes.component.mjs +11 -0
- package/esm2022/lib/_modules/tcloud-ui-loading/tcloud-ui-loading.component.mjs +29 -0
- package/esm2022/lib/_modules/tcloud-ui-loading/tcloud-ui-loading.module.mjs +21 -0
- package/esm2022/lib/tcloud-ui.module.mjs +8 -1
- package/esm2022/public-api.mjs +5 -1
- package/fesm2022/dev-tcloud-tcloud-ui.mjs +93 -12
- package/fesm2022/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/lib/_directives/currency/currency.directive.d.ts +4 -3
- package/lib/_directives/directives.module.d.ts +1 -1
- package/lib/_modules/tcloud-ui-loading/components/tcloud-ui-cubes/tcloud-ui-cubes.component.d.ts +5 -0
- package/lib/_modules/tcloud-ui-loading/tcloud-ui-loading.component.d.ts +11 -0
- package/lib/_modules/tcloud-ui-loading/tcloud-ui-loading.module.d.ts +9 -0
- package/lib/tcloud-ui.module.d.ts +4 -3
- package/package.json +1 -1
- package/public-api.d.ts +3 -0
- package/scss/tcloud/custom/forms.scss +4 -3
|
@@ -4624,13 +4624,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
4624
4624
|
}]
|
|
4625
4625
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; } });
|
|
4626
4626
|
|
|
4627
|
-
class
|
|
4627
|
+
class TCloudCurrencyDirective {
|
|
4628
4628
|
constructor(el, renderer) {
|
|
4629
4629
|
this.el = el;
|
|
4630
4630
|
this.renderer = renderer;
|
|
4631
4631
|
this.onChange = () => { };
|
|
4632
4632
|
this.onTouch = () => { };
|
|
4633
4633
|
}
|
|
4634
|
+
// ngAfterViewInit() {
|
|
4635
|
+
// setTimeout(() => {
|
|
4636
|
+
// let unmaskedValue = this.unmask( this.el.nativeElement.value );
|
|
4637
|
+
// console.log('Valor do input:', unmaskedValue);
|
|
4638
|
+
// this.onChange(Number(unmaskedValue));
|
|
4639
|
+
// this.writeValue(unmaskedValue);
|
|
4640
|
+
// });
|
|
4641
|
+
// }
|
|
4634
4642
|
writeValue(value) {
|
|
4635
4643
|
this.renderer.setProperty(this.el.nativeElement, 'type', 'text');
|
|
4636
4644
|
this.renderer.setStyle(this.el.nativeElement, 'text-align', 'right');
|
|
@@ -4655,15 +4663,29 @@ class TCloudcurrencyDirective {
|
|
|
4655
4663
|
const length = nativeInput.value.length;
|
|
4656
4664
|
nativeInput.setSelectionRange(length, length);
|
|
4657
4665
|
}
|
|
4666
|
+
setInInput() {
|
|
4667
|
+
}
|
|
4658
4668
|
onInput(value) {
|
|
4659
4669
|
const unmaskedValue = this.unmask(value);
|
|
4660
4670
|
this.onChange(Number(unmaskedValue));
|
|
4661
4671
|
this.writeValue(unmaskedValue);
|
|
4662
4672
|
}
|
|
4663
4673
|
formatCurrency(value) {
|
|
4674
|
+
const posicaoPonto = `${value}`.indexOf('.');
|
|
4675
|
+
if (posicaoPonto !== -1) {
|
|
4676
|
+
let part = `${value}`.split('.');
|
|
4677
|
+
let decimalPart = (part && part[1]) ? part[1] : '';
|
|
4678
|
+
if ((decimalPart).length < 2) {
|
|
4679
|
+
value = value + '0';
|
|
4680
|
+
}
|
|
4681
|
+
}
|
|
4682
|
+
else {
|
|
4683
|
+
value = value + '.00';
|
|
4684
|
+
}
|
|
4664
4685
|
return 'R$ ' + this.formatReal(value);
|
|
4665
4686
|
}
|
|
4666
4687
|
unmask(value) {
|
|
4688
|
+
console.log('unmask 1', value);
|
|
4667
4689
|
if (value === undefined || value === null || value === "") {
|
|
4668
4690
|
return "";
|
|
4669
4691
|
}
|
|
@@ -4675,6 +4697,7 @@ class TCloudcurrencyDirective {
|
|
|
4675
4697
|
}
|
|
4676
4698
|
}
|
|
4677
4699
|
value = this.toDecimal(value);
|
|
4700
|
+
console.log('unmask 2', value);
|
|
4678
4701
|
return value;
|
|
4679
4702
|
}
|
|
4680
4703
|
formatarNumero(numero) {
|
|
@@ -4700,6 +4723,7 @@ class TCloudcurrencyDirective {
|
|
|
4700
4723
|
}
|
|
4701
4724
|
return _value;
|
|
4702
4725
|
}
|
|
4726
|
+
console.log('inner formatReal 1', value);
|
|
4703
4727
|
let integerPart = cleanValue.slice(0, -2) || '0';
|
|
4704
4728
|
const decimalPart = cleanValue.slice(-2).padStart(2, '0');
|
|
4705
4729
|
if ((integerPart).length > 3) {
|
|
@@ -4711,11 +4735,12 @@ class TCloudcurrencyDirective {
|
|
|
4711
4735
|
_value = '0' + _value;
|
|
4712
4736
|
}
|
|
4713
4737
|
}
|
|
4738
|
+
console.log('inner formatReal 2', value);
|
|
4714
4739
|
return _value;
|
|
4715
4740
|
}
|
|
4716
4741
|
toDecimal(numero) {
|
|
4717
4742
|
const numeroStr = numero.toString();
|
|
4718
|
-
|
|
4743
|
+
let parteInteira = numeroStr.slice(0, -2) || '0';
|
|
4719
4744
|
let parteDecimal = numeroStr.slice(-2);
|
|
4720
4745
|
if (Number(parteDecimal) > 0 && Number(parteDecimal) < 10) {
|
|
4721
4746
|
parteDecimal = `0${Number(parteDecimal)}`;
|
|
@@ -4735,20 +4760,20 @@ class TCloudcurrencyDirective {
|
|
|
4735
4760
|
}
|
|
4736
4761
|
return _value;
|
|
4737
4762
|
}
|
|
4738
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type:
|
|
4739
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type:
|
|
4763
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TCloudCurrencyDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4764
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: TCloudCurrencyDirective, selector: "[TCcurrency]", host: { listeners: { "focus": "onFocus()", "input": "onInput($event.target.value)" } }, providers: [{
|
|
4740
4765
|
provide: NG_VALUE_ACCESSOR,
|
|
4741
|
-
useExisting:
|
|
4766
|
+
useExisting: TCloudCurrencyDirective,
|
|
4742
4767
|
multi: true
|
|
4743
4768
|
}], ngImport: i0 }); }
|
|
4744
4769
|
}
|
|
4745
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type:
|
|
4770
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TCloudCurrencyDirective, decorators: [{
|
|
4746
4771
|
type: Directive,
|
|
4747
4772
|
args: [{
|
|
4748
4773
|
selector: '[TCcurrency]',
|
|
4749
4774
|
providers: [{
|
|
4750
4775
|
provide: NG_VALUE_ACCESSOR,
|
|
4751
|
-
useExisting:
|
|
4776
|
+
useExisting: TCloudCurrencyDirective,
|
|
4752
4777
|
multi: true
|
|
4753
4778
|
}]
|
|
4754
4779
|
}]
|
|
@@ -4766,11 +4791,11 @@ class TCloudUiDirectiveModule {
|
|
|
4766
4791
|
TCloudUiAlignDirective,
|
|
4767
4792
|
TCloudUiHoverParentDirective,
|
|
4768
4793
|
TCloudUiElCopyDirective,
|
|
4769
|
-
|
|
4794
|
+
TCloudCurrencyDirective], exports: [TCloudUiTooltipDirective,
|
|
4770
4795
|
TCloudUiAlignDirective,
|
|
4771
4796
|
TCloudUiHoverParentDirective,
|
|
4772
4797
|
TCloudUiElCopyDirective,
|
|
4773
|
-
|
|
4798
|
+
TCloudCurrencyDirective] }); }
|
|
4774
4799
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TCloudUiDirectiveModule }); }
|
|
4775
4800
|
}
|
|
4776
4801
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TCloudUiDirectiveModule, decorators: [{
|
|
@@ -4781,14 +4806,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
4781
4806
|
TCloudUiAlignDirective,
|
|
4782
4807
|
TCloudUiHoverParentDirective,
|
|
4783
4808
|
TCloudUiElCopyDirective,
|
|
4784
|
-
|
|
4809
|
+
TCloudCurrencyDirective
|
|
4785
4810
|
],
|
|
4786
4811
|
exports: [
|
|
4787
4812
|
TCloudUiTooltipDirective,
|
|
4788
4813
|
TCloudUiAlignDirective,
|
|
4789
4814
|
TCloudUiHoverParentDirective,
|
|
4790
4815
|
TCloudUiElCopyDirective,
|
|
4791
|
-
|
|
4816
|
+
TCloudCurrencyDirective
|
|
4792
4817
|
],
|
|
4793
4818
|
}]
|
|
4794
4819
|
}] });
|
|
@@ -5572,6 +5597,56 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
5572
5597
|
}]
|
|
5573
5598
|
}] });
|
|
5574
5599
|
|
|
5600
|
+
class TCloudUiCubesComponent {
|
|
5601
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TCloudUiCubesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5602
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: TCloudUiCubesComponent, selector: "tcloud-ui-cubes", ngImport: i0, template: "<div class=\"loadingio-spinner-cube\"><div class=\"tc-cube-loading\">\r\n <div></div><div></div><div></div><div></div></div>\r\n</div>", styles: ["@keyframes tc-cube-loading{0%{transform:scale(1.15)}to{transform:scale(1)}}.tc-cube-loading div{position:absolute;width:34px;height:34px;top:10.6666666667px;left:10.6666666667px;background:#5e5e5e;animation:tc-cube-loading .7s cubic-bezier(0,.5,.5,1) infinite;animation-delay:-.3s}.tc-cube-loading div:nth-child(2){top:10.6666666667px;left:55.3333333333px;background:#5e5e5e;animation-delay:-.2s}.tc-cube-loading div:nth-child(3){top:55.3333333333px;left:10.6666666667px;background:#5e5e5e;animation-delay:0s}.tc-cube-loading div:nth-child(4){top:55.3333333333px;left:55.3333333333px;background:#5e5e5e;animation-delay:-.1s}.loadingio-spinner-cube-duylqtw8i9b{width:48px;height:48px;display:inline-block;overflow:hidden;background:#ffffff}.tc-cube-loading{width:100%;height:100%;position:relative;transform:translateZ(0) scale(.44);backface-visibility:hidden;transform-origin:0 0}.tc-cube-loading div{box-sizing:content-box}.tc-loading-full,.tc-state-loading-backdrop,.tc-state-loading-main{cursor:progress}\n"] }); }
|
|
5603
|
+
}
|
|
5604
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TCloudUiCubesComponent, decorators: [{
|
|
5605
|
+
type: Component,
|
|
5606
|
+
args: [{ selector: 'tcloud-ui-cubes', template: "<div class=\"loadingio-spinner-cube\"><div class=\"tc-cube-loading\">\r\n <div></div><div></div><div></div><div></div></div>\r\n</div>", styles: ["@keyframes tc-cube-loading{0%{transform:scale(1.15)}to{transform:scale(1)}}.tc-cube-loading div{position:absolute;width:34px;height:34px;top:10.6666666667px;left:10.6666666667px;background:#5e5e5e;animation:tc-cube-loading .7s cubic-bezier(0,.5,.5,1) infinite;animation-delay:-.3s}.tc-cube-loading div:nth-child(2){top:10.6666666667px;left:55.3333333333px;background:#5e5e5e;animation-delay:-.2s}.tc-cube-loading div:nth-child(3){top:55.3333333333px;left:10.6666666667px;background:#5e5e5e;animation-delay:0s}.tc-cube-loading div:nth-child(4){top:55.3333333333px;left:55.3333333333px;background:#5e5e5e;animation-delay:-.1s}.loadingio-spinner-cube-duylqtw8i9b{width:48px;height:48px;display:inline-block;overflow:hidden;background:#ffffff}.tc-cube-loading{width:100%;height:100%;position:relative;transform:translateZ(0) scale(.44);backface-visibility:hidden;transform-origin:0 0}.tc-cube-loading div{box-sizing:content-box}.tc-loading-full,.tc-state-loading-backdrop,.tc-state-loading-main{cursor:progress}\n"] }]
|
|
5607
|
+
}] });
|
|
5608
|
+
|
|
5609
|
+
class TCloudUiLoadingComponent {
|
|
5610
|
+
set loading(loading) {
|
|
5611
|
+
if (this._loading !== loading) {
|
|
5612
|
+
this._loading = loading;
|
|
5613
|
+
}
|
|
5614
|
+
}
|
|
5615
|
+
get loading() { return this._loading; }
|
|
5616
|
+
constructor() {
|
|
5617
|
+
this.full = false;
|
|
5618
|
+
this._loading = false;
|
|
5619
|
+
}
|
|
5620
|
+
ngOnInit() {
|
|
5621
|
+
}
|
|
5622
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TCloudUiLoadingComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5623
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: TCloudUiLoadingComponent, selector: "tcloud-ui-loading", inputs: { full: "full", loading: "loading" }, ngImport: i0, template: "<div *ngIf=\"full && loading\" class=\"tc-loading-full\">\r\n <div class=\"tc-state-loading-backdrop\"></div>\r\n <div class=\"tc-state-loading-main\">\r\n <div class=\"tc-state-loading-artifact\">\r\n \r\n <tcloud-ui-cubes></tcloud-ui-cubes>\r\n \r\n </div>\r\n </div>\r\n </div>\r\n \r\n <ng-container *ngIf=\"!full && loading\">\r\n <div class=\"tc-state-loading-backdrop\"></div>\r\n <div class=\"tc-state-loading-main\">\r\n <div class=\"tc-state-loading-artifact\">\r\n \r\n <tcloud-ui-cubes></tcloud-ui-cubes>\r\n \r\n </div>\r\n </div>\r\n </ng-container>\r\n ", styles: [".tc-loading-full{width:100%;height:100%;position:fixed;background-color:var(--tc-gray-400);left:0;top:0;z-index:5000;cursor:progress!important}.tc-state-loading-backdrop{cursor:progress!important}.tc-state-loading-backdrop{z-index:4998;position:absolute;inset:0;background-color:#1920224d}.tc-state-loading-main{min-height:50px}.tc-state-loading-artifact{width:40px;height:40px;position:absolute;inset:0;margin:auto;z-index:4999}.tc-progress-loading{height:100vh;opacity:.1}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: TCloudUiCubesComponent, selector: "tcloud-ui-cubes" }] }); }
|
|
5624
|
+
}
|
|
5625
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TCloudUiLoadingComponent, decorators: [{
|
|
5626
|
+
type: Component,
|
|
5627
|
+
args: [{ selector: 'tcloud-ui-loading', template: "<div *ngIf=\"full && loading\" class=\"tc-loading-full\">\r\n <div class=\"tc-state-loading-backdrop\"></div>\r\n <div class=\"tc-state-loading-main\">\r\n <div class=\"tc-state-loading-artifact\">\r\n \r\n <tcloud-ui-cubes></tcloud-ui-cubes>\r\n \r\n </div>\r\n </div>\r\n </div>\r\n \r\n <ng-container *ngIf=\"!full && loading\">\r\n <div class=\"tc-state-loading-backdrop\"></div>\r\n <div class=\"tc-state-loading-main\">\r\n <div class=\"tc-state-loading-artifact\">\r\n \r\n <tcloud-ui-cubes></tcloud-ui-cubes>\r\n \r\n </div>\r\n </div>\r\n </ng-container>\r\n ", styles: [".tc-loading-full{width:100%;height:100%;position:fixed;background-color:var(--tc-gray-400);left:0;top:0;z-index:5000;cursor:progress!important}.tc-state-loading-backdrop{cursor:progress!important}.tc-state-loading-backdrop{z-index:4998;position:absolute;inset:0;background-color:#1920224d}.tc-state-loading-main{min-height:50px}.tc-state-loading-artifact{width:40px;height:40px;position:absolute;inset:0;margin:auto;z-index:4999}.tc-progress-loading{height:100vh;opacity:.1}\n"] }]
|
|
5628
|
+
}], ctorParameters: function () { return []; }, propDecorators: { full: [{
|
|
5629
|
+
type: Input
|
|
5630
|
+
}], loading: [{
|
|
5631
|
+
type: Input
|
|
5632
|
+
}] } });
|
|
5633
|
+
|
|
5634
|
+
class TCloudUiLoadingModule {
|
|
5635
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TCloudUiLoadingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5636
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: TCloudUiLoadingModule, declarations: [TCloudUiLoadingComponent, TCloudUiCubesComponent], imports: [CommonModule], exports: [TCloudUiLoadingComponent, TCloudUiCubesComponent] }); }
|
|
5637
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TCloudUiLoadingModule, imports: [CommonModule] }); }
|
|
5638
|
+
}
|
|
5639
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TCloudUiLoadingModule, decorators: [{
|
|
5640
|
+
type: NgModule,
|
|
5641
|
+
args: [{
|
|
5642
|
+
declarations: [TCloudUiLoadingComponent, TCloudUiCubesComponent],
|
|
5643
|
+
exports: [TCloudUiLoadingComponent, TCloudUiCubesComponent],
|
|
5644
|
+
imports: [
|
|
5645
|
+
CommonModule
|
|
5646
|
+
]
|
|
5647
|
+
}]
|
|
5648
|
+
}] });
|
|
5649
|
+
|
|
5575
5650
|
class TCloudUiModule {
|
|
5576
5651
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TCloudUiModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5577
5652
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: TCloudUiModule, imports: [TCloudUiModalModule,
|
|
@@ -5595,6 +5670,7 @@ class TCloudUiModule {
|
|
|
5595
5670
|
TCloudUiWelcomeModule,
|
|
5596
5671
|
TCloudUiInputPasswordModule,
|
|
5597
5672
|
TCloudUiProgressBarModule,
|
|
5673
|
+
TCloudUiLoadingModule,
|
|
5598
5674
|
// Directives
|
|
5599
5675
|
TCloudUiDirectiveModule,
|
|
5600
5676
|
// Pipes
|
|
@@ -5619,6 +5695,7 @@ class TCloudUiModule {
|
|
|
5619
5695
|
TCloudUiWelcomeModule,
|
|
5620
5696
|
TCloudUiInputPasswordModule,
|
|
5621
5697
|
TCloudUiProgressBarModule,
|
|
5698
|
+
TCloudUiLoadingModule,
|
|
5622
5699
|
// Directives
|
|
5623
5700
|
TCloudUiDirectiveModule,
|
|
5624
5701
|
// Pipes
|
|
@@ -5647,6 +5724,7 @@ class TCloudUiModule {
|
|
|
5647
5724
|
TCloudUiWelcomeModule,
|
|
5648
5725
|
TCloudUiInputPasswordModule,
|
|
5649
5726
|
TCloudUiProgressBarModule,
|
|
5727
|
+
TCloudUiLoadingModule,
|
|
5650
5728
|
// Directives
|
|
5651
5729
|
TCloudUiDirectiveModule,
|
|
5652
5730
|
// Pipes
|
|
@@ -5671,6 +5749,7 @@ class TCloudUiModule {
|
|
|
5671
5749
|
TCloudUiWelcomeModule,
|
|
5672
5750
|
TCloudUiInputPasswordModule,
|
|
5673
5751
|
TCloudUiProgressBarModule,
|
|
5752
|
+
TCloudUiLoadingModule,
|
|
5674
5753
|
// Directives
|
|
5675
5754
|
TCloudUiDirectiveModule,
|
|
5676
5755
|
// Pipes
|
|
@@ -5701,6 +5780,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
5701
5780
|
TCloudUiWelcomeModule,
|
|
5702
5781
|
TCloudUiInputPasswordModule,
|
|
5703
5782
|
TCloudUiProgressBarModule,
|
|
5783
|
+
TCloudUiLoadingModule,
|
|
5704
5784
|
// Directives
|
|
5705
5785
|
TCloudUiDirectiveModule,
|
|
5706
5786
|
// Pipes
|
|
@@ -5728,6 +5808,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
5728
5808
|
TCloudUiWelcomeModule,
|
|
5729
5809
|
TCloudUiInputPasswordModule,
|
|
5730
5810
|
TCloudUiProgressBarModule,
|
|
5811
|
+
TCloudUiLoadingModule,
|
|
5731
5812
|
// Directives
|
|
5732
5813
|
TCloudUiDirectiveModule,
|
|
5733
5814
|
// Pipes
|
|
@@ -5748,5 +5829,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
5748
5829
|
* Generated bundle index. Do not edit.
|
|
5749
5830
|
*/
|
|
5750
5831
|
|
|
5751
|
-
export { BytesPipe, CNPJPipe, CPFPipe, CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR, DateBRPipe, MonthNamePipe, RespectivePipe, StatusInfoPipe, TCCondition, TCFiltersType, TCloudUiAccordionBodyComponent, TCloudUiAccordionComponent, TCloudUiAccordionModule, TCloudUiAccordionTitleComponent, TCloudUiAlignDirective, TCloudUiChoiceIssuesComponent, TCloudUiChoiceIssuesModule, TCloudUiDataListComponent, TCloudUiDataListModule, TCloudUiDataListOptionComponent, TCloudUiDatepickerComponent, TCloudUiDatepickerModule, TCloudUiDatepickerTimeComponent, TCloudUiDatepickerTimeModule, TCloudUiDirectiveModule, TCloudUiElCopyDirective, TCloudUiFiltersComponent, TCloudUiFiltersModule, TCloudUiHoverParentDirective, TCloudUiInputPasswordComponent, TCloudUiInputPasswordModule, TCloudUiInputSearchComponent, TCloudUiInputSearchModule, TCloudUiLineStepCircleComponent, TCloudUiLineStepCircleModule, TCloudUiLinhaLogoComponent, TCloudUiLinhaLogoModule, TCloudUiLoadingTransitionsService, TCloudUiModalBodyComponent, TCloudUiModalComponent, TCloudUiModalFooterComponent, TCloudUiModalHeaderComponent, TCloudUiModalModule, TCloudUiModule, TCloudUiMultiInputComponent, TCloudUiMultiInputModule, TCloudUiMultiSelectComponent, TCloudUiMultiSelectModule, TCloudUiMultiplesValuesComponent, TCloudUiMultiplesValuesModule, TCloudUiNotFoundComponent, TCloudUiNotFoundModule, TCloudUiNumberStepComponent, TCloudUiNumberStepModule, TCloudUiPipesModule, TCloudUiProgressBarComponent, TCloudUiProgressBarModule, TCloudUiRangeDateComponent, TCloudUiScrollBoxComponent, TCloudUiScrollBoxModule, TCloudUiSearchInObjectService, TCloudUiTabContentComponent, TCloudUiTabHeadComponent, TCloudUiTabMenuComponent, TCloudUiTabMenuModule, TCloudUiTabSubtitleComponent, TCloudUiTabTitleComponent, TCloudUiTableComponent, TCloudUiTableModule, TCloudUiTooltipDirective, TCloudUiWelcomeComponent, TCloudUiWelcomeModule,
|
|
5832
|
+
export { BytesPipe, CNPJPipe, CPFPipe, CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR, DateBRPipe, MonthNamePipe, RespectivePipe, StatusInfoPipe, TCCondition, TCFiltersType, TCloudCurrencyDirective, TCloudUiAccordionBodyComponent, TCloudUiAccordionComponent, TCloudUiAccordionModule, TCloudUiAccordionTitleComponent, TCloudUiAlignDirective, TCloudUiChoiceIssuesComponent, TCloudUiChoiceIssuesModule, TCloudUiCubesComponent, TCloudUiDataListComponent, TCloudUiDataListModule, TCloudUiDataListOptionComponent, TCloudUiDatepickerComponent, TCloudUiDatepickerModule, TCloudUiDatepickerTimeComponent, TCloudUiDatepickerTimeModule, TCloudUiDirectiveModule, TCloudUiElCopyDirective, TCloudUiFiltersComponent, TCloudUiFiltersModule, TCloudUiHoverParentDirective, TCloudUiInputPasswordComponent, TCloudUiInputPasswordModule, TCloudUiInputSearchComponent, TCloudUiInputSearchModule, TCloudUiLineStepCircleComponent, TCloudUiLineStepCircleModule, TCloudUiLinhaLogoComponent, TCloudUiLinhaLogoModule, TCloudUiLoadingComponent, TCloudUiLoadingModule, TCloudUiLoadingTransitionsService, TCloudUiModalBodyComponent, TCloudUiModalComponent, TCloudUiModalFooterComponent, TCloudUiModalHeaderComponent, TCloudUiModalModule, TCloudUiModule, TCloudUiMultiInputComponent, TCloudUiMultiInputModule, TCloudUiMultiSelectComponent, TCloudUiMultiSelectModule, TCloudUiMultiplesValuesComponent, TCloudUiMultiplesValuesModule, TCloudUiNotFoundComponent, TCloudUiNotFoundModule, TCloudUiNumberStepComponent, TCloudUiNumberStepModule, TCloudUiPipesModule, TCloudUiProgressBarComponent, TCloudUiProgressBarModule, TCloudUiRangeDateComponent, TCloudUiScrollBoxComponent, TCloudUiScrollBoxModule, TCloudUiSearchInObjectService, TCloudUiTabContentComponent, TCloudUiTabHeadComponent, TCloudUiTabMenuComponent, TCloudUiTabMenuModule, TCloudUiTabSubtitleComponent, TCloudUiTabTitleComponent, TCloudUiTableComponent, TCloudUiTableModule, TCloudUiTooltipDirective, TCloudUiWelcomeComponent, TCloudUiWelcomeModule, ToTextPipe };
|
|
5752
5833
|
//# sourceMappingURL=dev-tcloud-tcloud-ui.mjs.map
|