webcoreui 0.0.7 → 0.0.8

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,6 +1,7 @@
1
1
  ---
2
2
  import type { AccordionProps } from './accordion'
3
3
  import ArrowDown from '../../icons/arrow-down.svg?raw'
4
+ import './accordion.scss'
4
5
 
5
6
  interface Props extends AccordionProps {}
6
7
 
@@ -38,7 +39,3 @@ const {
38
39
  })
39
40
  })
40
41
  </script>
41
-
42
- <style lang="scss">
43
- @import './accordion.scss';
44
- </style>
@@ -1,6 +1,7 @@
1
1
  <script lang="ts">
2
2
  import type { AccordionProps } from './accordion'
3
3
  import ArrowDown from '../../icons/arrow-down.svg?raw'
4
+ import './accordion.scss'
4
5
 
5
6
  export let items: AccordionProps['items']
6
7
 
@@ -33,7 +34,3 @@
33
34
  </li>
34
35
  {/each}
35
36
  </ul>
36
-
37
- <style lang="scss">
38
- @import './accordion.scss';
39
- </style>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "webcoreui",
3
3
  "type": "module",
4
- "version": "0.0.7",
4
+ "version": "0.0.8",
5
5
  "scripts": {
6
6
  "dev": "astro dev",
7
7
  "build": "astro check && astro build",