@progress/kendo-angular-buttons 7.0.1-dev.202201191229 → 7.0.1

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.
@@ -9,7 +9,7 @@ export var packageMetadata = {
9
9
  name: '@progress/kendo-angular-buttons',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1642595280,
12
+ publishDate: 1642598733,
13
13
  version: '',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
15
15
  };
@@ -254,7 +254,6 @@ var SplitButtonComponent = /** @class */ (function (_super) {
254
254
  * * `link`
255
255
  */
256
256
  set: function (fillMode) {
257
- // Temporary workaround for missing 'clear' styles
258
257
  this._fillMode = fillMode === 'clear' ? 'flat' : fillMode;
259
258
  },
260
259
  enumerable: true,
@@ -84,6 +84,7 @@ export declare class ButtonDirective implements OnDestroy, AfterViewInit {
84
84
  * * `'flat'`
85
85
  * * `'solid'` (default)
86
86
  * * `'outline'`
87
+ * * `'clear'`
87
88
  * * `'link'`
88
89
  * * `null`
89
90
  */
@@ -184,6 +184,7 @@ let ButtonDirective = class ButtonDirective {
184
184
  * * `'flat'`
185
185
  * * `'solid'` (default)
186
186
  * * `'outline'`
187
+ * * `'clear'`
187
188
  * * `'link'`
188
189
  * * `null`
189
190
  */
@@ -204,7 +204,6 @@ let DropDownButtonComponent = class DropDownButtonComponent extends ListButton {
204
204
  * * `null`
205
205
  */
206
206
  set fillMode(fillMode) {
207
- // Temporary workaround for missing 'clear' styles
208
207
  this._fillMode = fillMode === 'clear' ? 'flat' : fillMode;
209
208
  }
210
209
  get fillMode() {