@likable-hair/svelte 3.0.42 → 3.0.44

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.
@@ -131,7 +131,7 @@ $:
131
131
  </div>
132
132
  <div class="filter-editor">
133
133
  {#if tmpFilter.advanced && step == 'advanced' && canRenderOptions}
134
- <div class="advanced-mode" in:fly={{delay: 100, x: 200, duration: 100}} out:fly={{x: -200, duration: 100}}>
134
+ <div class="advanced-mode" in:fly|local={{delay: 100, x: 200, duration: 100}} out:fly|local={{x: -200, duration: 100}}>
135
135
  <div class="advanced-mode-selector" on:click|stopPropagation on:keypress>
136
136
  <SelectableVerticalList
137
137
  bind:selected={advancedModeSelectedOption}
@@ -146,7 +146,7 @@ $:
146
146
  </div>
147
147
  </div>
148
148
  {:else if step == 'editor' && (!tmpFilter.advanced || !!advancedModeSelectedOption)}
149
- <div class="editor" in:fly={{delay: 100, x: 200, duration: 100}} out:fly={{x: -200, duration: 100}}>
149
+ <div class="editor" in:fly|local={{delay: 100, x: 200, duration: 100}} out:fly|local={{x: -200, duration: 100}}>
150
150
  <div class="fields-container">
151
151
  <div class="fields"
152
152
  on:click|stopPropagation
@@ -242,6 +242,7 @@ let sidebarExpanded = false;
242
242
  transition-duration: .2s;
243
243
  right: 0;
244
244
  top: 0;
245
+ z-index: 10;
245
246
  }
246
247
 
247
248
 
@@ -225,8 +225,8 @@ function handleMenuClick(e, zIndex2) {
225
225
  style:width={_width}
226
226
  style:min-width={_minWidth}
227
227
  style:overflow={_overflow}
228
- in:inAnimation={inAnimationConfig}
229
- out:outAnimation={outAnimationConfig}
228
+ in:inAnimation|local={inAnimationConfig}
229
+ out:outAnimation|local={outAnimationConfig}
230
230
  on:click={(e) => handleMenuClick(e, zIndex)}
231
231
  on:keydown
232
232
  >
package/dist/index.d.ts CHANGED
@@ -55,6 +55,7 @@ export { default as AsyncAutocomplete } from './components/composed/forms/AsyncA
55
55
  export { default as FilterBuilder } from './utils/filters/builder';
56
56
  export { default as FilterConverter } from './utils/filters/filters';
57
57
  export { default as FilterValidator } from './utils/filters/validator';
58
+ export { default as GanymedeLineChart } from './components/simple/charts/GanymedeLineChart.svelte';
58
59
  export { default as mediaQuery } from './stores/mediaQuery';
59
60
  export { default as theme, toggleTheme, setTheme } from './stores/theme';
60
61
  export { default as debounce } from './stores/debounce';
package/dist/index.js CHANGED
@@ -55,6 +55,7 @@ export { default as AsyncAutocomplete } from './components/composed/forms/AsyncA
55
55
  export { default as FilterBuilder } from './utils/filters/builder';
56
56
  export { default as FilterConverter } from './utils/filters/filters';
57
57
  export { default as FilterValidator } from './utils/filters/validator';
58
+ export { default as GanymedeLineChart } from './components/simple/charts/GanymedeLineChart.svelte';
58
59
  export { default as mediaQuery } from './stores/mediaQuery';
59
60
  export { default as theme, toggleTheme, setTheme } from './stores/theme';
60
61
  export { default as debounce } from './stores/debounce';
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.42",
4
+ "version": "3.0.44",
5
5
  "scripts": {
6
6
  "host": "vite --host",
7
7
  "dev": "vite dev",