@gemafajarramadhan/dynamic-ui 1.2.5 → 1.2.7

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
@@ -4,10 +4,9 @@ declare module '@gemafajarramadhan/dynamic-ui' {
4
4
  export interface DynamicUIApiConfig {
5
5
  apiBaseUrl?: string
6
6
  getAuthToken?: () => string | null | undefined
7
-
8
7
  getHeaders?: () => Record<string, string>
9
-
10
8
  onUnauthorized?: () => void
9
+ apiClient?: (url: string, method?: string, data?: any) => Promise<any>
11
10
  }
12
11
 
13
12
  export function setApiConfig(config: DynamicUIApiConfig): void
@@ -306,6 +305,10 @@ declare module '@gemafajarramadhan/dynamic-ui' {
306
305
  export const MicroDynamicForm: any
307
306
  export const MicroDynamicDatatable: any
308
307
  export const MicroDataTable: any
308
+
309
+ export const AutoLayoutForm: any
310
+ export const AutoLayoutDatatable: any
311
+ export const DataTableComponent: any
309
312
 
310
313
  export function registerLogic(name: string, module: any): void
311
314
  export function getLogicModule(name: string): any
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gemafajarramadhan/dynamic-ui",
3
- "version": "1.2.5",
3
+ "version": "1.2.7",
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",
@@ -81,6 +81,7 @@
81
81
  "dependencies": {
82
82
  "@fontsource/geist-mono": "^5.2.7",
83
83
  "@fontsource/geist-sans": "^5.2.5",
84
+ "@gemafajarramadhan/dynamic-ui": "file:gemafajarramadhan-dynamic-ui-1.1.29.tgz",
84
85
  "@jamescoyle/vue-icon": "^0.1.2",
85
86
  "@mdi/js": "^7.4.47",
86
87
  "@uppy/core": "^5.0.0",
package/src/index.d.ts CHANGED
@@ -4,10 +4,9 @@ declare module '@gemafajarramadhan/dynamic-ui' {
4
4
  export interface DynamicUIApiConfig {
5
5
  apiBaseUrl?: string
6
6
  getAuthToken?: () => string | null | undefined
7
-
8
7
  getHeaders?: () => Record<string, string>
9
-
10
8
  onUnauthorized?: () => void
9
+ apiClient?: (url: string, method?: string, data?: any) => Promise<any>
11
10
  }
12
11
 
13
12
  export function setApiConfig(config: DynamicUIApiConfig): void
@@ -306,6 +305,10 @@ declare module '@gemafajarramadhan/dynamic-ui' {
306
305
  export const MicroDynamicForm: any
307
306
  export const MicroDynamicDatatable: any
308
307
  export const MicroDataTable: any
308
+
309
+ export const AutoLayoutForm: any
310
+ export const AutoLayoutDatatable: any
311
+ export const DataTableComponent: any
309
312
 
310
313
  export function registerLogic(name: string, module: any): void
311
314
  export function getLogicModule(name: string): any