@progressive-development/pd-calendar 1.0.0 → 1.0.2
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.
package/dist/index.js
CHANGED
|
@@ -13,11 +13,11 @@ export { templates as beTemplates } from './locales/be.js';
|
|
|
13
13
|
export { templates as deTemplates } from './locales/de.js';
|
|
14
14
|
export { templates as enTemplates } from './locales/en.js';
|
|
15
15
|
export { PdCalendar } from './pd-calendar/PdCalendar.js';
|
|
16
|
+
export { PdCalendarDayEventsPanel } from './pd-calendar/pd-calendar-day-events-panel/PdCalendarDayEventsPanel.js';
|
|
17
|
+
export { PdCalendarEventCell } from './pd-calendar/pd-calendar-event-cell/PdCalendarEventCell.js';
|
|
18
|
+
export { PdCalendarEventInfoPanel } from './pd-calendar/pd-calendar-event-info-panel/PdCalendarEventInfoPanel.js';
|
|
16
19
|
export { PdCalendarListCell } from './pd-calendar/pd-calendar-list-cell/PdCalendarListCell.js';
|
|
17
20
|
export { PdCalendarWeekCell } from './pd-calendar/pd-calendar-week-cell/PdCalendarWeekCell.js';
|
|
18
|
-
export { PdCalendarEventCell } from './pd-calendar/pd-calendar-event-cell/PdCalendarEventCell.js';
|
|
19
|
-
export { PdSlotPicker } from './pd-slot-picker/PdSlotPicker.js';
|
|
20
|
-
export { PdSlotCell } from './pd-slot-picker/pd-slot-cell/PdSlotCell.js';
|
|
21
21
|
export { PdDatepicker } from './pd-datepicker/PdDatepicker.js';
|
|
22
|
-
export {
|
|
23
|
-
export {
|
|
22
|
+
export { PdSlotCell } from './pd-slot-picker/pd-slot-cell/PdSlotCell.js';
|
|
23
|
+
export { PdSlotPicker } from './pd-slot-picker/PdSlotPicker.js';
|
|
@@ -16,7 +16,7 @@ export declare class PdCalendarDayEventsPanel extends PdCalendarPanelBase {
|
|
|
16
16
|
dateKey: string;
|
|
17
17
|
config?: CalendarConfig;
|
|
18
18
|
static styles: CSSResultGroup;
|
|
19
|
-
render():
|
|
19
|
+
render(): import('lit').TemplateResult | typeof nothing;
|
|
20
20
|
protected renderHeaderContent(): import('lit').TemplateResult<1>;
|
|
21
21
|
protected renderBody(): import('lit').TemplateResult<1>;
|
|
22
22
|
private _onEntryClick;
|
|
@@ -16,7 +16,7 @@ export declare class PdCalendarEventInfoPanel extends PdCalendarPanelBase {
|
|
|
16
16
|
actions: EventInfoActions;
|
|
17
17
|
config?: CalendarConfig;
|
|
18
18
|
static styles: CSSResultGroup;
|
|
19
|
-
render():
|
|
19
|
+
render(): import('lit').TemplateResult | typeof nothing;
|
|
20
20
|
protected renderHeaderContent(): import('lit').TemplateResult<1>;
|
|
21
21
|
protected renderBody(): import('lit').TemplateResult<1> | typeof nothing;
|
|
22
22
|
private _onAction;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progressive-development/pd-calendar",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Webcomponent for calendar",
|
|
5
5
|
"author": "PD Progressive Development",
|
|
6
6
|
"license": "MIT",
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"date-fns": "^2.30.0",
|
|
33
33
|
"fecha": "^4.2.3",
|
|
34
34
|
"tslib": "^2.8.1",
|
|
35
|
-
"@progressive-development/pd-shared-styles": "0.3.
|
|
36
|
-
"@progressive-development/pd-
|
|
37
|
-
"@progressive-development/pd-forms": "1.0.
|
|
38
|
-
"@progressive-development/pd-
|
|
35
|
+
"@progressive-development/pd-shared-styles": "0.3.2",
|
|
36
|
+
"@progressive-development/pd-icon": "1.0.2",
|
|
37
|
+
"@progressive-development/pd-forms": "1.0.2",
|
|
38
|
+
"@progressive-development/pd-utils": "1.0.0"
|
|
39
39
|
},
|
|
40
40
|
"customElements": "custom-elements.json",
|
|
41
41
|
"keywords": [
|