@factoringplus/pl-components-pack-v3 0.4.41-pre-1 → 0.4.42

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.
@@ -1812,11 +1812,11 @@ var _sfc_main6 = {
1812
1812
  }, _hoisted_16$2 = {
1813
1813
  viewBox: "0 0 1024 1024",
1814
1814
  xmlns: "http://www.w3.org/2000/svg"
1815
- }, _hoisted_26$2 = /* @__PURE__ */ createElementVNode("path", {
1815
+ }, _hoisted_26$1 = /* @__PURE__ */ createElementVNode("path", {
1816
1816
  fill: "currentColor",
1817
1817
  d: "M831.872 340.864 512 652.672 192.128 340.864a30.592 30.592 0 0 0-42.752 0 29.12 29.12 0 0 0 0 41.6L489.664 714.24a32 32 0 0 0 44.672 0l340.288-331.712a29.12 29.12 0 0 0 0-41.728 30.592 30.592 0 0 0-42.752 0z"
1818
1818
  }, null, -1), _hoisted_36 = [
1819
- _hoisted_26$2
1819
+ _hoisted_26$1
1820
1820
  ];
1821
1821
  function _sfc_render6(_ctx, _cache, $props, $setup, $data, $options) {
1822
1822
  return openBlock(), createElementBlock("svg", _hoisted_16$2, _hoisted_36);
@@ -24554,10 +24554,7 @@ const _sfc_main$x = {
24554
24554
  emits: ["update:modelValue", "validate"],
24555
24555
  setup(__props, { emit: emit2 }) {
24556
24556
  const props = __props;
24557
- const modelValue = computed({
24558
- get: () => props.modelValue,
24559
- set: (val) => emit2("update:modelValue", val)
24560
- });
24557
+ let { modelValue } = toRefs(props);
24561
24558
  const ruleForm = reactive({
24562
24559
  [props.prop]: modelValue
24563
24560
  });
@@ -24567,6 +24564,9 @@ const _sfc_main$x = {
24567
24564
  watch(modelValue, (newValue) => {
24568
24565
  ruleForm[props.prop] = newValue;
24569
24566
  });
24567
+ const updateValue = (value) => {
24568
+ emit2("update:modelValue", value);
24569
+ };
24570
24570
  const clearValue = () => {
24571
24571
  emit2("update:modelValue", "");
24572
24572
  };
@@ -24629,11 +24629,12 @@ const _sfc_main$x = {
24629
24629
  disabled: props.disabled,
24630
24630
  placeholder: props.placeholder,
24631
24631
  modelValue: unref(modelValue),
24632
- "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(modelValue) ? modelValue.value = $event : null),
24632
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(modelValue) ? modelValue.value = $event : modelValue = $event),
24633
24633
  type: __props.type,
24634
24634
  resize: "none",
24635
24635
  autosize: { minRows: 3, maxRows: 6 },
24636
- clearable: props.clearable && _ctx.area
24636
+ clearable: props.clearable && _ctx.area,
24637
+ onInput: updateValue
24637
24638
  }, null, 8, ["class", "formatter", "parser", "minlength", "maxlength", "disabled", "placeholder", "modelValue", "type", "clearable"])
24638
24639
  ]),
24639
24640
  _: 1
@@ -30593,11 +30594,6 @@ var lodash = { exports: {} };
30593
30594
  }).call(commonjsGlobal);
30594
30595
  })(lodash, lodash.exports);
30595
30596
  var _ = lodash.exports;
30596
- //! moment.js
30597
- //! version : 2.29.4
30598
- //! authors : Tim Wood, Iskren Chernev, Moment.js contributors
30599
- //! license : MIT
30600
- //! momentjs.com
30601
30597
  var hookCallback;
30602
30598
  function hooks() {
30603
30599
  return hookCallback.apply(null, arguments);
@@ -30700,7 +30696,7 @@ if (Array.prototype.some) {
30700
30696
  return false;
30701
30697
  };
30702
30698
  }
