@gemafajarramadhan/dynamic-ui 1.2.55 → 1.2.56

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.
package/dist/index.d.ts CHANGED
@@ -23,6 +23,18 @@ declare module '@gemafajarramadhan/dynamic-ui' {
23
23
  [key: string]: any
24
24
  }>
25
25
 
26
+ export const Breadcrumb: DefineComponent<{
27
+ items?: any[]
28
+ showHomeIcon?: boolean
29
+ iconSize?: string
30
+ disabled?: boolean
31
+ separatorSize?: number
32
+ separatorType?: 'chevron' | 'slash'
33
+ strokeWidth?: number
34
+ visible?: boolean
35
+ [key: string]: any
36
+ }>
37
+
26
38
  export const DCodeBadge: DefineComponent<{
27
39
  text?: string
28
40
  variant?: 'default' | 'secondary' | 'destructive' | 'outline' | 'success' | 'warning' | 'info' | 'ghost' | 'tonal' | 'pink' | 'purple' | 'dark' | 'light'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gemafajarramadhan/dynamic-ui",
3
- "version": "1.2.55",
3
+ "version": "1.2.56",
4
4
  "description": "Vue 3 Dynamic UI Component Library - Compatible with Vue, React, Angular, and any other framework via Web Components",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/index.d.ts CHANGED
@@ -23,6 +23,18 @@ declare module '@gemafajarramadhan/dynamic-ui' {
23
23
  [key: string]: any
24
24
  }>
25
25
 
26
+ export const Breadcrumb: DefineComponent<{
27
+ items?: any[]
28
+ showHomeIcon?: boolean
29
+ iconSize?: string
30
+ disabled?: boolean
31
+ separatorSize?: number
32
+ separatorType?: 'chevron' | 'slash'
33
+ strokeWidth?: number
34
+ visible?: boolean
35
+ [key: string]: any
36
+ }>
37
+
26
38
  export const DCodeBadge: DefineComponent<{
27
39
  text?: string
28
40
  variant?: 'default' | 'secondary' | 'destructive' | 'outline' | 'success' | 'warning' | 'info' | 'ghost' | 'tonal' | 'pink' | 'purple' | 'dark' | 'light'