@gemafajarramadhan/dynamic-ui 1.2.67 → 1.2.68

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
@@ -391,6 +391,29 @@ declare module '@gemafajarramadhan/dynamic-ui' {
391
391
  [key: string]: any
392
392
  }>
393
393
 
394
+ export const DCodeStaticLabel: DefineComponent<{
395
+ label?: string
396
+ value?: any
397
+ icon?: string
398
+ color?: "primary" | "success" | "warning" | "danger" | "info" | "secondary" | "dark"
399
+ [key: string]: any
400
+ }>
401
+
402
+ export const DCodeStaticImage: DefineComponent<{
403
+ items: any[]
404
+ alt?: string
405
+ label?: string
406
+ aspectRatio?: string
407
+ width?: string
408
+ height?: string
409
+ fit?: "cover" | "contain" | "fill" | "none"
410
+ rounded?: boolean
411
+ allowPreview?: boolean
412
+ columns?: number
413
+ gap?: string
414
+ [key: string]: any
415
+ }>
416
+
394
417
  export const DCodeSwitch: DefineComponent<{
395
418
  modelValue?: boolean
396
419
  label?: string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gemafajarramadhan/dynamic-ui",
3
- "version": "1.2.67",
3
+ "version": "1.2.68",
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
@@ -391,6 +391,29 @@ declare module '@gemafajarramadhan/dynamic-ui' {
391
391
  [key: string]: any
392
392
  }>
393
393
 
394
+ export const DCodeStaticLabel: DefineComponent<{
395
+ label?: string
396
+ value?: any
397
+ icon?: string
398
+ color?: "primary" | "success" | "warning" | "danger" | "info" | "secondary" | "dark"
399
+ [key: string]: any
400
+ }>
401
+
402
+ export const DCodeStaticImage: DefineComponent<{
403
+ items: any[]
404
+ alt?: string
405
+ label?: string
406
+ aspectRatio?: string
407
+ width?: string
408
+ height?: string
409
+ fit?: "cover" | "contain" | "fill" | "none"
410
+ rounded?: boolean
411
+ allowPreview?: boolean
412
+ columns?: number
413
+ gap?: string
414
+ [key: string]: any
415
+ }>
416
+
394
417
  export const DCodeSwitch: DefineComponent<{
395
418
  modelValue?: boolean
396
419
  label?: string