@sbb-esta/lyne-react-dev 4.7.0-dev.1773737295 → 4.7.0-dev.1773741176
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/calendar/calendar-month/calendar-month.component.js +11 -0
- package/calendar/calendar-month.js +5 -0
- package/calendar/calendar-weekday/calendar-weekday.component.js +11 -0
- package/calendar/calendar-weekday.js +5 -0
- package/calendar/calendar-weeknumber/calendar-weeknumber.component.js +11 -0
- package/calendar/calendar-weeknumber.js +5 -0
- package/calendar/calendar-year/calendar-year.component.js +11 -0
- package/calendar/calendar-year.js +5 -0
- package/calendar.js +5 -1
- package/development/calendar/calendar-month/calendar-month.component.d.ts +3 -0
- package/development/calendar/calendar-month/calendar-month.component.d.ts.map +1 -0
- package/development/calendar/calendar-month/calendar-month.component.js +13 -0
- package/development/calendar/calendar-month.d.ts +3 -0
- package/development/calendar/calendar-month.d.ts.map +1 -0
- package/development/calendar/calendar-month.js +8 -0
- package/development/calendar/calendar-weekday/calendar-weekday.component.d.ts +3 -0
- package/development/calendar/calendar-weekday/calendar-weekday.component.d.ts.map +1 -0
- package/development/calendar/calendar-weekday/calendar-weekday.component.js +13 -0
- package/development/calendar/calendar-weekday.d.ts +3 -0
- package/development/calendar/calendar-weekday.d.ts.map +1 -0
- package/development/calendar/calendar-weekday.js +8 -0
- package/development/calendar/calendar-weeknumber/calendar-weeknumber.component.d.ts +3 -0
- package/development/calendar/calendar-weeknumber/calendar-weeknumber.component.d.ts.map +1 -0
- package/development/calendar/calendar-weeknumber/calendar-weeknumber.component.js +13 -0
- package/development/calendar/calendar-weeknumber.d.ts +3 -0
- package/development/calendar/calendar-weeknumber.d.ts.map +1 -0
- package/development/calendar/calendar-weeknumber.js +8 -0
- package/development/calendar/calendar-year/calendar-year.component.d.ts +3 -0
- package/development/calendar/calendar-year/calendar-year.component.d.ts.map +1 -0
- package/development/calendar/calendar-year/calendar-year.component.js +13 -0
- package/development/calendar/calendar-year.d.ts +3 -0
- package/development/calendar/calendar-year.d.ts.map +1 -0
- package/development/calendar/calendar-year.js +8 -0
- package/development/calendar.d.ts +4 -0
- package/development/calendar.d.ts.map +1 -1
- package/development/calendar.js +5 -1
- package/package.json +42 -2
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { createComponent as e } from "../../core.js";
|
|
2
|
+
import t from "react";
|
|
3
|
+
import { SbbCalendarMonthElement as n } from "@sbb-esta/lyne-elements/calendar.js";
|
|
4
|
+
//#region src/react/calendar/calendar-month/calendar-month.component.ts
|
|
5
|
+
var r = e({
|
|
6
|
+
tagName: "sbb-calendar-month",
|
|
7
|
+
elementClass: n,
|
|
8
|
+
react: t
|
|
9
|
+
});
|
|
10
|
+
//#endregion
|
|
11
|
+
export { r as SbbCalendarMonth };
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { SbbCalendarMonth as e } from "./calendar-month/calendar-month.component.js";
|
|
2
|
+
//#region src/react/calendar/calendar-month.ts
|
|
3
|
+
console.warn("The entrypoint '@sbb-esta/react/calendar/calendar-month.js' has been deprecated.\nUse '@sbb-esta/react/calendar.js' instead.");
|
|
4
|
+
//#endregion
|
|
5
|
+
export { e as SbbCalendarMonth };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { createComponent as e } from "../../core.js";
|
|
2
|
+
import t from "react";
|
|
3
|
+
import { SbbCalendarWeekdayElement as n } from "@sbb-esta/lyne-elements/calendar.js";
|
|
4
|
+
//#region src/react/calendar/calendar-weekday/calendar-weekday.component.ts
|
|
5
|
+
var r = e({
|
|
6
|
+
tagName: "sbb-calendar-weekday",
|
|
7
|
+
elementClass: n,
|
|
8
|
+
react: t
|
|
9
|
+
});
|
|
10
|
+
//#endregion
|
|
11
|
+
export { r as SbbCalendarWeekday };
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { SbbCalendarWeekday as e } from "./calendar-weekday/calendar-weekday.component.js";
|
|
2
|
+
//#region src/react/calendar/calendar-weekday.ts
|
|
3
|
+
console.warn("The entrypoint '@sbb-esta/react/calendar/calendar-weekday.js' has been deprecated.\nUse '@sbb-esta/react/calendar.js' instead.");
|
|
4
|
+
//#endregion
|
|
5
|
+
export { e as SbbCalendarWeekday };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { createComponent as e } from "../../core.js";
|
|
2
|
+
import t from "react";
|
|
3
|
+
import { SbbCalendarWeeknumberElement as n } from "@sbb-esta/lyne-elements/calendar.js";
|
|
4
|
+
//#region src/react/calendar/calendar-weeknumber/calendar-weeknumber.component.ts
|
|
5
|
+
var r = e({
|
|
6
|
+
tagName: "sbb-calendar-weeknumber",
|
|
7
|
+
elementClass: n,
|
|
8
|
+
react: t
|
|
9
|
+
});
|
|
10
|
+
//#endregion
|
|
11
|
+
export { r as SbbCalendarWeeknumber };
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { SbbCalendarWeeknumber as e } from "./calendar-weeknumber/calendar-weeknumber.component.js";
|
|
2
|
+
//#region src/react/calendar/calendar-weeknumber.ts
|
|
3
|
+
console.warn("The entrypoint '@sbb-esta/react/calendar/calendar-weeknumber.js' has been deprecated.\nUse '@sbb-esta/react/calendar.js' instead.");
|
|
4
|
+
//#endregion
|
|
5
|
+
export { e as SbbCalendarWeeknumber };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { createComponent as e } from "../../core.js";
|
|
2
|
+
import t from "react";
|
|
3
|
+
import { SbbCalendarYearElement as n } from "@sbb-esta/lyne-elements/calendar.js";
|
|
4
|
+
//#region src/react/calendar/calendar-year/calendar-year.component.ts
|
|
5
|
+
var r = e({
|
|
6
|
+
tagName: "sbb-calendar-year",
|
|
7
|
+
elementClass: n,
|
|
8
|
+
react: t
|
|
9
|
+
});
|
|
10
|
+
//#endregion
|
|
11
|
+
export { r as SbbCalendarYear };
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { SbbCalendarYear as e } from "./calendar-year/calendar-year.component.js";
|
|
2
|
+
//#region src/react/calendar/calendar-year.ts
|
|
3
|
+
console.warn("The entrypoint '@sbb-esta/react/calendar/calendar-year.js' has been deprecated.\nUse '@sbb-esta/react/calendar.js' instead.");
|
|
4
|
+
//#endregion
|
|
5
|
+
export { e as SbbCalendarYear };
|
package/calendar.js
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
import { SbbCalendar as e } from "./calendar/calendar/calendar.component.js";
|
|
2
2
|
import { SbbCalendarDay as t } from "./calendar/calendar-day/calendar-day.component.js";
|
|
3
|
-
|
|
3
|
+
import { SbbCalendarMonth as n } from "./calendar/calendar-month/calendar-month.component.js";
|
|
4
|
+
import { SbbCalendarWeekday as r } from "./calendar/calendar-weekday/calendar-weekday.component.js";
|
|
5
|
+
import { SbbCalendarWeeknumber as i } from "./calendar/calendar-weeknumber/calendar-weeknumber.component.js";
|
|
6
|
+
import { SbbCalendarYear as a } from "./calendar/calendar-year/calendar-year.component.js";
|
|
7
|
+
export { e as SbbCalendar, t as SbbCalendarDay, n as SbbCalendarMonth, r as SbbCalendarWeekday, i as SbbCalendarWeeknumber, a as SbbCalendarYear };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"calendar-month.component.d.ts","sourceRoot":"","sources":["../../../../../src/react/calendar/calendar-month/calendar-month.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,uBAAuB,EAAE,MAAM,qCAAqC,CAAC;AAI9E,eAAO,MAAM,gBAAgB,8EAI3B,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { createComponent } from "../../core.js";
|
|
2
|
+
import react from "react";
|
|
3
|
+
import { SbbCalendarMonthElement } from "@sbb-esta/lyne-elements/calendar.js";
|
|
4
|
+
//#region src/react/calendar/calendar-month/calendar-month.component.ts
|
|
5
|
+
var SbbCalendarMonth = createComponent({
|
|
6
|
+
tagName: "sbb-calendar-month",
|
|
7
|
+
elementClass: SbbCalendarMonthElement,
|
|
8
|
+
react
|
|
9
|
+
});
|
|
10
|
+
//#endregion
|
|
11
|
+
export { SbbCalendarMonth };
|
|
12
|
+
|
|
13
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FsZW5kYXItbW9udGguY29tcG9uZW50LmpzIiwibmFtZXMiOltdLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9yZWFjdC9jYWxlbmRhci9jYWxlbmRhci1tb250aC9jYWxlbmRhci1tb250aC5jb21wb25lbnQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiLyogYXV0b2dlbmVyYXRlZCAqL1xuaW1wb3J0IHsgY3JlYXRlQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vY29yZS5qcyc7XG5pbXBvcnQgeyBTYmJDYWxlbmRhck1vbnRoRWxlbWVudCB9IGZyb20gJ0BzYmItZXN0YS9seW5lLWVsZW1lbnRzL2NhbGVuZGFyLmpzJztcbmltcG9ydCByZWFjdCBmcm9tICdyZWFjdCc7XG5cbi8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBAdHlwZXNjcmlwdC1lc2xpbnQvbmFtaW5nLWNvbnZlbnRpb25cbmV4cG9ydCBjb25zdCBTYmJDYWxlbmRhck1vbnRoID0gY3JlYXRlQ29tcG9uZW50KHtcbiAgdGFnTmFtZTogJ3NiYi1jYWxlbmRhci1tb250aCcsXG4gIGVsZW1lbnRDbGFzczogU2JiQ2FsZW5kYXJNb250aEVsZW1lbnQsXG4gIHJlYWN0LFxufSk7XG4iXSwibWFwcGluZ3MiOiI7Ozs7QUFNQSxJQUFhLG1CQUFtQixnQkFBZ0I7Q0FDOUMsU0FBUztDQUNULGNBQWM7Q0FDZDtDQUNELENBQUMifQ==
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"calendar-month.d.ts","sourceRoot":"","sources":["../../../../src/react/calendar/calendar-month.ts"],"names":[],"mappings":"AAAA,kBAAkB;AAClB,cAAc,8CAA8C,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { SbbCalendarMonth } from "./calendar-month/calendar-month.component.js";
|
|
2
|
+
//#region src/react/calendar/calendar-month.ts
|
|
3
|
+
console.warn(`The entrypoint '@sbb-esta/react/calendar/calendar-month.js' has been deprecated.
|
|
4
|
+
Use '@sbb-esta/react/calendar.js' instead.`);
|
|
5
|
+
//#endregion
|
|
6
|
+
export { SbbCalendarMonth };
|
|
7
|
+
|
|
8
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FsZW5kYXItbW9udGguanMiLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL3JlYWN0L2NhbGVuZGFyL2NhbGVuZGFyLW1vbnRoLnRzIl0sInNvdXJjZXNDb250ZW50IjpbIi8qKiBAZW50cnlwb2ludCAqL1xuZXhwb3J0ICogZnJvbSAnLi9jYWxlbmRhci1tb250aC9jYWxlbmRhci1tb250aC5jb21wb25lbnQuanMnO1xuXG4gICAgICAgIFxuY29uc29sZS53YXJuKGBUaGUgZW50cnlwb2ludCAnQHNiYi1lc3RhL3JlYWN0L2NhbGVuZGFyL2NhbGVuZGFyLW1vbnRoLmpzJyBoYXMgYmVlbiBkZXByZWNhdGVkLlxuVXNlICdAc2JiLWVzdGEvcmVhY3QvY2FsZW5kYXIuanMnIGluc3RlYWQuYCk7XG4iXSwibWFwcGluZ3MiOiI7O0FBSUEsUUFBUSxLQUFLOzRDQUMrQiJ9
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"calendar-weekday.component.d.ts","sourceRoot":"","sources":["../../../../../src/react/calendar/calendar-weekday/calendar-weekday.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,yBAAyB,EAAE,MAAM,qCAAqC,CAAC;AAIhF,eAAO,MAAM,kBAAkB,0EAI7B,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { createComponent } from "../../core.js";
|
|
2
|
+
import react from "react";
|
|
3
|
+
import { SbbCalendarWeekdayElement } from "@sbb-esta/lyne-elements/calendar.js";
|
|
4
|
+
//#region src/react/calendar/calendar-weekday/calendar-weekday.component.ts
|
|
5
|
+
var SbbCalendarWeekday = createComponent({
|
|
6
|
+
tagName: "sbb-calendar-weekday",
|
|
7
|
+
elementClass: SbbCalendarWeekdayElement,
|
|
8
|
+
react
|
|
9
|
+
});
|
|
10
|
+
//#endregion
|
|
11
|
+
export { SbbCalendarWeekday };
|
|
12
|
+
|
|
13
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FsZW5kYXItd2Vla2RheS5jb21wb25lbnQuanMiLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL3JlYWN0L2NhbGVuZGFyL2NhbGVuZGFyLXdlZWtkYXkvY2FsZW5kYXItd2Vla2RheS5jb21wb25lbnQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiLyogYXV0b2dlbmVyYXRlZCAqL1xuaW1wb3J0IHsgY3JlYXRlQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vY29yZS5qcyc7XG5pbXBvcnQgeyBTYmJDYWxlbmRhcldlZWtkYXlFbGVtZW50IH0gZnJvbSAnQHNiYi1lc3RhL2x5bmUtZWxlbWVudHMvY2FsZW5kYXIuanMnO1xuaW1wb3J0IHJlYWN0IGZyb20gJ3JlYWN0JztcblxuLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIEB0eXBlc2NyaXB0LWVzbGludC9uYW1pbmctY29udmVudGlvblxuZXhwb3J0IGNvbnN0IFNiYkNhbGVuZGFyV2Vla2RheSA9IGNyZWF0ZUNvbXBvbmVudCh7XG4gIHRhZ05hbWU6ICdzYmItY2FsZW5kYXItd2Vla2RheScsXG4gIGVsZW1lbnRDbGFzczogU2JiQ2FsZW5kYXJXZWVrZGF5RWxlbWVudCxcbiAgcmVhY3QsXG59KTtcbiJdLCJtYXBwaW5ncyI6Ijs7OztBQU1BLElBQWEscUJBQXFCLGdCQUFnQjtDQUNoRCxTQUFTO0NBQ1QsY0FBYztDQUNkO0NBQ0QsQ0FBQyJ9
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"calendar-weekday.d.ts","sourceRoot":"","sources":["../../../../src/react/calendar/calendar-weekday.ts"],"names":[],"mappings":"AAAA,kBAAkB;AAClB,cAAc,kDAAkD,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { SbbCalendarWeekday } from "./calendar-weekday/calendar-weekday.component.js";
|
|
2
|
+
//#region src/react/calendar/calendar-weekday.ts
|
|
3
|
+
console.warn(`The entrypoint '@sbb-esta/react/calendar/calendar-weekday.js' has been deprecated.
|
|
4
|
+
Use '@sbb-esta/react/calendar.js' instead.`);
|
|
5
|
+
//#endregion
|
|
6
|
+
export { SbbCalendarWeekday };
|
|
7
|
+
|
|
8
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FsZW5kYXItd2Vla2RheS5qcyIsIm5hbWVzIjpbXSwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvcmVhY3QvY2FsZW5kYXIvY2FsZW5kYXItd2Vla2RheS50cyJdLCJzb3VyY2VzQ29udGVudCI6WyIvKiogQGVudHJ5cG9pbnQgKi9cbmV4cG9ydCAqIGZyb20gJy4vY2FsZW5kYXItd2Vla2RheS9jYWxlbmRhci13ZWVrZGF5LmNvbXBvbmVudC5qcyc7XG5cbiAgICAgICAgXG5jb25zb2xlLndhcm4oYFRoZSBlbnRyeXBvaW50ICdAc2JiLWVzdGEvcmVhY3QvY2FsZW5kYXIvY2FsZW5kYXItd2Vla2RheS5qcycgaGFzIGJlZW4gZGVwcmVjYXRlZC5cblVzZSAnQHNiYi1lc3RhL3JlYWN0L2NhbGVuZGFyLmpzJyBpbnN0ZWFkLmApO1xuIl0sIm1hcHBpbmdzIjoiOztBQUlBLFFBQVEsS0FBSzs0Q0FDK0IifQ==
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"calendar-weeknumber.component.d.ts","sourceRoot":"","sources":["../../../../../src/react/calendar/calendar-weeknumber/calendar-weeknumber.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,4BAA4B,EAAE,MAAM,qCAAqC,CAAC;AAInF,eAAO,MAAM,qBAAqB,6EAIhC,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { createComponent } from "../../core.js";
|
|
2
|
+
import react from "react";
|
|
3
|
+
import { SbbCalendarWeeknumberElement } from "@sbb-esta/lyne-elements/calendar.js";
|
|
4
|
+
//#region src/react/calendar/calendar-weeknumber/calendar-weeknumber.component.ts
|
|
5
|
+
var SbbCalendarWeeknumber = createComponent({
|
|
6
|
+
tagName: "sbb-calendar-weeknumber",
|
|
7
|
+
elementClass: SbbCalendarWeeknumberElement,
|
|
8
|
+
react
|
|
9
|
+
});
|
|
10
|
+
//#endregion
|
|
11
|
+
export { SbbCalendarWeeknumber };
|
|
12
|
+
|
|
13
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FsZW5kYXItd2Vla251bWJlci5jb21wb25lbnQuanMiLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL3JlYWN0L2NhbGVuZGFyL2NhbGVuZGFyLXdlZWtudW1iZXIvY2FsZW5kYXItd2Vla251bWJlci5jb21wb25lbnQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiLyogYXV0b2dlbmVyYXRlZCAqL1xuaW1wb3J0IHsgY3JlYXRlQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vY29yZS5qcyc7XG5pbXBvcnQgeyBTYmJDYWxlbmRhcldlZWtudW1iZXJFbGVtZW50IH0gZnJvbSAnQHNiYi1lc3RhL2x5bmUtZWxlbWVudHMvY2FsZW5kYXIuanMnO1xuaW1wb3J0IHJlYWN0IGZyb20gJ3JlYWN0JztcblxuLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIEB0eXBlc2NyaXB0LWVzbGludC9uYW1pbmctY29udmVudGlvblxuZXhwb3J0IGNvbnN0IFNiYkNhbGVuZGFyV2Vla251bWJlciA9IGNyZWF0ZUNvbXBvbmVudCh7XG4gIHRhZ05hbWU6ICdzYmItY2FsZW5kYXItd2Vla251bWJlcicsXG4gIGVsZW1lbnRDbGFzczogU2JiQ2FsZW5kYXJXZWVrbnVtYmVyRWxlbWVudCxcbiAgcmVhY3QsXG59KTtcbiJdLCJtYXBwaW5ncyI6Ijs7OztBQU1BLElBQWEsd0JBQXdCLGdCQUFnQjtDQUNuRCxTQUFTO0NBQ1QsY0FBYztDQUNkO0NBQ0QsQ0FBQyJ9
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"calendar-weeknumber.d.ts","sourceRoot":"","sources":["../../../../src/react/calendar/calendar-weeknumber.ts"],"names":[],"mappings":"AAAA,kBAAkB;AAClB,cAAc,wDAAwD,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { SbbCalendarWeeknumber } from "./calendar-weeknumber/calendar-weeknumber.component.js";
|
|
2
|
+
//#region src/react/calendar/calendar-weeknumber.ts
|
|
3
|
+
console.warn(`The entrypoint '@sbb-esta/react/calendar/calendar-weeknumber.js' has been deprecated.
|
|
4
|
+
Use '@sbb-esta/react/calendar.js' instead.`);
|
|
5
|
+
//#endregion
|
|
6
|
+
export { SbbCalendarWeeknumber };
|
|
7
|
+
|
|
8
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FsZW5kYXItd2Vla251bWJlci5qcyIsIm5hbWVzIjpbXSwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvcmVhY3QvY2FsZW5kYXIvY2FsZW5kYXItd2Vla251bWJlci50cyJdLCJzb3VyY2VzQ29udGVudCI6WyIvKiogQGVudHJ5cG9pbnQgKi9cbmV4cG9ydCAqIGZyb20gJy4vY2FsZW5kYXItd2Vla251bWJlci9jYWxlbmRhci13ZWVrbnVtYmVyLmNvbXBvbmVudC5qcyc7XG5cbiAgICAgICAgXG5jb25zb2xlLndhcm4oYFRoZSBlbnRyeXBvaW50ICdAc2JiLWVzdGEvcmVhY3QvY2FsZW5kYXIvY2FsZW5kYXItd2Vla251bWJlci5qcycgaGFzIGJlZW4gZGVwcmVjYXRlZC5cblVzZSAnQHNiYi1lc3RhL3JlYWN0L2NhbGVuZGFyLmpzJyBpbnN0ZWFkLmApO1xuIl0sIm1hcHBpbmdzIjoiOztBQUlBLFFBQVEsS0FBSzs0Q0FDK0IifQ==
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"calendar-year.component.d.ts","sourceRoot":"","sources":["../../../../../src/react/calendar/calendar-year/calendar-year.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,sBAAsB,EAAE,MAAM,qCAAqC,CAAC;AAI7E,eAAO,MAAM,eAAe,6EAI1B,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { createComponent } from "../../core.js";
|
|
2
|
+
import react from "react";
|
|
3
|
+
import { SbbCalendarYearElement } from "@sbb-esta/lyne-elements/calendar.js";
|
|
4
|
+
//#region src/react/calendar/calendar-year/calendar-year.component.ts
|
|
5
|
+
var SbbCalendarYear = createComponent({
|
|
6
|
+
tagName: "sbb-calendar-year",
|
|
7
|
+
elementClass: SbbCalendarYearElement,
|
|
8
|
+
react
|
|
9
|
+
});
|
|
10
|
+
//#endregion
|
|
11
|
+
export { SbbCalendarYear };
|
|
12
|
+
|
|
13
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FsZW5kYXIteWVhci5jb21wb25lbnQuanMiLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL3JlYWN0L2NhbGVuZGFyL2NhbGVuZGFyLXllYXIvY2FsZW5kYXIteWVhci5jb21wb25lbnQudHMiXSwic291cmNlc0NvbnRlbnQiOlsiLyogYXV0b2dlbmVyYXRlZCAqL1xuaW1wb3J0IHsgY3JlYXRlQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vY29yZS5qcyc7XG5pbXBvcnQgeyBTYmJDYWxlbmRhclllYXJFbGVtZW50IH0gZnJvbSAnQHNiYi1lc3RhL2x5bmUtZWxlbWVudHMvY2FsZW5kYXIuanMnO1xuaW1wb3J0IHJlYWN0IGZyb20gJ3JlYWN0JztcblxuLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIEB0eXBlc2NyaXB0LWVzbGludC9uYW1pbmctY29udmVudGlvblxuZXhwb3J0IGNvbnN0IFNiYkNhbGVuZGFyWWVhciA9IGNyZWF0ZUNvbXBvbmVudCh7XG4gIHRhZ05hbWU6ICdzYmItY2FsZW5kYXIteWVhcicsXG4gIGVsZW1lbnRDbGFzczogU2JiQ2FsZW5kYXJZZWFyRWxlbWVudCxcbiAgcmVhY3QsXG59KTtcbiJdLCJtYXBwaW5ncyI6Ijs7OztBQU1BLElBQWEsa0JBQWtCLGdCQUFnQjtDQUM3QyxTQUFTO0NBQ1QsY0FBYztDQUNkO0NBQ0QsQ0FBQyJ9
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"calendar-year.d.ts","sourceRoot":"","sources":["../../../../src/react/calendar/calendar-year.ts"],"names":[],"mappings":"AAAA,kBAAkB;AAClB,cAAc,4CAA4C,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { SbbCalendarYear } from "./calendar-year/calendar-year.component.js";
|
|
2
|
+
//#region src/react/calendar/calendar-year.ts
|
|
3
|
+
console.warn(`The entrypoint '@sbb-esta/react/calendar/calendar-year.js' has been deprecated.
|
|
4
|
+
Use '@sbb-esta/react/calendar.js' instead.`);
|
|
5
|
+
//#endregion
|
|
6
|
+
export { SbbCalendarYear };
|
|
7
|
+
|
|
8
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FsZW5kYXIteWVhci5qcyIsIm5hbWVzIjpbXSwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvcmVhY3QvY2FsZW5kYXIvY2FsZW5kYXIteWVhci50cyJdLCJzb3VyY2VzQ29udGVudCI6WyIvKiogQGVudHJ5cG9pbnQgKi9cbmV4cG9ydCAqIGZyb20gJy4vY2FsZW5kYXIteWVhci9jYWxlbmRhci15ZWFyLmNvbXBvbmVudC5qcyc7XG5cbiAgICAgICAgXG5jb25zb2xlLndhcm4oYFRoZSBlbnRyeXBvaW50ICdAc2JiLWVzdGEvcmVhY3QvY2FsZW5kYXIvY2FsZW5kYXIteWVhci5qcycgaGFzIGJlZW4gZGVwcmVjYXRlZC5cblVzZSAnQHNiYi1lc3RhL3JlYWN0L2NhbGVuZGFyLmpzJyBpbnN0ZWFkLmApO1xuIl0sIm1hcHBpbmdzIjoiOztBQUlBLFFBQVEsS0FBSzs0Q0FDK0IifQ==
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
/** @entrypoint */
|
|
2
2
|
export * from './calendar/calendar/calendar.component.js';
|
|
3
3
|
export * from './calendar/calendar-day/calendar-day.component.js';
|
|
4
|
+
export * from './calendar/calendar-month/calendar-month.component.js';
|
|
5
|
+
export * from './calendar/calendar-weekday/calendar-weekday.component.js';
|
|
6
|
+
export * from './calendar/calendar-weeknumber/calendar-weeknumber.component.js';
|
|
7
|
+
export * from './calendar/calendar-year/calendar-year.component.js';
|
|
4
8
|
//# sourceMappingURL=calendar.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"calendar.d.ts","sourceRoot":"","sources":["../../../src/react/calendar.ts"],"names":[],"mappings":"AAAA,kBAAkB;AAClB,cAAc,2CAA2C,CAAC;AAC1D,cAAc,mDAAmD,CAAC"}
|
|
1
|
+
{"version":3,"file":"calendar.d.ts","sourceRoot":"","sources":["../../../src/react/calendar.ts"],"names":[],"mappings":"AAAA,kBAAkB;AAClB,cAAc,2CAA2C,CAAC;AAC1D,cAAc,mDAAmD,CAAC;AAClE,cAAc,uDAAuD,CAAC;AACtE,cAAc,2DAA2D,CAAC;AAC1E,cAAc,iEAAiE,CAAC;AAChF,cAAc,qDAAqD,CAAC"}
|
package/development/calendar.js
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
import { SbbCalendar } from "./calendar/calendar/calendar.component.js";
|
|
2
2
|
import { SbbCalendarDay } from "./calendar/calendar-day/calendar-day.component.js";
|
|
3
|
-
|
|
3
|
+
import { SbbCalendarMonth } from "./calendar/calendar-month/calendar-month.component.js";
|
|
4
|
+
import { SbbCalendarWeekday } from "./calendar/calendar-weekday/calendar-weekday.component.js";
|
|
5
|
+
import { SbbCalendarWeeknumber } from "./calendar/calendar-weeknumber/calendar-weeknumber.component.js";
|
|
6
|
+
import { SbbCalendarYear } from "./calendar/calendar-year/calendar-year.component.js";
|
|
7
|
+
export { SbbCalendar, SbbCalendarDay, SbbCalendarMonth, SbbCalendarWeekday, SbbCalendarWeeknumber, SbbCalendarYear };
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sbb-esta/lyne-react-dev",
|
|
3
|
-
"version": "4.7.0-dev.
|
|
3
|
+
"version": "4.7.0-dev.1773741176",
|
|
4
4
|
"description": "Lyne Design System React Library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"design system",
|
|
7
7
|
"web components",
|
|
8
8
|
"lit",
|
|
9
9
|
"react",
|
|
10
|
-
"https://github.com/sbb-design-systems/lyne-components/commit/
|
|
10
|
+
"https://github.com/sbb-design-systems/lyne-components/commit/cd6adc0ffe8de8e263e842afab0050c131da75e9"
|
|
11
11
|
],
|
|
12
12
|
"type": "module",
|
|
13
13
|
"exports": {
|
|
@@ -294,6 +294,46 @@
|
|
|
294
294
|
"development": "./development/calendar/calendar-day.js",
|
|
295
295
|
"default": "./calendar/calendar-day.js"
|
|
296
296
|
},
|
|
297
|
+
"./calendar/calendar-month": {
|
|
298
|
+
"types": "./development/calendar/calendar-month.d.ts",
|
|
299
|
+
"development": "./development/calendar/calendar-month.js",
|
|
300
|
+
"default": "./calendar/calendar-month.js"
|
|
301
|
+
},
|
|
302
|
+
"./calendar/calendar-month.js": {
|
|
303
|
+
"types": "./development/calendar/calendar-month.d.ts",
|
|
304
|
+
"development": "./development/calendar/calendar-month.js",
|
|
305
|
+
"default": "./calendar/calendar-month.js"
|
|
306
|
+
},
|
|
307
|
+
"./calendar/calendar-weekday": {
|
|
308
|
+
"types": "./development/calendar/calendar-weekday.d.ts",
|
|
309
|
+
"development": "./development/calendar/calendar-weekday.js",
|
|
310
|
+
"default": "./calendar/calendar-weekday.js"
|
|
311
|
+
},
|
|
312
|
+
"./calendar/calendar-weekday.js": {
|
|
313
|
+
"types": "./development/calendar/calendar-weekday.d.ts",
|
|
314
|
+
"development": "./development/calendar/calendar-weekday.js",
|
|
315
|
+
"default": "./calendar/calendar-weekday.js"
|
|
316
|
+
},
|
|
317
|
+
"./calendar/calendar-weeknumber": {
|
|
318
|
+
"types": "./development/calendar/calendar-weeknumber.d.ts",
|
|
319
|
+
"development": "./development/calendar/calendar-weeknumber.js",
|
|
320
|
+
"default": "./calendar/calendar-weeknumber.js"
|
|
321
|
+
},
|
|
322
|
+
"./calendar/calendar-weeknumber.js": {
|
|
323
|
+
"types": "./development/calendar/calendar-weeknumber.d.ts",
|
|
324
|
+
"development": "./development/calendar/calendar-weeknumber.js",
|
|
325
|
+
"default": "./calendar/calendar-weeknumber.js"
|
|
326
|
+
},
|
|
327
|
+
"./calendar/calendar-year": {
|
|
328
|
+
"types": "./development/calendar/calendar-year.d.ts",
|
|
329
|
+
"development": "./development/calendar/calendar-year.js",
|
|
330
|
+
"default": "./calendar/calendar-year.js"
|
|
331
|
+
},
|
|
332
|
+
"./calendar/calendar-year.js": {
|
|
333
|
+
"types": "./development/calendar/calendar-year.d.ts",
|
|
334
|
+
"development": "./development/calendar/calendar-year.js",
|
|
335
|
+
"default": "./calendar/calendar-year.js"
|
|
336
|
+
},
|
|
297
337
|
"./card": {
|
|
298
338
|
"types": "./development/card.d.ts",
|
|
299
339
|
"development": "./development/card.js",
|