@elcrm/form 0.0.1

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/README.md ADDED
File without changes
@@ -0,0 +1,8 @@
1
+ interface Button {
2
+ onClick?: Function;
3
+ onSend?: Function;
4
+ name: String;
5
+ onRef?: any;
6
+ }
7
+ export default function ({ onClick, onSend, name, onRef }: Button): import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1 @@
1
+ export default function ({ value, onValue, maxLength, placeholder, name, }: any): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,13 @@
1
+ interface Check {
2
+ onValue: (a: any) => void;
3
+ value?: any;
4
+ className?: string;
5
+ label?: string;
6
+ title?: string;
7
+ name?: string;
8
+ reload?: boolean;
9
+ text?: string;
10
+ id?: string;
11
+ }
12
+ export default function ({ onValue, label, value, title, className, name, text, id, reload, }: Check): import("react/jsx-runtime").JSX.Element;
13
+ export {};
package/dist/Code.d.ts ADDED
@@ -0,0 +1,22 @@
1
+ interface Input {
2
+ value?: string;
3
+ onValue?: Function;
4
+ onBlur?: Function;
5
+ onSave?: Function;
6
+ name?: string;
7
+ placeholder?: string;
8
+ title?: string;
9
+ label?: string;
10
+ error?: string;
11
+ hide?: boolean;
12
+ edit?: boolean;
13
+ active?: Boolean;
14
+ after?: string;
15
+ show?: Boolean;
16
+ view?: string;
17
+ className?: string;
18
+ real?: any;
19
+ empty?: any;
20
+ }
21
+ export default function ({ className, title, error, edit, real, onValue, empty, name, }: Input): import("react/jsx-runtime").JSX.Element;
22
+ export {};
@@ -0,0 +1,22 @@
1
+ interface Input {
2
+ value?: string;
3
+ onValue?: Function;
4
+ onBlur?: Function;
5
+ onSave?: Function;
6
+ name?: string;
7
+ placeholder?: string;
8
+ title?: string;
9
+ label?: string;
10
+ error?: string;
11
+ hide?: boolean;
12
+ edit?: boolean;
13
+ active?: Boolean;
14
+ after?: string;
15
+ length?: number;
16
+ show?: Boolean;
17
+ view?: string;
18
+ id?: string;
19
+ className?: string;
20
+ }
21
+ export default function ({ id, value, onValue, name, placeholder, title, error, hide, length, edit, active, after, show, view, onSave, className, }: Input): import("react/jsx-runtime").JSX.Element;
22
+ export {};
@@ -0,0 +1,20 @@
1
+ interface Input {
2
+ value?: string;
3
+ onValue?: Function;
4
+ onBlur?: Function;
5
+ onSave?: Function;
6
+ name?: string;
7
+ placeholder?: string;
8
+ title?: string;
9
+ label?: string;
10
+ error?: string;
11
+ hide?: boolean;
12
+ edit?: boolean;
13
+ active?: Boolean;
14
+ after?: string;
15
+ show?: Boolean;
16
+ view?: string;
17
+ className?: string;
18
+ }
19
+ export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, onSave, className, }: Input): import("react/jsx-runtime").JSX.Element | "";
20
+ export {};
@@ -0,0 +1 @@
1
+ export default function (props: any): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,21 @@
1
+ interface Input {
2
+ value?: string;
3
+ onValue?: Function;
4
+ onSave?: Function;
5
+ name?: string;
6
+ placeholder?: string;
7
+ title?: string;
8
+ label?: string;
9
+ error?: string;
10
+ hide?: boolean;
11
+ edit?: boolean;
12
+ active?: Boolean;
13
+ after?: string;
14
+ show?: Boolean;
15
+ view?: string;
16
+ separator: string;
17
+ className?: string;
18
+ max?: number;
19
+ }
20
+ export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, max, onSave, className, separator, }: Input): import("react/jsx-runtime").JSX.Element | "";
21
+ export {};
@@ -0,0 +1,22 @@
1
+ interface Input {
2
+ value?: string;
3
+ onValue?: Function;
4
+ onBlur?: Function;
5
+ onSave?: Function;
6
+ name?: string;
7
+ placeholder?: string;
8
+ title?: string;
9
+ label?: string;
10
+ error?: string;
11
+ hide?: boolean;
12
+ edit?: boolean;
13
+ active?: Boolean;
14
+ after?: string;
15
+ show?: Boolean;
16
+ view?: string;
17
+ link?: string;
18
+ className?: string;
19
+ type?: "png" | "jpeg" | "webp";
20
+ }
21
+ export default function ({ value, onValue, name, placeholder, title, link, error, hide, edit, active, after, show, type, view, onSave, className, }: Input): import("react/jsx-runtime").JSX.Element | "";
22
+ export {};
package/dist/Init.d.ts ADDED
@@ -0,0 +1 @@
1
+ export default function (): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,24 @@
1
+ interface Input {
2
+ value?: string;
3
+ onValue?: Function;
4
+ onSave?: Function;
5
+ name?: string;
6
+ placeholder?: string;
7
+ title?: string;
8
+ label?: string;
9
+ error?: string;
10
+ hide?: boolean;
11
+ edit?: boolean;
12
+ active?: Boolean;
13
+ after?: any;
14
+ before?: any;
15
+ show?: Boolean;
16
+ view?: string;
17
+ id?: string;
18
+ className?: string;
19
+ isCopy?: boolean;
20
+ maxLength?: number;
21
+ isReload?: boolean;
22
+ }
23
+ export default function ({ id, value, onValue, name, placeholder, title, error, hide, edit, active, after, before, show, maxLength, onSave, className, isCopy, isReload, }: Input): import("react/jsx-runtime").JSX.Element | "";
24
+ export {};
package/dist/Mask.d.ts ADDED
@@ -0,0 +1,19 @@
1
+ interface Input {
2
+ value?: string;
3
+ onValue?: Function;
4
+ onSave?: Function;
5
+ name?: string;
6
+ placeholder?: string;
7
+ title?: string;
8
+ error?: string;
9
+ hide?: boolean;
10
+ edit?: boolean;
11
+ show?: boolean;
12
+ active?: boolean;
13
+ after?: string;
14
+ view?: string;
15
+ format?: string;
16
+ className?: string;
17
+ }
18
+ export default function ({ value, onValue, onSave, name, format, placeholder, title, error, hide, edit, active, after, show, view, className, }: Input): import("react/jsx-runtime").JSX.Element;
19
+ export {};
@@ -0,0 +1,2 @@
1
+ declare const j: any;
2
+ export default j;
@@ -0,0 +1,15 @@
1
+ interface Message {
2
+ value?: any;
3
+ onValue?: any;
4
+ onActive?: any;
5
+ data?: any;
6
+ name?: any;
7
+ view?: any;
8
+ edit?: any;
9
+ active?: any;
10
+ placeholder?: any;
11
+ listen?: any;
12
+ maxLength?: number;
13
+ }
14
+ export default function ({ value, onValue, onActive, data, name, view, maxLength, edit, active, placeholder, }: Message): any;
15
+ export {};
@@ -0,0 +1,20 @@
1
+ interface Input {
2
+ value?: string;
3
+ onValue?: Function;
4
+ name: string;
5
+ placeholder?: string;
6
+ title?: string;
7
+ error?: string;
8
+ hide?: boolean;
9
+ edit?: boolean;
10
+ show?: boolean;
11
+ active?: boolean;
12
+ after?: string;
13
+ view?: string;
14
+ className?: string;
15
+ module: string;
16
+ modal?: string;
17
+ options?: any;
18
+ }
19
+ export default function ({ value, onValue, name, placeholder, title, error, hide, edit, show, active, after, view, modal, module, options, className, }: Input): import("react/jsx-runtime").JSX.Element;
20
+ export {};
@@ -0,0 +1,44 @@
1
+ type Input = {
2
+ value?: string;
3
+ onValue?: Function;
4
+ onSave?: Function;
5
+ name?: string;
6
+ placeholder?: string;
7
+ title?: string;
8
+ label?: string;
9
+ error?: string;
10
+ hide?: boolean;
11
+ edit?: boolean;
12
+ active?: Boolean;
13
+ after?: any;
14
+ show?: Boolean;
15
+ view?: string;
16
+ id?: string;
17
+ className?: string;
18
+ isCopy?: boolean;
19
+ maxLength?: number;
20
+ };
21
+ /**
22
+ * Input.Notes
23
+ * @param {object} props - параметры
24
+ * @param {string} [props.id] - id
25
+ * @param {string} [props.value] - значение
26
+ * @param {function} [props.onValue] - callback на изменение
27
+ * @param {string} [props.name] - имя
28
+ * @param {string} [props.placeholder] - placeholder
29
+ * @param {string} [props.title] - заголовок
30
+ * @param {string} [props.error] - ошибка
31
+ * @param {boolean} [props.hide] - скрыть
32
+ * @param {boolean} [props.edit] - редактировать
33
+ * @param {boolean} [props.active] - активность
34
+ * @param {string} [props.after] - контент после
35
+ * @param {boolean} [props.show] - отображать
36
+ * @param {number} [props.maxLength] - максимальная длина
37
+ * @param {string} [props.view] - тип view
38
+ * @param {function} [props.onSave] - callback на save
39
+ * @param {string} [props.className] - css class
40
+ * @param {boolean} [props.isCopy] - разрешить копирование
41
+ * @return {ReactElement} - поле ввода
42
+ */
43
+ export default function ({ id, value, onValue, name, placeholder, title, error, hide, edit, active, after, show, maxLength, view, onSave, className, isCopy, }: Input): import("react/jsx-runtime").JSX.Element | "";
44
+ export {};
@@ -0,0 +1,22 @@
1
+ type Data = {
2
+ value?: string;
3
+ onValue?: Function;
4
+ onSave?: Function;
5
+ name?: string;
6
+ placeholder?: string;
7
+ title?: string;
8
+ max?: number;
9
+ error?: string;
10
+ hide?: boolean;
11
+ edit?: Boolean;
12
+ active?: Boolean;
13
+ after?: any;
14
+ before?: any;
15
+ show?: Boolean;
16
+ view?: string;
17
+ className?: string;
18
+ item?: string;
19
+ maxLength?: number;
20
+ };
21
+ export default function Number({ onValue, onSave, active, max, edit, title, error, show, hide, value, placeholder, className, maxLength, name, after, before, view, }: Data): import("react/jsx-runtime").JSX.Element;
22
+ export {};
@@ -0,0 +1,22 @@
1
+ interface Input {
2
+ value?: string;
3
+ onValue?: Function;
4
+ name: string;
5
+ placeholder?: string;
6
+ title?: string;
7
+ error?: string;
8
+ hide?: boolean;
9
+ edit?: boolean;
10
+ show?: boolean;
11
+ active?: boolean;
12
+ after?: string;
13
+ view?: string;
14
+ className?: string;
15
+ module?: string;
16
+ modal?: string;
17
+ options?: any;
18
+ outFormat?: "array" | "string" | "object";
19
+ separator?: string;
20
+ }
21
+ export default function ({ value, onValue, name, placeholder, separator, title, error, hide, edit, active, outFormat, after, modal, options, className, }: Input): import("react/jsx-runtime").JSX.Element;
22
+ export {};
@@ -0,0 +1,9 @@
1
+ interface Palette {
2
+ onValue: Function;
3
+ name?: string;
4
+ item?: string;
5
+ value?: string;
6
+ label?: string;
7
+ }
8
+ declare const Palette: ({ label, onValue, value, name, item }: Palette) => import("react/jsx-runtime").JSX.Element;
9
+ export default Palette;
@@ -0,0 +1,23 @@
1
+ interface Data {
2
+ value?: string;
3
+ onValue?: Function;
4
+ onSave?: Function;
5
+ name?: string;
6
+ placeholder?: string;
7
+ title?: string;
8
+ error?: string;
9
+ hide?: string;
10
+ edit?: Boolean;
11
+ active?: Boolean;
12
+ after?: any;
13
+ show?: Boolean;
14
+ view?: string;
15
+ className?: string;
16
+ reload?: boolean;
17
+ native?: boolean;
18
+ isShow?: boolean;
19
+ maxLength?: number;
20
+ eyes?: any;
21
+ }
22
+ export default function ({ value, onValue, onSave, name, placeholder, className, title, error, edit, active, reload, native, isShow, maxLength, eyes, after, }: Data): import("react/jsx-runtime").JSX.Element | "";
23
+ export {};
@@ -0,0 +1,18 @@
1
+ interface Input {
2
+ value?: string;
3
+ onValue?: Function;
4
+ onSave?: Function;
5
+ name?: string;
6
+ placeholder?: string;
7
+ title?: string;
8
+ error?: string;
9
+ hide?: boolean;
10
+ edit?: boolean;
11
+ show?: boolean;
12
+ active?: boolean;
13
+ after?: string;
14
+ view?: string;
15
+ className?: string;
16
+ }
17
+ export default function ({ value, onValue, onSave, name, placeholder, title, error, hide, edit, active, after, show, view, className, }: Input): import("react/jsx-runtime").JSX.Element;
18
+ export {};
@@ -0,0 +1,9 @@
1
+ import { CSSProperties } from 'react';
2
+ export type TProgress = {
3
+ name?: string;
4
+ className?: string;
5
+ value?: any;
6
+ title?: any;
7
+ style?: CSSProperties;
8
+ };
9
+ export default function ({ name, value, title, style, className }: TProgress): import("react/jsx-runtime").JSX.Element;
File without changes
@@ -0,0 +1,2 @@
1
+ declare const Search: ({ className, title, timeout, placeholder, edit, active, value, onValue, maxLength, }: any) => import("react/jsx-runtime").JSX.Element;
2
+ export default Search;
@@ -0,0 +1,22 @@
1
+ export type TSelect = {
2
+ value?: number;
3
+ onValue?: Function;
4
+ name?: string;
5
+ isReload?: boolean;
6
+ placeholder?: string;
7
+ title?: string;
8
+ error?: string;
9
+ hide?: boolean;
10
+ edit?: Boolean;
11
+ active?: Boolean;
12
+ after?: string;
13
+ show?: Boolean;
14
+ view?: string;
15
+ className?: string;
16
+ options?: Record<number, {
17
+ n: string;
18
+ s: number;
19
+ }>;
20
+ order?: any;
21
+ };
22
+ export default function ({ title, error, edit, active, hide, value, onValue, options, placeholder, className, name, after, view, order, isReload, }: TSelect): import("react/jsx-runtime").JSX.Element | "";
@@ -0,0 +1,6 @@
1
+ interface Switch {
2
+ onClick: Function;
3
+ active?: any;
4
+ }
5
+ declare const Switch: ({ onClick, active }: Switch) => import("react/jsx-runtime").JSX.Element;
6
+ export default Switch;
@@ -0,0 +1,20 @@
1
+ interface Input {
2
+ value?: string;
3
+ onValue?: Function;
4
+ onSave?: Function;
5
+ name?: string;
6
+ placeholder?: string;
7
+ title?: string;
8
+ label?: string;
9
+ error?: string;
10
+ hide?: boolean;
11
+ edit?: boolean;
12
+ active?: Boolean;
13
+ after?: string;
14
+ show?: Boolean;
15
+ view?: string;
16
+ className?: string;
17
+ maxLength?: number;
18
+ }
19
+ export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, maxLength, onSave, className, }: Input): import("react/jsx-runtime").JSX.Element | "";
20
+ export {};
@@ -0,0 +1,8 @@
1
+ interface Toogle {
2
+ onValue: Function;
3
+ name?: string;
4
+ item?: string;
5
+ value?: string;
6
+ }
7
+ declare const Toogle: ({ onValue, value, name, item }: Toogle) => import("react/jsx-runtime").JSX.Element;
8
+ export default Toogle;
@@ -0,0 +1 @@
1
+ export default function (props: any): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export default function ({ title, error, edit, active, className, placeholder, max, min, view, onValue, name, value, after, }: any): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,22 @@
1
+ interface Input {
2
+ value?: string | number;
3
+ onValue?: Function;
4
+ onSave?: Function;
5
+ name?: string;
6
+ placeholder?: string;
7
+ title?: string;
8
+ label?: string;
9
+ error?: string;
10
+ hide?: boolean;
11
+ edit?: boolean;
12
+ active?: Boolean;
13
+ after?: string;
14
+ show?: Boolean;
15
+ view?: string;
16
+ type?: string;
17
+ className?: string;
18
+ course?: number;
19
+ isClear?: boolean;
20
+ }
21
+ export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, course, view, type, onSave, className, isClear, }: Input): import("react/jsx-runtime").JSX.Element | "";
22
+ export {};
@@ -0,0 +1,17 @@
1
+ interface Input {
2
+ value?: string;
3
+ onValue?: Function;
4
+ name?: string;
5
+ placeholder?: string;
6
+ title?: string;
7
+ error?: string;
8
+ hide?: string;
9
+ edit?: Boolean;
10
+ active?: Boolean;
11
+ after?: string;
12
+ show?: Boolean;
13
+ view?: string;
14
+ className?: string;
15
+ }
16
+ export default function ({ value, onValue, name, view, error, edit, active, title, placeholder, className, after, }: Input): import("react/jsx-runtime").JSX.Element;
17
+ export {};
package/dist/_Set.d.ts ADDED
File without changes
File without changes
package/dist/index.css ADDED
@@ -0,0 +1 @@
1
+ @charset "UTF-8";._notice_13j98_2{position:absolute;top:var(--notice-top);left:var(--notice-left);right:var(--notice-right);bottom:var(--notice-bottom);z-index:1111;font-family:var(--notice-family)}._notice_13j98_2 ._error_13j98_11{color:var(--notice-error, #bb2014)}._notice_13j98_2 ._success_13j98_14{color:var(--notice-success, #367738)}._notice_13j98_2 ._remark_13j98_17{color:var(--notice-remark, #b77513)}._notice_13j98_2 ._copy_13j98_20{color:var(--notice-copy, #3f51b5)}._notice_13j98_2 li{-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);display:block;width:300px;height:70px;border-radius:var(--notice-radius, 5px);box-shadow:0 0 0 1px var(--system-border),0 2px 2px #00000008,0 4px 4px #0000000a,0 10px 8px #0000000d,0 15px 15px #0000000f,0 30px 30px #00000012,0 70px 65px #00000017;background:var(--system-bg);overflow:hidden;cursor:pointer;margin:10px 0;transition:all 3s ease 0s;opacity:0}._notice_13j98_2 svg{float:left;width:50px;height:50px;margin:10px;font-size:40px;line-height:51px;text-align:center}._notice_13j98_2 b{width:222px;font-size:17px;font-weight:700;position:absolute;left:70px;display:block;margin-top:13px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._notice_13j98_2 p{color:var(--system-color);font-size:14px;width:222px;position:absolute;left:70px;display:block;margin-top:37px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._notice_13j98_2 [data-status=show]{opacity:1;transition:1s;animation:_show-notice_13j98_1 1s 1;animation-fill-mode:forwards}._notice_13j98_2 [data-status=hide]{opacity:1;transition:1s;animation:_hide-notice_13j98_1 1s 1;animation-fill-mode:forwards}@keyframes _show-notice_13j98_1{0%{opacity:0}to{opacity:1}}@keyframes _hide-notice_13j98_1{0%{opacity:1}to{opacity:0}}:root{--primary-light: #8abdff;--primary: #6d5dfc;--primary-dark: #5b0eeb;--white: #fff;--greyLight-1: #e4ebf5;--greyLight-2: #abb6d2;--greyLight-3: #bec8e4;--greyDark: #9baacf;--inset: inset 2px 2px 2px var(--shadow), inset -1px -1px 1px var(--shade);--modal-radius: 10px}[shake=true]{-webkit-animation-name:_shake_txgsc_1;animation-name:_shake_txgsc_1;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@keyframes _shake_txgsc_1{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(-10px,0,0)}20%,40%,60%,80%{transform:translate3d(10px,0,0)}}._modal_txgsc_79{position:fixed;top:0;left:0;right:0;bottom:0;z-index:10;display:flex}._modal_txgsc_79._size-a_txgsc_89 ._w_txgsc_15{width:auto;margin:auto 20px}._modal_txgsc_79._size-s_txgsc_94 ._w_txgsc_15{width:400px}._modal_txgsc_79._size-m_txgsc_98 ._w_txgsc_15{width:500px}._modal_txgsc_79._size-l_txgsc_102 ._w_txgsc_15{width:800px}._modal_txgsc_79._size-x_txgsc_106 ._w_txgsc_15{width:1000px}._modal_txgsc_79._size-f_txgsc_110 ._w_txgsc_15{width:100%;max-width:1200px;min-width:910px}._o_txgsc_116{position:fixed;top:0;left:0;right:0;bottom:0;background-color:var(--modal-background-overflow, rgba(0, 0, 0, .7215686275))}._w_txgsc_15{box-shadow:5px 7px 18px 0 var(--modal-background-overflow, rgba(0, 0, 0, .7215686275));background-image:var(--modal-background-image);background-color:var(--modal-background-color);border-radius:var(--modal-radius);position:relative;min-width:300px;margin:auto;border-radius:10px;width:400px;max-height:90%;display:flex;flex-flow:column nowrap;overflow:hidden}._h_txgsc_141{flex:1;font-size:15px;line-height:35px;font-weight:700;text-align:left;color:var(--modal-color);padding:10px 15px 5px 30px;user-select:none;-webkit-user-select:none;display:flex;z-index:1}._l_txgsc_155{border-radius:10px;font-size:15px;box-shadow:var(--inset);color:var(--modal-color);margin:10px;overflow:hidden;overflow-y:scroll;padding:5px 0}._l_txgsc_155 li{display:flex;margin:0 5px;padding:10px;position:relative}._l_txgsc_155 li:after{content:"";border-bottom:1px solid #ddd;position:absolute;bottom:0;left:5px;right:5px}._l_txgsc_155 li:last-child{border-bottom:0}._l_txgsc_155 li:hover{background:#00000012;cursor:pointer;border-radius:5px}._t_txgsc_192{padding-right:10px}._x_txgsc_196{cursor:pointer;color:var(--modal-exit);opacity:.5;display:flex}._x_txgsc_196 svg{width:20px}._x_txgsc_196:hover{opacity:1}._s_txgsc_89{flex:1;overflow-y:scroll}._c_txgsc_214{text-align:center;margin:20px}._f_txgsc_219{padding:0 20px;display:flex;flex-direction:column}._f_txgsc_219 dd{margin:0;background:var(--tinge);color:var(--color);box-shadow:var(--inset);border-radius:5px;min-height:33px;padding:7px 10px;flex:1 1}._f_txgsc_219 p{margin:auto;width:300px;padding:20px 0 5px;color:#1f253dc7;font-size:15px}._f_txgsc_219._row_txgsc_241 dl{margin:7px 0;flex:1 1;flex-direction:row;display:flex}._f_txgsc_219._row_txgsc_241 dt{padding:7px 10px;color:var(--text);margin-left:7px;flex:0 1 150px}._f_txgsc_219._col_txgsc_253 dt{padding-bottom:8px;margin-left:7px}._g_txgsc_258{display:flex;gap:10px;overflow:hidden}._c_txgsc_214{margin:10px 7px 20px;opacity:.8;box-shadow:var(--outset);border-radius:10px;padding:20px;flex:1;text-align:center;cursor:pointer}._c_txgsc_214:first-child{margin-left:20px}._c_txgsc_214:last-child{margin-right:20px}._c_txgsc_214:hover{opacity:1;background:var(--tinge)}._c_txgsc_214 i{font-size:70px;margin-bottom:20px;text-align:center;display:block;color:var(--disabled)}._c_txgsc_214 b{text-align:center;display:block;color:var(--color)}._c_txgsc_214 p{text-align:center;font-size:15px;color:var(--text)}._m_txgsc_79{flex:1}._btn_1k1b3_1{opacity:.7;padding:7px 25px;border-radius:5px;box-shadow:var(--outset);display:flex;justify-content:center;cursor:pointer;transition:.3s ease}._btn_1k1b3_1:hover{opacity:1}._confirm_1k1b3_15{background:var(--button-confirm-bg, #4caf50);color:var(--button-confirm-color, #fff)}._cancel_1k1b3_20{background:var(--button-cancel-bg, #f44336);color:var(--button-cancel-color, #fff)}._action_1k1b3_25{background:var(--button-action-bg, #4094f7);color:var(--button-action-color, #fff)}._disabled_1k1b3_30{background:var(--button-disabled-bg, #efefef);color:var(--button-disabled-color, #000);opacity:1;cursor:default}._await_1k1b3_37{background:var(--button-await-bg, #efefef);color:var(--button-await-color, #000);opacity:1;cursor:default}._m_1k1b3_44{min-width:200px}._l_1k1b3_48{flex:1}
@@ -0,0 +1,57 @@
1
+ import { default as Switch } from './Switch';
2
+ import { default as Input } from './Input';
3
+ import { default as Button } from './Button';
4
+ import { default as Message } from './Message';
5
+ import { default as Generator } from './Generator';
6
+ import { default as Captcha } from './Captcha';
7
+ import { default as Code } from './Code';
8
+ import { default as Color } from './Color';
9
+ import { default as Modal } from './Modal';
10
+ import { default as Notes } from './Notes';
11
+ import { default as Number } from './Number';
12
+ import { default as Password } from './Password';
13
+ import { default as Phone } from './Phone';
14
+ import { default as Select } from './Select';
15
+ import { default as Textarea } from './Textarea';
16
+ import { default as Users } from './Users';
17
+ import { default as Check } from './Check';
18
+ import { default as Palette } from './Palette';
19
+ import { default as Toogle } from './Toogle';
20
+ import { default as Group } from './Group';
21
+ import { default as Options } from './Options';
22
+ import { default as Image } from './Image';
23
+ import { default as Progress } from './Progress';
24
+ import { useData, setValue, runReload, useError } from './use';
25
+ declare const _default: {
26
+ Color: typeof Color;
27
+ Mask: typeof Image;
28
+ Image: typeof Image;
29
+ Code: typeof Code;
30
+ Check: typeof Check;
31
+ Switch: ({ onClick, active }: Switch) => import("react/jsx-runtime").JSX.Element;
32
+ Input: typeof Input;
33
+ Button: typeof Button;
34
+ Message: typeof Message;
35
+ Generator: typeof Generator;
36
+ Captcha: typeof Captcha;
37
+ Modal: typeof Modal;
38
+ Notes: typeof Notes;
39
+ Number: typeof Number;
40
+ Password: typeof Password;
41
+ Phone: typeof Phone;
42
+ Search: ({ className, title, timeout, placeholder, edit, active, value, onValue, maxLength, }: any) => import("react/jsx-runtime").JSX.Element;
43
+ Select: typeof Select;
44
+ Textarea: typeof Textarea;
45
+ Users: typeof Users;
46
+ String: typeof Input;
47
+ runReload: typeof runReload;
48
+ useData: typeof useData;
49
+ setValue: typeof setValue;
50
+ Palette: ({ label, onValue, value, name, item }: Palette) => import("react/jsx-runtime").JSX.Element;
51
+ Toogle: ({ onValue, value, name, item }: Toogle) => import("react/jsx-runtime").JSX.Element;
52
+ Group: typeof Group;
53
+ Options: typeof Options;
54
+ useError: typeof useError;
55
+ Progress: typeof Progress;
56
+ };
57
+ export default _default;