Skip to content

Commit

Permalink
fix(build): change datepicker imports and combobox size input type
Browse files Browse the repository at this point in the history
  • Loading branch information
Donisius committed Jun 22, 2020
1 parent 7699aaf commit 9fe4f39
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/combobox/combobox.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export class ComboBox implements OnChanges, AfterViewInit, AfterContentInit {
*
* @deprecated since v4
*/
@Input() size: "sm" | "md" | "lg" = "md";
@Input() size: "sm" | "md" | "xl" = "md";
/**
* Label for the combobox.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/datepicker/datepicker.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { DatePickerInput } from "../datepicker-input/datepicker-input.component"
import { CalendarModule } from "@carbon/icons-angular";
import { FormsModule } from "@angular/forms";
import { UtilsModule } from "../utils/utils.module";
import { I18nModule } from "../i18n";
import { I18nModule } from "../i18n/i18n.module";

@Component({
template: `
Expand Down
2 changes: 1 addition & 1 deletion src/datepicker/datepicker.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import { Subscription } from "rxjs";
import * as languages from "flatpickr/dist/l10n/index";
import { DatePickerInput } from "../datepicker-input/datepicker-input.component";
import { ElementService } from "../utils/element.service";
import { I18n } from "./../i18n";
import { I18n } from "./../i18n/i18n.service";

/**
* [See demo](../../?path=/story/date-picker--single)
Expand Down

0 comments on commit 9fe4f39

Please sign in to comment.