accomadesc 0.1.10 → 0.1.12
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/BookingRequest.svelte +1 -1
- package/dist/CalendarAvailable.svelte +1 -1
- package/dist/PageComponent.svelte +1 -1
- package/dist/PageComponent.svelte.d.ts +1 -1
- package/dist/PageHeader.svelte +1 -1
- package/dist/PageHeader.svelte.d.ts +1 -1
- package/dist/basic/Notes.svelte +1 -1
- package/dist/occuplan/OccuPlanPicker.svelte +1 -1
- package/dist/occuplan/OccuPlanRows.svelte +1 -1
- package/dist/occuplan/OccuPlanRows.svelte.d.ts +1 -1
- package/dist/occuplan/OccuPlanWrapper.svelte +1 -1
- package/dist/occuplan/OccuPlanWrapper.svelte.d.ts +1 -1
- package/dist/occuplan/state.svelte.js +2 -2
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import Notes from './basic/Notes.svelte';
|
|
6
6
|
import Spinner from './basic/Spinner.svelte';
|
|
7
7
|
import TextInput from './basic/TextInput.svelte';
|
|
8
|
-
import { OCCUPATION_STATE, OccupationState } from './occuplan/state.svelte.
|
|
8
|
+
import { OCCUPATION_STATE, OccupationState } from './occuplan/state.svelte.js';
|
|
9
9
|
import OccuPlanPicker from './occuplan/OccuPlanPicker.svelte';
|
|
10
10
|
import { slide } from 'svelte/transition';
|
|
11
11
|
import type { DateTime } from 'luxon';
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import OccuPlanAvailableInfo from './occuplan/OccuPlanAvailableInfo.svelte';
|
|
3
3
|
import { DateTime } from 'luxon';
|
|
4
4
|
import type { CalendarAvailableContent, I18nFacade } from './types.js';
|
|
5
|
-
import { type AvailableSpans } from './occuplan/state.svelte.
|
|
5
|
+
import { type AvailableSpans } from './occuplan/state.svelte.js';
|
|
6
6
|
|
|
7
7
|
let {
|
|
8
8
|
url,
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import Hamburger from './Hamburger.svelte';
|
|
5
5
|
import PageHeader from './PageHeader.svelte';
|
|
6
6
|
import PageFooter from './PageFooter.svelte';
|
|
7
|
-
import type { PageProps, Section as SectionI, I18nFacade } from './types.
|
|
7
|
+
import type { PageProps, Section as SectionI, I18nFacade } from './types.js';
|
|
8
8
|
|
|
9
9
|
let {
|
|
10
10
|
hero,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { PageProps, I18nFacade } from './types.
|
|
1
|
+
import type { PageProps, I18nFacade } from './types.js';
|
|
2
2
|
type $$ComponentProps = PageProps & I18nFacade;
|
|
3
3
|
declare const PageComponent: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
4
4
|
type PageComponent = ReturnType<typeof PageComponent>;
|
package/dist/PageHeader.svelte
CHANGED
package/dist/basic/Notes.svelte
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
import Button from '../basic/Button.svelte';
|
|
15
15
|
import { browser } from '$app/environment';
|
|
16
16
|
import Spinner from '../basic/Spinner.svelte';
|
|
17
|
-
import { normalizeDate } from '../helpers/normalizeDate.
|
|
17
|
+
import { normalizeDate } from '../helpers/normalizeDate.js';
|
|
18
18
|
|
|
19
19
|
let {
|
|
20
20
|
url,
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
type DayHelper,
|
|
12
12
|
type FirstMonth,
|
|
13
13
|
realFirstMonth,
|
|
14
|
-
} from './state.svelte.
|
|
14
|
+
} from './state.svelte.js';
|
|
15
15
|
import Button from '../basic/Button.svelte';
|
|
16
16
|
import { browser } from '$app/environment';
|
|
17
17
|
import { getContext, setContext } from 'svelte';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DateTime } from 'luxon';
|
|
2
|
-
import { type OccuplanTranslations, type FirstMonth } from './state.svelte.
|
|
2
|
+
import { type OccuplanTranslations, type FirstMonth } from './state.svelte.js';
|
|
3
3
|
type $$ComponentProps = OccuplanTranslations & {
|
|
4
4
|
url: string;
|
|
5
5
|
numberOfMonth?: number;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type OccuplanTranslations, type OccuplanMiscProps } from './state.svelte.
|
|
1
|
+
import { type OccuplanTranslations, type OccuplanMiscProps } from './state.svelte.js';
|
|
2
2
|
type $$ComponentProps = OccuplanTranslations & OccuplanMiscProps;
|
|
3
3
|
declare const OccuPlanWrapper: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
4
4
|
type OccuPlanWrapper = ReturnType<typeof OccuPlanWrapper>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { normalizeDate } from '../helpers/normalizeDate.
|
|
2
|
-
import { getEvents } from '../helpers/readICS.
|
|
1
|
+
import { normalizeDate } from '../helpers/normalizeDate.js';
|
|
2
|
+
import { getEvents } from '../helpers/readICS.js';
|
|
3
3
|
import { DateTime } from 'luxon';
|
|
4
4
|
import { DateTime as luxon } from 'luxon';
|
|
5
5
|
export const OCCUPATION_STATE = 'occupation-state';
|
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type Dinero, type DineroSnapshot } from 'dinero.js';
|
|
2
|
-
import type { FirstMonth } from './occuplan/state.svelte.
|
|
2
|
+
import type { FirstMonth } from './occuplan/state.svelte.js';
|
|
3
3
|
import type { DateTime, MonthNumbers, WeekdayNumbers } from 'luxon';
|
|
4
4
|
export type WeekdayLabels = {
|
|
5
5
|
[key in WeekdayNumbers]: string;
|