@snabcentr/vue-ui-lib 4.3.1 → 4.3.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.
@@ -4,7 +4,7 @@
4
4
  "name": "index",
5
5
  "src": "src/index.ts",
6
6
  "isEntry": true,
7
- "integrity": "sha384-nTNdhSn5EXLacKWL3ANCQdleNTjcUexknc0DjUmz43VAobgEN4urP5fPy2m7HkYp"
7
+ "integrity": "sha384-CMmwNmUr36DYj1YktqiINUHMFZhW/NOPNKKS7rMwJfcRtx0DuASLNtjBYKfIhlQi"
8
8
  },
9
9
  "style.css": {
10
10
  "file": "sc-vue-ui-lib.css",
@@ -1,4 +1,4 @@
1
- ## 4.3.1 (2026-04-23)
1
+ ## 4.3.2 (2026-04-23)
2
2
 
3
3
  No changes.
4
4
 
@@ -145,7 +145,72 @@ class wi {
145
145
  );
146
146
  }
147
147
  }
148
- const jg = {
148
+ const f3 = {
149
+ required: {
150
+ required: !0,
151
+ type: "any",
152
+ trigger: ["blur", "input"],
153
+ message: "Это поле обязательно для заполнения"
154
+ }
155
+ }, pe = {
156
+ /**
157
+ * Требует, чтобы поле было заполнено.
158
+ */
159
+ required: {
160
+ type: "number",
161
+ required: !0,
162
+ trigger: ["blur", "input"],
163
+ message: "Это поле обязательно для заполнения"
164
+ },
165
+ /**
166
+ * Проверяет минимальное значение.
167
+ *
168
+ * @param min Минимальное значение.
169
+ */
170
+ min(t) {
171
+ return { type: "number", min: t, trigger: ["blur", "input"], message: `Минимальное значение: ${t}` };
172
+ },
173
+ /**
174
+ * Проверяет максимальное значение.
175
+ *
176
+ * @param max Максимальное значение.
177
+ */
178
+ max(t) {
179
+ return { type: "number", max: t, trigger: ["blur", "input"], message: `Максимальное значение: ${t}` };
180
+ },
181
+ /**
182
+ * Проверяет кратность значения.
183
+ *
184
+ * @param step Шаг/кратность значения.
185
+ */
186
+ step(t) {
187
+ return {
188
+ type: "number",
189
+ trigger: ["blur", "input"],
190
+ // eslint-disable-next-line sonarjs/function-return-type
191
+ validator: (e, i) => i === null || Math.abs(i / t - Math.round(i / t)) < 1e-10 ? !0 : new Error(`Значение должно быть кратно ${t}`)
192
+ };
193
+ }
194
+ }, g3 = {
195
+ required: {
196
+ required: !0,
197
+ type: "date",
198
+ trigger: ["blur", "input"],
199
+ message: "Это поле обязательно для заполнения"
200
+ }
201
+ }, dt = {
202
+ /**
203
+ * Выводит сообщение об ошибке серверной валидации.
204
+ *
205
+ * @param serverValidation Сообщение об ошибке серверной валидации.
206
+ */
207
+ serverValidation(t) {
208
+ return {
209
+ // eslint-disable-next-line sonarjs/function-return-type
210
+ validator: (e, i) => i === null ? !0 : t ? new Error(t) : !0
211
+ };
212
+ }
213
+ }, jg = {
149
214
  viewBox: "0 0 512 512",
150
215
  width: "1.2em",
151
216
  height: "1.2em"
@@ -476,7 +541,7 @@ function Rm(t, e) {
476
541
  }, null, -1)
477
542
  ])]);
478
543
  }
479
- const Hd = Oe({ name: "ion-cart-outline", render: Rm }), Lo = Symbol(), f3 = {
544
+ const Hd = Oe({ name: "ion-cart-outline", render: Rm }), Lo = Symbol(), m3 = {
480
545
  Button: {
481
546
  border: "1px solid grey"
482
547
  },
@@ -2168,58 +2233,7 @@ const jd = Oe({ name: "ion-plus", render: Dp }), Np = {
2168
2233
  ])) : j("", !0);
2169
2234
  };
2170
2235
  }