30703
- function isValid(m2) {
30699
+ function isValid$2(m2) {
30704
30700
  if (m2._isValid == null) {
30705
30701
  var flags = getParsingFlags(m2), parsedParts = some.call(flags.parsedDateParts, function(i2) {
30706
30702
  return i2 != null;
@@ -30716,7 +30712,7 @@ function isValid(m2) {
30716
30712
  }
30717
30713
  return m2._isValid;
30718
30714
  }
30719
- function createInvalid(flags) {
30715
+ function createInvalid$1(flags) {
30720
30716
  var m2 = createUTC(NaN);
30721
30717
  if (flags != null) {
30722
30718
  extend$1(getParsingFlags(m2), flags);
@@ -30833,7 +30829,7 @@ hooks.deprecationHandler = null;
30833
30829
  function isFunction$1(input2) {
30834
30830
  return typeof Function !== "undefined" && input2 instanceof Function || Object.prototype.toString.call(input2) === "[object Function]";
30835
30831
  }
30836
- function set(config) {
30832
+ function set$1(config) {
30837
30833
  var prop, i2;
30838
30834
  for (i2 in config) {
30839
30835
  if (hasOwnProp(config, i2)) {
@@ -30897,7 +30893,7 @@ var defaultCalendar = {
30897
30893
  lastWeek: "[Last] dddd [at] LT",
30898
30894
  sameElse: "L"
30899
30895
  };
30900
- function calendar(key, mom, now2) {
30896
+ function calendar$1(key, mom, now2) {
30901
30897
  var output = this._calendar[key] || this._calendar["sameElse"];
30902
30898
  return isFunction$1(output) ? output.call(mom, now2) : output;
30903
30899
  }
@@ -31018,7 +31014,7 @@ var defaultRelativeTime = {
31018
31014
  y: "a year",
31019
31015
  yy: "%d years"
31020
31016
  };
31021
- function relativeTime(number4, withoutSuffix, string3, isFuture) {
31017
+ function relativeTime$1(number4, withoutSuffix, string3, isFuture) {
31022
31018
  var output = this._relativeTime[string3];
31023
31019
  return isFunction$1(output) ? output(number4, withoutSuffix, string3, isFuture) : output.replace(/%d/i, number4);
31024
31020
  }
@@ -31082,18 +31078,18 @@ function toInt(argumentForCoercion) {
31082
31078
  function makeGetSet(unit, keepTime) {
31083
31079
  return function(value) {
31084
31080
  if (value != null) {
31085
- set$1(this, unit, value);
31081
+ set(this, unit, value);
31086
31082
  hooks.updateOffset(this, keepTime);
31087
31083
  return this;
31088
31084
  } else {
31089
- return get(this, unit);
31085
+ return get$2(this, unit);
31090
31086
  }
31091
31087
  };
31092
31088
  }
31093
- function get(mom, unit) {
31089
+ function get$2(mom, unit) {
31094
31090
  return mom.isValid() ? mom._d["get" + (mom._isUTC ? "UTC" : "") + unit]() : NaN;
31095
31091
  }
31096
- function set$1(mom, unit, value) {
31092
+ function set(mom, unit, value) {
31097
31093
  if (mom.isValid() && !isNaN(value)) {
31098
31094
  if (unit === "FullYear" && isLeapYear(mom.year()) && mom.month() === 1 && mom.date() === 29) {
31099
31095
  value = toInt(value);
@@ -31174,7 +31170,7 @@ function addTimeToArrayFromToken(token2, input2, config) {
31174
31170
  }
31175
31171
  }
31176
31172
  var YEAR = 0, MONTH = 1, DATE = 2, HOUR = 3, MINUTE = 4, SECOND = 5, MILLISECOND = 6, WEEK = 7, WEEKDAY = 8;
31177
- function mod(n2, x2) {
31173
+ function mod$1(n2, x2) {
31178
31174
  return (n2 % x2 + x2) % x2;
31179
31175
  }
31180
31176
  var indexOf;
@@ -31195,7 +31191,7 @@ function daysInMonth(year, month) {
31195
31191
  if (isNaN(year) || isNaN(month)) {
31196
31192
  return NaN;
31197
31193
  }
31198
- var modMonth = mod(month, 12);
31194
+ var modMonth = mod$1(month, 12);
31199
31195
  year += (month - modMonth) / 12;
31200
31196
  return modMonth === 1 ? isLeapYear(year) ? 29 : 28 : 31 - modMonth % 7 % 2;
31201
31197
  }
@@ -31242,7 +31238,7 @@ function localeMonthsShort(m2, format2) {
31242
31238
  }
31243
31239
  return isArray$1(this._monthsShort) ? this._monthsShort[m2.month()] : this._monthsShort[MONTHS_IN_FORMAT.test(format2) ? "format" : "standalone"][m2.month()];
31244
31240
  }
31245
- function handleStrictParse(monthName, format2, strict) {
31241
+ function handleStrictParse$1(monthName, format2, strict) {
31246
31242
  var i2, ii, mom, llc = monthName.toLocaleLowerCase();
31247
31243
  if (!this._monthsParse) {
31248
31244
  this._monthsParse = [];
@@ -31283,7 +31279,7 @@ function handleStrictParse(monthName, format2, strict) {
31283
31279
  function localeMonthsParse(monthName, format2, strict) {
31284
31280
  var i2, mom, regex;
31285
31281
  if (this._monthsParseExact) {
31286
- return handleStrictParse.call(this, monthName, format2, strict);
31282
+ return handleStrictParse$1.call(this, monthName, format2, strict);
31287
31283
  }
31288
31284
  if (!this._monthsParse) {
31289
31285
  this._monthsParse = [];
@@ -31334,7 +31330,7 @@ function getSetMonth(value) {
31334
31330
  hooks.updateOffset(this, true);
31335
31331
  return this;
31336
31332
  } else {
31337
- return get(this, "Month");
31333
+ return get$2(this, "Month");
31338
31334
  }
31339
31335
  }
31340
31336
  function getDaysInMonth() {
@@ -31614,7 +31610,7 @@ function localeWeekdaysShort(m2) {
31614
31610
  function localeWeekdaysMin(m2) {
31615
31611
  return m2 === true ? shiftWeekdays(this._weekdaysMin, this._week.dow) : m2 ? this._weekdaysMin[m2.day()] : this._weekdaysMin;
31616
31612
  }
31617
- function handleStrictParse$1(weekdayName, format2, strict) {
31613
+ function handleStrictParse(weekdayName, format2, strict) {
31618
31614
  var i2, ii, mom, llc = weekdayName.toLocaleLowerCase();
31619
31615
  if (!this._weekdaysParse) {
31620
31616
  this._weekdaysParse = [];
@@ -31678,7 +31674,7 @@ function handleStrictParse$1(weekdayName, format2, strict) {
31678
31674
  function localeWeekdaysParse(weekdayName, format2, strict) {
31679
31675
  var i2, mom, regex;
31680
31676
  if (this._weekdaysParseExact) {
31681
- return handleStrictParse$1.call(this, weekdayName, format2, strict);
31677
+ return handleStrictParse.call(this, weekdayName, format2, strict);
31682
31678
  }
31683
31679
  if (!this._weekdaysParse) {
31684
31680
  this._weekdaysParse = [];
@@ -32468,7 +32464,7 @@ function configFromStringAndArray(config) {
32468
32464
  }
32469
32465
  tempConfig._f = config._f[i2];
32470
32466
  configFromStringAndFormat(tempConfig);
32471
- if (isValid(tempConfig)) {
32467
+ if (isValid$2(tempConfig)) {
32472
32468
  validFormatFound = true;
32473
32469
  }
32474
32470
  currentScore += getParsingFlags(tempConfig).charsLeftOver;
@@ -32513,7 +32509,7 @@ function prepareConfig(config) {
32513
32509
  var input2 = config._i, format2 = config._f;
32514
32510
  config._locale = config._locale || getLocale(config._l);
32515
32511
  if (input2 === null || format2 === void 0 && input2 === "") {
32516
- return createInvalid({ nullInput: true });
32512
+ return createInvalid$1({ nullInput: true });
32517
32513
  }
32518
32514
  if (typeof input2 === "string") {
32519
32515
  config._i = input2 = config._locale.preparse(input2);
@@ -32529,7 +32525,7 @@ function prepareConfig(config) {
32529
32525
  } else {
32530
32526
  configFromInput(config);
32531
32527
  }
32532
- if (!isValid(config)) {
32528
+ if (!isValid$2(config)) {
32533
32529
  config._d = null;
32534
32530
  }
32535
32531
  return config;
@@ -32584,14 +32580,14 @@ var prototypeMin = deprecate("moment().min is deprecated, use moment.max instead
32584
32580
  if (this.isValid() && other.isValid()) {
32585
32581
  return other < this ? this : other;
32586
32582
  } else {
32587
- return createInvalid();
32583
+ return createInvalid$1();
32588
32584
  }
32589
32585
  }), prototypeMax = deprecate("moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/", function() {
32590
32586
  var other = createLocal.apply(null, arguments);
32591
32587
  if (this.isValid() && other.isValid()) {
32592
32588
  return other > this ? this : other;
32593
32589
  } else {
32594
- return createInvalid();
32590
+ return createInvalid$1();
32595
32591
  }
32596
32592
  });
32597
32593
  function pickBy(fn2, moments) {
@@ -32654,7 +32650,7 @@ function isDurationValid(m2) {
32654
32650
  function isValid$1() {
32655
32651
  return this._isValid;
32656
32652
  }
32657
- function createInvalid$1() {
32653
+ function createInvalid() {
32658
32654
  return createDuration(NaN);
32659
32655
  }
32660
32656
  function Duration(duration) {
@@ -32756,7 +32752,7 @@ function getSetOffset(input2, keepLocalTime, keepMinutes) {
32756
32752
  }
32757
32753
  if (offset2 !== input2) {
32758
32754
  if (!keepLocalTime || this._changeInProgress) {
32759
- addSubtract(this, createDuration(input2 - offset2, "m"), 1, false);
32755
+ addSubtract$1(this, createDuration(input2 - offset2, "m"), 1, false);
32760
32756
  } else if (!this._changeInProgress) {
32761
32757
  this._changeInProgress = true;
32762
32758
  hooks.updateOffset(this, true);
@@ -32894,7 +32890,7 @@ function createDuration(input2, key) {
32894
32890
  return ret;
32895
32891
  }
32896
32892
  createDuration.fn = Duration.prototype;
32897
- createDuration.invalid = createInvalid$1;
32893
+ createDuration.invalid = createInvalid;
32898
32894
  function parseIso(inp, sign2) {
32899
32895
  var res = inp && parseFloat(inp.replace(",", "."));
32900
32896
  return (isNaN(res) ? 0 : res) * sign2;
@@ -32933,21 +32929,21 @@ function createAdder(direction, name) {
32933
32929
  period = tmp;
32934
32930
  }
32935
32931
  dur = createDuration(val, period);
32936
- addSubtract(this, dur, direction);
32932
+ addSubtract$1(this, dur, direction);
32937
32933
  return this;
32938
32934
  };
32939
32935
  }
32940
- function addSubtract(mom, duration, isAdding, updateOffset) {
32936
+ function addSubtract$1(mom, duration, isAdding, updateOffset) {
32941
32937
  var milliseconds2 = duration._milliseconds, days2 = absRound(duration._days), months2 = absRound(duration._months);
32942
32938
  if (!mom.isValid()) {
32943
32939
  return;
32944
32940
  }
32945
32941
  updateOffset = updateOffset == null ? true : updateOffset;
32946
32942
  if (months2) {
32947
- setMonth(mom, get(mom, "Month") + months2 * isAdding);
32943
+ setMonth(mom, get$2(mom, "Month") + months2 * isAdding);
32948
32944
  }
32949
32945
  if (days2) {
32950
- set$1(mom, "Date", get(mom, "Date") + days2 * isAdding);
32946
+ set(mom, "Date", get$2(mom, "Date") + days2 * isAdding);
32951
32947
  }
32952
32948
  if (milliseconds2) {
32953
32949
  mom._d.setTime(mom._d.valueOf() + milliseconds2 * isAdding);
@@ -32956,7 +32952,7 @@ function addSubtract(mom, duration, isAdding, updateOffset) {
32956
32952
  hooks.updateOffset(mom, days2 || months2);
32957
32953
  }
32958
32954
  }
32959
- var add = createAdder(1, "add"), subtract = createAdder(-1, "subtract");
32955
+ var add$1 = createAdder(1, "add"), subtract$1 = createAdder(-1, "subtract");
32960
32956
  function isString$2(input2) {
32961
32957
  return typeof input2 === "string" || input2 instanceof String;
32962
32958
  }
@@ -33024,7 +33020,7 @@ function getCalendarFormat(myMoment, now2) {
33024
33020
  var diff2 = myMoment.diff(now2, "days", true);
33025
33021
  return diff2 < -6 ? "sameElse" : diff2 < -1 ? "lastWeek" : diff2 < 0 ? "lastDay" : diff2 < 1 ? "sameDay" : diff2 < 2 ? "nextDay" : diff2 < 7 ? "nextWeek" : "sameElse";
33026
33022
  }
33027
- function calendar$1(time, formats) {
33023
+ function calendar(time, formats) {
33028
33024
  if (arguments.length === 1) {
33029
33025
  if (!arguments[0]) {
33030
33026
  time = void 0;
@@ -33040,7 +33036,7 @@ function calendar$1(time, formats) {
33040
33036
  var now2 = time || createLocal(), sod = cloneWithOffset(now2, this).startOf("day"), format2 = hooks.calendarFormat(this, sod) || "sameElse", output = formats && (isFunction$1(formats[format2]) ? formats[format2].call(this, now2) : formats[format2]);
33041
33037
  return this.format(output || this.localeData().calendar(format2, this, createLocal(now2)));
33042
33038
  }
33043
- function clone() {
33039
+ function clone$1() {
33044
33040
  return new Moment(this);
33045
33041
  }
33046
33042
  function isAfter(input2, units) {
@@ -33154,7 +33150,7 @@ hooks.defaultFormatUtc = "YYYY-MM-DDTHH:mm:ss[Z]";
33154
33150
  function toString$1() {
33155
33151
  return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ");
33156
33152
  }
33157
- function toISOString(keepOffset) {
33153
+ function toISOString$1(keepOffset) {
33158
33154
  if (!this.isValid()) {
33159
33155
  return null;
33160
33156
  }
@@ -33236,7 +33232,7 @@ function localeData() {
33236
33232
  return this._locale;
33237
33233
  }
33238
33234
  var MS_PER_SECOND = 1e3, MS_PER_MINUTE = 60 * MS_PER_SECOND, MS_PER_HOUR = 60 * MS_PER_MINUTE, MS_PER_400_YEARS = (365 * 400 + 97) * 24 * MS_PER_HOUR;
33239
- function mod$1(dividend, divisor) {
33235
+ function mod(dividend, divisor) {
33240
33236
  return (dividend % divisor + divisor) % divisor;
33241
33237
  }
33242
33238
  function localStartOfDate(y, m2, d2) {
@@ -33282,15 +33278,15 @@ function startOf(units) {
33282
33278
  break;
33283
33279
  case "hour":
33284
33280
  time = this._d.valueOf();
33285
- time -= mod$1(time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE), MS_PER_HOUR);
33281
+ time -= mod(time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE), MS_PER_HOUR);
33286
33282
  break;
33287
33283
  case "minute":
33288
33284
  time = this._d.valueOf();
33289
- time -= mod$1(time, MS_PER_MINUTE);
33285
+ time -= mod(time, MS_PER_MINUTE);
33290
33286
  break;
33291
33287
  case "second":
33292
33288
  time = this._d.valueOf();
33293
- time -= mod$1(time, MS_PER_SECOND);
33289
+ time -= mod(time, MS_PER_SECOND);
33294
33290
  break;
33295
33291
  }
33296
33292
  this._d.setTime(time);
@@ -33326,22 +33322,22 @@ function endOf(units) {
33326
33322
  break;
33327
33323
  case "hour":
33328
33324
  time = this._d.valueOf();
33329
- time += MS_PER_HOUR - mod$1(time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE), MS_PER_HOUR) - 1;
33325
+ time += MS_PER_HOUR - mod(time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE), MS_PER_HOUR) - 1;
33330
33326
  break;
33331
33327
  case "minute":
33332
33328
  time = this._d.valueOf();
33333
- time += MS_PER_MINUTE - mod$1(time, MS_PER_MINUTE) - 1;
33329
+ time += MS_PER_MINUTE - mod(time, MS_PER_MINUTE) - 1;
33334
33330
  break;
33335
33331
  case "second":
33336
33332
  time = this._d.valueOf();
33337
- time += MS_PER_SECOND - mod$1(time, MS_PER_SECOND) - 1;
33333
+ time += MS_PER_SECOND - mod(time, MS_PER_SECOND) - 1;
33338
33334
  break;
33339
33335
  }
33340
33336
  this._d.setTime(time);
33341
33337
  hooks.updateOffset(this, true);
33342
33338
  return this;
33343
33339
  }
33344
- function valueOf() {
33340
+ function valueOf$1() {
33345
33341
  return this._d.valueOf() - (this._offset || 0) * 6e4;
33346
33342
  }
33347
33343
  function unix() {
@@ -33377,8 +33373,8 @@ function toObject() {
33377
33373
  function toJSON() {
33378
33374
  return this.isValid() ? this.toISOString() : null;
33379
33375
  }
33380
- function isValid$2() {
33381
- return isValid(this);
33376
+ function isValid() {
33377
+ return isValid$2(this);
33382
33378
  }
33383
33379
  function parsingFlags() {
33384
33380
  return extend$1({}, getParsingFlags(this));
@@ -33758,93 +33754,93 @@ function getZoneAbbr() {
33758
33754
  function getZoneName() {
33759
33755
  return this._isUTC ? "Coordinated Universal Time" : "";
33760
33756
  }
33761
- var proto = Moment.prototype;
33762
- proto.add = add;
33763
- proto.calendar = calendar$1;
33764
- proto.clone = clone;
33765
- proto.diff = diff;
33766
- proto.endOf = endOf;
33767
- proto.format = format;
33768
- proto.from = from;
33769
- proto.fromNow = fromNow;
33770
- proto.to = to;
33771
- proto.toNow = toNow;
33772
- proto.get = stringGet;
33773
- proto.invalidAt = invalidAt;
33774
- proto.isAfter = isAfter;
33775
- proto.isBefore = isBefore;
33776
- proto.isBetween = isBetween;
33777
- proto.isSame = isSame;
33778
- proto.isSameOrAfter = isSameOrAfter;
33779
- proto.isSameOrBefore = isSameOrBefore;
33780
- proto.isValid = isValid$2;
33781
- proto.lang = lang;
33782
- proto.locale = locale;
33783
- proto.localeData = localeData;
33784
- proto.max = prototypeMax;
33785
- proto.min = prototypeMin;
33786
- proto.parsingFlags = parsingFlags;
33787
- proto.set = stringSet;
33788
- proto.startOf = startOf;
33789
- proto.subtract = subtract;
33790
- proto.toArray = toArray;
33791
- proto.toObject = toObject;
33792
- proto.toDate = toDate;
33793
- proto.toISOString = toISOString;
33794
- proto.inspect = inspect;
33757
+ var proto$2 = Moment.prototype;
33758
+ proto$2.add = add$1;
33759
+ proto$2.calendar = calendar;
33760
+ proto$2.clone = clone$1;
33761
+ proto$2.diff = diff;
33762
+ proto$2.endOf = endOf;
33763
+ proto$2.format = format;
33764
+ proto$2.from = from;
33765
+ proto$2.fromNow = fromNow;
33766
+ proto$2.to = to;
33767
+ proto$2.toNow = toNow;
33768
+ proto$2.get = stringGet;
33769
+ proto$2.invalidAt = invalidAt;
33770
+ proto$2.isAfter = isAfter;
33771
+ proto$2.isBefore = isBefore;
33772
+ proto$2.isBetween = isBetween;
33773
+ proto$2.isSame = isSame;
33774
+ proto$2.isSameOrAfter = isSameOrAfter;
33775
+ proto$2.isSameOrBefore = isSameOrBefore;
33776
+ proto$2.isValid = isValid;
33777
+ proto$2.lang = lang;
33778
+ proto$2.locale = locale;
33779
+ proto$2.localeData = localeData;
33780
+ proto$2.max = prototypeMax;
33781
+ proto$2.min = prototypeMin;
33782
+ proto$2.parsingFlags = parsingFlags;
33783
+ proto$2.set = stringSet;
33784
+ proto$2.startOf = startOf;
33785
+ proto$2.subtract = subtract$1;
33786
+ proto$2.toArray = toArray;
33787
+ proto$2.toObject = toObject;
33788
+ proto$2.toDate = toDate;
33789
+ proto$2.toISOString = toISOString$1;
33790
+ proto$2.inspect = inspect;
33795
33791
  if (typeof Symbol !== "undefined" && Symbol.for != null) {
33796
- proto[Symbol.for("nodejs.util.inspect.custom")] = function() {
33792
+ proto$2[Symbol.for("nodejs.util.inspect.custom")] = function() {
33797
33793
  return "Moment<" + this.format() + ">";
33798
33794
  };
33799
33795
  }
33800
- proto.toJSON = toJSON;
33801
- proto.toString = toString$1;
33802
- proto.unix = unix;
33803
- proto.valueOf = valueOf;
33804
- proto.creationData = creationData;
33805
- proto.eraName = getEraName;
33806
- proto.eraNarrow = getEraNarrow;
33807
- proto.eraAbbr = getEraAbbr;
33808
- proto.eraYear = getEraYear;
33809
- proto.year = getSetYear;
33810
- proto.isLeapYear = getIsLeapYear;
33811
- proto.weekYear = getSetWeekYear;
33812
- proto.isoWeekYear = getSetISOWeekYear;
33813
- proto.quarter = proto.quarters = getSetQuarter;
33814
- proto.month = getSetMonth;
33815
- proto.daysInMonth = getDaysInMonth;
33816
- proto.week = proto.weeks = getSetWeek;
33817
- proto.isoWeek = proto.isoWeeks = getSetISOWeek;
33818
- proto.weeksInYear = getWeeksInYear;
33819
- proto.weeksInWeekYear = getWeeksInWeekYear;
33820
- proto.isoWeeksInYear = getISOWeeksInYear;
33821
- proto.isoWeeksInISOWeekYear = getISOWeeksInISOWeekYear;
33822
- proto.date = getSetDayOfMonth;
33823
- proto.day = proto.days = getSetDayOfWeek;
33824
- proto.weekday = getSetLocaleDayOfWeek;
33825
- proto.isoWeekday = getSetISODayOfWeek;
33826
- proto.dayOfYear = getSetDayOfYear;
33827
- proto.hour = proto.hours = getSetHour;
33828
- proto.minute = proto.minutes = getSetMinute;
33829
- proto.second = proto.seconds = getSetSecond;
33830
- proto.millisecond = proto.milliseconds = getSetMillisecond;
33831
- proto.utcOffset = getSetOffset;
33832
- proto.utc = setOffsetToUTC;
33833
- proto.local = setOffsetToLocal;
33834
- proto.parseZone = setOffsetToParsedOffset;
33835
- proto.hasAlignedHourOffset = hasAlignedHourOffset;
33836
- proto.isDST = isDaylightSavingTime;
33837
- proto.isLocal = isLocal;
33838
- proto.isUtcOffset = isUtcOffset;
33839
- proto.isUtc = isUtc;
33840
- proto.isUTC = isUtc;
33841
- proto.zoneAbbr = getZoneAbbr;
33842
- proto.zoneName = getZoneName;
33843
- proto.dates = deprecate("dates accessor is deprecated. Use date instead.", getSetDayOfMonth);
33844
- proto.months = deprecate("months accessor is deprecated. Use month instead", getSetMonth);
33845
- proto.years = deprecate("years accessor is deprecated. Use year instead", getSetYear);
33846
- proto.zone = deprecate("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/", getSetZone);
33847
- proto.isDSTShifted = deprecate("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information", isDaylightSavingTimeShifted);
33796
+ proto$2.toJSON = toJSON;
33797
+ proto$2.toString = toString$1;
33798
+ proto$2.unix = unix;
33799
+ proto$2.valueOf = valueOf$1;
33800
+ proto$2.creationData = creationData;
33801
+ proto$2.eraName = getEraName;
33802
+ proto$2.eraNarrow = getEraNarrow;
33803
+ proto$2.eraAbbr = getEraAbbr;
33804
+ proto$2.eraYear = getEraYear;
33805
+ proto$2.year = getSetYear;
33806
+ proto$2.isLeapYear = getIsLeapYear;
33807
+ proto$2.weekYear = getSetWeekYear;
33808
+ proto$2.isoWeekYear = getSetISOWeekYear;
33809
+ proto$2.quarter = proto$2.quarters = getSetQuarter;
33810
+ proto$2.month = getSetMonth;
33811
+ proto$2.daysInMonth = getDaysInMonth;
33812
+ proto$2.week = proto$2.weeks = getSetWeek;
33813
+ proto$2.isoWeek = proto$2.isoWeeks = getSetISOWeek;
33814
+ proto$2.weeksInYear = getWeeksInYear;
33815
+ proto$2.weeksInWeekYear = getWeeksInWeekYear;
33816
+ proto$2.isoWeeksInYear = getISOWeeksInYear;
33817
+ proto$2.isoWeeksInISOWeekYear = getISOWeeksInISOWeekYear;
33818
+ proto$2.date = getSetDayOfMonth;
33819
+ proto$2.day = proto$2.days = getSetDayOfWeek;
33820
+ proto$2.weekday = getSetLocaleDayOfWeek;
33821
+ proto$2.isoWeekday = getSetISODayOfWeek;
33822
+ proto$2.dayOfYear = getSetDayOfYear;
33823
+ proto$2.hour = proto$2.hours = getSetHour;
33824
+ proto$2.minute = proto$2.minutes = getSetMinute;
33825
+ proto$2.second = proto$2.seconds = getSetSecond;
33826
+ proto$2.millisecond = proto$2.milliseconds = getSetMillisecond;
33827
+ proto$2.utcOffset = getSetOffset;
33828
+ proto$2.utc = setOffsetToUTC;
33829
+ proto$2.local = setOffsetToLocal;
33830
+ proto$2.parseZone = setOffsetToParsedOffset;
33831
+ proto$2.hasAlignedHourOffset = hasAlignedHourOffset;
33832
+ proto$2.isDST = isDaylightSavingTime;
33833
+ proto$2.isLocal = isLocal;
33834
+ proto$2.isUtcOffset = isUtcOffset;
33835
+ proto$2.isUtc = isUtc;
33836
+ proto$2.isUTC = isUtc;
33837
+ proto$2.zoneAbbr = getZoneAbbr;
33838
+ proto$2.zoneName = getZoneName;
33839
+ proto$2.dates = deprecate("dates accessor is deprecated. Use date instead.", getSetDayOfMonth);
33840
+ proto$2.months = deprecate("months accessor is deprecated. Use month instead", getSetMonth);
33841
+ proto$2.years = deprecate("years accessor is deprecated. Use year instead", getSetYear);
33842
+ proto$2.zone = deprecate("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/", getSetZone);
33843
+ proto$2.isDSTShifted = deprecate("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information", isDaylightSavingTimeShifted);
33848
33844
  function createUnix(input2) {
33849
33845
  return createLocal(input2 * 1e3);
33850
33846
  }
@@ -33855,15 +33851,15 @@ function preParsePostFormat(string3) {
33855
33851
  return string3;
33856
33852
  }
33857
33853
  var proto$1 = Locale.prototype;
33858
- proto$1.calendar = calendar;
33854
+ proto$1.calendar = calendar$1;
33859
33855
  proto$1.longDateFormat = longDateFormat;
33860
33856
  proto$1.invalidDate = invalidDate;
33861
33857
  proto$1.ordinal = ordinal;
33862
33858
  proto$1.preparse = preParsePostFormat;
33863
33859
  proto$1.postformat = preParsePostFormat;
33864
- proto$1.relativeTime = relativeTime;
33860
+ proto$1.relativeTime = relativeTime$1;
33865
33861
  proto$1.pastFuture = pastFuture;
33866
- proto$1.set = set;
33862
+ proto$1.set = set$1;
33867
33863
  proto$1.eras = localeEras;
33868
33864
  proto$1.erasParse = localeErasParse;
33869
33865
  proto$1.erasConvertYear = localeErasConvertYear;
@@ -33975,7 +33971,7 @@ getSetGlobalLocale("en", {
33975
33971
  hooks.lang = deprecate("moment.lang is deprecated. Use moment.locale instead.", getSetGlobalLocale);
33976
33972
  hooks.langData = deprecate("moment.langData is deprecated. Use moment.localeData instead.", getLocale);
33977
33973
  var mathAbs = Math.abs;
33978
- function abs() {
33974
+ function abs$1() {
33979
33975
  var data2 = this._data;
33980
33976
  this._milliseconds = mathAbs(this._milliseconds);
33981
33977
  this._days = mathAbs(this._days);
@@ -33988,18 +33984,18 @@ function abs() {
33988
33984
  data2.years = mathAbs(data2.years);
33989
33985
  return this;
33990
33986
  }
33991
- function addSubtract$1(duration, input2, value, direction) {
33987
+ function addSubtract(duration, input2, value, direction) {
33992
33988
  var other = createDuration(input2, value);
33993
33989
  duration._milliseconds += direction * other._milliseconds;
33994
33990
  duration._days += direction * other._days;
33995
33991
  duration._months += direction * other._months;
33996
33992
  return duration._bubble();
33997
33993
  }
33998
- function add$1(input2, value) {
33999
- return addSubtract$1(this, input2, value, 1);
33994
+ function add(input2, value) {
33995
+ return addSubtract(this, input2, value, 1);
34000
33996
  }
34001
- function subtract$1(input2, value) {
34002
- return addSubtract$1(this, input2, value, -1);
33997
+ function subtract(input2, value) {
33998
+ return addSubtract(this, input2, value, -1);
34003
33999
  }
34004
34000
  function absCeil(number4) {
34005
34001
  if (number4 < 0) {
@@ -34076,7 +34072,7 @@ function as(units) {
34076
34072
  }
34077
34073
  }
34078
34074
  }
34079
- function valueOf$1() {
34075
+ function valueOf() {
34080
34076
  if (!this.isValid()) {
34081
34077
  return NaN;
34082
34078
  }
@@ -34088,10 +34084,10 @@ function makeAs(alias) {
34088
34084
  };
34089
34085
  }
34090
34086
  var asMilliseconds = makeAs("ms"), asSeconds = makeAs("s"), asMinutes = makeAs("m"), asHours = makeAs("h"), asDays = makeAs("d"), asWeeks = makeAs("w"), asMonths = makeAs("M"), asQuarters = makeAs("Q"), asYears = makeAs("y");
34091
- function clone$1() {
34087
+ function clone() {
34092
34088
  return createDuration(this);
34093
34089
  }
34094
- function get$2(units) {
34090
+ function get(units) {
34095
34091
  units = normalizeUnits(units);
34096
34092
  return this.isValid() ? this[units + "s"]() : NaN;
34097
34093
  }
@@ -34116,7 +34112,7 @@ var round = Math.round, thresholds = {
34116
34112
  function substituteTimeAgo(string3, number4, withoutSuffix, isFuture, locale2) {
34117
34113
  return locale2.relativeTime(number4 || 1, !!withoutSuffix, string3, isFuture);
34118
34114
  }
34119
- function relativeTime$1(posNegDuration, withoutSuffix, thresholds2, locale2) {
34115
+ function relativeTime(posNegDuration, withoutSuffix, thresholds2, locale2) {
34120
34116
  var duration = createDuration(posNegDuration).abs(), seconds2 = round(duration.as("s")), minutes2 = round(duration.as("m")), hours2 = round(duration.as("h")), days2 = round(duration.as("d")), months2 = round(duration.as("M")), weeks2 = round(duration.as("w")), years2 = round(duration.as("y")), a2 = seconds2 <= thresholds2.ss && ["s", seconds2] || seconds2 < thresholds2.s && ["ss", seconds2] || minutes2 <= 1 && ["m"] || minutes2 < thresholds2.m && ["mm", minutes2] || hours2 <= 1 && ["h"] || hours2 < thresholds2.h && ["hh", hours2] || days2 <= 1 && ["d"] || days2 < thresholds2.d && ["dd", days2];
34121
34117
  if (thresholds2.w != null) {
34122
34118
  a2 = a2 || weeks2 <= 1 && ["w"] || weeks2 < thresholds2.w && ["ww", weeks2];
@@ -34169,21 +34165,21 @@ function humanize(argWithSuffix, argThresholds) {
34169
34165
  }
34170
34166
  }
34171
34167
  locale2 = this.localeData();
34172
- output = relativeTime$1(this, !withSuffix, th, locale2);
34168
+ output = relativeTime(this, !withSuffix, th, locale2);
34173
34169
  if (withSuffix) {
34174
34170
  output = locale2.pastFuture(+this, output);
34175
34171
  }
34176
34172
  return locale2.postformat(output);
34177
34173
  }
34178
- var abs$1 = Math.abs;
34174
+ var abs = Math.abs;
34179
34175
  function sign(x2) {
34180
34176
  return (x2 > 0) - (x2 < 0) || +x2;
34181
34177
  }
34182
- function toISOString$1() {
34178
+ function toISOString() {
34183
34179
  if (!this.isValid()) {
34184
34180
  return this.localeData().invalidDate();
34185
34181
  }
34186
- var seconds2 = abs$1(this._milliseconds) / 1e3, days2 = abs$1(this._days), months2 = abs$1(this._months), minutes2, hours2, years2, s2, total = this.asSeconds(), totalSign, ymSign, daysSign, hmsSign;
34182
+ var seconds2 = abs(this._milliseconds) / 1e3, days2 = abs(this._days), months2 = abs(this._months), minutes2, hours2, years2, s2, total = this.asSeconds(), totalSign, ymSign, daysSign, hmsSign;
34187
34183
  if (!total) {
34188
34184
  return "P0D";
34189
34185
  }
@@ -34200,41 +34196,41 @@ function toISOString$1() {
34200
34196
  hmsSign = sign(this._milliseconds) !== sign(total) ? "-" : "";
34201
34197
  return totalSign + "P" + (years2 ? ymSign + years2 + "Y" : "") + (months2 ? ymSign + months2 + "M" : "") + (days2 ? daysSign + days2 + "D" : "") + (hours2 || minutes2 || seconds2 ? "T" : "") + (hours2 ? hmsSign + hours2 + "H" : "") + (minutes2 ? hmsSign + minutes2 + "M" : "") + (seconds2 ? hmsSign + s2 + "S" : "");
34202
34198
  }
34203
- var proto$2 = Duration.prototype;
34204
- proto$2.isValid = isValid$1;
34205
- proto$2.abs = abs;
34206
- proto$2.add = add$1;
34207
- proto$2.subtract = subtract$1;
34208
- proto$2.as = as;
34209
- proto$2.asMilliseconds = asMilliseconds;
34210
- proto$2.asSeconds = asSeconds;
34211
- proto$2.asMinutes = asMinutes;
34212
- proto$2.asHours = asHours;
34213
- proto$2.asDays = asDays;
34214
- proto$2.asWeeks = asWeeks;
34215
- proto$2.asMonths = asMonths;
34216
- proto$2.asQuarters = asQuarters;
34217
- proto$2.asYears = asYears;
34218
- proto$2.valueOf = valueOf$1;
34219
- proto$2._bubble = bubble;
34220
- proto$2.clone = clone$1;
34221
- proto$2.get = get$2;
34222
- proto$2.milliseconds = milliseconds;
34223
- proto$2.seconds = seconds;
34224
- proto$2.minutes = minutes;
34225
- proto$2.hours = hours;
34226
- proto$2.days = days;
34227
- proto$2.weeks = weeks;
34228
- proto$2.months = months;
34229
- proto$2.years = years;
34230
- proto$2.humanize = humanize;
34231
- proto$2.toISOString = toISOString$1;
34232
- proto$2.toString = toISOString$1;
34233
- proto$2.toJSON = toISOString$1;
34234
- proto$2.locale = locale;
34235
- proto$2.localeData = localeData;
34236
- proto$2.toIsoString = deprecate("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)", toISOString$1);
34237
- proto$2.lang = lang;
34199
+ var proto = Duration.prototype;
34200
+ proto.isValid = isValid$1;
34201
+ proto.abs = abs$1;
34202
+ proto.add = add;
34203
+ proto.subtract = subtract;
34204
+ proto.as = as;
34205
+ proto.asMilliseconds = asMilliseconds;
34206
+ proto.asSeconds = asSeconds;
34207
+ proto.asMinutes = asMinutes;
34208
+ proto.asHours = asHours;
34209
+ proto.asDays = asDays;
34210
+ proto.asWeeks = asWeeks;
34211
+ proto.asMonths = asMonths;
34212
+ proto.asQuarters = asQuarters;
34213
+ proto.asYears = asYears;
34214
+ proto.valueOf = valueOf;
34215
+ proto._bubble = bubble;
34216
+ proto.clone = clone;
34217
+ proto.get = get;
34218
+ proto.milliseconds = milliseconds;
34219
+ proto.seconds = seconds;
34220
+ proto.minutes = minutes;
34221
+ proto.hours = hours;
34222
+ proto.days = days;
34223
+ proto.weeks = weeks;
34224
+ proto.months = months;
34225
+ proto.years = years;
34226
+ proto.humanize = humanize;
34227
+ proto.toISOString = toISOString;
34228
+ proto.toString = toISOString;
34229
+ proto.toJSON = toISOString;
34230
+ proto.locale = locale;
34231
+ proto.localeData = localeData;
34232
+ proto.toIsoString = deprecate("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)", toISOString);
34233
+ proto.lang = lang;
34238
34234
  addFormatToken("X", 0, 0, "unix");
34239
34235
  addFormatToken("x", 0, 0, "valueOf");
34240
34236
  addRegexToken("x", matchSigned);
@@ -34248,7 +34244,7 @@ addParseToken("x", function(input2, array4, config) {
34248
34244
  //! moment.js
34249
34245
  hooks.version = "2.29.4";
34250
34246
  setHookCallback(createLocal);
34251
- hooks.fn = proto;
34247
+ hooks.fn = proto$2;
34252
34248
  hooks.min = min;
34253
34249
  hooks.max = max;
34254
34250
  hooks.now = now;
@@ -34257,7 +34253,7 @@ hooks.unix = createUnix;
34257
34253
  hooks.months = listMonths;
34258
34254
  hooks.isDate = isDate$1;
34259
34255
  hooks.locale = getSetGlobalLocale;
34260
- hooks.invalid = createInvalid;
34256
+ hooks.invalid = createInvalid$1;
34261
34257
  hooks.duration = createDuration;
34262
34258
  hooks.isMoment = isMoment;
34263
34259
  hooks.weekdays = listWeekdays;
@@ -34274,7 +34270,7 @@ hooks.normalizeUnits = normalizeUnits;
34274
34270
  hooks.relativeTimeRounding = getSetRelativeTimeRounding;
34275
34271
  hooks.relativeTimeThreshold = getSetRelativeTimeThreshold;
34276
34272
  hooks.calendarFormat = getCalendarFormat;
34277
- hooks.prototype = proto;
34273
+ hooks.prototype = proto$2;
34278
34274
  hooks.HTML5_FMT = {
34279
34275
  DATETIME_LOCAL: "YYYY-MM-DDTHH:mm",
34280
34276
  DATETIME_LOCAL_SECONDS: "YYYY-MM-DDTHH:mm:ss",
@@ -40802,6 +40798,10 @@ const _sfc_main$c = {
40802
40798
  modelValue: {
40803
40799
  type: String,
40804
40800
  required: true
40801
+ },
40802
+ placeholder: {
40803
+ type: String,
40804
+ default: "\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u0434\u0430\u0442\u0443"
40805
40805
  }
40806
40806
  },
40807
40807
  emits: ["update:modelValue"],
@@ -40881,7 +40881,7 @@ const _sfc_main$c = {
40881
40881
  class: "date-picker-plus__wrapper",
40882
40882
  onClick: toggleDatePicker
40883
40883
  }),
40884
- __props.modelValue ? (openBlock(), createElementBlock("span", _hoisted_2$b, toDisplayString(displayDate(__props.modelValue)), 1)) : (openBlock(), createElementBlock("span", _hoisted_3$a, "\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u0434\u0430\u0442\u0443")),
40884
+ __props.modelValue ? (openBlock(), createElementBlock("span", _hoisted_2$b, toDisplayString(displayDate(__props.modelValue)), 1)) : (openBlock(), createElementBlock("span", _hoisted_3$a, toDisplayString(__props.placeholder), 1)),
40885
40885
  _hoisted_4$7,
40886
40886
  isOpen.value ? (openBlock(), createElementBlock("div", {
40887
40887
  key: 2,
@@ -40920,6 +40920,42 @@ const _sfc_main$c = {
40920
40920
  };
40921
40921
  }
40922
40922
  };
40923
+ const placeholders = {
40924
+ name: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0424\u0418\u041E \u043F\u043E\u043B\u043D\u043E\u0441\u0442\u044C\u044E",
40925
+ nationality: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0433\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E",
40926
+ job: "\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u0434\u043E\u043B\u0436\u043D\u043E\u0441\u0442\u044C",
40927
+ dates: {
40928
+ ogrn: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0434\u0430\u0442\u0443",
40929
+ passport: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0434\u0430\u0442\u0443 \u0432\u044B\u0434\u0430\u0447\u0438",
40930
+ birth: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0434\u0430\u0442\u0443 \u0440\u043E\u0436\u0434\u0435\u043D\u0438\u044F"
40931
+ },
40932
+ passport: {
40933
+ number: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0441\u0435\u0440\u0438\u044E \u0438 \u043D\u043E\u043C\u0435\u0440",
40934
+ code: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u043E\u0434",
40935
+ organ: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0441\u0432\u0435\u0434\u0435\u043D\u0438\u044F \u043E\u0431 \u043E\u0440\u0433\u0430\u043D\u0435, \u0432\u044B\u0434\u0430\u0432\u0448\u0435\u043C \u043F\u0430\u0441\u043F\u043E\u0440\u0442"
40936
+ },
40937
+ birthPlace: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u043C\u0435\u0441\u0442\u043E \u0440\u043E\u0436\u0434\u0435\u043D\u0438\u044F",
40938
+ address: {
40939
+ registration: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0430\u0434\u0440\u0435\u0441 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438",
40940
+ actual: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0444\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441",
40941
+ actualEnter: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0444\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441",
40942
+ legal: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u044E\u0440\u0438\u0434\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441",
40943
+ legalEnter: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u044E\u0440\u0438\u0434\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441"
40944
+ },
40945
+ share: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0434\u043E\u043B\u044E",
40946
+ companyName: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043F\u043E\u043B\u043D\u043E\u0435 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438",
40947
+ companyNameMiddle: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438",
40948
+ companyNameShort: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0440\u0430\u0442\u043A\u043E\u0435 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438",
40949
+ inn: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0418\u041D\u041D",
40950
+ ogrn: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u041E\u0413\u0420\u041D",
40951
+ director: {
40952
+ name: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0424\u0418\u041E \u0440\u0443\u043A\u043E\u0432\u043E\u0434\u0438\u0442\u0435\u043B\u044F",
40953
+ job: "\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u0434\u043E\u043B\u0436\u043D\u043E\u0441\u0442\u044C",
40954
+ job2: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0434\u043E\u043B\u0436\u043D\u043E\u0441\u0442\u044C \u0440\u0443\u043A\u043E\u0432\u043E\u0434\u0438\u0442\u0435\u043B\u044F"
40955
+ },
40956
+ proxyNumber: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043D\u043E\u043C\u0435\u0440 \u0434\u043E\u0432\u0435\u0440\u0435\u043D\u043D\u043E\u0441\u0442\u0438",
40957
+ document: "\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442"
40958
+ };
40923
40959
  var plFormGeneral_vue_vue_type_style_index_0_lang = "";
40924
40960
  const _hoisted_1$b = {
40925
40961
  id: "container-general",
@@ -40955,24 +40991,25 @@ const _sfc_main$b = {
40955
40991
  modelValue: unref(formClient).fullName,
40956
40992
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => unref(formClient).fullName = $event),
40957
40993
  area: true,
40958
- placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043F\u043E\u043B\u043D\u043E\u0435 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438",
40994
+ placeholder: unref(placeholders).companyName,
40959
40995
  label: "\u041F\u043E\u043B\u043D\u043E\u0435 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438"
40960
- }, null, 8, ["modelValue"]),
40996
+ }, null, 8, ["modelValue", "placeholder"]),
40961
40997
  createVNode(_sfc_main$f, {
40962
40998
  class: "mt-32",
40963
40999
  modelValue: unref(formClient).name,
40964
41000
  "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => unref(formClient).name = $event),
40965
41001
  label: "\u041A\u0440\u0430\u0442\u043A\u043E\u0435 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438",
40966
- placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0440\u0430\u0442\u043A\u043E\u0435 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438"
40967
- }, null, 8, ["modelValue"]),
41002
+ placeholder: unref(placeholders).companyNameShort
41003
+ }, null, 8, ["modelValue", "placeholder"]),
40968
41004
  createVNode(_sfc_main$g, { class: "mt-32" }),
40969
41005
  createElementVNode("div", _hoisted_3$9, [
40970
41006
  createVNode(_component_el_form_item, { label: "\u0414\u0430\u0442\u0430 \u043F\u0440\u0438\u0441\u0432\u043E\u0435\u043D\u0438\u044F \u041E\u0413\u0420\u041D" }, {
40971
41007
  default: withCtx(() => [
40972
41008
  createVNode(_sfc_main$c, {
40973
41009
  modelValue: unref(formClient).ogrnDate,
40974
- "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => unref(formClient).ogrnDate = $event)
40975
- }, null, 8, ["modelValue"])
41010
+ "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => unref(formClient).ogrnDate = $event),
41011
+ placeholder: unref(placeholders).dates.ogrn
41012
+ }, null, 8, ["modelValue", "placeholder"])
40976
41013
  ]),
40977
41014
  _: 1
40978
41015
  }),
@@ -40981,32 +41018,34 @@ const _sfc_main$b = {
40981
41018
  disabled: true,
40982
41019
  modelValue: unref(formClient).inn,
40983
41020
  "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => unref(formClient).inn = $event),
40984
- label: "\u0418\u041D\u041D"
40985
- }, null, 8, ["modelValue"])
41021
+ label: "\u0418\u041D\u041D",
41022
+ placeholder: unref(placeholders).inn
41023
+ }, null, 8, ["modelValue", "placeholder"])
40986
41024
  ]),
40987
41025
  createVNode(_sfc_main$f, {
40988
41026
  class: "width-260",
40989
41027
  disabled: true,
40990
41028
  modelValue: unref(formClient).ogrn,
40991
41029
  "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => unref(formClient).ogrn = $event),
40992
- label: "\u041E\u0413\u0420\u041D"
40993
- }, null, 8, ["modelValue"]),
41030
+ label: "\u041E\u0413\u0420\u041D",
41031
+ placeholder: unref(placeholders).ogrn
41032
+ }, null, 8, ["modelValue", "placeholder"]),
40994
41033
  createVNode(_sfc_main$f, {
40995
41034
  class: "mt-32",
40996
41035
  modelValue: unref(formClient).LAddress,
40997
41036
  "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => unref(formClient).LAddress = $event),
40998
41037
  area: true,
40999
- placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u044E\u0440\u0438\u0434\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441",
41038
+ placeholder: unref(placeholders).address.legalEnter,
41000
41039
  label: "\u042E\u0440\u0438\u0434\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441"
41001
- }, null, 8, ["modelValue"]),
41040
+ }, null, 8, ["modelValue", "placeholder"]),
41002
41041
  withDirectives(createVNode(_sfc_main$f, {
41003
41042
  class: "mt-32",
41004
41043
  modelValue: unref(formClient).FAddress,
41005
41044
  "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => unref(formClient).FAddress = $event),
41006
41045
  area: true,
41007
- placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0444\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441",
41046
+ placeholder: unref(placeholders).address.actualEnter,
41008
41047
  label: "\u0424\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441"
41009
- }, null, 8, ["modelValue"]), [
41048
+ }, null, 8, ["modelValue", "placeholder"]), [
41010
41049
  [vShow, !unref(formClient).isMatches]
41011
41050
  ]),
41012
41051
  createVNode(_sfc_main$e, {
@@ -41026,7 +41065,7 @@ var tabs = "";
41026
41065
  var tabPane = "";
41027
41066
  var _imports_3 = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNi4zNDgzIDYuMzQwNTJDNi42NDExOSA2LjA0NzYzIDcuMTE2MDYgNi4wNDc2MyA3LjQwODk2IDYuMzQwNTJMMTIuMDA1MSAxMC45MzY3TDE2LjU5NTggNi4zNDYwNEMxNi44ODg3IDYuMDUzMTUgMTcuMzYzNiA2LjA1MzE1IDE3LjY1NjUgNi4zNDYwNUMxNy45NDk0IDYuNjM4OTQgMTcuOTQ5NCA3LjExMzgyIDE3LjY1NjUgNy40MDY3MUwxMy4wNjU4IDExLjk5NzNMMTcuNjU2NSAxNi41ODhDMTcuOTQ5NCAxNi44ODA5IDE3Ljk0OTQgMTcuMzU1OCAxNy42NTY1IDE3LjY0ODdDMTcuMzYzNiAxNy45NDE2IDE2Ljg4ODcgMTcuOTQxNiAxNi41OTU4IDE3LjY0ODdMMTIuMDA1MSAxMy4wNThMNy40MDMzNyAxNy42NTk3QzcuMTEwNDggMTcuOTUyNiA2LjYzNTYxIDE3Ljk1MjYgNi4zNDI3MSAxNy42NTk3QzYuMDQ5ODIgMTcuMzY2OCA2LjA0OTgyIDE2Ljg5MTkgNi4zNDI3MiAxNi41OTlMMTAuOTQ0NSAxMS45OTczTDYuMzQ4MjkgNy40MDExOEM2LjA1NTQgNy4xMDgyOSA2LjA1NTQgNi42MzM0MSA2LjM0ODMgNi4zNDA1MloiIGZpbGw9IiM2Rjc2N0UiLz4NCjwvc3ZnPg0K";
41028
41067
  var plPopupForm_vue_vue_type_style_index_0_lang = "";
41029
- const _hoisted_1$a = { class: "container popup-content" };
41068
+ const _hoisted_1$a = { class: "container popup-content popup__title-container" };
41030
41069
  const _hoisted_2$9 = { class: "d-flex align-items-center justify-content-between" };
41031
41070
  const _hoisted_3$8 = { class: "popup-title" };
41032
41071
  const _hoisted_4$6 = /* @__PURE__ */ createElementVNode("img", { src: _imports_3 }, null, -1);
@@ -41184,16 +41223,16 @@ const _hoisted_12$2 = { class: "itemPhysical__decorText" };
41184
41223
  const _hoisted_13$2 = { class: "pl-list__percent" };
41185
41224
  const _hoisted_14$2 = {
41186
41225
  key: 0,
41187
- class: "itemPhysical__center d-flex flex-column"
41226
+ class: "itemPhysical__center d-flex flex-column",
41227
+ style: { "margin-right": "auto" }
41188
41228
  };
41189
41229
  const _hoisted_15$1 = { class: "itemPhysical__percent" };
41190
41230
  const _hoisted_16$1 = /* @__PURE__ */ createElementVNode("span", { class: "itemPhysical__decorText" }, "\u0434\u043E\u043B\u044F", -1);
41191
- const _hoisted_17$1 = { key: 1 };
41192
- const _hoisted_18$1 = {
41193
- key: 0,
41231
+ const _hoisted_17$1 = {
41232
+ key: 1,
41194
41233
  class: "main-contact"
41195
41234
  };
41196
- const _hoisted_19$1 = /* @__PURE__ */ createElementVNode("div", { class: "d-flex gap-3" }, [
41235
+ const _hoisted_18$1 = /* @__PURE__ */ createElementVNode("div", { class: "d-flex gap-16" }, [
41197
41236
  /* @__PURE__ */ createElementVNode("img", {
41198
41237
  src: _imports_1$1,
41199
41238
  alt: "edit"
@@ -41203,15 +41242,15 @@ const _hoisted_19$1 = /* @__PURE__ */ createElementVNode("div", { class: "d-flex
41203
41242
  alt: "delete"
41204
41243
  })
41205
41244
  ], -1);
41206
- const _hoisted_20$1 = {
41245
+ const _hoisted_19$1 = {
41207
41246
  key: 0,
41208
41247
  class: "pl-list__line"
41209
41248
  };
41210
- const _hoisted_21$1 = { class: "d-flex align-items-center justify-content-between" };
41211
- const _hoisted_22$1 = { class: "itemPhysical__left d-flex flex-column" };
41212
- const _hoisted_23$1 = { class: "default-text topText" };
41213
- const _hoisted_24$1 = { class: "itemPhysical__decorText" };
41214
- const _hoisted_25$1 = /* @__PURE__ */ createElementVNode("div", { class: "d-flex gap-3" }, [
41249
+ const _hoisted_20$1 = { class: "d-flex align-items-center justify-content-between" };
41250
+ const _hoisted_21$1 = { class: "itemPhysical__left d-flex flex-column" };
41251
+ const _hoisted_22$1 = { class: "default-text topText" };
41252
+ const _hoisted_23$1 = { class: "itemPhysical__decorText" };
41253
+ const _hoisted_24$1 = /* @__PURE__ */ createElementVNode("div", { class: "d-flex gap-3" }, [
41215
41254
  /* @__PURE__ */ createElementVNode("img", {
41216
41255
  src: _imports_1$1,
41217
41256
  alt: "edit"
@@ -41221,7 +41260,7 @@ const _hoisted_25$1 = /* @__PURE__ */ createElementVNode("div", { class: "d-flex
41221
41260
  alt: "delete"
41222
41261
  })
41223
41262
  ], -1);
41224
- const _hoisted_26$1 = {
41263
+ const _hoisted_25$1 = {
41225
41264
  key: 0,
41226
41265
  class: "pl-list__line"
41227
41266
  };
@@ -41309,27 +41348,25 @@ const _sfc_main$9 = {
41309
41348
  createElementVNode("span", _hoisted_15$1, toDisplayString(item.percent) + "%", 1),
41310
41349
  _hoisted_16$1
41311
41350
  ])) : createCommentVNode("", true),
41312
- __props.isMain ? (openBlock(), createElementBlock("div", _hoisted_17$1, [
41313
- item.isMain ? (openBlock(), createElementBlock("div", _hoisted_18$1, "\u041E\u0441\u043D\u043E\u0432\u043D\u043E\u0439")) : createCommentVNode("", true)
41314
- ])) : createCommentVNode("", true),
41315
- _hoisted_19$1
41351
+ __props.isMain && item.isMain ? (openBlock(), createElementBlock("div", _hoisted_17$1, "\u041E\u0441\u043D\u043E\u0432\u043D\u043E\u0439")) : createCommentVNode("", true),
41352
+ _hoisted_18$1
41316
41353
  ])
41317
41354
  ]),
41318
- index !== __props.items.length - 1 ? (openBlock(), createElementBlock("div", _hoisted_20$1)) : createCommentVNode("", true)
41355
+ index !== __props.items.length - 1 ? (openBlock(), createElementBlock("div", _hoisted_19$1)) : createCommentVNode("", true)
41319
41356
  ]);
41320
41357
  }), 128)) : (openBlock(true), createElementBlock(Fragment, { key: 1 }, renderList(__props.items, (item, index) => {
41321
41358
  return openBlock(), createElementBlock("div", {
41322
41359
  key: item.id,
41323
41360
  class: "itemPhysical pl-list__item-container"
41324
41361
  }, [
41325
- createElementVNode("div", _hoisted_21$1, [
41326
- createElementVNode("div", _hoisted_22$1, [
41327
- createElementVNode("span", _hoisted_23$1, toDisplayString(item.name), 1),
41328
- createElementVNode("span", _hoisted_24$1, toDisplayString(item.status), 1)
41362
+ createElementVNode("div", _hoisted_20$1, [
41363
+ createElementVNode("div", _hoisted_21$1, [
41364
+ createElementVNode("span", _hoisted_22$1, toDisplayString(item.name), 1),
41365
+ createElementVNode("span", _hoisted_23$1, toDisplayString(item.status), 1)
41329
41366
  ]),
41330
- _hoisted_25$1
41367
+ _hoisted_24$1
41331
41368
  ]),
41332
- index !== __props.items.length - 1 ? (openBlock(), createElementBlock("div", _hoisted_26$1)) : createCommentVNode("", true)
41369
+ index !== __props.items.length - 1 ? (openBlock(), createElementBlock("div", _hoisted_25$1)) : createCommentVNode("", true)
41333
41370
  ]);
41334
41371
  }), 128))
41335
41372
  ], 512), [
@@ -41447,48 +41484,54 @@ const _sfc_main$8 = {
41447
41484
  modelValue: unref(formClient).newRepresentative.fullName,
41448
41485
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => unref(formClient).newRepresentative.fullName = $event),
41449
41486
  label: "\u0424\u0418\u041E \u043F\u043E\u043B\u043D\u043E\u0441\u0442\u044C\u044E",
41450
- placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0440\u0430\u0442\u043A\u043E\u0435 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438"
41451
- }, null, 8, ["modelValue"]),
41487
+ placeholder: unref(placeholders).name
41488
+ }, null, 8, ["modelValue", "placeholder"]),
41452
41489
  createVNode(_sfc_main$f, {
41453
41490
  class: "mt-32",
41454
41491
  modelValue: unref(formClient).newRepresentative.nationality,
41455
41492
  "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => unref(formClient).newRepresentative.nationality = $event),
41456
- label: "\u0413\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E"
41457
- }, null, 8, ["modelValue"]),
41493
+ label: "\u0413\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E",
41494
+ placeholder: unref(placeholders).nationality
41495
+ }, null, 8, ["modelValue", "placeholder"]),
41458
41496
  createVNode(_sfc_main$g, {
41459
41497
  class: "w-100 mt-32",
41460
41498
  label: "\u0414\u043E\u043B\u0436\u043D\u043E\u0441\u0442\u044C",
41461
41499
  modelValue: unref(formClient).newRepresentative.position,
41462
- "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => unref(formClient).newRepresentative.position = $event)
41463
- }, null, 8, ["modelValue"]),
41500
+ "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => unref(formClient).newRepresentative.position = $event),
41501
+ placeholder: unref(placeholders).job
41502
+ }, null, 8, ["modelValue", "placeholder"]),
41464
41503
  createElementVNode("div", _hoisted_2$7, [
41465
41504
  createVNode(_sfc_main$f, {
41466
41505
  class: "width-260",
41467
41506
  modelValue: unref(formClient).newRepresentative.ser,
41468
41507
  "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => unref(formClient).newRepresentative.ser = $event),
41469
- label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430"
41470
- }, null, 8, ["modelValue"]),
41508
+ label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430",
41509
+ placeholder: unref(placeholders).passport.number
41510
+ }, null, 8, ["modelValue", "placeholder"]),
41471
41511
  createVNode(_sfc_main$f, {
41472
41512
  class: "width-260",
41473
41513
  modelValue: unref(formClient).newRepresentative.numb,
41474
41514
  "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => unref(formClient).newRepresentative.numb = $event),
41475
- label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F"
41476
- }, null, 8, ["modelValue"])
41515
+ label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F",
41516
+ placeholder: unref(placeholders).passport.code
41517
+ }, null, 8, ["modelValue", "placeholder"])
41477
41518
  ]),
41478
41519
  createVNode(_sfc_main$f, {
41479
41520
  class: "mt-32",
41480
41521
  area: true,
41481
41522
  label: "\u0421\u0432\u0435\u0434\u0435\u043D\u0438\u044F \u043E\u0431 \u043E\u0440\u0433\u0430\u043D\u0435, \u0432\u044B\u0434\u0430\u0432\u0448\u0435\u043C \u043F\u0430\u0441\u043F\u043E\u0440\u0442",
41482
41523
  modelValue: unref(formClient).newRepresentative.organ,
41483
- "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => unref(formClient).newRepresentative.organ = $event)
41484
- }, null, 8, ["modelValue"]),
41524
+ "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => unref(formClient).newRepresentative.organ = $event),
41525
+ placeholder: unref(placeholders).passport.organ
41526
+ }, null, 8, ["modelValue", "placeholder"]),
41485
41527
  createElementVNode("div", _hoisted_3$6, [
41486
41528
  createVNode(_component_el_form_item, { label: "\u0414\u0430\u0442\u0430 \u0432\u044B\u0434\u0430\u0447\u0438 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430" }, {
41487
41529
  default: withCtx(() => [
41488
41530
  createVNode(_sfc_main$c, {
41489
41531
  modelValue: dates.passport,
41490
- "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => dates.passport = $event)
41491
- }, null, 8, ["modelValue"])
41532
+ "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => dates.passport = $event),
41533
+ placeholder: unref(placeholders).dates.passport
41534
+ }, null, 8, ["modelValue", "placeholder"])
41492
41535
  ]),
41493
41536
  _: 1
41494
41537
  }),
@@ -41496,8 +41539,9 @@ const _sfc_main$8 = {
41496
41539
  default: withCtx(() => [
41497
41540
  createVNode(_sfc_main$c, {
41498
41541
  modelValue: dates.birthday,
41499
- "onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => dates.birthday = $event)
41500
- }, null, 8, ["modelValue"])
41542
+ "onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => dates.birthday = $event),
41543
+ placeholder: unref(placeholders).dates.birth
41544
+ }, null, 8, ["modelValue", "placeholder"])
41501
41545
  ]),
41502
41546
  _: 1
41503
41547
  })
@@ -41507,24 +41551,25 @@ const _sfc_main$8 = {
41507
41551
  area: true,
41508
41552
  label: "\u041C\u0435\u0441\u0442\u043E \u0440\u043E\u0436\u0434\u0435\u043D\u0438\u044F",
41509
41553
  modelValue: unref(formClient).newRepresentative.organ,
41510
- "onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => unref(formClient).newRepresentative.organ = $event)
41511
- }, null, 8, ["modelValue"]),
41554
+ "onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => unref(formClient).newRepresentative.organ = $event),
41555
+ placeholder: unref(placeholders).birthPlace
41556
+ }, null, 8, ["modelValue", "placeholder"]),
41512
41557
  createVNode(_sfc_main$f, {
41513
41558
  class: "mt-32",
41514
41559
  modelValue: unref(formClient).newRepresentative.LAddress,
41515
41560
  "onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => unref(formClient).newRepresentative.LAddress = $event),
41516
41561
  area: true,
41517
- placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0430\u0434\u0440\u0435\u0441 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438",
41562
+ placeholder: unref(placeholders).address.registration,
41518
41563
  label: "\u0410\u0434\u0440\u0435\u0441 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438"
41519
- }, null, 8, ["modelValue"]),
41564
+ }, null, 8, ["modelValue", "placeholder"]),
41520
41565
  withDirectives(createVNode(_sfc_main$f, {
41521
41566
  class: "mt-32",
41522
41567
  modelValue: unref(formClient).newRepresentative.LAddress,
41523
41568
  "onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => unref(formClient).newRepresentative.LAddress = $event),
41524
41569
  area: true,
41525
- placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0444\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441",
41570
+ placeholder: unref(placeholders).address.actual,
41526
41571
  label: "\u0424\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441"
41527
- }, null, 8, ["modelValue"]), [
41572
+ }, null, 8, ["modelValue", "placeholder"]), [
41528
41573
  [vShow, !unref(formClient).newRepresentative.isMatches]
41529
41574
  ]),
41530
41575
  createVNode(_sfc_main$e, {
@@ -41539,13 +41584,14 @@ const _sfc_main$8 = {
41539
41584
  modelValue: unref(formClient).newRepresentative.isFounder,
41540
41585
  "onUpdate:modelValue": _cache[12] || (_cache[12] = ($event) => unref(formClient).newRepresentative.isFounder = $event)
41541
41586
  }, null, 8, ["modelValue"]),
41542
- createVNode(_sfc_main$f, {
41587
+ unref(formClient).newRepresentative.isFounder ? (openBlock(), createBlock(_sfc_main$f, {
41588
+ key: 0,
41543
41589
  class: "width-260 mt-32",
41544
41590
  modelValue: unref(formClient).newRepresentative.part,
41545
41591
  "onUpdate:modelValue": _cache[13] || (_cache[13] = ($event) => unref(formClient).newRepresentative.part = $event),
41546
41592
  label: "\u0414\u043E\u043B\u044F \u0432 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438",
41547
- placeholder: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0434\u043E\u043B\u044E"
41548
- }, null, 8, ["modelValue"])
41593
+ placeholder: unref(placeholders).share
41594
+ }, null, 8, ["modelValue", "placeholder"])) : createCommentVNode("", true)
41549
41595
  ]),
41550
41596
  _: 1
41551
41597
  }, 8, ["model"])
@@ -41562,79 +41608,88 @@ const _sfc_main$8 = {
41562
41608
  area: true,
41563
41609
  label: "\u041F\u043E\u043B\u043D\u043E\u0435 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438",
41564
41610
  modelValue: unref(formClient).newRepresentative.companyFullName,
41565
- "onUpdate:modelValue": _cache[14] || (_cache[14] = ($event) => unref(formClient).newRepresentative.companyFullName = $event)
41566
- }, null, 8, ["modelValue"]),
41611
+ "onUpdate:modelValue": _cache[14] || (_cache[14] = ($event) => unref(formClient).newRepresentative.companyFullName = $event),
41612
+ placeholder: unref(placeholders).companyName
41613
+ }, null, 8, ["modelValue", "placeholder"]),
41567
41614
  createElementVNode("div", _hoisted_4$4, [
41568
41615
  createVNode(_sfc_main$f, {
41569
41616
  class: "width-260",
41570
41617
  modelValue: unref(formClient).newRepresentative.INN,
41571
41618
  "onUpdate:modelValue": _cache[15] || (_cache[15] = ($event) => unref(formClient).newRepresentative.INN = $event),
41572
41619
  disabled: true,
41573
- label: "\u0418\u041D\u041D"
41574
- }, null, 8, ["modelValue"]),
41620
+ label: "\u0418\u041D\u041D",
41621
+ placeholder: unref(placeholders).inn
41622
+ }, null, 8, ["modelValue", "placeholder"]),
41575
41623
  createVNode(_sfc_main$f, {
41576
41624
  class: "width-260",
41577
41625
  modelValue: unref(formClient).newRepresentative.OGRN,
41578
41626
  "onUpdate:modelValue": _cache[16] || (_cache[16] = ($event) => unref(formClient).newRepresentative.OGRN = $event),
41579
41627
  disabled: true,
41580
- label: "\u041E\u0413\u0420\u041D"
41581
- }, null, 8, ["modelValue"])
41628
+ label: "\u041E\u0413\u0420\u041D",
41629
+ placeholder: unref(placeholders).ogrn
41630
+ }, null, 8, ["modelValue", "placeholder"])
41582
41631
  ]),
41583
41632
  createVNode(_sfc_main$f, {
41584
41633
  class: "mt-32",
41585
41634
  area: true,
41586
41635
  label: "\u042E\u0440\u0438\u0434\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441",
41587
41636
  modelValue: unref(formClient).newRepresentative.organ,
41588
- "onUpdate:modelValue": _cache[17] || (_cache[17] = ($event) => unref(formClient).newRepresentative.organ = $event)
41589
- }, null, 8, ["modelValue"]),
41637
+ "onUpdate:modelValue": _cache[17] || (_cache[17] = ($event) => unref(formClient).newRepresentative.organ = $event),
41638
+ placeholder: unref(placeholders).address.legal
41639
+ }, null, 8, ["modelValue", "placeholder"]),
41590
41640
  createVNode(_sfc_main$f, {
41591
41641
  class: "mt-32",
41592
41642
  modelValue: unref(formClient).newRepresentative.fullName,
41593
41643
  "onUpdate:modelValue": _cache[18] || (_cache[18] = ($event) => unref(formClient).newRepresentative.fullName = $event),
41594
41644
  label: "\u0424\u0418\u041E \u0420\u0443\u043A\u043E\u0432\u043E\u0434\u0438\u0442\u0435\u043B\u044F",
41595
- placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0424\u0418\u041E \u0440\u0443\u043A\u043E\u0432\u043E\u0434\u0438\u0442\u0435\u043B\u044F"
41596
- }, null, 8, ["modelValue"]),
41645
+ placeholder: unref(placeholders).director.name
41646
+ }, null, 8, ["modelValue", "placeholder"]),
41597
41647
  createVNode(_sfc_main$g, {
41598
41648
  class: "w-100 mt-32",
41599
- placeholder: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0434\u043E\u043B\u0436\u043D\u043E\u0441\u0442\u044C \u0440\u0443\u043A\u043E\u0432\u043E\u0434\u0438\u0442\u0435\u043B\u044F",
41649
+ placeholder: unref(placeholders).director.job,
41600
41650
  label: "\u0414\u043E\u043B\u0436\u043D\u043E\u0441\u0442\u044C",
41601
41651
  modelValue: unref(formClient).newRepresentative.position,
41602
41652
  "onUpdate:modelValue": _cache[19] || (_cache[19] = ($event) => unref(formClient).newRepresentative.position = $event)
41603
- }, null, 8, ["modelValue"]),
41653
+ }, null, 8, ["placeholder", "modelValue"]),
41604
41654
  createVNode(_sfc_main$f, {
41605
41655
  class: "mt-32",
41606
41656
  modelValue: unref(formClient).newRepresentative.nationality,
41607
41657
  "onUpdate:modelValue": _cache[20] || (_cache[20] = ($event) => unref(formClient).newRepresentative.nationality = $event),
41608
- label: "\u0413\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E"
41609
- }, null, 8, ["modelValue"]),
41658
+ label: "\u0413\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E",
41659
+ placeholder: unref(placeholders).nationality
41660
+ }, null, 8, ["modelValue", "placeholder"]),
41610
41661
  createElementVNode("div", _hoisted_5$3, [
41611
41662
  createVNode(_sfc_main$f, {
41612
41663
  class: "width-260",
41613
41664
  modelValue: unref(formClient).newRepresentative.ser,
41614
41665
  "onUpdate:modelValue": _cache[21] || (_cache[21] = ($event) => unref(formClient).newRepresentative.ser = $event),
41615
- label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430"
41616
- }, null, 8, ["modelValue"]),
41666
+ label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430",
41667
+ placeholder: unref(placeholders).passport.number
41668
+ }, null, 8, ["modelValue", "placeholder"]),
41617
41669
  createVNode(_sfc_main$f, {
41618
41670
  class: "width-260",
41619
41671
  modelValue: unref(formClient).newRepresentative.numb,
41620
41672
  "onUpdate:modelValue": _cache[22] || (_cache[22] = ($event) => unref(formClient).newRepresentative.numb = $event),
41621
- label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F"
41622
- }, null, 8, ["modelValue"])
41673
+ label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F",
41674
+ placeholder: unref(placeholders).passport.code
41675
+ }, null, 8, ["modelValue", "placeholder"])
41623
41676
  ]),
41624
41677
  createVNode(_sfc_main$f, {
41625
41678
  class: "mt-32",
41626
41679
  area: true,
41627
41680
  label: "\u0421\u0432\u0435\u0434\u0435\u043D\u0438\u044F \u043E\u0431 \u043E\u0440\u0433\u0430\u043D\u0435, \u0432\u044B\u0434\u0430\u0432\u0448\u0435\u043C \u043F\u0430\u0441\u043F\u043E\u0440\u0442",
41628
41681
  modelValue: unref(formClient).newRepresentative.organ,
41629
- "onUpdate:modelValue": _cache[23] || (_cache[23] = ($event) => unref(formClient).newRepresentative.organ = $event)
41630
- }, null, 8, ["modelValue"]),
41682
+ "onUpdate:modelValue": _cache[23] || (_cache[23] = ($event) => unref(formClient).newRepresentative.organ = $event),
41683
+ placeholder: unref(placeholders).passport.organ
41684
+ }, null, 8, ["modelValue", "placeholder"]),
41631
41685
  createElementVNode("div", _hoisted_6$2, [
41632
41686
  createVNode(_component_el_form_item, { label: "\u0414\u0430\u0442\u0430 \u0432\u044B\u0434\u0430\u0447\u0438 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430" }, {
41633
41687
  default: withCtx(() => [
41634
41688
  createVNode(_sfc_main$c, {
41635
41689
  modelValue: dates.passport,
41636
- "onUpdate:modelValue": _cache[24] || (_cache[24] = ($event) => dates.passport = $event)
41637
- }, null, 8, ["modelValue"])
41690
+ "onUpdate:modelValue": _cache[24] || (_cache[24] = ($event) => dates.passport = $event),
41691
+ placeholder: unref(placeholders).dates.passport
41692
+ }, null, 8, ["modelValue", "placeholder"])
41638
41693
  ]),
41639
41694
  _: 1
41640
41695
  }),
@@ -41642,8 +41697,9 @@ const _sfc_main$8 = {
41642
41697
  default: withCtx(() => [
41643
41698
  createVNode(_sfc_main$c, {
41644
41699
  modelValue: dates.birthday,
41645
- "onUpdate:modelValue": _cache[25] || (_cache[25] = ($event) => dates.birthday = $event)
41646
- }, null, 8, ["modelValue"])
41700
+ "onUpdate:modelValue": _cache[25] || (_cache[25] = ($event) => dates.birthday = $event),
41701
+ placeholder: unref(placeholders).dates.birth
41702
+ }, null, 8, ["modelValue", "placeholder"])
41647
41703
  ]),
41648
41704
  _: 1
41649
41705
  })
@@ -41653,24 +41709,25 @@ const _sfc_main$8 = {
41653
41709
  area: true,
41654
41710
  label: "\u041C\u0435\u0441\u0442\u043E \u0440\u043E\u0436\u0434\u0435\u043D\u0438\u044F",
41655
41711
  modelValue: unref(formClient).newRepresentative.organ,
41656
- "onUpdate:modelValue": _cache[26] || (_cache[26] = ($event) => unref(formClient).newRepresentative.organ = $event)
41657
- }, null, 8, ["modelValue"]),
41712
+ "onUpdate:modelValue": _cache[26] || (_cache[26] = ($event) => unref(formClient).newRepresentative.organ = $event),
41713
+ placeholder: unref(placeholders).birthPlace
41714
+ }, null, 8, ["modelValue", "placeholder"]),
41658
41715
  createVNode(_sfc_main$f, {
41659
41716
  class: "mt-32",
41660
41717
  modelValue: unref(formClient).newRepresentative.LAddress,
41661
41718
  "onUpdate:modelValue": _cache[27] || (_cache[27] = ($event) => unref(formClient).newRepresentative.LAddress = $event),
41662
41719
  area: true,
41663
- placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0430\u0434\u0440\u0435\u0441 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438",
41720
+ placeholder: unref(placeholders).address.registration,
41664
41721
  label: "\u0410\u0434\u0440\u0435\u0441 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438"
41665
- }, null, 8, ["modelValue"]),
41722
+ }, null, 8, ["modelValue", "placeholder"]),
41666
41723
  withDirectives(createVNode(_sfc_main$f, {
41667
41724
  class: "mt-32",
41668
41725
  modelValue: unref(formClient).newRepresentative.LAddress,
41669
41726
  "onUpdate:modelValue": _cache[28] || (_cache[28] = ($event) => unref(formClient).newRepresentative.LAddress = $event),
41670
41727
  area: true,
41671
- placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0444\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441",
41728
+ placeholder: unref(placeholders).address.actual,
41672
41729
  label: "\u0424\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441"
41673
- }, null, 8, ["modelValue"]), [
41730
+ }, null, 8, ["modelValue", "placeholder"]), [
41674
41731
  [vShow, !unref(formClient).newRepresentative.isMatches]
41675
41732
  ]),
41676
41733
  createVNode(_sfc_main$e, {
@@ -41685,13 +41742,14 @@ const _sfc_main$8 = {
41685
41742
  modelValue: unref(formClient).newRepresentative.isFounder,
41686
41743
  "onUpdate:modelValue": _cache[30] || (_cache[30] = ($event) => unref(formClient).newRepresentative.isFounder = $event)
41687
41744
  }, null, 8, ["modelValue"]),
41688
- createVNode(_sfc_main$f, {
41745
+ unref(formClient).newRepresentative.isFounder ? (openBlock(), createBlock(_sfc_main$f, {
41746
+ key: 0,
41689
41747
  class: "width-260 mt-32",
41690
41748
  modelValue: unref(formClient).newRepresentative.part,
41691
41749
  "onUpdate:modelValue": _cache[31] || (_cache[31] = ($event) => unref(formClient).newRepresentative.part = $event),
41692
41750
  label: "\u0414\u043E\u043B\u044F \u0432 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438",
41693
- placeholder: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0434\u043E\u043B\u044E"
41694
- }, null, 8, ["modelValue"])
41751
+ placeholder: unref(placeholders).share
41752
+ }, null, 8, ["modelValue", "placeholder"])) : createCommentVNode("", true)
41695
41753
  ]),
41696
41754
  _: 1
41697
41755
  }, 8, ["model"])
