@arthurzakharov/ui-kit 2.9.0 → 2.10.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/assets/timetable-C4OGIa6M.css +1 -0
- package/dist/components/timetable/index.d.ts +1 -0
- package/dist/components/timetable/index.js +4 -0
- package/dist/components/timetable/timetable.component.d.ts +6 -0
- package/dist/components/timetable/timetable.component.js +16 -0
- package/dist/main.d.ts +1 -0
- package/dist/main.js +23 -21
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._Timetable_1y4a7_1{display:flex;flex-direction:column;gap:var(--rm-ui-padding-xxs);padding:var(--rm-ui-padding-sm) var(--rm-ui-padding-md)}._Title_1y4a7_8{margin:0;font-weight:var(--rm-ui-font-weight-medium);font-size:var(--rm-ui-font-size-body-small);line-height:var(--rm-ui-line-height-body-small);color:var(--rm-ui-color-text-primary)}._Line_1y4a7_16{margin:0;font-weight:var(--rm-ui-font-weight-regular);font-size:var(--rm-ui-font-size-body-small);line-height:var(--rm-ui-line-height-body-small);color:var(--rm-ui-color-text-secondary)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Timetable, type TimetableProps } from './timetable.component';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsxs as d, jsx as s } from "react/jsx-runtime";
|
|
2
|
+
import { baseProps as l, clsx as o } from "../../utils/functions/functions.util.js";
|
|
3
|
+
import '../../assets/timetable-C4OGIa6M.css';const r = "_Timetable_1y4a7_1", T = "_Title_1y4a7_8", _ = "_Line_1y4a7_16", e = {
|
|
4
|
+
Timetable: r,
|
|
5
|
+
Title: T,
|
|
6
|
+
Line: _
|
|
7
|
+
}, L = ({ title: c, lines: m, ...a }) => {
|
|
8
|
+
const t = l(a, "data-testid", "timetable");
|
|
9
|
+
return /* @__PURE__ */ d("div", { "data-testid": t, className: o(e.Timetable, l(a, "className")), children: [
|
|
10
|
+
/* @__PURE__ */ s("p", { "data-testid": `${t}-title`, className: e.Title, children: c }),
|
|
11
|
+
m.map((n, i) => /* @__PURE__ */ s("p", { "data-testid": `${t}-line-${i}`, className: e.Line, children: n }, i))
|
|
12
|
+
] });
|
|
13
|
+
};
|
|
14
|
+
export {
|
|
15
|
+
L as Timetable
|
|
16
|
+
};
|
package/dist/main.d.ts
CHANGED
|
@@ -48,6 +48,7 @@ export { Payment, type PaymentBlockProps, type PaymentGlassProps, type PaymentIn
|
|
|
48
48
|
export { PriceLine, type PriceLineProps } from './components/price-line';
|
|
49
49
|
export { Sidebar, type SidebarProps } from './components/sidebar';
|
|
50
50
|
export { Signature } from './components/signature';
|
|
51
|
+
export { Timetable, type TimetableProps } from './components/timetable';
|
|
51
52
|
export { Svg, type SvgProps } from './utils/svg/svg.component';
|
|
52
53
|
export { Text, type TextProps } from './components/text';
|
|
53
54
|
export { UserPanel } from './components/user-panel';
|
package/dist/main.js
CHANGED
|
@@ -7,8 +7,8 @@ import { Button as d } from "./controls/buttons/button/button.component.js";
|
|
|
7
7
|
import { ButtonCard as l } from "./controls/buttons/button-card/button-card.component.js";
|
|
8
8
|
import { ButtonRadio as u } from "./controls/buttons/button-radio/button-radio.component.js";
|
|
9
9
|
import { ButtonText as B } from "./controls/buttons/button-text/button-text.component.js";
|
|
10
|
-
import { CardImage as
|
|
11
|
-
import { CardText as
|
|
10
|
+
import { CardImage as b } from "./controls/interactives/card-image/card-image.component.js";
|
|
11
|
+
import { CardText as F } from "./controls/interactives/card-text/card-text.component.js";
|
|
12
12
|
import { Checkbox as S } from "./controls/interactives/checkbox/checkbox.component.js";
|
|
13
13
|
import { Dropdown as D } from "./controls/interactives/dropdown/dropdown.component.js";
|
|
14
14
|
import { Input as P } from "./controls/interactives/input/input.component.js";
|
|
@@ -33,9 +33,9 @@ import { Dialog as no } from "./components/dialog/dialog.component.js";
|
|
|
33
33
|
import { DialogArticle as co } from "./components/dialog-article/dialog-article.component.js";
|
|
34
34
|
import { Expenses as so } from "./components/expenses/expenses.component.js";
|
|
35
35
|
import { Footer as go } from "./components/footer/footer.component.js";
|
|
36
|
-
import { FormRow as
|
|
37
|
-
import { Header as
|
|
38
|
-
import { InfoPanel as
|
|
36
|
+
import { FormRow as To } from "./components/form-row/form-row.component.js";
|
|
37
|
+
import { Header as Co } from "./components/header/header.component.js";
|
|
38
|
+
import { InfoPanel as Lo } from "./components/info-panel/info-panel.component.js";
|
|
39
39
|
import { Information as Ao } from "./components/information/information.component.js";
|
|
40
40
|
import { Layout as Io } from "./components/layout/layout.component.js";
|
|
41
41
|
import { Line as Ro } from "./components/line/line.component.js";
|
|
@@ -48,11 +48,12 @@ import { Payment as Uo } from "./components/payment/payment.component.js";
|
|
|
48
48
|
import { PriceLine as jo } from "./components/price-line/price-line.component.js";
|
|
49
49
|
import { Sidebar as Jo } from "./components/sidebar/sidebar.component.js";
|
|
50
50
|
import { Signature as Oo } from "./components/signature/signature.component.js";
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
51
|
+
import { Timetable as Vo } from "./components/timetable/timetable.component.js";
|
|
52
|
+
import { Svg as Yo } from "./utils/svg/svg.component.js";
|
|
53
|
+
import { Text as _o } from "./components/text/text.component.js";
|
|
54
|
+
import { UserPanel as or } from "./components/user-panel/user-panel.component.js";
|
|
55
|
+
import { Warranty as er } from "./components/warranty/warranty.component.js";
|
|
56
|
+
import { clsx as xr, convertToEuro as mr } from "./utils/functions/functions.util.js";
|
|
56
57
|
import './assets/main-DZmlIs7j.css';export {
|
|
57
58
|
Z as Accordion,
|
|
58
59
|
$ as AccordionTable,
|
|
@@ -63,8 +64,8 @@ import './assets/main-DZmlIs7j.css';export {
|
|
|
63
64
|
u as ButtonRadio,
|
|
64
65
|
B as ButtonText,
|
|
65
66
|
z as Caption,
|
|
66
|
-
|
|
67
|
-
|
|
67
|
+
b as CardImage,
|
|
68
|
+
F as CardText,
|
|
68
69
|
mo as Certifications,
|
|
69
70
|
S as Checkbox,
|
|
70
71
|
N as Choice,
|
|
@@ -79,10 +80,10 @@ import './assets/main-DZmlIs7j.css';export {
|
|
|
79
80
|
m as FadeScale,
|
|
80
81
|
f as FadeSlide,
|
|
81
82
|
go as Footer,
|
|
82
|
-
|
|
83
|
-
|
|
83
|
+
To as FormRow,
|
|
84
|
+
Co as Header,
|
|
84
85
|
q as HiddenInput,
|
|
85
|
-
|
|
86
|
+
Lo as InfoPanel,
|
|
86
87
|
Ao as Information,
|
|
87
88
|
P as Input,
|
|
88
89
|
K as Label,
|
|
@@ -101,12 +102,13 @@ import './assets/main-DZmlIs7j.css';export {
|
|
|
101
102
|
Jo as Sidebar,
|
|
102
103
|
Oo as Signature,
|
|
103
104
|
X as Status,
|
|
104
|
-
|
|
105
|
-
|
|
105
|
+
Yo as Svg,
|
|
106
|
+
_o as Text,
|
|
106
107
|
w as TextArea,
|
|
107
108
|
E as TextField,
|
|
108
|
-
|
|
109
|
-
or as
|
|
110
|
-
er as
|
|
111
|
-
|
|
109
|
+
Vo as Timetable,
|
|
110
|
+
or as UserPanel,
|
|
111
|
+
er as Warranty,
|
|
112
|
+
xr as clsx,
|
|
113
|
+
mr as convertToEuro
|
|
112
114
|
};
|