@vaadin/date-picker 24.8.4 → 25.0.0-alpha10

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 (63) hide show
  1. package/README.md +0 -23
  2. package/package.json +15 -15
  3. package/src/styles/vaadin-date-picker-base-styles.d.ts +8 -0
  4. package/src/styles/vaadin-date-picker-base-styles.js +30 -0
  5. package/src/styles/vaadin-date-picker-core-styles.d.ts +8 -0
  6. package/src/styles/vaadin-date-picker-overlay-base-styles.js +48 -0
  7. package/src/styles/vaadin-date-picker-overlay-content-base-styles.js +107 -0
  8. package/src/styles/vaadin-date-picker-overlay-content-core-styles.js +54 -0
  9. package/src/styles/vaadin-date-picker-year-base-styles.js +26 -0
  10. package/src/styles/vaadin-date-picker-year-core-styles.js +13 -0
  11. package/src/styles/vaadin-month-calendar-base-styles.js +140 -0
  12. package/src/vaadin-date-picker-helper.d.ts +5 -0
  13. package/src/vaadin-date-picker-mixin.js +34 -45
  14. package/src/vaadin-date-picker-month-scroller.js +2 -6
  15. package/src/vaadin-date-picker-overlay-content-mixin.js +5 -135
  16. package/src/vaadin-date-picker-overlay-content.js +28 -31
  17. package/src/vaadin-date-picker-overlay.js +27 -11
  18. package/src/vaadin-date-picker-year-scroller.js +3 -4
  19. package/src/vaadin-date-picker-year.js +39 -11
  20. package/src/vaadin-date-picker.d.ts +11 -14
  21. package/src/vaadin-date-picker.js +73 -54
  22. package/src/vaadin-infinite-scroller.js +1 -22
  23. package/src/vaadin-month-calendar.js +69 -47
  24. package/theme/lumo/vaadin-date-picker-overlay-content-styles.js +19 -46
  25. package/theme/lumo/vaadin-date-picker-overlay-styles.js +0 -1
  26. package/web-types.json +2 -369
  27. package/web-types.lit.json +2 -156
  28. package/src/vaadin-date-picker-light.d.ts +0 -112
  29. package/src/vaadin-date-picker-light.js +0 -136
  30. package/src/vaadin-date-picker-overlay-content-styles.js +0 -68
  31. package/src/vaadin-date-picker-year-mixin.js +0 -35
  32. package/src/vaadin-lit-date-picker-overlay-content.js +0 -70
  33. package/src/vaadin-lit-date-picker-overlay.js +0 -46
  34. package/src/vaadin-lit-date-picker-year.js +0 -41
  35. package/src/vaadin-lit-date-picker.js +0 -172
  36. package/src/vaadin-lit-month-calendar.js +0 -98
  37. package/theme/lumo/vaadin-date-picker-light.d.ts +0 -4
  38. package/theme/lumo/vaadin-date-picker-light.js +0 -4
  39. package/theme/lumo/vaadin-lit-date-picker.d.ts +0 -5
  40. package/theme/lumo/vaadin-lit-date-picker.js +0 -5
  41. package/theme/material/vaadin-date-picker-light.d.ts +0 -4
  42. package/theme/material/vaadin-date-picker-light.js +0 -4
  43. package/theme/material/vaadin-date-picker-overlay-content-styles.d.ts +0 -6
  44. package/theme/material/vaadin-date-picker-overlay-content-styles.js +0 -132
  45. package/theme/material/vaadin-date-picker-overlay-styles.d.ts +0 -1
  46. package/theme/material/vaadin-date-picker-overlay-styles.js +0 -47
  47. package/theme/material/vaadin-date-picker-styles.d.ts +0 -3
  48. package/theme/material/vaadin-date-picker-styles.js +0 -22
  49. package/theme/material/vaadin-date-picker-year-styles.d.ts +0 -1
  50. package/theme/material/vaadin-date-picker-year-styles.js +0 -28
  51. package/theme/material/vaadin-date-picker.d.ts +0 -5
  52. package/theme/material/vaadin-date-picker.js +0 -5
  53. package/theme/material/vaadin-lit-date-picker.d.ts +0 -5
  54. package/theme/material/vaadin-lit-date-picker.js +0 -5
  55. package/theme/material/vaadin-month-calendar-styles.d.ts +0 -2
  56. package/theme/material/vaadin-month-calendar-styles.js +0 -120
  57. package/vaadin-date-picker-light.d.ts +0 -1
  58. package/vaadin-date-picker-light.js +0 -2
  59. package/vaadin-lit-date-picker.d.ts +0 -1
  60. package/vaadin-lit-date-picker.js +0 -2
  61. /package/src/{vaadin-date-picker-styles.js → styles/vaadin-date-picker-core-styles.js} +0 -0
  62. /package/src/{vaadin-date-picker-overlay-styles.js → styles/vaadin-date-picker-overlay-core-styles.js} +0 -0
  63. /package/src/{vaadin-month-calendar-styles.js → styles/vaadin-month-calendar-core-styles.js} +0 -0