@@ -41717,28 +41775,30 @@ const _sfc_main$8 = {
41717
41775
  modelValue: unref(formClient).newFounder.fullName,
41718
41776
  "onUpdate:modelValue": _cache[33] || (_cache[33] = ($event) => unref(formClient).newFounder.fullName = $event),
41719
41777
  label: "\u0424\u0418\u041E \u043F\u043E\u043B\u043D\u043E\u0441\u0442\u044C\u044E",
41720
- placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0440\u0430\u0442\u043A\u043E\u0435 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438"
41721
- }, null, 8, ["modelValue"]),
41778
+ placeholder: unref(placeholders).name
41779
+ }, null, 8, ["modelValue", "placeholder"]),
41722
41780
  createElementVNode("div", _hoisted_7$2, [
41723
41781
  createVNode(_sfc_main$f, {
41724
41782
  class: "width-260",
41725
41783
  modelValue: __props.percent,
41726
41784
  "onUpdate:modelValue": _cache[34] || (_cache[34] = ($event) => isRef(percent) ? percent.value = $event : null),
41727
- label: "\u0414\u043E\u043B\u044F \u0432 \u0443\u0441\u0442\u0430\u0432\u043D\u043E\u043C \u043A\u0430\u043F\u0438\u0442\u0430\u043B\u0435"
41728
- }, null, 8, ["modelValue"]),
41785
+ label: "\u0414\u043E\u043B\u044F \u0432 \u0443\u0441\u0442\u0430\u0432\u043D\u043E\u043C \u043A\u0430\u043F\u0438\u0442\u0430\u043B\u0435",
41786
+ placeholder: unref(placeholders).share
41787
+ }, null, 8, ["modelValue", "placeholder"]),
41729
41788
  unref(isMore25) ? (openBlock(), createBlock(_sfc_main$f, {
41730
41789
  key: 0,
41731
41790
  class: "width-260",
41732
41791
  modelValue: unref(formClient).newFounder.nationality,
41733
41792
  "onUpdate:modelValue": _cache[35] || (_cache[35] = ($event) => unref(formClient).newFounder.nationality = $event),
41734
- label: "\u0413\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E"
41735
- }, null, 8, ["modelValue"])) : createCommentVNode("", true)
41793
+ label: "\u0413\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E",
41794
+ placeholder: unref(placeholders).nationality
41795
+ }, null, 8, ["modelValue", "placeholder"])) : createCommentVNode("", true)
41736
41796
  ]),
