accomadesc 0.2.16 → 0.2.18
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/ContactForm.svelte +1 -1
- package/dist/types.d.ts +2 -2
- package/package.json +1 -1
package/dist/ContactForm.svelte
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import TextInput from './basic/TextInput.svelte';
|
|
5
5
|
import Notes from './basic/Notes.svelte';
|
|
6
6
|
import type { ContactFormContent, I18nFacade } from './types.js';
|
|
7
|
-
import { randomID } from './names/gen.
|
|
7
|
+
import { randomID } from './names/gen.js';
|
|
8
8
|
|
|
9
9
|
const {
|
|
10
10
|
userID,
|
package/dist/types.d.ts
CHANGED
|
@@ -261,8 +261,8 @@ export interface ContactFormContent {
|
|
|
261
261
|
submitText: string;
|
|
262
262
|
successfullySentText: string;
|
|
263
263
|
sentErroredText: string;
|
|
264
|
+
explainer: string;
|
|
264
265
|
maxCharsAllowed?: number;
|
|
265
|
-
explainer?: string;
|
|
266
266
|
preview?: boolean;
|
|
267
267
|
}
|
|
268
268
|
export interface BookingRequest {
|
|
@@ -283,8 +283,8 @@ export interface BookingRequestContent {
|
|
|
283
283
|
sentErroredText: string;
|
|
284
284
|
invalidText: string;
|
|
285
285
|
messageLabel: string;
|
|
286
|
+
explainer: string;
|
|
286
287
|
maxCharsAllowed?: number;
|
|
287
|
-
explainer?: string;
|
|
288
288
|
preview?: boolean;
|
|
289
289
|
}
|
|
290
290
|
export type Block = Text | Photo | PhotoGallery | Calendar | CalendarAvailable | CalendarGrid | CalendarRows | Pricing | PricingShort | AmenitiesCore | Weather | LeafletMap | AccoCard | AccoDescription | ContactForm | BookingRequest | undefined;
|