2171
- }), pe = {
2172
- /**
2173
- * Требует, чтобы поле было заполнено.
2174
- */
2175
- required: {
2176
- type: "number",
2177
- required: !0,
2178
- trigger: ["blur", "input"],
2179
- message: "Это поле обязательно для заполнения"
2180
- },
2181
- /**
2182
- * Проверяет минимальное значение.
2183
- *
2184
- * @param min Минимальное значение.
2185
- */
2186
- min(t) {
2187
- return { type: "number", min: t, trigger: ["blur", "input"], message: `Минимальное значение: ${t}` };
2188
- },
2189
- /**
2190
- * Проверяет максимальное значение.
2191
- *
2192
- * @param max Максимальное значение.
2193
- */
2194
- max(t) {
2195
- return { type: "number", max: t, trigger: ["blur", "input"], message: `Максимальное значение: ${t}` };
2196
- },
2197
- /**
2198
- * Проверяет кратность значения.
2199
- *
2200
- * @param step Шаг/кратность значения.
2201
- */
2202
- step(t) {
2203
- return {
2204
- type: "number",
2205
- trigger: ["blur", "input"],
2206
- // eslint-disable-next-line sonarjs/function-return-type
2207
- validator: (e, i) => i === null || Math.abs(i / t - Math.round(i / t)) < 1e-10 ? !0 : new Error(`Значение должно быть кратно ${t}`)
2208
- };
2209
- }
2210
- }, dt = {
2211
- /**
2212
- * Выводит сообщение об ошибке серверной валидации.
2213
- *
2214
- * @param serverValidation Сообщение об ошибке серверной валидации.
2215
- */
2216
- serverValidation(t) {
2217
- return {
2218
- // eslint-disable-next-line sonarjs/function-return-type
2219
- validator: (e, i) => i === null ? !0 : t ? new Error(t) : !0
2220
- };
2221
- }
2222
- }, qp = { class: "flex flex-col gap-4" }, Up = { class: "flex flex-col gap-2" }, Xp = { class: "mt-8 font-bold" }, Yp = { class: "grid grow grid-cols-2 items-start gap-2" }, Gp = {
2236
+ }), qp = { class: "flex flex-col gap-4" }, Up = { class: "flex flex-col gap-2" }, Xp = { class: "mt-8 font-bold" }, Yp = { class: "grid grow grid-cols-2 items-start gap-2" }, Gp = {
2223
2237
  key: 2,
2224
2238
  class: "text-red-500 text-sm"
2225
2239
  }, Kp = {
@@ -22104,7 +22118,7 @@ const Eb = {
22104
22118
  "onUpdate:value": c
22105
22119
  }, null, 8, ["value", "clearable", "consistent-menu-width", "disabled", "filterable", "max-tag-count", "multiple", "options"]));
22106
22120
  }
22107
- }), t_ = {}, _3 = /* @__PURE__ */ re({
22121
+ }), t_ = {}, x3 = /* @__PURE__ */ re({
22108
22122
  ...t_,
22109
22123
  __name: "set-client-price-form-item",
22110
22124
  props: {
@@ -22435,7 +22449,7 @@ const Eb = {
22435
22449
  ]), 1032, ["loading", "show", "size", "style", "title", "trap-focus", "action-class"]);
22436
22450
  };
22437
22451
  }
22438
- }), o_ = { class: "text-sm" }, a_ = {}, w3 = /* @__PURE__ */ re({
22452
+ }), o_ = { class: "text-sm" }, a_ = {}, k3 = /* @__PURE__ */ re({
22439
22453
  ...a_,
22440
22454
  __name: "add-product-to-cart-dialog",
22441
22455
  emits: ["submit"],
@@ -22765,7 +22779,7 @@ function __(t, e) {
22765
22779
  ], -1)
22766
22780
  ])]);
22767
22781
  }