41737
41797
  createVNode(_sfc_main$e, {
41738
41798
  class: "mt-32",
41739
41799
  label: "\u042F\u0432\u043B\u044F\u0435\u0442\u0441\u044F \u0431\u0435\u043D\u0435\u0444\u0438\u0446\u0438\u0430\u0440\u043E\u043C",
41740
- modelValue: unref(formClient).newFounder.isMatches,
41741
- "onUpdate:modelValue": _cache[36] || (_cache[36] = ($event) => unref(formClient).newFounder.isMatches = $event)
41800
+ modelValue: unref(formClient).newFounder.isBeneficiary,
41801
+ "onUpdate:modelValue": _cache[36] || (_cache[36] = ($event) => unref(formClient).newFounder.isBeneficiary = $event)
41742
41802
  }, null, 8, ["modelValue"]),
41743
41803
  unref(isMore25) ? (openBlock(), createElementBlock("div", _hoisted_8$1, [
41744
41804
  createVNode(_sfc_main$g, {
@@ -41752,29 +41812,33 @@ const _sfc_main$8 = {
41752
41812
  class: "width-260",
41753
41813
  modelValue: unref(formClient).newFounder.ser,
41754
41814
  "onUpdate:modelValue": _cache[38] || (_cache[38] = ($event) => unref(formClient).newFounder.ser = $event),
41755
- label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430"
41756
- }, null, 8, ["modelValue"]),
41815
+ label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430",
41816
+ placeholder: unref(placeholders).passport.number
41817
+ }, null, 8, ["modelValue", "placeholder"]),
41757
41818
  createVNode(_sfc_main$f, {
41758
41819
  class: "width-260",
41759
41820
  modelValue: unref(formClient).newFounder.numb,
41760
41821
  "onUpdate:modelValue": _cache[39] || (_cache[39] = ($event) => unref(formClient).newFounder.numb = $event),
41761
- label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F"
41762
- }, null, 8, ["modelValue"])
41822
+ label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F",
41823
+ placeholder: unref(placeholders).passport.code
41824
+ }, null, 8, ["modelValue", "placeholder"])
41763
41825
  ]),
41764
41826
  createVNode(_sfc_main$f, {
41765
41827
  class: "mt-32",
41766
41828
  area: true,
41767
41829
  label: "\u0421\u0432\u0435\u0434\u0435\u043D\u0438\u044F \u043E\u0431 \u043E\u0440\u0433\u0430\u043D\u0435, \u0432\u044B\u0434\u0430\u0432\u0448\u0435\u043C \u043F\u0430\u0441\u043F\u043E\u0440\u0442",
41768
41830
  modelValue: unref(formClient).newFounder.organ,
41769
- "onUpdate:modelValue": _cache[40] || (_cache[40] = ($event) => unref(formClient).newFounder.organ = $event)
41770
- }, null, 8, ["modelValue"]),
41831
+ "onUpdate:modelValue": _cache[40] || (_cache[40] = ($event) => unref(formClient).newFounder.organ = $event),
41832
+ placeholder: unref(placeholders).passport.organ
41833
+ }, null, 8, ["modelValue", "placeholder"]),
41771
41834
  createElementVNode("div", _hoisted_10$1, [
41772
41835
  createVNode(_component_el_form_item, { label: "\u0414\u0430\u0442\u0430 \u0432\u044B\u0434\u0430\u0447\u0438 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430" }, {
41773
41836
  default: withCtx(() => [
41774
41837
  createVNode(_sfc_main$c, {
41775
41838
  modelValue: dates.passport,
41776
- "onUpdate:modelValue": _cache[41] || (_cache[41] = ($event) => dates.passport = $event)
41777
- }, null, 8, ["modelValue"])
41839
+ "onUpdate:modelValue": _cache[41] || (_cache[41] = ($event) => dates.passport = $event),
41840
+ placeholder: unref(placeholders).dates.passport
41841
+ }, null, 8, ["modelValue", "placeholder"])
41778
41842
  ]),
41779
41843
  _: 1
41780
41844
  }),
@@ -41782,8 +41846,9 @@ const _sfc_main$8 = {
41782
41846
  default: withCtx(() => [
41783
41847
  createVNode(_sfc_main$c, {
41784
41848
  modelValue: dates.birthday,
41785
- "onUpdate:modelValue": _cache[42] || (_cache[42] = ($event) => dates.birthday = $event)
41786
- }, null, 8, ["modelValue"])
41849
+ "onUpdate:modelValue": _cache[42] || (_cache[42] = ($event) => dates.birthday = $event),
41850
+ placeholder: unref(placeholders).dates.birth
41851
+ }, null, 8, ["modelValue", "placeholder"])
41787
41852
  ]),
41788
41853
  _: 1
41789
41854
  })
