@dxtmisha/wiki 0.64.0 → 0.65.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/storybook.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { t as e } from "./defineProperty-j1GyHeIL.js";
2
- import { t } from "./wikiDescriptions-n3cFkYRZ.js";
2
+ import { t } from "./wikiDescriptions-CRalqVE2.js";
3
3
  import { Geo as n, executeFunction as ee, isObjectNotArray as te } from "@dxtmisha/functional";
4
4
  import "react";
5
5
  import { Canvas as r, Controls as ne, Source as i, Subtitle as re, Title as ie } from "@storybook/addon-docs/blocks";
@@ -19351,8 +19351,125 @@ var Fd = {
19351
19351
  }
19352
19352
  };
19353
19353
  //#endregion
19354
- //#region src/media/mdx/Modal/differences.en.mdx
19354
+ //#region src/media/mdx/MenuCountry/menuCountry.en.mdx
19355
19355
  function Id(e) {
19356
+ let t = {
19357
+ li: "li",
19358
+ p: "p",
19359
+ strong: "strong",
19360
+ ul: "ul",
19361
+ ...e.components
19362
+ };
19363
+ return s(a, { children: [
19364
+ o(t.p, { children: "Specialized menu for selecting countries with automatic flag and name loading." }),
19365
+ "\n",
19366
+ o(t.p, { children: "MenuCountry is an extension of the Menu component, designed specifically for country selection. It leverages the GeoFlagRef utility to automatically populate the menu with a list of countries, including their flags and localized names. It supports all the standard Menu functionalities like Window-based popups, custom controls, and sophisticated focus management." }),
19367
+ "\n",
19368
+ o(t.p, { children: o(t.strong, { children: "Key Features:" }) }),
19369
+ "\n",
19370
+ s(t.ul, { children: [
19371
+ "\n",
19372
+ o(t.li, { children: "Automatic generation of country list via GeoFlagRef utility" }),
19373
+ "\n",
19374
+ o(t.li, { children: "Filtering of available countries via the countryList property" }),
19375
+ "\n",
19376
+ o(t.li, { children: "Support for internationalized country names" }),
19377
+ "\n",
19378
+ o(t.li, { children: "All standard features of the base Menu component (positioning, keyboard navigation, submenus, etc.)" }),
19379
+ "\n"
19380
+ ] }),
19381
+ "\n",
19382
+ o(t.p, { children: o(t.strong, { children: "Typical Use Cases:" }) }),
19383
+ "\n",
19384
+ s(t.ul, { children: [
19385
+ "\n",
19386
+ o(t.li, { children: "Country selection dropdowns" }),
19387
+ "\n",
19388
+ o(t.li, { children: "Language/region selectors in user profiles" }),
19389
+ "\n",
19390
+ o(t.li, { children: "Delivery or registration country forms" }),
19391
+ "\n"
19392
+ ] }),
19393
+ "\n",
19394
+ o(i, {
19395
+ code: "\n<script setup>\nimport { ref } from 'vue'\n\nconst selectedValue = ref('US')\n<\/script>\n\n<template>\n<MenuCountry\n v-model:selected=\"selectedValue\"\n is-selected-by-value\n>\n <template #control=\"{ binds }\">\n <button class=\"wiki-storybook-button\" v-bind=\"binds\">\n Select Country\n </button>\n </template>\n</MenuCountry>\n</template>\n",
19396
+ language: "html"
19397
+ })
19398
+ ] });
19399
+ }
19400
+ function Ld(e = {}) {
19401
+ let { wrapper: t } = e.components || {};
19402
+ return t ? o(t, {
19403
+ ...e,
19404
+ children: o(Id, { ...e })
19405
+ }) : Id(e);
19406
+ }
19407
+ //#endregion
19408
+ //#region src/media/mdx/MenuCountry/menuCountry.ru.mdx
19409
+ function Rd(e) {
19410
+ let t = {
19411
+ li: "li",
19412
+ p: "p",
19413
+ strong: "strong",
19414
+ ul: "ul",
19415
+ ...e.components
19416
+ };
19417
+ return s(a, { children: [
19418
+ o(t.p, { children: "Специализированное меню для выбора стран с автоматической загрузкой флагов и названий." }),
19419
+ "\n",
19420
+ o(t.p, { children: "MenuCountry является расширением компонента Menu, разработанным специально для выбора стран. Он использует утилиту GeoFlagRef для автоматического заполнения меню списком стран, включая их флаги и локализованные названия. Компонент поддерживает все стандартные функции Menu, такие как всплывающие окна на основе Window, кастомные элементы управления и развитое управление фокусом." }),
19421
+ "\n",
19422
+ o(t.p, { children: o(t.strong, { children: "Основные возможности:" }) }),
19423
+ "\n",
19424
+ s(t.ul, { children: [
19425
+ "\n",
19426
+ o(t.li, { children: "Автоматическая генерация списка стран с помощью утилиты GeoFlagRef" }),
19427
+ "\n",
19428
+ o(t.li, { children: "Фильтрация доступных для выбора стран через свойство countryList" }),
19429
+ "\n",
19430
+ o(t.li, { children: "Поддержка интернационализированных названий стран" }),
19431
+ "\n",
19432
+ o(t.li, { children: "Все стандартные возможности базового компонента Menu (позиционирование, клавиатурная навигация, подменю и т.д.)" }),
19433
+ "\n"
19434
+ ] }),
19435
+ "\n",
19436
+ o(t.p, { children: o(t.strong, { children: "Типичные сценарии использования:" }) }),
19437
+ "\n",
19438
+ s(t.ul, { children: [
19439
+ "\n",
19440
+ o(t.li, { children: "Выпадающие списки выбора страны" }),
19441
+ "\n",
19442
+ o(t.li, { children: "Выбор языка/региона в профиле пользователя" }),
19443
+ "\n",
19444
+ o(t.li, { children: "Формы указания страны доставки или регистрации" }),
19445
+ "\n"
19446
+ ] }),
19447
+ "\n",
19448
+ o(i, {
19449
+ code: "\n<script setup>\nimport { ref } from 'vue'\n\nconst selectedValue = ref('RU')\n<\/script>\n\n<template>\n<MenuCountry\n v-model:selected=\"selectedValue\"\n is-selected-by-value\n>\n <template #control=\"{ binds }\">\n <button class=\"wiki-storybook-button\" v-bind=\"binds\">\n Выбрать страну\n </button>\n </template>\n</MenuCountry>\n</template>\n",
19450
+ language: "html"
19451
+ })
19452
+ ] });
19453
+ }
19454
+ function zd(e = {}) {
19455
+ let { wrapper: t } = e.components || {};
19456
+ return t ? o(t, {
19457
+ ...e,
19458
+ children: o(Rd, { ...e })
19459
+ }) : Rd(e);
19460
+ }
19461
+ //#endregion
19462
+ //#region src/media/mdx/MenuCountry/wikiMdxMenuCountry.ts
19463
+ var Bd = {
19464
+ name: "MenuCountry",
19465
+ descriptions: { menuCountry: {
19466
+ en: Ld,
19467
+ ru: zd
19468
+ } }
19469
+ };
19470
+ //#endregion
19471
+ //#region src/media/mdx/Modal/differences.en.mdx
19472
+ function Vd(e) {
19356
19473
  let t = {
19357
19474
  code: "code",
19358
19475
  h2: "h2",
@@ -19661,16 +19778,16 @@ function Id(e) {
19661
19778
  ] })
19662
19779
  ] });
19663
19780
  }
19664
- function Ld(e = {}) {
19781
+ function Hd(e = {}) {
19665
19782
  let { wrapper: t } = e.components || {};
19666
19783
  return t ? o(t, {
19667
19784
  ...e,
19668
- children: o(Id, { ...e })
19669
- }) : Id(e);
19785
+ children: o(Vd, { ...e })
19786
+ }) : Vd(e);
19670
19787
  }
19671
19788
  //#endregion
19672
19789
  //#region src/media/mdx/Modal/differences.ru.mdx
19673
- function Rd(e) {
19790
+ function Ud(e) {
19674
19791
  let t = {
19675
19792
  code: "code",
19676
19793
  h2: "h2",
@@ -19832,16 +19949,16 @@ function Rd(e) {
19832
19949
  ] })
19833
19950
  ] });
19834
19951
  }
19835
- function zd(e = {}) {
19952
+ function Wd(e = {}) {
19836
19953
  let { wrapper: t } = e.components || {};
19837
19954
  return t ? o(t, {
19838
19955
  ...e,
19839
- children: o(Rd, { ...e })
19840
- }) : Rd(e);
19956
+ children: o(Ud, { ...e })
19957
+ }) : Ud(e);
19841
19958
  }
19842
19959
  //#endregion
19843
19960
  //#region src/media/mdx/Modal/modal.en.mdx
19844
- function Bd(e) {
19961
+ function Gd(e) {
19845
19962
  let t = {
19846
19963
  code: "code",
19847
19964
  li: "li",
@@ -19911,16 +20028,16 @@ function Bd(e) {
19911
20028
  })
19912
20029
  ] });
19913
20030
  }
19914
- function Vd(e = {}) {
20031
+ function Kd(e = {}) {
19915
20032
  let { wrapper: t } = e.components || {};
19916
20033
  return t ? o(t, {
19917
20034
  ...e,
19918
- children: o(Bd, { ...e })
19919
- }) : Bd(e);
20035
+ children: o(Gd, { ...e })
20036
+ }) : Gd(e);
19920
20037
  }
19921
20038
  //#endregion
19922
20039
  //#region src/media/mdx/Modal/modal.ru.mdx
19923
- function Hd(e) {
20040
+ function qd(e) {
19924
20041
  let t = {
19925
20042
  code: "code",
19926
20043
  li: "li",
@@ -19990,31 +20107,31 @@ function Hd(e) {
19990
20107
  })
19991
20108
  ] });
19992
20109
  }
19993
- function Ud(e = {}) {
20110
+ function Jd(e = {}) {
19994
20111
  let { wrapper: t } = e.components || {};
19995
20112
  return t ? o(t, {
19996
20113
  ...e,
19997
- children: o(Hd, { ...e })
19998
- }) : Hd(e);
20114
+ children: o(qd, { ...e })
20115
+ }) : qd(e);
19999
20116
  }
20000
20117
  //#endregion
20001
20118
  //#region src/media/mdx/Modal/wikiMdxModal.ts
20002
- var Wd = {
20119
+ var Yd = {
20003
20120
  name: "Modal",
20004
20121
  descriptions: {
20005
20122
  differences: {
20006
- en: Ld,
20007
- ru: zd
20123
+ en: Hd,
20124
+ ru: Wd
20008
20125
  },
20009
20126
  modal: {
20010
- en: Vd,
20011
- ru: Ud
20127
+ en: Kd,
20128
+ ru: Jd
20012
20129
  }
20013
20130
  }
20014
20131
  };
20015
20132
  //#endregion
20016
20133
  //#region src/media/mdx/MotionAxis/classes.en.mdx
20017
- function Gd(e) {
20134
+ function Xd(e) {
20018
20135
  let t = {
20019
20136
  code: "code",
20020
20137
  h2: "h2",
@@ -20067,16 +20184,16 @@ function Gd(e) {
20067
20184
  ] })
20068
20185
  ] });
20069
20186
  }
20070
- function Kd(e = {}) {
20187
+ function Zd(e = {}) {
20071
20188
  let { wrapper: t } = e.components || {};
20072
20189
  return t ? o(t, {
20073
20190
  ...e,
20074
- children: o(Gd, { ...e })
20075
- }) : Gd(e);
20191
+ children: o(Xd, { ...e })
20192
+ }) : Xd(e);
20076
20193
  }
20077
20194
  //#endregion
20078
20195
  //#region src/media/mdx/MotionAxis/classes.ru.mdx
20079
- function qd(e) {
20196
+ function Qd(e) {
20080
20197
  let t = {
20081
20198
  code: "code",
20082
20199
  h2: "h2",
@@ -20129,16 +20246,16 @@ function qd(e) {
20129
20246
  ] })
20130
20247
  ] });
20131
20248
  }
20132
- function Jd(e = {}) {
20249
+ function $d(e = {}) {
20133
20250
  let { wrapper: t } = e.components || {};
20134
20251
  return t ? o(t, {
20135
20252
  ...e,
20136
- children: o(qd, { ...e })
20137
- }) : qd(e);
20253
+ children: o(Qd, { ...e })
20254
+ }) : Qd(e);
20138
20255
  }
20139
20256
  //#endregion
20140
20257
  //#region src/media/mdx/MotionAxis/event.en.mdx
20141
- function Yd(e) {
20258
+ function ef(e) {
20142
20259
  let t = {
20143
20260
  code: "code",
20144
20261
  h3: "h3",
@@ -20207,16 +20324,16 @@ function Yd(e) {
20207
20324
  })
20208
20325
  ] });
20209
20326
  }
20210
- function Xd(e = {}) {
20327
+ function tf(e = {}) {
20211
20328
  let { wrapper: t } = e.components || {};
20212
20329
  return t ? o(t, {
20213
20330
  ...e,
20214
- children: o(Yd, { ...e })
20215
- }) : Yd(e);
20331
+ children: o(ef, { ...e })
20332
+ }) : ef(e);
20216
20333
  }
20217
20334
  //#endregion
20218
20335
  //#region src/media/mdx/MotionAxis/event.ru.mdx
20219
- function Zd(e) {
20336
+ function nf(e) {
20220
20337
  let t = {
20221
20338
  code: "code",
20222
20339
  h3: "h3",
@@ -20285,16 +20402,16 @@ function Zd(e) {
20285
20402
  })
20286
20403
  ] });
20287
20404
  }
20288
- function Qd(e = {}) {
20405
+ function rf(e = {}) {
20289
20406
  let { wrapper: t } = e.components || {};
20290
20407
  return t ? o(t, {
20291
20408
  ...e,
20292
- children: o(Zd, { ...e })
20293
- }) : Zd(e);
20409
+ children: o(nf, { ...e })
20410
+ }) : nf(e);
20294
20411
  }
20295
20412
  //#endregion
20296
20413
  //#region src/media/mdx/MotionAxis/expose.en.mdx
20297
- function $d(e) {
20414
+ function af(e) {
20298
20415
  let t = {
20299
20416
  code: "code",
20300
20417
  li: "li",
@@ -20323,16 +20440,16 @@ function $d(e) {
20323
20440
  "\n"
20324
20441
  ] });
20325
20442
  }
20326
- function ef(e = {}) {
20443
+ function of(e = {}) {
20327
20444
  let { wrapper: t } = e.components || {};
20328
20445
  return t ? o(t, {
20329
20446
  ...e,
20330
- children: o($d, { ...e })
20331
- }) : $d(e);
20447
+ children: o(af, { ...e })
20448
+ }) : af(e);
20332
20449
  }
20333
20450
  //#endregion
20334
20451
  //#region src/media/mdx/MotionAxis/expose.ru.mdx
20335
- function tf(e) {
20452
+ function sf(e) {
20336
20453
  let t = {
20337
20454
  code: "code",
20338
20455
  li: "li",
@@ -20361,16 +20478,16 @@ function tf(e) {
20361
20478
  "\n"
20362
20479
  ] });
20363
20480
  }
20364
- function nf(e = {}) {
20481
+ function cf(e = {}) {
20365
20482
  let { wrapper: t } = e.components || {};
20366
20483
  return t ? o(t, {
20367
20484
  ...e,
20368
- children: o(tf, { ...e })
20369
- }) : tf(e);
20485
+ children: o(sf, { ...e })
20486
+ }) : sf(e);
20370
20487
  }
20371
20488
  //#endregion
20372
20489
  //#region src/media/mdx/MotionAxis/motionAxis.en.mdx
20373
- function rf(e) {
20490
+ function lf(e) {
20374
20491
  let t = {
20375
20492
  li: "li",
20376
20493
  p: "p",
@@ -20421,16 +20538,16 @@ function rf(e) {
20421
20538
  })
20422
20539
  ] });
20423
20540
  }
20424
- function af(e = {}) {
20541
+ function uf(e = {}) {
20425
20542
  let { wrapper: t } = e.components || {};
20426
20543
  return t ? o(t, {
20427
20544
  ...e,
20428
- children: o(rf, { ...e })
20429
- }) : rf(e);
20545
+ children: o(lf, { ...e })
20546
+ }) : lf(e);
20430
20547
  }
20431
20548
  //#endregion
20432
20549
  //#region src/media/mdx/MotionAxis/motionAxis.ru.mdx
20433
- function of(e) {
20550
+ function df(e) {
20434
20551
  let t = {
20435
20552
  li: "li",
20436
20553
  p: "p",
@@ -20481,16 +20598,16 @@ function of(e) {
20481
20598
  })
20482
20599
  ] });
20483
20600
  }
20484
- function sf(e = {}) {
20601
+ function ff(e = {}) {
20485
20602
  let { wrapper: t } = e.components || {};
20486
20603
  return t ? o(t, {
20487
20604
  ...e,
20488
- children: o(of, { ...e })
20489
- }) : of(e);
20605
+ children: o(df, { ...e })
20606
+ }) : df(e);
20490
20607
  }
20491
20608
  //#endregion
20492
20609
  //#region src/media/mdx/MotionAxis/slots.en.mdx
20493
- function cf(e) {
20610
+ function pf(e) {
20494
20611
  let t = {
20495
20612
  code: "code",
20496
20613
  li: "li",
@@ -20508,16 +20625,16 @@ function cf(e) {
20508
20625
  "\n"
20509
20626
  ] });
20510
20627
  }
20511
- function lf(e = {}) {
20628
+ function mf(e = {}) {
20512
20629
  let { wrapper: t } = e.components || {};
20513
20630
  return t ? o(t, {
20514
20631
  ...e,
20515
- children: o(cf, { ...e })
20516
- }) : cf(e);
20632
+ children: o(pf, { ...e })
20633
+ }) : pf(e);
20517
20634
  }
20518
20635
  //#endregion
20519
20636
  //#region src/media/mdx/MotionAxis/slots.ru.mdx
