accomadesc 0.2.18 → 0.2.20

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.
@@ -69,6 +69,7 @@
69
69
 
70
70
  .photo {
71
71
  grid-area: first-row-line / start-line / fifth-row-line / middle-line;
72
+ position: relative;
72
73
  }
73
74
 
74
75
  .amenities-container {
@@ -118,7 +119,6 @@
118
119
 
119
120
  .slug {
120
121
  text-align: right;
121
- font-style: italic;
122
122
  margin-bottom: 1rem;
123
123
  }
124
124
 
@@ -135,7 +135,7 @@
135
135
  </label>
136
136
  <div class="input-wrapper">
137
137
  <TextInput
138
- id={`${id}name-input`}
138
+ id={`${id}-name-input`}
139
139
  type="text"
140
140
  marginForMessage={false}
141
141
  bind:value={name}
package/dist/types.d.ts CHANGED
@@ -226,7 +226,7 @@ export interface AccoCard {
226
226
  export interface AccoCardContent {
227
227
  displayName: string;
228
228
  coverPhoto: PhotoContent;
229
- slug?: string;
229
+ slug: string;
230
230
  pricing: PricingShort;
231
231
  avail: CalendarAvailable;
232
232
  amenities: AmenitiesCore;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "accomadesc",
3
- "version": "0.2.18",
3
+ "version": "0.2.20",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run package",