@@ -41793,24 +41858,25 @@ const _sfc_main$8 = {
41793
41858
  area: true,
41794
41859
  label: "\u041C\u0435\u0441\u0442\u043E \u0440\u043E\u0436\u0434\u0435\u043D\u0438\u044F",
41795
41860
  modelValue: unref(formClient).newFounder.organ,
41796
- "onUpdate:modelValue": _cache[43] || (_cache[43] = ($event) => unref(formClient).newFounder.organ = $event)
41797
- }, null, 8, ["modelValue"]),
41861
+ "onUpdate:modelValue": _cache[43] || (_cache[43] = ($event) => unref(formClient).newFounder.organ = $event),
41862
+ placeholder: unref(placeholders).birthPlace
41863
+ }, null, 8, ["modelValue", "placeholder"]),
41798
41864
  createVNode(_sfc_main$f, {
41799
41865
  class: "mt-32",
41800
41866
  modelValue: unref(formClient).newFounder.LAddress,
41801
41867
  "onUpdate:modelValue": _cache[44] || (_cache[44] = ($event) => unref(formClient).newFounder.LAddress = $event),
41802
41868
  area: true,
41803
- placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0430\u0434\u0440\u0435\u0441 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438",
41869
+ placeholder: unref(placeholders).address.registration,
41804
41870
  label: "\u0410\u0434\u0440\u0435\u0441 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438"
41805
- }, null, 8, ["modelValue"]),
41871
+ }, null, 8, ["modelValue", "placeholder"]),
41806
41872
  withDirectives(createVNode(_sfc_main$f, {
41807
41873
  class: "mt-32",
41808
41874
  modelValue: unref(formClient).newFounder.LAddress,
41809
41875
  "onUpdate:modelValue": _cache[45] || (_cache[45] = ($event) => unref(formClient).newFounder.LAddress = $event),
41810
41876
  area: true,
41811
- placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0444\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441",
41877
+ placeholder: unref(placeholders).address.actual,
41812
41878
  label: "\u0424\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441"
41813
- }, null, 8, ["modelValue"]), [
41879
+ }, null, 8, ["modelValue", "placeholder"]), [
41814
41880
  [vShow, !unref(formClient).newFounder.isMatches]
41815
41881
  ]),
41816
41882
  createVNode(_sfc_main$e, {
@@ -41833,47 +41899,50 @@ const _sfc_main$8 = {
41833
41899
  }, {
41834
41900
  default: withCtx(() => [
41835
41901
  createVNode(_sfc_main$f, {
41836
- modelValue: unref(formClient).newFounder.fullName,
41837
- "onUpdate:modelValue": _cache[47] || (_cache[47] = ($event) => unref(formClient).newFounder.fullName = $event),
41902
+ modelValue: unref(formClient).newFounder.companyName,
41903
+ "onUpdate:modelValue": _cache[47] || (_cache[47] = ($event) => unref(formClient).newFounder.companyName = $event),
41838
41904
  label: "\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438",
41839
- placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438"
41840
- }, null, 8, ["modelValue"]),
41905
+ placeholder: unref(placeholders).companyNameMiddle
41906
+ }, null, 8, ["modelValue", "placeholder"]),
41841
41907
  createElementVNode("div", _hoisted_11$1, [
41842
41908
  createVNode(_sfc_main$f, {
41843
41909
  class: "width-260",
41844
41910
  modelValue: __props.percent,
41845
41911
  "onUpdate:modelValue": _cache[48] || (_cache[48] = ($event) => isRef(percent) ? percent.value = $event : null),
41846
41912
  disabled: true,
41847
- label: "\u0418\u041D\u041D"
41848
- }, null, 8, ["modelValue"]),
41913
+ label: "\u0418\u041D\u041D",
41914
+ placeholder: unref(placeholders).inn
41915
+ }, null, 8, ["modelValue", "placeholder"]),
41849
41916
  createVNode(_sfc_main$f, {
41850
41917
  class: "width-260",
41851
41918
  modelValue: unref(formClient).newFounder.nationality,
41852
41919
  "onUpdate:modelValue": _cache[49] || (_cache[49] = ($event) => unref(formClient).newFounder.nationality = $event),
41853
41920
  disabled: true,
41854
- label: "\u041E\u0413\u0420\u041D"
41855
- }, null, 8, ["modelValue"])
41921
+ label: "\u041E\u0413\u0420\u041D",
41922
+ placeholder: unref(placeholders).ogrn
41923
+ }, null, 8, ["modelValue", "placeholder"])
41856
41924
  ]),
41857
41925
  createVNode(_sfc_main$f, {
41858
41926
  class: "mt-32",
41859
41927
  modelValue: unref(formClient).newFounder.fullName,
41860
41928
  "onUpdate:modelValue": _cache[50] || (_cache[50] = ($event) => unref(formClient).newFounder.fullName = $event),
41861
41929
  label: "\u0424\u0418\u041E \u0420\u0443\u043A\u043E\u0432\u043E\u0434\u0438\u0442\u0435\u043B\u044F",
41862
- placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0424\u0418\u041E \u0440\u0443\u043A\u043E\u0432\u043E\u0434\u0438\u0442\u0435\u043B\u044F"
41863
- }, null, 8, ["modelValue"]),
41930
+ placeholder: unref(placeholders).director.name
41931
+ }, null, 8, ["modelValue", "placeholder"]),
41864
41932
  createVNode(_sfc_main$f, {
41865
41933
  class: "mt-32",
41866
- modelValue: unref(formClient).newFounder.fullName,
41867
- "onUpdate:modelValue": _cache[51] || (_cache[51] = ($event) => unref(formClient).newFounder.fullName = $event),
41934
+ modelValue: unref(formClient).newFounder.position,
41935
+ "onUpdate:modelValue": _cache[51] || (_cache[51] = ($event) => unref(formClient).newFounder.position = $event),
41868
41936
  label: "\u0414\u043E\u043B\u0436\u043D\u043E\u0441\u0442\u044C",
41869
- placeholder: "\u0423\u043A\u0430\u0436\u0438\u0442\u0435 \u0434\u043E\u043B\u0436\u043D\u043E\u0441\u0442\u044C \u0440\u0443\u043A\u043E\u0432\u043E\u0434\u0438\u0442\u0435\u043B\u044F"
41870
- }, null, 8, ["modelValue"]),
41937
+ placeholder: unref(placeholders).director.job2
41938
+ }, null, 8, ["modelValue", "placeholder"]),
41871
41939
  createVNode(_sfc_main$f, {
41872
41940
  class: "mt-32 width-260",
41873
41941
  modelValue: __props.percent,
41874
41942
  "onUpdate:modelValue": _cache[52] || (_cache[52] = ($event) => isRef(percent) ? percent.value = $event : null),
41875
- label: "\u0414\u043E\u043B\u044F \u0432 \u0443\u0441\u0442\u0430\u0432\u043D\u043E\u043C \u043A\u0430\u043F\u0438\u0442\u0430\u043B\u0435"
41876
- }, null, 8, ["modelValue"])
41943
+ label: "\u0414\u043E\u043B\u044F \u0432 \u0443\u0441\u0442\u0430\u0432\u043D\u043E\u043C \u043A\u0430\u043F\u0438\u0442\u0430\u043B\u0435",
41944
+ placeholder: unref(placeholders).share
41945
+ }, null, 8, ["modelValue", "placeholder"])
41877
41946
  ]),
41878
41947
  _: 1
41879
41948
  }, 8, ["model"])
@@ -41898,20 +41967,22 @@ const _sfc_main$8 = {
41898
41967
  modelValue: unref(formClient).newRepresentativeByProxy.fullName,
41899
41968
  "onUpdate:modelValue": _cache[54] || (_cache[54] = ($event) => unref(formClient).newRepresentativeByProxy.fullName = $event),
41900
41969
  label: "\u0424\u0418\u041E \u043F\u043E\u043B\u043D\u043E\u0441\u0442\u044C\u044E",
41901
- placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0440\u0430\u0442\u043A\u043E\u0435 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438"
41902
- }, null, 8, ["modelValue"]),
41970
+ placeholder: unref(placeholders).name
41971
+ }, null, 8, ["modelValue", "placeholder"]),
41903
41972
  createVNode(_sfc_main$g, {
41904
41973
  class: "mt-32",
41905
41974
  label: "\u0414\u043E\u043B\u0436\u043D\u043E\u0441\u0442\u044C",
41906
41975
  modelValue: unref(formClient).newRepresentativeByProxy.position,
41907
- "onUpdate:modelValue": _cache[55] || (_cache[55] = ($event) => unref(formClient).newRepresentativeByProxy.position = $event)
41908
- }, null, 8, ["modelValue"]),
41976
+ "onUpdate:modelValue": _cache[55] || (_cache[55] = ($event) => unref(formClient).newRepresentativeByProxy.position = $event),
41977
+ placeholder: unref(placeholders).job
41978
+ }, null, 8, ["modelValue", "placeholder"]),
41909
41979
  createVNode(_sfc_main$f, {
41910
41980
  class: "mt-32",
41911
41981
  modelValue: unref(formClient).newRepresentativeByProxy.proxyNumber,
41912
41982
  "onUpdate:modelValue": _cache[56] || (_cache[56] = ($event) => unref(formClient).newRepresentativeByProxy.proxyNumber = $event),
41913
- label: "\u041D\u043E\u043C\u0435\u0440 \u0434\u043E\u0432\u0435\u0440\u0435\u043D\u043D\u043E\u0441\u0442\u0438"
41914
- }, null, 8, ["modelValue"]),
41983
+ label: "\u041D\u043E\u043C\u0435\u0440 \u0434\u043E\u0432\u0435\u0440\u0435\u043D\u043D\u043E\u0441\u0442\u0438",
41984
+ placeholder: unref(placeholders).proxyNumber
41985
+ }, null, 8, ["modelValue", "placeholder"]),
41915
41986
  createElementVNode("div", _hoisted_12$1, [
41916
41987
  createVNode(_component_el_form_item, {
41917
41988
  class: "width-260",
@@ -41943,29 +42014,33 @@ const _sfc_main$8 = {
41943
42014
  class: "width-260",
41944
42015
  modelValue: unref(formClient).newRepresentativeByProxy.ser,
41945
42016
  "onUpdate:modelValue": _cache[59] || (_cache[59] = ($event) => unref(formClient).newRepresentativeByProxy.ser = $event),
41946
- label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430"
41947
- }, null, 8, ["modelValue"]),
42017
+ label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430",
42018
+ placeholder: unref(placeholders).passport.number
42019
+ }, null, 8, ["modelValue", "placeholder"]),
41948
42020
  createVNode(_sfc_main$f, {
41949
42021
  class: "width-260",
41950
42022
  modelValue: unref(formClient).newRepresentativeByProxy.numb,
41951
42023
  "onUpdate:modelValue": _cache[60] || (_cache[60] = ($event) => unref(formClient).newRepresentativeByProxy.numb = $event),
41952
- label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F"
41953
- }, null, 8, ["modelValue"])
42024
+ label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F",
42025
+ placeholder: unref(placeholders).passport.code
42026
+ }, null, 8, ["modelValue", "placeholder"])
41954
42027
  ]),
41955
42028
  createVNode(_sfc_main$f, {
41956
42029
  class: "mt-32",
41957
42030
  area: true,
41958
42031
  label: "\u0421\u0432\u0435\u0434\u0435\u043D\u0438\u044F \u043E\u0431 \u043E\u0440\u0433\u0430\u043D\u0435, \u0432\u044B\u0434\u0430\u0432\u0448\u0435\u043C \u043F\u0430\u0441\u043F\u043E\u0440\u0442",
41959
42032
  modelValue: unref(formClient).newRepresentativeByProxy.organ,
41960
- "onUpdate:modelValue": _cache[61] || (_cache[61] = ($event) => unref(formClient).newRepresentativeByProxy.organ = $event)
41961
- }, null, 8, ["modelValue"]),
42033
+ "onUpdate:modelValue": _cache[61] || (_cache[61] = ($event) => unref(formClient).newRepresentativeByProxy.organ = $event),
42034
+ placeholder: unref(placeholders).passport.organ
42035
+ }, null, 8, ["modelValue", "placeholder"]),
41962
42036
  createElementVNode("div", _hoisted_14$1, [
41963
42037
  createVNode(_component_el_form_item, { label: "\u0414\u0430\u0442\u0430 \u0432\u044B\u0434\u0430\u0447\u0438 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430" }, {
41964
42038
  default: withCtx(() => [
41965
42039
  createVNode(_sfc_main$c, {
41966
42040
  modelValue: dates.passport,
41967
- "onUpdate:modelValue": _cache[62] || (_cache[62] = ($event) => dates.passport = $event)
41968
- }, null, 8, ["modelValue"])
42041
+ "onUpdate:modelValue": _cache[62] || (_cache[62] = ($event) => dates.passport = $event),
42042
+ placeholder: unref(placeholders).dates.passport
42043
+ }, null, 8, ["modelValue", "placeholder"])
41969
42044
  ]),
41970
42045
  _: 1
41971
42046
  }),
@@ -41973,8 +42048,9 @@ const _sfc_main$8 = {
41973
42048
  default: withCtx(() => [
41974
42049
  createVNode(_sfc_main$c, {
41975
42050
  modelValue: dates.birthday,
41976
- "onUpdate:modelValue": _cache[63] || (_cache[63] = ($event) => dates.birthday = $event)
41977
- }, null, 8, ["modelValue"])
42051
+ "onUpdate:modelValue": _cache[63] || (_cache[63] = ($event) => dates.birthday = $event),
42052
+ placeholder: unref(placeholders).dates.birth
42053
+ }, null, 8, ["modelValue", "placeholder"])
41978
42054
  ]),
41979
42055
  _: 1
41980
42056
  })
@@ -41984,8 +42060,9 @@ const _sfc_main$8 = {
41984
42060
  area: true,
41985
42061
  label: "\u041C\u0435\u0441\u0442\u043E \u0440\u043E\u0436\u0434\u0435\u043D\u0438\u044F",
41986
42062
  modelValue: unref(formClient).newRepresentativeByProxy.organ,
41987
- "onUpdate:modelValue": _cache[64] || (_cache[64] = ($event) => unref(formClient).newRepresentativeByProxy.organ = $event)
41988
- }, null, 8, ["modelValue"])
42063
+ "onUpdate:modelValue": _cache[64] || (_cache[64] = ($event) => unref(formClient).newRepresentativeByProxy.organ = $event),
42064
+ placeholder: unref(placeholders).birthPlace
42065
+ }, null, 8, ["modelValue", "placeholder"])
41989
42066
  ]),
41990
42067
  _: 1
41991
42068
  }, 8, ["model"])
@@ -41996,142 +42073,6 @@ const _sfc_main$8 = {
41996
42073
  };
41997
42074
  }
41998
42075
  };