20520
- function uf(e) {
20637
+ function hf(e) {
20521
20638
  let t = {
20522
20639
  code: "code",
20523
20640
  li: "li",
@@ -20535,16 +20652,16 @@ function uf(e) {
20535
20652
  "\n"
20536
20653
  ] });
20537
20654
  }
20538
- function df(e = {}) {
20655
+ function gf(e = {}) {
20539
20656
  let { wrapper: t } = e.components || {};
20540
20657
  return t ? o(t, {
20541
20658
  ...e,
20542
- children: o(uf, { ...e })
20543
- }) : uf(e);
20659
+ children: o(hf, { ...e })
20660
+ }) : hf(e);
20544
20661
  }
20545
20662
  //#endregion
20546
20663
  //#region src/media/mdx/MotionAxis/v-model.en.mdx
20547
- function ff(e) {
20664
+ function _f(e) {
20548
20665
  let t = {
20549
20666
  code: "code",
20550
20667
  h2: "h2",
@@ -20577,16 +20694,16 @@ function ff(e) {
20577
20694
  })
20578
20695
  ] });
20579
20696
  }
20580
- function pf(e = {}) {
20697
+ function vf(e = {}) {
20581
20698
  let { wrapper: t } = e.components || {};
20582
20699
  return t ? o(t, {
20583
20700
  ...e,
20584
- children: o(ff, { ...e })
20585
- }) : ff(e);
20701
+ children: o(_f, { ...e })
20702
+ }) : _f(e);
20586
20703
  }
20587
20704
  //#endregion
20588
20705
  //#region src/media/mdx/MotionAxis/v-model.ru.mdx
20589
- function mf(e) {
20706
+ function yf(e) {
20590
20707
  let t = {
20591
20708
  code: "code",
20592
20709
  h2: "h2",
@@ -20619,47 +20736,47 @@ function mf(e) {
20619
20736
  })
20620
20737
  ] });
20621
20738
  }
20622
- function hf(e = {}) {
20739
+ function bf(e = {}) {
20623
20740
  let { wrapper: t } = e.components || {};
20624
20741
  return t ? o(t, {
20625
20742
  ...e,
20626
- children: o(mf, { ...e })
20627
- }) : mf(e);
20743
+ children: o(yf, { ...e })
20744
+ }) : yf(e);
20628
20745
  }
20629
20746
  //#endregion
20630
20747
  //#region src/media/mdx/MotionAxis/wikiMdxMotionAxis.ts
20631
- var gf = {
20748
+ var xf = {
20632
20749
  name: "MotionAxis",
20633
20750
  descriptions: {
20634
20751
  classes: {
20635
- en: Kd,
20636
- ru: Jd
20752
+ en: Zd,
20753
+ ru: $d
20637
20754
  },
20638
20755
  events: {
20639
- en: Xd,
20640
- ru: Qd
20756
+ en: tf,
20757
+ ru: rf
20641
20758
  },
20642
20759
  expose: {
20643
- en: ef,
20644
- ru: nf
20760
+ en: of,
20761
+ ru: cf
20645
20762
  },
20646
20763
  motionAxis: {
20647
- en: af,
20648
- ru: sf
20764
+ en: uf,
20765
+ ru: ff
20649
20766
  },
20650
20767
  slots: {
20651
- en: lf,
20652
- ru: df
20768
+ en: mf,
20769
+ ru: gf
20653
20770
  },
20654
20771
  "v-model": {
20655
- en: pf,
20656
- ru: hf
20772
+ en: vf,
20773
+ ru: bf
20657
20774
  }
20658
20775
  }
20659
20776
  };
20660
20777
  //#endregion
20661
20778
  //#region src/media/mdx/MotionTransform/animationHeadPosition.en.mdx
20662
- function _f(e) {
20779
+ function Sf(e) {
20663
20780
  let t = {
20664
20781
  code: "code",
20665
20782
  h2: "h2",
@@ -20704,16 +20821,16 @@ function _f(e) {
20704
20821
  })
20705
20822
  ] });
20706
20823
  }
20707
- function vf(e = {}) {
20824
+ function Cf(e = {}) {
20708
20825
  let { wrapper: t } = e.components || {};
20709
20826
  return t ? o(t, {
20710
20827
  ...e,
20711
- children: o(_f, { ...e })
20712
- }) : _f(e);
20828
+ children: o(Sf, { ...e })
20829
+ }) : Sf(e);
20713
20830
  }
20714
20831
  //#endregion
20715
20832
  //#region src/media/mdx/MotionTransform/animationHeadPosition.ru.mdx
20716
- function yf(e) {
20833
+ function wf(e) {
20717
20834
  let t = {
20718
20835
  code: "code",
20719
20836
  h2: "h2",
@@ -20758,16 +20875,16 @@ function yf(e) {
20758
20875
  })
20759
20876
  ] });
20760
20877
  }
20761
- function bf(e = {}) {
20878
+ function Tf(e = {}) {
20762
20879
  let { wrapper: t } = e.components || {};
20763
20880
  return t ? o(t, {
20764
20881
  ...e,
20765
- children: o(yf, { ...e })
20766
- }) : yf(e);
20882
+ children: o(wf, { ...e })
20883
+ }) : wf(e);
20767
20884
  }
20768
20885
  //#endregion
20769
20886
  //#region src/media/mdx/MotionTransform/classes.en.mdx
20770
- function xf(e) {
20887
+ function Ef(e) {
20771
20888
  let t = {
20772
20889
  code: "code",
20773
20890
  h2: "h2",
@@ -20835,16 +20952,16 @@ function xf(e) {
20835
20952
  ] })
20836
20953
  ] });
20837
20954
  }
20838
- function Sf(e = {}) {
20955
+ function Df(e = {}) {
20839
20956
  let { wrapper: t } = e.components || {};
20840
20957
  return t ? o(t, {
20841
20958
  ...e,
20842
- children: o(xf, { ...e })
20843
- }) : xf(e);
20959
+ children: o(Ef, { ...e })
20960
+ }) : Ef(e);
20844
20961
  }
20845
20962
  //#endregion
20846
20963
  //#region src/media/mdx/MotionTransform/classes.ru.mdx
20847
- function Cf(e) {
20964
+ function Of(e) {
20848
20965
  let t = {
20849
20966
  code: "code",
20850
20967
  h2: "h2",
@@ -20912,16 +21029,16 @@ function Cf(e) {
20912
21029
  ] })
20913
21030
  ] });
20914
21031
  }
20915
- function wf(e = {}) {
21032
+ function kf(e = {}) {
20916
21033
  let { wrapper: t } = e.components || {};
20917
21034
  return t ? o(t, {
20918
21035
  ...e,
20919
- children: o(Cf, { ...e })
20920
- }) : Cf(e);
21036
+ children: o(Of, { ...e })
21037
+ }) : Of(e);
20921
21038
  }
20922
21039
  //#endregion
20923
21040
  //#region src/media/mdx/MotionTransform/events.en.mdx
20924
- function Tf(e) {
21041
+ function Af(e) {
20925
21042
  let t = {
20926
21043
  code: "code",
20927
21044
  h3: "h3",
@@ -20981,16 +21098,16 @@ function Tf(e) {
20981
21098
  ] })
20982
21099
  ] });
20983
21100
  }
20984
- function Ef(e = {}) {
21101
+ function jf(e = {}) {
20985
21102
  let { wrapper: t } = e.components || {};
20986
21103
  return t ? o(t, {
20987
21104
  ...e,
20988
- children: o(Tf, { ...e })
20989
- }) : Tf(e);
21105
+ children: o(Af, { ...e })
21106
+ }) : Af(e);
20990
21107
  }
20991
21108
  //#endregion
20992
21109
  //#region src/media/mdx/MotionTransform/events.ru.mdx
20993
- function Df(e) {
21110
+ function Mf(e) {
20994
21111
  let t = {
20995
21112
  code: "code",
20996
21113
  h3: "h3",
@@ -21050,16 +21167,16 @@ function Df(e) {
21050
21167
  ] })
21051
21168
  ] });
21052
21169
  }
21053
- function Of(e = {}) {
21170
+ function Nf(e = {}) {
21054
21171
  let { wrapper: t } = e.components || {};
21055
21172
  return t ? o(t, {
21056
21173
  ...e,
21057
- children: o(Df, { ...e })
21058
- }) : Df(e);
21174
+ children: o(Mf, { ...e })
21175
+ }) : Mf(e);
21059
21176
  }
21060
21177
  //#endregion
21061
21178
  //#region src/media/mdx/MotionTransform/expose.en.mdx
21062
- function kf(e) {
21179
+ function Pf(e) {
21063
21180
  let t = {
21064
21181
  code: "code",
21065
21182
  li: "li",
@@ -21082,16 +21199,16 @@ function kf(e) {
21082
21199
  "\n"
21083
21200
  ] });
21084
21201
  }
21085
- function Af(e = {}) {
21202
+ function Ff(e = {}) {
21086
21203
  let { wrapper: t } = e.components || {};
21087
21204
  return t ? o(t, {
21088
21205
  ...e,
21089
- children: o(kf, { ...e })
21090
- }) : kf(e);
21206
+ children: o(Pf, { ...e })
21207
+ }) : Pf(e);
21091
21208
  }
21092
21209
  //#endregion
21093
21210
  //#region src/media/mdx/MotionTransform/expose.ru.mdx
21094
- function jf(e) {
21211
+ function If(e) {
21095
21212
  let t = {
21096
21213
  code: "code",
21097
21214
  li: "li",
@@ -21114,16 +21231,16 @@ function jf(e) {
21114
21231
  "\n"
21115
21232
  ] });
21116
21233
  }
21117
- function Mf(e = {}) {
21234
+ function Lf(e = {}) {
21118
21235
  let { wrapper: t } = e.components || {};
21119
21236
  return t ? o(t, {
21120
21237
  ...e,
21121
- children: o(jf, { ...e })
21122
- }) : jf(e);
21238
+ children: o(If, { ...e })
21239
+ }) : If(e);
21123
21240
  }
21124
21241
  //#endregion
21125
21242
  //#region src/media/mdx/MotionTransform/expose.motionTransformElement.en.mdx
21126
- function Nf(e) {
21243
+ function Rf(e) {
21127
21244
  let t = {
21128
21245
  blockquote: "blockquote",
21129
21246
  code: "code",
@@ -21163,16 +21280,16 @@ function Nf(e) {
21163
21280
  ] })
21164
21281
  ] });
21165
21282
  }
21166
- function Pf(e = {}) {
21283
+ function zf(e = {}) {
21167
21284
  let { wrapper: t } = e.components || {};
21168
21285
  return t ? o(t, {
21169
21286
  ...e,
21170
- children: o(Nf, { ...e })
21171
- }) : Nf(e);
21287
+ children: o(Rf, { ...e })
21288
+ }) : Rf(e);
21172
21289
  }
21173
21290
  //#endregion
21174
21291
  //#region src/media/mdx/MotionTransform/expose.motionTransformElement.ru.mdx
21175
- function Ff(e) {
21292
+ function Bf(e) {
21176
21293
  let t = {
21177
21294
  blockquote: "blockquote",
21178
21295
  code: "code",
@@ -21212,16 +21329,16 @@ function Ff(e) {
21212
21329
  ] })
21213
21330
  ] });
21214
21331
  }
21215
- function If(e = {}) {
21332
+ function Vf(e = {}) {
21216
21333
  let { wrapper: t } = e.components || {};
21217
21334
  return t ? o(t, {
21218
21335
  ...e,
21219
- children: o(Ff, { ...e })
21220
- }) : Ff(e);
21336
+ children: o(Bf, { ...e })
21337
+ }) : Bf(e);
21221
21338
  }
21222
21339
  //#endregion
21223
21340
  //#region src/media/mdx/MotionTransform/ignore.en.mdx
21224
- function Lf(e) {
21341
+ function Hf(e) {
21225
21342
  let t = {
21226
21343
  code: "code",
21227
21344
  h2: "h2",
@@ -21260,16 +21377,16 @@ function Lf(e) {
21260
21377
  })
21261
21378
  ] });
21262
21379
  }
21263
- function Rf(e = {}) {
21380
+ function Uf(e = {}) {
21264
21381
  let { wrapper: t } = e.components || {};
21265
21382
  return t ? o(t, {
21266
21383
  ...e,
21267
- children: o(Lf, { ...e })
21268
- }) : Lf(e);
21384
+ children: o(Hf, { ...e })
21385
+ }) : Hf(e);
21269
21386
  }
21270
21387
  //#endregion
21271
21388
  //#region src/media/mdx/MotionTransform/ignore.ru.mdx
21272
- function zf(e) {
21389
+ function Wf(e) {
21273
21390
  let t = {
21274
21391
  code: "code",
21275
21392
  h2: "h2",
@@ -21308,16 +21425,16 @@ function zf(e) {
21308
21425
  })
21309
21426
  ] });
21310
21427
  }
21311
- function Bf(e = {}) {
21428
+ function Gf(e = {}) {
21312
21429
  let { wrapper: t } = e.components || {};
21313
21430
  return t ? o(t, {
21314
21431
  ...e,
21315
- children: o(zf, { ...e })
21316
- }) : zf(e);
21432
+ children: o(Wf, { ...e })
21433
+ }) : Wf(e);
21317
21434
  }
21318
21435
  //#endregion
21319
21436
  //#region src/media/mdx/MotionTransform/motionTransform.en.mdx
21320
- function Vf(e) {
21437
+ function Kf(e) {
21321
21438
  let t = {
21322
21439
  blockquote: "blockquote",
21323
21440
  li: "li",
@@ -21377,16 +21494,16 @@ function Vf(e) {
21377
21494
  ] })
21378
21495
  ] });
21379
21496
  }
21380
- function Hf(e = {}) {
21497
+ function qf(e = {}) {
21381
21498
  let { wrapper: t } = e.components || {};
21382
21499
  return t ? o(t, {
21383
21500
  ...e,
21384
- children: o(Vf, { ...e })
21385
- }) : Vf(e);
21501
+ children: o(Kf, { ...e })
21502
+ }) : Kf(e);
21386
21503
  }
21387
21504
  //#endregion
21388
21505
  //#region src/media/mdx/MotionTransform/motionTransform.ru.mdx
21389
- function Uf(e) {
21506
+ function Jf(e) {
21390
21507
  let t = {
21391
21508
  blockquote: "blockquote",
21392
21509
  li: "li",
@@ -21446,16 +21563,16 @@ function Uf(e) {
21446
21563
  ] })
21447
21564
  ] });
21448
21565
  }
21449
- function Wf(e = {}) {
21566
+ function Yf(e = {}) {
21450
21567
  let { wrapper: t } = e.components || {};
21451
21568
  return t ? o(t, {
21452
21569
  ...e,
21453
- children: o(Uf, { ...e })
21454
- }) : Uf(e);
21570
+ children: o(Jf, { ...e })
21571
+ }) : Jf(e);
21455
21572
  }
21456
21573
  //#endregion
21457
21574
  //#region src/media/mdx/MotionTransform/slots.en.mdx
21458
- function Gf(e) {
21575
+ function Xf(e) {
21459
21576
  let t = {
21460
21577
  blockquote: "blockquote",
21461
21578
  code: "code",
@@ -21487,16 +21604,16 @@ function Gf(e) {
21487
21604
  ] })
21488
21605
  ] });
21489
21606
  }
21490
- function Kf(e = {}) {
21607
+ function Zf(e = {}) {
21491
21608
  let { wrapper: t } = e.components || {};
21492
21609
  return t ? o(t, {
21493
21610
  ...e,
21494
- children: o(Gf, { ...e })
21495
- }) : Gf(e);
21611
+ children: o(Xf, { ...e })
21612
+ }) : Xf(e);
21496
21613
  }
21497
21614
  //#endregion
21498
21615
  //#region src/media/mdx/MotionTransform/slots.ru.mdx
21499
- function qf(e) {
21616
+ function Qf(e) {
21500
21617
  let t = {
21501
21618
  blockquote: "blockquote",
21502
21619
  code: "code",
@@ -21528,16 +21645,16 @@ function qf(e) {
21528
21645
  ] })
21529
21646
  ] });
21530
21647
  }
21531
- function Jf(e = {}) {
21648
+ function $f(e = {}) {
21532
21649
  let { wrapper: t } = e.components || {};
21533
21650
  return t ? o(t, {
21534
21651
  ...e,
21535
- children: o(qf, { ...e })
21536
- }) : qf(e);
21652
+ children: o(Qf, { ...e })
21653
+ }) : Qf(e);
21537
21654
  }
21538
21655
  //#endregion
21539
21656
  //#region src/media/mdx/MotionTransform/v-model.en.mdx
21540
- function Yf(e) {
21657
+ function ep(e) {
21541
21658
  let t = {
21542
21659
  code: "code",
21543
21660
  h2: "h2",
@@ -21570,16 +21687,16 @@ function Yf(e) {
21570
21687
  })
21571
21688
  ] });
21572
21689
  }
21573
- function Xf(e = {}) {
21690
+ function tp(e = {}) {
21574
21691
  let { wrapper: t } = e.components || {};
21575
21692
  return t ? o(t, {
21576
21693
  ...e,
21577
- children: o(Yf, { ...e })
21578
- }) : Yf(e);
21694
+ children: o(ep, { ...e })
21695
+ }) : ep(e);
21579
21696
  }
21580
21697
  //#endregion
21581
21698
  //#region src/media/mdx/MotionTransform/v-model.ru.mdx
21582
- function Zf(e) {
21699
+ function np(e) {
21583
21700
  let t = {
21584
21701
  code: "code",
21585
21702
  h2: "h2",
@@ -21612,59 +21729,59 @@ function Zf(e) {
21612
21729
  })
21613
21730
  ] });
21614
21731
  }
21615
- function Qf(e = {}) {
21732
+ function rp(e = {}) {
21616
21733
  let { wrapper: t } = e.components || {};
21617
21734
  return t ? o(t, {
21618
21735
  ...e,
21619
- children: o(Zf, { ...e })
21620
- }) : Zf(e);
21736
+ children: o(np, { ...e })
21737
+ }) : np(e);
21621
21738
  }
21622
21739
  //#endregion
21623
21740
  //#region src/media/mdx/MotionTransform/wikiMdxMotionTransform.ts
