@sd-angular/core 0.0.893 → 0.0.894

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.
Files changed (31) hide show
  1. package/assets/scss/core/typography.scss +1 -1
  2. package/bundles/sd-angular-core-grid-material.umd.js +1 -1
  3. package/bundles/sd-angular-core-grid-material.umd.js.map +1 -1
  4. package/bundles/sd-angular-core-grid-material.umd.min.js +1 -1
  5. package/bundles/sd-angular-core-grid-material.umd.min.js.map +1 -1
  6. package/bundles/sd-angular-core-input.umd.js +10 -1
  7. package/bundles/sd-angular-core-input.umd.js.map +1 -1
  8. package/bundles/sd-angular-core-input.umd.min.js +1 -1
  9. package/bundles/sd-angular-core-input.umd.min.js.map +1 -1
  10. package/bundles/sd-angular-core-side-drawer.umd.js +11 -3
  11. package/bundles/sd-angular-core-side-drawer.umd.js.map +1 -1
  12. package/bundles/sd-angular-core-side-drawer.umd.min.js +2 -2
  13. package/bundles/sd-angular-core-side-drawer.umd.min.js.map +1 -1
  14. package/esm2015/grid-material/src/lib/components/desktop-command/desktop-command.component.js +2 -2
  15. package/esm2015/grid-material/src/lib/models/grid-command.model.js +1 -1
  16. package/esm2015/input/src/lib/input.component.js +7 -2
  17. package/esm2015/side-drawer/src/lib/side-drawer/side-drawer.component.js +13 -5
  18. package/fesm2015/sd-angular-core-grid-material.js +1 -1
  19. package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
  20. package/fesm2015/sd-angular-core-input.js +6 -1
  21. package/fesm2015/sd-angular-core-input.js.map +1 -1
  22. package/fesm2015/sd-angular-core-side-drawer.js +12 -4
  23. package/fesm2015/sd-angular-core-side-drawer.js.map +1 -1
  24. package/grid-material/sd-angular-core-grid-material.metadata.json +1 -1
  25. package/grid-material/src/lib/models/grid-command.model.d.ts +2 -1
  26. package/input/sd-angular-core-input.metadata.json +1 -1
  27. package/input/src/lib/input.component.d.ts +2 -0
  28. package/package.json +1 -1
  29. package/{sd-angular-core-0.0.893.tgz → sd-angular-core-0.0.894.tgz} +0 -0
  30. package/side-drawer/sd-angular-core-side-drawer.metadata.json +1 -1
  31. package/side-drawer/src/lib/side-drawer/side-drawer.component.d.ts +5 -1
@@ -92,7 +92,7 @@ $fs-xxxl: 42px;
92
92
 
93
93
  .T12R {
94
94
  font-weight: normal;
95
- font-size: 12px;
95
+ font-size: 12px !important;
96
96
  line-height: 16px;
97
97
  }
98
98
 
@@ -2932,7 +2932,7 @@
2932
2932
  SdDesktopCommand.decorators = [
2933
2933
  { type: core.Component, args: [{
2934
2934
  selector: 'sd-desktop-command',
2935
- template: "<ng-container *ngIf=\"item | commandFilter:commands | async; $implicit as filteredCommands\">\r\n <ng-container *ngFor=\"let command of filteredCommands\">\r\n <ng-container *ngIf=\"command?.click; else elseChildren\">\r\n <button (click)=\"command.click(item)\" [matTooltip]=\"command.title | commandTitle:item\" aria-hidden=\"true\"\r\n [disabled]=\"item | commandDisable:command\" mat-icon-button>\r\n <mat-icon class=\"c-icon\" [fontSet]=\"command.fontSet\">{{command | commandIcon:item}}</mat-icon>\r\n </button>\r\n </ng-container>\r\n <ng-template #elseChildren>\r\n <button [matMenuTriggerFor]=\"menu\" aria-hidden=\"true\" mat-icon-button>\r\n <mat-icon *ngIf=\"command?.icon\" class=\"c-icon\" [fontSet]=\"command.fontSet\">{{command | commandIcon:item}}\r\n </mat-icon>\r\n <mat-icon *ngIf=\"!command?.icon\" class=\"c-icon\">more_vert</mat-icon>\r\n </button>\r\n <mat-menu #menu=\"matMenu\">\r\n <span>\r\n <button *ngFor=\"let childCommand of command.children\" mat-menu-item (click)=\"childCommand.click(item)\"\r\n [disabled]=\"item | commandDisable:childCommand\">\r\n <mat-icon [fontSet]=\"command.fontSet\" class=\"c-icon\">{{childCommand | commandIcon:item}}\r\n </mat-icon>\r\n <span> {{childCommand | commandTitle:item}}</span>\r\n </button>\r\n </span>\r\n </mat-menu>\r\n </ng-template>\r\n </ng-container>\r\n</ng-container>",
2935
+ template: "<ng-container *ngIf=\"item | commandFilter:commands | async; $implicit as filteredCommands\">\r\n <ng-container *ngFor=\"let command of filteredCommands\">\r\n <ng-container *ngIf=\"command?.click; else elseChildren\">\r\n <button (click)=\"command.click(item)\" [matTooltip]=\"command.title | commandTitle:item\" aria-hidden=\"true\"\r\n [disabled]=\"item | commandDisable:command\" mat-icon-button>\r\n <mat-icon class=\"c-icon\" [fontSet]=\"command.fontSet\">{{command | commandIcon:item}}</mat-icon>\r\n </button>\r\n </ng-container>\r\n <ng-template #elseChildren>\r\n <button [matMenuTriggerFor]=\"menu\" aria-hidden=\"true\" mat-icon-button>\r\n <mat-icon *ngIf=\"command?.icon\" class=\"c-icon\" [fontSet]=\"command.fontSet\">{{command | commandIcon:item}}\r\n </mat-icon>\r\n <mat-icon *ngIf=\"!command?.icon\" class=\"c-icon\">more_vert</mat-icon>\r\n </button>\r\n <mat-menu #menu=\"matMenu\">\r\n <span>\r\n <button *ngFor=\"let childCommand of command.children\" mat-menu-item (click)=\"childCommand.click(item)\"\r\n [disabled]=\"item | commandDisable:childCommand\">\r\n <ng-container *ngIf=\"!childCommand.htmlTemplate\">\r\n <mat-icon [fontSet]=\"command.fontSet\" class=\"c-icon\">{{childCommand | commandIcon:item}}\r\n </mat-icon>\r\n <span> {{childCommand | commandTitle:item}}</span>\r\n </ng-container>\r\n <ng-container *ngIf=\"childCommand.htmlTemplate\">\r\n <div [innerHTML]=\"childCommand.htmlTemplate(item)\"></div>\r\n </ng-container>\r\n </button>\r\n </span>\r\n </mat-menu>\r\n </ng-template>\r\n </ng-container>\r\n</ng-container>\r\n",
2936
2936
  styles: [":host{align-items:center;display:flex;justify-content:center}mat-icon.c-icon{color:rgba(0,0,0,.54)!important}"]
2937
2937
  },] }
2938
2938
  ];