@arthurzakharov/ui-kit 1.0.15 → 1.0.16
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/page-info-CnnJ3kIq.css +1 -0
- package/dist/assets/page-title-qhZYBokG.css +1 -0
- package/dist/assets/sidebar-title-DSs1ocsu.css +1 -0
- package/dist/assets/step-title-Dz4vfvfJ.css +1 -0
- package/dist/components/text/components/page-info/page-info.component.d.ts +2 -0
- package/dist/components/text/components/page-info/page-info.component.js +10 -0
- package/dist/components/text/components/page-title/page-title.component.d.ts +2 -0
- package/dist/components/text/components/page-title/page-title.component.js +10 -0
- package/dist/components/text/components/sidebar-title/sidebar-title.component.d.ts +2 -0
- package/dist/components/text/components/sidebar-title/sidebar-title.component.js +10 -0
- package/dist/components/text/components/step-title/step-title.component.d.ts +2 -0
- package/dist/components/text/components/step-title/step-title.component.js +10 -0
- package/dist/components/text/text.component.d.ts +6 -0
- package/dist/components/text/text.component.js +13 -0
- package/dist/main.d.ts +1 -0
- package/dist/main.js +5 -3
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._PageInfo_qmrqw_1{margin-top:0;margin-bottom:0;font-family:var(--rm-ui-font-family-regular),sans-serif;font-size:var(--rm-ui-font-size-body);line-height:var(--rm-ui-line-height-body);color:var(--rm-ui-color-text-secondary)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._PageTitle_ko79c_1{margin-top:0;margin-bottom:0;font-family:var(--rm-ui-font-family-bold),sans-serif;font-size:var(--rm-ui-font-size-hl2);line-height:var(--rm-ui-line-height-hl2);color:var(--rm-ui-color-text-primary)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._SidebarTitle_1qtrd_1{margin-top:0;margin-bottom:0;font-family:var(--rm-ui-font-family-bold),sans-serif;font-size:var(--rm-ui-font-size-hl3);line-height:var(--rm-ui-line-height-hl3);color:var(--rm-ui-color-text-primary)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._StepTitle_ttoxg_1{margin-top:0;margin-bottom:0;font-family:var(--rm-ui-font-family-bold),sans-serif;font-size:var(--rm-ui-font-size-hl4);line-height:var(--rm-ui-line-height-hl4);color:var(--rm-ui-color-text-primary)}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import '../../../../assets/page-info-CnnJ3kIq.css';const a = "_PageInfo_qmrqw_1", c = {
|
|
3
|
+
PageInfo: a
|
|
4
|
+
}, s = (n) => {
|
|
5
|
+
const { children: o } = n;
|
|
6
|
+
return /* @__PURE__ */ e("p", { className: c.PageInfo, children: o });
|
|
7
|
+
};
|
|
8
|
+
export {
|
|
9
|
+
s as PageInfo
|
|
10
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsx as c } from "react/jsx-runtime";
|
|
2
|
+
import '../../../../assets/page-title-qhZYBokG.css';const o = "_PageTitle_ko79c_1", a = {
|
|
3
|
+
PageTitle: o
|
|
4
|
+
}, l = (e) => {
|
|
5
|
+
const { children: t } = e;
|
|
6
|
+
return /* @__PURE__ */ c("h1", { className: a.PageTitle, children: t });
|
|
7
|
+
};
|
|
8
|
+
export {
|
|
9
|
+
l as PageTitle
|
|
10
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsx as i } from "react/jsx-runtime";
|
|
2
|
+
import '../../../../assets/sidebar-title-DSs1ocsu.css';const r = "_SidebarTitle_1qtrd_1", a = {
|
|
3
|
+
SidebarTitle: r
|
|
4
|
+
}, d = (e) => {
|
|
5
|
+
const { children: t } = e;
|
|
6
|
+
return /* @__PURE__ */ i("h3", { className: a.SidebarTitle, children: t });
|
|
7
|
+
};
|
|
8
|
+
export {
|
|
9
|
+
d as SidebarTitle
|
|
10
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import '../../../../assets/step-title-Dz4vfvfJ.css';const c = "_StepTitle_ttoxg_1", i = {
|
|
3
|
+
StepTitle: c
|
|
4
|
+
}, n = (t) => {
|
|
5
|
+
const { children: e } = t;
|
|
6
|
+
return /* @__PURE__ */ o("h2", { className: i.StepTitle, children: e });
|
|
7
|
+
};
|
|
8
|
+
export {
|
|
9
|
+
n as StepTitle
|
|
10
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export declare const Text: {
|
|
2
|
+
PageInfo: (props: import('react').PropsWithChildren) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
PageTitle: (props: import('react').PropsWithChildren) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
SidebarTitle: (props: import('react').PropsWithChildren) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
StepTitle: (props: import('react').PropsWithChildren) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PageInfo as o } from "./components/page-info/page-info.component.js";
|
|
2
|
+
import { PageTitle as t } from "./components/page-title/page-title.component.js";
|
|
3
|
+
import { SidebarTitle as r } from "./components/sidebar-title/sidebar-title.component.js";
|
|
4
|
+
import { StepTitle as e } from "./components/step-title/step-title.component.js";
|
|
5
|
+
const T = {
|
|
6
|
+
PageInfo: o,
|
|
7
|
+
PageTitle: t,
|
|
8
|
+
SidebarTitle: r,
|
|
9
|
+
StepTitle: e
|
|
10
|
+
};
|
|
11
|
+
export {
|
|
12
|
+
T as Text
|
|
13
|
+
};
|
package/dist/main.d.ts
CHANGED
|
@@ -3,3 +3,4 @@ export { Control } from './components/control/control.component';
|
|
|
3
3
|
export { Footer, type FooterProps } from './components/footer/footer.component';
|
|
4
4
|
export { Header, type HeaderProps } from './components/header/header.component';
|
|
5
5
|
export { Layout, type LayoutProps } from './components/layout/layout.component';
|
|
6
|
+
export { Text } from './components/text/text.component';
|
package/dist/main.js
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import { Certifications as t } from "./components/certifications/certifications.component.js";
|
|
2
2
|
import { Control as f } from "./components/control/control.component.js";
|
|
3
|
-
import { Footer as
|
|
3
|
+
import { Footer as m } from "./components/footer/footer.component.js";
|
|
4
4
|
import { Header as a } from "./components/header/header.component.js";
|
|
5
5
|
import { Layout as n } from "./components/layout/layout.component.js";
|
|
6
|
+
import { Text as c } from "./components/text/text.component.js";
|
|
6
7
|
import './assets/main-fdOz0H_y.css';export {
|
|
7
8
|
t as Certifications,
|
|
8
9
|
f as Control,
|
|
9
|
-
|
|
10
|
+
m as Footer,
|
|
10
11
|
a as Header,
|
|
11
|
-
n as Layout
|
|
12
|
+
n as Layout,
|
|
13
|
+
c as Text
|
|
12
14
|
};
|