21624
- var $f = {
21741
+ var ip = {
21625
21742
  name: "MotionTransform",
21626
21743
  descriptions: {
21627
21744
  animationHeadPosition: {
21628
- en: vf,
21629
- ru: bf
21745
+ en: Cf,
21746
+ ru: Tf
21630
21747
  },
21631
21748
  classes: {
21632
- en: Sf,
21633
- ru: wf
21749
+ en: Df,
21750
+ ru: kf
21634
21751
  },
21635
21752
  events: {
21636
- en: Ef,
21637
- ru: Of
21753
+ en: jf,
21754
+ ru: Nf
21638
21755
  },
21639
21756
  expose: {
21640
- en: Af,
21641
- ru: Mf
21757
+ en: Ff,
21758
+ ru: Lf
21642
21759
  },
21643
21760
  "expose.motionTransformElement": {
21644
- en: Pf,
21645
- ru: If
21761
+ en: zf,
21762
+ ru: Vf
21646
21763
  },
21647
21764
  ignore: {
21648
- en: Rf,
21649
- ru: Bf
21765
+ en: Uf,
21766
+ ru: Gf
21650
21767
  },
21651
21768
  motionTransform: {
21652
- en: Hf,
21653
- ru: Wf
21769
+ en: qf,
21770
+ ru: Yf
21654
21771
  },
21655
21772
  slots: {
21656
- en: Kf,
21657
- ru: Jf
21773
+ en: Zf,
21774
+ ru: $f
21658
21775
  },
21659
21776
  "v-model": {
21660
- en: Xf,
21661
- ru: Qf
21777
+ en: tp,
21778
+ ru: rp
21662
21779
  }
21663
21780
  }
21664
21781
  };
21665
21782
  //#endregion
21666
21783
  //#region src/media/mdx/Page/page.en.mdx
21667
- function ep(e) {
21784
+ function ap(e) {
21668
21785
  let t = {
21669
21786
  blockquote: "blockquote",
21670
21787
  code: "code",
@@ -21740,16 +21857,16 @@ function ep(e) {
21740
21857
  ] })
21741
21858
  ] });
21742
21859
  }
21743
- function tp(e = {}) {
21860
+ function op(e = {}) {
21744
21861
  let { wrapper: t } = e.components || {};
21745
21862
  return t ? o(t, {
21746
21863
  ...e,
21747
- children: o(ep, { ...e })
21748
- }) : ep(e);
21864
+ children: o(ap, { ...e })
21865
+ }) : ap(e);
21749
21866
  }
21750
21867
  //#endregion
21751
21868
  //#region src/media/mdx/Page/page.ru.mdx
21752
- function np(e) {
21869
+ function sp(e) {
21753
21870
  let t = {
21754
21871
  blockquote: "blockquote",
21755
21872
  code: "code",
@@ -21825,25 +21942,25 @@ function np(e) {
21825
21942
  ] })
21826
21943
  ] });
21827
21944
  }
21828
- function rp(e = {}) {
21945
+ function cp(e = {}) {
21829
21946
  let { wrapper: t } = e.components || {};
21830
21947
  return t ? o(t, {
21831
21948
  ...e,
21832
- children: o(np, { ...e })
21833
- }) : np(e);
21949
+ children: o(sp, { ...e })
21950
+ }) : sp(e);
21834
21951
  }
21835
21952
  //#endregion
21836
21953
  //#region src/media/mdx/Page/wikiMdxPage.ts
21837
- var ip = {
21954
+ var lp = {
21838
21955
  name: "Page",
21839
21956
  descriptions: { block: {
21840
- en: tp,
21841
- ru: rp
21957
+ en: op,
21958
+ ru: cp
21842
21959
  } }
21843
21960
  };
21844
21961
  //#endregion
21845
21962
  //#region src/media/mdx/PageArea/pageArea.en.mdx
21846
- function ap(e) {
21963
+ function up(e) {
21847
21964
  let t = {
21848
21965
  blockquote: "blockquote",
21849
21966
  h2: "h2",
@@ -21906,16 +22023,16 @@ function ap(e) {
21906
22023
  ] })
21907
22024
  ] });
21908
22025
  }
21909
- function op(e = {}) {
22026
+ function dp(e = {}) {
21910
22027
  let { wrapper: t } = e.components || {};
21911
22028
  return t ? o(t, {
21912
22029
  ...e,
21913
- children: o(ap, { ...e })
21914
- }) : ap(e);
22030
+ children: o(up, { ...e })
22031
+ }) : up(e);
21915
22032
  }
21916
22033
  //#endregion
21917
22034
  //#region src/media/mdx/PageArea/pageArea.ru.mdx
21918
- function sp(e) {
22035
+ function fp(e) {
21919
22036
  let t = {
21920
22037
  blockquote: "blockquote",
21921
22038
  h2: "h2",
@@ -21978,25 +22095,25 @@ function sp(e) {
21978
22095
  ] })
21979
22096
  ] });
21980
22097
  }
21981
- function cp(e = {}) {
22098
+ function pp(e = {}) {
21982
22099
  let { wrapper: t } = e.components || {};
21983
22100
  return t ? o(t, {
21984
22101
  ...e,
21985
- children: o(sp, { ...e })
21986
- }) : sp(e);
22102
+ children: o(fp, { ...e })
22103
+ }) : fp(e);
21987
22104
  }
21988
22105
  //#endregion
21989
22106
  //#region src/media/mdx/PageArea/wikiMdxPageArea.ts
21990
- var lp = {
22107
+ var mp = {
21991
22108
  name: "PageArea",
21992
22109
  descriptions: { pageArea: {
21993
- en: op,
21994
- ru: cp
22110
+ en: dp,
22111
+ ru: pp
21995
22112
  } }
21996
22113
  };
21997
22114
  //#endregion
21998
22115
  //#region src/media/mdx/Progress/circular.en.mdx
21999
- function up(e) {
22116
+ function hp(e) {
22000
22117
  let t = {
22001
22118
  code: "code",
22002
22119
  h2: "h2",
@@ -22039,16 +22156,16 @@ function up(e) {
22039
22156
  })
22040
22157
  ] });
22041
22158
  }
22042
- function dp(e = {}) {
22159
+ function gp(e = {}) {
22043
22160
  let { wrapper: t } = e.components || {};
22044
22161
  return t ? o(t, {
22045
22162
  ...e,
22046
- children: o(up, { ...e })
22047
- }) : up(e);
22163
+ children: o(hp, { ...e })
22164
+ }) : hp(e);
22048
22165
  }
22049
22166
  //#endregion
22050
22167
  //#region src/media/mdx/Progress/circular.ru.mdx
22051
- function fp(e) {
22168
+ function _p(e) {
22052
22169
  let t = {
22053
22170
  code: "code",
22054
22171
  h2: "h2",
@@ -22091,16 +22208,16 @@ function fp(e) {
22091
22208
  })
22092
22209
  ] });
22093
22210
  }
22094
- function pp(e = {}) {
22211
+ function vp(e = {}) {
22095
22212
  let { wrapper: t } = e.components || {};
22096
22213
  return t ? o(t, {
22097
22214
  ...e,
22098
- children: o(fp, { ...e })
22099
- }) : fp(e);
22215
+ children: o(_p, { ...e })
22216
+ }) : _p(e);
22100
22217
  }
22101
22218
  //#endregion
22102
22219
  //#region src/media/mdx/Progress/delays.en.mdx
22103
- function mp(e) {
22220
+ function yp(e) {
22104
22221
  let t = {
22105
22222
  code: "code",
22106
22223
  h2: "h2",
@@ -22153,16 +22270,16 @@ function mp(e) {
22153
22270
  })
22154
22271
  ] });
22155
22272
  }
22156
- function hp(e = {}) {
22273
+ function bp(e = {}) {
22157
22274
  let { wrapper: t } = e.components || {};
22158
22275
  return t ? o(t, {
22159
22276
  ...e,
22160
- children: o(mp, { ...e })
22161
- }) : mp(e);
22277
+ children: o(yp, { ...e })
22278
+ }) : yp(e);
22162
22279
  }
22163
22280
  //#endregion
22164
22281
  //#region src/media/mdx/Progress/delays.ru.mdx
22165
- function gp(e) {
22282
+ function xp(e) {
22166
22283
  let t = {
22167
22284
  code: "code",
22168
22285
  h2: "h2",
@@ -22215,16 +22332,16 @@ function gp(e) {
22215
22332
  })
22216
22333
  ] });
22217
22334
  }
22218
- function _p(e = {}) {
22335
+ function Sp(e = {}) {
22219
22336
  let { wrapper: t } = e.components || {};
22220
22337
  return t ? o(t, {
22221
22338
  ...e,
22222
- children: o(gp, { ...e })
22223
- }) : gp(e);
22339
+ children: o(xp, { ...e })
22340
+ }) : xp(e);
22224
22341
  }
22225
22342
  //#endregion
22226
22343
  //#region src/media/mdx/Progress/linear.en.mdx
22227
- function vp(e) {
22344
+ function Cp(e) {
22228
22345
  let t = {
22229
22346
  code: "code",
22230
22347
  h2: "h2",
@@ -22287,16 +22404,16 @@ function vp(e) {
22287
22404
  })
22288
22405
  ] });
22289
22406
  }
22290
- function yp(e = {}) {
22407
+ function wp(e = {}) {
22291
22408
  let { wrapper: t } = e.components || {};
22292
22409
  return t ? o(t, {
22293
22410
  ...e,
22294
- children: o(vp, { ...e })
22295
- }) : vp(e);
22411
+ children: o(Cp, { ...e })
22412
+ }) : Cp(e);
22296
22413
  }
22297
22414
  //#endregion
22298
22415
  //#region src/media/mdx/Progress/linear.ru.mdx
22299
- function bp(e) {
22416
+ function Tp(e) {
22300
22417
  let t = {
22301
22418
  code: "code",
22302
22419
  h2: "h2",
@@ -22359,16 +22476,16 @@ function bp(e) {
22359
22476
  })
22360
22477
  ] });
22361
22478
  }
22362
- function xp(e = {}) {
22479
+ function Ep(e = {}) {
22363
22480
  let { wrapper: t } = e.components || {};
22364
22481
  return t ? o(t, {
22365
22482
  ...e,
22366
- children: o(bp, { ...e })
22367
- }) : bp(e);
22483
+ children: o(Tp, { ...e })
22484
+ }) : Tp(e);
22368
22485
  }
22369
22486
  //#endregion
22370
22487
  //#region src/media/mdx/Progress/progress.en.mdx
22371
- function Sp(e) {
22488
+ function Dp(e) {
22372
22489
  let t = {
22373
22490
  li: "li",
22374
22491
  p: "p",
@@ -22427,16 +22544,16 @@ function Sp(e) {
22427
22544
  })
22428
22545
  ] });
22429
22546
  }
22430
- function Cp(e = {}) {
22547
+ function Op(e = {}) {
22431
22548
  let { wrapper: t } = e.components || {};
22432
22549
  return t ? o(t, {
22433
22550
  ...e,
22434
- children: o(Sp, { ...e })
22435
- }) : Sp(e);
22551
+ children: o(Dp, { ...e })
22552
+ }) : Dp(e);
22436
22553
  }
22437
22554
  //#endregion
22438
22555
  //#region src/media/mdx/Progress/progress.ru.mdx
22439
- function wp(e) {
22556
+ function kp(e) {
22440
22557
  let t = {
22441
22558
  li: "li",
22442
22559
  p: "p",
@@ -22495,16 +22612,16 @@ function wp(e) {
22495
22612
  })
22496
22613
  ] });
22497
22614
  }
22498
- function Tp(e = {}) {
22615
+ function Ap(e = {}) {
22499
22616
  let { wrapper: t } = e.components || {};
22500
22617
  return t ? o(t, {
22501
22618
  ...e,
22502
- children: o(wp, { ...e })
22503
- }) : wp(e);
22619
+ children: o(kp, { ...e })
22620
+ }) : kp(e);
22504
22621
  }
22505
22622
  //#endregion
22506
22623
  //#region src/media/mdx/Progress/values.en.mdx
22507
- function Ep(e) {
22624
+ function jp(e) {
22508
22625
  let t = {
22509
22626
  code: "code",
22510
22627
  h2: "h2",
@@ -22559,16 +22676,16 @@ function Ep(e) {
22559
22676
  })
22560
22677
  ] });
22561
22678
  }
22562
- function Dp(e = {}) {
22679
+ function Mp(e = {}) {
22563
22680
  let { wrapper: t } = e.components || {};
22564
22681
  return t ? o(t, {
22565
22682
  ...e,
22566
- children: o(Ep, { ...e })
22567
- }) : Ep(e);
22683
+ children: o(jp, { ...e })
22684
+ }) : jp(e);
22568
22685
  }
22569
22686
  //#endregion
22570
22687
  //#region src/media/mdx/Progress/values.ru.mdx
22571
- function Op(e) {
22688
+ function Np(e) {
22572
22689
  let t = {
22573
22690
  code: "code",
22574
22691
  h2: "h2",
@@ -22623,43 +22740,43 @@ function Op(e) {
22623
22740
  })
22624
22741
  ] });
22625
22742
  }
22626
- function kp(e = {}) {
22743
+ function Pp(e = {}) {
22627
22744
  let { wrapper: t } = e.components || {};
22628
22745
  return t ? o(t, {
22629
22746
  ...e,
22630
- children: o(Op, { ...e })
22631
- }) : Op(e);
22747
+ children: o(Np, { ...e })
22748
+ }) : Np(e);
22632
22749
  }
22633
22750
  //#endregion
22634
22751
  //#region src/media/mdx/Progress/wikiMdxProgress.ts
22635
- var Ap = {
22752
+ var Fp = {
22636
22753
  name: "Progress",
22637
22754
  descriptions: {
22638
22755
  circular: {
22639
- en: dp,
22640
- ru: pp
22756
+ en: gp,
22757
+ ru: vp
22641
22758
  },
22642
22759
  delays: {
22643
- en: hp,
22644
- ru: _p
22760
+ en: bp,
22761
+ ru: Sp
22645
22762
  },
22646
22763
  linear: {
22647
- en: yp,
22648
- ru: xp
22764
+ en: wp,
22765
+ ru: Ep
22649
22766
  },
22650
22767
  progress: {
22651
- en: Cp,
22652
- ru: Tp
22768
+ en: Op,
22769
+ ru: Ap
22653
22770
  },
22654
22771
  values: {
22655
- en: Dp,
22656
- ru: kp
22772
+ en: Mp,
22773
+ ru: Pp
22657
22774
  }
22658
22775
  }
22659
22776
  };
22660
22777
  //#endregion
22661
22778
  //#region src/media/mdx/Radio/radio.en.mdx
22662
- function jp(e) {
22779
+ function Ip(e) {
22663
22780
  let t = {
22664
22781
  li: "li",
22665
22782
  p: "p",
@@ -22711,16 +22828,16 @@ function jp(e) {
22711
22828
  ] })
22712
22829
  ] });
22713
22830
  }
22714
- function Mp(e = {}) {
22831
+ function Lp(e = {}) {
22715
22832
  let { wrapper: t } = e.components || {};
22716
22833
  return t ? o(t, {
22717
22834
  ...e,
22718
- children: o(jp, { ...e })
22719
- }) : jp(e);
22835
+ children: o(Ip, { ...e })
22836
+ }) : Ip(e);
22720
22837
  }
22721
22838
  //#endregion
22722
22839
  //#region src/media/mdx/Radio/radio.ru.mdx
22723
- function Np(e) {
22840
+ function Rp(e) {
22724
22841
  let t = {
22725
22842
  li: "li",
22726
22843
  p: "p",
@@ -22772,25 +22889,25 @@ function Np(e) {
22772
22889
  ] })
22773
22890
  ] });
22774
22891
  }
22775
- function Pp(e = {}) {
22892
+ function zp(e = {}) {
22776
22893
  let { wrapper: t } = e.components || {};
22777
22894
  return t ? o(t, {
22778
22895
  ...e,
22779
- children: o(Np, { ...e })
22780
- }) : Np(e);
22896
+ children: o(Rp, { ...e })
22897
+ }) : Rp(e);
22781
22898
  }
22782
22899
  //#endregion
22783
22900
  //#region src/media/mdx/Radio/wikiMdxRadio.ts
22784
- var Fp = {
22901
+ var Bp = {
22785
22902
  name: "Radio",
22786
22903
  descriptions: { radio: {
22787
- en: Mp,
22788
- ru: Pp
22904
+ en: Lp,
22905
+ ru: zp
22789
22906
  } }
22790
22907
  };
22791
22908
  //#endregion
22792
22909
  //#region src/media/mdx/Ripple/ripple.en.mdx
22793
- function Ip(e) {
22910
+ function Vp(e) {
22794
22911
  let t = {
22795
22912
  code: "code",
22796
22913
  li: "li",
@@ -22846,16 +22963,16 @@ function Ip(e) {
22846
22963
  })
22847
22964
  ] });
22848
22965
  }
22849
- function Lp(e = {}) {
22966
+ function Hp(e = {}) {
22850
22967
  let { wrapper: t } = e.components || {};
22851
22968
  return t ? o(t, {
22852
22969
  ...e,
22853
- children: o(Ip, { ...e })
22854
- }) : Ip(e);
22970
+ children: o(Vp, { ...e })
22971
+ }) : Vp(e);
22855
22972
  }
22856
22973
  //#endregion
22857
22974
  //#region src/media/mdx/Ripple/ripple.ru.mdx
22858
- function Rp(e) {
22975
+ function Up(e) {
22859
22976
  let t = {
22860
22977
  code: "code",
22861
22978
  li: "li",
@@ -22907,25 +23024,25 @@ function Rp(e) {
22907
23024
  })
22908
23025
  ] });
22909
23026
  }
22910
- function zp(e = {}) {
23027
+ function Wp(e = {}) {
22911
23028
  let { wrapper: t } = e.components || {};
22912
23029
  return t ? o(t, {
22913
23030
  ...e,
22914
- children: o(Rp, { ...e })
22915
- }) : Rp(e);
23031
+ children: o(Up, { ...e })
23032
+ }) : Up(e);
22916
23033
  }