@@ -1,98 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright (c) 2016 - 2025 Vaadin Ltd.
4
- * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
- */
6
- import { html, LitElement } from 'lit';
7
- import { defineCustomElement } from '@vaadin/component-base/src/define.js';
8
- import { PolylitMixin } from '@vaadin/component-base/src/polylit-mixin.js';
9
- import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
10
- import { MonthCalendarMixin } from './vaadin-month-calendar-mixin.js';
11
- import { monthCalendarStyles } from './vaadin-month-calendar-styles.js';
12
-
13
- /**
14
- * @extends HTMLElement
15
- * @private
16
- */
17
- class MonthCalendar extends MonthCalendarMixin(ThemableMixin(PolylitMixin(LitElement))) {
18
- static get is() {
19
- return 'vaadin-month-calendar';
20
- }
21
-
22
- static get styles() {
23
- return monthCalendarStyles;
24
- }
25
-
26
- /** @protected */
27
- render() {
28
- const weekDayNames = this.__computeWeekDayNames(this.i18n, this.showWeekNumbers);
29
- const weeks = this._weeks;
30
- const hideWeekSeparator = !this.__computeShowWeekSeparator(this.showWeekNumbers, this.i18n);
31
-
32
- return html`
33
- <div part="month-header" id="month-header" aria-hidden="true">${this._getTitle(this.month, this.i18n)}</div>
34
- <table
35
- id="monthGrid"
36
- role="grid"
37
- aria-labelledby="month-header"
38
- @touchend="${this._preventDefault}"
39
- @touchstart="${this._onMonthGridTouchStart}"
40
- >
41
- <thead id="weekdays-container">
42
- <tr role="row" part="weekdays">
43
- <th part="weekday" aria-hidden="true" ?hidden="${hideWeekSeparator}"></th>
44
- ${weekDayNames.map(
45
- (item) => html`
46
- <th role="columnheader" part="weekday" scope="col" abbr="${item.weekDay}" aria-hidden="true">
47
- ${item.weekDayShort}
48
- </th>
49
- `,
50
- )}
51
- </tr>
52
- </thead>
53
- <tbody id="days-container">
54
- ${weeks.map(
55
- (week) => html`
56
- <tr role="row">
57
- <td part="week-number" aria-hidden="true" ?hidden="${hideWeekSeparator}">
58
- ${this.__computeWeekNumber(week)}
59
- </td>
60
- ${week.map((date) => {
61
- return html`
62
- <td
63
- role="gridcell"
64
- part="${this.__computeDatePart(
65
- date,
66
- this.focusedDate,
67
- this.selectedDate,
68
- this.minDate,
69
- this.maxDate,
70
- this.isDateDisabled,
71
- this.enteredDate,
72
- this.__hasFocus,
73
- )}"
74
- .date="${date}"
75
- ?disabled="${this.__isDayDisabled(date, this.minDate, this.maxDate, this.isDateDisabled)}"
76
- tabindex="${this.__computeDayTabIndex(date, this.focusedDate)}"
77
- aria-selected="${this.__computeDayAriaSelected(date, this.selectedDate)}"
78
- aria-disabled="${this.__computeDayAriaDisabled(
79
- date,
80
- this.minDate,
81
- this.maxDate,
82
- this.isDateDisabled,
83
- )}"
84
- aria-label="${this.__computeDayAriaLabel(date)}"
85
- >${this._getDate(date)}</td
86
- >
87
- `;
88
- })}
89
- </tr>
90
- `,
91
- )}
92
- </tbody>
93
- </table>
94
- `;
95
- }
96
- }
97
-
98
- defineCustomElement(MonthCalendar);
@@ -1,4 +0,0 @@
1
- import './vaadin-date-picker-overlay-styles.js';
2
- import './vaadin-date-picker-overlay-content-styles.js';
3
- import './vaadin-month-calendar-styles.js';
4
- import '../../src/vaadin-date-picker-light.js';
@@ -1,4 +0,0 @@
1
- import './vaadin-date-picker-overlay-styles.js';
2
- import './vaadin-date-picker-overlay-content-styles.js';
3
- import './vaadin-month-calendar-styles.js';
4
- import '../../src/vaadin-date-picker-light.js';
@@ -1,5 +0,0 @@
1
- import './vaadin-date-picker-overlay-styles.js';
2
- import './vaadin-date-picker-overlay-content-styles.js';
3
- import './vaadin-month-calendar-styles.js';
4
- import './vaadin-date-picker-styles.js';
5
- import '../../src/vaadin-lit-date-picker.js';
@@ -1,5 +0,0 @@
1
- import './vaadin-date-picker-overlay-styles.js';
2
- import './vaadin-date-picker-overlay-content-styles.js';
3
- import './vaadin-month-calendar-styles.js';
4
- import './vaadin-date-picker-styles.js';
5
- import '../../src/vaadin-lit-date-picker.js';
@@ -1,4 +0,0 @@
1
- import './vaadin-date-picker-overlay-styles.js';
2
- import './vaadin-date-picker-overlay-content-styles.js';
3
- import './vaadin-month-calendar-styles.js';
4
- import '../../src/vaadin-date-picker-light.js';
@@ -1,4 +0,0 @@
1
- import './vaadin-date-picker-overlay-styles.js';
2
- import './vaadin-date-picker-overlay-content-styles.js';
3
- import './vaadin-month-calendar-styles.js';
4
- import '../../src/vaadin-date-picker-light.js';
@@ -1,6 +0,0 @@
1
- import '@vaadin/vaadin-material-styles/color.js';
2
- import '@vaadin/vaadin-material-styles/font-icons.js';
3
- import '@vaadin/vaadin-material-styles/typography.js';
4
- import '@vaadin/vaadin-material-styles/shadow.js';
5
- import '@vaadin/button/theme/material/vaadin-button-styles.js';
6
- import './vaadin-date-picker-year-styles.js';
@@ -1,132 +0,0 @@
1
- import '@vaadin/vaadin-material-styles/color.js';
2
- import '@vaadin/vaadin-material-styles/font-icons.js';
3
- import '@vaadin/vaadin-material-styles/typography.js';
4
- import '@vaadin/vaadin-material-styles/shadow.js';
5
- import '@vaadin/button/theme/material/vaadin-button-styles.js';
6
- import './vaadin-date-picker-year-styles.js';
7
- import { css, registerStyles } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
8
-
9
- registerStyles(
10
- 'vaadin-date-picker-overlay-content',
11
- css`
12
- :host {
13
- background: var(--material-background-color);
14
- font-family: var(--material-font-family);
15
- font-size: var(--material-body-font-size);
16
- -webkit-text-size-adjust: 100%;
17
- line-height: 1.4;
18
- }
19
-
20
- :host([fullscreen]) {
21
- position: absolute;
22
- }
23
-
24
- [part='overlay-header'] {
25
- display: flex;
26
- align-items: baseline;
27
- position: relative;
28
- color: var(--material-body-text-color);
29
- background: var(--material-secondary-background-color);
30
- border-bottom: 2px solid var(--material-primary-color);
31
- padding: 8px;
32
- box-shadow: var(--material-shadow-elevation-4dp);
33
- }
34
-
35
- [part='label'] {
36
- padding: 0 8px;
37
- flex: auto;
38
- }
39
-
40
- [part='clear-button'],
41
- [part='toggle-button'] {
42
- font-family: 'material-icons';
43
- font-size: var(--material-icon-font-size);
44
- line-height: 24px;
45
- width: 24px;
46
- height: 24px;
47
- text-align: center;
48
- padding: 8px;
49
- color: var(--material-secondary-text-color);
50
- }
51
-
52
- [part='clear-button']:hover,
53
- [part='toggle-button']:hover,
54
- [part='years-toggle-button']:hover {
55
- color: inherit;
56
- }
57
-
58
- [part='clear-button']::before {
59
- content: var(--material-icons-clear);
60
- }
61
-
62
- [part='toggle-button']::before {
63
- content: var(--material-icons-calendar);
64
- }
65
-
66
- [part='years-toggle-button'] {
67
- padding: 4px 8px;
68
- font-size: var(--material-body-font-size);
69
- font-weight: 500;
70
- line-height: 24px;
71
- letter-spacing: 0.05em;
72
- color: var(--material-secondary-text-color);
73
- }
74
-
75
- [part='years-toggle-button']::after {
76
- content: var(--material-icons-play);
77
- display: inline-block;
78
- width: 24px;
79
- font-family: 'material-icons';
80
- font-size: var(--material-icon-font-size);
81
- line-height: 24px;
82
- text-align: center;
83
- transition: transform 100ms cubic-bezier(0.4, 0, 0.2, 1);
84
- }
85
-
86
- :host([years-visible]) [part='years-toggle-button']::after {
87
- transform: rotate(90deg);
88
- }
89
-
90
- ::slotted([slot='months']) {
91
- --vaadin-infinite-scroller-item-height: 328px;
92
- text-align: center;
93
- }
94
-
95
- ::slotted([slot='years']) {
96
- background: var(--material-secondary-text-color);
97
- color: var(--material-background-color);
98
- font-size: var(--material-body-font-size);
99
- font-weight: 400;
100
- line-height: 1.4;
101
- text-align: center;
102
- }
103
-
104
- ::slotted([slot='years'])::before {
105
- border: 0;
106
- width: 8px;
107
- height: 8px;
108
- transform: translateX(-50%) rotate(-45deg);
109
- background: var(--material-background-color);
110
- }
111
-
112
- [part='toolbar'] {
113
- display: flex;
114
- justify-content: flex-end;
115
- padding: 8px 4px;
116
- border-top: 1px solid var(--material-divider-color);
117
- }
118
-
119
- ::slotted([slot='cancel-button']) {
120
- order: 1;
121
- }
122
-
123
- ::slotted([slot='today-button']) {
124
- order: 2;
125
- }
126
-
127
- ::slotted(vaadin-button) {
128
- margin: 0 4px;
129
- }
130
- `,
131
- { moduleId: 'material-date-picker-overlay-content' },
132
- );
@@ -1 +0,0 @@
1
- export {};
@@ -1,47 +0,0 @@
1
- import { overlay } from '@vaadin/vaadin-material-styles/mixins/overlay.js';
2
- import { css, registerStyles } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
3
-
4
- const datePickerOverlay = css`
5
- :host([fullscreen]) {
6
- /* stylelint-disable declaration-block-no-redundant-longhand-properties */
7
- top: 0 !important;
8
- right: 0 !important;
9
- bottom: var(--vaadin-overlay-viewport-bottom) !important;
10
- left: 0 !important;
11
- /* stylelint-enable declaration-block-no-redundant-longhand-properties */
12
- align-items: stretch;
13
- justify-content: stretch;
14
- }
15
-
16
- [part='overlay'] {
17
- overflow: hidden;
18
- -webkit-overflow-scrolling: auto;
19
- }
20
-
21
- :host(:not([fullscreen])) [part='overlay'] {
22
- width: 360px;
23
- max-height: 500px;
24
- border-radius: 0 4px 4px;
25
- }
26
-
27
- :host(:not([dir='rtl']):not([fullscreen])[end-aligned]) [part='overlay'],
28
- :host([dir='rtl']:not([fullscreen])[start-aligned]) [part='overlay'] {
29
- border-radius: 4px 0 4px 4px;
30
- }
31
-
32
- :host(:not([fullscreen])[bottom-aligned]) [part='overlay'] {
33
- border-radius: 4px;
34
- }
35
-
36
- :host(:not([fullscreen])[show-week-numbers]) [part='overlay'] {
37
- width: 396px;
38
- }
39
-
40
- [part='content'] {
41
- padding: 0;
42
- }
43
- `;
44
-
45
- registerStyles('vaadin-date-picker-overlay', [overlay, datePickerOverlay], {
46
- moduleId: 'material-date-picker-overlay',
47
- });
@@ -1,3 +0,0 @@
1
- import '@vaadin/input-container/theme/material/vaadin-input-container-styles.js';
2
- import '@vaadin/vaadin-material-styles/color.js';
3
- import '@vaadin/vaadin-material-styles/font-icons.js';
@@ -1,22 +0,0 @@
1
- import '@vaadin/input-container/theme/material/vaadin-input-container-styles.js';
2
- import '@vaadin/vaadin-material-styles/color.js';
3
- import '@vaadin/vaadin-material-styles/font-icons.js';
4
- import { inputFieldShared } from '@vaadin/vaadin-material-styles/mixins/input-field-shared.js';
5
- import { css, registerStyles } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
6
-
7
- const datePicker = css`
8
- :host {
9
- display: inline-flex;
10
- -webkit-tap-highlight-color: transparent;
11
- }
12
-
13
- [part='clear-button']::before {
14
- content: var(--material-icons-clear);
15
- }
16
-
17
- [part='toggle-button']::before {
18
- content: var(--material-icons-calendar);
19
- }
20
- `;
21
-
22
- registerStyles('vaadin-date-picker', [inputFieldShared, datePicker], { moduleId: 'material-date-picker' });
@@ -1 +0,0 @@
1
- import '@vaadin/vaadin-material-styles/typography.js';
@@ -1,28 +0,0 @@
1
- import '@vaadin/vaadin-material-styles/typography.js';
2
- import { css, registerStyles } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
3
-
4
- registerStyles(
5
- 'vaadin-date-picker-year',
6
- css`
7
- [part='year-number'] {
8
- font-size: var(--material-small-font-size);
9
- line-height: 10px; /* NOTE(platosha): chosen to align years to months */
10
- }
11
-
12
- [part='year-separator'] {
13
- display: flex;
14
- align-items: center;
15
- justify-content: center;
16
- height: calc(100% - 10px);
17
- }
18
-
19
- [part='year-separator']::before {
20
- content: '';
21
- background-color: currentColor;
22
- width: 4px;
23
- height: 4px;
24
- border-radius: 50%;
25
- }
26
- `,
27
- { moduleId: 'material-date-picker-year' },
28
- );
@@ -1,5 +0,0 @@
1
- import './vaadin-date-picker-overlay-styles.js';
2
- import './vaadin-date-picker-overlay-content-styles.js';
3
- import './vaadin-month-calendar-styles.js';
4
- import './vaadin-date-picker-styles.js';
5
- import '../../src/vaadin-date-picker.js';
@@ -1,5 +0,0 @@
1
- import './vaadin-date-picker-overlay-styles.js';
2
- import './vaadin-date-picker-overlay-content-styles.js';
3
- import './vaadin-month-calendar-styles.js';
4
- import './vaadin-date-picker-styles.js';
5
- import '../../src/vaadin-date-picker.js';
@@ -1,5 +0,0 @@
1
- import './vaadin-date-picker-overlay-styles.js';
2
- import './vaadin-date-picker-overlay-content-styles.js';
3
- import './vaadin-month-calendar-styles.js';
4
- import './vaadin-date-picker-styles.js';
5
- import '../../src/vaadin-lit-date-picker.js';
@@ -1,5 +0,0 @@
1
- import './vaadin-date-picker-overlay-styles.js';
2
- import './vaadin-date-picker-overlay-content-styles.js';
3
- import './vaadin-month-calendar-styles.js';
4
- import './vaadin-date-picker-styles.js';
5
- import '../../src/vaadin-lit-date-picker.js';
@@ -1,2 +0,0 @@
1
- import '@vaadin/vaadin-material-styles/color.js';
2
- import '@vaadin/vaadin-material-styles/typography.js';
@@ -1,120 +0,0 @@
1
- import '@vaadin/vaadin-material-styles/color.js';
2
- import '@vaadin/vaadin-material-styles/typography.js';
3
- import { css, registerStyles } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
4
-
5
- registerStyles(
6
- 'vaadin-month-calendar',
7
- css`
8
- :host {
9
- color: var(--material-body-text-color);
10
- padding: 0 calc(50% / 8 - 0.5em + 8px);
11
- }
12
-
13
- :host([show-week-numbers]) {
14
- padding: 0 calc(50% / 9 - 0.5em + 8px);
15
- }
16
-
17
- [part='month-header'] {
18
- font-size: var(--material-h6-font-size);
19
- line-height: 1;
20
- padding-top: 20px;
21
- margin-bottom: 8px;
22
- }
23
-
24
- [part='week-number'],
25
- [part='weekday'] {
26
- font-size: var(--material-caption-font-size);
27
- line-height: 44px;
28
- height: 40px;
29
- color: var(--material-secondary-text-color);
30
- }
31
-
32
- :host([disabled]),
33
- :host([disabled]) [part='week-number'],
34
- :host([disabled]) [part='weekday'] {
35
- color: var(--material-disabled-text-color);
36
- }
37
-
38
- [part~='date'] {
39
- position: relative;
40
- font-size: var(--material-body-font-size);
41
- line-height: 42px;
42
- height: 40px;
43
- cursor: default;
44
- }
45
-
46
- [part~='date']::after {
47
- content: '';
48
- position: absolute;
49
- z-index: -4;
50
- top: 50%;
51
- left: 50%;
52
- transform: translate(-50%, -50%);
53
- width: 38px;
54
- height: 38px;
55
- box-sizing: border-box;
56
- border-radius: 50%;
57
- border: 2px solid transparent;
58
- }
59
-
60
- /* Today */
61
-
62
- [part~='date'][part~='today'] {
63
- color: var(--material-primary-text-color);
64
- }
65
-
66
- /* Hover */
67
-
68
- [part~='date']:not([part~='disabled']):hover::after {
69
- background-color: var(--material-secondary-background-color);
70
- border-color: var(--material-secondary-background-color);
71
- z-index: -3;
72
- }
73
-
74
- /* Hide for touch devices */
75
- @media (hover: none) {
76
- [part~='date']:not([part~='disabled']):hover::after {
77
- background-color: transparent;
78
- border-color: transparent;
79
- z-index: -4;
80
- }
81
- }
82
-
83
- /* Selected */
84
-
85
- [part~='date'][part~='selected'] {
86
- font-weight: 500;
87
- }
88
-
89
- [part~='date']:not([part~='disabled'])[part~='selected']::after,
90
- [part~='date'][part~='selected']::after {
91
- background-color: transparent;
92
- border-color: currentColor;
93
- z-index: -2;
94
- }
95
-
96
- /* Focused */
97
-
98
- [part~='date']:not([part~='disabled'])[part~='focused'],
99
- [part~='date']:not([part~='disabled']):active {
100
- color: var(--material-primary-contrast-color);
101
- }
102
-
103
- [part~='date']:not([part~='disabled'])[part~='focused']::after,
104
- [part~='date']:not([part~='disabled']):active::after {
105
- opacity: 0.7;
106
- background-color: var(--material-primary-color);
107
- border-color: var(--material-primary-color);
108
- z-index: -1;
109
- }
110
-
111
- [part~='date'][part~='disabled'] {
112
- color: var(--material-disabled-text-color);
113
- }
114
-
115
- :host([focused]) [part~='date']:not([part~='disabled'])[part~='focused']::after {
116
- opacity: 1;
117
- }
118
- `,
119
- { moduleId: 'material-date-picker-month-calendar' },
120
- );
@@ -1 +0,0 @@
1
- export * from './src/vaadin-date-picker-light.js';
@@ -1,2 +0,0 @@
1
- import './theme/lumo/vaadin-date-picker-light.js';
2
- export * from './src/vaadin-date-picker-light.js';
@@ -1 +0,0 @@
1
- export * from './src/vaadin-date-picker.js';
@@ -1,2 +0,0 @@
1
- import './theme/lumo/vaadin-lit-date-picker.js';
2
- export * from './src/vaadin-lit-date-picker.js';