@voyantjs/pricing-ui 0.26.0 → 0.26.1
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/components/cancellation-policy-combobox.js +1 -1
- package/dist/components/cancellation-policy-rule-dialog.js +1 -1
- package/dist/components/dropoff-price-rule-dialog.js +2 -2
- package/dist/components/extra-price-rule-dialog.js +2 -2
- package/dist/components/option-price-rule-combobox.js +1 -1
- package/dist/components/option-price-rule-dialog.js +6 -6
- package/dist/components/option-start-time-rule-dialog.js +2 -2
- package/dist/components/option-unit-price-rule-dialog.js +3 -3
- package/dist/components/option-unit-tier-dialog.js +1 -1
- package/dist/components/pickup-price-rule-dialog.js +2 -2
- package/dist/components/price-catalog-combobox.js +1 -1
- package/dist/components/price-schedule-combobox.js +1 -1
- package/dist/components/price-schedule-dialog.js +2 -2
- package/dist/components/pricing-category-combobox.js +1 -1
- package/dist/components/pricing-category-dependency-dialog.js +2 -2
- package/dist/components/pricing-category-dependency-form.js +2 -2
- package/dist/components/pricing-category-dialog.js +2 -2
- package/dist/components/pricing-category-form.js +1 -1
- package/dist/components/pricing-category-list.js +2 -2
- package/dist/components/product-combobox.js +1 -1
- package/dist/components/product-option-combobox.js +1 -1
- package/dist/i18n/index.d.ts +4 -4
- package/dist/i18n/index.d.ts.map +1 -1
- package/dist/i18n/index.js +3 -3
- package/dist/i18n/provider.d.ts +1 -1
- package/dist/i18n/provider.d.ts.map +1 -1
- package/dist/i18n/provider.js +2 -2
- package/dist/index.d.ts +24 -24
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +23 -23
- package/package.json +9 -9
|
@@ -2,7 +2,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import { useCancellationPolicies, useCancellationPolicy, } from "@voyantjs/pricing-react";
|
|
3
3
|
import { Combobox, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxInput, ComboboxItem, ComboboxList, } from "@voyantjs/ui/components/combobox";
|
|
4
4
|
import * as React from "react";
|
|
5
|
-
import { usePricingUiMessagesOrDefault } from "../i18n/provider";
|
|
5
|
+
import { usePricingUiMessagesOrDefault } from "../i18n/provider.js";
|
|
6
6
|
const PAGE_SIZE = 25;
|
|
7
7
|
export function CancellationPolicyCombobox({ value, onChange, placeholder, disabled }) {
|
|
8
8
|
const messages = usePricingUiMessagesOrDefault();
|
|
@@ -7,7 +7,7 @@ import { Loader2 } from "lucide-react";
|
|
|
7
7
|
import { useEffect } from "react";
|
|
8
8
|
import { useForm } from "react-hook-form";
|
|
9
9
|
import { z } from "zod/v4";
|
|
10
|
-
import { usePricingUiMessagesOrDefault } from "../i18n/provider";
|
|
10
|
+
import { usePricingUiMessagesOrDefault } from "../i18n/provider.js";
|
|
11
11
|
function createRuleFormSchema(_messages) {
|
|
12
12
|
return z.object({
|
|
13
13
|
sortOrder: z.coerce.number().int(),
|
|
@@ -7,8 +7,8 @@ import { Loader2 } from "lucide-react";
|
|
|
7
7
|
import { useEffect } from "react";
|
|
8
8
|
import { useForm } from "react-hook-form";
|
|
9
9
|
import { z } from "zod/v4";
|
|
10
|
-
import { usePricingUiMessagesOrDefault } from "../i18n/provider";
|
|
11
|
-
import { OptionPriceRuleCombobox } from "./option-price-rule-combobox";
|
|
10
|
+
import { usePricingUiMessagesOrDefault } from "../i18n/provider.js";
|
|
11
|
+
import { OptionPriceRuleCombobox } from "./option-price-rule-combobox.js";
|
|
12
12
|
const ADDON_PRICING_MODES = [
|
|
13
13
|
"included",
|
|
14
14
|
"per_person",
|
|
@@ -7,8 +7,8 @@ import { Loader2 } from "lucide-react";
|
|
|
7
7
|
import { useEffect } from "react";
|
|
8
8
|
import { useForm } from "react-hook-form";
|
|
9
9
|
import { z } from "zod/v4";
|
|
10
|
-
import { usePricingUiMessagesOrDefault } from "../i18n/provider";
|
|
11
|
-
import { OptionPriceRuleCombobox } from "./option-price-rule-combobox";
|
|
10
|
+
import { usePricingUiMessagesOrDefault } from "../i18n/provider.js";
|
|
11
|
+
import { OptionPriceRuleCombobox } from "./option-price-rule-combobox.js";
|
|
12
12
|
const ADDON_PRICING_MODES = [
|
|
13
13
|
"included",
|
|
14
14
|
"per_person",
|
|
@@ -2,7 +2,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import { useOptionPriceRule, useOptionPriceRules, } from "@voyantjs/pricing-react";
|
|
3
3
|
import { Combobox, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxInput, ComboboxItem, ComboboxList, } from "@voyantjs/ui/components/combobox";
|
|
4
4
|
import * as React from "react";
|
|
5
|
-
import { usePricingUiMessagesOrDefault } from "../i18n/provider";
|
|
5
|
+
import { usePricingUiMessagesOrDefault } from "../i18n/provider.js";
|
|
6
6
|
const PAGE_SIZE = 25;
|
|
7
7
|
export function OptionPriceRuleCombobox({ value, onChange, placeholder, disabled }) {
|
|
8
8
|
const messages = usePricingUiMessagesOrDefault();
|
|
@@ -7,12 +7,12 @@ import { Loader2 } from "lucide-react";
|
|
|
7
7
|
import { useEffect } from "react";
|
|
8
8
|
import { useForm } from "react-hook-form";
|
|
9
9
|
import { z } from "zod/v4";
|
|
10
|
-
import { usePricingUiMessagesOrDefault } from "../i18n/provider";
|
|
11
|
-
import { CancellationPolicyCombobox } from "./cancellation-policy-combobox";
|
|
12
|
-
import { PriceCatalogCombobox } from "./price-catalog-combobox";
|
|
13
|
-
import { PriceScheduleCombobox } from "./price-schedule-combobox";
|
|
14
|
-
import { ProductCombobox } from "./product-combobox";
|
|
15
|
-
import { ProductOptionCombobox } from "./product-option-combobox";
|
|
10
|
+
import { usePricingUiMessagesOrDefault } from "../i18n/provider.js";
|
|
11
|
+
import { CancellationPolicyCombobox } from "./cancellation-policy-combobox.js";
|
|
12
|
+
import { PriceCatalogCombobox } from "./price-catalog-combobox.js";
|
|
13
|
+
import { PriceScheduleCombobox } from "./price-schedule-combobox.js";
|
|
14
|
+
import { ProductCombobox } from "./product-combobox.js";
|
|
15
|
+
import { ProductOptionCombobox } from "./product-option-combobox.js";
|
|
16
16
|
const PRICING_MODES = ["per_person", "per_booking", "starting_from", "free", "on_request"];
|
|
17
17
|
function createFormSchema(messages) {
|
|
18
18
|
return z.object({
|
|
@@ -7,8 +7,8 @@ import { Loader2 } from "lucide-react";
|
|
|
7
7
|
import { useEffect } from "react";
|
|
8
8
|
import { useForm } from "react-hook-form";
|
|
9
9
|
import { z } from "zod/v4";
|
|
10
|
-
import { usePricingUiMessagesOrDefault } from "../i18n/provider";
|
|
11
|
-
import { OptionPriceRuleCombobox } from "./option-price-rule-combobox";
|
|
10
|
+
import { usePricingUiMessagesOrDefault } from "../i18n/provider.js";
|
|
11
|
+
import { OptionPriceRuleCombobox } from "./option-price-rule-combobox.js";
|
|
12
12
|
const RULE_MODES = ["included", "excluded", "override", "adjustment"];
|
|
13
13
|
const ADJUSTMENT_TYPES = ["fixed", "percentage"];
|
|
14
14
|
function createFormSchema(messages) {
|
|
@@ -7,9 +7,9 @@ import { Loader2 } from "lucide-react";
|
|
|
7
7
|
import { useEffect } from "react";
|
|
8
8
|
import { useForm } from "react-hook-form";
|
|
9
9
|
import { z } from "zod/v4";
|
|
10
|
-
import { usePricingUiMessagesOrDefault } from "../i18n/provider";
|
|
11
|
-
import { OptionPriceRuleCombobox } from "./option-price-rule-combobox";
|
|
12
|
-
import { PricingCategoryCombobox } from "./pricing-category-combobox";
|
|
10
|
+
import { usePricingUiMessagesOrDefault } from "../i18n/provider.js";
|
|
11
|
+
import { OptionPriceRuleCombobox } from "./option-price-rule-combobox.js";
|
|
12
|
+
import { PricingCategoryCombobox } from "./pricing-category-combobox.js";
|
|
13
13
|
const PRICING_MODES = [
|
|
14
14
|
"per_unit",
|
|
15
15
|
"per_person",
|
|
@@ -7,7 +7,7 @@ import { Loader2 } from "lucide-react";
|
|
|
7
7
|
import { useEffect } from "react";
|
|
8
8
|
import { useForm } from "react-hook-form";
|
|
9
9
|
import { z } from "zod/v4";
|
|
10
|
-
import { usePricingUiMessagesOrDefault } from "../i18n/provider";
|
|
10
|
+
import { usePricingUiMessagesOrDefault } from "../i18n/provider.js";
|
|
11
11
|
function createFormSchema(messages) {
|
|
12
12
|
return z.object({
|
|
13
13
|
optionUnitPriceRuleId: z
|
|
@@ -7,8 +7,8 @@ import { Loader2 } from "lucide-react";
|
|
|
7
7
|
import { useEffect } from "react";
|
|
8
8
|
import { useForm } from "react-hook-form";
|
|
9
9
|
import { z } from "zod/v4";
|
|
10
|
-
import { usePricingUiMessagesOrDefault } from "../i18n/provider";
|
|
11
|
-
import { OptionPriceRuleCombobox } from "./option-price-rule-combobox";
|
|
10
|
+
import { usePricingUiMessagesOrDefault } from "../i18n/provider.js";
|
|
11
|
+
import { OptionPriceRuleCombobox } from "./option-price-rule-combobox.js";
|
|
12
12
|
const ADDON_PRICING_MODES = [
|
|
13
13
|
"included",
|
|
14
14
|
"per_person",
|
|
@@ -2,7 +2,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import { usePriceCatalog, usePriceCatalogs } from "@voyantjs/pricing-react";
|
|
3
3
|
import { Combobox, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxInput, ComboboxItem, ComboboxList, } from "@voyantjs/ui/components/combobox";
|
|
4
4
|
import * as React from "react";
|
|
5
|
-
import { usePricingUiMessagesOrDefault } from "../i18n/provider";
|
|
5
|
+
import { usePricingUiMessagesOrDefault } from "../i18n/provider.js";
|
|
6
6
|
const PAGE_SIZE = 25;
|
|
7
7
|
export function PriceCatalogCombobox({ value, onChange, placeholder, disabled }) {
|
|
8
8
|
const messages = usePricingUiMessagesOrDefault();
|
|
@@ -2,7 +2,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import { usePriceSchedule, usePriceSchedules, } from "@voyantjs/pricing-react";
|
|
3
3
|
import { Combobox, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxInput, ComboboxItem, ComboboxList, } from "@voyantjs/ui/components/combobox";
|
|
4
4
|
import * as React from "react";
|
|
5
|
-
import { usePricingUiMessagesOrDefault } from "../i18n/provider";
|
|
5
|
+
import { usePricingUiMessagesOrDefault } from "../i18n/provider.js";
|
|
6
6
|
const PAGE_SIZE = 25;
|
|
7
7
|
export function PriceScheduleCombobox({ priceCatalogId, value, onChange, placeholder, disabled, }) {
|
|
8
8
|
const messages = usePricingUiMessagesOrDefault();
|
|
@@ -8,8 +8,8 @@ import { Loader2 } from "lucide-react";
|
|
|
8
8
|
import { useEffect } from "react";
|
|
9
9
|
import { useForm } from "react-hook-form";
|
|
10
10
|
import { z } from "zod/v4";
|
|
11
|
-
import { usePricingUiMessagesOrDefault } from "../i18n/provider";
|
|
12
|
-
import { PriceCatalogCombobox } from "./price-catalog-combobox";
|
|
11
|
+
import { usePricingUiMessagesOrDefault } from "../i18n/provider.js";
|
|
12
|
+
import { PriceCatalogCombobox } from "./price-catalog-combobox.js";
|
|
13
13
|
function createScheduleFormSchema(messages) {
|
|
14
14
|
return z.object({
|
|
15
15
|
priceCatalogId: z.string().min(1, messages.priceScheduleDialog.validation.catalogRequired),
|
|
@@ -3,7 +3,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
3
3
|
import { usePricingCategories } from "@voyantjs/pricing-react";
|
|
4
4
|
import { Combobox, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxInput, ComboboxItem, ComboboxList, } from "@voyantjs/ui/components/combobox";
|
|
5
5
|
import * as React from "react";
|
|
6
|
-
import { usePricingUiMessagesOrDefault } from "../i18n/provider";
|
|
6
|
+
import { usePricingUiMessagesOrDefault } from "../i18n/provider.js";
|
|
7
7
|
const PAGE_SIZE = 25;
|
|
8
8
|
export function PricingCategoryCombobox({ value, onChange, placeholder, disabled, }) {
|
|
9
9
|
const messages = usePricingUiMessagesOrDefault();
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
3
|
import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, } from "@voyantjs/ui/components/dialog";
|
|
4
|
-
import { usePricingUiMessagesOrDefault } from "../i18n/provider";
|
|
5
|
-
import { PricingCategoryDependencyForm } from "./pricing-category-dependency-form";
|
|
4
|
+
import { usePricingUiMessagesOrDefault } from "../i18n/provider.js";
|
|
5
|
+
import { PricingCategoryDependencyForm } from "./pricing-category-dependency-form.js";
|
|
6
6
|
export function PricingCategoryDependencyDialog({ open, onOpenChange, dependency, onSuccess, }) {
|
|
7
7
|
const isEdit = Boolean(dependency);
|
|
8
8
|
const messages = usePricingUiMessagesOrDefault();
|
|
@@ -9,8 +9,8 @@ import { Switch } from "@voyantjs/ui/components/switch";
|
|
|
9
9
|
import { Textarea } from "@voyantjs/ui/components/textarea";
|
|
10
10
|
import { Loader2 } from "lucide-react";
|
|
11
11
|
import * as React from "react";
|
|
12
|
-
import { usePricingUiMessagesOrDefault } from "../i18n/provider";
|
|
13
|
-
import { PricingCategoryCombobox } from "./pricing-category-combobox";
|
|
12
|
+
import { usePricingUiMessagesOrDefault } from "../i18n/provider.js";
|
|
13
|
+
import { PricingCategoryCombobox } from "./pricing-category-combobox.js";
|
|
14
14
|
const DEPENDENCY_TYPES = [
|
|
15
15
|
{ value: "requires" },
|
|
16
16
|
{ value: "limits_per_master" },
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
3
|
import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, } from "@voyantjs/ui/components/dialog";
|
|
4
|
-
import { usePricingUiMessagesOrDefault } from "../i18n/provider";
|
|
5
|
-
import { PricingCategoryForm } from "./pricing-category-form";
|
|
4
|
+
import { usePricingUiMessagesOrDefault } from "../i18n/provider.js";
|
|
5
|
+
import { PricingCategoryForm } from "./pricing-category-form.js";
|
|
6
6
|
export function PricingCategoryDialog({ open, onOpenChange, category, onSuccess, }) {
|
|
7
7
|
const isEdit = Boolean(category);
|
|
8
8
|
const messages = usePricingUiMessagesOrDefault();
|
|
@@ -8,7 +8,7 @@ import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "
|
|
|
8
8
|
import { Switch } from "@voyantjs/ui/components/switch";
|
|
9
9
|
import { Loader2 } from "lucide-react";
|
|
10
10
|
import * as React from "react";
|
|
11
|
-
import { usePricingUiMessagesOrDefault } from "../i18n/provider";
|
|
11
|
+
import { usePricingUiMessagesOrDefault } from "../i18n/provider.js";
|
|
12
12
|
const CATEGORY_TYPES = [
|
|
13
13
|
{ value: "adult" },
|
|
14
14
|
{ value: "child" },
|
|
@@ -8,8 +8,8 @@ import { Input } from "@voyantjs/ui/components/input";
|
|
|
8
8
|
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow, } from "@voyantjs/ui/components/table";
|
|
9
9
|
import { Loader2, MoreHorizontal, Pencil, Plus, Search, Trash2 } from "lucide-react";
|
|
10
10
|
import * as React from "react";
|
|
11
|
-
import { usePricingUiMessagesOrDefault } from "../i18n/provider";
|
|
12
|
-
import { PricingCategoryDialog } from "./pricing-category-dialog";
|
|
11
|
+
import { usePricingUiMessagesOrDefault } from "../i18n/provider.js";
|
|
12
|
+
import { PricingCategoryDialog } from "./pricing-category-dialog.js";
|
|
13
13
|
export function PricingCategoryList({ pageSize = 25 } = {}) {
|
|
14
14
|
const messages = usePricingUiMessagesOrDefault();
|
|
15
15
|
const [dialogOpen, setDialogOpen] = React.useState(false);
|
|
@@ -2,7 +2,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import { useProduct, useProducts } from "@voyantjs/products-react";
|
|
3
3
|
import { Combobox, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxInput, ComboboxItem, ComboboxList, } from "@voyantjs/ui/components/combobox";
|
|
4
4
|
import * as React from "react";
|
|
5
|
-
import { usePricingUiMessagesOrDefault } from "../i18n/provider";
|
|
5
|
+
import { usePricingUiMessagesOrDefault } from "../i18n/provider.js";
|
|
6
6
|
const PAGE_SIZE = 25;
|
|
7
7
|
export function ProductCombobox({ value, onChange, placeholder, disabled }) {
|
|
8
8
|
const messages = usePricingUiMessagesOrDefault();
|
|
@@ -2,7 +2,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import { useProductOption, useProductOptions, } from "@voyantjs/products-react";
|
|
3
3
|
import { Combobox, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxInput, ComboboxItem, ComboboxList, } from "@voyantjs/ui/components/combobox";
|
|
4
4
|
import * as React from "react";
|
|
5
|
-
import { usePricingUiMessagesOrDefault } from "../i18n/provider";
|
|
5
|
+
import { usePricingUiMessagesOrDefault } from "../i18n/provider.js";
|
|
6
6
|
const PAGE_SIZE = 100;
|
|
7
7
|
export function ProductOptionCombobox({ productId, value, onChange, placeholder, disabled, }) {
|
|
8
8
|
const messages = usePricingUiMessagesOrDefault();
|
package/dist/i18n/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { pricingUiEn } from "./en";
|
|
2
|
-
export type { AddonPricingMode, AdjustmentType, ChargeType, OptionPriceRulePricingMode, PricingCategoryType, PricingDependencyType, PricingUiMessages, StartTimeRuleMode, UnitPricingMode, } from "./messages";
|
|
3
|
-
export { getPricingUiI18n, type PricingUiMessageOverrides, PricingUiMessagesProvider, pricingUiMessageDefinitions, resolvePricingUiMessages, usePricingUiI18n, usePricingUiI18nOrDefault, usePricingUiMessages, usePricingUiMessagesOrDefault, } from "./provider";
|
|
4
|
-
export { pricingUiRo } from "./ro";
|
|
1
|
+
export { pricingUiEn } from "./en.js";
|
|
2
|
+
export type { AddonPricingMode, AdjustmentType, ChargeType, OptionPriceRulePricingMode, PricingCategoryType, PricingDependencyType, PricingUiMessages, StartTimeRuleMode, UnitPricingMode, } from "./messages.js";
|
|
3
|
+
export { getPricingUiI18n, type PricingUiMessageOverrides, PricingUiMessagesProvider, pricingUiMessageDefinitions, resolvePricingUiMessages, usePricingUiI18n, usePricingUiI18nOrDefault, usePricingUiMessages, usePricingUiMessagesOrDefault, } from "./provider.js";
|
|
4
|
+
export { pricingUiRo } from "./ro.js";
|
|
5
5
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/i18n/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/i18n/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/i18n/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AACrC,YAAY,EACV,gBAAgB,EAChB,cAAc,EACd,UAAU,EACV,0BAA0B,EAC1B,mBAAmB,EACnB,qBAAqB,EACrB,iBAAiB,EACjB,iBAAiB,EACjB,eAAe,GAChB,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,gBAAgB,EAChB,KAAK,yBAAyB,EAC9B,yBAAyB,EACzB,2BAA2B,EAC3B,wBAAwB,EACxB,gBAAgB,EAChB,yBAAyB,EACzB,oBAAoB,EACpB,6BAA6B,GAC9B,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA"}
|
package/dist/i18n/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { pricingUiEn } from "./en";
|
|
2
|
-
export { getPricingUiI18n, PricingUiMessagesProvider, pricingUiMessageDefinitions, resolvePricingUiMessages, usePricingUiI18n, usePricingUiI18nOrDefault, usePricingUiMessages, usePricingUiMessagesOrDefault, } from "./provider";
|
|
3
|
-
export { pricingUiRo } from "./ro";
|
|
1
|
+
export { pricingUiEn } from "./en.js";
|
|
2
|
+
export { getPricingUiI18n, PricingUiMessagesProvider, pricingUiMessageDefinitions, resolvePricingUiMessages, usePricingUiI18n, usePricingUiI18nOrDefault, usePricingUiMessages, usePricingUiMessagesOrDefault, } from "./provider.js";
|
|
3
|
+
export { pricingUiRo } from "./ro.js";
|
package/dist/i18n/provider.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type LocaleMessageOverrides, type PackageI18nValue } from "@voyantjs/i18n";
|
|
2
2
|
import type { ReactNode } from "react";
|
|
3
|
-
import type { PricingUiMessages } from "./messages";
|
|
3
|
+
import type { PricingUiMessages } from "./messages.js";
|
|
4
4
|
export declare const pricingUiMessageDefinitions: {
|
|
5
5
|
en: {
|
|
6
6
|
common: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"provider.d.ts","sourceRoot":"","sources":["../../src/i18n/provider.tsx"],"names":[],"mappings":"AAEA,OAAO,EAIL,KAAK,sBAAsB,EAC3B,KAAK,gBAAgB,EAEtB,MAAM,gBAAgB,CAAA;AACvB,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAGtC,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"provider.d.ts","sourceRoot":"","sources":["../../src/i18n/provider.tsx"],"names":[],"mappings":"AAEA,OAAO,EAIL,KAAK,sBAAsB,EAC3B,KAAK,gBAAgB,EAEtB,MAAM,gBAAgB,CAAA;AACvB,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAGtC,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAA;AAKtD,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGe,CAAA;AAEvD,MAAM,MAAM,yBAAyB,GAAG,sBAAsB,CAAC,iBAAiB,CAAC,CAAA;AASjF,wBAAgB,wBAAwB,CAAC,EACvC,MAAM,EACN,SAAS,GACV,EAAE;IACD,MAAM,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAA;IACjC,SAAS,CAAC,EAAE,yBAAyB,GAAG,IAAI,CAAA;CAC7C,qBAOA;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,MAAM,EACN,SAAS,GACV,EAAE;IACD,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAA;IAClC,SAAS,CAAC,EAAE,yBAAyB,GAAG,IAAI,CAAA;CAC7C,GAAG,gBAAgB,CAAC,iBAAiB,CAAC,CAStC;AAED,wBAAgB,yBAAyB,CAAC,EACxC,QAAQ,EACR,MAAM,EACN,SAAS,GACV,EAAE;IACD,QAAQ,EAAE,SAAS,CAAA;IACnB,MAAM,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAA;IACjC,SAAS,CAAC,EAAE,yBAAyB,GAAG,IAAI,CAAA;CAC7C,2CAWA;AAED,eAAO,MAAM,gBAAgB,2CAA2B,CAAA;AACxD,eAAO,MAAM,oBAAoB,yBAA+B,CAAA;AAEhE,wBAAgB,yBAAyB,wCAExC;AAED,wBAAgB,6BAA6B,sBAE5C"}
|
package/dist/i18n/provider.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
3
|
import { createLocaleFormatters, createPackageMessagesContext, resolvePackageMessages, } from "@voyantjs/i18n";
|
|
4
|
-
import { pricingUiEn } from "./en";
|
|
5
|
-
import { pricingUiRo } from "./ro";
|
|
4
|
+
import { pricingUiEn } from "./en.js";
|
|
5
|
+
import { pricingUiRo } from "./ro.js";
|
|
6
6
|
const fallbackLocale = "en";
|
|
7
7
|
export const pricingUiMessageDefinitions = {
|
|
8
8
|
en: pricingUiEn,
|
package/dist/index.d.ts
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
export { CancellationPolicyCombobox } from "./components/cancellation-policy-combobox";
|
|
2
|
-
export { CancellationPolicyRuleDialog, type CancellationPolicyRuleDialogProps, } from "./components/cancellation-policy-rule-dialog";
|
|
3
|
-
export { DropoffPriceRuleDialog } from "./components/dropoff-price-rule-dialog";
|
|
4
|
-
export { ExtraPriceRuleDialog } from "./components/extra-price-rule-dialog";
|
|
5
|
-
export { OptionPriceRuleCombobox } from "./components/option-price-rule-combobox";
|
|
6
|
-
export { OptionPriceRuleDialog, type OptionPriceRuleDialogProps, } from "./components/option-price-rule-dialog";
|
|
7
|
-
export { OptionStartTimeRuleDialog } from "./components/option-start-time-rule-dialog";
|
|
8
|
-
export { OptionUnitPriceRuleDialog } from "./components/option-unit-price-rule-dialog";
|
|
9
|
-
export { OptionUnitTierDialog } from "./components/option-unit-tier-dialog";
|
|
10
|
-
export { PickupPriceRuleDialog } from "./components/pickup-price-rule-dialog";
|
|
11
|
-
export { PriceCatalogCombobox } from "./components/price-catalog-combobox";
|
|
12
|
-
export { PriceScheduleCombobox } from "./components/price-schedule-combobox";
|
|
13
|
-
export { PriceScheduleDialog, type PriceScheduleDialogProps, } from "./components/price-schedule-dialog";
|
|
14
|
-
export { PricingCategoryCombobox } from "./components/pricing-category-combobox";
|
|
15
|
-
export { PricingCategoryDependencyDialog, type PricingCategoryDependencyDialogProps, } from "./components/pricing-category-dependency-dialog";
|
|
16
|
-
export { PricingCategoryDependencyForm, type PricingCategoryDependencyFormProps, } from "./components/pricing-category-dependency-form";
|
|
17
|
-
export { PricingCategoryDialog, type PricingCategoryDialogProps, } from "./components/pricing-category-dialog";
|
|
18
|
-
export { PricingCategoryForm, type PricingCategoryFormProps, } from "./components/pricing-category-form";
|
|
19
|
-
export { PricingCategoryList, type PricingCategoryListProps, } from "./components/pricing-category-list";
|
|
20
|
-
export { CancellationPolicyLabel, OptionPriceRuleLabel, PriceCatalogLabel, PriceScheduleLabel, PricingCategoryLabel, ProductLabel, ProductOptionLabel, } from "./components/pricing-shared-labels";
|
|
21
|
-
export { ProductCombobox } from "./components/product-combobox";
|
|
22
|
-
export { ProductOptionCombobox } from "./components/product-option-combobox";
|
|
23
|
-
export type { AddonPricingMode, AdjustmentType, ChargeType, OptionPriceRulePricingMode, PricingCategoryType, PricingDependencyType, PricingUiMessages, StartTimeRuleMode, UnitPricingMode, } from "./i18n";
|
|
24
|
-
export { getPricingUiI18n, type PricingUiMessageOverrides, PricingUiMessagesProvider, pricingUiEn, pricingUiMessageDefinitions, pricingUiRo, resolvePricingUiMessages, usePricingUiI18n, usePricingUiI18nOrDefault, usePricingUiMessages, usePricingUiMessagesOrDefault, } from "./i18n";
|
|
1
|
+
export { CancellationPolicyCombobox } from "./components/cancellation-policy-combobox.js";
|
|
2
|
+
export { CancellationPolicyRuleDialog, type CancellationPolicyRuleDialogProps, } from "./components/cancellation-policy-rule-dialog.js";
|
|
3
|
+
export { DropoffPriceRuleDialog } from "./components/dropoff-price-rule-dialog.js";
|
|
4
|
+
export { ExtraPriceRuleDialog } from "./components/extra-price-rule-dialog.js";
|
|
5
|
+
export { OptionPriceRuleCombobox } from "./components/option-price-rule-combobox.js";
|
|
6
|
+
export { OptionPriceRuleDialog, type OptionPriceRuleDialogProps, } from "./components/option-price-rule-dialog.js";
|
|
7
|
+
export { OptionStartTimeRuleDialog } from "./components/option-start-time-rule-dialog.js";
|
|
8
|
+
export { OptionUnitPriceRuleDialog } from "./components/option-unit-price-rule-dialog.js";
|
|
9
|
+
export { OptionUnitTierDialog } from "./components/option-unit-tier-dialog.js";
|
|
10
|
+
export { PickupPriceRuleDialog } from "./components/pickup-price-rule-dialog.js";
|
|
11
|
+
export { PriceCatalogCombobox } from "./components/price-catalog-combobox.js";
|
|
12
|
+
export { PriceScheduleCombobox } from "./components/price-schedule-combobox.js";
|
|
13
|
+
export { PriceScheduleDialog, type PriceScheduleDialogProps, } from "./components/price-schedule-dialog.js";
|
|
14
|
+
export { PricingCategoryCombobox } from "./components/pricing-category-combobox.js";
|
|
15
|
+
export { PricingCategoryDependencyDialog, type PricingCategoryDependencyDialogProps, } from "./components/pricing-category-dependency-dialog.js";
|
|
16
|
+
export { PricingCategoryDependencyForm, type PricingCategoryDependencyFormProps, } from "./components/pricing-category-dependency-form.js";
|
|
17
|
+
export { PricingCategoryDialog, type PricingCategoryDialogProps, } from "./components/pricing-category-dialog.js";
|
|
18
|
+
export { PricingCategoryForm, type PricingCategoryFormProps, } from "./components/pricing-category-form.js";
|
|
19
|
+
export { PricingCategoryList, type PricingCategoryListProps, } from "./components/pricing-category-list.js";
|
|
20
|
+
export { CancellationPolicyLabel, OptionPriceRuleLabel, PriceCatalogLabel, PriceScheduleLabel, PricingCategoryLabel, ProductLabel, ProductOptionLabel, } from "./components/pricing-shared-labels.js";
|
|
21
|
+
export { ProductCombobox } from "./components/product-combobox.js";
|
|
22
|
+
export { ProductOptionCombobox } from "./components/product-option-combobox.js";
|
|
23
|
+
export type { AddonPricingMode, AdjustmentType, ChargeType, OptionPriceRulePricingMode, PricingCategoryType, PricingDependencyType, PricingUiMessages, StartTimeRuleMode, UnitPricingMode, } from "./i18n/index.js";
|
|
24
|
+
export { getPricingUiI18n, type PricingUiMessageOverrides, PricingUiMessagesProvider, pricingUiEn, pricingUiMessageDefinitions, pricingUiRo, resolvePricingUiMessages, usePricingUiI18n, usePricingUiI18nOrDefault, usePricingUiMessages, usePricingUiMessagesOrDefault, } from "./i18n/index.js";
|
|
25
25
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,MAAM,8CAA8C,CAAA;AACzF,OAAO,EACL,4BAA4B,EAC5B,KAAK,iCAAiC,GACvC,MAAM,iDAAiD,CAAA;AACxD,OAAO,EAAE,sBAAsB,EAAE,MAAM,2CAA2C,CAAA;AAClF,OAAO,EAAE,oBAAoB,EAAE,MAAM,yCAAyC,CAAA;AAC9E,OAAO,EAAE,uBAAuB,EAAE,MAAM,4CAA4C,CAAA;AACpF,OAAO,EACL,qBAAqB,EACrB,KAAK,0BAA0B,GAChC,MAAM,0CAA0C,CAAA;AACjD,OAAO,EAAE,yBAAyB,EAAE,MAAM,+CAA+C,CAAA;AACzF,OAAO,EAAE,yBAAyB,EAAE,MAAM,+CAA+C,CAAA;AACzF,OAAO,EAAE,oBAAoB,EAAE,MAAM,yCAAyC,CAAA;AAC9E,OAAO,EAAE,qBAAqB,EAAE,MAAM,0CAA0C,CAAA;AAChF,OAAO,EAAE,oBAAoB,EAAE,MAAM,wCAAwC,CAAA;AAC7E,OAAO,EAAE,qBAAqB,EAAE,MAAM,yCAAyC,CAAA;AAC/E,OAAO,EACL,mBAAmB,EACnB,KAAK,wBAAwB,GAC9B,MAAM,uCAAuC,CAAA;AAC9C,OAAO,EAAE,uBAAuB,EAAE,MAAM,2CAA2C,CAAA;AACnF,OAAO,EACL,+BAA+B,EAC/B,KAAK,oCAAoC,GAC1C,MAAM,oDAAoD,CAAA;AAC3D,OAAO,EACL,6BAA6B,EAC7B,KAAK,kCAAkC,GACxC,MAAM,kDAAkD,CAAA;AACzD,OAAO,EACL,qBAAqB,EACrB,KAAK,0BAA0B,GAChC,MAAM,yCAAyC,CAAA;AAChD,OAAO,EACL,mBAAmB,EACnB,KAAK,wBAAwB,GAC9B,MAAM,uCAAuC,CAAA;AAC9C,OAAO,EACL,mBAAmB,EACnB,KAAK,wBAAwB,GAC9B,MAAM,uCAAuC,CAAA;AAC9C,OAAO,EACL,uBAAuB,EACvB,oBAAoB,EACpB,iBAAiB,EACjB,kBAAkB,EAClB,oBAAoB,EACpB,YAAY,EACZ,kBAAkB,GACnB,MAAM,uCAAuC,CAAA;AAC9C,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAA;AAClE,OAAO,EAAE,qBAAqB,EAAE,MAAM,yCAAyC,CAAA;AAC/E,YAAY,EACV,gBAAgB,EAChB,cAAc,EACd,UAAU,EACV,0BAA0B,EAC1B,mBAAmB,EACnB,qBAAqB,EACrB,iBAAiB,EACjB,iBAAiB,EACjB,eAAe,GAChB,MAAM,iBAAiB,CAAA;AACxB,OAAO,EACL,gBAAgB,EAChB,KAAK,yBAAyB,EAC9B,yBAAyB,EACzB,WAAW,EACX,2BAA2B,EAC3B,WAAW,EACX,wBAAwB,EACxB,gBAAgB,EAChB,yBAAyB,EACzB,oBAAoB,EACpB,6BAA6B,GAC9B,MAAM,iBAAiB,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
export { CancellationPolicyCombobox } from "./components/cancellation-policy-combobox";
|
|
2
|
-
export { CancellationPolicyRuleDialog, } from "./components/cancellation-policy-rule-dialog";
|
|
3
|
-
export { DropoffPriceRuleDialog } from "./components/dropoff-price-rule-dialog";
|
|
4
|
-
export { ExtraPriceRuleDialog } from "./components/extra-price-rule-dialog";
|
|
5
|
-
export { OptionPriceRuleCombobox } from "./components/option-price-rule-combobox";
|
|
6
|
-
export { OptionPriceRuleDialog, } from "./components/option-price-rule-dialog";
|
|
7
|
-
export { OptionStartTimeRuleDialog } from "./components/option-start-time-rule-dialog";
|
|
8
|
-
export { OptionUnitPriceRuleDialog } from "./components/option-unit-price-rule-dialog";
|
|
9
|
-
export { OptionUnitTierDialog } from "./components/option-unit-tier-dialog";
|
|
10
|
-
export { PickupPriceRuleDialog } from "./components/pickup-price-rule-dialog";
|
|
11
|
-
export { PriceCatalogCombobox } from "./components/price-catalog-combobox";
|
|
12
|
-
export { PriceScheduleCombobox } from "./components/price-schedule-combobox";
|
|
13
|
-
export { PriceScheduleDialog, } from "./components/price-schedule-dialog";
|
|
14
|
-
export { PricingCategoryCombobox } from "./components/pricing-category-combobox";
|
|
15
|
-
export { PricingCategoryDependencyDialog, } from "./components/pricing-category-dependency-dialog";
|
|
16
|
-
export { PricingCategoryDependencyForm, } from "./components/pricing-category-dependency-form";
|
|
17
|
-
export { PricingCategoryDialog, } from "./components/pricing-category-dialog";
|
|
18
|
-
export { PricingCategoryForm, } from "./components/pricing-category-form";
|
|
19
|
-
export { PricingCategoryList, } from "./components/pricing-category-list";
|
|
20
|
-
export { CancellationPolicyLabel, OptionPriceRuleLabel, PriceCatalogLabel, PriceScheduleLabel, PricingCategoryLabel, ProductLabel, ProductOptionLabel, } from "./components/pricing-shared-labels";
|
|
21
|
-
export { ProductCombobox } from "./components/product-combobox";
|
|
22
|
-
export { ProductOptionCombobox } from "./components/product-option-combobox";
|
|
23
|
-
export { getPricingUiI18n, PricingUiMessagesProvider, pricingUiEn, pricingUiMessageDefinitions, pricingUiRo, resolvePricingUiMessages, usePricingUiI18n, usePricingUiI18nOrDefault, usePricingUiMessages, usePricingUiMessagesOrDefault, } from "./i18n";
|
|
1
|
+
export { CancellationPolicyCombobox } from "./components/cancellation-policy-combobox.js";
|
|
2
|
+
export { CancellationPolicyRuleDialog, } from "./components/cancellation-policy-rule-dialog.js";
|
|
3
|
+
export { DropoffPriceRuleDialog } from "./components/dropoff-price-rule-dialog.js";
|
|
4
|
+
export { ExtraPriceRuleDialog } from "./components/extra-price-rule-dialog.js";
|
|
5
|
+
export { OptionPriceRuleCombobox } from "./components/option-price-rule-combobox.js";
|
|
6
|
+
export { OptionPriceRuleDialog, } from "./components/option-price-rule-dialog.js";
|
|
7
|
+
export { OptionStartTimeRuleDialog } from "./components/option-start-time-rule-dialog.js";
|
|
8
|
+
export { OptionUnitPriceRuleDialog } from "./components/option-unit-price-rule-dialog.js";
|
|
9
|
+
export { OptionUnitTierDialog } from "./components/option-unit-tier-dialog.js";
|
|
10
|
+
export { PickupPriceRuleDialog } from "./components/pickup-price-rule-dialog.js";
|
|
11
|
+
export { PriceCatalogCombobox } from "./components/price-catalog-combobox.js";
|
|
12
|
+
export { PriceScheduleCombobox } from "./components/price-schedule-combobox.js";
|
|
13
|
+
export { PriceScheduleDialog, } from "./components/price-schedule-dialog.js";
|
|
14
|
+
export { PricingCategoryCombobox } from "./components/pricing-category-combobox.js";
|
|
15
|
+
export { PricingCategoryDependencyDialog, } from "./components/pricing-category-dependency-dialog.js";
|
|
16
|
+
export { PricingCategoryDependencyForm, } from "./components/pricing-category-dependency-form.js";
|
|
17
|
+
export { PricingCategoryDialog, } from "./components/pricing-category-dialog.js";
|
|
18
|
+
export { PricingCategoryForm, } from "./components/pricing-category-form.js";
|
|
19
|
+
export { PricingCategoryList, } from "./components/pricing-category-list.js";
|
|
20
|
+
export { CancellationPolicyLabel, OptionPriceRuleLabel, PriceCatalogLabel, PriceScheduleLabel, PricingCategoryLabel, ProductLabel, ProductOptionLabel, } from "./components/pricing-shared-labels.js";
|
|
21
|
+
export { ProductCombobox } from "./components/product-combobox.js";
|
|
22
|
+
export { ProductOptionCombobox } from "./components/product-option-combobox.js";
|
|
23
|
+
export { getPricingUiI18n, PricingUiMessagesProvider, pricingUiEn, pricingUiMessageDefinitions, pricingUiRo, resolvePricingUiMessages, usePricingUiI18n, usePricingUiI18nOrDefault, usePricingUiMessages, usePricingUiMessagesOrDefault, } from "./i18n/index.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyantjs/pricing-ui",
|
|
3
|
-
"version": "0.26.
|
|
3
|
+
"version": "0.26.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"react-dom": "^19.0.0",
|
|
47
47
|
"react-hook-form": "^7.60.0",
|
|
48
48
|
"zod": "^4.3.6",
|
|
49
|
-
"@voyantjs/pricing-react": "0.26.
|
|
50
|
-
"@voyantjs/products-react": "0.26.
|
|
51
|
-
"@voyantjs/ui": "0.26.
|
|
49
|
+
"@voyantjs/pricing-react": "0.26.1",
|
|
50
|
+
"@voyantjs/products-react": "0.26.1",
|
|
51
|
+
"@voyantjs/ui": "0.26.1"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@voyantjs/i18n": "0.26.
|
|
54
|
+
"@voyantjs/i18n": "0.26.1"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@tanstack/react-query": "^5.96.2",
|
|
@@ -65,11 +65,11 @@
|
|
|
65
65
|
"typescript": "^6.0.2",
|
|
66
66
|
"vitest": "^4.1.2",
|
|
67
67
|
"zod": "^4.3.6",
|
|
68
|
-
"@voyantjs/i18n": "0.26.
|
|
69
|
-
"@voyantjs/pricing-react": "0.26.
|
|
70
|
-
"@voyantjs/products-react": "0.26.
|
|
68
|
+
"@voyantjs/i18n": "0.26.1",
|
|
69
|
+
"@voyantjs/pricing-react": "0.26.1",
|
|
70
|
+
"@voyantjs/products-react": "0.26.1",
|
|
71
71
|
"@voyantjs/voyant-typescript-config": "0.1.0",
|
|
72
|
-
"@voyantjs/ui": "0.26.
|
|
72
|
+
"@voyantjs/ui": "0.26.1"
|
|
73
73
|
},
|
|
74
74
|
"files": [
|
|
75
75
|
"dist",
|