@colijnit/corecomponents_v12 12.0.36 → 12.0.37
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 +46 -0
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/grid-toolbar-button/grid-toolbar-button.component.js +28 -0
- package/esm2015/lib/components/grid-toolbar-button/grid-toolbar-button.module.js +21 -0
- package/esm2015/public-api.js +3 -1
- package/fesm2015/colijnit-corecomponents_v12.js +45 -1
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/grid-toolbar-button/grid-toolbar-button.component.d.ts +8 -0
- package/lib/components/grid-toolbar-button/grid-toolbar-button.module.d.ts +2 -0
- package/lib/components/grid-toolbar-button/style/_layout.scss +18 -0
- package/lib/components/grid-toolbar-button/style/_material-definition.scss +0 -0
- package/lib/components/grid-toolbar-button/style/_theme.scss +5 -0
- package/lib/components/grid-toolbar-button/style/material.scss +5 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -5959,6 +5959,50 @@
|
|
|
5959
5959
|
},] }
|
|
5960
5960
|
];
|
|
5961
5961
|
|
|
5962
|
+
var GridToolbarButtonComponent = /** @class */ (function () {
|
|
5963
|
+
function GridToolbarButtonComponent() {
|
|
5964
|
+
this.disabled = false;
|
|
5965
|
+
this.buttonClick = new core.EventEmitter();
|
|
5966
|
+
}
|
|
5967
|
+
GridToolbarButtonComponent.prototype.showClass = function () {
|
|
5968
|
+
return true;
|
|
5969
|
+
};
|
|
5970
|
+
return GridToolbarButtonComponent;
|
|
5971
|
+
}());
|
|
5972
|
+
GridToolbarButtonComponent.decorators = [
|
|
5973
|
+
{ type: core.Component, args: [{
|
|
5974
|
+
selector: "co-grid-toolbar-button",
|
|
5975
|
+
template: "\n <div class=\"grid-toolbar-button-wrapper\" [class.disabled]=\"disabled\" (click)=\"buttonClick.next()\">\n <co-icon [iconData]=\"iconData\"></co-icon>\n </div>\n ",
|
|
5976
|
+
encapsulation: core.ViewEncapsulation.None
|
|
5977
|
+
},] }
|
|
5978
|
+
];
|
|
5979
|
+
GridToolbarButtonComponent.propDecorators = {
|
|
5980
|
+
iconData: [{ type: core.Input }],
|
|
5981
|
+
disabled: [{ type: core.Input }],
|
|
5982
|
+
buttonClick: [{ type: core.Output }],
|
|
5983
|
+
showClass: [{ type: core.HostBinding, args: ["class.co-grid-toolbar-button",] }]
|
|
5984
|
+
};
|
|
5985
|
+
|
|
5986
|
+
ej2Base.enableRipple(true);
|
|
5987
|
+
var GridToolbarButtonModule = /** @class */ (function () {
|
|
5988
|
+
function GridToolbarButtonModule() {
|
|
5989
|
+
}
|
|
5990
|
+
return GridToolbarButtonModule;
|
|
5991
|
+
}());
|
|
5992
|
+
GridToolbarButtonModule.decorators = [
|
|
5993
|
+
{ type: core.NgModule, args: [{
|
|
5994
|
+
imports: [
|
|
5995
|
+
IconModule,
|
|
5996
|
+
],
|
|
5997
|
+
declarations: [
|
|
5998
|
+
GridToolbarButtonComponent
|
|
5999
|
+
],
|
|
6000
|
+
exports: [
|
|
6001
|
+
GridToolbarButtonComponent
|
|
6002
|
+
]
|
|
6003
|
+
},] }
|
|
6004
|
+
];
|
|
6005
|
+
|
|
5962
6006
|
var InputCheckboxComponent = /** @class */ (function (_super) {
|
|
5963
6007
|
__extends(InputCheckboxComponent, _super);
|
|
5964
6008
|
function InputCheckboxComponent(formComponent, iconCacheService, changeDetector, componentFactoryResolver, formUserChangeListener, ngZoneWrapper, elementRef) {
|
|
@@ -10055,6 +10099,8 @@
|
|
|
10055
10099
|
exports.FormComponent = FormComponent;
|
|
10056
10100
|
exports.FormMasterService = FormMasterService;
|
|
10057
10101
|
exports.FormModule = FormModule;
|
|
10102
|
+
exports.GridToolbarButtonComponent = GridToolbarButtonComponent;
|
|
10103
|
+
exports.GridToolbarButtonModule = GridToolbarButtonModule;
|
|
10058
10104
|
exports.GridToolbarComponent = GridToolbarComponent;
|
|
10059
10105
|
exports.GridToolbarModule = GridToolbarModule;
|
|
10060
10106
|
exports.IconCacheService = IconCacheService;
|