fluid-ui-svelte 0.1.3 → 0.1.4

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.
@@ -20,15 +20,8 @@
20
20
  </script>
21
21
 
22
22
  <Container class={(overrideDefaultStyling ? "" : "fluid-dropdown") + (className ? ` ${className}` : "")} overrideDefaultStyling={true}>
23
- <Button
24
- overrideDefaultStyling
25
- onclick={(e: Event) => {
26
- isOpen = !isOpen;
27
- }}
28
- >
29
- {@render dropdownTrigger(isOpen)}
30
- </Button>
31
- <Container class={(overrideDefaultStyling ? "" : "fluid-dropdown-content") + (contentClass ? ` ${contentClass}` : "")}>
23
+ {@render dropdownTrigger(isOpen)}
24
+ <Container overrideDefaultStyling class={(overrideDefaultStyling ? "" : "fluid-dropdown-content") + (contentClass ? ` ${contentClass}` : "")}>
32
25
  {#if isOpen}
33
26
  {@render children()}
34
27
  {/if}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fluid-ui-svelte",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "author": {
5
5
  "name": "Emre Ayaz",
6
6
  "email": "emreayaz@frostium.io",