41999
- var _imports_0$2 = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTEuNDY4NyA5LjQ2OTY3QzExLjc2MTYgOS4xNzY3OCAxMi4yMzY0IDkuMTc2NzggMTIuNTI5MyA5LjQ2OTY3TDE2LjUyOTMgMTMuNDY5N0MxNi44MjIyIDEzLjc2MjYgMTYuODIyMiAxNC4yMzc0IDE2LjUyOTMgMTQuNTMwM0MxNi4yMzY0IDE0LjgyMzIgMTUuNzYxNiAxNC44MjMyIDE1LjQ2ODcgMTQuNTMwM0wxMS45OTkgMTEuMDYwN0w4LjUyOTMyIDE0LjUzMDNDOC4yMzY0MyAxNC44MjMyIDcuNzYxNTYgMTQuODIzMiA3LjQ2ODY2IDE0LjUzMDNDNy4xNzU3NyAxNC4yMzc0IDcuMTc1NzcgMTMuNzYyNiA3LjQ2ODY2IDEzLjQ2OTdMMTEuNDY4NyA5LjQ2OTY3WiIgZmlsbD0iIzY1NjU2NyIvPg0KPC9zdmc+DQo=";
42000
- var plSelect_vue_vue_type_style_index_0_lang = "";
42001
- const _hoisted_1$7 = { id: "form-select" };
42002
- const _hoisted_2$6 = { class: "flex item-select" };
42003
- const _hoisted_3$5 = {
42004
- key: 0,
42005
- src: _imports_1$2
42006
- };
42007
- const _sfc_main$7 = {
42008
- __name: "pl-select",
42009
- props: {
42010
- placeholder: {
42011
- type: String,
42012
- default: ""
42013
- },
42014
- rules: {
42015
- type: Object,
42016
- default: function() {
42017
- return {};
42018
- }
42019
- },
42020
- prop: {
42021
- type: String,
42022
- default: "name"
42023
- },
42024
- isError: {
42025
- type: Boolean,
42026
- default: false
42027
- },
42028
- label: {
42029
- type: String,
42030
- default: ""
42031
- },
42032
- modelValue: {
42033
- type: String,
42034
- required: true
42035
- },
42036
- options: {
42037
- type: Object,
42038
- required: true
42039
- },
42040
- checked: {
42041
- type: Boolean,
42042
- default: true
42043
- }
42044
- },
42045
- emits: ["update:modelValue", "validate"],
42046
- setup(__props, { emit: emit2 }) {
42047
- const props = __props;
42048
- const selected = ref(false);
42049
- const formSelect = ref();
42050
- let select2 = ref("");
42051
- select2.value = props.modelValue;
42052
- let { modelValue: validateValue } = toRefs(props);
42053
- const ruleForm = ref({
42054
- [props.prop]: validateValue
42055
- });
42056
- const validateInp = (prop, isValid2, message2) => {
42057
- emit2("validate", prop, isValid2, message2);
42058
- };
42059
- const blurSelect = async () => {
42060
- selected.value = false;
42061
- setTimeout(() => {
42062
- formSelect.value.validate(() => {
42063
- });
42064
- }, 200);
42065
- };
42066
- watch(select2, (value) => {
42067
- selected.value = false;
42068
- emit2("update:modelValue", value);
42069
- });
42070
- return (_ctx, _cache) => {
42071
- const _component_el_option = ElOption;
42072
- const _component_el_select = ElSelect;
42073
- const _component_el_form_item = ElFormItem;
42074
- const _component_el_form = ElForm;
42075
- return openBlock(), createElementBlock("div", _hoisted_1$7, [
42076
- createVNode(_component_el_form, {
42077
- onValidate: validateInp,
42078
- "label-position": "top",
42079
- model: ruleForm.value,
42080
- ref_key: "formSelect",
42081
- ref: formSelect,
42082
- rules: __props.rules
42083
- }, {
42084
- default: withCtx(() => [
42085
- createVNode(_component_el_form_item, {
42086
- label: __props.label,
42087
- prop: __props.prop,
42088
- class: normalizeClass({ "is-error": __props.isError }),
42089
- "show-message": true
42090
- }, {
42091
- default: withCtx(() => [
42092
- createElementVNode("img", {
42093
- class: normalizeClass(["form-select__arrow", { rotate: selected.value }]),
42094
- src: _imports_0$2,
42095
- alt: "arrow"
42096
- }, null, 2),
42097
- createVNode(_component_el_select, {
42098
- "popper-class": [{ checked: __props.checked }, "selectBox"],
42099
- modelValue: unref(select2),
42100
- "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(select2) ? select2.value = $event : select2 = $event),
42101
- placeholder: __props.placeholder,
42102
- onFocus: _cache[1] || (_cache[1] = ($event) => selected.value = true),
42103
- onBlur: blurSelect
42104
- }, {
42105
- default: withCtx(() => [
42106
- (openBlock(true), createElementBlock(Fragment, null, renderList(__props.options, (item) => {
42107
- return openBlock(), createBlock(_component_el_option, {
42108
- class: "pl-form-option",
42109
- key: item.value,
42110
- label: item.label,
42111
- value: item.value
42112
- }, {
42113
- default: withCtx(() => [
42114
- createElementVNode("div", _hoisted_2$6, [
42115
- createTextVNode(toDisplayString(item.label) + " ", 1),
42116
- item.value === unref(select2) ? (openBlock(), createElementBlock("img", _hoisted_3$5)) : createCommentVNode("", true)
42117
- ])
42118
- ]),
42119
- _: 2
42120
- }, 1032, ["label", "value"]);
42121
- }), 128))
42122
- ]),
42123
- _: 1
42124
- }, 8, ["popper-class", "modelValue", "placeholder"])
42125
- ]),
42126
- _: 1
42127
- }, 8, ["label", "prop", "class"])
42128
- ]),
42129
- _: 1
42130
- }, 8, ["model", "rules"])
42131
- ]);
42132
- };
42133
- }
42134
- };
42135
42076
  /*!
42136
42077
  * maska v1.5.0
42137
42078
  * (c) 2019-2021 Alexander Shabunevich
@@ -42300,12 +42241,12 @@ function k(e2) {
42300
42241
  }
42301
42242
  "undefined" != typeof window && window.Vue && window.Vue.use && window.Vue.use(k);
42302
42243
  var plFormContact_vue_vue_type_style_index_0_lang = "";
42303
- const _hoisted_1$6 = {
42244
+ const _hoisted_1$7 = {
42304
42245
  id: "container-general",
42305
42246
  class: "d-flex flex-column gap-3"
42306
42247
  };
42307
- const _hoisted_2$5 = { class: "d-flex justify-content-between mt-32" };
42308
- const _sfc_main$6 = {
42248
+ const _hoisted_2$6 = { class: "d-flex justify-content-between mt-32" };
42249
+ const _sfc_main$7 = {
42309
42250
  __name: "pl-form-contact",
42310
42251
  props: {
42311
42252
  modelValue: { type: Object, required: true }
@@ -42324,10 +42265,9 @@ const _sfc_main$6 = {
42324
42265
  emit("update:modelValue", value);
42325
42266
  });
42326
42267
  return (_ctx, _cache) => {
42327
- const _component_pl_select = _sfc_main$7;
42328
42268
  const _component_el_form = ElForm;
42329
42269
  const _directive_maska = resolveDirective("maska");
42330
- return openBlock(), createElementBlock("div", _hoisted_1$6, [
42270
+ return openBlock(), createElementBlock("div", _hoisted_1$7, [
42331
42271
  createVNode(_sfc_main$9, {
42332
42272
  title: "\u041A\u043E\u043D\u0442\u0430\u043A\u0442\u044B \u0434\u043B\u044F \u0441\u0432\u044F\u0437\u0438",
42333
42273
  "bth-title": "\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043A\u043E\u043D\u0442\u0430\u043A\u0442",
@@ -42355,7 +42295,7 @@ const _sfc_main$6 = {
42355
42295
  label: "\u0424\u0418\u041E \u043F\u043E\u043B\u043D\u043E\u0441\u0442\u044C\u044E",
42356
42296
  placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0424\u0418\u041E \u043F\u043E\u043B\u043D\u043E\u0441\u0442\u044C\u044E"
42357
42297
  }, null, 8, ["value"]),
42358
- createVNode(_component_pl_select, {
42298
+ createVNode(_sfc_main$g, {
42359
42299
  class: "mt-32",
42360
42300
  label: "\u0414\u043E\u043B\u0436\u043D\u043E\u0441\u0442\u044C",
42361
42301
  modelValue: unref(formClient).contact.position,
@@ -42373,7 +42313,7 @@ const _sfc_main$6 = {
42373
42313
  }, null, 8, ["modelValue"]), [
42374
42314
  [_directive_maska, "!+7 (###) ### ## ##"]
42375
42315
  ]),
42376
- createElementVNode("div", _hoisted_2$5, [
42316
+ createElementVNode("div", _hoisted_2$6, [
42377
42317
  createVNode(_sfc_main$f, {
42378
42318
  class: "width-260",
42379
42319
  modelValue: unref(formClient).contact.contactPhone.number,
@@ -42415,34 +42355,34 @@ const _sfc_main$6 = {
42415
42355
  };
42416
42356
  }
42417
42357
  };
42418
- var _imports_0$1 = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMi4yNTY5MSA1LjAyMDRDMi4yNDU5MSAzLjQ5MzEgMy40ODA1NSAyLjI1IDUuMDA2ODkgMi4yNUgxNi4xNjM5QzE2Ljg5NDQgMi4yNSAxNy41OTI2IDIuNTQwNDEgMTguMTA4NSAzLjA1NDk2TDIwLjkzNzIgNS44ODM2N0MyMS40NTI3IDYuMzk5MTYgMjEuNzQyOSA3LjA5ODg2IDIxLjc0MjkgNy44MjhWMTRDMjEuNzQyOSAxNC40MTQyIDIxLjQwNzEgMTQuNzUgMjAuOTkyOSAxNC43NUMyMC41Nzg3IDE0Ljc1IDIwLjI0MjkgMTQuNDE0MiAyMC4yNDI5IDE0VjcuODI4QzIwLjI0MjkgNy40OTcxNCAyMC4xMTExIDcuMTc4ODQgMTkuODc2NiA2Ljk0NDMzTDE3LjA0OTMgNC4xMTcwNEMxNy4wNDkxIDQuMTE2OTIgMTcuMDQ5NCA0LjExNzE1IDE3LjA0OTMgNC4xMTcwNEMxNi45NTgxIDQuMDI2MjEgMTYuODU0NSAzLjk1MDUgMTYuNzQyOSAzLjg5MjIxVjYuOTA5QzE2Ljc0MjkgNy44NzUyMSAxNS45NTkxIDguNjU5IDE0Ljk5MjkgOC42NTlIOC45OTI4OUM4LjAyNjY4IDguNjU5IDcuMjQyODkgNy44NzUyMSA3LjI0Mjg5IDYuOTA5VjMuNzVINS4wMDY4OUM0LjMxMzI1IDMuNzUgMy43NTE5MSA0LjMxNDc2IDMuNzU2ODcgNS4wMDk0M0MzLjc1Njg3IDUuMDA5NDUgMy43NTY4NyA1LjAwOTQxIDMuNzU2ODcgNS4wMDk0M0wzLjg2MDg3IDE5LjAwOTRDMy44NjU4NyAxOS42OTYxIDQuNDIzNzIgMjAuMjUgNS4xMTA4OSAyMC4yNUg2LjI0OTg5VjEzLjI4NkM2LjI0OTg5IDEyLjE2MTggNy4xNjE2OCAxMS4yNSA4LjI4NTg5IDExLjI1SDE1LjcxNDlDMTYuODM4NSAxMS4yNSAxNy43NDk5IDEyLjE2MjIgMTcuNzQ5OSAxMy4yODZWMTRDMTcuNzQ5OSAxNC40MTQyIDE3LjQxNDEgMTQuNzUgMTYuOTk5OSAxNC43NUMxNi41ODU3IDE0Ljc1IDE2LjI0OTkgMTQuNDE0MiAxNi4yNDk5IDE0VjEzLjI4NkMxNi4yNDk5IDEyLjk4OTggMTYuMDA5MyAxMi43NSAxNS43MTQ5IDEyLjc1SDguMjg1ODlDNy45OTAxIDEyLjc1IDcuNzQ5ODkgMTIuOTkwMiA3Ljc0OTg5IDEzLjI4NlYyMC4yNUgxMi45OTk5QzEzLjQxNDEgMjAuMjUgMTMuNzQ5OSAyMC41ODU4IDEzLjc0OTkgMjFDMTMuNzQ5OSAyMS40MTQyIDEzLjQxNDEgMjEuNzUgMTIuOTk5OSAyMS43NUg1LjExMDg5QzMuNjAwMDkgMjEuNzUgMi4zNzE5NyAyMC41MzE4IDIuMzYwOTEgMTkuMDIwNkMyLjM2MDkxIDE5LjAyMDUgMi4zNjA5MSAxOS4wMjA2IDIuMzYwOTEgMTkuMDIwNkwyLjI1NjkxIDUuMDIwNFpNOC43NDI4OSAzLjc1VjYuOTA5QzguNzQyODkgNy4wNDY3OSA4Ljg1NTEgNy4xNTkgOC45OTI4OSA3LjE1OUgxNC45OTI5QzE1LjEzMDcgNy4xNTkgMTUuMjQyOSA3LjA0Njc5IDE1LjI0MjkgNi45MDlWMy43NUg4Ljc0Mjg5Wk0yMS41MzAyIDE3LjQ2OTdDMjEuODIzMSAxNy43NjI2IDIxLjgyMzEgMTguMjM3NCAyMS41MzAyIDE4LjUzMDNMMTguNTMwMiAyMS41MzAzQzE4LjIzNzMgMjEuODIzMiAxNy43NjI1IDIxLjgyMzIgMTcuNDY5NiAyMS41MzAzTDE1LjQ2OTYgMTkuNTMwM0MxNS4xNzY3IDE5LjIzNzQgMTUuMTc2NyAxOC43NjI2IDE1LjQ2OTYgMTguNDY5N0MxNS43NjI1IDE4LjE3NjggMTYuMjM3MyAxOC4xNzY4IDE2LjUzMDIgMTguNDY5N0wxNy45OTk5IDE5LjkzOTNMMjAuNDY5NiAxNy40Njk3QzIwLjc2MjUgMTcuMTc2OCAyMS4yMzczIDE3LjE3NjggMjEuNTMwMiAxNy40Njk3WiIgZmlsbD0iIzUwNTA1MSIvPg0KPC9zdmc+DQo=";
42358
+ var _imports_0$2 = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMi4yNTY5MSA1LjAyMDRDMi4yNDU5MSAzLjQ5MzEgMy40ODA1NSAyLjI1IDUuMDA2ODkgMi4yNUgxNi4xNjM5QzE2Ljg5NDQgMi4yNSAxNy41OTI2IDIuNTQwNDEgMTguMTA4NSAzLjA1NDk2TDIwLjkzNzIgNS44ODM2N0MyMS40NTI3IDYuMzk5MTYgMjEuNzQyOSA3LjA5ODg2IDIxLjc0MjkgNy44MjhWMTRDMjEuNzQyOSAxNC40MTQyIDIxLjQwNzEgMTQuNzUgMjAuOTkyOSAxNC43NUMyMC41Nzg3IDE0Ljc1IDIwLjI0MjkgMTQuNDE0MiAyMC4yNDI5IDE0VjcuODI4QzIwLjI0MjkgNy40OTcxNCAyMC4xMTExIDcuMTc4ODQgMTkuODc2NiA2Ljk0NDMzTDE3LjA0OTMgNC4xMTcwNEMxNy4wNDkxIDQuMTE2OTIgMTcuMDQ5NCA0LjExNzE1IDE3LjA0OTMgNC4xMTcwNEMxNi45NTgxIDQuMDI2MjEgMTYuODU0NSAzLjk1MDUgMTYuNzQyOSAzLjg5MjIxVjYuOTA5QzE2Ljc0MjkgNy44NzUyMSAxNS45NTkxIDguNjU5IDE0Ljk5MjkgOC42NTlIOC45OTI4OUM4LjAyNjY4IDguNjU5IDcuMjQyODkgNy44NzUyMSA3LjI0Mjg5IDYuOTA5VjMuNzVINS4wMDY4OUM0LjMxMzI1IDMuNzUgMy43NTE5MSA0LjMxNDc2IDMuNzU2ODcgNS4wMDk0M0MzLjc1Njg3IDUuMDA5NDUgMy43NTY4NyA1LjAwOTQxIDMuNzU2ODcgNS4wMDk0M0wzLjg2MDg3IDE5LjAwOTRDMy44NjU4NyAxOS42OTYxIDQuNDIzNzIgMjAuMjUgNS4xMTA4OSAyMC4yNUg2LjI0OTg5VjEzLjI4NkM2LjI0OTg5IDEyLjE2MTggNy4xNjE2OCAxMS4yNSA4LjI4NTg5IDExLjI1SDE1LjcxNDlDMTYuODM4NSAxMS4yNSAxNy43NDk5IDEyLjE2MjIgMTcuNzQ5OSAxMy4yODZWMTRDMTcuNzQ5OSAxNC40MTQyIDE3LjQxNDEgMTQuNzUgMTYuOTk5OSAxNC43NUMxNi41ODU3IDE0Ljc1IDE2LjI0OTkgMTQuNDE0MiAxNi4yNDk5IDE0VjEzLjI4NkMxNi4yNDk5IDEyLjk4OTggMTYuMDA5MyAxMi43NSAxNS43MTQ5IDEyLjc1SDguMjg1ODlDNy45OTAxIDEyLjc1IDcuNzQ5ODkgMTIuOTkwMiA3Ljc0OTg5IDEzLjI4NlYyMC4yNUgxMi45OTk5QzEzLjQxNDEgMjAuMjUgMTMuNzQ5OSAyMC41ODU4IDEzLjc0OTkgMjFDMTMuNzQ5OSAyMS40MTQyIDEzLjQxNDEgMjEuNzUgMTIuOTk5OSAyMS43NUg1LjExMDg5QzMuNjAwMDkgMjEuNzUgMi4zNzE5NyAyMC41MzE4IDIuMzYwOTEgMTkuMDIwNkMyLjM2MDkxIDE5LjAyMDUgMi4zNjA5MSAxOS4wMjA2IDIuMzYwOTEgMTkuMDIwNkwyLjI1NjkxIDUuMDIwNFpNOC43NDI4OSAzLjc1VjYuOTA5QzguNzQyODkgNy4wNDY3OSA4Ljg1NTEgNy4xNTkgOC45OTI4OSA3LjE1OUgxNC45OTI5QzE1LjEzMDcgNy4xNTkgMTUuMjQyOSA3LjA0Njc5IDE1LjI0MjkgNi45MDlWMy43NUg4Ljc0Mjg5Wk0yMS41MzAyIDE3LjQ2OTdDMjEuODIzMSAxNy43NjI2IDIxLjgyMzEgMTguMjM3NCAyMS41MzAyIDE4LjUzMDNMMTguNTMwMiAyMS41MzAzQzE4LjIzNzMgMjEuODIzMiAxNy43NjI1IDIxLjgyMzIgMTcuNDY5NiAyMS41MzAzTDE1LjQ2OTYgMTkuNTMwM0MxNS4xNzY3IDE5LjIzNzQgMTUuMTc2NyAxOC43NjI2IDE1LjQ2OTYgMTguNDY5N0MxNS43NjI1IDE4LjE3NjggMTYuMjM3MyAxOC4xNzY4IDE2LjUzMDIgMTguNDY5N0wxNy45OTk5IDE5LjkzOTNMMjAuNDY5NiAxNy40Njk3QzIwLjc2MjUgMTcuMTc2OCAyMS4yMzczIDE3LjE3NjggMjEuNTMwMiAxNy40Njk3WiIgZmlsbD0iIzUwNTA1MSIvPg0KPC9zdmc+DQo=";
42419
42359
  var _imports_1 = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTIgMi4yNDYwOUMxMi4xOTg5IDIuMjQ2MDkgMTIuMzg5NyAyLjMyNTExIDEyLjUzMDMgMi40NjU3NkwxNS41MzE2IDUuNDY3MDFDMTUuODI0NSA1Ljc1OTkxIDE1LjgyNDUgNi4yMzQ3OCAxNS41MzE2IDYuNTI3NjdDMTUuMjM4NyA2LjgyMDU3IDE0Ljc2MzggNi44MjA1NyAxNC40NzA5IDYuNTI3NjdMMTIuNzUgNC44MDY3NVYxNS4wMDExQzEyLjc1IDE1LjQxNTMgMTIuNDE0MiAxNS43NTExIDEyIDE1Ljc1MTFDMTEuNTg1OCAxNS43NTExIDExLjI1IDE1LjQxNTMgMTEuMjUgMTUuMDAxMVY0LjgwNjc1TDkuNTI5MDcgNi41Mjc2N0M5LjIzNjE3IDYuODIwNTcgOC43NjEzIDYuODIwNTcgOC40Njg0MSA2LjUyNzY3QzguMTc1NTEgNi4yMzQ3OCA4LjE3NTUxIDUuNzU5OTEgOC40Njg0MSA1LjQ2NzAxTDExLjQ2OTcgMi40NjU3NkMxMS42MTAzIDIuMzI1MTEgMTEuODAxMSAyLjI0NjA5IDEyIDIuMjQ2MDlaTTYuOTk3OSA5Ljc0ODU5QzYuMzA3MDkgOS43NDg1OSA1Ljc0NzA3IDEwLjMwODYgNS43NDcwNyAxMC45OTk0VjE5LjAwMjhDNS43NDcwNyAxOS42OTM2IDYuMzA3MDkgMjAuMjUzNiA2Ljk5NzkgMjAuMjUzNkgxNy4wMDIxQzE3LjY5MjkgMjAuMjUzNiAxOC4yNTI5IDE5LjY5MzYgMTguMjUyOSAxOS4wMDI4VjEwLjk5OTRDMTguMjUyOSAxMC4zMDg2IDE3LjY5MjkgOS43NDg1OSAxNy4wMDIxIDkuNzQ4NTlIMTUuMDAxMkMxNC41ODcgOS43NDg1OSAxNC4yNTEyIDkuNDEyODEgMTQuMjUxMiA4Ljk5ODU5QzE0LjI1MTIgOC41ODQzOCAxNC41ODcgOC4yNDg1OSAxNS4wMDEyIDguMjQ4NTlIMTcuMDAyMUMxOC41MjEzIDguMjQ4NTkgMTkuNzUyOSA5LjQ4MDE4IDE5Ljc1MjkgMTAuOTk5NFYxOS4wMDI4QzE5Ljc1MjkgMjAuNTIyIDE4LjUyMTMgMjEuNzUzNiAxNy4wMDIxIDIxLjc1MzZINi45OTc5QzUuNDc4NjYgMjEuNzUzNiA0LjI0NzA3IDIwLjUyMiA0LjI0NzA3IDE5LjAwMjhWMTAuOTk5NEM0LjI0NzA3IDkuNDgwMTggNS40Nzg2NiA4LjI0ODU5IDYuOTk3OSA4LjI0ODU5SDguOTk4NzRDOS40MTI5NSA4LjI0ODU5IDkuNzQ4NzQgOC41ODQzOCA5Ljc0ODc0IDguOTk4NTlDOS43NDg3NCA5LjQxMjgxIDkuNDEyOTUgOS43NDg1OSA4Ljk5ODc0IDkuNzQ4NTlINi45OTc5WiIgZmlsbD0iIzUwNTA1MSIvPg0KPC9zdmc+DQo=";
42420
42360
  var _imports_2 = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTIgMi4zNTg4OUM2LjcwNDk1IDIuMzU4ODkgMi4yNSA2LjI2OTkzIDIuMjUgMTEuMjkwOUMyLjI1IDE0LjExMzIgMy42NzUwNyAxNi41OTAxIDUuODQ4NzQgMTguMjEwNkM1Ljg0ODY0IDE4LjYxNjkgNS44NDg5NiAxOS4wNzMgNS44NDkzMSAxOS41NTg1VjE5LjU1ODZMNS44NDkzMSAxOS41NTkyQzUuODQ5NjQgMjAuMDMxNSA1Ljg1IDIwLjUzMTYgNS44NSAyMS4wNDA5QzUuODUgMjEuMzAwMyA1Ljk4NDAxIDIxLjU0MTIgNi4yMDQzNiAyMS42NzhDNi40MjQ3MSAyMS44MTQ5IDYuNzAwMTEgMjEuODI4MSA2LjkzMjU5IDIxLjcxMzFMMTAuMjQxOSAyMC4wNzU4QzEwLjgxMTkgMjAuMTcxNCAxMS4zOTg3IDIwLjIyMjkgMTIgMjAuMjIyOUMxNy4yOTUxIDIwLjIyMjkgMjEuNzUgMTYuMzExOCAyMS43NSAxMS4yOTA5QzIxLjc1IDYuMjY5OTMgMTcuMjk1MSAyLjM1ODg5IDEyIDIuMzU4ODlaTTMuNzUgMTEuMjkwOUMzLjc1IDcuMjMzODUgNy4zOTEwNSAzLjg1ODg5IDEyIDMuODU4ODlDMTYuNjA4OSAzLjg1ODg5IDIwLjI1IDcuMjMzODUgMjAuMjUgMTEuMjkwOUMyMC4yNSAxNS4zNDc5IDE2LjYwODkgMTguNzIyOSAxMiAxOC43MjI5QzExLjQwODQgMTguNzIyOSAxMC44MzE3IDE4LjY2NDggMTAuMjcyNSAxOC41NTczQzEwLjExMTcgMTguNTI2NSA5Ljk0NTE3IDE4LjU0OTEgOS43OTg0MSAxOC42MjE3TDcuMzQ5NSAxOS44MzMzTDcuMzQ5MyAxOS41NTVDNy4zNDg4NCAxOC45MTAzIDcuMzQ4NDIgMTguMzE5MSA3LjM0OSAxNy44MjU4QzcuMzQ5MjkgMTcuNTc3NyA3LjIyNjkzIDE3LjM0NTYgNy4wMjIxNSAxNy4yMDU3QzUuMDIwODUgMTUuODM4MSAzLjc1IDEzLjY5NTMgMy43NSAxMS4yOTA5Wk0xMS45IDcuMDg0ODlDMTAuNTcxMyA3LjA4NDg5IDkuNDkgOC4xNjAyIDkuNDkgOS40OTI4OUM5LjQ5IDkuOTA3MSA5LjgyNTc5IDEwLjI0MjkgMTAuMjQgMTAuMjQyOUMxMC42NTQyIDEwLjI0MjkgMTAuOTkgOS45MDcxIDEwLjk5IDkuNDkyODlDMTAuOTkgOC45OTE1NyAxMS4zOTY3IDguNTg0ODkgMTEuOSA4LjU4NDg5QzEyLjQwMjEgOC41ODQ4OSAxMi44MDkgOC45OTEzOSAxMi44MDkgOS40OTM4OUMxMi44MDkgOS42NTQzMiAxMi43NjQ2IDkuNzU1NDMgMTIuNyA5Ljg0MjQxQzEyLjYyMyA5Ljk0NjE4IDEyLjUwMjggMTAuMDQ4MSAxMi4zMTk2IDEwLjE3MTVDMTEuODUxMyAxMC40ODU5IDExLjE0OSAxMS4wNDg2IDExLjE0OSAxMi4xMjA5VjEyLjMyNzlDMTEuMTQ5IDEyLjc0MjEgMTEuNDg0OCAxMy4wNzc5IDExLjg5OSAxMy4wNzc5QzEyLjMxMzIgMTMuMDc3OSAxMi42NDkgMTIuNzQyMSAxMi42NDkgMTIuMzI3OVYxMi4xMjA5QzEyLjY0OSAxMS45NTMyIDEyLjY5NTYgMTEuODQ3IDEyLjc2MzEgMTEuNzU2QzEyLjg0MzIgMTEuNjQ4MiAxMi45Njc3IDExLjU0MyAxMy4xNTYxIDExLjQxNjZMMTMuMTU2OCAxMS40MTYxQzEzLjYxNDQgMTEuMTA4IDE0LjMwOSAxMC41NTIzIDE0LjMwOSA5LjQ5Mzg5QzE0LjMwOSA4LjE2MjM4IDEzLjIyOTkgNy4wODQ4OSAxMS45IDcuMDg0ODlaTTExLjg5MDUgMTUuNzI2MUMxMi4zOTMgMTUuNzI2MSAxMi44MDA1IDE1LjMxODcgMTIuODAwNSAxNC44MTYxQzEyLjgwMDUgMTQuMzEzNiAxMi4zOTMgMTMuOTA2MSAxMS44OTA1IDEzLjkwNjFDMTEuMzg3OSAxMy45MDYxIDEwLjk4MDUgMTQuMzEzNiAxMC45ODA1IDE0LjgxNjFDMTAuOTgwNSAxNS4zMTg3IDExLjM4NzkgMTUuNzI2MSAxMS44OTA1IDE1LjcyNjFaIiBmaWxsPSIjNTA1MDUxIi8+DQo8L3N2Zz4NCg==";
42421
42361
  var plFormMenu_vue_vue_type_style_index_0_lang = "";
42422
- const _sfc_main$5 = {};
42423
- const _hoisted_1$5 = {
42362
+ const _sfc_main$6 = {};
42363
+ const _hoisted_1$6 = {
42424
42364
  id: "form-menu",
42425
42365
  class: "container padding-menu pt-3 pb-3 h-100"
42426
42366
  };
42427
- const _hoisted_2$4 = /* @__PURE__ */ createStaticVNode('<nav class="d-grid gap-52 justify-content-center h-100"><div class="d-grid top-section gap-4"><a href="#"><img src="' + _imports_0$1 + '" alt="saved"></a><a href="#"><img src="' + _imports_1 + '" alt="share"></a><a href="#"><img src="' + _imports_2 + '" alt="support"></a></div><div class="decor"></div><a class="mt-auto" href="#"><img src="' + _imports_3 + '" alt="close"></a></nav>', 1);
42428
- const _hoisted_3$4 = [
42429
- _hoisted_2$4
42367
+ const _hoisted_2$5 = /* @__PURE__ */ createStaticVNode('<nav class="d-grid gap-52 justify-content-center h-100"><div class="d-grid top-section gap-4"><a href="#"><img src="' + _imports_0$2 + '" alt="saved"></a><a href="#"><img src="' + _imports_1 + '" alt="share"></a><a href="#"><img src="' + _imports_2 + '" alt="support"></a></div><div class="decor"></div><a class="mt-auto" href="#"><img src="' + _imports_3 + '" alt="close"></a></nav>', 1);
42368
+ const _hoisted_3$5 = [
42369
+ _hoisted_2$5
42430
42370
  ];
42431
42371
  function _sfc_render(_ctx, _cache) {
42432
- return openBlock(), createElementBlock("div", _hoisted_1$5, _hoisted_3$4);
42372
+ return openBlock(), createElementBlock("div", _hoisted_1$6, _hoisted_3$5);
42433
42373
  }
42434
- var PlFormMenu = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["render", _sfc_render]]);
42435
- const _hoisted_1$4 = {
42374
+ var PlFormMenu = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["render", _sfc_render]]);
42375
+ const _hoisted_1$5 = {
42436
42376
  id: "container-general",
42437
42377
  class: "d-flex flex-column gap-3"
42438
42378
  };
