@colijnit/corecomponents_v12 12.0.57 → 12.0.59
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/bundles/colijnit-corecomponents_v12.umd.js +249 -116
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12-12.0.59.tgz +0 -0
- package/colijnit-corecomponents_v12.d.ts +4 -4
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/colijnit-corecomponents_v12.js +5 -5
- package/esm2015/lib/components/icon-collapse-handle/icon-collapse-handle.component.js +64 -0
- package/esm2015/lib/components/icon-collapse-handle/icon-collapse-handle.module.js +23 -0
- package/esm2015/lib/components/input-date-picker/input-date-picker.component.js +9 -1
- package/esm2015/lib/components/input-date-picker/input-date-picker.module.js +4 -2
- package/esm2015/lib/components/input-date-range-picker/input-date-range-picker.component.js +4 -3
- package/esm2015/lib/core/enum/co-direction.js +9 -0
- package/esm2015/lib/core/enum/co-orientation.js +17 -0
- package/esm2015/lib/core/utils/direction-enum-utils.js +14 -0
- package/esm2015/public-api.js +5 -1
- package/fesm2015/colijnit-corecomponents_v12.js +234 -111
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/base/commit-buttons/style/_layout.scss +2 -2
- package/lib/components/icon-collapse-handle/icon-collapse-handle.component.d.ts +21 -0
- package/lib/components/icon-collapse-handle/icon-collapse-handle.module.d.ts +2 -0
- package/lib/components/icon-collapse-handle/style/_layout.scss +95 -0
- package/lib/components/icon-collapse-handle/style/_material-definition.scss +0 -0
- package/lib/components/icon-collapse-handle/style/_theme.scss +6 -0
- package/lib/components/icon-collapse-handle/style/material.scss +5 -0
- package/lib/components/input-date-picker/style/material.scss +2 -0
- package/lib/core/enum/co-direction.d.ts +6 -0
- package/lib/core/enum/co-orientation.d.ts +6 -0
- package/lib/core/utils/direction-enum-utils.d.ts +5 -0
- package/lib/style/_mixin.scss +7 -0
- package/lib/style/_variables.scss +2 -1
- package/package.json +1 -1
- package/public-api.d.ts +4 -0
- package/colijnit-corecomponents_v12-12.0.57.tgz +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Injectable, Component, ViewEncapsulation, Input, HostBinding, NgModule, Optional, SkipSelf, InjectionToken, Directive, ElementRef, NgZone, Inject, EventEmitter, ChangeDetectionStrategy, Output, HostListener, Pipe, ChangeDetectorRef, ViewChild, ContentChildren, ComponentFactoryResolver, ViewContainerRef, forwardRef,
|
|
1
|
+
import { Injectable, Component, ViewEncapsulation, Input, HostBinding, NgModule, Optional, SkipSelf, InjectionToken, Directive, ElementRef, NgZone, Inject, EventEmitter, ChangeDetectionStrategy, Output, HostListener, Pipe, ChangeDetectorRef, ViewChild, ContentChildren, ComponentFactoryResolver, ViewContainerRef, forwardRef, Renderer2, ViewChildren, NO_ERRORS_SCHEMA, Injector, ApplicationRef, ContentChild } from '@angular/core';
|
|
2
2
|
import { CommonModule } from '@angular/common';
|
|
3
3
|
import { HttpClientModule } from '@angular/common/http';
|
|
4
4
|
import { DomSanitizer } from '@angular/platform-browser';
|
|
@@ -5592,6 +5592,119 @@ GridToolbarButtonModule.decorators = [
|
|
|
5592
5592
|
},] }
|
|
5593
5593
|
];
|
|
5594
5594
|
|
|
5595
|
+
// Direction type for regular straight directions.
|
|
5596
|
+
var CoDirection;
|
|
5597
|
+
(function (CoDirection) {
|
|
5598
|
+
CoDirection["Right"] = "right";
|
|
5599
|
+
CoDirection["Left"] = "left";
|
|
5600
|
+
CoDirection["Up"] = "top";
|
|
5601
|
+
CoDirection["Down"] = "bottom";
|
|
5602
|
+
})(CoDirection || (CoDirection = {}));
|
|
5603
|
+
|
|
5604
|
+
// Represents a bi-directional orientation.
|
|
5605
|
+
var CoOrientation;
|
|
5606
|
+
(function (CoOrientation) {
|
|
5607
|
+
CoOrientation["Horizontal"] = "horizontal";
|
|
5608
|
+
CoOrientation["Vertical"] = "vertical";
|
|
5609
|
+
})(CoOrientation || (CoOrientation = {}));
|
|
5610
|
+
const _orientationsOfDirections = new Map([
|
|
5611
|
+
[CoDirection.Right, CoOrientation.Vertical],
|
|
5612
|
+
[CoDirection.Left, CoOrientation.Vertical],
|
|
5613
|
+
[CoDirection.Up, CoOrientation.Horizontal],
|
|
5614
|
+
[CoDirection.Down, CoOrientation.Horizontal]
|
|
5615
|
+
]);
|
|
5616
|
+
function OrientationOfDirection(direction) {
|
|
5617
|
+
return _orientationsOfDirections.get(direction);
|
|
5618
|
+
}
|
|
5619
|
+
|
|
5620
|
+
// @dynamic
|
|
5621
|
+
class DirectionEnumUtils {
|
|
5622
|
+
static OppositeOf(direction) {
|
|
5623
|
+
return this._OppositeDirections.get(direction);
|
|
5624
|
+
}
|
|
5625
|
+
}
|
|
5626
|
+
DirectionEnumUtils._OppositeDirections = new Map([
|
|
5627
|
+
[CoDirection.Right, CoDirection.Left],
|
|
5628
|
+
[CoDirection.Left, CoDirection.Right],
|
|
5629
|
+
[CoDirection.Up, CoDirection.Down],
|
|
5630
|
+
[CoDirection.Down, CoDirection.Up]
|
|
5631
|
+
]);
|
|
5632
|
+
|
|
5633
|
+
class IconCollapseHandleComponent {
|
|
5634
|
+
constructor() {
|
|
5635
|
+
this.orientation = CoOrientation.Horizontal;
|
|
5636
|
+
this.twoArrows = false;
|
|
5637
|
+
this.iconColorClass = "action-color";
|
|
5638
|
+
this.Icons = CoreComponentsIcon;
|
|
5639
|
+
this._arrowDirection = CoDirection.Up;
|
|
5640
|
+
this._oppositeArrowDirection = CoDirection.Down;
|
|
5641
|
+
}
|
|
5642
|
+
showClass() {
|
|
5643
|
+
return true;
|
|
5644
|
+
}
|
|
5645
|
+
set arrowDirection(arrowDirection) {
|
|
5646
|
+
this._arrowDirection = arrowDirection;
|
|
5647
|
+
this._oppositeArrowDirection = DirectionEnumUtils.OppositeOf(this._arrowDirection);
|
|
5648
|
+
}
|
|
5649
|
+
get arrowDirection() {
|
|
5650
|
+
return this._arrowDirection;
|
|
5651
|
+
}
|
|
5652
|
+
get isVertical() {
|
|
5653
|
+
return this.orientation === CoOrientation.Vertical;
|
|
5654
|
+
}
|
|
5655
|
+
get arrowsOrientatedHorizontally() {
|
|
5656
|
+
return OrientationOfDirection(this._arrowDirection) === CoOrientation.Horizontal;
|
|
5657
|
+
}
|
|
5658
|
+
get oppositeArrowDirection() {
|
|
5659
|
+
return this._oppositeArrowDirection;
|
|
5660
|
+
}
|
|
5661
|
+
}
|
|
5662
|
+
IconCollapseHandleComponent.decorators = [
|
|
5663
|
+
{ type: Component, args: [{
|
|
5664
|
+
selector: "co-icon-collapse-handle",
|
|
5665
|
+
template: `
|
|
5666
|
+
<div class="wrap">
|
|
5667
|
+
<co-icon [icon]="Icons.ArrowPointUp" [class]="'first ' + arrowDirection + ' ' + iconColorClass"></co-icon>
|
|
5668
|
+
<co-icon *ngIf="twoArrows" [icon]="Icons.ArrowPointUp"
|
|
5669
|
+
[class]="'second ' + oppositeArrowDirection + ' ' + iconColorClass"></co-icon>
|
|
5670
|
+
</div>
|
|
5671
|
+
<div class="absolute-fill-parent" md-ripple></div>
|
|
5672
|
+
`,
|
|
5673
|
+
encapsulation: ViewEncapsulation.None
|
|
5674
|
+
},] }
|
|
5675
|
+
];
|
|
5676
|
+
IconCollapseHandleComponent.ctorParameters = () => [];
|
|
5677
|
+
IconCollapseHandleComponent.propDecorators = {
|
|
5678
|
+
showClass: [{ type: HostBinding, args: ["class.co-icon-collapse-handle",] }],
|
|
5679
|
+
orientation: [{ type: Input }],
|
|
5680
|
+
arrowDirection: [{ type: Input }],
|
|
5681
|
+
twoArrows: [{ type: Input }, { type: HostBinding, args: ["class.two-arrows",] }],
|
|
5682
|
+
isVertical: [{ type: HostBinding, args: ["class.vertical",] }],
|
|
5683
|
+
arrowsOrientatedHorizontally: [{ type: HostBinding, args: ["class.arrows-orientated-horizontally",] }],
|
|
5684
|
+
hidden: [{ type: HostBinding, args: ["class.hidden",] }]
|
|
5685
|
+
};
|
|
5686
|
+
__decorate([
|
|
5687
|
+
InputBoolean()
|
|
5688
|
+
], IconCollapseHandleComponent.prototype, "twoArrows", void 0);
|
|
5689
|
+
|
|
5690
|
+
class IconCollapseHandleModule {
|
|
5691
|
+
}
|
|
5692
|
+
IconCollapseHandleModule.decorators = [
|
|
5693
|
+
{ type: NgModule, args: [{
|
|
5694
|
+
imports: [
|
|
5695
|
+
CommonModule,
|
|
5696
|
+
IconModule,
|
|
5697
|
+
RippleModule
|
|
5698
|
+
],
|
|
5699
|
+
declarations: [
|
|
5700
|
+
IconCollapseHandleComponent
|
|
5701
|
+
],
|
|
5702
|
+
exports: [
|
|
5703
|
+
IconCollapseHandleComponent
|
|
5704
|
+
]
|
|
5705
|
+
},] }
|
|
5706
|
+
];
|
|
5707
|
+
|
|
5595
5708
|
class InputCheckboxComponent extends BaseInputComponent {
|
|
5596
5709
|
constructor(formComponent, iconCacheService, changeDetector, componentFactoryResolver, formUserChangeListener, ngZoneWrapper, elementRef) {
|
|
5597
5710
|
super(changeDetector, componentFactoryResolver, formUserChangeListener, ngZoneWrapper, elementRef);
|
|
@@ -5923,8 +6036,16 @@ InputDatePickerComponent.decorators = [
|
|
|
5923
6036
|
[format]="dateFormat"
|
|
5924
6037
|
[placeholder]="placeholder"
|
|
5925
6038
|
[ngModel]="model"
|
|
6039
|
+
[readonly]="readonly"
|
|
5926
6040
|
(ngModelChange)="modelChange.emit($event)"
|
|
5927
6041
|
></ejs-datepicker>
|
|
6042
|
+
<co-commit-buttons *ngIf="showSaveCancel && focused && canSaveOrCancel"
|
|
6043
|
+
[committing]="committing"
|
|
6044
|
+
[commitFinished]="commitFinished"
|
|
6045
|
+
(commitClick)="commitClick($event)"
|
|
6046
|
+
(cancelClick)="cancelClick($event)"
|
|
6047
|
+
>
|
|
6048
|
+
</co-commit-buttons>
|
|
5928
6049
|
<div class="required-indicator"></div>
|
|
5929
6050
|
<ng-template #validationError></ng-template>
|
|
5930
6051
|
`,
|
|
@@ -5957,6 +6078,112 @@ InputDatePickerComponent.propDecorators = {
|
|
|
5957
6078
|
showClass: [{ type: HostBinding, args: ["class.co-input-date",] }]
|
|
5958
6079
|
};
|
|
5959
6080
|
|
|
6081
|
+
class CommitButtonsComponent {
|
|
6082
|
+
constructor(_renderer) {
|
|
6083
|
+
this._renderer = _renderer;
|
|
6084
|
+
this.cancelClick = new EventEmitter();
|
|
6085
|
+
this.commitClick = new EventEmitter();
|
|
6086
|
+
this._committing = false;
|
|
6087
|
+
this._commitFinished = false;
|
|
6088
|
+
this._handleAnimationIteration = (event) => {
|
|
6089
|
+
this._renderer.removeClass(event.currentTarget, 'animate');
|
|
6090
|
+
event.currentTarget.removeEventListener('animationiteration', this._handleAnimationIteration);
|
|
6091
|
+
// elem.removeEventListener('webkitAnimationIteration', () => this._handleAnimationIteration(elem));
|
|
6092
|
+
};
|
|
6093
|
+
}
|
|
6094
|
+
set content(children) {
|
|
6095
|
+
this.animateDivs = children.toArray();
|
|
6096
|
+
this._checkAnimation();
|
|
6097
|
+
}
|
|
6098
|
+
set committing(value) {
|
|
6099
|
+
this._committing = value;
|
|
6100
|
+
this._checkAnimation();
|
|
6101
|
+
}
|
|
6102
|
+
get committing() {
|
|
6103
|
+
return this._committing;
|
|
6104
|
+
}
|
|
6105
|
+
set commitFinished(value) {
|
|
6106
|
+
this._commitFinished = value;
|
|
6107
|
+
this._checkAnimationFinished();
|
|
6108
|
+
}
|
|
6109
|
+
get commitFinished() {
|
|
6110
|
+
return this._commitFinished;
|
|
6111
|
+
}
|
|
6112
|
+
showClass() {
|
|
6113
|
+
return true;
|
|
6114
|
+
}
|
|
6115
|
+
_checkAnimation() {
|
|
6116
|
+
if (this.committing && this.animateDivs) {
|
|
6117
|
+
this.animateDivs.forEach(a => this._renderer.addClass(a.nativeElement, 'animate'));
|
|
6118
|
+
}
|
|
6119
|
+
}
|
|
6120
|
+
_checkAnimationFinished() {
|
|
6121
|
+
if (this.commitFinished && this.animateDivs) {
|
|
6122
|
+
this.animateDivs.forEach(a => {
|
|
6123
|
+
a.nativeElement.addEventListener('animationiteration', this._handleAnimationIteration);
|
|
6124
|
+
// a.nativeElement.addEventListener('webkitAnimationIteration', (event) => this._handleAnimationIteration(event));
|
|
6125
|
+
});
|
|
6126
|
+
}
|
|
6127
|
+
}
|
|
6128
|
+
}
|
|
6129
|
+
CommitButtonsComponent.decorators = [
|
|
6130
|
+
{ type: Component, args: [{
|
|
6131
|
+
selector: "co-commit-buttons",
|
|
6132
|
+
template: `
|
|
6133
|
+
<div class="commit-buttons-wrapper" @showHideSaveCancel>
|
|
6134
|
+
<div class="commit-buttons-button save" [class.finished]="commitFinished"
|
|
6135
|
+
(click)="commitClick.emit($event)">
|
|
6136
|
+
<div class="save-button-spinner" *ngIf="committing || commitFinished">
|
|
6137
|
+
<div #animatediv></div>
|
|
6138
|
+
<div #animatediv></div>
|
|
6139
|
+
<div #animatediv></div>
|
|
6140
|
+
<div #animatediv></div>
|
|
6141
|
+
</div>
|
|
6142
|
+
<div class="spinner-checkmark" *ngIf="!committing || commitFinished"></div>
|
|
6143
|
+
</div>
|
|
6144
|
+
<div class="commit-buttons-button cancel" (click)="cancelClick.emit($event)">
|
|
6145
|
+
<div class="cancel-button"></div>
|
|
6146
|
+
</div>
|
|
6147
|
+
</div>
|
|
6148
|
+
`,
|
|
6149
|
+
animations: [
|
|
6150
|
+
trigger('showHideSaveCancel', [
|
|
6151
|
+
state('*', style({ transform: 'scaleY(1)', opacity: 1 })),
|
|
6152
|
+
state('void', style({ transform: 'scaleY(0)', opacity: 0 })),
|
|
6153
|
+
transition('void <=> *', animate(200))
|
|
6154
|
+
]),
|
|
6155
|
+
],
|
|
6156
|
+
encapsulation: ViewEncapsulation.None
|
|
6157
|
+
},] }
|
|
6158
|
+
];
|
|
6159
|
+
CommitButtonsComponent.ctorParameters = () => [
|
|
6160
|
+
{ type: Renderer2 }
|
|
6161
|
+
];
|
|
6162
|
+
CommitButtonsComponent.propDecorators = {
|
|
6163
|
+
content: [{ type: ViewChildren, args: ['animatediv', { read: ElementRef },] }],
|
|
6164
|
+
committing: [{ type: Input }],
|
|
6165
|
+
commitFinished: [{ type: Input }],
|
|
6166
|
+
cancelClick: [{ type: Output }],
|
|
6167
|
+
commitClick: [{ type: Output }],
|
|
6168
|
+
showClass: [{ type: HostBinding, args: ["class.co-commit-buttons",] }]
|
|
6169
|
+
};
|
|
6170
|
+
|
|
6171
|
+
class CommitButtonsModule {
|
|
6172
|
+
}
|
|
6173
|
+
CommitButtonsModule.decorators = [
|
|
6174
|
+
{ type: NgModule, args: [{
|
|
6175
|
+
imports: [
|
|
6176
|
+
CommonModule
|
|
6177
|
+
],
|
|
6178
|
+
declarations: [
|
|
6179
|
+
CommitButtonsComponent
|
|
6180
|
+
],
|
|
6181
|
+
exports: [
|
|
6182
|
+
CommitButtonsComponent
|
|
6183
|
+
]
|
|
6184
|
+
},] }
|
|
6185
|
+
];
|
|
6186
|
+
|
|
5960
6187
|
class InputDatePickerModule {
|
|
5961
6188
|
}
|
|
5962
6189
|
InputDatePickerModule.decorators = [
|
|
@@ -5967,7 +6194,8 @@ InputDatePickerModule.decorators = [
|
|
|
5967
6194
|
FormsModule,
|
|
5968
6195
|
IconModule,
|
|
5969
6196
|
AppendPipeModule,
|
|
5970
|
-
DatePickerModule
|
|
6197
|
+
DatePickerModule,
|
|
6198
|
+
CommitButtonsModule
|
|
5971
6199
|
],
|
|
5972
6200
|
schemas: [
|
|
5973
6201
|
NO_ERRORS_SCHEMA
|
|
@@ -6008,12 +6236,13 @@ InputDateRangePickerComponent.decorators = [
|
|
|
6008
6236
|
[format]="dateFormat"
|
|
6009
6237
|
[placeholder]="placeholder"
|
|
6010
6238
|
[ngModel]="model"
|
|
6239
|
+
[(startDate)]="startDate"
|
|
6240
|
+
[(endDate)]="endDate"
|
|
6241
|
+
[readonly]="readonly"
|
|
6011
6242
|
(ngModelChange)="rangeChange()"
|
|
6012
6243
|
(close)="close.next($event)"
|
|
6013
6244
|
(select)="select.next($event)"
|
|
6014
6245
|
(cleared)="cleared.next($event)"
|
|
6015
|
-
[(startDate)]="startDate"
|
|
6016
|
-
[(endDate)]="endDate"
|
|
6017
6246
|
></ejs-daterangepicker>
|
|
6018
6247
|
<div class="required-indicator"></div>
|
|
6019
6248
|
<ng-template #validationError></ng-template>
|
|
@@ -6841,112 +7070,6 @@ ValidationErrorModule.decorators = [
|
|
|
6841
7070
|
},] }
|
|
6842
7071
|
];
|
|
6843
7072
|
|
|
6844
|
-
class CommitButtonsComponent {
|
|
6845
|
-
constructor(_renderer) {
|
|
6846
|
-
this._renderer = _renderer;
|
|
6847
|
-
this.cancelClick = new EventEmitter();
|
|
6848
|
-
this.commitClick = new EventEmitter();
|
|
6849
|
-
this._committing = false;
|
|
6850
|
-
this._commitFinished = false;
|
|
6851
|
-
this._handleAnimationIteration = (event) => {
|
|
6852
|
-
this._renderer.removeClass(event.currentTarget, 'animate');
|
|
6853
|
-
event.currentTarget.removeEventListener('animationiteration', this._handleAnimationIteration);
|
|
6854
|
-
// elem.removeEventListener('webkitAnimationIteration', () => this._handleAnimationIteration(elem));
|
|
6855
|
-
};
|
|
6856
|
-
}
|
|
6857
|
-
set content(children) {
|
|
6858
|
-
this.animateDivs = children.toArray();
|
|
6859
|
-
this._checkAnimation();
|
|
6860
|
-
}
|
|
6861
|
-
set committing(value) {
|
|
6862
|
-
this._committing = value;
|
|
6863
|
-
this._checkAnimation();
|
|
6864
|
-
}
|
|
6865
|
-
get committing() {
|
|
6866
|
-
return this._committing;
|
|
6867
|
-
}
|
|
6868
|
-
set commitFinished(value) {
|
|
6869
|
-
this._commitFinished = value;
|
|
6870
|
-
this._checkAnimationFinished();
|
|
6871
|
-
}
|
|
6872
|
-
get commitFinished() {
|
|
6873
|
-
return this._commitFinished;
|
|
6874
|
-
}
|
|
6875
|
-
showClass() {
|
|
6876
|
-
return true;
|
|
6877
|
-
}
|
|
6878
|
-
_checkAnimation() {
|
|
6879
|
-
if (this.committing && this.animateDivs) {
|
|
6880
|
-
this.animateDivs.forEach(a => this._renderer.addClass(a.nativeElement, 'animate'));
|
|
6881
|
-
}
|
|
6882
|
-
}
|
|
6883
|
-
_checkAnimationFinished() {
|
|
6884
|
-
if (this.commitFinished && this.animateDivs) {
|
|
6885
|
-
this.animateDivs.forEach(a => {
|
|
6886
|
-
a.nativeElement.addEventListener('animationiteration', this._handleAnimationIteration);
|
|
6887
|
-
// a.nativeElement.addEventListener('webkitAnimationIteration', (event) => this._handleAnimationIteration(event));
|
|
6888
|
-
});
|
|
6889
|
-
}
|
|
6890
|
-
}
|
|
6891
|
-
}
|
|
6892
|
-
CommitButtonsComponent.decorators = [
|
|
6893
|
-
{ type: Component, args: [{
|
|
6894
|
-
selector: "co-commit-buttons",
|
|
6895
|
-
template: `
|
|
6896
|
-
<div class="commit-buttons-wrapper" @showHideSaveCancel>
|
|
6897
|
-
<div class="commit-buttons-button save" [class.finished]="commitFinished"
|
|
6898
|
-
(click)="commitClick.emit($event)">
|
|
6899
|
-
<div class="save-button-spinner" *ngIf="committing || commitFinished">
|
|
6900
|
-
<div #animatediv></div>
|
|
6901
|
-
<div #animatediv></div>
|
|
6902
|
-
<div #animatediv></div>
|
|
6903
|
-
<div #animatediv></div>
|
|
6904
|
-
</div>
|
|
6905
|
-
<div class="spinner-checkmark" *ngIf="!committing || commitFinished"></div>
|
|
6906
|
-
</div>
|
|
6907
|
-
<div class="commit-buttons-button cancel" (click)="cancelClick.emit($event)">
|
|
6908
|
-
<div class="cancel-button"></div>
|
|
6909
|
-
</div>
|
|
6910
|
-
</div>
|
|
6911
|
-
`,
|
|
6912
|
-
animations: [
|
|
6913
|
-
trigger('showHideSaveCancel', [
|
|
6914
|
-
state('*', style({ transform: 'scaleY(1)', opacity: 1 })),
|
|
6915
|
-
state('void', style({ transform: 'scaleY(0)', opacity: 0 })),
|
|
6916
|
-
transition('void <=> *', animate(200))
|
|
6917
|
-
]),
|
|
6918
|
-
],
|
|
6919
|
-
encapsulation: ViewEncapsulation.None
|
|
6920
|
-
},] }
|
|
6921
|
-
];
|
|
6922
|
-
CommitButtonsComponent.ctorParameters = () => [
|
|
6923
|
-
{ type: Renderer2 }
|
|
6924
|
-
];
|
|
6925
|
-
CommitButtonsComponent.propDecorators = {
|
|
6926
|
-
content: [{ type: ViewChildren, args: ['animatediv', { read: ElementRef },] }],
|
|
6927
|
-
committing: [{ type: Input }],
|
|
6928
|
-
commitFinished: [{ type: Input }],
|
|
6929
|
-
cancelClick: [{ type: Output }],
|
|
6930
|
-
commitClick: [{ type: Output }],
|
|
6931
|
-
showClass: [{ type: HostBinding, args: ["class.co-commit-buttons",] }]
|
|
6932
|
-
};
|
|
6933
|
-
|
|
6934
|
-
class CommitButtonsModule {
|
|
6935
|
-
}
|
|
6936
|
-
CommitButtonsModule.decorators = [
|
|
6937
|
-
{ type: NgModule, args: [{
|
|
6938
|
-
imports: [
|
|
6939
|
-
CommonModule
|
|
6940
|
-
],
|
|
6941
|
-
declarations: [
|
|
6942
|
-
CommitButtonsComponent
|
|
6943
|
-
],
|
|
6944
|
-
exports: [
|
|
6945
|
-
CommitButtonsComponent
|
|
6946
|
-
]
|
|
6947
|
-
},] }
|
|
6948
|
-
];
|
|
6949
|
-
|
|
6950
7073
|
class InputTextModule {
|
|
6951
7074
|
}
|
|
6952
7075
|
InputTextModule.decorators = [
|
|
@@ -10545,5 +10668,5 @@ ClickoutsideModule.decorators = [
|
|
|
10545
10668
|
* Generated bundle index. Do not edit.
|
|
10546
10669
|
*/
|
|
10547
10670
|
|
|
10548
|
-
export { ArticleTileComponent, ArticleTileModule, ButtonComponent, ButtonDropDownComponent, ButtonDropDownModule, ButtonModule, COMPONENT_INTERFACE_NAME, CardComponent, CardModule, Carousel3dComponent, Carousel3dModule, ClickoutsideModule, CoDialogComponent, CoDialogModule, CoDialogPromptComponent, CoDialogPromptModule, CoDialogWizardComponent, CoDialogWizardModule, CoGridComponent, CoGridModule, CoKanbanComponent, CoKanbanModule, CoPivotComponent, CoPivotModule, CoRichTextEditorComponent, CoRichTextEditorModule, CoScheduleComponent, CoScheduleModule, CoSidebarComponent, CoSidebarModule, CoToggleComponent, CoToggleModule, CollapsibleComponent, CollapsibleModule, ColumnAlign, CoreComponentsIcon, DropDownListComponent, DropDownModule, FilterItemComponent, FilterItemModule, FormComponent, FormMasterService, FormModule, GridToolbarButtonComponent, GridToolbarButtonModule, GridToolbarComponent, GridToolbarModule, IconCacheService, IconComponent, IconModule, ImageComponent, ImageModule, InputCheckboxComponent, InputCheckboxModule, InputCheckboxMultiSelectComponent, InputCheckboxMultiSelectModule, InputComboBoxComponent, InputComboBoxModule, InputDatePickerComponent, InputDatePickerModule, InputDateRangePickerComponent, InputDateRangePickerModule, InputListboxComponent, InputListboxModule, InputNumberPickerComponent, InputNumberPickerModule, InputRadioButtonComponent, InputRadioButtonModule, InputSearchComponent, InputSearchModule, InputTextComponent, InputTextModule, InputTextareaComponent, InputTextareaModule, LevelIndicatorComponent, LevelIndicatorModule, MultiSelectListComponent, MultiSelectListModule, ObserveVisibilityModule, PaginationBarComponent, PaginationBarModule, PaginationComponent, PaginationModule, PopupButtonsComponent, PopupMessageDisplayComponent, PopupModule, PopupWindowShellComponent, PriceDisplayPipe, PriceDisplayPipeModule, PromptService, SimpleGridColumnDirective, SimpleGridComponent, SimpleGridModule, TextInputPopupComponent, TileComponent, TileModule, RippleModule as ɵa, MD_RIPPLE_GLOBAL_OPTIONS as ɵb, PaginationService as ɵba, PaginatePipe as ɵbb, SimpleGridCellComponent as ɵbc, PrependPipeModule as ɵbd, PrependPipe as ɵbe, ClickOutsideDirective as ɵbf, ClickOutsideMasterService as ɵbg, CoRippleDirective as ɵc, CoViewportRulerService as ɵd, CoScrollDispatcherService as ɵe, CoScrollableDirective as ɵf, StopClickModule as ɵg, StopClickDirective as ɵh, InputBoolean as ɵi, BaseModule as ɵj, FormInputUserModelChangeListenerService as ɵk, NgZoneWrapperService as ɵl, BaseInputComponent as ɵm, BaseSelectionGridComponent as ɵn, BaseInlineEditGridComponent as ɵo, BaseToolbarGridComponent as ɵp, BaseGridComponent as ɵq, AppendPipeModule as ɵr, AppendPipe as ɵs,
|
|
10671
|
+
export { ArticleTileComponent, ArticleTileModule, ButtonComponent, ButtonDropDownComponent, ButtonDropDownModule, ButtonModule, COMPONENT_INTERFACE_NAME, CardComponent, CardModule, Carousel3dComponent, Carousel3dModule, ClickoutsideModule, CoDialogComponent, CoDialogModule, CoDialogPromptComponent, CoDialogPromptModule, CoDialogWizardComponent, CoDialogWizardModule, CoDirection, CoGridComponent, CoGridModule, CoKanbanComponent, CoKanbanModule, CoOrientation, CoPivotComponent, CoPivotModule, CoRichTextEditorComponent, CoRichTextEditorModule, CoScheduleComponent, CoScheduleModule, CoSidebarComponent, CoSidebarModule, CoToggleComponent, CoToggleModule, CollapsibleComponent, CollapsibleModule, ColumnAlign, CoreComponentsIcon, DropDownListComponent, DropDownModule, FilterItemComponent, FilterItemModule, FormComponent, FormMasterService, FormModule, GridToolbarButtonComponent, GridToolbarButtonModule, GridToolbarComponent, GridToolbarModule, IconCacheService, IconCollapseHandleComponent, IconCollapseHandleModule, IconComponent, IconModule, ImageComponent, ImageModule, InputCheckboxComponent, InputCheckboxModule, InputCheckboxMultiSelectComponent, InputCheckboxMultiSelectModule, InputComboBoxComponent, InputComboBoxModule, InputDatePickerComponent, InputDatePickerModule, InputDateRangePickerComponent, InputDateRangePickerModule, InputListboxComponent, InputListboxModule, InputNumberPickerComponent, InputNumberPickerModule, InputRadioButtonComponent, InputRadioButtonModule, InputSearchComponent, InputSearchModule, InputTextComponent, InputTextModule, InputTextareaComponent, InputTextareaModule, LevelIndicatorComponent, LevelIndicatorModule, MultiSelectListComponent, MultiSelectListModule, ObserveVisibilityModule, OrientationOfDirection, PaginationBarComponent, PaginationBarModule, PaginationComponent, PaginationModule, PopupButtonsComponent, PopupMessageDisplayComponent, PopupModule, PopupWindowShellComponent, PriceDisplayPipe, PriceDisplayPipeModule, PromptService, SimpleGridColumnDirective, SimpleGridComponent, SimpleGridModule, TextInputPopupComponent, TileComponent, TileModule, RippleModule as ɵa, MD_RIPPLE_GLOBAL_OPTIONS as ɵb, PaginationService as ɵba, PaginatePipe as ɵbb, SimpleGridCellComponent as ɵbc, PrependPipeModule as ɵbd, PrependPipe as ɵbe, ClickOutsideDirective as ɵbf, ClickOutsideMasterService as ɵbg, CoRippleDirective as ɵc, CoViewportRulerService as ɵd, CoScrollDispatcherService as ɵe, CoScrollableDirective as ɵf, StopClickModule as ɵg, StopClickDirective as ɵh, InputBoolean as ɵi, BaseModule as ɵj, FormInputUserModelChangeListenerService as ɵk, NgZoneWrapperService as ɵl, BaseInputComponent as ɵm, BaseSelectionGridComponent as ɵn, BaseInlineEditGridComponent as ɵo, BaseToolbarGridComponent as ɵp, BaseGridComponent as ɵq, AppendPipeModule as ɵr, AppendPipe as ɵs, CommitButtonsModule as ɵt, CommitButtonsComponent as ɵu, ValidationErrorModule as ɵv, ValidationErrorComponent as ɵw, PopupShowerService as ɵx, BaseSimpleGridComponent as ɵy, ObserveVisibilityDirective as ɵz };
|
|
10549
10672
|
//# sourceMappingURL=colijnit-corecomponents_v12.js.map
|