@likable-hair/svelte 3.0.74 → 3.0.76

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.
@@ -126,7 +126,8 @@ $:
126
126
  }
127
127
 
128
128
  dispatch('input', {
129
- item
129
+ item,
130
+ items
130
131
  })
131
132
  }}
132
133
  on:click
@@ -150,7 +151,8 @@ $:
150
151
  }, {})
151
152
 
152
153
  dispatch('input', {
153
- item: item
154
+ item,
155
+ items
154
156
  })
155
157
  }}
156
158
  />
@@ -35,6 +35,7 @@ declare const __propDef: {
35
35
  }>;
36
36
  input: CustomEvent<{
37
37
  item: Item;
38
+ items: Item[];
38
39
  }>;
39
40
  } & {
40
41
  [evt: string]: CustomEvent<any>;
@@ -69,7 +69,7 @@ function doUpdateItem(item, inputData) {
69
69
  on:click={() => expanded = !expanded}
70
70
  >
71
71
  <Icon
72
- name="mdi-chevron-down"
72
+ name="mdi-chevron-right"
73
73
  ></Icon>
74
74
  </Button>
75
75
  </div>
@@ -159,6 +159,7 @@ function doUpdateItem(item, inputData) {
159
159
  ul {
160
160
  min-height: 10px;
161
161
  list-style: none;
162
+ padding-inline-start: 30px;
162
163
  }
163
164
 
164
165
  .card-container {
@@ -194,7 +195,7 @@ function doUpdateItem(item, inputData) {
194
195
  }
195
196
 
196
197
  .button-container.reversed {
197
- transform: rotate(-90deg);
198
+ transform: rotate(90deg);
198
199
  }
199
200
 
200
201
  input {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@likable-hair/svelte",
3
3
  "description": "A Svelte component for likablehair",
4
- "version": "3.0.74",
4
+ "version": "3.0.76",
5
5
  "scripts": {
6
6
  "host": "vite --host",
7
7
  "dev": "vite dev",