42439
- const _hoisted_2$3 = { class: "d-flex justify-content-between mt-32" };
42440
- const _hoisted_3$3 = { class: "d-flex justify-content-between mt-32" };
42379
+ const _hoisted_2$4 = { class: "d-flex justify-content-between mt-32" };
42380
+ const _hoisted_3$4 = { class: "d-flex justify-content-between mt-32" };
42441
42381
  const _hoisted_4$3 = { class: "d-flex justify-content-between mt-32" };
42442
42382
  const _hoisted_5$2 = { class: "d-flex justify-content-between mt-32" };
42443
42383
  const _hoisted_6$1 = { class: "d-flex justify-content-between mt-32" };
42444
42384
  const _hoisted_7$1 = { class: "d-flex justify-content-between mt-32" };
42445
- const _sfc_main$4 = {
42385
+ const _sfc_main$5 = {
42446
42386
  __name: "pl-additional",
42447
42387
  props: {
42448
42388
  modelValue: { type: Object, required: true }
@@ -42450,6 +42390,7 @@ const _sfc_main$4 = {
42450
42390
  setup(__props) {
42451
42391
  const props = __props;
42452
42392
  let { modelValue: formClient } = toRefs(props);
42393
+ console.log("formClient", formClient);
42453
42394
  const isOpen = reactive({
42454
42395
  isBeneficiary: false,
42455
42396
  isAcquirer: false
@@ -42458,10 +42399,8 @@ const _sfc_main$4 = {
42458
42399
  const addAcquirer = () => isOpen.isAcquirer = true;
42459
42400
  return (_ctx, _cache) => {
42460
42401
  const _component_el_form_item = ElFormItem;
42461
- const _component_pl_select = _sfc_main$7;
42462
- const _component_pl_checkbox = _sfc_main$e;
42463
42402
  const _component_el_form = ElForm;
42464
- return openBlock(), createElementBlock("div", _hoisted_1$4, [
42403
+ return openBlock(), createElementBlock("div", _hoisted_1$5, [
42465
42404
  createVNode(_sfc_main$9, {
42466
42405
  title: "\u041A\u043E\u0441\u0432\u0435\u043D\u043D\u044B\u0435 \u0431\u0435\u043D\u0435\u0444\u0438\u0446\u0438\u0430\u0440\u044B",
42467
42406
  "bth-title": "\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C",
@@ -42475,7 +42414,7 @@ const _sfc_main$4 = {
42475
42414
  "add-item": addAcquirer
42476
42415
  }),
42477
42416
  createVNode(_sfc_main$a, {
42478
- onTogglePopup: _cache[12] || (_cache[12] = ($event) => isOpen.isBeneficiary = false),
42417
+ onTogglePopup: _cache[13] || (_cache[13] = ($event) => isOpen.isBeneficiary = false),
42479
42418
  visible: isOpen.isBeneficiary,
42480
42419
  name: "\u041D\u043E\u0432\u044B\u0439 \u0431\u0435\u043D\u0435\u0444\u0438\u0446\u0438\u0430\u0440",
42481
42420
  "no-tabs": true
@@ -42492,23 +42431,25 @@ const _sfc_main$4 = {
42492
42431
  modelValue: unref(formClient).newBeneficiary.fullName,
42493
42432
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => unref(formClient).newBeneficiary.fullName = $event),
42494
42433
  label: "\u0424\u0418\u041E \u043F\u043E\u043B\u043D\u043E\u0441\u0442\u044C\u044E",
42495
- placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0440\u0430\u0442\u043A\u043E\u0435 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438"
42496
- }, null, 8, ["modelValue"]),
42497
- createElementVNode("div", _hoisted_2$3, [
42434
+ placeholder: unref(placeholders).name
42435
+ }, null, 8, ["modelValue", "placeholder"]),
42436
+ createElementVNode("div", _hoisted_2$4, [
42498
42437
  createVNode(_sfc_main$f, {
42499
42438
  class: "width-260",
42500
42439
  modelValue: unref(formClient).newBeneficiary.percent,
42501
42440
  "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => unref(formClient).newBeneficiary.percent = $event),
42502
- label: "\u0414\u043E\u043B\u044F \u0432 \u0443\u0441\u0442\u0430\u0432\u043D\u043E\u043C \u043A\u0430\u043F\u0438\u0442\u0430\u043B\u0435"
42503
- }, null, 8, ["modelValue"]),
42441
+ label: "\u0414\u043E\u043B\u044F \u0432 \u0443\u0441\u0442\u0430\u0432\u043D\u043E\u043C \u043A\u0430\u043F\u0438\u0442\u0430\u043B\u0435",
42442
+ placeholder: unref(placeholders).share
42443
+ }, null, 8, ["modelValue", "placeholder"]),
42504
42444
  createVNode(_sfc_main$f, {
42505
42445
  class: "width-260",
42506
42446
  modelValue: unref(formClient).newBeneficiary.nationality,
42507
42447
  "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => unref(formClient).newBeneficiary.nationality = $event),
42508
- label: "\u0413\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E"
42509
- }, null, 8, ["modelValue"])
42448
+ label: "\u0413\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E",
42449
+ placeholder: unref(placeholders).nationality
42450
+ }, null, 8, ["modelValue", "placeholder"])
42510
42451
  ]),
42511
- createElementVNode("div", _hoisted_3$3, [
42452
+ createElementVNode("div", _hoisted_3$4, [
42512
42453
  createVNode(_component_el_form_item, {
42513
42454
  class: "width-260",
42514
42455
  label: "\u0414\u0430\u0442\u0430 \u0440\u043E\u0436\u0434\u0435\u043D\u0438\u044F"
@@ -42521,34 +42462,38 @@ const _sfc_main$4 = {
42521
42462
  ]),
42522
42463
  _: 1
42523
42464
  }),
42524
- createVNode(_component_pl_select, {
42465
+ createVNode(_sfc_main$g, {
42525
42466
  class: "width-260",
42526
42467
  label: "\u0414\u043E\u043A\u0443\u043C\u0435\u043D\u0442",
42527
42468
  modelValue: unref(formClient).newBeneficiary.doc,
42528
- "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => unref(formClient).newBeneficiary.doc = $event)
42529
- }, null, 8, ["modelValue"])
42469
+ "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => unref(formClient).newBeneficiary.doc = $event),
42470
+ placeholder: unref(placeholders).document
42471
+ }, null, 8, ["modelValue", "placeholder"])
42530
42472
  ]),
42531
42473
  createElementVNode("div", _hoisted_4$3, [
42532
42474
  createVNode(_sfc_main$f, {
42533
42475
  class: "width-260",
42534
42476
  modelValue: unref(formClient).newBeneficiary.ser,
42535
42477
  "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => unref(formClient).newBeneficiary.ser = $event),
42536
- label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430"
42537
- }, null, 8, ["modelValue"]),
42478
+ label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430",
42479
+ placeholder: unref(placeholders).passport.number
42480
+ }, null, 8, ["modelValue", "placeholder"]),
42538
42481
  createVNode(_sfc_main$f, {
42539
42482
  class: "width-260",
42540
42483
  modelValue: unref(formClient).newBeneficiary.numb,
42541
42484
  "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => unref(formClient).newBeneficiary.numb = $event),
42542
- label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F"
42543
- }, null, 8, ["modelValue"])
42485
+ label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F",
42486
+ placeholder: unref(placeholders).passport.code
42487
+ }, null, 8, ["modelValue", "placeholder"])
42544
42488
  ]),
42545
42489
  createVNode(_sfc_main$f, {
42546
42490
  class: "mt-32",
42547
42491
  area: true,
42548
42492
  label: "\u0421\u0432\u0435\u0434\u0435\u043D\u0438\u044F \u043E\u0431 \u043E\u0440\u0433\u0430\u043D\u0435, \u0432\u044B\u0434\u0430\u0432\u0448\u0435\u043C \u043F\u0430\u0441\u043F\u043E\u0440\u0442",
42549
42493
  modelValue: unref(formClient).newBeneficiary.organ,
42550
- "onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => unref(formClient).newBeneficiary.organ = $event)
42551
- }, null, 8, ["modelValue"]),
42494
+ "onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => unref(formClient).newBeneficiary.organ = $event),
42495
+ placeholder: unref(placeholders).passport.organ
42496
+ }, null, 8, ["modelValue", "placeholder"]),
42552
42497
  createVNode(_component_el_form_item, {
42553
42498
  style: { "margin-top": "32px !important" },
42554
42499
  label: "\u0414\u0430\u0442\u0430 \u0432\u044B\u0434\u0430\u0447\u0438 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430"
@@ -42556,8 +42501,9 @@ const _sfc_main$4 = {
42556
42501
  default: withCtx(() => [
42557
42502
  createVNode(_sfc_main$c, {
42558
42503
  modelValue: unref(formClient).newBeneficiary.dates.passport,
42559
- "onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => unref(formClient).newBeneficiary.dates.passport = $event)
42560
- }, null, 8, ["modelValue"])
42504
+ "onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => unref(formClient).newBeneficiary.dates.passport = $event),
42505
+ placeholder: unref(placeholders).dates.passport
42506
+ }, null, 8, ["modelValue", "placeholder"])
42561
42507
  ]),
42562
42508
  _: 1
42563
42509
  }),
@@ -42566,21 +42512,32 @@ const _sfc_main$4 = {
42566
42512
  area: true,
42567
42513
  label: "\u041C\u0435\u0441\u0442\u043E \u0440\u043E\u0436\u0434\u0435\u043D\u0438\u044F",
42568
42514
  modelValue: unref(formClient).newBeneficiary.organ,
42569
- "onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => unref(formClient).newBeneficiary.organ = $event)
42570
- }, null, 8, ["modelValue"]),
42515
+ "onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => unref(formClient).newBeneficiary.organ = $event),
42516
+ placeholder: unref(placeholders).birthPlace
42517
+ }, null, 8, ["modelValue", "placeholder"]),
42571
42518
  createVNode(_sfc_main$f, {
42572
42519
  class: "mt-32",
42573
42520
  modelValue: unref(formClient).newBeneficiary.LAddress,
42574
42521
  "onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => unref(formClient).newBeneficiary.LAddress = $event),
42575
42522
  area: true,
42576
- placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0430\u0434\u0440\u0435\u0441 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438",
42523
+ placeholder: unref(placeholders).address.registration,
42577
42524
  label: "\u0410\u0434\u0440\u0435\u0441 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438"
42578
- }, null, 8, ["modelValue"]),
42579
- createVNode(_component_pl_checkbox, {
42525
+ }, null, 8, ["modelValue", "placeholder"]),
42526
+ withDirectives(createVNode(_sfc_main$f, {
42527
+ class: "mt-32",
42528
+ modelValue: unref(formClient).newBeneficiary.LAddress,
42529
+ "onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => unref(formClient).newBeneficiary.LAddress = $event),
42530
+ area: true,
42531
+ placeholder: unref(placeholders).address.actual,
42532
+ label: "\u0424\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441"
42533
+ }, null, 8, ["modelValue", "placeholder"]), [
42534
+ [vShow, !unref(formClient).newBeneficiary.isSameAddress]
42535
+ ]),
42536
+ createVNode(_sfc_main$e, {
42580
42537
  class: "mt-32",
42581
42538
  label: "\u0424\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441 \u0441\u043E\u0432\u043F\u0430\u0434\u0430\u0435\u0442 \u0441 \u0430\u0434\u0440\u0435\u0441\u043E\u043C \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438",
42582
42539
  modelValue: unref(formClient).newBeneficiary.isSameAddress,
42583
- "onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => unref(formClient).newBeneficiary.isSameAddress = $event)
42540
+ "onUpdate:modelValue": _cache[12] || (_cache[12] = ($event) => unref(formClient).newBeneficiary.isSameAddress = $event)
42584
42541
  }, null, 8, ["modelValue"])
42585
42542
  ]),
42586
42543
  _: 1
@@ -42589,7 +42546,7 @@ const _sfc_main$4 = {
42589
42546
  _: 1
42590
42547
  }, 8, ["visible"]),
42591
42548
  createVNode(_sfc_main$a, {
42592
- onTogglePopup: _cache[25] || (_cache[25] = ($event) => isOpen.isAcquirer = false),
42549
+ onTogglePopup: _cache[28] || (_cache[28] = ($event) => isOpen.isAcquirer = false),
42593
42550
  visible: isOpen.isAcquirer,
42594
42551
  name: "\u041D\u043E\u0432\u044B\u0439 \u0432\u044B\u0433\u043E\u0434\u043E\u043F\u0440\u0438\u043E\u0431\u0440\u0435\u0442\u0430\u0442\u0435\u043B\u044C",
42595
42552
  "no-tabs": true
@@ -42604,24 +42561,32 @@ const _sfc_main$4 = {
42604
42561
  default: withCtx(() => [
42605
42562
  createVNode(_sfc_main$f, {
42606
42563
  modelValue: unref(formClient).newBeneficiary.fullName,
42607
- "onUpdate:modelValue": _cache[13] || (_cache[13] = ($event) => unref(formClient).newBeneficiary.fullName = $event),
42564
+ "onUpdate:modelValue": _cache[14] || (_cache[14] = ($event) => unref(formClient).newBeneficiary.fullName = $event),
42608
42565
  label: "\u0424\u0418\u041E \u043F\u043E\u043B\u043D\u043E\u0441\u0442\u044C\u044E",
42609
- placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0440\u0430\u0442\u043A\u043E\u0435 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u0430\u043D\u0438\u0438"
42610
- }, null, 8, ["modelValue"]),
42566
+ placeholder: unref(placeholders).name
42567
+ }, null, 8, ["modelValue", "placeholder"]),
42611
42568
  createElementVNode("div", _hoisted_5$2, [
42612
42569
  createVNode(_sfc_main$f, {
42613
42570
  class: "width-260",
42614
42571
  modelValue: unref(formClient).newBeneficiary.percent,
42615
- "onUpdate:modelValue": _cache[14] || (_cache[14] = ($event) => unref(formClient).newBeneficiary.percent = $event),
42616
- label: "\u0414\u043E\u043B\u044F \u0432 \u0443\u0441\u0442\u0430\u0432\u043D\u043E\u043C \u043A\u0430\u043F\u0438\u0442\u0430\u043B\u0435"
42617
- }, null, 8, ["modelValue"]),
42572
+ "onUpdate:modelValue": _cache[15] || (_cache[15] = ($event) => unref(formClient).newBeneficiary.percent = $event),
42573
+ label: "\u0414\u043E\u043B\u044F \u0432 \u0443\u0441\u0442\u0430\u0432\u043D\u043E\u043C \u043A\u0430\u043F\u0438\u0442\u0430\u043B\u0435",
42574
+ placeholder: unref(placeholders).share
42575
+ }, null, 8, ["modelValue", "placeholder"]),
42618
42576
  createVNode(_sfc_main$f, {
42619
42577
  class: "width-260",
42620
42578
  modelValue: unref(formClient).newBeneficiary.nationality,
42621
- "onUpdate:modelValue": _cache[15] || (_cache[15] = ($event) => unref(formClient).newBeneficiary.nationality = $event),
42622
- label: "\u0413\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E"
42623
- }, null, 8, ["modelValue"])
42579
+ "onUpdate:modelValue": _cache[16] || (_cache[16] = ($event) => unref(formClient).newBeneficiary.nationality = $event),
42580
+ label: "\u0413\u0440\u0430\u0436\u0434\u0430\u043D\u0441\u0442\u0432\u043E",
42581
+ placeholder: unref(placeholders).nationality
42582
+ }, null, 8, ["modelValue", "placeholder"])
42624
42583
  ]),
42584
+ createVNode(_sfc_main$e, {
42585
+ class: "mt-32",
42586
+ label: "\u042F\u0432\u043B\u044F\u0435\u0442\u0441\u044F \u0431\u0435\u043D\u0435\u0444\u0438\u0446\u0438\u0430\u0440\u043E\u043C",
42587
+ modelValue: unref(formClient).newBeneficiary.isBeneficiary,
42588
+ "onUpdate:modelValue": _cache[17] || (_cache[17] = ($event) => unref(formClient).newBeneficiary.isBeneficiary = $event)
42589
+ }, null, 8, ["modelValue"]),
42625
42590
  createElementVNode("div", _hoisted_6$1, [
42626
42591
  createVNode(_component_el_form_item, {
42627
42592
  class: "width-260",
@@ -42630,39 +42595,43 @@ const _sfc_main$4 = {
42630
42595
  default: withCtx(() => [
42631
42596
  createVNode(_sfc_main$c, {
42632
42597
  modelValue: unref(formClient).newBeneficiary.dates.birthday,
42633
- "onUpdate:modelValue": _cache[16] || (_cache[16] = ($event) => unref(formClient).newBeneficiary.dates.birthday = $event)
42598
+ "onUpdate:modelValue": _cache[18] || (_cache[18] = ($event) => unref(formClient).newBeneficiary.dates.birthday = $event)
42634
42599
  }, null, 8, ["modelValue"])
42635
42600
  ]),
42636
42601
  _: 1
42637
42602
  }),
42638
- createVNode(_component_pl_select, {
42603
+ createVNode(_sfc_main$g, {
42639
42604
  class: "width-260",
42640
42605
  label: "\u0414\u043E\u043A\u0443\u043C\u0435\u043D\u0442",
42641
42606
  modelValue: unref(formClient).newBeneficiary.doc,
42642
- "onUpdate:modelValue": _cache[17] || (_cache[17] = ($event) => unref(formClient).newBeneficiary.doc = $event)
42643
- }, null, 8, ["modelValue"])
42607
+ "onUpdate:modelValue": _cache[19] || (_cache[19] = ($event) => unref(formClient).newBeneficiary.doc = $event),
42608
+ placeholder: unref(placeholders).document
42609
+ }, null, 8, ["modelValue", "placeholder"])
42644
42610
  ]),
42645
42611
  createElementVNode("div", _hoisted_7$1, [
42646
42612
  createVNode(_sfc_main$f, {
42647
42613
  class: "width-260",
42648
42614
  modelValue: unref(formClient).newBeneficiary.ser,
42649
- "onUpdate:modelValue": _cache[18] || (_cache[18] = ($event) => unref(formClient).newBeneficiary.ser = $event),
42650
- label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430"
42651
- }, null, 8, ["modelValue"]),
42615
+ "onUpdate:modelValue": _cache[20] || (_cache[20] = ($event) => unref(formClient).newBeneficiary.ser = $event),
42616
+ label: "\u0421\u0435\u0440\u0438\u044F \u0438 \u043D\u043E\u043C\u0435\u0440 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430",
42617
+ placeholder: unref(placeholders).passport.number
42618
+ }, null, 8, ["modelValue", "placeholder"]),
42652
42619
  createVNode(_sfc_main$f, {
42653
42620
  class: "width-260",
42654
42621
  modelValue: unref(formClient).newBeneficiary.numb,
42655
- "onUpdate:modelValue": _cache[19] || (_cache[19] = ($event) => unref(formClient).newBeneficiary.numb = $event),
42656
- label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F"
42657
- }, null, 8, ["modelValue"])
42622
+ "onUpdate:modelValue": _cache[21] || (_cache[21] = ($event) => unref(formClient).newBeneficiary.numb = $event),
42623
+ label: "\u041A\u043E\u0434 \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u044F",
42624
+ placeholder: unref(placeholders).passport.code
42625
+ }, null, 8, ["modelValue", "placeholder"])
42658
42626
  ]),
