@okyiww/form 0.0.1 → 0.0.3

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.
@@ -1 +1,2 @@
1
1
  export declare function useBaseStyle(value?: number): AnyObject;
2
+ export declare function useListBaseStyle(value?: number): AnyObject;
@@ -50,5 +50,9 @@ export type DefineFormSetupOptions = {
50
50
  templates: Template[];
51
51
  default: {
52
52
  templateId: string;
53
+ formProps?: AnyObject;
54
+ listLayoutGap?: number;
55
+ gapBgColor?: string;
56
+ layoutGap?: number;
53
57
  };
54
58
  };
@@ -4,6 +4,7 @@ export type UseFormOptions = {
4
4
  templateId?: string;
5
5
  schemas: RawSchemas | ((...args: any[]) => RawSchemas) | ((...args: any[]) => Promise<RawSchemas>);
6
6
  layoutGap?: number;
7
+ listLayoutGap?: number;
7
8
  formProps?: any;
8
9
  formSlots?: any;
9
10
  ssr?: SSR;
@@ -1,4 +1,4 @@
1
- declare const version = "0.0.0";
1
+ declare const version = "0.0.1";
2
2
  export { version };
3
3
  export * from './core/context';
4
4
  export * from './helpers';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@okyiww/form",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.js",
6
6
  "type": "module",