@soroka282/rm.ui-kit 0.0.27 → 0.0.29

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.
Files changed (70) hide show
  1. package/dist/{DeleteDocumentModal-YP0ZdvGL.js → DeleteDocumentModal-CyUS_8az.js} +1 -1
  2. package/dist/{List-DafsfNml.js → List-DFXtkVL-.js} +13 -13
  3. package/dist/{UIBlockViewDetailImageListModalType1-Bd6_p6eY.js → UIBlockViewDetailImageListModalType1-DFTiMVfY.js} +1 -1
  4. package/dist/{index-CjHbBY45.js → index-6WZGVlrh.js} +5666 -5234
  5. package/dist/rm.ui-kit.es.js +78 -77
  6. package/dist/rm.ui-kit.umd.js +22 -22
  7. package/dist/src/UI-kit/components/UI/info/UIInfo.vue.d.ts +2 -0
  8. package/dist/src/UI-kit/components/UI/inputs/BaseMaskedInput.vue.d.ts +2 -0
  9. package/dist/src/UI-kit/components/UI/inputs/LicensePlateInput.vue.d.ts +8 -0
  10. package/dist/src/UI-kit/components/UI/inputs/UIInput.vue.d.ts +5 -1
  11. package/dist/src/UI-kit/components/icons/auth/apple.vue.d.ts +2 -0
  12. package/dist/src/UI-kit/components/icons/auth/edit.vue.d.ts +2 -0
  13. package/dist/src/UI-kit/components/icons/auth/google.vue.d.ts +2 -0
  14. package/dist/src/UI-kit/components/icons/auth/tg.vue.d.ts +2 -0
  15. package/dist/src/UI-kit/components/icons/auth/user.vue.d.ts +2 -0
  16. package/dist/src/UI-kit/components/icons/index.d.ts +5 -0
  17. package/dist/src/UI-kit/constants/ui-color.constant.d.ts +2 -0
  18. package/dist/src/UI-kit/constants/ui-icons.constant.d.ts +19 -15
  19. package/dist/src/UI-kit/types/UI/ui-input.type.d.ts +1 -0
  20. package/dist/src/configs/i18n.config.d.ts +25 -0
  21. package/dist/src/index.d.ts +1 -0
  22. package/dist/src/modules/auth/AuthModule.vue.d.ts +2 -0
  23. package/dist/src/modules/auth/components/AuthCheckCodeForm.vue.d.ts +6 -0
  24. package/dist/src/modules/auth/components/AuthForm.vue.d.ts +9 -0
  25. package/dist/src/modules/auth/composables/index.d.ts +1 -0
  26. package/dist/src/modules/auth/composables/useEmailFieldsScheme.d.ts +1 -0
  27. package/dist/src/modules/auth/constants/languages/ru.d.ts +25 -0
  28. package/dist/src/modules/auth/index.d.ts +5 -0
  29. package/dist/src/modules/auth/store/auth.store.d.ts +284 -0
  30. package/dist/src/modules/auth/store/index.d.ts +1 -0
  31. package/dist/src/modules/auth/type/auth.type.d.ts +28 -0
  32. package/dist/src/modules/auth/type/index.d.ts +1 -0
  33. package/package.json +1 -1
  34. package/src/App.vue +2 -0
  35. package/src/UI-blocks/components/BlockCard/UIBlockCardType1.stories.ts +3 -2
  36. package/src/UI-blocks/components/BlockSavedImage/Type1/UIBlockSaveImageType1.stories.ts +3 -2
  37. package/src/UI-kit/assets/scss/common/_variables.scss +1 -0
  38. package/src/UI-kit/assets/scss/index.scss +4 -0
  39. package/src/UI-kit/components/UI/chip/UIChip.vue +1 -1
  40. package/src/UI-kit/components/UI/info/UIInfo.vue +20 -10
  41. package/src/UI-kit/components/UI/inputs/BaseMaskedInput.vue +3 -1
  42. package/src/UI-kit/components/UI/inputs/UIInput.vue +19 -2
  43. package/src/UI-kit/components/UI/select/components/List.vue +1 -1
  44. package/src/UI-kit/components/UI/svg-icon/UISvgIcon.stories.ts +2 -1
  45. package/src/UI-kit/components/common/CloseBtn.vue +1 -1
  46. package/src/UI-kit/components/icons/auth/apple.vue +8 -0
  47. package/src/UI-kit/components/icons/auth/edit.vue +8 -0
  48. package/src/UI-kit/components/icons/auth/google.vue +23 -0
  49. package/src/UI-kit/components/icons/auth/tg.vue +12 -0
  50. package/src/UI-kit/components/icons/auth/user.vue +8 -0
  51. package/src/UI-kit/components/icons/index.ts +5 -0
  52. package/src/UI-kit/constants/ui-color.constant.ts +2 -0
  53. package/src/UI-kit/constants/ui-icons.constant.ts +24 -15
  54. package/src/UI-kit/types/UI/ui-input.type.ts +1 -0
  55. package/src/configs/i18n.config.ts +2 -0
  56. package/src/index.ts +2 -0
  57. package/src/modules/auth/AuthModule.vue +29 -0
  58. package/src/modules/auth/components/AuthCheckCodeForm.vue +203 -0
  59. package/src/modules/auth/components/AuthForm.vue +160 -0
  60. package/src/modules/auth/composables/index.ts +1 -0
  61. package/src/modules/auth/composables/useEmailFieldsScheme.ts +3 -0
  62. package/src/modules/auth/constants/languages/ru.ts +25 -0
  63. package/src/modules/auth/index.ts +6 -0
  64. package/src/modules/auth/store/auth.store.ts +230 -0
  65. package/src/modules/auth/store/index.ts +1 -0
  66. package/src/modules/auth/type/auth.type.ts +37 -0
  67. package/src/modules/auth/type/index.ts +1 -0
  68. package/src/modules/documents/ModuleDocuments.vue +2 -1
  69. package/src/modules/documents/ModuleDocumentsList.vue +6 -2
  70. package/src/modules/documents/components/DocumentCard.vue +10 -9
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as b, createElementBlock as x, openBlock as C, createElementVNode as I, createVNode as a, unref as e, withCtx as m, createTextVNode as i, toDisplayString as u } from "vue";
2
- import { c as M, d as B, e as U, f as p, g as t, h as n, b as k } from "./index-CjHbBY45.js";
2
+ import { c as M, d as B, e as U, f as p, g as t, h as n, b as k } from "./index-6WZGVlrh.js";
3
3
  import "pinia";
