srcdev-nuxt-components 7.0.1 → 7.0.2

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.
@@ -7,14 +7,7 @@
7
7
  </template>
8
8
 
9
9
  <script setup lang="ts">
10
- import type { DisplayChipConfig } from "../../types/components"
11
-
12
- interface DisplayChipProps {
13
- tag?: "div" | "span"
14
- shape?: "circle" | "square"
15
- config?: DisplayChipConfig
16
- styleClassPassthrough?: string | string[]
17
- }
10
+ import type { DisplayChipProps } from "../../types/components"
18
11
 
19
12
  interface ChipSlots {
20
13
  default(props?: {}): any
@@ -6,3 +6,10 @@ export interface DisplayChipConfig {
6
6
  icon?: string
7
7
  label?: string
8
8
  }
9
+
10
+ export interface DisplayChipProps {
11
+ tag?: "div" | "span"
12
+ shape?: "circle" | "square"
13
+ config?: DisplayChipConfig
14
+ styleClassPassthrough?: string | string[]
15
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "srcdev-nuxt-components",
3
3
  "type": "module",
4
- "version": "7.0.1",
4
+ "version": "7.0.2",
5
5
  "main": "nuxt.config.ts",
6
6
  "types": "types.d.ts",
7
7
  "scripts": {