@timeax/form-palette 0.0.7 → 0.0.8
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/adapters.d.mts +45 -15
- package/dist/adapters.d.ts +45 -15
- package/dist/adapters.js +1 -1
- package/dist/adapters.js.map +1 -1
- package/dist/adapters.mjs +1 -1
- package/dist/adapters.mjs.map +1 -1
- package/dist/index.d.mts +12 -15
- package/dist/index.d.ts +12 -15
- package/dist/index.js +70 -18
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +70 -18
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/adapters.mjs
CHANGED
|
@@ -13119,7 +13119,7 @@ function normalizeInertiaError(raw) {
|
|
|
13119
13119
|
return raw;
|
|
13120
13120
|
}
|
|
13121
13121
|
var createInertiaAdapter = (config3) => {
|
|
13122
|
-
const { method, url, data, callbacks } = config3;
|
|
13122
|
+
const { method = "post", url, data, callbacks } = config3;
|
|
13123
13123
|
const upperMethod = method.toUpperCase();
|
|
13124
13124
|
function buildOptions(resolve, reject, extraOptions) {
|
|
13125
13125
|
const merged = {
|