prlg-ui 1.8.316 → 1.8.317
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/prlg-ui.cjs.js +1 -1
- package/dist/prlg-ui.css +1 -1
- package/dist/prlg-ui.es.js +4 -4
- package/dist/scss/animations.scss +32 -0
- package/dist/scss/global.scss +32 -0
- package/dist/scss/vars.scss +12 -0
- package/package.json +1 -1
package/dist/prlg-ui.es.js
CHANGED
|
@@ -1096,7 +1096,7 @@ const rl = { class: "sleed-deal" }, il = ["onClick"], ul = { class: "sleed-deal-
|
|
|
1096
1096
|
w.error && w.errorText ? (d(), m("small", na, H(w.errorText), 1)) : P("", !0)
|
|
1097
1097
|
], 2));
|
|
1098
1098
|
}
|
|
1099
|
-
}), ra = /* @__PURE__ */ re(sa, [["__scopeId", "data-v-
|
|
1099
|
+
}), ra = /* @__PURE__ */ re(sa, [["__scopeId", "data-v-a265108f"]]), ia = {
|
|
1100
1100
|
key: 0,
|
|
1101
1101
|
class: "paginator"
|
|
1102
1102
|
}, ua = ["disabled"], da = { class: "paginator__pages" }, ca = ["onClick"], va = ["disabled"], fa = {
|
|
@@ -2113,7 +2113,7 @@ const rl = { class: "sleed-deal" }, il = ["onClick"], ul = { class: "sleed-deal-
|
|
|
2113
2113
|
C.error && C.errorText ? (d(), m("div", to, H(C.errorText), 1)) : P("", !0)
|
|
2114
2114
|
], 2));
|
|
2115
2115
|
}
|
|
2116
|
-
}), qs = /* @__PURE__ */ re(lo, [["__scopeId", "data-v-
|
|
2116
|
+
}), qs = /* @__PURE__ */ re(lo, [["__scopeId", "data-v-2043281f"]]), ao = ["for"], oo = { key: 0 }, no = { class: "input__wrapper" }, so = ["id", "placeholder", "name", "disabled", "type", "required", "readonly", "maxlength"], ro = { class: "input__actions" }, io = {
|
|
2117
2117
|
key: 1,
|
|
2118
2118
|
class: "input__count-char"
|
|
2119
2119
|
}, uo = {
|
|
@@ -5220,7 +5220,7 @@ const lr = {
|
|
|
5220
5220
|
}, 8, ["show"])
|
|
5221
5221
|
], 2));
|
|
5222
5222
|
}
|
|
5223
|
-
}), ct = /* @__PURE__ */ re(vs, [["__scopeId", "data-v-
|
|
5223
|
+
}), ct = /* @__PURE__ */ re(vs, [["__scopeId", "data-v-95a9b2af"]]), fs = { class: "shedule-time-pick" }, ms = { class: "shedule-time-pick__inputs" }, ps = {
|
|
5224
5224
|
key: 0,
|
|
5225
5225
|
class: "shedule-time-pick__error"
|
|
5226
5226
|
}, gs = /* @__PURE__ */ K({
|
|
@@ -5494,7 +5494,7 @@ const lr = {
|
|
|
5494
5494
|
c.error && c.errorText ? (d(), m("div", Vs, H(c.errorText), 1)) : P("", !0)
|
|
5495
5495
|
], 2));
|
|
5496
5496
|
}
|
|
5497
|
-
}), Vr = /* @__PURE__ */ re(Is, [["__scopeId", "data-v-
|
|
5497
|
+
}), Vr = /* @__PURE__ */ re(Is, [["__scopeId", "data-v-babac8de"]]);
|
|
5498
5498
|
export {
|
|
5499
5499
|
mr as Accordion,
|
|
5500
5500
|
pr as AccordionContent,
|
|
@@ -147,3 +147,35 @@
|
|
|
147
147
|
transform: translateY(200%);
|
|
148
148
|
}
|
|
149
149
|
}
|
|
150
|
+
|
|
151
|
+
//Удалить после перехода на reka-ui
|
|
152
|
+
.slide-fade-smooth-enter-active,
|
|
153
|
+
.slide-fade-smooth-leave-active {
|
|
154
|
+
transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.slide-fade-smooth-enter-from {
|
|
158
|
+
transform: translateX(-30px);
|
|
159
|
+
opacity: 0;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.slide-fade-smooth-leave-to {
|
|
163
|
+
transform: translateX(30px);
|
|
164
|
+
opacity: 0;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
// VERTICAL SLIDE FADE
|
|
168
|
+
.slide-fade-vertical-enter-active,
|
|
169
|
+
.slide-fade-vertical-leave-active {
|
|
170
|
+
transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.slide-fade-vertical-enter-from {
|
|
174
|
+
transform: translateY(-20px);
|
|
175
|
+
opacity: 0;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.slide-fade-vertical-leave-to {
|
|
179
|
+
transform: translateY(20px);
|
|
180
|
+
opacity: 0;
|
|
181
|
+
}
|
package/dist/scss/global.scss
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@use "./mixins.scss" as *;
|
|
2
|
+
|
|
1
3
|
.overlay {
|
|
2
4
|
position: fixed;
|
|
3
5
|
top: 0;
|
|
@@ -19,3 +21,33 @@
|
|
|
19
21
|
animation: fadeOut var(--animation-duration) ease-in-out;
|
|
20
22
|
}
|
|
21
23
|
}
|
|
24
|
+
|
|
25
|
+
.container {
|
|
26
|
+
width: 100%;
|
|
27
|
+
margin: 0 auto;
|
|
28
|
+
padding: 0 10px;
|
|
29
|
+
max-width: 768px; // Базовая ширина для мобильных
|
|
30
|
+
|
|
31
|
+
@include respond(lg) {
|
|
32
|
+
max-width: 991px;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
@include respond(xl) {
|
|
36
|
+
max-width: 1200px;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
@include respond(xxl) {
|
|
40
|
+
max-width: 1400px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@include respond(xxxl) {
|
|
44
|
+
max-width: 1600px;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.page-title {
|
|
49
|
+
font-weight: 600;
|
|
50
|
+
font-size: 24px;
|
|
51
|
+
line-height: 120%;
|
|
52
|
+
color: var(--theme-neutral-text-title);
|
|
53
|
+
}
|
package/dist/scss/vars.scss
CHANGED
|
@@ -17,3 +17,15 @@
|
|
|
17
17
|
--font-size: 16px;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
+
|
|
21
|
+
//Удалить после перехода на reka-ui
|
|
22
|
+
:root {
|
|
23
|
+
--modal-z-index: 1000;
|
|
24
|
+
--drawer-z-index: 1000;
|
|
25
|
+
--confirm-z-index: 1008;
|
|
26
|
+
--toast-z-index: 1009;
|
|
27
|
+
|
|
28
|
+
//BOX-SHADOW
|
|
29
|
+
--dropdown-shadow: -1px 1px 10px 0 #8d8f9340;
|
|
30
|
+
--popover-shadow: 0 12px 25px 0 #0000001a, 0 0 8px 0 #0000001a;
|
|
31
|
+
}
|