22917
23034
  //#endregion
22918
23035
  //#region src/media/mdx/Ripple/wikiMdxRipple.ts
22919
- var Bp = {
23036
+ var Gp = {
22920
23037
  name: "Ripple",
22921
23038
  descriptions: { ripple: {
22922
- en: Lp,
22923
- ru: zp
23039
+ en: Hp,
23040
+ ru: Wp
22924
23041
  } }
22925
23042
  };
22926
23043
  //#endregion
22927
23044
  //#region src/media/mdx/Scrollbar/emits.en.mdx
22928
- function Vp(e) {
23045
+ function Kp(e) {
22929
23046
  let t = {
22930
23047
  code: "code",
22931
23048
  h3: "h3",
@@ -23013,16 +23130,16 @@ function Vp(e) {
23013
23130
  ] })
23014
23131
  ] });
23015
23132
  }
23016
- function Hp(e = {}) {
23133
+ function qp(e = {}) {
23017
23134
  let { wrapper: t } = e.components || {};
23018
23135
  return t ? o(t, {
23019
23136
  ...e,
23020
- children: o(Vp, { ...e })
23021
- }) : Vp(e);
23137
+ children: o(Kp, { ...e })
23138
+ }) : Kp(e);
23022
23139
  }
23023
23140
  //#endregion
23024
23141
  //#region src/media/mdx/Scrollbar/emits.ru.mdx
23025
- function Up(e) {
23142
+ function Jp(e) {
23026
23143
  let t = {
23027
23144
  code: "code",
23028
23145
  h3: "h3",
@@ -23110,16 +23227,16 @@ function Up(e) {
23110
23227
  ] })
23111
23228
  ] });
23112
23229
  }
23113
- function Wp(e = {}) {
23230
+ function Yp(e = {}) {
23114
23231
  let { wrapper: t } = e.components || {};
23115
23232
  return t ? o(t, {
23116
23233
  ...e,
23117
- children: o(Up, { ...e })
23118
- }) : Up(e);
23234
+ children: o(Jp, { ...e })
23235
+ }) : Jp(e);
23119
23236
  }
23120
23237
  //#endregion
23121
23238
  //#region src/media/mdx/Scrollbar/emits-include.en.mdx
23122
- function Gp(e) {
23239
+ function Xp(e) {
23123
23240
  let t = {
23124
23241
  code: "code",
23125
23242
  h3: "h3",
@@ -23207,16 +23324,16 @@ function Gp(e) {
23207
23324
  ] })
23208
23325
  ] });
23209
23326
  }
23210
- function Kp(e = {}) {
23327
+ function Zp(e = {}) {
23211
23328
  let { wrapper: t } = e.components || {};
23212
23329
  return t ? o(t, {
23213
23330
  ...e,
23214
- children: o(Gp, { ...e })
23215
- }) : Gp(e);
23331
+ children: o(Xp, { ...e })
23332
+ }) : Xp(e);
23216
23333
  }
23217
23334
  //#endregion
23218
23335
  //#region src/media/mdx/Scrollbar/emits-include.ru.mdx
23219
- function qp(e) {
23336
+ function Qp(e) {
23220
23337
  let t = {
23221
23338
  code: "code",
23222
23339
  h3: "h3",
@@ -23304,16 +23421,16 @@ function qp(e) {
23304
23421
  ] })
23305
23422
  ] });
23306
23423
  }
23307
- function Jp(e = {}) {
23424
+ function $p(e = {}) {
23308
23425
  let { wrapper: t } = e.components || {};
23309
23426
  return t ? o(t, {
23310
23427
  ...e,
23311
- children: o(qp, { ...e })
23312
- }) : qp(e);
23428
+ children: o(Qp, { ...e })
23429
+ }) : Qp(e);
23313
23430
  }
23314
23431
  //#endregion
23315
23432
  //#region src/media/mdx/Scrollbar/scrollbar.en.mdx
23316
- function Yp(e) {
23433
+ function em(e) {
23317
23434
  let t = {
23318
23435
  code: "code",
23319
23436
  li: "li",
@@ -23369,16 +23486,16 @@ function Yp(e) {
23369
23486
  })
23370
23487
  ] });
23371
23488
  }
23372
- function Xp(e = {}) {
23489
+ function tm(e = {}) {
23373
23490
  let { wrapper: t } = e.components || {};
23374
23491
  return t ? o(t, {
23375
23492
  ...e,
23376
- children: o(Yp, { ...e })
23377
- }) : Yp(e);
23493
+ children: o(em, { ...e })
23494
+ }) : em(e);
23378
23495
  }
23379
23496
  //#endregion
23380
23497
  //#region src/media/mdx/Scrollbar/scrollbar.ru.mdx
23381
- function Zp(e) {
23498
+ function nm(e) {
23382
23499
  let t = {
23383
23500
  code: "code",
23384
23501
  li: "li",
@@ -23430,35 +23547,35 @@ function Zp(e) {
23430
23547
  })
23431
23548
  ] });
23432
23549
  }
23433
- function Qp(e = {}) {
23550
+ function rm(e = {}) {
23434
23551
  let { wrapper: t } = e.components || {};
23435
23552
  return t ? o(t, {
23436
23553
  ...e,
23437
- children: o(Zp, { ...e })
23438
- }) : Zp(e);
23439
- }
23554
+ children: o(nm, { ...e })
23555
+ }) : nm(e);
23556
+ }
23440
23557
  //#endregion
23441
23558
  //#region src/media/mdx/Scrollbar/wikiMdxScrollbar.ts
23442
- var $p = {
23559
+ var im = {
23443
23560
  name: "Scrollbar",
23444
23561
  descriptions: {
23445
23562
  emits: {
23446
- en: Hp,
23447
- ru: Wp
23563
+ en: qp,
23564
+ ru: Yp
23448
23565
  },
23449
23566
  "emits-include": {
23450
- en: Kp,
23451
- ru: Jp
23567
+ en: Zp,
23568
+ ru: $p
23452
23569
  },
23453
23570
  scrollbar: {
23454
- en: Xp,
23455
- ru: Qp
23571
+ en: tm,
23572
+ ru: rm
23456
23573
  }
23457
23574
  }
23458
23575
  };
23459
23576
  //#endregion
23460
23577
  //#region src/media/mdx/Section/section.en.mdx
23461
- function em(e) {
23578
+ function am(e) {
23462
23579
  let t = {
23463
23580
  blockquote: "blockquote",
23464
23581
  code: "code",
@@ -23534,16 +23651,16 @@ function em(e) {
23534
23651
  ] })
23535
23652
  ] });
23536
23653
  }
23537
- function tm(e = {}) {
23654
+ function om(e = {}) {
23538
23655
  let { wrapper: t } = e.components || {};
23539
23656
  return t ? o(t, {
23540
23657
  ...e,
23541
- children: o(em, { ...e })
23542
- }) : em(e);
23658
+ children: o(am, { ...e })
23659
+ }) : am(e);
23543
23660
  }
23544
23661
  //#endregion
23545
23662
  //#region src/media/mdx/Section/section.ru.mdx
23546
- function nm(e) {
23663
+ function sm(e) {
23547
23664
  let t = {
23548
23665
  blockquote: "blockquote",
23549
23666
  code: "code",
@@ -23619,25 +23736,25 @@ function nm(e) {
23619
23736
  ] })
23620
23737
  ] });
23621
23738
  }
23622
- function rm(e = {}) {
23739
+ function cm(e = {}) {
23623
23740
  let { wrapper: t } = e.components || {};
23624
23741
  return t ? o(t, {
23625
23742
  ...e,
23626
- children: o(nm, { ...e })
23627
- }) : nm(e);
23743
+ children: o(sm, { ...e })
23744
+ }) : sm(e);
23628
23745
  }
23629
23746
  //#endregion
23630
23747
  //#region src/media/mdx/Section/wikiMdxSection.ts
23631
- var im = {
23748
+ var lm = {
23632
23749
  name: "Section",
23633
23750
  descriptions: { section: {
23634
- en: tm,
23635
- ru: rm
23751
+ en: om,
23752
+ ru: cm
23636
23753
  } }
23637
23754
  };
23638
23755
  //#endregion
23639
23756
  //#region src/media/mdx/Select/select.en.mdx
23640
- function am(e) {
23757
+ function um(e) {
23641
23758
  let t = {
23642
23759
  li: "li",
23643
23760
  p: "p",
@@ -23706,16 +23823,16 @@ function am(e) {
23706
23823
  })
23707
23824
  ] });
23708
23825
  }
23709
- function om(e = {}) {
23826
+ function dm(e = {}) {
23710
23827
  let { wrapper: t } = e.components || {};
23711
23828
  return t ? o(t, {
23712
23829
  ...e,
23713
- children: o(am, { ...e })
23714
- }) : am(e);
23830
+ children: o(um, { ...e })
23831
+ }) : um(e);
23715
23832
  }
23716
23833
  //#endregion
23717
23834
  //#region src/media/mdx/Select/select.ru.mdx
23718
- function sm(e) {
23835
+ function fm(e) {
23719
23836
  let t = {
23720
23837
  li: "li",
23721
23838
  p: "p",
@@ -23784,25 +23901,25 @@ function sm(e) {
23784
23901
  })
23785
23902
  ] });
23786
23903
  }
23787
- function cm(e = {}) {
23904
+ function pm(e = {}) {
23788
23905
  let { wrapper: t } = e.components || {};
23789
23906
  return t ? o(t, {
23790
23907
  ...e,
23791
- children: o(sm, { ...e })
23792
- }) : sm(e);
23908
+ children: o(fm, { ...e })
23909
+ }) : fm(e);
23793
23910
  }
23794
23911
  //#endregion
23795
23912
  //#region src/media/mdx/Select/wikiMdxSelect.ts
23796
- var lm = {
23913
+ var mm = {
23797
23914
  name: "Select",
23798
23915
  descriptions: { select: {
23799
- en: om,
23800
- ru: cm
23916
+ en: dm,
23917
+ ru: pm
23801
23918
  } }
23802
23919
  };
23803
23920
  //#endregion
23804
23921
  //#region src/media/mdx/SelectValue/selectValue.en.mdx
23805
- function um(e) {
23922
+ function hm(e) {
23806
23923
  let t = {
23807
23924
  li: "li",
23808
23925
  p: "p",
@@ -23857,16 +23974,16 @@ function um(e) {
23857
23974
  })
23858
23975
  ] });
23859
23976
  }
23860
- function dm(e = {}) {
23977
+ function gm(e = {}) {
23861
23978
  let { wrapper: t } = e.components || {};
23862
23979
  return t ? o(t, {
23863
23980
  ...e,
23864
- children: o(um, { ...e })
23865
- }) : um(e);
23981
+ children: o(hm, { ...e })
23982
+ }) : hm(e);
23866
23983
  }
23867
23984
  //#endregion
23868
23985
  //#region src/media/mdx/SelectValue/selectValue.ru.mdx
23869
- function fm(e) {
23986
+ function _m(e) {
23870
23987
  let t = {
23871
23988
  li: "li",
23872
23989
  p: "p",
@@ -23921,25 +24038,25 @@ function fm(e) {
23921
24038
  })
23922
24039
  ] });
23923
24040
  }
23924
- function pm(e = {}) {
24041
+ function vm(e = {}) {
23925
24042
  let { wrapper: t } = e.components || {};
23926
24043
  return t ? o(t, {
23927
24044
  ...e,
23928
- children: o(fm, { ...e })
23929
- }) : fm(e);
24045
+ children: o(_m, { ...e })
24046
+ }) : _m(e);
23930
24047
  }
23931
24048
  //#endregion
23932
24049
  //#region src/media/mdx/SelectValue/wikiMdxSelectValue.ts
23933
- var mm = {
24050
+ var ym = {
23934
24051
  name: "SelectValue",
23935
24052
  descriptions: { selectValue: {
23936
- en: dm,
23937
- ru: pm
24053
+ en: gm,
24054
+ ru: vm
23938
24055
  } }
23939
24056
  };
23940
24057
  //#endregion
23941
24058
  //#region src/media/mdx/Skeleton/skeleton.en.mdx
23942
- function hm(e) {
24059
+ function bm(e) {
23943
24060
  let t = {
23944
24061
  code: "code",
23945
24062
  li: "li",
@@ -23999,16 +24116,16 @@ function hm(e) {
23999
24116
  })
24000
24117
  ] });
24001
24118
  }
24002
- function gm(e = {}) {
24119
+ function xm(e = {}) {
24003
24120
  let { wrapper: t } = e.components || {};
24004
24121
  return t ? o(t, {
24005
24122
  ...e,
24006
- children: o(hm, { ...e })
24007
- }) : hm(e);
24123
+ children: o(bm, { ...e })
24124
+ }) : bm(e);
24008
24125
  }
24009
24126
  //#endregion
24010
24127
  //#region src/media/mdx/Skeleton/skeleton.ru.mdx
24011
- function _m(e) {
24128
+ function Sm(e) {
24012
24129
  let t = {
24013
24130
  code: "code",
24014
24131
  li: "li",
@@ -24064,16 +24181,16 @@ function _m(e) {
24064
24181
  })
24065
24182
  ] });
24066
24183
  }
24067
- function vm(e = {}) {
24184
+ function Cm(e = {}) {
24068
24185
  let { wrapper: t } = e.components || {};
24069
24186
  return t ? o(t, {
24070
24187
  ...e,
24071
- children: o(_m, { ...e })
24072
- }) : _m(e);
24188
+ children: o(Sm, { ...e })
24189
+ }) : Sm(e);
24073
24190
  }
24074
24191
  //#endregion
24075
24192
  //#region src/media/mdx/Skeleton/expose.isActive.en.mdx
24076
- function ym(e) {
24193
+ function wm(e) {
24077
24194
  let t = {
24078
24195
  code: "code",
24079
24196
  li: "li",
@@ -24086,16 +24203,16 @@ function ym(e) {
24086
24203
  "\n"
24087
24204
  ] });
24088
24205
  }
24089
- function bm(e = {}) {
24206
+ function Tm(e = {}) {
24090
24207
  let { wrapper: t } = e.components || {};
24091
24208
  return t ? o(t, {
24092
24209
  ...e,
24093
- children: o(ym, { ...e })
24094
- }) : ym(e);
24210
+ children: o(wm, { ...e })
24211
+ }) : wm(e);
24095
24212
  }
24096
24213
  //#endregion
24097
24214
  //#region src/media/mdx/Skeleton/expose.isActive.ru.mdx
24098
- function xm(e) {
24215
+ function Em(e) {
24099
24216
  let t = {
24100
24217
  code: "code",
24101
24218
  li: "li",
@@ -24108,16 +24225,16 @@ function xm(e) {
24108
24225
  "\n"
24109
24226
  ] });
24110
24227
  }
24111
- function Sm(e = {}) {
24228
+ function Dm(e = {}) {
24112
24229
  let { wrapper: t } = e.components || {};
24113
24230
  return t ? o(t, {
24114
24231
  ...e,
24115
- children: o(xm, { ...e })
24116
- }) : xm(e);
24232
+ children: o(Em, { ...e })
24233
+ }) : Em(e);
24117
24234
  }
24118
24235
  //#endregion
24119
24236
  //#region src/media/mdx/Skeleton/classes.en.mdx
24120
- function Cm(e) {
24237
+ function Om(e) {
24121
24238
  let t = {
24122
24239
  code: "code",
24123
24240
  h2: "h2",
@@ -24172,16 +24289,16 @@ function Cm(e) {
24172
24289
  ] })
24173
24290
  ] });
24174
24291
  }
24175
- function wm(e = {}) {
24292
+ function km(e = {}) {
24176
24293
  let { wrapper: t } = e.components || {};
24177
24294
  return t ? o(t, {
24178
24295
  ...e,
24179
- children: o(Cm, { ...e })
24180
- }) : Cm(e);
24296
+ children: o(Om, { ...e })
24297
+ }) : Om(e);
24181
24298
  }
24182
24299
  //#endregion
24183
24300
  //#region src/media/mdx/Skeleton/classes.ru.mdx
24184
- function Tm(e) {
24301
+ function Am(e) {
24185
24302
  let t = {
24186
24303
  code: "code",
24187
24304
  h2: "h2",
@@ -24234,35 +24351,35 @@ function Tm(e) {
24234
24351
  ] })
24235
24352
  ] });
24236
24353
  }
24237
- function Em(e = {}) {
24354
+ function jm(e = {}) {
24238
24355
  let { wrapper: t } = e.components || {};
24239
24356
  return t ? o(t, {
24240
24357
  ...e,
24241
- children: o(Tm, { ...e })
24242
- }) : Tm(e);
24358
+ children: o(Am, { ...e })
24359
+ }) : Am(e);
24243
24360
  }
24244
24361
  //#endregion
24245
24362
  //#region src/media/mdx/Skeleton/wikiMdxSkeleton.ts
24246
- var Dm = {
24363
+ var Mm = {
24247
24364
  name: "Skeleton",
24248
24365
  descriptions: {
24249
24366
  active: {
24250
- en: gm,
24251
- ru: vm
24367
+ en: xm,
24368
+ ru: Cm
24252
24369
  },
24253
24370
  "expose.isActive": {
24254
- en: bm,
24255
- ru: Sm
24371
+ en: Tm,
24372
+ ru: Dm
24256
24373
  },
24257
24374
  classes: {
24258
- en: wm,
24259
- ru: Em
24375
+ en: km,
24376
+ ru: jm
24260
24377
  }
24261
24378
  }
24262
24379
  };
24263
24380
  //#endregion
24264
24381
  //#region src/media/mdx/Snackbar/adaptation.en.mdx
24265
- function Om(e) {
24382
+ function Nm(e) {
24266
24383
  let t = {
24267
24384
  blockquote: "blockquote",
24268
24385
  code: "code",
@@ -24309,16 +24426,16 @@ function Om(e) {
24309
24426
  ] })
24310
24427
  ] });
24311
24428
  }
24312
- function km(e = {}) {
24429
+ function Pm(e = {}) {
24313
24430
  let { wrapper: t } = e.components || {};
24314
24431
  return t ? o(t, {
24315
24432
  ...e,
24316
- children: o(Om, { ...e })
24317
- }) : Om(e);
24433
+ children: o(Nm, { ...e })
24434
+ }) : Nm(e);
24318
24435
  }
