@atomsolution/sdk-merchant 1.4.1 → 1.5.2
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/assets/locales/en/file.json.d.ts +3 -1
- package/dist/assets/locales/en/merchant-batch-create-form.json.d.ts +3 -1
- package/dist/assets/locales/vi/file.json.d.ts +3 -1
- package/dist/assets/locales/vi/merchant-batch-create-form.json.d.ts +3 -1
- package/dist/batch-product-creation/components/merchant-batch-create-form/file-upload-tab.d.ts +6 -1
- package/dist/batch-product-creation/components/merchant-batch-create-form/index.d.ts +6 -1
- package/dist/batch-product-creation/components/merchant-batch-create-form/merge-and-check-data.d.ts +5 -1
- package/dist/batch-product-creation/components/merchant-batch-create-form/modals/create-product-confirm-modal.d.ts +3 -1
- package/dist/batch-product-creation/components/merchant-batch-create-form/modals/update-product-modal/index.d.ts +2 -1
- package/dist/batch-product-creation/components/merchant-batch-create-form/product-info-preview/index.d.ts +5 -1
- package/dist/batch-product-creation/components/merchant-batch-create-form/product-info-preview/product-preview-table/index.d.ts +2 -2
- package/dist/batch-product-creation/store/use-upload-store.d.ts +3 -1
- package/dist/batch-product-creation/types/product-info-preview.d.ts +32 -3
- package/dist/batch-product-creation.cjs +700 -541
- package/dist/batch-product-creation.cjs.map +1 -1
- package/dist/batch-product-creation.esm.js +701 -542
- package/dist/batch-product-creation.esm.js.map +1 -1
- package/dist/batch-product-creation.js +701 -542
- package/dist/batch-product-creation.js.map +1 -1
- package/dist/components/MerchantBatchCreateForm/index.d.ts +6 -0
- package/dist/digistore.cjs +1 -1
- package/dist/digistore.esm.js +1 -1
- package/dist/digistore.js +1 -1
- package/dist/{dropdownMenuAbsolute-BKV3mzgE.cjs → dropdownMenuAbsolute-89gAGgGd.cjs} +2 -2
- package/dist/{dropdownMenuAbsolute-BKV3mzgE.cjs.map → dropdownMenuAbsolute-89gAGgGd.cjs.map} +1 -1
- package/dist/{dropdownMenuAbsolute-BreOsoPt.js → dropdownMenuAbsolute-Dw7Pk9Ke.js} +2 -2
- package/dist/{dropdownMenuAbsolute-BreOsoPt.js.map → dropdownMenuAbsolute-Dw7Pk9Ke.js.map} +1 -1
- package/dist/{index.esm-DPmk5fdS.js → index.esm-CW4gWR7r.js} +3 -3
- package/dist/{index.esm-DPmk5fdS.js.map → index.esm-CW4gWR7r.js.map} +1 -1
- package/dist/merchant-profile.cjs +2 -2
- package/dist/merchant-profile.esm.js +2 -2
- package/dist/merchant-profile.js +2 -2
- package/dist/permission/index.d.ts +1 -1
- package/dist/permission.cjs +65 -0
- package/dist/permission.cjs.map +1 -1
- package/dist/permission.esm.js +66 -1
- package/dist/permission.esm.js.map +1 -1
- package/dist/permission.js +66 -1
- package/dist/permission.js.map +1 -1
- package/dist/style.css +4 -0
- package/dist/{use-translation-Df6YK55O.js → use-translation-DoUEE54r.js} +17 -5
- package/dist/{use-translation-Df6YK55O.js.map → use-translation-DoUEE54r.js.map} +1 -1
- package/dist/{use-translation-OSujcs4v.cjs → use-translation-T0TNDEqs.cjs} +17 -5
- package/dist/{use-translation-OSujcs4v.cjs.map → use-translation-T0TNDEqs.cjs.map} +1 -1
- package/dist/utils/translations.d.ts +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
type MerchantBatchCreateFormProps = {
|
|
2
|
+
taxDeductionMethod?: "direct" | "credit";
|
|
3
|
+
directTax?: number;
|
|
4
|
+
};
|
|
5
|
+
export declare const MerchantBatchCreateForm: ({ taxDeductionMethod, directTax, }: MerchantBatchCreateFormProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export {};
|
package/dist/digistore.cjs
CHANGED
|
@@ -22,7 +22,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
22
22
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
23
23
|
const jsxRuntime = require("./jsx-runtime-DV8UmLi4.cjs");
|
|
24
24
|
const React = require("react");
|
|
25
|
-
const useTranslation = require("./use-translation-
|
|
25
|
+
const useTranslation = require("./use-translation-T0TNDEqs.cjs");
|
|
26
26
|
const index = require("./index-Ozgk-K52.cjs");
|
|
27
27
|
const axios = require("axios");
|
|
28
28
|
const EyeIcon = ({ className }) => /* @__PURE__ */ jsxRuntime.jsxRuntimeExports.jsxs(
|
package/dist/digistore.esm.js
CHANGED
|
@@ -20,7 +20,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
20
20
|
};
|
|
21
21
|
import { j as jsxRuntimeExports } from "./jsx-runtime-ClP9nxnW.js";
|
|
22
22
|
import { useState, useMemo, useCallback } from "react";
|
|
23
|
-
import { u as useTranslation } from "./use-translation-
|
|
23
|
+
import { u as useTranslation } from "./use-translation-DoUEE54r.js";
|
|
24
24
|
import { C as CustomToast } from "./index-ChOpfqCh.js";
|
|
25
25
|
import axios from "axios";
|
|
26
26
|
const EyeIcon = ({ className }) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
package/dist/digistore.js
CHANGED
|
@@ -20,7 +20,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
20
20
|
};
|
|
21
21
|
import { j as jsxRuntimeExports } from "./jsx-runtime-ClP9nxnW.js";
|
|
22
22
|
import { useState, useMemo, useCallback } from "react";
|
|
23
|
-
import { u as useTranslation } from "./use-translation-
|
|
23
|
+
import { u as useTranslation } from "./use-translation-DoUEE54r.js";
|
|
24
24
|
import { C as CustomToast } from "./index-ChOpfqCh.js";
|
|
25
25
|
import axios from "axios";
|
|
26
26
|
const EyeIcon = ({ className }) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
@@ -32,7 +32,7 @@ var __objRest = (source, exclude) => {
|
|
|
32
32
|
};
|
|
33
33
|
const jsxRuntime = require("./jsx-runtime-DV8UmLi4.cjs");
|
|
34
34
|
const React = require("react");
|
|
35
|
-
const useTranslation = require("./use-translation-
|
|
35
|
+
const useTranslation = require("./use-translation-T0TNDEqs.cjs");
|
|
36
36
|
const ReactDOM = require("react-dom");
|
|
37
37
|
var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {};
|
|
38
38
|
function getDefaultExportFromCjs(x) {
|
|
@@ -3840,4 +3840,4 @@ exports.commonjsRequire = commonjsRequire;
|
|
|
3840
3840
|
exports.getDefaultExportFromCjs = getDefaultExportFromCjs;
|
|
3841
3841
|
exports.twMerge = twMerge;
|
|
3842
3842
|
exports.useMediaQuery = useMediaQuery;
|
|
3843
|
-
//# sourceMappingURL=dropdownMenuAbsolute-
|
|
3843
|
+
//# sourceMappingURL=dropdownMenuAbsolute-89gAGgGd.cjs.map
|