Skip to content

Commit

Permalink
chore: fix imports (#2278)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladitasev authored Sep 30, 2020
1 parent 793a29e commit 3c9624f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/main/src/DayPicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ import calculateWeekNumber from "@ui5/webcomponents-localization/dist/dates/calc
import CalendarType from "@ui5/webcomponents-base/dist/types/CalendarType.js";
import ItemNavigationBehavior from "@ui5/webcomponents-base/dist/types/ItemNavigationBehavior.js";
import { fetchI18nBundle, getI18nBundle } from "@ui5/webcomponents-base/dist/i18nBundle.js";
import RenderScheduler from "@ui5/webcomponents-base/dist/RenderScheduler.js";
import DayPickerTemplate from "./generated/templates/DayPickerTemplate.lit.js";
import RenderScheduler from "../../base/src/RenderScheduler.js";

import {
DAY_PICKER_WEEK_NUMBER_TEXT,
Expand Down
2 changes: 1 addition & 1 deletion packages/main/src/TimePicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
isPageDownShift,
isPageUpShiftCtrl,
isPageDownShiftCtrl,
} from "@ui5/webcomponents-base/src/Keys.js";
} from "@ui5/webcomponents-base/dist/Keys.js";
import "@ui5/webcomponents-icons/dist/icons/time-entry-request.js";
import Icon from "./Icon.js";
import PopoverHorizontalAlign from "./types/PopoverHorizontalAlign.js";
Expand Down
2 changes: 1 addition & 1 deletion packages/main/src/WheelSlider.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
isUp,
isPageUp,
isPageDown,
} from "@ui5/webcomponents-base/src/Keys.js";
} from "@ui5/webcomponents-base/dist/Keys.js";
import "@ui5/webcomponents-icons/dist/icons/navigation-up-arrow.js";
import "@ui5/webcomponents-icons/dist/icons/navigation-down-arrow.js";
import ScrollEnablement from "@ui5/webcomponents-base/dist/delegate/ScrollEnablement.js";
Expand Down

0 comments on commit 3c9624f

Please sign in to comment.