@sprucelabs/spruce-calendar-components 24.2.18 → 24.2.19
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/build/.spruce/schemas/schemas.types.d.ts +354 -354
- package/build/calendar/StubPeopleSorter.d.ts +4 -0
- package/build/calendar/StubPeopleSorter.js +9 -0
- package/build/esm/.spruce/schemas/schemas.types.d.ts +354 -354
- package/build/esm/calendar/StubPeopleSorter.d.ts +4 -0
- package/build/esm/calendar/StubPeopleSorter.js +6 -0
- package/package.json +5 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const calendar_utils_1 = require("@sprucelabs/calendar-utils");
|
|
4
|
+
class StubPeopleSorter extends calendar_utils_1.PeopleSorter {
|
|
5
|
+
sort() {
|
|
6
|
+
return this.getPeople();
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
exports.default = StubPeopleSorter;
|