@arthurzakharov/ui-kit 1.9.0 → 1.9.2
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/info-BIfD2zWQ.css +1 -0
- package/dist/assets/{main-iE1J4wcX.css → main-BS096FVm.css} +1 -1
- package/dist/components/payment/components/info/info.component.d.ts +12 -0
- package/dist/components/payment/components/info/info.component.js +44 -0
- package/dist/components/payment/payment.component.d.ts +7 -5
- package/dist/components/payment/payment.component.js +8 -6
- package/dist/components/signature/signature.component.d.ts +4 -1
- package/dist/components/signature/signature.component.js +547 -544
- package/dist/main.d.ts +1 -1
- package/dist/main.js +1 -1
- package/dist/utils/story/size-box/size-box.component.d.ts +1 -1
- package/dist/utils/story/size-box/size-box.component.js +2 -2
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -42,7 +42,7 @@ export { MainAttachment, type MainAttachmentProps } from './components/main-atta
|
|
|
42
42
|
export { Message, type MessageProps } from './components/message';
|
|
43
43
|
export { MessageBlock, type MessageBlockProps } from './components/message-block';
|
|
44
44
|
export { NotFound, type NotFoundProps } from './components/not-found';
|
|
45
|
-
export { Payment, type PaymentBlockProps, type PaymentGlassProps, type PaymentSidebarProps, type PaymentTextBlocksProps, type PaymentTextBlockItem, } from './components/payment/payment.component';
|
|
45
|
+
export { Payment, type PaymentBlockProps, type PaymentGlassProps, type PaymentInfoProps, type PaymentSidebarProps, type PaymentTextBlocksProps, type PaymentTextBlockItem, } from './components/payment/payment.component';
|
|
46
46
|
export { Sidebar, type SidebarProps } from './components/sidebar';
|
|
47
47
|
export { Signature } from './components/signature';
|
|
48
48
|
export { Svg, type SvgProps } from './utils/svg/svg.component';
|
package/dist/main.js
CHANGED
|
@@ -49,7 +49,7 @@ import { Svg as qo } from "./utils/svg/svg.component.js";
|
|
|
49
49
|
import { Text as Jo } from "./components/text/text.component.js";
|
|
50
50
|
import { UserPanel as Oo } from "./components/user-panel/user-panel.component.js";
|
|
51
51
|
import { Warranty as Vo } from "./components/warranty/warranty.component.js";
|
|
52
|
-
import './assets/main-
|
|
52
|
+
import './assets/main-BS096FVm.css';export {
|
|
53
53
|
Z as AccordionTable,
|
|
54
54
|
$ as BottomBar,
|
|
55
55
|
H as Box,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
const h = ({ children:
|
|
1
|
+
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
+
const h = ({ children: t, size: i = [] }) => /* @__PURE__ */ o("div", { style: { width: i[0] || "initial", height: i[1] || "initial" }, children: t });
|
|
3
3
|
export {
|
|
4
4
|
h as SizeBox
|
|
5
5
|
};
|