@awenovations/aura 0.0.8 → 0.0.9

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.
@@ -1,14 +1,15 @@
1
- <script>export let direction = "horizontal";
1
+ <script>import classNames from "classnames";
2
+ export let direction = "horizontal";
2
3
  const vertical = direction === "vertical";
3
4
  const horizontal = direction === "horizontal";
4
5
  </script>
5
6
 
6
- <div class:vertical class:horizontal class="aura-divider">
7
- {#if $$slots.default}
8
- <div class="text">
9
- <slot />
10
- </div>
11
- {/if}
7
+ <div {...$$props} class:vertical class:horizontal class={classNames($$props.class, 'aura-divider')}>
8
+ {#if $$slots.default}
9
+ <div class="text">
10
+ <slot />
11
+ </div>
12
+ {/if}
12
13
  </div>
13
14
 
14
15
  <style>.aura-divider {
@@ -2,6 +2,7 @@ import { SvelteComponent } from "svelte";
2
2
  import type * as Props from './props';
3
3
  declare const __propDef: {
4
4
  props: {
5
+ [x: string]: any;
5
6
  direction?: Props.DividerDirection;
6
7
  };
7
8
  events: {
@@ -10,8 +11,8 @@ declare const __propDef: {
10
11
  slots: {
11
12
  default: {};
12
13
  };
13
- exports?: {} | undefined;
14
- bindings?: string | undefined;
14
+ exports?: undefined;
15
+ bindings?: undefined;
15
16
  };
16
17
  export type DividerProps = typeof __propDef.props;
17
18
  export type DividerEvents = typeof __propDef.events;
@@ -1 +1 @@
1
- {"lastGenerated":1721513764125,"icons":[{"name":"arrow-circle-left","size":"large"},{"name":"arrow-circle-left","size":"medium"},{"name":"arrow-circle-left","size":"small"},{"name":"bug","size":"large"},{"name":"bug","size":"medium"},{"name":"bug","size":"small"},{"name":"caret-down","size":"large"},{"name":"caret-down","size":"medium"},{"name":"caret-down","size":"small"},{"name":"circle-plus","size":"large"},{"name":"circle-plus","size":"medium"},{"name":"circle-plus","size":"small"},{"name":"google-color","size":"large"},{"name":"google-color","size":"medium"},{"name":"google-color","size":"small"},{"name":"microsoft-color","size":"large"},{"name":"microsoft-color","size":"medium"},{"name":"microsoft-color","size":"small"},{"name":"plan","size":"large"},{"name":"plan","size":"medium"},{"name":"plan","size":"small"},{"name":"user-story","size":"large"},{"name":"user-story","size":"medium"},{"name":"user-story","size":"small"}]}
1
+ {"lastGenerated":1721519711180,"icons":[{"name":"arrow-circle-left","size":"large"},{"name":"arrow-circle-left","size":"medium"},{"name":"arrow-circle-left","size":"small"},{"name":"bug","size":"large"},{"name":"bug","size":"medium"},{"name":"bug","size":"small"},{"name":"caret-down","size":"large"},{"name":"caret-down","size":"medium"},{"name":"caret-down","size":"small"},{"name":"circle-plus","size":"large"},{"name":"circle-plus","size":"medium"},{"name":"circle-plus","size":"small"},{"name":"google-color","size":"large"},{"name":"google-color","size":"medium"},{"name":"google-color","size":"small"},{"name":"microsoft-color","size":"large"},{"name":"microsoft-color","size":"medium"},{"name":"microsoft-color","size":"small"},{"name":"plan","size":"large"},{"name":"plan","size":"medium"},{"name":"plan","size":"small"},{"name":"user-story","size":"large"},{"name":"user-story","size":"medium"},{"name":"user-story","size":"small"}]}
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Sat Jul 20 2024 22:20:57 GMT+0000 (Coordinated Universal Time)
3
+ * Generated on Sun Jul 21 2024 00:00:38 GMT+0000 (Coordinated Universal Time)
4
4
  */
5
5
 
6
6
  :root {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awenovations/aura",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "npm run transform-tokens && vite build && npm run package",