24319
24436
  //#endregion
24320
24437
  //#region src/media/mdx/Snackbar/adaptation.ru.mdx
24321
- function Am(e) {
24438
+ function Fm(e) {
24322
24439
  let t = {
24323
24440
  blockquote: "blockquote",
24324
24441
  code: "code",
@@ -24365,16 +24482,16 @@ function Am(e) {
24365
24482
  ] })
24366
24483
  ] });
24367
24484
  }
24368
- function jm(e = {}) {
24485
+ function Im(e = {}) {
24369
24486
  let { wrapper: t } = e.components || {};
24370
24487
  return t ? o(t, {
24371
24488
  ...e,
24372
- children: o(Am, { ...e })
24373
- }) : Am(e);
24489
+ children: o(Fm, { ...e })
24490
+ }) : Fm(e);
24374
24491
  }
24375
24492
  //#endregion
24376
24493
  //#region src/media/mdx/Snackbar/add.en.mdx
24377
- function Mm(e) {
24494
+ function Lm(e) {
24378
24495
  let t = {
24379
24496
  code: "code",
24380
24497
  h2: "h2",
@@ -24500,16 +24617,16 @@ function Mm(e) {
24500
24617
  ] })
24501
24618
  ] });
24502
24619
  }
24503
- function Nm(e = {}) {
24620
+ function Rm(e = {}) {
24504
24621
  let { wrapper: t } = e.components || {};
24505
24622
  return t ? o(t, {
24506
24623
  ...e,
24507
- children: o(Mm, { ...e })
24508
- }) : Mm(e);
24624
+ children: o(Lm, { ...e })
24625
+ }) : Lm(e);
24509
24626
  }
24510
24627
  //#endregion
24511
24628
  //#region src/media/mdx/Snackbar/add.ru.mdx
24512
- function Pm(e) {
24629
+ function zm(e) {
24513
24630
  let t = {
24514
24631
  code: "code",
24515
24632
  h2: "h2",
@@ -24633,16 +24750,16 @@ function Pm(e) {
24633
24750
  ] })
24634
24751
  ] });
24635
24752
  }
24636
- function Fm(e = {}) {
24753
+ function Bm(e = {}) {
24637
24754
  let { wrapper: t } = e.components || {};
24638
24755
  return t ? o(t, {
24639
24756
  ...e,
24640
- children: o(Pm, { ...e })
24641
- }) : Pm(e);
24757
+ children: o(zm, { ...e })
24758
+ }) : zm(e);
24642
24759
  }
24643
24760
  //#endregion
24644
24761
  //#region src/media/mdx/Snackbar/position.en.mdx
24645
- function Im(e) {
24762
+ function Vm(e) {
24646
24763
  let t = {
24647
24764
  blockquote: "blockquote",
24648
24765
  code: "code",
@@ -24716,16 +24833,16 @@ function Im(e) {
24716
24833
  ] })
24717
24834
  ] });
24718
24835
  }
24719
- function Lm(e = {}) {
24836
+ function Hm(e = {}) {
24720
24837
  let { wrapper: t } = e.components || {};
24721
24838
  return t ? o(t, {
24722
24839
  ...e,
24723
- children: o(Im, { ...e })
24724
- }) : Im(e);
24840
+ children: o(Vm, { ...e })
24841
+ }) : Vm(e);
24725
24842
  }
24726
24843
  //#endregion
24727
24844
  //#region src/media/mdx/Snackbar/position.ru.mdx
24728
- function Rm(e) {
24845
+ function Um(e) {
24729
24846
  let t = {
24730
24847
  blockquote: "blockquote",
24731
24848
  code: "code",
@@ -24799,16 +24916,16 @@ function Rm(e) {
24799
24916
  ] })
24800
24917
  ] });
24801
24918
  }
24802
- function zm(e = {}) {
24919
+ function Wm(e = {}) {
24803
24920
  let { wrapper: t } = e.components || {};
24804
24921
  return t ? o(t, {
24805
24922
  ...e,
24806
- children: o(Rm, { ...e })
24807
- }) : Rm(e);
24923
+ children: o(Um, { ...e })
24924
+ }) : Um(e);
24808
24925
  }
24809
24926
  //#endregion
24810
24927
  //#region src/media/mdx/Snackbar/snackbar.en.mdx
24811
- function Bm(e) {
24928
+ function Gm(e) {
24812
24929
  let t = {
24813
24930
  blockquote: "blockquote",
24814
24931
  h2: "h2",
@@ -24863,16 +24980,16 @@ function Bm(e) {
24863
24980
  ] })
24864
24981
  ] });
24865
24982
  }
24866
- function Vm(e = {}) {
24983
+ function Km(e = {}) {
24867
24984
  let { wrapper: t } = e.components || {};
24868
24985
  return t ? o(t, {
24869
24986
  ...e,
24870
- children: o(Bm, { ...e })
24871
- }) : Bm(e);
24987
+ children: o(Gm, { ...e })
24988
+ }) : Gm(e);
24872
24989
  }
24873
24990
  //#endregion
24874
24991
  //#region src/media/mdx/Snackbar/snackbar.ru.mdx
24875
- function Hm(e) {
24992
+ function qm(e) {
24876
24993
  let t = {
24877
24994
  blockquote: "blockquote",
24878
24995
  h2: "h2",
@@ -24927,16 +25044,16 @@ function Hm(e) {
24927
25044
  ] })
24928
25045
  ] });
24929
25046
  }
24930
- function Um(e = {}) {
25047
+ function Jm(e = {}) {
24931
25048
  let { wrapper: t } = e.components || {};
24932
25049
  return t ? o(t, {
24933
25050
  ...e,
24934
- children: o(Hm, { ...e })
24935
- }) : Hm(e);
25051
+ children: o(qm, { ...e })
25052
+ }) : qm(e);
24936
25053
  }
24937
25054
  //#endregion
24938
25055
  //#region src/media/mdx/Snackbar/event.show.en.mdx
24939
- function Wm(e) {
25056
+ function Ym(e) {
24940
25057
  let t = {
24941
25058
  code: "code",
24942
25059
  h3: "h3",
@@ -24982,16 +25099,16 @@ function Wm(e) {
24982
25099
  ] })
24983
25100
  ] });
24984
25101
  }
24985
- function Gm(e = {}) {
25102
+ function Xm(e = {}) {
24986
25103
  let { wrapper: t } = e.components || {};
24987
25104
  return t ? o(t, {
24988
25105
  ...e,
24989
- children: o(Wm, { ...e })
24990
- }) : Wm(e);
25106
+ children: o(Ym, { ...e })
25107
+ }) : Ym(e);
24991
25108
  }
24992
25109
  //#endregion
24993
25110
  //#region src/media/mdx/Snackbar/event.show.ru.mdx
24994
- function Km(e) {
25111
+ function Zm(e) {
24995
25112
  let t = {
24996
25113
  code: "code",
24997
25114
  h3: "h3",
@@ -25037,16 +25154,16 @@ function Km(e) {
25037
25154
  ] })
25038
25155
  ] });
25039
25156
  }
25040
- function qm(e = {}) {
25157
+ function Qm(e = {}) {
25041
25158
  let { wrapper: t } = e.components || {};
25042
25159
  return t ? o(t, {
25043
25160
  ...e,
25044
- children: o(Km, { ...e })
25045
- }) : Km(e);
25161
+ children: o(Zm, { ...e })
25162
+ }) : Zm(e);
25046
25163
  }
25047
25164
  //#endregion
25048
25165
  //#region src/media/mdx/Snackbar/event.hide.en.mdx
25049
- function Jm(e) {
25166
+ function $m(e) {
25050
25167
  let t = {
25051
25168
  code: "code",
25052
25169
  h3: "h3",
@@ -25094,16 +25211,16 @@ function Jm(e) {
25094
25211
  ] })
25095
25212
  ] });
25096
25213
  }
25097
- function Ym(e = {}) {
25214
+ function eh(e = {}) {
25098
25215
  let { wrapper: t } = e.components || {};
25099
25216
  return t ? o(t, {
25100
25217
  ...e,
25101
- children: o(Jm, { ...e })
25102
- }) : Jm(e);
25218
+ children: o($m, { ...e })
25219
+ }) : $m(e);
25103
25220
  }
25104
25221
  //#endregion
25105
25222
  //#region src/media/mdx/Snackbar/event.hide.ru.mdx
25106
- function Xm(e) {
25223
+ function th(e) {
25107
25224
  let t = {
25108
25225
  code: "code",
25109
25226
  h3: "h3",
@@ -25151,16 +25268,16 @@ function Xm(e) {
25151
25268
  ] })
25152
25269
  ] });
25153
25270
  }
25154
- function Zm(e = {}) {
25271
+ function nh(e = {}) {
25155
25272
  let { wrapper: t } = e.components || {};
25156
25273
  return t ? o(t, {
25157
25274
  ...e,
25158
- children: o(Xm, { ...e })
25159
- }) : Xm(e);
25275
+ children: o(th, { ...e })
25276
+ }) : th(e);
25160
25277
  }
25161
25278
  //#endregion
25162
25279
  //#region src/media/mdx/Snackbar/expose.isItem.en.mdx
25163
- function Qm(e) {
25280
+ function rh(e) {
25164
25281
  let t = {
25165
25282
  code: "code",
25166
25283
  li: "li",
@@ -25173,16 +25290,16 @@ function Qm(e) {
25173
25290
  "\n"
25174
25291
  ] });
25175
25292
  }
25176
- function $m(e = {}) {
25293
+ function ih(e = {}) {
25177
25294
  let { wrapper: t } = e.components || {};
25178
25295
  return t ? o(t, {
25179
25296
  ...e,
25180
- children: o(Qm, { ...e })
25181
- }) : Qm(e);
25297
+ children: o(rh, { ...e })
25298
+ }) : rh(e);
25182
25299
  }
25183
25300
  //#endregion
25184
25301
  //#region src/media/mdx/Snackbar/expose.isItem.ru.mdx
25185
- function eh(e) {
25302
+ function ah(e) {
25186
25303
  let t = {
25187
25304
  code: "code",
25188
25305
  li: "li",
@@ -25195,16 +25312,16 @@ function eh(e) {
25195
25312
  "\n"
25196
25313
  ] });
25197
25314
  }
25198
- function th(e = {}) {
25315
+ function oh(e = {}) {
25199
25316
  let { wrapper: t } = e.components || {};
25200
25317
  return t ? o(t, {
25201
25318
  ...e,
25202
- children: o(eh, { ...e })
25203
- }) : eh(e);
25319
+ children: o(ah, { ...e })
25320
+ }) : ah(e);
25204
25321
  }
25205
25322
  //#endregion
25206
25323
  //#region src/media/mdx/Snackbar/expose.add.en.mdx
25207
- function nh(e) {
25324
+ function sh(e) {
25208
25325
  let t = {
25209
25326
  code: "code",
25210
25327
  li: "li",
@@ -25217,16 +25334,16 @@ function nh(e) {
25217
25334
  "\n"
25218
25335
  ] });
25219
25336
  }
25220
- function rh(e = {}) {
25337
+ function ch(e = {}) {
25221
25338
  let { wrapper: t } = e.components || {};
25222
25339
  return t ? o(t, {
25223
25340
  ...e,
25224
- children: o(nh, { ...e })
25225
- }) : nh(e);
25341
+ children: o(sh, { ...e })
25342
+ }) : sh(e);
25226
25343
  }
25227
25344
  //#endregion
25228
25345
  //#region src/media/mdx/Snackbar/expose.add.ru.mdx
25229
- function ih(e) {
25346
+ function lh(e) {
25230
25347
  let t = {
25231
25348
  code: "code",
25232
25349
  li: "li",
@@ -25239,16 +25356,16 @@ function ih(e) {
25239
25356
  "\n"
25240
25357
  ] });
25241
25358
  }
25242
- function ah(e = {}) {
25359
+ function uh(e = {}) {
25243
25360
  let { wrapper: t } = e.components || {};
25244
25361
  return t ? o(t, {
25245
25362
  ...e,
25246
- children: o(ih, { ...e })
25247
- }) : ih(e);
25363
+ children: o(lh, { ...e })
25364
+ }) : lh(e);
25248
25365
  }
25249
25366
  //#endregion
25250
25367
  //#region src/media/mdx/Snackbar/expose.remove.en.mdx
25251
- function oh(e) {
25368
+ function dh(e) {
25252
25369
  let t = {
25253
25370
  code: "code",
25254
25371
  li: "li",
@@ -25261,16 +25378,16 @@ function oh(e) {
25261
25378
  "\n"
25262
25379
  ] });
25263
25380
  }
25264
- function sh(e = {}) {
25381
+ function fh(e = {}) {
25265
25382
  let { wrapper: t } = e.components || {};
25266
25383
  return t ? o(t, {
25267
25384
  ...e,
25268
- children: o(oh, { ...e })
25269
- }) : oh(e);
25385
+ children: o(dh, { ...e })
25386
+ }) : dh(e);
25270
25387
  }
25271
25388
  //#endregion
25272
25389
  //#region src/media/mdx/Snackbar/expose.remove.ru.mdx
25273
- function ch(e) {
25390
+ function ph(e) {
25274
25391
  let t = {
25275
25392
  code: "code",
25276
25393
  li: "li",
@@ -25283,16 +25400,16 @@ function ch(e) {
25283
25400
  "\n"
25284
25401
  ] });
25285
25402
  }
25286
- function lh(e = {}) {
25403
+ function mh(e = {}) {
25287
25404
  let { wrapper: t } = e.components || {};
25288
25405
  return t ? o(t, {
25289
25406
  ...e,
25290
- children: o(ch, { ...e })
25291
- }) : ch(e);
25407
+ children: o(ph, { ...e })
25408
+ }) : ph(e);
25292
25409
  }
25293
25410
  //#endregion
25294
25411
  //#region src/media/mdx/Snackbar/expose.clear.en.mdx
25295
- function uh(e) {
25412
+ function hh(e) {
25296
25413
  let t = {
25297
25414
  code: "code",
25298
25415
  li: "li",
@@ -25305,16 +25422,16 @@ function uh(e) {
25305
25422
  "\n"
25306
25423
  ] });
25307
25424
  }
25308
- function dh(e = {}) {
25425
+ function gh(e = {}) {
25309
25426
  let { wrapper: t } = e.components || {};
25310
25427
  return t ? o(t, {
25311
25428
  ...e,
25312
- children: o(uh, { ...e })
25313
- }) : uh(e);
25429
+ children: o(hh, { ...e })
25430
+ }) : hh(e);
25314
25431
  }
25315
25432
  //#endregion
25316
25433
  //#region src/media/mdx/Snackbar/expose.clear.ru.mdx
25317
- function fh(e) {
25434
+ function _h(e) {
25318
25435
  let t = {
25319
25436
  code: "code",
25320
25437
  li: "li",
@@ -25327,63 +25444,63 @@ function fh(e) {
25327
25444
  "\n"
25328
25445
  ] });
25329
25446
  }
25330
- function ph(e = {}) {
25447
+ function vh(e = {}) {
25331
25448
  let { wrapper: t } = e.components || {};
25332
25449
  return t ? o(t, {
25333
25450
  ...e,
25334
- children: o(fh, { ...e })
25335
- }) : fh(e);
25451
+ children: o(_h, { ...e })
25452
+ }) : _h(e);
25336
25453
  }
25337
25454
  //#endregion
25338
25455
  //#region src/media/mdx/Snackbar/wikiMdxSnackbar.ts
25339
- var mh = {
25456
+ var yh = {
25340
25457
  name: "Snackbar",
25341
25458
  descriptions: {
25342
25459
  snackbar: {
25343
- en: Vm,
25344
- ru: Um
25460
+ en: Km,
25461
+ ru: Jm
25345
25462
  },
25346
25463
  adaptation: {
25347
- en: km,
25348
- ru: jm
25464
+ en: Pm,
25465
+ ru: Im
25349
25466
  },
25350
25467
  add: {
25351
- en: Nm,
25352
- ru: Fm
25468
+ en: Rm,
25469
+ ru: Bm
25353
25470
  },
25354
25471
  position: {
25355
- en: Lm,
25356
- ru: zm
25472
+ en: Hm,
25473
+ ru: Wm
25357
25474
  },
25358
25475
  "event.show": {
25359
- en: Gm,
25360
- ru: qm
25476
+ en: Xm,
25477
+ ru: Qm
25361
25478
  },
25362
25479
  "event.hide": {
25363
- en: Ym,
25364
- ru: Zm
25480
+ en: eh,
25481
+ ru: nh
25365
25482
  },
25366
25483
  "expose.isItem": {
25367
- en: $m,
25368
- ru: th
25484
+ en: ih,
25485
+ ru: oh
25369
25486
  },
25370
25487
  "expose.add": {
25371
- en: rh,
25372
- ru: ah
25488
+ en: ch,
25489
+ ru: uh
25373
25490
  },
25374
25491
  "expose.remove": {
25375
- en: sh,
25376
- ru: lh
25492
+ en: fh,
25493
+ ru: mh
25377
25494
  },
25378
25495
  "expose.clear": {
25379
- en: dh,
25380
- ru: ph
25496
+ en: gh,
25497
+ ru: vh
25381
25498
  }
25382
25499
  }
25383
25500
  };
25384
25501
  //#endregion
25385
25502
  //#region src/media/mdx/SnackbarItem/snackbarItem.en.mdx
25386
- function hh(e) {
25503
+ function bh(e) {
25387
25504
  let t = {
25388
25505
  blockquote: "blockquote",
25389
25506
  code: "code",
@@ -25447,16 +25564,16 @@ function hh(e) {
25447
25564
  ] })
25448
25565
  ] });
25449
25566
  }
25450
- function gh(e = {}) {
25567
+ function xh(e = {}) {
25451
25568
  let { wrapper: t } = e.components || {};
25452
25569
  return t ? o(t, {
25453
25570
  ...e,
25454
- children: o(hh, { ...e })
25455
- }) : hh(e);
25571
+ children: o(bh, { ...e })
25572
+ }) : bh(e);
25456
25573
  }
