@gemafajarramadhan/dynamic-ui 1.2.66 → 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/dynamic-ui.css +1 -1
- package/dist/dynamic-ui.es.js +2186 -2184
- package/dist/dynamic-ui.umd.js +16 -16
- package/dist/index.d.ts +23 -0
- package/package.json +1 -1
- package/src/index.d.ts +23 -0
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
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
|