@astral/ui 4.94.0 → 4.96.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/hook-form/FormPageLayout/FormPageFooter/FormPageFooter.d.ts +5 -0
- package/hook-form/FormPageLayout/FormPageFooter/FormPageFooter.js +2 -2
- package/hook-form/FormPageLayout/FormPageLayout.d.ts +1 -25
- package/hook-form/FormPageLayout/FormPageLayout.js +2 -2
- package/hook-form/FormPageLayout/index.d.ts +1 -0
- package/hook-form/FormPageLayout/public.d.ts +1 -0
- package/hook-form/FormPageLayout/types.d.ts +31 -0
- package/hook-form/FormPageLayout/types.js +1 -0
- package/icons/PayOutlineMd/PayOutlineMd.d.ts +3 -0
- package/icons/PayOutlineMd/PayOutlineMd.js +3 -0
- package/icons/PayOutlineMd/index.d.ts +1 -0
- package/icons/PayOutlineMd/index.js +1 -0
- package/icons/PayOutlineMd/public.d.ts +1 -0
- package/icons/PayOutlineMd/public.js +1 -0
- package/icons/index.d.ts +1 -0
- package/icons/index.js +1 -0
- package/node/hook-form/FormPageLayout/FormPageFooter/FormPageFooter.d.ts +5 -0
- package/node/hook-form/FormPageLayout/FormPageFooter/FormPageFooter.js +2 -2
- package/node/hook-form/FormPageLayout/FormPageLayout.d.ts +1 -25
- package/node/hook-form/FormPageLayout/FormPageLayout.js +2 -2
- package/node/hook-form/FormPageLayout/index.d.ts +1 -0
- package/node/hook-form/FormPageLayout/public.d.ts +1 -0
- package/node/hook-form/FormPageLayout/types.d.ts +31 -0
- package/node/hook-form/FormPageLayout/types.js +2 -0
- package/node/icons/PayOutlineMd/PayOutlineMd.d.ts +3 -0
- package/node/icons/PayOutlineMd/PayOutlineMd.js +7 -0
- package/node/icons/PayOutlineMd/index.d.ts +1 -0
- package/node/icons/PayOutlineMd/index.js +5 -0
- package/node/icons/PayOutlineMd/public.d.ts +1 -0
- package/node/icons/PayOutlineMd/public.js +5 -0
- package/node/icons/index.d.ts +1 -0
- package/node/icons/index.js +5 -3
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { SecondaryAction } from '../../FormPageLayoutBase';
|
|
2
|
+
import { type FormPageLayoutSubmitButtonProps } from '../types';
|
|
2
3
|
export type FormFooterProps = {
|
|
3
4
|
/**
|
|
4
5
|
* Если true, кнопки будут недоступны для взаимодействия
|
|
@@ -13,5 +14,9 @@ export type FormFooterProps = {
|
|
|
13
14
|
* @default 'Отправить'
|
|
14
15
|
*/
|
|
15
16
|
submitButtonText?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Параметры для кнопки отправки формы
|
|
19
|
+
*/
|
|
20
|
+
submitButtonProps?: FormPageLayoutSubmitButtonProps;
|
|
16
21
|
};
|
|
17
22
|
export declare const FormPageFooter: (props: FormFooterProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -4,9 +4,9 @@ import { useFormFooter } from './hooks';
|
|
|
4
4
|
import { SecondaryActions } from './SecondaryActions';
|
|
5
5
|
import { ActionsWrapper, ShowMoreButton, StyledFormSubmitButton, } from './styles';
|
|
6
6
|
export const FormPageFooter = (props) => {
|
|
7
|
-
const { isDisabled, submitButtonText = 'Отправить', secondaryActions, } = props;
|
|
7
|
+
const { isDisabled, submitButtonText = 'Отправить', secondaryActions, submitButtonProps, } = props;
|
|
8
8
|
const { isActive, handleToggle, isShowMoreButton } = useFormFooter({
|
|
9
9
|
secondaryActions,
|
|
10
10
|
});
|
|
11
|
-
return (_jsxs(FormPageFooterContainer, { children: [_jsxs(ActionsWrapper, { "$isShowMoreButton": isShowMoreButton, children: [_jsx(StyledFormSubmitButton, { size: "large", disabled: isDisabled, children: submitButtonText }), secondaryActions && (_jsx(SecondaryActions, { isDisabled: isDisabled, actions: secondaryActions, isActive: isActive }))] }), isShowMoreButton && (_jsxs(ShowMoreButton, { disabled: isDisabled, variant: "text", onClick: handleToggle, "$isActive": isActive, children: [isActive ? 'Скрыть' : 'Показать', " \u0434\u0440\u0443\u0433\u0438\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044F"] }))] }));
|
|
11
|
+
return (_jsxs(FormPageFooterContainer, { children: [_jsxs(ActionsWrapper, { "$isShowMoreButton": isShowMoreButton, children: [_jsx(StyledFormSubmitButton, { size: "large", disabled: isDisabled, ...submitButtonProps, children: submitButtonText }), secondaryActions && (_jsx(SecondaryActions, { isDisabled: isDisabled, actions: secondaryActions, isActive: isActive }))] }), isShowMoreButton && (_jsxs(ShowMoreButton, { disabled: isDisabled, variant: "text", onClick: handleToggle, "$isActive": isActive, children: [isActive ? 'Скрыть' : 'Показать', " \u0434\u0440\u0443\u0433\u0438\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044F"] }))] }));
|
|
12
12
|
};
|
|
@@ -1,29 +1,5 @@
|
|
|
1
|
-
import { type
|
|
2
|
-
import { type PageLayoutProps } from '../../components/PageLayout';
|
|
3
|
-
import { type FormProps } from '../Form';
|
|
4
|
-
import type { SecondaryAction } from '../FormPageLayoutBase';
|
|
5
|
-
type FormPageProps<TFormValues extends Record<string, unknown>> = Omit<FormProps<TFormValues>, 'children'> & {
|
|
6
|
-
/**
|
|
7
|
-
* Текст для кнопки отправки формы
|
|
8
|
-
*/
|
|
9
|
-
submitButtonText?: string;
|
|
10
|
-
/**
|
|
11
|
-
* Дополнительные кнопки формы
|
|
12
|
-
*/
|
|
13
|
-
secondaryActions?: SecondaryAction[];
|
|
14
|
-
};
|
|
15
|
-
export type FormPageLayoutProps<TFormValues extends Record<string, unknown>> = Omit<PageLayoutProps, 'content'> & {
|
|
16
|
-
/**
|
|
17
|
-
* Содержимое формы
|
|
18
|
-
*/
|
|
19
|
-
children: ReactNode;
|
|
20
|
-
/**
|
|
21
|
-
* Параметры страницы формы
|
|
22
|
-
*/
|
|
23
|
-
form: FormPageProps<TFormValues>;
|
|
24
|
-
};
|
|
1
|
+
import { type FormPageLayoutProps } from './types';
|
|
25
2
|
/**
|
|
26
3
|
* FormPageLayout предназначен для построения страниц с формами.
|
|
27
4
|
*/
|
|
28
5
|
export declare const FormPageLayout: <TFormValues extends Record<string, unknown>>(props: FormPageLayoutProps<TFormValues>) => import("react/jsx-runtime").JSX.Element;
|
|
29
|
-
export {};
|
|
@@ -9,8 +9,8 @@ import { FormContent } from './styles';
|
|
|
9
9
|
*/
|
|
10
10
|
export const FormPageLayout = (props) => {
|
|
11
11
|
const { form, children, ...restProps } = props;
|
|
12
|
-
const { secondaryActions, submitButtonText, ...restFormProps } = form;
|
|
12
|
+
const { secondaryActions, submitButtonText, submitButtonProps, ...restFormProps } = form;
|
|
13
13
|
return (_jsx(FormPageLayoutBase, { ...restProps, formProps: { ...form, secondaryActions }, contentClassname: cn({
|
|
14
14
|
[formPageContentClassnames.formPageContentSecondaryActions]: Boolean(secondaryActions),
|
|
15
|
-
}), children: ({ isDisabled }) => (_jsxs(Form, { ...restFormProps, isDisabled: isDisabled, children: [_jsx(FormContent, { children: children }), _jsx(FormPageFooter, { isDisabled: isDisabled, submitButtonText: submitButtonText, secondaryActions: secondaryActions })] })) }));
|
|
15
|
+
}), children: ({ isDisabled }) => (_jsxs(Form, { ...restFormProps, isDisabled: isDisabled, children: [_jsx(FormContent, { children: children }), _jsx(FormPageFooter, { isDisabled: isDisabled, submitButtonText: submitButtonText, secondaryActions: secondaryActions, submitButtonProps: submitButtonProps })] })) }));
|
|
16
16
|
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { type ReactNode } from 'react';
|
|
2
|
+
import { type PageLayoutProps } from '../../components/PageLayout';
|
|
3
|
+
import { type FormProps } from '../Form';
|
|
4
|
+
import { type SecondaryAction } from '../FormPageLayoutBase';
|
|
5
|
+
import { type FormSubmitButtonProps } from '../FormSubmitButton';
|
|
6
|
+
export type FormPageLayoutSubmitButtonProps = Pick<FormSubmitButtonProps, 'color' | 'startIcon' | 'endIcon'>;
|
|
7
|
+
type FormPageProps<TFormValues extends Record<string, unknown>> = Omit<FormProps<TFormValues>, 'children'> & {
|
|
8
|
+
/**
|
|
9
|
+
* Параметры для кнопки отправки формы
|
|
10
|
+
*/
|
|
11
|
+
submitButtonProps?: FormPageLayoutSubmitButtonProps;
|
|
12
|
+
/**
|
|
13
|
+
* Текст для кнопки отправки формы
|
|
14
|
+
*/
|
|
15
|
+
submitButtonText?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Дополнительные кнопки формы
|
|
18
|
+
*/
|
|
19
|
+
secondaryActions?: SecondaryAction[];
|
|
20
|
+
};
|
|
21
|
+
export type FormPageLayoutProps<TFormValues extends Record<string, unknown>> = Omit<PageLayoutProps, 'content'> & {
|
|
22
|
+
/**
|
|
23
|
+
* Содержимое формы
|
|
24
|
+
*/
|
|
25
|
+
children: ReactNode;
|
|
26
|
+
/**
|
|
27
|
+
* Параметры страницы формы
|
|
28
|
+
*/
|
|
29
|
+
form: FormPageProps<TFormValues>;
|
|
30
|
+
};
|
|
31
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { SvgIcon } from '../../components/SvgIcon';
|
|
3
|
+
export const PayOutlineMd = ({ ...props }) => (_jsxs(SvgIcon, { ...props, children: [_jsx("path", { d: "M20.25 11.5a8.25 8.25 0 1 0-11.916 7.393.75.75 0 0 1-.668 1.343A9.75 9.75 0 0 1 2.25 11.5c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75a.75.75 0 0 1-1.5 0M17.47 14.97a.75.75 0 0 1 1.06 0l3 3a.75.75 0 0 1 0 1.06l-3 3a.75.75 0 1 1-1.06-1.06l1.72-1.72H13a.75.75 0 0 1 0-1.5h6.19l-1.72-1.72a.75.75 0 0 1 0-1.06" }), _jsx("path", { d: "M14.459 10.426c0-.65-.527-1.176-1.177-1.176h-1.49v2.352h1.49c.65 0 1.177-.527 1.177-1.176m1.5 0a2.677 2.677 0 0 1-2.677 2.676h-1.49v.482h.291a.75.75 0 0 1 0 1.5h-.291v.708a.75.75 0 0 1-1.5 0v-.708H10a.75.75 0 0 1 0-1.5h.292v-.482H10a.75.75 0 0 1 0-1.5h.292V7.75h2.99a2.677 2.677 0 0 1 2.677 2.676" })] }));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { PayOutlineMd } from './public';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { PayOutlineMd } from './public';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { PayOutlineMd } from './PayOutlineMd';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { PayOutlineMd } from './PayOutlineMd';
|
package/icons/index.d.ts
CHANGED
|
@@ -190,6 +190,7 @@ export { NumberOutlineMd } from './NumberOutlineMd';
|
|
|
190
190
|
export { OpenLinkOutlineMd } from './OpenLinkOutlineMd';
|
|
191
191
|
export { OutcomingDocumentOutlineMd } from './OutcomingDocumentOutlineMd';
|
|
192
192
|
export { PageDotOutlineMd } from './PageDotOutlineMd';
|
|
193
|
+
export { PayOutlineMd } from './PayOutlineMd';
|
|
193
194
|
export { PeopleOutlineMd } from './PeopleOutlineMd';
|
|
194
195
|
export { PhoneOutlineMd } from './PhoneOutlineMd';
|
|
195
196
|
export { PinOutlineMd } from './PinOutlineMd';
|
package/icons/index.js
CHANGED
|
@@ -190,6 +190,7 @@ export { NumberOutlineMd } from './NumberOutlineMd';
|
|
|
190
190
|
export { OpenLinkOutlineMd } from './OpenLinkOutlineMd';
|
|
191
191
|
export { OutcomingDocumentOutlineMd } from './OutcomingDocumentOutlineMd';
|
|
192
192
|
export { PageDotOutlineMd } from './PageDotOutlineMd';
|
|
193
|
+
export { PayOutlineMd } from './PayOutlineMd';
|
|
193
194
|
export { PeopleOutlineMd } from './PeopleOutlineMd';
|
|
194
195
|
export { PhoneOutlineMd } from './PhoneOutlineMd';
|
|
195
196
|
export { PinOutlineMd } from './PinOutlineMd';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { SecondaryAction } from '../../FormPageLayoutBase';
|
|
2
|
+
import { type FormPageLayoutSubmitButtonProps } from '../types';
|
|
2
3
|
export type FormFooterProps = {
|
|
3
4
|
/**
|
|
4
5
|
* Если true, кнопки будут недоступны для взаимодействия
|
|
@@ -13,5 +14,9 @@ export type FormFooterProps = {
|
|
|
13
14
|
* @default 'Отправить'
|
|
14
15
|
*/
|
|
15
16
|
submitButtonText?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Параметры для кнопки отправки формы
|
|
19
|
+
*/
|
|
20
|
+
submitButtonProps?: FormPageLayoutSubmitButtonProps;
|
|
16
21
|
};
|
|
17
22
|
export declare const FormPageFooter: (props: FormFooterProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -7,10 +7,10 @@ const hooks_1 = require("./hooks");
|
|
|
7
7
|
const SecondaryActions_1 = require("./SecondaryActions");
|
|
8
8
|
const styles_1 = require("./styles");
|
|
9
9
|
const FormPageFooter = (props) => {
|
|
10
|
-
const { isDisabled, submitButtonText = 'Отправить', secondaryActions, } = props;
|
|
10
|
+
const { isDisabled, submitButtonText = 'Отправить', secondaryActions, submitButtonProps, } = props;
|
|
11
11
|
const { isActive, handleToggle, isShowMoreButton } = (0, hooks_1.useFormFooter)({
|
|
12
12
|
secondaryActions,
|
|
13
13
|
});
|
|
14
|
-
return ((0, jsx_runtime_1.jsxs)(FormPageFooterContainer_1.FormPageFooterContainer, { children: [(0, jsx_runtime_1.jsxs)(styles_1.ActionsWrapper, { "$isShowMoreButton": isShowMoreButton, children: [(0, jsx_runtime_1.jsx)(styles_1.StyledFormSubmitButton, { size: "large", disabled: isDisabled, children: submitButtonText }), secondaryActions && ((0, jsx_runtime_1.jsx)(SecondaryActions_1.SecondaryActions, { isDisabled: isDisabled, actions: secondaryActions, isActive: isActive }))] }), isShowMoreButton && ((0, jsx_runtime_1.jsxs)(styles_1.ShowMoreButton, { disabled: isDisabled, variant: "text", onClick: handleToggle, "$isActive": isActive, children: [isActive ? 'Скрыть' : 'Показать', " \u0434\u0440\u0443\u0433\u0438\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044F"] }))] }));
|
|
14
|
+
return ((0, jsx_runtime_1.jsxs)(FormPageFooterContainer_1.FormPageFooterContainer, { children: [(0, jsx_runtime_1.jsxs)(styles_1.ActionsWrapper, { "$isShowMoreButton": isShowMoreButton, children: [(0, jsx_runtime_1.jsx)(styles_1.StyledFormSubmitButton, { size: "large", disabled: isDisabled, ...submitButtonProps, children: submitButtonText }), secondaryActions && ((0, jsx_runtime_1.jsx)(SecondaryActions_1.SecondaryActions, { isDisabled: isDisabled, actions: secondaryActions, isActive: isActive }))] }), isShowMoreButton && ((0, jsx_runtime_1.jsxs)(styles_1.ShowMoreButton, { disabled: isDisabled, variant: "text", onClick: handleToggle, "$isActive": isActive, children: [isActive ? 'Скрыть' : 'Показать', " \u0434\u0440\u0443\u0433\u0438\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044F"] }))] }));
|
|
15
15
|
};
|
|
16
16
|
exports.FormPageFooter = FormPageFooter;
|
|
@@ -1,29 +1,5 @@
|
|
|
1
|
-
import { type
|
|
2
|
-
import { type PageLayoutProps } from '../../components/PageLayout';
|
|
3
|
-
import { type FormProps } from '../Form';
|
|
4
|
-
import type { SecondaryAction } from '../FormPageLayoutBase';
|
|
5
|
-
type FormPageProps<TFormValues extends Record<string, unknown>> = Omit<FormProps<TFormValues>, 'children'> & {
|
|
6
|
-
/**
|
|
7
|
-
* Текст для кнопки отправки формы
|
|
8
|
-
*/
|
|
9
|
-
submitButtonText?: string;
|
|
10
|
-
/**
|
|
11
|
-
* Дополнительные кнопки формы
|
|
12
|
-
*/
|
|
13
|
-
secondaryActions?: SecondaryAction[];
|
|
14
|
-
};
|
|
15
|
-
export type FormPageLayoutProps<TFormValues extends Record<string, unknown>> = Omit<PageLayoutProps, 'content'> & {
|
|
16
|
-
/**
|
|
17
|
-
* Содержимое формы
|
|
18
|
-
*/
|
|
19
|
-
children: ReactNode;
|
|
20
|
-
/**
|
|
21
|
-
* Параметры страницы формы
|
|
22
|
-
*/
|
|
23
|
-
form: FormPageProps<TFormValues>;
|
|
24
|
-
};
|
|
1
|
+
import { type FormPageLayoutProps } from './types';
|
|
25
2
|
/**
|
|
26
3
|
* FormPageLayout предназначен для построения страниц с формами.
|
|
27
4
|
*/
|
|
28
5
|
export declare const FormPageLayout: <TFormValues extends Record<string, unknown>>(props: FormPageLayoutProps<TFormValues>) => import("react/jsx-runtime").JSX.Element;
|
|
29
|
-
export {};
|
|
@@ -12,9 +12,9 @@ const styles_1 = require("./styles");
|
|
|
12
12
|
*/
|
|
13
13
|
const FormPageLayout = (props) => {
|
|
14
14
|
const { form, children, ...restProps } = props;
|
|
15
|
-
const { secondaryActions, submitButtonText, ...restFormProps } = form;
|
|
15
|
+
const { secondaryActions, submitButtonText, submitButtonProps, ...restFormProps } = form;
|
|
16
16
|
return ((0, jsx_runtime_1.jsx)(FormPageLayoutBase_1.FormPageLayoutBase, { ...restProps, formProps: { ...form, secondaryActions }, contentClassname: (0, cn_1.cn)({
|
|
17
17
|
[FormPageLayoutBase_1.formPageContentClassnames.formPageContentSecondaryActions]: Boolean(secondaryActions),
|
|
18
|
-
}), children: ({ isDisabled }) => ((0, jsx_runtime_1.jsxs)(Form_1.Form, { ...restFormProps, isDisabled: isDisabled, children: [(0, jsx_runtime_1.jsx)(styles_1.FormContent, { children: children }), (0, jsx_runtime_1.jsx)(FormPageFooter_1.FormPageFooter, { isDisabled: isDisabled, submitButtonText: submitButtonText, secondaryActions: secondaryActions })] })) }));
|
|
18
|
+
}), children: ({ isDisabled }) => ((0, jsx_runtime_1.jsxs)(Form_1.Form, { ...restFormProps, isDisabled: isDisabled, children: [(0, jsx_runtime_1.jsx)(styles_1.FormContent, { children: children }), (0, jsx_runtime_1.jsx)(FormPageFooter_1.FormPageFooter, { isDisabled: isDisabled, submitButtonText: submitButtonText, secondaryActions: secondaryActions, submitButtonProps: submitButtonProps })] })) }));
|
|
19
19
|
};
|
|
20
20
|
exports.FormPageLayout = FormPageLayout;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { type ReactNode } from 'react';
|
|
2
|
+
import { type PageLayoutProps } from '../../components/PageLayout';
|
|
3
|
+
import { type FormProps } from '../Form';
|
|
4
|
+
import { type SecondaryAction } from '../FormPageLayoutBase';
|
|
5
|
+
import { type FormSubmitButtonProps } from '../FormSubmitButton';
|
|
6
|
+
export type FormPageLayoutSubmitButtonProps = Pick<FormSubmitButtonProps, 'color' | 'startIcon' | 'endIcon'>;
|
|
7
|
+
type FormPageProps<TFormValues extends Record<string, unknown>> = Omit<FormProps<TFormValues>, 'children'> & {
|
|
8
|
+
/**
|
|
9
|
+
* Параметры для кнопки отправки формы
|
|
10
|
+
*/
|
|
11
|
+
submitButtonProps?: FormPageLayoutSubmitButtonProps;
|
|
12
|
+
/**
|
|
13
|
+
* Текст для кнопки отправки формы
|
|
14
|
+
*/
|
|
15
|
+
submitButtonText?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Дополнительные кнопки формы
|
|
18
|
+
*/
|
|
19
|
+
secondaryActions?: SecondaryAction[];
|
|
20
|
+
};
|
|
21
|
+
export type FormPageLayoutProps<TFormValues extends Record<string, unknown>> = Omit<PageLayoutProps, 'content'> & {
|
|
22
|
+
/**
|
|
23
|
+
* Содержимое формы
|
|
24
|
+
*/
|
|
25
|
+
children: ReactNode;
|
|
26
|
+
/**
|
|
27
|
+
* Параметры страницы формы
|
|
28
|
+
*/
|
|
29
|
+
form: FormPageProps<TFormValues>;
|
|
30
|
+
};
|
|
31
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PayOutlineMd = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
const SvgIcon_1 = require("../../components/SvgIcon");
|
|
6
|
+
const PayOutlineMd = ({ ...props }) => ((0, jsx_runtime_1.jsxs)(SvgIcon_1.SvgIcon, { ...props, children: [(0, jsx_runtime_1.jsx)("path", { d: "M20.25 11.5a8.25 8.25 0 1 0-11.916 7.393.75.75 0 0 1-.668 1.343A9.75 9.75 0 0 1 2.25 11.5c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75a.75.75 0 0 1-1.5 0M17.47 14.97a.75.75 0 0 1 1.06 0l3 3a.75.75 0 0 1 0 1.06l-3 3a.75.75 0 1 1-1.06-1.06l1.72-1.72H13a.75.75 0 0 1 0-1.5h6.19l-1.72-1.72a.75.75 0 0 1 0-1.06" }), (0, jsx_runtime_1.jsx)("path", { d: "M14.459 10.426c0-.65-.527-1.176-1.177-1.176h-1.49v2.352h1.49c.65 0 1.177-.527 1.177-1.176m1.5 0a2.677 2.677 0 0 1-2.677 2.676h-1.49v.482h.291a.75.75 0 0 1 0 1.5h-.291v.708a.75.75 0 0 1-1.5 0v-.708H10a.75.75 0 0 1 0-1.5h.292v-.482H10a.75.75 0 0 1 0-1.5h.292V7.75h2.99a2.677 2.677 0 0 1 2.677 2.676" })] }));
|
|
7
|
+
exports.PayOutlineMd = PayOutlineMd;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { PayOutlineMd } from './public';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PayOutlineMd = void 0;
|
|
4
|
+
var public_1 = require("./public");
|
|
5
|
+
Object.defineProperty(exports, "PayOutlineMd", { enumerable: true, get: function () { return public_1.PayOutlineMd; } });
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { PayOutlineMd } from './PayOutlineMd';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PayOutlineMd = void 0;
|
|
4
|
+
var PayOutlineMd_1 = require("./PayOutlineMd");
|
|
5
|
+
Object.defineProperty(exports, "PayOutlineMd", { enumerable: true, get: function () { return PayOutlineMd_1.PayOutlineMd; } });
|
package/node/icons/index.d.ts
CHANGED
|
@@ -190,6 +190,7 @@ export { NumberOutlineMd } from './NumberOutlineMd';
|
|
|
190
190
|
export { OpenLinkOutlineMd } from './OpenLinkOutlineMd';
|
|
191
191
|
export { OutcomingDocumentOutlineMd } from './OutcomingDocumentOutlineMd';
|
|
192
192
|
export { PageDotOutlineMd } from './PageDotOutlineMd';
|
|
193
|
+
export { PayOutlineMd } from './PayOutlineMd';
|
|
193
194
|
export { PeopleOutlineMd } from './PeopleOutlineMd';
|
|
194
195
|
export { PhoneOutlineMd } from './PhoneOutlineMd';
|
|
195
196
|
export { PinOutlineMd } from './PinOutlineMd';
|
package/node/icons/index.js
CHANGED
|
@@ -3,9 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.PhoneFillSm = exports.PauseFillSm = exports.MailFillSm = exports.LocationFillSm = exports.LikeFillSm = exports.InfoFillSm = exports.ErrorFillSm = exports.DislikeFillSm = exports.ClockFillSm = exports.CircleErrorFillSm = exports.ArrowUpFillSm = exports.ArrowDFillSm = exports.WebFillMd = exports.WarningFillMd = exports.SupportFillMd = exports.SuccessFillMd = exports.StepSuccessFillMd = exports.StepFillMd = exports.StepErrorFillMd = exports.StepDefaultFillMd = exports.SettingsFillMd = exports.SentFillMd = exports.SendFillMd = exports.SaveFillMd = exports.QuestionFillMd = exports.ProfileFillMd = exports.ProductsFillMd = exports.PlusFillMd = exports.PluginFillMd = exports.PhotoFillMd = exports.LikeFillMd = exports.KeyFillMd = exports.InfoFillMd = exports.FilterFillMd = exports.EyeFillMd = exports.ErrorFillMd = exports.EducationFillMd = exports.EditFillMd = exports.DocSuccessFillMd = exports.DislikeFillMd = exports.CopyMailFillMd = exports.CompanyPicFillMd = exports.ClockFillMd = exports.CircleErrorFillMd = exports.CalculatorFillMd = exports.BookmarkFillMd = exports.BellFillMd = exports.AutosaveLoaderFillMd = exports.AutosaveFillMd = exports.AutosaveErrorFillMd = void 0;
|
|
4
4
|
exports.BasketOutlineMd = exports.BankOutlineMd = exports.AutosaveOutlineMd = exports.AutosaveLoaderOutlineMd = exports.AutosaveErrorOutlineMd = exports.AttachmentOutlineMd = exports.ArrowUpOutlineMd = exports.ArrowROutlineMd = exports.ArrowLOutlineMd = exports.ArrowDwnOutlineMd = exports.ArrayPatternOutlineMd = exports.ArchiveOutlineMd = exports.AnalyticOutlineMd = exports.AllCheckOutlineMd = exports.AddWorkplaceOutlineMd = exports.AddUserOutlineMd = exports.AddOutlineMd = exports.AddDocumentOutlineMd = exports.AddArrayOutlineMd = exports.AIOutlineMd = exports.AIBotOutlineMd = exports.YoutubeMonochromeFillMd = exports.YoutubeFillMd = exports.VkMonochromeFillMd = exports.VkFillMd = exports.TelegramMonochromeFillMd = exports.TelegramIconMonochromeFillMd = exports.TelegramFillMd = exports.RutokenFillMd = exports.OkMonochromeFillMd = exports.OkFillMd = exports.MaxMonochromeFillMd = exports.MaxFillMd = exports.JacartaFillMd = exports.GoogleMonochromeFillMd = exports.GoogleFillMd = exports.FacebookFillMd = exports.CryptoProFillMd = exports.WarningFillSm = exports.UpToDateFillSm = exports.SuccessFillSm = exports.StarFillSm = exports.SortUpFillSm = exports.SortFillSm = exports.SortDownFillSm = exports.SentFillSm = exports.RoundFillSm = exports.RectangleFillSm = exports.PlayFillSm = exports.PitFillSm = void 0;
|
|
5
5
|
exports.DownloadVOutlineMd = exports.DownloadOutlineMd = exports.DownOutlineMd = exports.DoublePreviousOutlineMd = exports.DoubleNextOutlineMd = exports.DotsVOutlineMd = exports.DotsOutlineMd = exports.DocumentsOutlineMd = exports.DocumentOutlineMd = exports.DocsArrayOutlineMd = exports.DocSignedOutlineMd = exports.DocRejectOutlineMd = exports.DocPatternOutlineMd = exports.DocOutlineMd = exports.DocNoSignatureOutlineMd = exports.DocIncomingOutlineMd = exports.DivisionsOutlineMd = exports.DislikeOutlineMd = exports.DialogOutlineMd = exports.DelegateOutlineMd = exports.CrossOutlineMd = exports.CreditCardOutlineMd = exports.CopyOutlineMd = exports.ContractorsOutlineMd = exports.CompanyOutlineMd = exports.CompanyAddOutlineMd = exports.ClockwiseOutlineMd = exports.ClockOutlineMd = exports.ChevronUpOutlineMd = exports.ChevronROutlineMd = exports.ChevronLOutlineMd = exports.ChevronDOutlineMd = exports.CheckOutlineMd = exports.CheckListOutlineMd = exports.CertOutlineMd = exports.CertGivenOutlineMd = exports.CertAddOutlineMd = exports.CassOutlineMd = exports.CashReceiptOutlineMd = exports.CaseOutlineMd = exports.CartOutlineMd = exports.CancelRouteOutlineMd = exports.CalendarOutlineMd = exports.BoxesOutlineMd = exports.BoxOutlineMd = exports.BookOutlineMd = exports.BlockOutlineMd = exports.BlockMessageOutlineMd = exports.BinOutlineMd = exports.BellOutlineMd = void 0;
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.TransferOutlineSm = exports.SuccessOutlineSm = exports.SortingOutlineSm = exports.SearchOutlineSm = exports.RouteOutlineSm = exports.RequestOutlineSm = exports.RefreshOutlineSm = exports.ProfileOutlineSm = exports.PageOutlineSm = exports.OpenLinkOutlineSm = exports.MessageOutlineSm = exports.LoaderOutlineSm = exports.LikeOutlineSm = exports.InfoOutlineSm = exports.EditOutlineSm = exports.DownloadVOutlineSm = exports.DoubleCheckOutlineSm = void 0;
|
|
6
|
+
exports.ProxyOutlineMd = exports.ProfileOutlineMd = exports.PrintOutlineMd = exports.PreviousOutlineMd = exports.PinOutlineMd = exports.PhoneOutlineMd = exports.PeopleOutlineMd = exports.PayOutlineMd = exports.PageDotOutlineMd = exports.OutcomingDocumentOutlineMd = exports.OpenLinkOutlineMd = exports.NumberOutlineMd = exports.NextOutlineMd = exports.NewsOutlineMd = exports.MinusOutlineMd = exports.MinimizeOutlineMd = exports.MessageOutlineMd = exports.MenuOnOutlineMd = exports.MenuOffOutlineMd = exports.MegaphoneOutlineMd = exports.MedListOutlineMd = exports.MarkDocOutlineMd = exports.MailOutlineMd = exports.LogisticOutlineMd = exports.LockOutlineMd = exports.LoaderOutlineMd = exports.ListDataOutlineMd = exports.LinkOutlineMd = exports.LikeOutlineMd = exports.LightingOnOutlineMd = exports.LightingOffOutlineMd = exports.InfoOutlineMd = exports.InArchiveOutlineMd = exports.HomeOutlineMd = exports.HistoryOutlineMd = exports.GroupsOutlineMd = exports.GroupOutlineMd = exports.GoToFolderOutlineMd = exports.FullSizeOutlineMd = exports.FolderOpOutlineMd = exports.FolderClOutlineMd = exports.FilterOutlineMd = exports.Filter2OutlineMd = exports.EyeOutlineMd = exports.EyeCrossedOutlineMd = exports.ExportOutlineMd = exports.EditOutlineMd = exports.DuplicateOutlineMd = exports.DragOutlineMd = exports.DraftOutlineMd = void 0;
|
|
7
|
+
exports.DocumentsOutlineSm = exports.DocumentOutlineSm = exports.DislikeOutlineSm = exports.CrossSmOutlineSm = exports.CrossOutlineSm = exports.CopyOutlineSm = exports.ClockOutlineSm = exports.CheckOutlineSm = exports.BlockOutlineSm = exports.ArrowUpOutlineSm = exports.ArrowROutlineSm = exports.ArrowLOutlineSm = exports.ArrowDwnOutlineSm = exports.AddSmOutlineSm = exports.AddOutlineSm = exports.UserCrossOutlineMd = exports.UserCheckOutlineMd = exports.UserArrowUpOutlineMd = exports.UserArrowDownOutlineMd = exports.UploadOutlineMd = exports.UpOutlineMd = exports.UnreadOutlineMd = exports.UnpinOutlineMd = exports.UnlockOutlineMd = exports.UnlinkOutlineMd = exports.UnGroupOutlineMd = exports.TreeOutlineMd = exports.TransferOutlineMd = exports.TagOutlineMd = exports.SupportOutlineMd = exports.StorageOutlineMd = exports.SortingVOutlineMd = exports.SortingOutlineMd = exports.Sorting2OutlineMd = exports.SortOutlineMd = exports.ShareOutlineMd = exports.SettingsOutlineMd = exports.SentMessageOutlineMd = exports.SendOutlineMd = exports.SearchOutlineMd = exports.SaveOutlineMd = exports.SaveCheckOutlineMd = exports.RouteOutlineMd = exports.RetryOutlineMd = exports.RequirementOutlineMd = exports.RefreshOutlineMd = exports.ReestablishOutlineMd = exports.QuitOutlineMd = exports.QuestionOutlineMd = exports.QrOutlineMd = void 0;
|
|
8
|
+
exports.TransferOutlineSm = exports.SuccessOutlineSm = exports.SortingOutlineSm = exports.SearchOutlineSm = exports.RouteOutlineSm = exports.RequestOutlineSm = exports.RefreshOutlineSm = exports.ProfileOutlineSm = exports.PageOutlineSm = exports.OpenLinkOutlineSm = exports.MessageOutlineSm = exports.LoaderOutlineSm = exports.LikeOutlineSm = exports.InfoOutlineSm = exports.EditOutlineSm = exports.DownloadVOutlineSm = exports.DoubleCheckOutlineSm = exports.DotOutlineSm = void 0;
|
|
9
9
|
var AutosaveErrorFillMd_1 = require("./AutosaveErrorFillMd");
|
|
10
10
|
Object.defineProperty(exports, "AutosaveErrorFillMd", { enumerable: true, get: function () { return AutosaveErrorFillMd_1.AutosaveErrorFillMd; } });
|
|
11
11
|
var AutosaveFillMd_1 = require("./AutosaveFillMd");
|
|
@@ -390,6 +390,8 @@ var OutcomingDocumentOutlineMd_1 = require("./OutcomingDocumentOutlineMd");
|
|
|
390
390
|
Object.defineProperty(exports, "OutcomingDocumentOutlineMd", { enumerable: true, get: function () { return OutcomingDocumentOutlineMd_1.OutcomingDocumentOutlineMd; } });
|
|
391
391
|
var PageDotOutlineMd_1 = require("./PageDotOutlineMd");
|
|
392
392
|
Object.defineProperty(exports, "PageDotOutlineMd", { enumerable: true, get: function () { return PageDotOutlineMd_1.PageDotOutlineMd; } });
|
|
393
|
+
var PayOutlineMd_1 = require("./PayOutlineMd");
|
|
394
|
+
Object.defineProperty(exports, "PayOutlineMd", { enumerable: true, get: function () { return PayOutlineMd_1.PayOutlineMd; } });
|
|
393
395
|
var PeopleOutlineMd_1 = require("./PeopleOutlineMd");
|
|
394
396
|
Object.defineProperty(exports, "PeopleOutlineMd", { enumerable: true, get: function () { return PeopleOutlineMd_1.PeopleOutlineMd; } });
|
|
395
397
|
var PhoneOutlineMd_1 = require("./PhoneOutlineMd");
|