22768
- const w_ = Oe({ name: "tabler-mail", render: __ }), x_ = ["href"], k_ = {}, x3 = /* @__PURE__ */ re({
22782
+ const w_ = Oe({ name: "tabler-mail", render: __ }), x_ = ["href"], k_ = {}, C3 = /* @__PURE__ */ re({
22769
22783
  ...k_,
22770
22784
  __name: "email",
22771
22785
  props: {
@@ -22927,7 +22941,7 @@ function D_(t, e) {
22927
22941
  const N_ = Oe({ name: "tabler-phone-call", render: D_ }), H_ = {
22928
22942
  key: 0,
22929
22943
  class: "absolute left-0 top-0 flex w-full flex-row items-center justify-around text-center backdrop-blur-sm"
22930
- }, W_ = ["href"], V_ = ["href"], j_ = ["href"], q_ = ["href"], U_ = {}, k3 = /* @__PURE__ */ re({
22944
+ }, W_ = ["href"], V_ = ["href"], j_ = ["href"], q_ = ["href"], U_ = {}, S3 = /* @__PURE__ */ re({
22931
22945
  ...U_,
22932
22946
  __name: "phone",
22933
22947
  props: {
@@ -23045,7 +23059,7 @@ const G_ = Oe({ name: "mdi-envelope", render: Y_ }), K_ = { class: "flex flex-co
23045
23059
  }, u1 = {
23046
23060
  key: 0,
23047
23061
  class: "-mt-1"
23048
- }, d1 = {}, C3 = /* @__PURE__ */ re({
23062
+ }, d1 = {}, $3 = /* @__PURE__ */ re({
23049
23063
  ...d1,
23050
23064
  __name: "person-contacts-block",
23051
23065
  props: {
@@ -23168,7 +23182,7 @@ const G_ = Oe({ name: "mdi-envelope", render: Y_ }), K_ = { class: "flex flex-co
23168
23182
  };
23169
23183
  }
23170
23184
  });
23171
- class S3 {
23185
+ class T3 {
23172
23186
  /**
23173
23187
  * Инициализирует экземпляр класса {@link ConfiguratorSettingsMosquito}.
23174
23188
  *
@@ -23226,7 +23240,7 @@ class S3 {
23226
23240
  this.color = e.color, this.crossbarCount = e.crossbarCount, this.descriptions = pa(e.descriptions), this.maxHeights = e.maxHeights, this.maxWidths = e.maxWidths, this.minHeight = e.minHeight, this.minWidth = e.minWidth, this.mountType = e.mountType, this.netType = e.netType, this.heightOverlaps = pa(e.heightOverlaps), this.widthOverlaps = pa(e.widthOverlaps), this.canSetDopProdaga = e.canSetDopProdaga;
23227
23241
  }
23228
23242
  }
23229
- const h1 = { class: "flex flex-wrap gap-2" }, f1 = { class: "flex flex-col" }, g1 = { class: "flex flex-col" }, m1 = {}, $3 = /* @__PURE__ */ re({
23243
+ const h1 = { class: "flex flex-wrap gap-2" }, f1 = { class: "flex flex-col" }, g1 = { class: "flex flex-col" }, m1 = {}, P3 = /* @__PURE__ */ re({
23230
23244
  ...m1,
23231
23245
  __name: "date-range",
23232
23246
  props: {
@@ -23368,7 +23382,7 @@ const h1 = { class: "flex flex-wrap gap-2" }, f1 = { class: "flex flex-col" }, g
23368
23382
  }, Y(n.value), 3)) : j("", !0)
23369
23383
  ], 2));
23370
23384
  }
23371
- }), y1 = { class: "flex flex-row gap-2.5" }, b1 = { class: "flex grow basis-0 flex-row flex-wrap justify-start justify-items-start gap-y-1 md:flex-nowrap" }, _1 = { class: "flex min-w-0 flex-col-reverse flex-wrap-reverse justify-end gap-1 sm:flex-row" }, w1 = { class: "mb-0.5 sm:mb-0 sm:ml-3" }, x1 = {}, T3 = /* @__PURE__ */ re({
23385
+ }), y1 = { class: "flex flex-row gap-2.5" }, b1 = { class: "flex grow basis-0 flex-row flex-wrap justify-start justify-items-start gap-y-1 md:flex-nowrap" }, _1 = { class: "flex min-w-0 flex-col-reverse flex-wrap-reverse justify-end gap-1 sm:flex-row" }, w1 = { class: "mb-0.5 sm:mb-0 sm:ml-3" }, x1 = {}, R3 = /* @__PURE__ */ re({
23372
23386
  ...x1,
23373
23387
  __name: "dialog-header",
23374
23388
  props: {
@@ -23438,7 +23452,7 @@ function C1(t, e) {
23438
23452
  }, null, -1)
23439
23453
  ])]);
23440
23454
  }
23441
- const S1 = Oe({ name: "ion-download-outline", render: C1 }), $1 = {}, P3 = /* @__PURE__ */ re({
23455
+ const S1 = Oe({ name: "ion-download-outline", render: C1 }), $1 = {}, F3 = /* @__PURE__ */ re({
23442
23456
  ...$1,
23443
23457
  __name: "single-file-upload-selector",
23444
23458
  props: {
@@ -23718,7 +23732,7 @@ const A1 = Oe({ name: "ion-options-outline", render: B1 }), M1 = { class: "flex
23718
23732
  }, 8, ["disabled", "show-edit-button"]))
23719
23733
  ]));
23720
23734
  }
23721
- }), N1 = {}, R3 = /* @__PURE__ */ re({
23735
+ }), N1 = {}, B3 = /* @__PURE__ */ re({
23722
23736
  ...N1,
23723
23737
  __name: "debounced-input",
23724
23738
  props: {
@@ -23756,7 +23770,7 @@ const A1 = Oe({ name: "ion-options-outline", render: B1 }), M1 = { class: "flex
23756
23770
  _: 3
23757
23771
  }, 8, ["value", "clearable", "placeholder"]));
23758
23772
  }
23759
- }), H1 = {}, F3 = /* @__PURE__ */ re({
23773
+ }), H1 = {}, A3 = /* @__PURE__ */ re({
23760
23774
  ...H1,
23761
23775
  __name: "debounced-input-number",
23762
23776
  props: {
@@ -23891,7 +23905,7 @@ const A1 = Oe({ name: "ion-options-outline", render: B1 }), M1 = { class: "flex
23891
23905
  class: "tel-input"
23892
23906
  }, null, 8, ["modelValue", "default-country", "disabled", "input-options", "preferred-countries", "only-countries"]));
23893
23907
  }
23894
- }), B3 = /* @__PURE__ */ Qn(V1, [["__scopeId", "data-v-751dbb0e"]]), j1 = {
23908
+ }), M3 = /* @__PURE__ */ Qn(V1, [["__scopeId", "data-v-751dbb0e"]]), j1 = {
23895
23909
  viewBox: "0 0 24 24",
23896
23910
  width: "1.2em",
23897
23911
  height: "1.2em"
@@ -23908,7 +23922,7 @@ function q1(t, e) {
23908
23922
  }, null, -1)
