accomadesc 0.1.10 → 0.1.11

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.
@@ -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.ts';
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.ts';
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.ts';
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.ts';
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>;
@@ -1,5 +1,5 @@
1
1
  <script lang="ts">
2
- import type { I18nFacade } from './types.ts';
2
+ import type { I18nFacade } from './types.js';
3
3
 
4
4
  let {
5
5
  logoLink,
@@ -1,4 +1,4 @@
1
- import type { I18nFacade } from './types.ts';
1
+ import type { I18nFacade } from './types.js';
2
2
  type $$ComponentProps = {
3
3
  title: string;
4
4
  slug?: string;
@@ -1,5 +1,5 @@
1
1
  <script lang="ts">
2
- import { randomID } from '../names/gen.ts';
2
+ import { randomID } from '../names/gen.js';
3
3
 
4
4
  let {
5
5
  disabled,
@@ -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.ts';
17
+ import { normalizeDate } from '../helpers/normalizeDate.js';
18
18
 
19
19
  let {
20
20
  url,
@@ -1,5 +1,5 @@
1
- import { normalizeDate } from '../helpers/normalizeDate.ts';
2
- import { getEvents } from '../helpers/readICS.ts';
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.ts';
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "accomadesc",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run package",