25457
25574
  //#endregion
25458
25575
  //#region src/media/mdx/SnackbarItem/snackbarItem.ru.mdx
25459
- function _h(e) {
25576
+ function Sh(e) {
25460
25577
  let t = {
25461
25578
  blockquote: "blockquote",
25462
25579
  code: "code",
@@ -25520,16 +25637,16 @@ function _h(e) {
25520
25637
  ] })
25521
25638
  ] });
25522
25639
  }
25523
- function vh(e = {}) {
25640
+ function Ch(e = {}) {
25524
25641
  let { wrapper: t } = e.components || {};
25525
25642
  return t ? o(t, {
25526
25643
  ...e,
25527
- children: o(_h, { ...e })
25528
- }) : _h(e);
25644
+ children: o(Sh, { ...e })
25645
+ }) : Sh(e);
25529
25646
  }
25530
25647
  //#endregion
25531
25648
  //#region src/media/mdx/SnackbarItem/component.en.mdx
25532
- function yh(e) {
25649
+ function wh(e) {
25533
25650
  let t = {
25534
25651
  code: "code",
25535
25652
  h2: "h2",
@@ -25563,16 +25680,16 @@ function yh(e) {
25563
25680
  o(t.p, { children: "The component is rendered inside a special container with the main content area class, ensuring proper padding and styling." })
25564
25681
  ] });
25565
25682
  }
25566
- function bh(e = {}) {
25683
+ function Th(e = {}) {
25567
25684
  let { wrapper: t } = e.components || {};
25568
25685
  return t ? o(t, {
25569
25686
  ...e,
25570
- children: o(yh, { ...e })
25571
- }) : yh(e);
25687
+ children: o(wh, { ...e })
25688
+ }) : wh(e);
25572
25689
  }
25573
25690
  //#endregion
25574
25691
  //#region src/media/mdx/SnackbarItem/component.ru.mdx
25575
- function xh(e) {
25692
+ function Eh(e) {
25576
25693
  let t = {
25577
25694
  code: "code",
25578
25695
  h2: "h2",
@@ -25606,16 +25723,16 @@ function xh(e) {
25606
25723
  o(t.p, { children: "Компонент рендерится внутри специального контейнера с классом основной области контента, что обеспечивает правильные отступы и стилизацию." })
25607
25724
  ] });
25608
25725
  }
25609
- function Sh(e = {}) {
25726
+ function Dh(e = {}) {
25610
25727
  let { wrapper: t } = e.components || {};
25611
25728
  return t ? o(t, {
25612
25729
  ...e,
25613
- children: o(xh, { ...e })
25614
- }) : xh(e);
25730
+ children: o(Eh, { ...e })
25731
+ }) : Eh(e);
25615
25732
  }
25616
25733
  //#endregion
25617
25734
  //#region src/media/mdx/SnackbarItem/html.en.mdx
25618
- function Ch(e) {
25735
+ function Oh(e) {
25619
25736
  let t = {
25620
25737
  blockquote: "blockquote",
25621
25738
  code: "code",
@@ -25645,16 +25762,16 @@ function Ch(e) {
25645
25762
  ] })
25646
25763
  ] });
25647
25764
  }
25648
- function wh(e = {}) {
25765
+ function kh(e = {}) {
25649
25766
  let { wrapper: t } = e.components || {};
25650
25767
  return t ? o(t, {
25651
25768
  ...e,
25652
- children: o(Ch, { ...e })
25653
- }) : Ch(e);
25769
+ children: o(Oh, { ...e })
25770
+ }) : Oh(e);
25654
25771
  }
25655
25772
  //#endregion
25656
25773
  //#region src/media/mdx/SnackbarItem/html.ru.mdx
25657
- function Th(e) {
25774
+ function Ah(e) {
25658
25775
  let t = {
25659
25776
  blockquote: "blockquote",
25660
25777
  code: "code",
@@ -25684,16 +25801,16 @@ function Th(e) {
25684
25801
  ] })
25685
25802
  ] });
25686
25803
  }
25687
- function Eh(e = {}) {
25804
+ function jh(e = {}) {
25688
25805
  let { wrapper: t } = e.components || {};
25689
25806
  return t ? o(t, {
25690
25807
  ...e,
25691
- children: o(Th, { ...e })
25692
- }) : Th(e);
25808
+ children: o(Ah, { ...e })
25809
+ }) : Ah(e);
25693
25810
  }
25694
25811
  //#endregion
25695
25812
  //#region src/media/mdx/SnackbarItem/event.close.en.mdx
25696
- function Dh(e) {
25813
+ function Mh(e) {
25697
25814
  let t = {
25698
25815
  code: "code",
25699
25816
  h3: "h3",
@@ -25727,16 +25844,16 @@ function Dh(e) {
25727
25844
  })
25728
25845
  ] });
25729
25846
  }
25730
- function Oh(e = {}) {
25847
+ function Nh(e = {}) {
25731
25848
  let { wrapper: t } = e.components || {};
25732
25849
  return t ? o(t, {
25733
25850
  ...e,
25734
- children: o(Dh, { ...e })
25735
- }) : Dh(e);
25851
+ children: o(Mh, { ...e })
25852
+ }) : Mh(e);
25736
25853
  }
25737
25854
  //#endregion
25738
25855
  //#region src/media/mdx/SnackbarItem/event.close.ru.mdx
25739
- function kh(e) {
25856
+ function Ph(e) {
25740
25857
  let t = {
25741
25858
  code: "code",
25742
25859
  h3: "h3",
@@ -25770,16 +25887,16 @@ function kh(e) {
25770
25887
  })
25771
25888
  ] });
25772
25889
  }
25773
- function Ah(e = {}) {
25890
+ function Fh(e = {}) {
25774
25891
  let { wrapper: t } = e.components || {};
25775
25892
  return t ? o(t, {
25776
25893
  ...e,
25777
- children: o(kh, { ...e })
25778
- }) : kh(e);
25894
+ children: o(Ph, { ...e })
25895
+ }) : Ph(e);
25779
25896
  }
25780
25897
  //#endregion
25781
25898
  //#region src/media/mdx/SnackbarItem/role.en.mdx
25782
- function jh(e) {
25899
+ function Ih(e) {
25783
25900
  let t = {
25784
25901
  code: "code",
25785
25902
  h2: "h2",
@@ -25818,16 +25935,16 @@ function jh(e) {
25818
25935
  })
25819
25936
  ] });
25820
25937
  }
25821
- function Mh(e = {}) {
25938
+ function Lh(e = {}) {
25822
25939
  let { wrapper: t } = e.components || {};
25823
25940
  return t ? o(t, {
25824
25941
  ...e,
25825
- children: o(jh, { ...e })
25826
- }) : jh(e);
25942
+ children: o(Ih, { ...e })
25943
+ }) : Ih(e);
25827
25944
  }
25828
25945
  //#endregion
25829
25946
  //#region src/media/mdx/SnackbarItem/role.ru.mdx
25830
- function Nh(e) {
25947
+ function Rh(e) {
25831
25948
  let t = {
25832
25949
  code: "code",
25833
25950
  h2: "h2",
@@ -25866,43 +25983,43 @@ function Nh(e) {
25866
25983
  })
25867
25984
  ] });
25868
25985
  }
25869
- function Ph(e = {}) {
25986
+ function zh(e = {}) {
25870
25987
  let { wrapper: t } = e.components || {};
25871
25988
  return t ? o(t, {
25872
25989
  ...e,
25873
- children: o(Nh, { ...e })
25874
- }) : Nh(e);
25990
+ children: o(Rh, { ...e })
25991
+ }) : Rh(e);
25875
25992
  }
25876
25993
  //#endregion
25877
25994
  //#region src/media/mdx/SnackbarItem/wikiMdxSnackbarItem.ts
25878
- var Fh = {
25995
+ var Bh = {
25879
25996
  name: "SnackbarItem",
25880
25997
  descriptions: {
25881
25998
  snackbarItem: {
25882
- en: gh,
25883
- ru: vh
25999
+ en: xh,
26000
+ ru: Ch
25884
26001
  },
25885
26002
  component: {
25886
- en: bh,
25887
- ru: Sh
26003
+ en: Th,
26004
+ ru: Dh
25888
26005
  },
25889
26006
  html: {
25890
- en: wh,
25891
- ru: Eh
26007
+ en: kh,
26008
+ ru: jh
25892
26009
  },
25893
26010
  eventClose: {
25894
- en: Oh,
25895
- ru: Ah
26011
+ en: Nh,
26012
+ ru: Fh
25896
26013
  },
25897
26014
  role: {
25898
- en: Mh,
25899
- ru: Ph
26015
+ en: Lh,
26016
+ ru: zh
25900
26017
  }
25901
26018
  }
25902
26019
  };
25903
26020
  //#endregion
25904
26021
  //#region src/media/mdx/Switch/switch.en.mdx
25905
- function Ih(e) {
26022
+ function Vh(e) {
25906
26023
  let t = {
25907
26024
  li: "li",
25908
26025
  p: "p",
@@ -25952,16 +26069,16 @@ function Ih(e) {
25952
26069
  ] })
25953
26070
  ] });
25954
26071
  }
25955
- function Lh(e = {}) {
26072
+ function Hh(e = {}) {
25956
26073
  let { wrapper: t } = e.components || {};
25957
26074
  return t ? o(t, {
25958
26075
  ...e,
25959
- children: o(Ih, { ...e })
25960
- }) : Ih(e);
26076
+ children: o(Vh, { ...e })
26077
+ }) : Vh(e);
25961
26078
  }
25962
26079
  //#endregion
25963
26080
  //#region src/media/mdx/Switch/switch.ru.mdx
25964
- function Rh(e) {
26081
+ function Uh(e) {
25965
26082
  let t = {
25966
26083
  li: "li",
25967
26084
  p: "p",
@@ -26011,25 +26128,25 @@ function Rh(e) {
26011
26128
  ] })
26012
26129
  ] });
26013
26130
  }
26014
- function zh(e = {}) {
26131
+ function Wh(e = {}) {
26015
26132
  let { wrapper: t } = e.components || {};
26016
26133
  return t ? o(t, {
26017
26134
  ...e,
26018
- children: o(Rh, { ...e })
26019
- }) : Rh(e);
26135
+ children: o(Uh, { ...e })
26136
+ }) : Uh(e);
26020
26137
  }
26021
26138
  //#endregion
26022
26139
  //#region src/media/mdx/Switch/wikiMdxSwitch.ts
26023
- var Bh = {
26140
+ var Gh = {
26024
26141
  name: "Switch",
26025
26142
  descriptions: { switch: {
26026
- en: Lh,
26027
- ru: zh
26143
+ en: Hh,
26144
+ ru: Wh
26028
26145
  } }
26029
26146
  };
26030
26147
  //#endregion
26031
26148
  //#region src/media/mdx/TabItem/tabItem.en.mdx
26032
- function Vh(e) {
26149
+ function Kh(e) {
26033
26150
  let t = {
26034
26151
  li: "li",
26035
26152
  p: "p",
@@ -26084,16 +26201,16 @@ function Vh(e) {
26084
26201
  })
26085
26202
  ] });
26086
26203
  }
26087
- function Hh(e = {}) {
26204
+ function qh(e = {}) {
26088
26205
  let { wrapper: t } = e.components || {};
26089
26206
  return t ? o(t, {
26090
26207
  ...e,
26091
- children: o(Vh, { ...e })
26092
- }) : Vh(e);
26208
+ children: o(Kh, { ...e })
26209
+ }) : Kh(e);
26093
26210
  }
26094
26211
  //#endregion
26095
26212
  //#region src/media/mdx/TabItem/tabItem.ru.mdx
26096
- function Uh(e) {
26213
+ function Jh(e) {
26097
26214
  let t = {
26098
26215
  li: "li",
26099
26216
  p: "p",
@@ -26148,25 +26265,25 @@ function Uh(e) {
26148
26265
  })
26149
26266
  ] });
26150
26267
  }
26151
- function Wh(e = {}) {
26268
+ function Yh(e = {}) {
26152
26269
  let { wrapper: t } = e.components || {};
26153
26270
  return t ? o(t, {
26154
26271
  ...e,
26155
- children: o(Uh, { ...e })
26156
- }) : Uh(e);
26272
+ children: o(Jh, { ...e })
26273
+ }) : Jh(e);
26157
26274
  }
26158
26275
  //#endregion
26159
26276
  //#region src/media/mdx/TabItem/wikiMdxTabItem.ts
26160
- var Gh = {
26277
+ var Xh = {
26161
26278
  name: "TabItem",
26162
26279
  descriptions: { tabItem: {
26163
- en: Hh,
26164
- ru: Wh
26280
+ en: qh,
26281
+ ru: Yh
26165
26282
  } }
26166
26283
  };
26167
26284
  //#endregion
26168
26285
  //#region src/media/mdx/Tabs/tabs.en.mdx
26169
- function Kh(e) {
26286
+ function Zh(e) {
26170
26287
  let t = {
26171
26288
  li: "li",
26172
26289
  p: "p",
@@ -26215,16 +26332,16 @@ function Kh(e) {
26215
26332
  })
26216
26333
  ] });
26217
26334
  }
26218
- function qh(e = {}) {
26335
+ function Qh(e = {}) {
26219
26336
  let { wrapper: t } = e.components || {};
26220
26337
  return t ? o(t, {
26221
26338
  ...e,
26222
- children: o(Kh, { ...e })
26223
- }) : Kh(e);
26339
+ children: o(Zh, { ...e })
26340
+ }) : Zh(e);
26224
26341
  }
26225
26342
  //#endregion
26226
26343
  //#region src/media/mdx/Tabs/tabs.ru.mdx
26227
- function Jh(e) {
26344
+ function $h(e) {
26228
26345
  let t = {
26229
26346
  li: "li",
26230
26347
  p: "p",
@@ -26273,16 +26390,16 @@ function Jh(e) {
26273
26390
  })
26274
26391
  ] });
26275
26392
  }
26276
- function Yh(e = {}) {
26393
+ function eg(e = {}) {
26277
26394
  let { wrapper: t } = e.components || {};
26278
26395
  return t ? o(t, {
26279
26396
  ...e,
26280
- children: o(Jh, { ...e })
26281
- }) : Jh(e);
26397
+ children: o($h, { ...e })
26398
+ }) : $h(e);
26282
26399
  }
26283
26400
  //#endregion
26284
26401
  //#region src/media/mdx/Tabs/v-model.en.mdx
26285
- function Xh(e) {
26402
+ function tg(e) {
26286
26403
  let t = {
26287
26404
  code: "code",
26288
26405
  h2: "h2",
@@ -26315,16 +26432,16 @@ function Xh(e) {
26315
26432
  })
26316
26433
  ] });
26317
26434
  }
26318
- function Zh(e = {}) {
26435
+ function ng(e = {}) {
26319
26436
  let { wrapper: t } = e.components || {};
26320
26437
  return t ? o(t, {
26321
26438
  ...e,
26322
- children: o(Xh, { ...e })
26323
- }) : Xh(e);
26439
+ children: o(tg, { ...e })
26440
+ }) : tg(e);
26324
26441
  }
26325
26442
  //#endregion
26326
26443
  //#region src/media/mdx/Tabs/v-model.ru.mdx
26327
- function Qh(e) {
26444
+ function rg(e) {
26328
26445
  let t = {
26329
26446
  code: "code",
26330
26447
  h2: "h2",
@@ -26357,31 +26474,31 @@ function Qh(e) {
26357
26474
  })
26358
26475
  ] });
26359
26476
  }
26360
- function $h(e = {}) {
26477
+ function ig(e = {}) {
26361
26478
  let { wrapper: t } = e.components || {};
26362
26479
  return t ? o(t, {
26363
26480
  ...e,
26364
- children: o(Qh, { ...e })
26365
- }) : Qh(e);
26481
+ children: o(rg, { ...e })
26482
+ }) : rg(e);
26366
26483
  }
26367
26484
  //#endregion
26368
26485
  //#region src/media/mdx/Tabs/wikiMdxTabs.ts
26369
- var eg = {
26486
+ var ag = {
26370
26487
  name: "Tabs",
26371
26488
  descriptions: {
26372
26489
  tabs: {
26373
- en: qh,
26374
- ru: Yh
26490
+ en: Qh,
26491
+ ru: eg
26375
26492
  },
26376
26493
  "v-model": {
26377
- en: Zh,
26378
- ru: $h
26494
+ en: ng,
26495
+ ru: ig
26379
26496
  }
26380
26497
  }
26381
26498
  };
26382
26499
  //#endregion
26383
26500
  //#region src/media/mdx/TabsNavigation/tabsNavigation.en.mdx
26384
- function tg(e) {
26501
+ function og(e) {
26385
26502
  let t = {
26386
26503
  code: "code",
26387
26504
  li: "li",
@@ -26433,16 +26550,16 @@ function tg(e) {
26433
26550
  })
26434
26551
  ] });
26435
26552
  }
26436
- function ng(e = {}) {
26553
+ function sg(e = {}) {
26437
26554
  let { wrapper: t } = e.components || {};
26438
26555
  return t ? o(t, {
26439
26556
  ...e,
26440
- children: o(tg, { ...e })
26441
- }) : tg(e);
26557
+ children: o(og, { ...e })
26558
+ }) : og(e);
26442
26559
  }
26443
26560
  //#endregion
26444
26561
  //#region src/media/mdx/TabsNavigation/tabsNavigation.ru.mdx
26445
- function rg(e) {
26562
+ function cg(e) {
26446
26563
  let t = {
26447
26564
  code: "code",
26448
26565
  li: "li",
@@ -26494,16 +26611,16 @@ function rg(e) {
26494
26611
  })
26495
26612
  ] });
26496
26613
  }
26497
- function ig(e = {}) {
26614
+ function lg(e = {}) {
26498
26615
  let { wrapper: t } = e.components || {};
26499
26616
  return t ? o(t, {
26500
26617
  ...e,
26501
- children: o(rg, { ...e })
26502
- }) : rg(e);
26618
+ children: o(cg, { ...e })
26619
+ }) : cg(e);
26503
26620
  }
