@mercurjs/vendor 2.1.2-canary.1 → 2.1.2-canary.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.
@@ -921,7 +921,13 @@ var ProductCreateGeneralSection = () => {
921
921
  render: ({ field }) => {
922
922
  return /* @__PURE__ */ jsxs4(Form.Item, { children: [
923
923
  /* @__PURE__ */ jsx4(Form.Label, { children: t("products.fields.title.label") }),
924
- /* @__PURE__ */ jsx4(Form.Control, { children: /* @__PURE__ */ jsx4(Input2, { ...field, placeholder: "Winter jacket" }) }),
924
+ /* @__PURE__ */ jsx4(Form.Control, { children: /* @__PURE__ */ jsx4(
925
+ Input2,
926
+ {
927
+ ...field,
928
+ placeholder: t("products.fields.title.placeholder")
929
+ }
930
+ ) }),
925
931
  /* @__PURE__ */ jsx4(Form.ErrorMessage, { children: form.formState.errors.title?.message })
926
932
  ] });
927
933
  }
@@ -935,7 +941,13 @@ var ProductCreateGeneralSection = () => {
935
941
  render: ({ field }) => {
936
942
  return /* @__PURE__ */ jsxs4(Form.Item, { children: [
937
943
  /* @__PURE__ */ jsx4(Form.Label, { optional: true, children: t("products.fields.subtitle.label") }),
938
- /* @__PURE__ */ jsx4(Form.Control, { children: /* @__PURE__ */ jsx4(Input2, { ...field, placeholder: "Warm and cosy" }) })
944
+ /* @__PURE__ */ jsx4(Form.Control, { children: /* @__PURE__ */ jsx4(
945
+ Input2,
946
+ {
947
+ ...field,
948
+ placeholder: t("products.fields.subtitle.placeholder")
949
+ }
950
+ ) })
939
951
  ] });
940
952
  }
941
953
  }
@@ -955,7 +967,13 @@ var ProductCreateGeneralSection = () => {
955
967
  children: t("fields.handle")
956
968
  }
957
969
  ),
958
- /* @__PURE__ */ jsx4(Form.Control, { children: /* @__PURE__ */ jsx4(HandleInput, { ...field, placeholder: "winter-jacket" }) }),
970
+ /* @__PURE__ */ jsx4(Form.Control, { children: /* @__PURE__ */ jsx4(
971
+ HandleInput,
972
+ {
973
+ ...field,
974
+ placeholder: t("products.fields.handle.placeholder")
975
+ }
976
+ ) }),
959
977
  /* @__PURE__ */ jsx4(Form.ErrorMessage, { children: form.formState.errors.handle?.message })
960
978
  ] });
961
979
  }
@@ -970,7 +988,13 @@ var ProductCreateGeneralSection = () => {
970
988
  render: ({ field }) => {
971
989
  return /* @__PURE__ */ jsxs4(Form.Item, { children: [
972
990
  /* @__PURE__ */ jsx4(Form.Label, { optional: true, children: t("products.fields.description.label") }),
973
- /* @__PURE__ */ jsx4(Form.Control, { children: /* @__PURE__ */ jsx4(Textarea2, { ...field, placeholder: "A warm and cozy jacket" }) })
991
+ /* @__PURE__ */ jsx4(Form.Control, { children: /* @__PURE__ */ jsx4(
992
+ Textarea2,
993
+ {
994
+ ...field,
995
+ placeholder: t("products.fields.description.placeholder")
996
+ }
997
+ ) })
974
998
  ] });
975
999
  }
976
1000
  }
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  ProductCreatePage
3
- } from "./chunk-KEIXTHPW.js";
3
+ } from "./chunk-FN4ZZY4L.js";
4
4
  import "./chunk-HJ56YXBU.js";
5
5
  import "./chunk-WFE6CT6M.js";
6
6
  import "./chunk-TZTKHOEK.js";
package/dist/index.js CHANGED
@@ -2869,7 +2869,7 @@ function getRouteMap({
2869
2869
  {
2870
2870
  path: "",
2871
2871
  lazy: async () => {
2872
- const { ProductListPage } = await import("./products-UGC7SOMS.js");
2872
+ const { ProductListPage } = await import("./products-KYSAMMOH.js");
2873
2873
  return {
2874
2874
  Component: ProductListPage
2875
2875
  };
@@ -2878,7 +2878,7 @@ function getRouteMap({
2878
2878
  {
2879
2879
  path: "create",
2880
2880
  lazy: async () => {
2881
- const { ProductCreatePage } = await import("./create-ZN47Y3ZC.js");
2881
+ const { ProductCreatePage } = await import("./create-UTNSDROJ.js");
2882
2882
  return {
2883
2883
  Component: ProductCreatePage
2884
2884
  };
@@ -104,7 +104,7 @@ import "../chunk-KAZ5BYTQ.js";
104
104
  import "../chunk-3EF54XFY.js";
105
105
  import {
106
106
  ProductCreatePage
107
- } from "../chunk-KEIXTHPW.js";
107
+ } from "../chunk-FN4ZZY4L.js";
108
108
  import "../chunk-HJ56YXBU.js";
109
109
  import "../chunk-WFE6CT6M.js";
110
110
  import "../chunk-TZTKHOEK.js";
@@ -13,7 +13,7 @@ import "./chunk-KAZ5BYTQ.js";
13
13
  import "./chunk-3EF54XFY.js";
14
14
  import {
15
15
  ProductCreatePage
16
- } from "./chunk-KEIXTHPW.js";
16
+ } from "./chunk-FN4ZZY4L.js";
17
17
  import "./chunk-HJ56YXBU.js";
18
18
  import "./chunk-WFE6CT6M.js";
19
19
  import "./chunk-TZTKHOEK.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mercurjs/vendor",
3
- "version": "2.1.2-canary.1",
3
+ "version": "2.1.2-canary.2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/mercurjs/mercur",