42659
42627
  createVNode(_sfc_main$f, {
42660
42628
  class: "mt-32",
42661
42629
  area: true,
42662
42630
  label: "\u0421\u0432\u0435\u0434\u0435\u043D\u0438\u044F \u043E\u0431 \u043E\u0440\u0433\u0430\u043D\u0435, \u0432\u044B\u0434\u0430\u0432\u0448\u0435\u043C \u043F\u0430\u0441\u043F\u043E\u0440\u0442",
42663
42631
  modelValue: unref(formClient).newBeneficiary.organ,
42664
- "onUpdate:modelValue": _cache[20] || (_cache[20] = ($event) => unref(formClient).newBeneficiary.organ = $event)
42665
- }, null, 8, ["modelValue"]),
42632
+ "onUpdate:modelValue": _cache[22] || (_cache[22] = ($event) => unref(formClient).newBeneficiary.organ = $event),
42633
+ placeholder: unref(placeholders).passport.organ
42634
+ }, null, 8, ["modelValue", "placeholder"]),
42666
42635
  createVNode(_component_el_form_item, {
42667
42636
  style: { "margin-top": "32px !important" },
42668
42637
  label: "\u0414\u0430\u0442\u0430 \u0432\u044B\u0434\u0430\u0447\u0438 \u043F\u0430\u0441\u043F\u043E\u0440\u0442\u0430"
@@ -42670,7 +42639,7 @@ const _sfc_main$4 = {
42670
42639
  default: withCtx(() => [
42671
42640
  createVNode(_sfc_main$c, {
42672
42641
  modelValue: unref(formClient).newBeneficiary.dates.passport,
42673
- "onUpdate:modelValue": _cache[21] || (_cache[21] = ($event) => unref(formClient).newBeneficiary.dates.passport = $event)
42642
+ "onUpdate:modelValue": _cache[23] || (_cache[23] = ($event) => unref(formClient).newBeneficiary.dates.passport = $event)
42674
42643
  }, null, 8, ["modelValue"])
42675
42644
  ]),
42676
42645
  _: 1
@@ -42680,21 +42649,32 @@ const _sfc_main$4 = {
42680
42649
  area: true,
42681
42650
  label: "\u041C\u0435\u0441\u0442\u043E \u0440\u043E\u0436\u0434\u0435\u043D\u0438\u044F",
42682
42651
  modelValue: unref(formClient).newBeneficiary.organ,
42683
- "onUpdate:modelValue": _cache[22] || (_cache[22] = ($event) => unref(formClient).newBeneficiary.organ = $event)
42684
- }, null, 8, ["modelValue"]),
42652
+ "onUpdate:modelValue": _cache[24] || (_cache[24] = ($event) => unref(formClient).newBeneficiary.organ = $event),
42653
+ placeholder: unref(placeholders).birthPlace
42654
+ }, null, 8, ["modelValue", "placeholder"]),
42685
42655
  createVNode(_sfc_main$f, {
42686
42656
  class: "mt-32",
42687
42657
  modelValue: unref(formClient).newBeneficiary.LAddress,
42688
- "onUpdate:modelValue": _cache[23] || (_cache[23] = ($event) => unref(formClient).newBeneficiary.LAddress = $event),
42658
+ "onUpdate:modelValue": _cache[25] || (_cache[25] = ($event) => unref(formClient).newBeneficiary.LAddress = $event),
42689
42659
  area: true,
42690
- placeholder: "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0430\u0434\u0440\u0435\u0441 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438",
42660
+ placeholder: unref(placeholders).address.registration,
42691
42661
  label: "\u0410\u0434\u0440\u0435\u0441 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438"
42692
- }, null, 8, ["modelValue"]),
42693
- createVNode(_component_pl_checkbox, {
42662
+ }, null, 8, ["modelValue", "placeholder"]),
42663
+ withDirectives(createVNode(_sfc_main$f, {
42664
+ class: "mt-32",
42665
+ modelValue: unref(formClient).newBeneficiary.LAddress,
42666
+ "onUpdate:modelValue": _cache[26] || (_cache[26] = ($event) => unref(formClient).newBeneficiary.LAddress = $event),
42667
+ area: true,
42668
+ placeholder: unref(placeholders).address.actual,
42669
+ label: "\u0424\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441"
42670
+ }, null, 8, ["modelValue", "placeholder"]), [
42671
+ [vShow, !unref(formClient).newBeneficiary.isSameAddress]
42672
+ ]),
42673
+ createVNode(_sfc_main$e, {
42694
42674
  class: "mt-32",
42695
42675
  label: "\u0424\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u0434\u0440\u0435\u0441 \u0441\u043E\u0432\u043F\u0430\u0434\u0430\u0435\u0442 \u0441 \u0430\u0434\u0440\u0435\u0441\u043E\u043C \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438",
42696
42676
  modelValue: unref(formClient).newBeneficiary.isSameAddress,
42697
- "onUpdate:modelValue": _cache[24] || (_cache[24] = ($event) => unref(formClient).newBeneficiary.isSameAddress = $event)
42677
+ "onUpdate:modelValue": _cache[27] || (_cache[27] = ($event) => unref(formClient).newBeneficiary.isSameAddress = $event)
42698
42678
  }, null, 8, ["modelValue"])
42699
42679
  ]),
42700
42680
  _: 1
@@ -42707,21 +42687,21 @@ const _sfc_main$4 = {
42707
42687
  }
42708
42688
  };
42709
42689
  var plQuestionnaire_vue_vue_type_style_index_0_lang = "";
42710
- const _hoisted_1$3 = { class: "form-wrapper" };
42711
- const _hoisted_2$2 = {
42690
+ const _hoisted_1$4 = { class: "form-wrapper" };
42691
+ const _hoisted_2$3 = {
42712
42692
  id: "pl-questionnaire",
42713
42693
  class: "wrapper d-flex justify-content-between"
42714
42694
  };
42715
- const _hoisted_3$2 = { class: "left d-flex flex-column gap-2" };
42695
+ const _hoisted_3$3 = { class: "left d-flex flex-column gap-2" };
42716
42696
  const _hoisted_4$2 = { class: "center d-flex flex-column gap-3" };
42717
42697
  const _hoisted_5$1 = { class: "right" };
42718
- const _sfc_main$3 = {
42698
+ const _sfc_main$4 = {
42719
42699
  __name: "pl-questionnaire",
42720
42700
  props: {
42721
42701
  modelValue: { type: Object, required: true },
42722
42702
  percent: {
42723
42703
  type: Number,
42724
- default: 25
42704
+ default: 26
42725
42705
  }
42726
42706
  },
42727
42707
  emits: ["update:modelValue"],
@@ -42733,9 +42713,9 @@ const _sfc_main$3 = {
42733
42713
  });
42734
42714
  const selectTabs = ref("general");
42735
42715
  return (_ctx, _cache) => {
42736
- return openBlock(), createElementBlock("div", _hoisted_1$3, [
42737
- createElementVNode("div", _hoisted_2$2, [
42738
- createElementVNode("div", _hoisted_3$2, [
42716
+ return openBlock(), createElementBlock("div", _hoisted_1$4, [
42717
+ createElementVNode("div", _hoisted_2$3, [
42718
+ createElementVNode("div", _hoisted_3$3, [
42739
42719
  createVNode(_sfc_main$k, {
42740
42720
  selected: selectTabs.value,
42741
42721
  "onUpdate:selected": _cache[0] || (_cache[0] = ($event) => selectTabs.value = $event)
@@ -42756,12 +42736,12 @@ const _sfc_main$3 = {
42756
42736
  "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => isRef(form2) ? form2.value = $event : form2 = $event),
42757
42737
  percent: __props.percent
42758
42738
  }, null, 8, ["newFounderTabs", "modelValue", "percent"])) : createCommentVNode("", true),
42759
- selectTabs.value === "contact" ? (openBlock(), createBlock(_sfc_main$6, {
42739
+ selectTabs.value === "contact" ? (openBlock(), createBlock(_sfc_main$7, {
42760
42740
  key: 2,
42761
42741
  modelValue: unref(form2),
42762
42742
  "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => isRef(form2) ? form2.value = $event : form2 = $event)
42763
42743
  }, null, 8, ["modelValue"])) : createCommentVNode("", true),
42764
- selectTabs.value === "additional" ? (openBlock(), createBlock(_sfc_main$4, {
42744
+ selectTabs.value === "additional" ? (openBlock(), createBlock(_sfc_main$5, {
42765
42745
  key: 3,
42766
42746
  modelValue: unref(form2),
42767
42747
  "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => isRef(form2) ? form2.value = $event : form2 = $event)
@@ -42777,14 +42757,14 @@ const _sfc_main$3 = {
42777
42757
  };
42778
42758
  const PlQuestionnairePlugin = {
42779
42759
  install(app) {
42780
- app.component("PlQuestionnaire", _sfc_main$3);
42760
+ app.component("PlQuestionnaire", _sfc_main$4);
42781
42761
  app.use(k);
42782
42762
  }
42783
42763
  };
42784
42764
  var plStepper_vue_vue_type_style_index_0_lang = "";
42785
- const _hoisted_1$2 = { class: "stepper-container" };
42786
- const _hoisted_2$1 = { class: "stepper-title__container" };
42787
- const _hoisted_3$1 = {
42765
+ const _hoisted_1$3 = { class: "stepper-container" };
42766
+ const _hoisted_2$2 = { class: "stepper-title__container" };
42767
+ const _hoisted_3$2 = {
42788
42768
  key: 0,
42789
42769
  class: "stepper-figure"
42790
42770
  };
@@ -42843,7 +42823,7 @@ const _hoisted_35 = { class: "stepper-footer__count" };
42843
42823
  const __default__$1 = {
42844
42824
  name: "PlStepper"
42845
42825
  };
42846
- const _sfc_main$2 = /* @__PURE__ */ Object.assign(__default__$1, {
42826
+ const _sfc_main$3 = /* @__PURE__ */ Object.assign(__default__$1, {
42847
42827
  props: {
42848
42828
  displayType: {
42849
42829
  type: String,
@@ -42903,13 +42883,13 @@ const _sfc_main$2 = /* @__PURE__ */ Object.assign(__default__$1, {
42903
42883
  const checkCurrentTariff = (tariff, currentTariff2) => tariff[props.stepName] === currentTariff2[props.stepName];
42904
42884
  return (_ctx, _cache) => {
42905
42885
  return openBlock(), createElementBlock("div", null, [
42906
- createElementVNode("div", _hoisted_1$2, [
42886
+ createElementVNode("div", _hoisted_1$3, [
42907
42887
  (openBlock(true), createElementBlock(Fragment, null, renderList(unref(tariffsForStepper), (item, index) => {
42908
42888
  return openBlock(), createElementBlock("div", {
42909
42889
  class: "stepper-item",
42910
42890
  key: item[__props.stepName]
42911
42891
  }, [
42912
- createElementVNode("div", _hoisted_2$1, [
42892
+ createElementVNode("div", _hoisted_2$2, [
42913
42893
  createElementVNode("div", {
42914
42894
  class: normalizeClass(["stepper-title", {
42915
42895
  "stepper-title_centered": getTariffsOnCenter(index),
@@ -42918,7 +42898,7 @@ const _sfc_main$2 = /* @__PURE__ */ Object.assign(__default__$1, {
42918
42898
  }])
42919
42899
  }, toDisplayString(item[__props.stepName]), 3)
42920
42900
  ]),
42921
- __props.currentCount > item[__props.stepCountName] && !checkCurrentTariff(item, unref(currentTariff)) ? (openBlock(), createElementBlock("div", _hoisted_3$1, _hoisted_6)) : (openBlock(), createElementBlock("div", _hoisted_7, [
42901
+ __props.currentCount > item[__props.stepCountName] && !checkCurrentTariff(item, unref(currentTariff)) ? (openBlock(), createElementBlock("div", _hoisted_3$2, _hoisted_6)) : (openBlock(), createElementBlock("div", _hoisted_7, [
42922
42902
  createElementVNode("div", {
42923
42903
  class: normalizeClass(["stepper-figure__circle", {
42924
42904
  "stepper-figure__circle_checked": checkCurrentTariff(item, unref(currentTariff))
@@ -43006,18 +42986,18 @@ const _sfc_main$2 = /* @__PURE__ */ Object.assign(__default__$1, {
43006
42986
  });
43007
42987
  const PlStepperPlugin = {
43008
42988
  install(app) {
43009
- app.component("PlStepper", _sfc_main$2);
42989
+ app.component("PlStepper", _sfc_main$3);
43010
42990
  }
43011
42991
  };
43012
42992
  var plGroupTable_vue_vue_type_style_index_0_lang = "";
43013
- const _hoisted_1$1 = {
42993
+ const _hoisted_1$2 = {
43014
42994
  key: 0,
43015
42995
  class: "groupLabel__subLabelsList"
43016
42996
  };
43017
42997
  const __default__ = {
43018
42998
  name: "PlGroupTable"
43019
42999
  };
43020
- const _sfc_main$1 = /* @__PURE__ */ Object.assign(__default__, {
43000
+ const _sfc_main$2 = /* @__PURE__ */ Object.assign(__default__, {
43021
43001
  props: {
43022
43002
  showPopover: {
43023
43003
  type: Boolean,
@@ -43708,7 +43688,7 @@ const _sfc_main$1 = /* @__PURE__ */ Object.assign(__default__, {
43708
43688
  renderSlot(_ctx.$slots, [unref(groupLabelProp), getKeyOfGroup(row)].join("-"), {}, () => [
43709
43689
  createElementVNode("p", null, toDisplayString(getGroupLabel(row)), 1)
43710
43690
  ]),
43711
- row[unref(groupItemsProp)] ? (openBlock(), createElementBlock("div", _hoisted_1$1, [
43691
+ row[unref(groupItemsProp)] ? (openBlock(), createElementBlock("div", _hoisted_1$2, [
43712
43692
  renderSlot(_ctx.$slots, [unref(groupSubLabelProp), getKeyOfGroup(row)].join("-"))
43713
43693
  ])) : createCommentVNode("", true)
43714
43694
  ]),
@@ -43751,12 +43731,148 @@ const _sfc_main$1 = /* @__PURE__ */ Object.assign(__default__, {
43751
43731
  });
43752
43732
  const PlGroupTablePlugin = {
43753
43733
  install(app) {
43754
- app.component("PlGroupTable", _sfc_main$1);
43734
+ app.component("PlGroupTable", _sfc_main$2);
43735
+ }
43736
+ };
43737
+ var _imports_0$1 = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTEuNDY4NyA5LjQ2OTY3QzExLjc2MTYgOS4xNzY3OCAxMi4yMzY0IDkuMTc2NzggMTIuNTI5MyA5LjQ2OTY3TDE2LjUyOTMgMTMuNDY5N0MxNi44MjIyIDEzLjc2MjYgMTYuODIyMiAxNC4yMzc0IDE2LjUyOTMgMTQuNTMwM0MxNi4yMzY0IDE0LjgyMzIgMTUuNzYxNiAxNC44MjMyIDE1LjQ2ODcgMTQuNTMwM0wxMS45OTkgMTEuMDYwN0w4LjUyOTMyIDE0LjUzMDNDOC4yMzY0MyAxNC44MjMyIDcuNzYxNTYgMTQuODIzMiA3LjQ2ODY2IDE0LjUzMDNDNy4xNzU3NyAxNC4yMzc0IDcuMTc1NzcgMTMuNzYyNiA3LjQ2ODY2IDEzLjQ2OTdMMTEuNDY4NyA5LjQ2OTY3WiIgZmlsbD0iIzY1NjU2NyIvPg0KPC9zdmc+DQo=";
43738
+ var plSelect_vue_vue_type_style_index_0_lang = "";
43739
+ const _hoisted_1$1 = { id: "form-select" };
43740
+ const _hoisted_2$1 = { class: "flex item-select" };
43741
+ const _hoisted_3$1 = {
43742
+ key: 0,
43743
+ src: _imports_1$2
43744
+ };
43745
+ const _sfc_main$1 = {
43746
+ __name: "pl-select",
43747
+ props: {
43748
+ placeholder: {
43749
+ type: String,
43750
+ default: ""
43751
+ },
43752
+ rules: {
43753
+ type: Object,
43754
+ default: function() {
43755
+ return {};
43756
+ }
43757
+ },
43758
+ prop: {
43759
+ type: String,
43760
+ default: "name"
43761
+ },
43762
+ isError: {
43763
+ type: Boolean,
43764
+ default: false
43765
+ },
43766
+ label: {
43767
+ type: String,
43768
+ default: ""
43769
+ },
43770
+ modelValue: {
43771
+ type: String,
43772
+ required: true
43773
+ },
43774
+ options: {
43775
+ type: Object,
43776
+ required: true
43777
+ },
43778
+ checked: {
43779
+ type: Boolean,
43780
+ default: true
43781
+ }
43782
+ },
43783
+ emits: ["update:modelValue", "validate"],
43784
+ setup(__props, { emit: emit2 }) {
43785
+ const props = __props;
43786
+ const selected = ref(false);
43787
+ const formSelect = ref();
43788
+ let select2 = ref("");
43789
+ select2.value = props.modelValue;
43790
+ let { modelValue: validateValue } = toRefs(props);
43791
+ const ruleForm = ref({
43792
+ [props.prop]: validateValue
43793
+ });
43794
+ const validateInp = (prop, isValid2, message2) => {
43795
+ emit2("validate", prop, isValid2, message2);
43796
+ };
43797
+ const blurSelect = async () => {
43798
+ selected.value = false;
43799
+ setTimeout(() => {
43800
+ formSelect.value.validate(() => {
43801
+ });
43802
+ }, 200);
43803
+ };
43804
+ watch(select2, (value) => {
43805
+ selected.value = false;
43806
+ emit2("update:modelValue", value);
43807
+ });
43808
+ return (_ctx, _cache) => {
43809
+ const _component_el_option = ElOption;
43810
+ const _component_el_select = ElSelect;
43811
+ const _component_el_form_item = ElFormItem;
43812
+ const _component_el_form = ElForm;
43813
+ return openBlock(), createElementBlock("div", _hoisted_1$1, [
43814
+ createVNode(_component_el_form, {
43815
+ onValidate: validateInp,
43816
+ "label-position": "top",
43817
+ model: ruleForm.value,
43818
+ ref_key: "formSelect",
43819
+ ref: formSelect,
43820
+ rules: __props.rules
43821
+ }, {
43822
+ default: withCtx(() => [
43823
+ createVNode(_component_el_form_item, {
43824
+ label: __props.label,
43825
+ prop: __props.prop,
43826
+ class: normalizeClass({ "is-error": __props.isError }),
43827
+ "show-message": true
43828
+ }, {
43829
+ default: withCtx(() => [
43830
+ createElementVNode("img", {
43831
+ class: normalizeClass(["form-select__arrow", { rotate: selected.value }]),
43832
+ src: _imports_0$1,
43833
+ alt: "arrow"
43834
+ }, null, 2),
43835
+ createVNode(_component_el_select, {
43836
+ "popper-class": [{ checked: __props.checked }, "selectBox"],
43837
+ modelValue: unref(select2),
43838
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(select2) ? select2.value = $event : select2 = $event),
43839
+ placeholder: __props.placeholder,
43840
+ onFocus: _cache[1] || (_cache[1] = ($event) => selected.value = true),
43841
+ onBlur: blurSelect
43842
+ }, {
43843
+ default: withCtx(() => [
43844
+ (openBlock(true), createElementBlock(Fragment, null, renderList(__props.options, (item) => {
43845
+ return openBlock(), createBlock(_component_el_option, {
43846
+ class: "pl-form-option",
43847
+ key: item.value,
43848
+ label: item.label,
43849
+ value: item.value
43850
+ }, {
43851
+ default: withCtx(() => [
43852
+ createElementVNode("div", _hoisted_2$1, [
43853
+ createTextVNode(toDisplayString(item.label) + " ", 1),
43854
+ item.value === unref(select2) ? (openBlock(), createElementBlock("img", _hoisted_3$1)) : createCommentVNode("", true)
43855
+ ])
43856
+ ]),
43857
+ _: 2
43858
+ }, 1032, ["label", "value"]);
43859
+ }), 128))
43860
+ ]),
43861
+ _: 1
43862
+ }, 8, ["popper-class", "modelValue", "placeholder"])
43863
+ ]),
43864
+ _: 1
43865
+ }, 8, ["label", "prop", "class"])
43866
+ ]),
43867
+ _: 1
43868
+ }, 8, ["model", "rules"])
43869
+ ]);
43870
+ };
43755
43871
  }
43756
43872
  };
43757
43873
  const PlSelectPlugin = {
43758
43874
  install(app) {
43759
- app.component("PlSelect", _sfc_main$7);
43875
+ app.component("PlSelect", _sfc_main$1);
43760
43876
  }
43761
43877
  };
43762
43878
  const PlDatePickerPlusPlugin = {
@@ -43877,4 +43993,4 @@ const PlPlugin = {
43877
43993
  apiJs: ApiJs,
43878
43994
  loader: loadingAndSetup
43879
43995
  };
43880
- export { PlButton, PlButtonPlugin, _sfc_main as PlCard, PlCardPlugin, _sfc_main$q as PlCertDialog, PlCertDialogPlugin, _sfc_main$z as PlCurrency, PlCurrencyPlugin, _sfc_main$r as PlDatePicker, PlDatePickerPlugin, _sfc_main$c as PlDatePickerPlus, PlDatePickerPlusPlugin, _sfc_main$s as PlDatePickerRange, _sfc_main$y as PlForm, PlFormItem, PlFormItemPlugin, PlFormPlugin, _sfc_main$x as PlInput, _sfc_main$w as PlInputNative, PlInputNativePlugin, PlInputPlugin, _sfc_main$2 as PlStepper, PlStepperPlugin, _sfc_main$p as PlTable, _sfc_main$o as PlTableColumn, PlTablePlugin, _sfc_main$n as PlUpload, PlUploadPlugin, _sfc_main$u as TestViteNpmComponent, TestViteNpmComponentPlugin, PlPlugin as default };
43996
+ export { PlButton, PlButtonPlugin, _sfc_main as PlCard, PlCardPlugin, _sfc_main$q as PlCertDialog, PlCertDialogPlugin, _sfc_main$z as PlCurrency, PlCurrencyPlugin, _sfc_main$r as PlDatePicker, PlDatePickerPlugin, _sfc_main$c as PlDatePickerPlus, PlDatePickerPlusPlugin, _sfc_main$s as PlDatePickerRange, _sfc_main$y as PlForm, PlFormItem, PlFormItemPlugin, PlFormPlugin, _sfc_main$x as PlInput, _sfc_main$w as PlInputNative, PlInputNativePlugin, PlInputPlugin, _sfc_main$3 as PlStepper, PlStepperPlugin, _sfc_main$p as PlTable, _sfc_main$o as PlTableColumn, PlTablePlugin, _sfc_main$n as PlUpload, PlUploadPlugin, _sfc_main$u as TestViteNpmComponent, TestViteNpmComponentPlugin, PlPlugin as default };