26504
26621
  //#endregion
26505
26622
  //#region src/media/mdx/TabsNavigation/v-model.en.mdx
26506
- function ag(e) {
26623
+ function ug(e) {
26507
26624
  let t = {
26508
26625
  code: "code",
26509
26626
  h2: "h2",
@@ -26536,16 +26653,16 @@ function ag(e) {
26536
26653
  })
26537
26654
  ] });
26538
26655
  }
26539
- function og(e = {}) {
26656
+ function dg(e = {}) {
26540
26657
  let { wrapper: t } = e.components || {};
26541
26658
  return t ? o(t, {
26542
26659
  ...e,
26543
- children: o(ag, { ...e })
26544
- }) : ag(e);
26660
+ children: o(ug, { ...e })
26661
+ }) : ug(e);
26545
26662
  }
26546
26663
  //#endregion
26547
26664
  //#region src/media/mdx/TabsNavigation/v-model.ru.mdx
26548
- function sg(e) {
26665
+ function fg(e) {
26549
26666
  let t = {
26550
26667
  code: "code",
26551
26668
  h2: "h2",
@@ -26578,31 +26695,31 @@ function sg(e) {
26578
26695
  })
26579
26696
  ] });
26580
26697
  }
26581
- function cg(e = {}) {
26698
+ function pg(e = {}) {
26582
26699
  let { wrapper: t } = e.components || {};
26583
26700
  return t ? o(t, {
26584
26701
  ...e,
26585
- children: o(sg, { ...e })
26586
- }) : sg(e);
26702
+ children: o(fg, { ...e })
26703
+ }) : fg(e);
26587
26704
  }
26588
26705
  //#endregion
26589
26706
  //#region src/media/mdx/TabsNavigation/wikiMdxTabsNavigation.ts
26590
- var lg = {
26707
+ var mg = {
26591
26708
  name: "TabsNavigation",
26592
26709
  descriptions: {
26593
26710
  tabsNavigation: {
26594
- en: ng,
26595
- ru: ig
26711
+ en: sg,
26712
+ ru: lg
26596
26713
  },
26597
26714
  "v-model": {
26598
- en: og,
26599
- ru: cg
26715
+ en: dg,
26716
+ ru: pg
26600
26717
  }
26601
26718
  }
26602
26719
  };
26603
26720
  //#endregion
26604
26721
  //#region src/media/mdx/Textarea/autosize.en.mdx
26605
- function ug(e) {
26722
+ function hg(e) {
26606
26723
  let t = {
26607
26724
  code: "code",
26608
26725
  h2: "h2",
@@ -26650,16 +26767,16 @@ function ug(e) {
26650
26767
  })
26651
26768
  ] });
26652
26769
  }
26653
- function dg(e = {}) {
26770
+ function gg(e = {}) {
26654
26771
  let { wrapper: t } = e.components || {};
26655
26772
  return t ? o(t, {
26656
26773
  ...e,
26657
- children: o(ug, { ...e })
26658
- }) : ug(e);
26774
+ children: o(hg, { ...e })
26775
+ }) : hg(e);
26659
26776
  }
26660
26777
  //#endregion
26661
26778
  //#region src/media/mdx/Textarea/autosize.ru.mdx
26662
- function fg(e) {
26779
+ function _g(e) {
26663
26780
  let t = {
26664
26781
  code: "code",
26665
26782
  h2: "h2",
@@ -26707,16 +26824,16 @@ function fg(e) {
26707
26824
  })
26708
26825
  ] });
26709
26826
  }
26710
- function pg(e = {}) {
26827
+ function vg(e = {}) {
26711
26828
  let { wrapper: t } = e.components || {};
26712
26829
  return t ? o(t, {
26713
26830
  ...e,
26714
- children: o(fg, { ...e })
26715
- }) : fg(e);
26831
+ children: o(_g, { ...e })
26832
+ }) : _g(e);
26716
26833
  }
26717
26834
  //#endregion
26718
26835
  //#region src/media/mdx/Textarea/textarea.en.mdx
26719
- function mg(e) {
26836
+ function yg(e) {
26720
26837
  let t = {
26721
26838
  li: "li",
26722
26839
  p: "p",
@@ -26769,16 +26886,16 @@ function mg(e) {
26769
26886
  })
26770
26887
  ] });
26771
26888
  }
26772
- function hg(e = {}) {
26889
+ function bg(e = {}) {
26773
26890
  let { wrapper: t } = e.components || {};
26774
26891
  return t ? o(t, {
26775
26892
  ...e,
26776
- children: o(mg, { ...e })
26777
- }) : mg(e);
26893
+ children: o(yg, { ...e })
26894
+ }) : yg(e);
26778
26895
  }
26779
26896
  //#endregion
26780
26897
  //#region src/media/mdx/Textarea/textarea.ru.mdx
26781
- function gg(e) {
26898
+ function xg(e) {
26782
26899
  let t = {
26783
26900
  li: "li",
26784
26901
  p: "p",
@@ -26831,31 +26948,31 @@ function gg(e) {
26831
26948
  })
26832
26949
  ] });
26833
26950
  }
26834
- function _g(e = {}) {
26951
+ function Sg(e = {}) {
26835
26952
  let { wrapper: t } = e.components || {};
26836
26953
  return t ? o(t, {
26837
26954
  ...e,
26838
- children: o(gg, { ...e })
26839
- }) : gg(e);
26955
+ children: o(xg, { ...e })
26956
+ }) : xg(e);
26840
26957
  }
26841
26958
  //#endregion
26842
26959
  //#region src/media/mdx/Textarea/wikiMdxTextarea.ts
26843
- var vg = {
26960
+ var Cg = {
26844
26961
  name: "Textarea",
26845
26962
  descriptions: {
26846
26963
  autosize: {
26847
- en: dg,
26848
- ru: pg
26964
+ en: gg,
26965
+ ru: vg
26849
26966
  },
26850
26967
  textarea: {
26851
- en: hg,
26852
- ru: _g
26968
+ en: bg,
26969
+ ru: Sg
26853
26970
  }
26854
26971
  }
26855
26972
  };
26856
26973
  //#endregion
26857
26974
  //#region src/media/mdx/TextareaAutosize/textarea-autosize.en.mdx
26858
- function yg(e) {
26975
+ function wg(e) {
26859
26976
  let t = {
26860
26977
  li: "li",
26861
26978
  p: "p",
@@ -26912,16 +27029,16 @@ function yg(e) {
26912
27029
  })
26913
27030
  ] });
26914
27031
  }
26915
- function bg(e = {}) {
27032
+ function Tg(e = {}) {
26916
27033
  let { wrapper: t } = e.components || {};
26917
27034
  return t ? o(t, {
26918
27035
  ...e,
26919
- children: o(yg, { ...e })
26920
- }) : yg(e);
27036
+ children: o(wg, { ...e })
27037
+ }) : wg(e);
26921
27038
  }
26922
27039
  //#endregion
26923
27040
  //#region src/media/mdx/TextareaAutosize/textarea-autosize.ru.mdx
26924
- function xg(e) {
27041
+ function Eg(e) {
26925
27042
  let t = {
26926
27043
  li: "li",
26927
27044
  p: "p",
@@ -26978,25 +27095,25 @@ function xg(e) {
26978
27095
  })
26979
27096
  ] });
26980
27097
  }
26981
- function Sg(e = {}) {
27098
+ function Dg(e = {}) {
26982
27099
  let { wrapper: t } = e.components || {};
26983
27100
  return t ? o(t, {
26984
27101
  ...e,
26985
- children: o(xg, { ...e })
26986
- }) : xg(e);
27102
+ children: o(Eg, { ...e })
27103
+ }) : Eg(e);
26987
27104
  }
26988
27105
  //#endregion
26989
27106
  //#region src/media/mdx/TextareaAutosize/wikiMdxTextareaAutosize.ts
26990
- var Cg = {
27107
+ var Og = {
26991
27108
  name: "TextareaAutosize",
26992
27109
  descriptions: { "textarea-autosize": {
26993
- en: bg,
26994
- ru: Sg
27110
+ en: Tg,
27111
+ ru: Dg
26995
27112
  } }
26996
27113
  };
26997
27114
  //#endregion
26998
27115
  //#region src/media/mdx/TextDescription/textDescription.en.mdx
26999
- function wg(e) {
27116
+ function kg(e) {
27000
27117
  let t = {
27001
27118
  code: "code",
27002
27119
  h2: "h2",
@@ -27046,16 +27163,16 @@ function wg(e) {
27046
27163
  ] })
27047
27164
  ] });
27048
27165
  }
27049
- function Tg(e = {}) {
27166
+ function Ag(e = {}) {
27050
27167
  let { wrapper: t } = e.components || {};
27051
27168
  return t ? o(t, {
27052
27169
  ...e,
27053
- children: o(wg, { ...e })
27054
- }) : wg(e);
27170
+ children: o(kg, { ...e })
27171
+ }) : kg(e);
27055
27172
  }
27056
27173
  //#endregion
27057
27174
  //#region src/media/mdx/TextDescription/textDescription.ru.mdx
27058
- function Eg(e) {
27175
+ function jg(e) {
27059
27176
  let t = {
27060
27177
  code: "code",
27061
27178
  h2: "h2",
@@ -27101,25 +27218,25 @@ function Eg(e) {
27101
27218
  ] })
27102
27219
  ] });
27103
27220
  }
27104
- function Dg(e = {}) {
27221
+ function Mg(e = {}) {
27105
27222
  let { wrapper: t } = e.components || {};
27106
27223
  return t ? o(t, {
27107
27224
  ...e,
27108
- children: o(Eg, { ...e })
27109
- }) : Eg(e);
27225
+ children: o(jg, { ...e })
27226
+ }) : jg(e);
27110
27227
  }
27111
27228
  //#endregion
27112
27229
  //#region src/media/mdx/TextDescription/wikiMdxTextDescription.ts
27113
- var Og = {
27230
+ var Ng = {
27114
27231
  name: "TextDescription",
27115
27232
  descriptions: { textDescription: {
27116
- en: Tg,
27117
- ru: Dg
27233
+ en: Ag,
27234
+ ru: Mg
27118
27235
  } }
27119
27236
  };
27120
27237
  //#endregion
27121
27238
  //#region src/media/mdx/TextLabel/textLabel.en.mdx
27122
- function kg(e) {
27239
+ function Pg(e) {
27123
27240
  let t = {
27124
27241
  code: "code",
27125
27242
  h2: "h2",
@@ -27173,16 +27290,16 @@ function kg(e) {
27173
27290
  ] })
27174
27291
  ] });
27175
27292
  }
27176
- function Ag(e = {}) {
27293
+ function Fg(e = {}) {
27177
27294
  let { wrapper: t } = e.components || {};
27178
27295
  return t ? o(t, {
27179
27296
  ...e,
27180
- children: o(kg, { ...e })
27181
- }) : kg(e);
27297
+ children: o(Pg, { ...e })
27298
+ }) : Pg(e);
27182
27299
  }
27183
27300
  //#endregion
27184
27301
  //#region src/media/mdx/TextLabel/textLabel.ru.mdx
27185
- function jg(e) {
27302
+ function Ig(e) {
27186
27303
  let t = {
27187
27304
  code: "code",
27188
27305
  h2: "h2",
@@ -27228,25 +27345,25 @@ function jg(e) {
27228
27345
  ] })
27229
27346
  ] });
27230
27347
  }
27231
- function Mg(e = {}) {
27348
+ function Lg(e = {}) {
27232
27349
  let { wrapper: t } = e.components || {};
27233
27350
  return t ? o(t, {
27234
27351
  ...e,
27235
- children: o(jg, { ...e })
27236
- }) : jg(e);
27352
+ children: o(Ig, { ...e })
27353
+ }) : Ig(e);
27237
27354
  }
27238
27355
  //#endregion
27239
27356
  //#region src/media/mdx/TextLabel/wikiMdxTextLabel.ts
27240
- var Ng = {
27357
+ var Rg = {
27241
27358
  name: "TextLabel",
27242
27359
  descriptions: { textLabel: {
27243
- en: Ag,
27244
- ru: Mg
27360
+ en: Fg,
27361
+ ru: Lg
27245
27362
  } }
27246
27363
  };
27247
27364
  //#endregion
27248
27365
  //#region src/media/mdx/Tooltip/tooltip.en.mdx
27249
- function Pg(e) {
27366
+ function zg(e) {
27250
27367
  let t = {
27251
27368
  li: "li",
27252
27369
  p: "p",
@@ -27297,16 +27414,16 @@ function Pg(e) {
27297
27414
  })
27298
27415
  ] });
27299
27416
  }
27300
- function Fg(e = {}) {
27417
+ function Bg(e = {}) {
27301
27418
  let { wrapper: t } = e.components || {};
27302
27419
  return t ? o(t, {
27303
27420
  ...e,
27304
- children: o(Pg, { ...e })
27305
- }) : Pg(e);
27421
+ children: o(zg, { ...e })
27422
+ }) : zg(e);
27306
27423
  }
27307
27424
  //#endregion
27308
27425
  //#region src/media/mdx/Tooltip/tooltip.ru.mdx
27309
- function Ig(e) {
27426
+ function Vg(e) {
27310
27427
  let t = {
27311
27428
  li: "li",
27312
27429
  p: "p",
@@ -27357,16 +27474,16 @@ function Ig(e) {
27357
27474
  })
27358
27475
  ] });
27359
27476
  }
27360
- function Lg(e = {}) {
27477
+ function Hg(e = {}) {
27361
27478
  let { wrapper: t } = e.components || {};
27362
27479
  return t ? o(t, {
27363
27480
  ...e,
27364
- children: o(Ig, { ...e })
27365
- }) : Ig(e);
27481
+ children: o(Vg, { ...e })
27482
+ }) : Vg(e);
27366
27483
  }
27367
27484
  //#endregion
27368
27485
  //#region src/media/mdx/Tooltip/event.tooltip.en.mdx
27369
- function Rg(e) {
27486
+ function Ug(e) {
27370
27487
  let t = {
27371
27488
  code: "code",
27372
27489
  h3: "h3",
@@ -27397,16 +27514,16 @@ function Rg(e) {
27397
27514
  ] })
27398
27515
  ] });
27399
27516
  }
27400
- function zg(e = {}) {
27517
+ function Wg(e = {}) {
27401
27518
  let { wrapper: t } = e.components || {};
27402
27519
  return t ? o(t, {
27403
27520
  ...e,
27404
- children: o(Rg, { ...e })
27405
- }) : Rg(e);
27521
+ children: o(Ug, { ...e })
27522
+ }) : Ug(e);
27406
27523
  }
27407
27524
  //#endregion
27408
27525
  //#region src/media/mdx/Tooltip/event.tooltip.ru.mdx
27409
- function Bg(e) {
27526
+ function Gg(e) {
27410
27527
  let t = {
27411
27528
  code: "code",
27412
27529
  h3: "h3",
@@ -27437,16 +27554,16 @@ function Bg(e) {
27437
27554
  ] })
27438
27555
  ] });
27439
27556
  }
27440
- function Vg(e = {}) {
27557
+ function Kg(e = {}) {
27441
27558
  let { wrapper: t } = e.components || {};
27442
27559
  return t ? o(t, {
27443
27560
  ...e,
27444
- children: o(Bg, { ...e })
27445
- }) : Bg(e);
27561
+ children: o(Gg, { ...e })
27562
+ }) : Gg(e);
27446
27563
  }
27447
27564
  //#endregion
27448
27565
  //#region src/media/mdx/Tooltip/slot.control.en.mdx
27449
- function Hg(e) {
27566
+ function qg(e) {
27450
27567
  let t = {
27451
27568
  blockquote: "blockquote",
27452
27569
  code: "code",
@@ -27478,16 +27595,16 @@ function Hg(e) {
27478
27595
  ] })
27479
27596
  ] });
27480
27597
  }
27481
- function Ug(e = {}) {
27598
+ function Jg(e = {}) {
27482
27599
  let { wrapper: t } = e.components || {};
27483
27600
  return t ? o(t, {
27484
27601
  ...e,
27485
- children: o(Hg, { ...e })
27486
- }) : Hg(e);
27602
+ children: o(qg, { ...e })
27603
+ }) : qg(e);
27487
27604
  }
27488
27605
  //#endregion
27489
27606
  //#region src/media/mdx/Tooltip/slot.control.ru.mdx
27490
- function Wg(e) {
27607
+ function Yg(e) {
27491
27608
  let t = {
27492
27609
  blockquote: "blockquote",
27493
27610
  code: "code",
@@ -27519,35 +27636,35 @@ function Wg(e) {
27519
27636
  ] })
27520
27637
  ] });
27521
27638
  }
27522
- function Gg(e = {}) {
27639
+ function Xg(e = {}) {
27523
27640
  let { wrapper: t } = e.components || {};
27524
27641
  return t ? o(t, {
27525
27642
  ...e,
27526
- children: o(Wg, { ...e })
27527
- }) : Wg(e);
27643
+ children: o(Yg, { ...e })
27644
+ }) : Yg(e);
27528
27645
  }
27529
27646
  //#endregion
27530
27647
  //#region src/media/mdx/Tooltip/wikiMdxTooltip.ts
27531
- var Kg = {
27648
+ var Zg = {
27532
27649
  name: "Tooltip",
27533
27650
  descriptions: {
27534
27651
  tooltip: {
27535
- en: Fg,
27536
- ru: Lg
27652
+ en: Bg,
27653
+ ru: Hg
27537
27654
  },
27538
27655
  "event.tooltip": {
27539
- en: zg,
27540
- ru: Vg
27656
+ en: Wg,
27657
+ ru: Kg
27541
27658
  },
27542
27659
  "slot.control": {
27543
- en: Ug,
27544
- ru: Gg
27660
+ en: Jg,
27661
+ ru: Xg
27545
27662
  }
27546
27663
  }
27547
27664
  };
27548
27665
  //#endregion
27549
27666
  //#region src/media/mdx/Window/axis.en.mdx
27550
- function qg(e) {
27667
+ function Qg(e) {
27551
27668
  let t = {
27552
27669
  blockquote: "blockquote",
27553
27670
  code: "code",
@@ -27615,16 +27732,16 @@ function qg(e) {
27615
27732
  ] })
27616
27733
  ] });
