@sfxcode/formkit-primevue 2.4.15 → 2.4.16
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 +2 -2
- package/dist/index.js +6 -0
- package/dist/index.mjs +3 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { FormKitDataDebug, FormKitDataEdit, FormKitDataView } from './components';
|
|
2
|
-
import { useFormKitRepeater, useFormKitSchema, useInputEditor, useInputEditorSchema } from './composables';
|
|
2
|
+
import { useFormKitRepeater, useFormKitSchema, useInputEditor, useInputEditorSchema, usePrimeInputs } from './composables';
|
|
3
3
|
import { primeInputs, primeOutputs } from './definitions';
|
|
4
|
-
export { FormKitDataDebug, FormKitDataEdit, FormKitDataView, primeInputs, primeOutputs, useFormKitRepeater, useFormKitSchema, useInputEditor, useInputEditorSchema, };
|
|
4
|
+
export { FormKitDataDebug, FormKitDataEdit, FormKitDataView, primeInputs, primeOutputs, useFormKitRepeater, useFormKitSchema, useInputEditor, useInputEditorSchema, usePrimeInputs, };
|
package/dist/index.js
CHANGED
|
@@ -57,6 +57,12 @@ Object.defineProperty(exports, "useInputEditorSchema", {
|
|
|
57
57
|
return _composables.useInputEditorSchema;
|
|
58
58
|
}
|
|
59
59
|
});
|
|
60
|
+
Object.defineProperty(exports, "usePrimeInputs", {
|
|
61
|
+
enumerable: true,
|
|
62
|
+
get: function () {
|
|
63
|
+
return _composables.usePrimeInputs;
|
|
64
|
+
}
|
|
65
|
+
});
|
|
60
66
|
var _components = require("./components");
|
|
61
67
|
var _composables = require("./composables");
|
|
62
68
|
var _definitions = require("./definitions");
|
package/dist/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FormKitDataDebug, FormKitDataEdit, FormKitDataView } from "./components/index.mjs";
|
|
2
|
-
import { useFormKitRepeater, useFormKitSchema, useInputEditor, useInputEditorSchema } from "./composables/index.mjs";
|
|
2
|
+
import { useFormKitRepeater, useFormKitSchema, useInputEditor, useInputEditorSchema, usePrimeInputs } from "./composables/index.mjs";
|
|
3
3
|
import { primeInputs, primeOutputs } from "./definitions/index.mjs";
|
|
4
4
|
export {
|
|
5
5
|
FormKitDataDebug,
|
|
@@ -10,5 +10,6 @@ export {
|
|
|
10
10
|
useFormKitRepeater,
|
|
11
11
|
useFormKitSchema,
|
|
12
12
|
useInputEditor,
|
|
13
|
-
useInputEditorSchema
|
|
13
|
+
useInputEditorSchema,
|
|
14
|
+
usePrimeInputs
|
|
14
15
|
};
|
package/package.json
CHANGED