vue3-schema-forms 0.0.33 → 0.0.34

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/README.md CHANGED
@@ -147,7 +147,6 @@ const vueSchemaForms = createVueSchemaForms({
147
147
  });
148
148
  ```
149
149
 
150
-
151
150
  ## Tests
152
151
 
153
152
  1. ```cd``` to the project directory
@@ -173,6 +172,7 @@ const vueSchemaForms = createVueSchemaForms({
173
172
  - [ ] Markdown input
174
173
  - [ ] File input
175
174
  - [ ] Table input
175
+ - [ ] Rsql filter on dictionary
176
176
  - [ ] Signal for form is ready (for autosave but after initial model changes)
177
177
  - [ ] Create datetime field
178
178
 
@@ -0,0 +1,5 @@
1
+ export * from "/Users/maciek/WebstormProjects/vue3-schema-forms/src/components/controls/data-viewer/DataViewer.vue?vue&type=script&setup=true&lang.ts";
2
+ import "/Users/maciek/WebstormProjects/vue3-schema-forms/src/components/controls/data-viewer/DataViewer.vue?vue&type=style&index=0&scoped=0c93975a&lang.scss";
3
+ declare const _default: any;
4
+ export default _default;
5
+ //# sourceMappingURL=DataViewer.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DataViewer.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/controls/data-viewer/DataViewer.vue"],"names":[],"mappings":"AACA,cAAc,wIAAwI,CAAC;AACvJ,OAAO,sJAAsJ,CAAC;;AAE9J,wBAA0F"}
@@ -1,5 +1,5 @@
1
1
  export * from "/Users/maciek/WebstormProjects/vue3-schema-forms/src/components/controls/date/DatePicker.vue?vue&type=script&setup=true&lang.ts";
2
- import "/Users/maciek/WebstormProjects/vue3-schema-forms/src/components/controls/date/DatePicker.vue?vue&type=style&index=0&scoped=a028fab1&lang.scss";
2
+ import "/Users/maciek/WebstormProjects/vue3-schema-forms/src/components/controls/date/DatePicker.vue?vue&type=style&index=0&scoped=1df7b549&lang.scss";
3
3
  declare const _default: any;
4
4
  export default _default;
5
5
  //# sourceMappingURL=DatePicker.vue.d.ts.map
@@ -1,5 +1,5 @@
1
1
  export * from "/Users/maciek/WebstormProjects/vue3-schema-forms/src/components/controls/duplicated-section/DuplicatedSection.vue?vue&type=script&setup=true&lang.ts";
2
- import "/Users/maciek/WebstormProjects/vue3-schema-forms/src/components/controls/duplicated-section/DuplicatedSection.vue?vue&type=style&index=0&scoped=da60d653&lang.scss";
2
+ import "/Users/maciek/WebstormProjects/vue3-schema-forms/src/components/controls/duplicated-section/DuplicatedSection.vue?vue&type=style&index=0&scoped=b7b5d087&lang.scss";
3
3
  declare const _default: any;
4
4
  export default _default;
5
5
  //# sourceMappingURL=DuplicatedSection.vue.d.ts.map
@@ -1,6 +1,7 @@
1
1
  import { DictionarySource } from '../../vocabulary/schema/elements';
2
2
  import { Ref } from "vue";
3
- export declare function useDictionarySource(source: DictionarySource, formId: string): {
3
+ import { EngineOptions } from '../../vocabulary/engine';
4
+ export declare function useDictionarySource(source: DictionarySource, formId: string, formOptions: EngineOptions): {
4
5
  title: string;
5
6
  value: string;
6
7
  loading: Ref<boolean>;
@@ -5,15 +5,17 @@ export declare function useLocale(): {
5
5
  counter: string;
6
6
  phoneInvalid: string;
7
7
  countryLabel: string;
8
+ emptyValue: string;
8
9
  };
9
10
  pl: {
10
11
  required: string;
11
12
  counter: string;
12
13
  phoneInvalid: string;
13
14
  countryLabel: string;
15
+ emptyValue: string;
14
16
  };
15
17
  }, "en" | "pl", import("@intlify/core-base").RemoveIndexSignature<{
16
18
  [x: string]: import('../../../vue-i18n/dist/vue-i18n.runtime.esm-bundler.js').LocaleMessageValue<import('../../../vue-i18n/dist/vue-i18n.runtime.esm-bundler.js').VueMessageType>;
17
- }>, never, "required" | "counter" | "phoneInvalid" | "countryLabel", "required" | "counter" | "phoneInvalid" | "countryLabel">;
19
+ }>, never, "required" | "counter" | "phoneInvalid" | "countryLabel" | "emptyValue", "required" | "counter" | "phoneInvalid" | "countryLabel" | "emptyValue">;
18
20
  locale: import("vue").WritableComputedRef<"en" | "pl">;
19
21
  };
@@ -1,4 +1,4 @@
1
- export declare function useResolveVariables(inputString: string, formId: string): {
1
+ export declare function useResolveVariables(inputString: string, formId: string, formatNumber: (input: number) => string): {
2
2
  resolvedText: string;
3
3
  allVariablesResolved: boolean;
4
4
  };