4
4
  const H = { class: "delete-document-modal" }, N = ["innerHTML"], q = /* @__PURE__ */ b({
5
5
  __name: "DeleteDocumentModal",
@@ -1,12 +1,12 @@
1
- import { defineComponent as h, ref as y, computed as v, createElementBlock as s, openBlock as l, createCommentVNode as n, createVNode as k, Fragment as C, renderList as I, normalizeClass as S, createTextVNode as V, createBlock as g, toDisplayString as d, unref as _ } from "vue";
2
- import { u as b, U as w, _ as L, a as U, b as x } from "./index-CjHbBY45.js";
3
- const B = { class: "select-list" }, M = {
1
+ import { defineComponent as h, ref as y, computed as v, createElementBlock as s, openBlock as l, createCommentVNode as n, createVNode as k, Fragment as I, renderList as V, normalizeClass as g, createTextVNode as _, createBlock as C, toDisplayString as d, unref as S } from "vue";
2
+ import { u as b, U as w, _ as L, a as x, b as B } from "./index-6WZGVlrh.js";
3
+ const U = { class: "select-list" }, M = {
4
4
  key: 0,
5
5
  class: "search-wrapper"
6
6
  }, N = ["onClick"], A = {
7
7
  key: 2,
8
8
  class: "empty-message"
9
- }, E = /* @__PURE__ */ h({
9
+ }, $ = /* @__PURE__ */ h({
10
10
  __name: "List",
11
11
  props: {
12
12
  showSearchInput: { type: Boolean, default: !1 },
@@ -24,7 +24,7 @@ const B = { class: "select-list" }, M = {
24
24
  }), f = (o) => {
25
25
  u("select", o), u("close");
26
26
  };
27
- return (o, c) => (l(), s("div", B, [
27
+ return (o, c) => (l(), s("div", U, [
28
28
  e.showSearchInput ? (l(), s("div", M, [
29
29
  k(w, {
30
30
  modelValue: a.value,
@@ -38,22 +38,22 @@ const B = { class: "select-list" }, M = {
38
38
  ref: p,
39
39
  class: "options-list"
40
40
  }, [
41
- (l(!0), s(C, null, I(r.value, (t) => (l(), s("li", {
41
+ (l(!0), s(I, null, V(r.value, (t) => (l(), s("li", {
42
42
  key: t.value,
43
- class: S(["option-item", { "--selected": e.selectedValue === t.label }]),
44
- onClick: ($) => f(t)
43
+ class: g(["option-item", { "--selected": e.selectedValue === t.label }]),
44
+ onClick: (q) => f(t)
45
45
  }, [
46
- V(d(t.label) + " ", 1),
47
- e.selectedValue === t.label ? (l(), g(L, {
46
+ _(d(t.label) + " ", 1),
47
+ e.selectedValue === t.label ? (l(), C(L, {
48
48
  key: 0,
49
- name: _(U).SUCCESS
49
+ name: S(x).Success
50
50
  }, null, 8, ["name"])) : n("", !0)
51
51
  ], 10, N))), 128))
52
52
  ], 512)) : n("", !0),
53
53
  e.emptyMessage && !r.value.length ? (l(), s("div", A, d(e.emptyMessage), 1)) : n("", !0)
54
54
  ]));
55
55
  }
56
- }), D = /* @__PURE__ */ x(E, [["__scopeId", "data-v-eca388ac"]]);
56
+ }), E = /* @__PURE__ */ B($, [["__scopeId", "data-v-41a46d85"]]);
57
57
  export {
58
- D as default
58
+ E as default
59
59
  };
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as s, createElementBlock as t, openBlock as i, createVNode as o, withCtx as l, createElementVNode as d } from "vue";
2
- import { i as c, b as n } from "./index-CjHbBY45.js";
2
+ import { i as c, b as n } from "./index-6WZGVlrh.js";
3
3
  const m = { class: "saved-image-document-modal" }, r = { class: "saved-image-document-modal__container" }, _ = ["src"], g = ["src"], h = /* @__PURE__ */ s({
4
4
  __name: "UIBlockViewDetailImageListModalType1",
5
5
  props: {