27617
27734
  }
27618
- function Jg(e = {}) {
27735
+ function $g(e = {}) {
27619
27736
  let { wrapper: t } = e.components || {};
27620
27737
  return t ? o(t, {
27621
27738
  ...e,
27622
- children: o(qg, { ...e })
27623
- }) : qg(e);
27739
+ children: o(Qg, { ...e })
27740
+ }) : Qg(e);
27624
27741
  }
27625
27742
  //#endregion
27626
27743
  //#region src/media/mdx/Window/axis.ru.mdx
27627
- function Yg(e) {
27744
+ function e_(e) {
27628
27745
  let t = {
27629
27746
  blockquote: "blockquote",
27630
27747
  code: "code",
@@ -27692,16 +27809,16 @@ function Yg(e) {
27692
27809
  ] })
27693
27810
  ] });
27694
27811
  }
27695
- function Xg(e = {}) {
27812
+ function t_(e = {}) {
27696
27813
  let { wrapper: t } = e.components || {};
27697
27814
  return t ? o(t, {
27698
27815
  ...e,
27699
- children: o(Yg, { ...e })
27700
- }) : Yg(e);
27816
+ children: o(e_, { ...e })
27817
+ }) : e_(e);
27701
27818
  }
27702
27819
  //#endregion
27703
27820
  //#region src/media/mdx/Window/classes.en.mdx
27704
- function Zg(e) {
27821
+ function n_(e) {
27705
27822
  let t = {
27706
27823
  code: "code",
27707
27824
  h2: "h2",
@@ -27742,16 +27859,16 @@ function Zg(e) {
27742
27859
  ] })
27743
27860
  ] });
27744
27861
  }
27745
- function Qg(e = {}) {
27862
+ function r_(e = {}) {
27746
27863
  let { wrapper: t } = e.components || {};
27747
27864
  return t ? o(t, {
27748
27865
  ...e,
27749
- children: o(Zg, { ...e })
27750
- }) : Zg(e);
27866
+ children: o(n_, { ...e })
27867
+ }) : n_(e);
27751
27868
  }
27752
27869
  //#endregion
27753
27870
  //#region src/media/mdx/Window/classes.ru.mdx
27754
- function $g(e) {
27871
+ function i_(e) {
27755
27872
  let t = {
27756
27873
  code: "code",
27757
27874
  h2: "h2",
@@ -27792,16 +27909,16 @@ function $g(e) {
27792
27909
  ] })
27793
27910
  ] });
27794
27911
  }
27795
- function e_(e = {}) {
27912
+ function a_(e = {}) {
27796
27913
  let { wrapper: t } = e.components || {};
27797
27914
  return t ? o(t, {
27798
27915
  ...e,
27799
- children: o($g, { ...e })
27800
- }) : $g(e);
27916
+ children: o(i_, { ...e })
27917
+ }) : i_(e);
27801
27918
  }
27802
27919
  //#endregion
27803
27920
  //#region src/media/mdx/Window/event.window.en.mdx
27804
- function t_(e) {
27921
+ function o_(e) {
27805
27922
  let t = {
27806
27923
  code: "code",
27807
27924
  h3: "h3",
@@ -27851,16 +27968,16 @@ function t_(e) {
27851
27968
  })
27852
27969
  ] });
27853
27970
  }
27854
- function n_(e = {}) {
27971
+ function s_(e = {}) {
27855
27972
  let { wrapper: t } = e.components || {};
27856
27973
  return t ? o(t, {
27857
27974
  ...e,
27858
- children: o(t_, { ...e })
27859
- }) : t_(e);
27975
+ children: o(o_, { ...e })
27976
+ }) : o_(e);
27860
27977
  }
27861
27978
  //#endregion
27862
27979
  //#region src/media/mdx/Window/event.window.ru.mdx
27863
- function r_(e) {
27980
+ function c_(e) {
27864
27981
  let t = {
27865
27982
  code: "code",
27866
27983
  h3: "h3",
@@ -27910,16 +28027,16 @@ function r_(e) {
27910
28027
  })
27911
28028
  ] });
27912
28029
  }
27913
- function i_(e = {}) {
28030
+ function l_(e = {}) {
27914
28031
  let { wrapper: t } = e.components || {};
27915
28032
  return t ? o(t, {
27916
28033
  ...e,
27917
- children: o(r_, { ...e })
27918
- }) : r_(e);
28034
+ children: o(c_, { ...e })
28035
+ }) : c_(e);
27919
28036
  }
27920
28037
  //#endregion
27921
28038
  //#region src/media/mdx/Window/expose.en.mdx
27922
- function a_(e) {
28039
+ function u_(e) {
27923
28040
  let t = {
27924
28041
  blockquote: "blockquote",
27925
28042
  code: "code",
@@ -27977,16 +28094,16 @@ function a_(e) {
27977
28094
  ] })
27978
28095
  ] });
27979
28096
  }
27980
- function o_(e = {}) {
28097
+ function d_(e = {}) {
27981
28098
  let { wrapper: t } = e.components || {};
27982
28099
  return t ? o(t, {
27983
28100
  ...e,
27984
- children: o(a_, { ...e })
27985
- }) : a_(e);
28101
+ children: o(u_, { ...e })
28102
+ }) : u_(e);
27986
28103
  }
27987
28104
  //#endregion
27988
28105
  //#region src/media/mdx/Window/expose.ru.mdx
27989
- function s_(e) {
28106
+ function f_(e) {
27990
28107
  let t = {
27991
28108
  blockquote: "blockquote",
27992
28109
  code: "code",
@@ -28044,16 +28161,16 @@ function s_(e) {
28044
28161
  ] })
28045
28162
  ] });
28046
28163
  }
28047
- function c_(e = {}) {
28164
+ function p_(e = {}) {
28048
28165
  let { wrapper: t } = e.components || {};
28049
28166
  return t ? o(t, {
28050
28167
  ...e,
28051
- children: o(s_, { ...e })
28052
- }) : s_(e);
28168
+ children: o(f_, { ...e })
28169
+ }) : f_(e);
28053
28170
  }
28054
28171
  //#endregion
28055
28172
  //#region src/media/mdx/Window/hooks.en.mdx
28056
- function l_(e) {
28173
+ function m_(e) {
28057
28174
  let t = {
28058
28175
  code: "code",
28059
28176
  h2: "h2",
@@ -28124,16 +28241,16 @@ function l_(e) {
28124
28241
  ] })
28125
28242
  ] });
28126
28243
  }
28127
- function u_(e = {}) {
28244
+ function h_(e = {}) {
28128
28245
  let { wrapper: t } = e.components || {};
28129
28246
  return t ? o(t, {
28130
28247
  ...e,
28131
- children: o(l_, { ...e })
28132
- }) : l_(e);
28248
+ children: o(m_, { ...e })
28249
+ }) : m_(e);
28133
28250
  }
28134
28251
  //#endregion
28135
28252
  //#region src/media/mdx/Window/hooks.ru.mdx
28136
- function d_(e) {
28253
+ function g_(e) {
28137
28254
  let t = {
28138
28255
  code: "code",
28139
28256
  h2: "h2",
@@ -28204,16 +28321,16 @@ function d_(e) {
28204
28321
  ] })
28205
28322
  ] });
28206
28323
  }
28207
- function f_(e = {}) {
28324
+ function __(e = {}) {
28208
28325
  let { wrapper: t } = e.components || {};
28209
28326
  return t ? o(t, {
28210
28327
  ...e,
28211
- children: o(d_, { ...e })
28212
- }) : d_(e);
28328
+ children: o(g_, { ...e })
28329
+ }) : g_(e);
28213
28330
  }
28214
28331
  //#endregion
28215
28332
  //#region src/media/mdx/Window/slots.en.mdx
28216
- function p_(e) {
28333
+ function v_(e) {
28217
28334
  let t = {
28218
28335
  blockquote: "blockquote",
28219
28336
  code: "code",
@@ -28305,16 +28422,16 @@ function p_(e) {
28305
28422
  ] })
28306
28423
  ] });
28307
28424
  }
28308
- function m_(e = {}) {
28425
+ function y_(e = {}) {
28309
28426
  let { wrapper: t } = e.components || {};
28310
28427
  return t ? o(t, {
28311
28428
  ...e,
28312
- children: o(p_, { ...e })
28313
- }) : p_(e);
28429
+ children: o(v_, { ...e })
28430
+ }) : v_(e);
28314
28431
  }
28315
28432
  //#endregion
28316
28433
  //#region src/media/mdx/Window/slots.ru.mdx
28317
- function h_(e) {
28434
+ function b_(e) {
28318
28435
  let t = {
28319
28436
  blockquote: "blockquote",
28320
28437
  code: "code",
@@ -28406,16 +28523,16 @@ function h_(e) {
28406
28523
  ] })
28407
28524
  ] });
28408
28525
  }
28409
- function g_(e = {}) {
28526
+ function x_(e = {}) {
28410
28527
  let { wrapper: t } = e.components || {};
28411
28528
  return t ? o(t, {
28412
28529
  ...e,
28413
- children: o(h_, { ...e })
28414
- }) : h_(e);
28530
+ children: o(b_, { ...e })
28531
+ }) : b_(e);
28415
28532
  }
28416
28533
  //#endregion
28417
28534
  //#region src/media/mdx/Window/staticMode.en.mdx
28418
- function __(e) {
28535
+ function S_(e) {
28419
28536
  let t = {
28420
28537
  code: "code",
28421
28538
  h2: "h2",
@@ -28456,16 +28573,16 @@ function __(e) {
28456
28573
  o(t.p, { children: "Static mode is especially useful for embedding window content directly into the interface without modal behavior." })
28457
28574
  ] });
28458
28575
  }
28459
- function v_(e = {}) {
28576
+ function C_(e = {}) {
28460
28577
  let { wrapper: t } = e.components || {};
28461
28578
  return t ? o(t, {
28462
28579
  ...e,
28463
- children: o(__, { ...e })
28464
- }) : __(e);
28580
+ children: o(S_, { ...e })
28581
+ }) : S_(e);
28465
28582
  }
28466
28583
  //#endregion
28467
28584
  //#region src/media/mdx/Window/staticMode.ru.mdx
28468
- function y_(e) {
28585
+ function w_(e) {
28469
28586
  let t = {
28470
28587
  code: "code",
28471
28588
  h2: "h2",
@@ -28506,16 +28623,16 @@ function y_(e) {
28506
28623
  o(t.p, { children: "Статический режим особенно полезен для встраивания содержимого окна непосредственно в интерфейс без модального поведения." })
28507
28624
  ] });
28508
28625
  }
28509
- function b_(e = {}) {
28626
+ function T_(e = {}) {
28510
28627
  let { wrapper: t } = e.components || {};
28511
28628
  return t ? o(t, {
28512
28629
  ...e,
28513
- children: o(y_, { ...e })
28514
- }) : y_(e);
28630
+ children: o(w_, { ...e })
28631
+ }) : w_(e);
28515
28632
  }
28516
28633
  //#endregion
28517
28634
  //#region src/media/mdx/Window/v-model.en.mdx
28518
- function x_(e) {
28635
+ function E_(e) {
28519
28636
  let t = {
28520
28637
  code: "code",
28521
28638
  h2: "h2",
@@ -28548,16 +28665,16 @@ function x_(e) {
28548
28665
  })
28549
28666
  ] });
28550
28667
  }
28551
- function S_(e = {}) {
28668
+ function D_(e = {}) {
28552
28669
  let { wrapper: t } = e.components || {};
28553
28670
  return t ? o(t, {
28554
28671
  ...e,
28555
- children: o(x_, { ...e })
28556
- }) : x_(e);
28672
+ children: o(E_, { ...e })
28673
+ }) : E_(e);
28557
28674
  }
28558
28675
  //#endregion
28559
28676
  //#region src/media/mdx/Window/v-model.ru.mdx
28560
- function C_(e) {
28677
+ function O_(e) {
28561
28678
  let t = {
28562
28679
  code: "code",
28563
28680
  h2: "h2",
@@ -28590,16 +28707,16 @@ function C_(e) {
28590
28707
  })
28591
28708
  ] });
28592
28709
  }
28593
- function w_(e = {}) {
28710
+ function k_(e = {}) {
28594
28711
  let { wrapper: t } = e.components || {};
28595
28712
  return t ? o(t, {
28596
28713
  ...e,
28597
- children: o(C_, { ...e })
28598
- }) : C_(e);
28714
+ children: o(O_, { ...e })
28715
+ }) : O_(e);
28599
28716
  }
28600
28717
  //#endregion
28601
28718
  //#region src/media/mdx/Window/window.en.mdx
28602
- function T_(e) {
28719
+ function A_(e) {
28603
28720
  let t = {
28604
28721
  li: "li",
28605
28722
  p: "p",
@@ -28654,16 +28771,16 @@ function T_(e) {
28654
28771
  })
28655
28772
  ] });
28656
28773
  }
28657
- function E_(e = {}) {
28774
+ function j_(e = {}) {
28658
28775
  let { wrapper: t } = e.components || {};
28659
28776
  return t ? o(t, {
28660
28777
  ...e,
28661
- children: o(T_, { ...e })
28662
- }) : T_(e);
28778
+ children: o(A_, { ...e })
28779
+ }) : A_(e);
28663
28780
  }
28664
28781
  //#endregion
28665
28782
  //#region src/media/mdx/Window/window.ru.mdx
28666
- function D_(e) {
28783
+ function M_(e) {
28667
28784
  let t = {
28668
28785
  li: "li",
28669
28786
  p: "p",
@@ -28718,16 +28835,16 @@ function D_(e) {
28718
28835
  })
28719
28836
  ] });
28720
28837
  }
28721
- function O_(e = {}) {
28838
+ function N_(e = {}) {
28722
28839
  let { wrapper: t } = e.components || {};
28723
28840
  return t ? o(t, {
28724
28841
  ...e,
28725
- children: o(D_, { ...e })
28726
- }) : D_(e);
28842
+ children: o(M_, { ...e })
28843
+ }) : M_(e);
28727
28844
  }
28728
28845
  //#endregion
28729
28846
  //#region src/media/mdx/wikiMdx.ts
28730
- var k_ = [
28847
+ var P_ = [
28731
28848
  ke,
28732
28849
  Xe,
28733
28850
  Vt,
@@ -28772,74 +28889,75 @@ var k_ = [
28772
28889
  hu,
28773
28890
  od,
28774
28891
  Fd,
28775
- Wd,
28776
- gf,
28777
- $f,
28892
+ Bd,
28893
+ Yd,
28894
+ xf,
28778
28895
  ip,
28779
28896
  lp,
28780
- Ap,
28897
+ mp,
28781
28898
  Fp,
28782
28899
  Bp,
28783
- $p,
28900
+ Gp,
28784
28901
  im,
28785
28902
  lm,
28786
28903
  mm,
28787
- Dm,
28788
- mh,
28789
- Fh,
28904
+ ym,
28905
+ Mm,
28906
+ yh,
28790
28907
  Bh,
28791
28908
  Gh,
28792
- eg,
28793
- lg,
28794
- vg,
28909
+ Xh,
28910
+ ag,
28911
+ mg,
28795
28912
  Cg,
28796
28913
  Og,
28797
28914
  Ng,
28798
- Kg,
28915
+ Rg,
28916
+ Zg,
28799
28917
  {
28800
28918
  name: "Window",
28801
28919
  descriptions: {
28802
28920
  axis: {
28803
- en: Jg,
28804
- ru: Xg
28921
+ en: $g,
28922
+ ru: t_
28805
28923
  },
28806
28924
  classes: {
28807
- en: Qg,
28808
- ru: e_
28925
+ en: r_,
28926
+ ru: a_
28809
28927
  },
28810
28928
  "event.window": {
28811
- en: n_,
28812
- ru: i_
28929
+ en: s_,
28930
+ ru: l_
28813
28931
  },
28814
28932
  expose: {
28815
- en: o_,
28816
- ru: c_
28933
+ en: d_,
28934
+ ru: p_
28817
28935
  },
28818
28936
  hooks: {
28819
- en: u_,
28820
- ru: f_
28937
+ en: h_,
28938
+ ru: __
28821
28939
  },
28822
28940
  slots: {
28823
- en: m_,
28824
- ru: g_
28941
+ en: y_,
28942
+ ru: x_
28825
28943
  },
28826
28944
  staticMode: {
28827
- en: v_,
28828
- ru: b_
28945
+ en: C_,
28946
+ ru: T_
28829
28947
  },
28830
28948
  "v-model": {
28831
- en: S_,
28832
- ru: w_
28949
+ en: D_,
28950
+ ru: k_
28833
28951
  },
28834
28952
  window: {
28835
- en: E_,
28836
- ru: O_
28953
+ en: j_,
28954
+ ru: N_
28837
28955
  }
28838
28956
  }
28839
28957
  }
28840
- ], A_ = class {
28958
+ ], F_ = class {
28841
28959
  constructor(n) {
28842
- e(this, "item", void 0), e(this, "mdx", void 0), this.item = t.find((e) => e.name === n), this.mdx = k_.find((e) => e.name === n);
28960
+ e(this, "item", void 0), e(this, "mdx", void 0), this.item = t.find((e) => e.name === n), this.mdx = P_.find((e) => e.name === n);
28843
28961
  }
28844
28962
  getItem() {
28845
28963
  return this.item;
@@ -28849,6 +28967,6 @@ var k_ = [
28849
28967
  let r = (t = this.mdx) == null || (t = t.descriptions) == null ? void 0 : t[e];
28850
28968
  return ee(r ? te(r) ? r[n.getLanguage()] : r : "");
28851
28969
  }
28852
- }, j_ = ({ componentName: e, type: t }) => new A_(e).getDescriptionByType(t);
28970
+ }, I_ = ({ componentName: e, type: t }) => new F_(e).getDescriptionByType(t);
28853
28971
  //#endregion
28854
- export { j_ as StorybookDescriptions, ae as StorybookMain };
28972
+ export { I_ as StorybookDescriptions, ae as StorybookMain };