23909
23923
  ])]);
23910
23924
  }
23911
- const U1 = Oe({ name: "tabler-external-link", render: q1 }), X1 = { class: "flex flex-row gap-1 hover:underline hover:decoration-dashed" }, Y1 = ["href"], G1 = {}, A3 = /* @__PURE__ */ re({
23925
+ const U1 = Oe({ name: "tabler-external-link", render: q1 }), X1 = { class: "flex flex-row gap-1 hover:underline hover:decoration-dashed" }, Y1 = ["href"], G1 = {}, E3 = /* @__PURE__ */ re({
23912
23926
  ...G1,
23913
23927
  __name: "external-link",
23914
23928
  props: {
@@ -27263,7 +27277,7 @@ const u2 = "n", d2 = `.${u2}-`, h2 = "__", f2 = "--", Bf = df(), Af = c2({
27263
27277
  Bf.use(Af);
27264
27278
  const {
27265
27279
  c: ye,
27266
- find: M3
27280
+ find: I3
27267
27281
  } = Bf, {
27268
27282
  cB: $e,
27269
27283
  cE: Fe,
@@ -33725,7 +33739,7 @@ const vC = Object.assign(Object.assign({}, Kt.props), {
33725
33739
  }), kC = { class: "col-span-2 flex flex-row gap-2.5" }, CC = { class: "flex-1" }, SC = { class: "text-sc-grey" }, $C = { class: "ml-2.5" }, TC = {
33726
33740
  key: 0,
33727
33741
  class: "flex-none"
33728
- }, PC = {}, E3 = /* @__PURE__ */ re({
33742
+ }, PC = {}, O3 = /* @__PURE__ */ re({
33729
33743
  ...PC,
33730
33744
  __name: "products-list",
33731
33745
  props: {
@@ -34900,7 +34914,7 @@ const XC = Oe({ name: "tabler-truck-loading", render: UC }), YC = { class: "flex
34900
34914
  }, null, 8, ["columns", "data", "row-key", "scroll-x", "pagination", "loading", "max-height"]);
34901
34915
  };
34902
34916
  }
34903
- }), I3 = /* @__PURE__ */ Qn(ZS, [["__scopeId", "data-v-2a162c0c"]]), QS = ["href"], JS = { class: "text-sc-dark-grey" }, e5 = {}, O3 = /* @__PURE__ */ re({
34917
+ }), z3 = /* @__PURE__ */ Qn(ZS, [["__scopeId", "data-v-2a162c0c"]]), QS = ["href"], JS = { class: "text-sc-dark-grey" }, e5 = {}, L3 = /* @__PURE__ */ re({
34904
34918
  ...e5,
34905
34919
  __name: "short-text-order-info",
34906
34920
  props: {
@@ -35057,7 +35071,7 @@ const XC = Oe({ name: "tabler-truck-loading", render: UC }), YC = { class: "flex
35057
35071
  }, g5 = { key: 0 }, m5 = { class: "sc-page-preview-panel grow" }, p5 = {
35058
35072
  key: 1,
35059
35073
  class: "sc-page-preview-panel-extra flex-none"
35060
- }, v5 = {}, z3 = /* @__PURE__ */ re({
35074
+ }, v5 = {}, D3 = /* @__PURE__ */ re({
35061
35075
  ...v5,
35062
35076
  __name: "page-with-sliding-panel",
35063
35077
  props: {
@@ -35193,7 +35207,7 @@ const XC = Oe({ name: "tabler-truck-loading", render: UC }), YC = { class: "flex
35193
35207
  ]), 1032, ["title", "sticky-header", "sticky-top-offset"]);
35194
35208
  };
35195
35209
  }
35196
- }), y5 = {}, L3 = /* @__PURE__ */ re({
35210
+ }), y5 = {}, N3 = /* @__PURE__ */ re({
35197
35211
  ...y5,
35198
35212
  __name: "curator-select",
35199
35213
  props: {
@@ -35287,7 +35301,7 @@ const XC = Oe({ name: "tabler-truck-loading", render: UC }), YC = { class: "flex
35287
35301
  "onUpdate:value": d
35288
35302
  }, null, 8, ["value", "clearable", "disabled", "consistent-menu-width", "multiple", "options"]));
35289
35303
  }
35290
- }), b5 = {}, D3 = /* @__PURE__ */ re({
35304
+ }), b5 = {}, H3 = /* @__PURE__ */ re({
35291
35305
  ...b5,
35292
35306
  __name: "manager-select",
35293
35307
  props: {
@@ -35420,7 +35434,7 @@ const XC = Oe({ name: "tabler-truck-loading", render: UC }), YC = { class: "flex
35420
35434
  value: "",
35421
35435
  field: void 0,
35422
35436
  disabled: !1
35423
- }, M5 = {}, N3 = /* @__PURE__ */ re({
35437
+ }, M5 = {}, W3 = /* @__PURE__ */ re({
35424
35438
  ...M5,
35425
35439
  __name: "address-suggestion",
35426
35440
  props: /* @__PURE__ */ $l({
@@ -35526,7 +35540,7 @@ const XC = Oe({ name: "tabler-truck-loading", render: UC }), YC = { class: "flex
35526
35540
  ])
35527
35541
  ]));
35528
35542
  }
35529
- }), H5 = {}, H3 = /* @__PURE__ */ re({
35543
+ }), H5 = {}, V3 = /* @__PURE__ */ re({
35530
35544
  ...H5,
35531
35545
  __name: "bank-suggestion",
35532
35546
  props: /* @__PURE__ */ $l({
@@ -35652,7 +35666,7 @@ const XC = Oe({ name: "tabler-truck-loading", render: UC }), YC = { class: "flex
35652
35666
  ])) : j("", !0)
35653
35667
  ], 2));
35654
35668
  }
35655
- }), Y5 = {}, W3 = /* @__PURE__ */ re({
35669
+ }), Y5 = {}, j3 = /* @__PURE__ */ re({
35656
35670
  ...Y5,
35657
35671
  __name: "org-suggestion",
35658
35672
  props: /* @__PURE__ */ $l({
@@ -35750,7 +35764,7 @@ const XC = Oe({ name: "tabler-truck-loading", render: UC }), YC = { class: "flex
35750
35764
  }, null, 8, ["value", "clearable", "disabled", "loading", "options", "onUpdate:value"]);
35751
35765
  };
35752
35766
  }
35753
- }), G5 = {}, V3 = /* @__PURE__ */ re({
35767
+ }), G5 = {}, q3 = /* @__PURE__ */ re({
35754
35768
  ...G5,
35755
35769
  __name: "button-with-confirm-action",
35756
35770
  props: {
@@ -35847,7 +35861,7 @@ const XC = Oe({ name: "tabler-truck-loading", render: UC }), YC = { class: "flex
35847
35861
  }, Z5 = {
35848
35862
  key: 1,
35849
35863
  class: "text-sc-dark-grey"
35850
- }, Q5 = {}, j3 = /* @__PURE__ */ re({
35864
+ }, Q5 = {}, U3 = /* @__PURE__ */ re({
35851
35865
  ...Q5,
35852
35866
  __name: "comment-editor",
35853
35867
  props: {
@@ -35892,7 +35906,7 @@ const XC = Oe({ name: "tabler-truck-loading", render: UC }), YC = { class: "flex
35892
35906
  }, 8, ["disabled"]);
35893
35907
  };
35894
35908
  }
35895
- }), J5 = {}, q3 = /* @__PURE__ */ re({
35909
+ }), J5 = {}, X3 = /* @__PURE__ */ re({
35896
35910
  ...J5,
35897
35911
  __name: "debt",
35898
35912
  props: {
@@ -35928,7 +35942,7 @@ function t3(t, e) {
35928
35942
  }, null, -1)
35929
35943
  ])]);
35930
35944
  }
35931
- const i3 = Oe({ name: "ion-warning", render: t3 }), n3 = {}, U3 = /* @__PURE__ */ re({
35945
+ const i3 = Oe({ name: "ion-warning", render: t3 }), n3 = {}, Y3 = /* @__PURE__ */ re({
35932
35946
  ...n3,
35933
35947
  __name: "warning-icon",
35934
35948
  props: {
@@ -36014,11 +36028,11 @@ C(Wt, "messagesService"), /**
36014
36028
  */
36015
36029
  C(Wt, "notificationsService");
36016
36030
  let kd = Wt;
36017
- const X3 = z(() => Et().deliveryTypeReference ?? []), Y3 = z(() => Et().managersList ?? []), G3 = z(() => Et().opfReference ?? []), K3 = z(() => Et().partnerGroupsReference ?? []), Z3 = z(() => Et().priceCoefficientsReference ?? []), Q3 = z(() => Et().productFilesTypesReference ?? []), J3 = z(() => Et().resourceTypesReference), e4 = z(() => Et().salesDirectionsReference ?? []), t4 = z(() => Et().warehousesReference ?? []), i4 = z(() => Et().paymentTypeReference ?? []), n4 = z(() => Et().orderStatusReference ?? []), s4 = z(() => Et().operatorReference ?? []), r4 = z(
36031
+ const G3 = z(() => Et().deliveryTypeReference ?? []), K3 = z(() => Et().managersList ?? []), Z3 = z(() => Et().opfReference ?? []), Q3 = z(() => Et().partnerGroupsReference ?? []), J3 = z(() => Et().priceCoefficientsReference ?? []), e4 = z(() => Et().productFilesTypesReference ?? []), t4 = z(() => Et().resourceTypesReference), i4 = z(() => Et().salesDirectionsReference ?? []), n4 = z(() => Et().warehousesReference ?? []), s4 = z(() => Et().paymentTypeReference ?? []), r4 = z(() => Et().orderStatusReference ?? []), o4 = z(() => Et().operatorReference ?? []), a4 = z(
36018
36032
  () => wi.convertReferencesToSelectOptionsList(Et().channelPrimaryInterestsReference ?? [], !0, !1, !0)
36019
- ), o4 = z(
36033
+ ), l4 = z(
36020
36034
  () => wi.convertReferencesToSelectOptionsList(Et().sourcePrimaryInterestsReference ?? [], !0, !1, !0)
36021
- ), a4 = (t) => qi.getInstance(Og).searchCity(t), l4 = (t) => wi.convertReferencesToSelectOptionsList(
36035
+ ), c4 = (t) => qi.getInstance(Og).searchCity(t), u4 = (t) => wi.convertReferencesToSelectOptionsList(
36022
36036
  t,
36023
36037
  !0,
36024
36038
  !1,
@@ -36030,7 +36044,7 @@ const X3 = z(() => Et().deliveryTypeReference ?? []), Y3 = z(() => Et().managers
36030
36044
  },
36031
36045
  // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
36032
36046
  (e) => e == null ? void 0 : e.isNewRec()
36033
- ), c4 = (t) => qi.getInstance(zg).searchClient(t), u4 = (t) => wi.convertReferencesToSelectOptionsList(
36047
+ ), d4 = (t) => qi.getInstance(zg).searchClient(t), h4 = (t) => wi.convertReferencesToSelectOptionsList(
36034
36048
  t,
36035
36049
  !0,
36036
36050
  !1,
@@ -36047,40 +36061,43 @@ const X3 = z(() => Et().deliveryTypeReference ?? []), Y3 = z(() => Et().managers
36047
36061
  (e) => e == null ? void 0 : e.isNewRec()
36048
36062
  );
36049
36063
  export {
36050
- w3 as AddProductToCartDialog,
36064
+ k3 as AddProductToCartDialog,
36065
+ f3 as CommonValidators,
36051
36066
  ty as ConfiguratorSettingsKozyrek,
36052
- S3 as ConfiguratorSettingsMosquito,
36067
+ T3 as ConfiguratorSettingsMosquito,
36053
36068
  ec as ConfiguratorsEnum,
36054
36069
  Xs as ContentHelper,
36070
+ g3 as DateValidators,
36055
36071
  Cn as KozyrekLine,
36056
36072
  Mu as KozyrekTailTemplate,
36057
36073
  gr as KozyrekTemplate,
36074
+ pe as NumericValidators,
36058
36075
  Xe as OrdersTableFields,
36059
36076
  Au as Point,
36060
- N3 as ScAddressSuggestion,
36077
+ W3 as ScAddressSuggestion,
36061
36078
  A5 as ScAddressSuggestionLabel,
36062
- H3 as ScBankSuggestion,
36079
+ V3 as ScBankSuggestion,
36063
36080
  N5 as ScBankSuggestionLabel,
36064
36081
  r_ as ScBaseDialog,
36065
- V3 as ScButtonWithConfirmAction,
36082
+ q3 as ScButtonWithConfirmAction,
36066
36083
  Qb as ScCategoryCollapse,
36067
36084
  To as ScClientNameWithShortInfo,
36068
36085
  Kb as ScCollapse,
36069
36086
  Tm as ScCollapseItem,
36070
- j3 as ScCommentEditor,
36087
+ U3 as ScCommentEditor,
36071
36088
  Do as ScConfiguratorsProductInfo,
36072
36089
  y_ as ScContragentWithShortInfo,
36073
36090
  Gf as ScCreatorUserTypeTag,
36074
- L3 as ScCuratorSelect,
36075
- $3 as ScDateRange,
36091
+ N3 as ScCuratorSelect,
36092
+ P3 as ScDateRange,
36076
36093
  dl as ScDateTimeLabel,
36077
- R3 as ScDebouncedInput,
36078
- F3 as ScDebouncedInputNumber,
36079
- q3 as ScDebt,
36080
- T3 as ScDialogHeader,
36094
+ B3 as ScDebouncedInput,
36095
+ A3 as ScDebouncedInputNumber,
36096
+ X3 as ScDebt,
36097
+ R3 as ScDialogHeader,
36081
36098
  Bb as ScDynamicConfigurator,
36082
- x3 as ScEmail,
36083
- A3 as ScExternalLink,
36099
+ C3 as ScEmail,
36100
+ E3 as ScExternalLink,
36084
36101
  ap as ScImageGallery,
36085
36102
  D1 as ScInlineEditableItem,
36086
36103
  Iu as ScInlineView,
@@ -36089,7 +36106,7 @@ export {
36089
36106
  ey as ScKozyrekConfiguratorPreview,
36090
36107
  G0 as ScKozyrekConfiguratorTemplates,
36091
36108
  np as ScLightGallery,
36092
- D3 as ScManagerSelect,
36109
+ H3 as ScManagerSelect,
36093
36110
  nb as ScMetalForDoorsConfigurator,
36094
36111
  eb as ScMetalForDoorsConfiguratorForm,
36095
36112
  Ey as ScMosquitoConfigurator,
@@ -36105,61 +36122,62 @@ export {
36105
36122
  Yf as ScOrderPayment,
36106
36123
  vS as ScOrderProductInfo,
36107
36124
  BS as ScOrderStatusHistory,
36108
- I3 as ScOrdersList,
36109
- W3 as ScOrgSuggestion,
36125
+ z3 as ScOrdersList,
36126
+ j3 as ScOrgSuggestion,
36110
36127
  X5 as ScOrgSuggestionLabel,
36111
36128
  l5 as ScPage,
36112
- z3 as ScPageWithSlidingPanel,
36113
- C3 as ScPersonContactsBlock,
36114
- k3 as ScPhone,
36115
- B3 as ScPhoneInput,
36129
+ D3 as ScPageWithSlidingPanel,
36130
+ $3 as ScPersonContactsBlock,
36131
+ S3 as ScPhone,
36132
+ M3 as ScPhoneInput,
36116
36133
  bo as ScProductName,
36117
- E3 as ScProductsList,
36134
+ O3 as ScProductsList,
36118
36135
  e_ as ScReferenceSelect,
36119
36136
  Cb as ScSandwichConfigurator,
36120
36137
  _b as ScSandwichConfiguratorForm,
36121
36138
  xC as ScSearchableProductSelect,
36122
36139
  _C as ScSearchableReferenceSelect,
36123
- _3 as ScSetClientPriceFormItem,
36124
- O3 as ScShortTextOrderInfo,
36125
- P3 as ScSingleFileUploadSelector,
36140
+ x3 as ScSetClientPriceFormItem,
36141
+ L3 as ScShortTextOrderInfo,
36142
+ F3 as ScSingleFileUploadSelector,
36126
36143
  h5 as ScSlidingContentWithDrawer,
36127
36144
  Zy as ScStripConfigurator,
36128
36145
  Wy as ScStripConfiguratorForm,
36129
36146
  Oy as ScStripConfiguratorLineItem,
36130
36147
  Xy as ScStripConfiguratorPreview,
36131
36148
  xd as ScUserShortInfo,
36132
- U3 as ScWarningIcon,
36149
+ Y3 as ScWarningIcon,
36133
36150
  wi as SelectOptionHelper,
36134
36151
  kd as UiNotificationProvider,
36152
+ dt as Validators,
36135
36153
  bt as WindowResolutionEnum,
36136
36154
  ui as WindowResolutionProvider,
36137
- r4 as channelPrimaryInterestOptionsList,
36155
+ a4 as channelPrimaryInterestOptionsList,
36138
36156
  Lo as componentSizeInjectionKey,
36139
- X3 as deliveryTypeReferenceList,
36157
+ G3 as deliveryTypeReferenceList,
36140
36158
  mr as handleFloatInput,
36141
36159
  Yt as handleIntegerInput,
36142
36160
  Mb as isCanSandwichShow,
36143
36161
  Ab as isConfiguratorType,
36144
- Y3 as managersReferenceList,
36145
- f3 as naiveUiTheme,
36146
- s4 as operatorReferenceList,
36147
- G3 as opfReferenceList,
36148
- n4 as orderStatusReferenceList,
36162
+ K3 as managersReferenceList,
36163
+ m3 as naiveUiTheme,
36164
+ o4 as operatorReferenceList,
36165
+ Z3 as opfReferenceList,
36166
+ r4 as orderStatusReferenceList,
36149
36167
  zt as parse,
36150
- K3 as partnerGroupReferenceList,
36151
- i4 as paymentTypeReferenceList,
36152
- Z3 as priceCoefficientsReferenceList,
36153
- Q3 as productFilesTypesReferenceList,
36168
+ Q3 as partnerGroupReferenceList,
36169
+ s4 as paymentTypeReferenceList,
36170
+ J3 as priceCoefficientsReferenceList,
36171
+ e4 as productFilesTypesReferenceList,
36154
36172
  lt as renderConfig,
36155
36173
  ut as resetInputValidation,
36156
- J3 as resourceReferencesList,
36157
- e4 as salesDirectionsReferenceList,
36158
- a4 as searchCityReferenceDataHandler,
36159
- l4 as searchCityReferenceLabelRenderer,
36160
- c4 as searchClientReferenceDataHandler,
36161
- u4 as searchClientReferenceLabelRenderer,
36174
+ t4 as resourceReferencesList,
36175
+ i4 as salesDirectionsReferenceList,
36176
+ c4 as searchCityReferenceDataHandler,
36177
+ u4 as searchCityReferenceLabelRenderer,
36178
+ d4 as searchClientReferenceDataHandler,
36179
+ h4 as searchClientReferenceLabelRenderer,
36162
36180
  st as selectAllTextOnFocus,
36163
- o4 as sourcePrimaryInterestOptionsList,
36164
- t4 as warehousesReferenceList
36181
+ l4 as sourcePrimaryInterestOptionsList,
36182
+ n4 as warehousesReferenceList
36165
36183
  };