accomadesc 0.2.21 → 0.2.23
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/basic/Notes.svelte +5 -3
- package/dist/index.d.ts +1 -1
- package/dist/types.d.ts +5 -4
- package/package.json +8 -8
package/dist/basic/Notes.svelte
CHANGED
|
@@ -44,8 +44,9 @@
|
|
|
44
44
|
min-height: 5rem;
|
|
45
45
|
height: 100%;
|
|
46
46
|
|
|
47
|
-
border:
|
|
48
|
-
border
|
|
47
|
+
border: none;
|
|
48
|
+
/*border: var(--main-border);*/
|
|
49
|
+
/*border-radius: 1rem;*/
|
|
49
50
|
|
|
50
51
|
background-color: var(--notes-bg-color);
|
|
51
52
|
color: var(--notes-font-color);
|
|
@@ -61,7 +62,8 @@
|
|
|
61
62
|
}
|
|
62
63
|
|
|
63
64
|
div.question-input.disabled {
|
|
64
|
-
border:
|
|
65
|
+
border: none;
|
|
66
|
+
/*var(--disabled-border);*/
|
|
65
67
|
font: var(--notes-disabled-font-color);
|
|
66
68
|
background-color: var(--notes-disabled-bg-color);
|
|
67
69
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -24,6 +24,6 @@ import Text from './Text.svelte';
|
|
|
24
24
|
import Weather from './Weather.svelte';
|
|
25
25
|
import PageComponent from './PageComponent.svelte';
|
|
26
26
|
export type { OccuplanTranslations } from './occuplan/state.svelte.ts';
|
|
27
|
-
export type { GridPhoto, LeafletMap as LeafletMapI, LeafletMapContent, Calendar as CalendarI, CalendarContent, CalendarAvailable as CalendarAvailableI, CalendarAvailableContent, CalendarGrid as CalendarGridI, CalendarGridContent, CalendarRows as CalendarRowsI, CalendarRowsContent, Text as TextI, TextContent, Weather as WeatherI, WeatherContent, Photo as PhotoI, PhotoContent, PhotoGallery as PhotoGalleryI, PhotoGalleryContent, Pricing as PricingI, PricingContent, PricingShort as PricingShortI, PricingShortContent, PricingEntry, PricingRange, PricingColumn, StaticRangeDate, StaticPricingRange, AmenitiesCore as AmenitiesCoreI, AmenitiesCoreContent, AccoCard as AccoCardI, AccoCardContent, ContactForm as ContactFormI, ContactFormContent, BookingRequest as BookingRequestI, BookingRequestContent, AccoDescription as AccoDescriptionI, AccoDescriptionContent, Section as SectionI, I18nFacade, Block, PageProps, Nav as NavI, FormatSpec, FormatTemplateName, SiteConfig, LangConfig, CookieConfig, SiteFonts, SiteTranslation, FontSpec, Hero, } from './types.js';
|
|
27
|
+
export type { GridPhoto, LeafletMap as LeafletMapI, LeafletMapContent, Calendar as CalendarI, CalendarContent, CalendarAvailable as CalendarAvailableI, CalendarAvailableContent, CalendarGrid as CalendarGridI, CalendarGridContent, CalendarRows as CalendarRowsI, CalendarRowsContent, Text as TextI, TextContent, Weather as WeatherI, WeatherContent, Photo as PhotoI, PhotoContent, PhotoGallery as PhotoGalleryI, PhotoGalleryContent, Pricing as PricingI, PricingContent, PricingShort as PricingShortI, PricingShortContent, PricingEntry, PricingRange, PricingColumn, StaticRangeDate, StaticPricingRange, AmenitiesCore as AmenitiesCoreI, AmenitiesCoreContent, AccoCard as AccoCardI, AccoCardContent, ContactForm as ContactFormI, ContactFormContent, BookingRequest as BookingRequestI, BookingRequestContent, AccoDescription as AccoDescriptionI, AccoDescriptionContent, Section as SectionI, I18nFacade, Block, PageProps, PageConfig, Nav as NavI, FormatSpec, FormatTemplateName, SiteConfig, LangConfig, CookieConfig, SiteFonts, SiteTranslation, FontSpec, Hero, } from './types.js';
|
|
28
28
|
export { PRICING_COLUMNS, BLOCK_KINDS, isAccoCard, isText, isPhoto, isGallery, isLeafletMap, isWeather, isAmenitiesCore, isCalendarAvailable, isCalendar, isCalendarGrid, isCalendarRows, isPricing, isPricingShort, isAccoDescription, isBookingRequest, isContactForm, } from './types.js';
|
|
29
29
|
export { randomID, randomName, Avatar, Button, Icon, Spinner, TextInput, AccoCard, AccoDescription, AmenitiesCore, Calendar, CalendarAvailable, LeafletMap, Photo, PhotoGallery, Pricing, PricingShort, Section, Text, Weather, BookingRequest, ContactForm, CalendarRows, CalendarGrid, Notes, PageComponent, };
|
package/dist/types.d.ts
CHANGED
|
@@ -331,13 +331,14 @@ export interface SiteConfig {
|
|
|
331
331
|
cookies: CookieConfig;
|
|
332
332
|
fonts: SiteFonts;
|
|
333
333
|
nav: Nav;
|
|
334
|
-
pages:
|
|
335
|
-
'/': PageProps;
|
|
336
|
-
[key: string]: PageProps;
|
|
337
|
-
};
|
|
334
|
+
pages: PageConfig;
|
|
338
335
|
lang: LangConfig;
|
|
339
336
|
css: string;
|
|
340
337
|
}
|
|
338
|
+
export interface PageConfig {
|
|
339
|
+
'/': PageProps;
|
|
340
|
+
[key: string]: PageProps;
|
|
341
|
+
}
|
|
341
342
|
export interface PageProps {
|
|
342
343
|
id: string;
|
|
343
344
|
path: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "accomadesc",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.23",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "vite dev",
|
|
6
6
|
"build": "vite build && npm run package",
|
|
@@ -40,22 +40,22 @@
|
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@sveltejs/adapter-auto": "^3.3.1",
|
|
43
|
-
"@sveltejs/kit": "^2.
|
|
43
|
+
"@sveltejs/kit": "^2.19.0",
|
|
44
44
|
"@sveltejs/package": "^2.3.10",
|
|
45
45
|
"@sveltejs/vite-plugin-svelte": "^5.0.3",
|
|
46
46
|
"@types/luxon": "^3.4.2",
|
|
47
47
|
"gdpr-cooco-banner": "^0.0.11",
|
|
48
|
-
"prettier": "^3.5.
|
|
48
|
+
"prettier": "^3.5.3",
|
|
49
49
|
"prettier-plugin-svelte": "^3.3.3",
|
|
50
|
-
"publint": "^0.3.
|
|
51
|
-
"svelte": "^5.
|
|
52
|
-
"svelte-check": "^4.1.
|
|
50
|
+
"publint": "^0.3.9",
|
|
51
|
+
"svelte": "^5.23.0",
|
|
52
|
+
"svelte-check": "^4.1.5",
|
|
53
53
|
"typescript": "^5.8.2",
|
|
54
|
-
"vite": "^6.2.
|
|
54
|
+
"vite": "^6.2.1"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@dinero.js/currencies": "2.0.0-alpha.14",
|
|
58
|
-
"@fontsource/raleway": "^5.
|
|
58
|
+
"@fontsource/raleway": "^5.2.5",
|
|
59
59
|
"@twicpics/components": "^0.31.4",
|
|
60
60
|
"@types/leaflet": "^1.9.16",
|
|
61
61
|
"dinero.js": "2.0.0-alpha.14",
|