lapikit 0.6.6 → 0.6.7

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.
@@ -146,10 +146,10 @@
146
146
  --kit-appbar-density-offset: var(--kit-density-compact);
147
147
  }
148
148
  .kit-appbar[data-density='default'] {
149
- --kit-appbar-density-offset: var(--kit-density-compact);
149
+ --kit-appbar-density-offset: var(--kit-density-default);
150
150
  }
151
151
  .kit-appbar[data-density='comfortable'] {
152
- --kit-appbar-density-offset: var(--kit-density-compact);
152
+ --kit-appbar-density-offset: var(--kit-density-comfortable);
153
153
  }
154
154
 
155
155
  /**
@@ -250,6 +250,7 @@
250
250
  white-space: nowrap;
251
251
  user-select: none;
252
252
  cursor: default;
253
+ font-size: var(--kit-chip-font);
253
254
  border: 0;
254
255
  transition:
255
256
  background 150ms ease,
@@ -181,8 +181,7 @@
181
181
  border-bottom-left-radius: var(--kit-list-item-radius);
182
182
  border-bottom-right-radius: var(--kit-list-item-radius);
183
183
  }
184
- .kit-list:not([data-nav='true']) :global(.kit-list-item:not(:first-child)),
185
- .kit-list:not([data-nav='true']) :global(.kit-list-item:not(:last-child)) {
184
+ .kit-list:not([data-nav='true']) :global(.kit-list-item:not(:first-child):not(:last-child)) {
186
185
  --kit-list-item-radius: 0;
187
186
  }
188
187
 
@@ -0,0 +1,5 @@
1
+ import type { AccordionOptions } from '../@types';
2
+ export declare function useAccordion({ multiple, readOnly }?: AccordionOptions): {
3
+ readonly values: (string | number)[];
4
+ toggle(id: string | number): void;
5
+ };
@@ -1,2 +1,2 @@
1
1
  export * from './themes.svelte.js';
2
- export * from '../components/accordion/accordion.svelte.js';
2
+ export * from './accordion.svelte.js';
@@ -1,2 +1,2 @@
1
1
  export * from './themes.svelte.js';
2
- export * from '../components/accordion/accordion.svelte.js';
2
+ export * from './accordion.svelte.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lapikit",
3
- "version": "0.6.6",
3
+ "version": "0.6.7",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "access": "public"