@cntyclub/ui-react 0.1.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/chunk-HDGMSYQS.js +26461 -0
- package/dist/chunk-HDGMSYQS.js.map +1 -0
- package/dist/chunk-PR4QN5HX.js +39 -0
- package/dist/chunk-PR4QN5HX.js.map +1 -0
- package/dist/form.d.ts +175 -0
- package/dist/form.js +5207 -0
- package/dist/form.js.map +1 -0
- package/dist/index.d.ts +1462 -0
- package/dist/index.js +81862 -0
- package/dist/index.js.map +1 -0
- package/dist/input-CZvh825j.d.ts +24 -0
- package/dist/qr-code-styling-3Y6LZH6V.js +1123 -0
- package/dist/qr-code-styling-3Y6LZH6V.js.map +1 -0
- package/package.json +79 -0
- package/src/components/form/checkbox-group-field.tsx +101 -0
- package/src/components/form/date-field.tsx +79 -0
- package/src/components/form/date-range-field.tsx +106 -0
- package/src/components/form/form-context.ts +10 -0
- package/src/components/form/form.tsx +54 -0
- package/src/components/form/number-field.tsx +69 -0
- package/src/components/form/select-field.tsx +76 -0
- package/src/components/form/submit-button.tsx +28 -0
- package/src/components/form/text-field.tsx +107 -0
- package/src/components/layout/dashboard-header.tsx +54 -0
- package/src/components/layout/dashboard-panel.tsx +34 -0
- package/src/components/theme-provider.tsx +403 -0
- package/src/components/ui/accordion.tsx +69 -0
- package/src/components/ui/alert-dialog.tsx +169 -0
- package/src/components/ui/alert.tsx +80 -0
- package/src/components/ui/animated-theme-toggler.tsx +265 -0
- package/src/components/ui/app-store-buttons.tsx +182 -0
- package/src/components/ui/aspect-ratio.tsx +23 -0
- package/src/components/ui/autocomplete.tsx +296 -0
- package/src/components/ui/avatar-group.tsx +95 -0
- package/src/components/ui/avatar.tsx +285 -0
- package/src/components/ui/badge-group.tsx +160 -0
- package/src/components/ui/badge.tsx +172 -0
- package/src/components/ui/breadcrumb.tsx +112 -0
- package/src/components/ui/button.tsx +77 -0
- package/src/components/ui/calendar.tsx +137 -0
- package/src/components/ui/card.tsx +244 -0
- package/src/components/ui/carousel.tsx +258 -0
- package/src/components/ui/chart.tsx +379 -0
- package/src/components/ui/checkbox-group.tsx +16 -0
- package/src/components/ui/checkbox.tsx +82 -0
- package/src/components/ui/collapsible.tsx +45 -0
- package/src/components/ui/combobox.tsx +411 -0
- package/src/components/ui/command.tsx +264 -0
- package/src/components/ui/context-menu.tsx +271 -0
- package/src/components/ui/credit-card.tsx +214 -0
- package/src/components/ui/dialog.tsx +196 -0
- package/src/components/ui/drawer.tsx +135 -0
- package/src/components/ui/empty.tsx +127 -0
- package/src/components/ui/featured-icon.tsx +149 -0
- package/src/components/ui/field.tsx +88 -0
- package/src/components/ui/fieldset.tsx +29 -0
- package/src/components/ui/form.tsx +17 -0
- package/src/components/ui/frame.tsx +82 -0
- package/src/components/ui/generic-empty.tsx +142 -0
- package/src/components/ui/group.tsx +97 -0
- package/src/components/ui/horizontal-scroll-fader.tsx +228 -0
- package/src/components/ui/input-group.tsx +102 -0
- package/src/components/ui/input-otp.tsx +96 -0
- package/src/components/ui/input.tsx +66 -0
- package/src/components/ui/item.tsx +198 -0
- package/src/components/ui/kbd.tsx +30 -0
- package/src/components/ui/label.tsx +28 -0
- package/src/components/ui/menu.tsx +312 -0
- package/src/components/ui/menubar.tsx +93 -0
- package/src/components/ui/meter.tsx +67 -0
- package/src/components/ui/multi-select.tsx +308 -0
- package/src/components/ui/navigation-menu.tsx +143 -0
- package/src/components/ui/number-field.tsx +160 -0
- package/src/components/ui/pagination-controls.tsx +74 -0
- package/src/components/ui/pagination.tsx +149 -0
- package/src/components/ui/popover.tsx +119 -0
- package/src/components/ui/preview-card.tsx +55 -0
- package/src/components/ui/progress.tsx +289 -0
- package/src/components/ui/qr-code.tsx +150 -0
- package/src/components/ui/radio-group.tsx +103 -0
- package/src/components/ui/resizable.tsx +56 -0
- package/src/components/ui/scroll-area.tsx +90 -0
- package/src/components/ui/scroller.tsx +38 -0
- package/src/components/ui/section-header.tsx +118 -0
- package/src/components/ui/select.tsx +181 -0
- package/src/components/ui/separator.tsx +23 -0
- package/src/components/ui/sheet.tsx +224 -0
- package/src/components/ui/sidebar.tsx +744 -0
- package/src/components/ui/skeleton.tsx +16 -0
- package/src/components/ui/slider.tsx +108 -0
- package/src/components/ui/smooth-scroll.tsx +143 -0
- package/src/components/ui/social-button.tsx +247 -0
- package/src/components/ui/spinner-on-demand.tsx +32 -0
- package/src/components/ui/spinner.tsx +18 -0
- package/src/components/ui/stat.tsx +187 -0
- package/src/components/ui/stepper.tsx +167 -0
- package/src/components/ui/switch.tsx +56 -0
- package/src/components/ui/table.tsx +126 -0
- package/src/components/ui/tabs.tsx +90 -0
- package/src/components/ui/tag.tsx +229 -0
- package/src/components/ui/target-countdown.tsx +46 -0
- package/src/components/ui/text-editor.tsx +313 -0
- package/src/components/ui/textarea.tsx +51 -0
- package/src/components/ui/timeline.tsx +116 -0
- package/src/components/ui/toast.tsx +268 -0
- package/src/components/ui/toggle-group.tsx +101 -0
- package/src/components/ui/toggle.tsx +45 -0
- package/src/components/ui/toolbar.tsx +89 -0
- package/src/components/ui/tooltip.tsx +102 -0
- package/src/components/ui/vertical-scroll-fader.tsx +250 -0
- package/src/components/ui/video-player.tsx +275 -0
- package/src/components/upload/avatar-upload-base.tsx +131 -0
- package/src/components/upload/image-upload-base.tsx +112 -0
- package/src/form.ts +17 -0
- package/src/index.ts +125 -0
- package/src/lib/hooks/use-callback-ref.ts +15 -0
- package/src/lib/hooks/use-first-render.ts +11 -0
- package/src/lib/hooks/use-hover.ts +53 -0
- package/src/lib/hooks/use-is-tab-active.ts +17 -0
- package/src/lib/hooks/use-media-query.ts +164 -0
- package/src/lib/utils/css.ts +6 -0
- package/src/styles.css +300 -0
- package/src/types/helpers.ts +24 -0
- package/src/types/react.d.ts +7 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
|
|
8
|
+
get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
|
|
9
|
+
}) : x)(function(x) {
|
|
10
|
+
if (typeof require !== "undefined") return require.apply(this, arguments);
|
|
11
|
+
throw Error('Dynamic require of "' + x + '" is not supported');
|
|
12
|
+
});
|
|
13
|
+
var __commonJS = (cb, mod) => function __require2() {
|
|
14
|
+
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
15
|
+
};
|
|
16
|
+
var __export = (target, all) => {
|
|
17
|
+
for (var name in all)
|
|
18
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
19
|
+
};
|
|
20
|
+
var __copyProps = (to, from, except, desc) => {
|
|
21
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
22
|
+
for (let key of __getOwnPropNames(from))
|
|
23
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
24
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
25
|
+
}
|
|
26
|
+
return to;
|
|
27
|
+
};
|
|
28
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
29
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
30
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
31
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
32
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
33
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
34
|
+
mod
|
|
35
|
+
));
|
|
36
|
+
|
|
37
|
+
export { __commonJS, __export, __require, __toESM };
|
|
38
|
+
//# sourceMappingURL=chunk-PR4QN5HX.js.map
|
|
39
|
+
//# sourceMappingURL=chunk-PR4QN5HX.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"chunk-PR4QN5HX.js"}
|
package/dist/form.d.ts
ADDED
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
import * as React$1 from 'react';
|
|
2
|
+
import * as _tanstack_react_form from '@tanstack/react-form';
|
|
3
|
+
import { StandardSchemaV1Issue } from '@tanstack/react-form';
|
|
4
|
+
import { B as Button, I as Input } from './input-CZvh825j.js';
|
|
5
|
+
import 'class-variance-authority/types';
|
|
6
|
+
import '@base-ui/react/use-render';
|
|
7
|
+
import 'class-variance-authority';
|
|
8
|
+
import '@base-ui/react/input';
|
|
9
|
+
|
|
10
|
+
declare function CheckboxGroupField({ field, label, options, emptyMessage, description, }: {
|
|
11
|
+
field: {
|
|
12
|
+
name: string;
|
|
13
|
+
state: {
|
|
14
|
+
value: string[];
|
|
15
|
+
meta: {
|
|
16
|
+
readonly errors: ReadonlyArray<string | StandardSchemaV1Issue | undefined>;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
handleChange: (nextValue: string[]) => void;
|
|
20
|
+
};
|
|
21
|
+
label: string;
|
|
22
|
+
options: Array<{
|
|
23
|
+
value: string;
|
|
24
|
+
label: string;
|
|
25
|
+
description?: string;
|
|
26
|
+
disabled?: boolean;
|
|
27
|
+
}>;
|
|
28
|
+
emptyMessage?: string;
|
|
29
|
+
description?: string;
|
|
30
|
+
}): React$1.JSX.Element;
|
|
31
|
+
|
|
32
|
+
declare function DateField({ field, label, placeholder, }: {
|
|
33
|
+
field: {
|
|
34
|
+
name: string;
|
|
35
|
+
state: {
|
|
36
|
+
value: Date | undefined;
|
|
37
|
+
meta: {
|
|
38
|
+
readonly errors: ReadonlyArray<string | StandardSchemaV1Issue | undefined>;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
handleChange: (nextValue: Date | undefined) => void;
|
|
42
|
+
handleBlur: () => void;
|
|
43
|
+
};
|
|
44
|
+
label: string;
|
|
45
|
+
placeholder?: string;
|
|
46
|
+
}): React$1.JSX.Element;
|
|
47
|
+
|
|
48
|
+
declare function DateRangeField({ field, label, placeholder, numberOfMonths, }: {
|
|
49
|
+
field: {
|
|
50
|
+
name: string;
|
|
51
|
+
state: {
|
|
52
|
+
value: {
|
|
53
|
+
from: Date | undefined;
|
|
54
|
+
to: Date | undefined;
|
|
55
|
+
};
|
|
56
|
+
meta: {
|
|
57
|
+
readonly errors: ReadonlyArray<string | StandardSchemaV1Issue | undefined>;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
handleChange: (nextValue: {
|
|
61
|
+
from: Date | undefined;
|
|
62
|
+
to: Date | undefined;
|
|
63
|
+
}) => void;
|
|
64
|
+
handleBlur: () => void;
|
|
65
|
+
};
|
|
66
|
+
label: string;
|
|
67
|
+
placeholder?: string;
|
|
68
|
+
numberOfMonths?: number;
|
|
69
|
+
}): React$1.JSX.Element;
|
|
70
|
+
|
|
71
|
+
declare function NumberField({ field, label, min, className, }: {
|
|
72
|
+
field: {
|
|
73
|
+
name: string;
|
|
74
|
+
state: {
|
|
75
|
+
value: number;
|
|
76
|
+
meta: {
|
|
77
|
+
readonly errors: ReadonlyArray<string | StandardSchemaV1Issue | undefined>;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
handleChange: (nextValue: number) => void;
|
|
81
|
+
handleBlur: () => void;
|
|
82
|
+
};
|
|
83
|
+
label: string;
|
|
84
|
+
min?: number;
|
|
85
|
+
className?: string;
|
|
86
|
+
}): React$1.JSX.Element;
|
|
87
|
+
|
|
88
|
+
declare function SelectField({ field, label, placeholder, options, }: {
|
|
89
|
+
field: {
|
|
90
|
+
name: string;
|
|
91
|
+
state: {
|
|
92
|
+
value: string;
|
|
93
|
+
meta: {
|
|
94
|
+
readonly errors: ReadonlyArray<string | StandardSchemaV1Issue | undefined>;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
handleChange: (nextValue: string) => void;
|
|
98
|
+
handleBlur: () => void;
|
|
99
|
+
};
|
|
100
|
+
label: string;
|
|
101
|
+
placeholder?: string;
|
|
102
|
+
options: Array<{
|
|
103
|
+
value: string;
|
|
104
|
+
label: string;
|
|
105
|
+
}>;
|
|
106
|
+
}): React$1.JSX.Element;
|
|
107
|
+
|
|
108
|
+
interface SubmitButtonProps extends React.ComponentProps<typeof Button> {
|
|
109
|
+
icon?: React.ReactNode;
|
|
110
|
+
}
|
|
111
|
+
declare function SubmitButton({ children, disabled, icon, ...props }: SubmitButtonProps): React$1.JSX.Element;
|
|
112
|
+
|
|
113
|
+
declare function TextField({ field, label, placeholder, type, inlineLabel, leadingIcon, trailingIcon, }: {
|
|
114
|
+
field: {
|
|
115
|
+
name: string;
|
|
116
|
+
state: {
|
|
117
|
+
value: string;
|
|
118
|
+
meta: {
|
|
119
|
+
readonly errors: ReadonlyArray<string | StandardSchemaV1Issue | undefined>;
|
|
120
|
+
};
|
|
121
|
+
};
|
|
122
|
+
handleChange: (nextValue: string) => void;
|
|
123
|
+
handleBlur: () => void;
|
|
124
|
+
};
|
|
125
|
+
label: string;
|
|
126
|
+
placeholder?: string;
|
|
127
|
+
type?: React.ComponentProps<typeof Input>["type"];
|
|
128
|
+
/** Render label inside the input border as a block-start addon */
|
|
129
|
+
inlineLabel?: boolean;
|
|
130
|
+
/** Content rendered as an inline-start addon (e.g. an icon) */
|
|
131
|
+
leadingIcon?: React.ReactNode;
|
|
132
|
+
/** Content rendered as an inline-end addon (e.g. an icon) */
|
|
133
|
+
trailingIcon?: React.ReactNode;
|
|
134
|
+
}): React$1.JSX.Element;
|
|
135
|
+
|
|
136
|
+
declare const useAppForm: <TFormData, TOnMount extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnChange extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta>(props: _tanstack_react_form.FormOptions<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta>) => _tanstack_react_form.AppFieldExtendedReactFormApi<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta, {
|
|
137
|
+
readonly TextField: typeof TextField;
|
|
138
|
+
readonly CheckboxGroupField: typeof CheckboxGroupField;
|
|
139
|
+
readonly SelectField: typeof SelectField;
|
|
140
|
+
readonly DateField: typeof DateField;
|
|
141
|
+
readonly DateRangeField: typeof DateRangeField;
|
|
142
|
+
readonly NumberField: typeof NumberField;
|
|
143
|
+
}, {
|
|
144
|
+
readonly SubmitButton: typeof SubmitButton;
|
|
145
|
+
}>;
|
|
146
|
+
declare const withAppForm: <TFormData, TOnMount extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnChange extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic extends _tanstack_react_form.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer extends _tanstack_react_form.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta, TRenderProps extends object = {}>({ render, props, }: _tanstack_react_form.WithFormProps<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta, {
|
|
147
|
+
readonly TextField: typeof TextField;
|
|
148
|
+
readonly CheckboxGroupField: typeof CheckboxGroupField;
|
|
149
|
+
readonly SelectField: typeof SelectField;
|
|
150
|
+
readonly DateField: typeof DateField;
|
|
151
|
+
readonly DateRangeField: typeof DateRangeField;
|
|
152
|
+
readonly NumberField: typeof NumberField;
|
|
153
|
+
}, {
|
|
154
|
+
readonly SubmitButton: typeof SubmitButton;
|
|
155
|
+
}, TRenderProps>) => React$1.FunctionComponent<React$1.PropsWithChildren<NoInfer<[unknown] extends [TRenderProps] ? any : TRenderProps> & {
|
|
156
|
+
form: _tanstack_react_form.AppFieldExtendedReactFormApi<[unknown] extends [TFormData] ? any : TFormData, [_tanstack_react_form.FormValidateOrFn<TFormData> | undefined] extends [TOnMount] ? [TOnMount] extends [TOnMount & (_tanstack_react_form.FormValidateOrFn<TFormData> | undefined)] ? any : TOnMount : TOnMount, [_tanstack_react_form.FormValidateOrFn<TFormData> | undefined] extends [TOnChange] ? [TOnChange] extends [TOnChange & (_tanstack_react_form.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChange : TOnChange, [_tanstack_react_form.FormValidateOrFn<TFormData> | undefined] extends [TOnChangeAsync] ? [TOnChangeAsync] extends [TOnChangeAsync & (_tanstack_react_form.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChangeAsync : TOnChangeAsync, [_tanstack_react_form.FormValidateOrFn<TFormData> | undefined] extends [TOnBlur] ? [TOnBlur] extends [TOnBlur & (_tanstack_react_form.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlur : TOnBlur, [_tanstack_react_form.FormValidateOrFn<TFormData> | undefined] extends [TOnBlurAsync] ? [TOnBlurAsync] extends [TOnBlurAsync & (_tanstack_react_form.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlurAsync : TOnBlurAsync, [_tanstack_react_form.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmit] ? [TOnSubmit] extends [TOnSubmit & (_tanstack_react_form.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmit : TOnSubmit, [_tanstack_react_form.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmitAsync] ? [TOnSubmitAsync] extends [TOnSubmitAsync & (_tanstack_react_form.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmitAsync : TOnSubmitAsync, [_tanstack_react_form.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamic] ? [TOnDynamic] extends [TOnDynamic & (_tanstack_react_form.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamic : TOnDynamic, [_tanstack_react_form.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamicAsync] ? [TOnDynamicAsync] extends [TOnDynamicAsync & (_tanstack_react_form.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamicAsync : TOnDynamicAsync, [_tanstack_react_form.FormValidateOrFn<TFormData> | undefined] extends [TOnServer] ? [TOnServer] extends [TOnServer & (_tanstack_react_form.FormValidateOrFn<TFormData> | undefined)] ? any : TOnServer : TOnServer, [unknown] extends [TSubmitMeta] ? any : TSubmitMeta, {
|
|
157
|
+
readonly TextField: typeof TextField;
|
|
158
|
+
readonly CheckboxGroupField: typeof CheckboxGroupField;
|
|
159
|
+
readonly SelectField: typeof SelectField;
|
|
160
|
+
readonly DateField: typeof DateField;
|
|
161
|
+
readonly DateRangeField: typeof DateRangeField;
|
|
162
|
+
readonly NumberField: typeof NumberField;
|
|
163
|
+
}, {
|
|
164
|
+
readonly SubmitButton: typeof SubmitButton;
|
|
165
|
+
}>;
|
|
166
|
+
}>>;
|
|
167
|
+
declare const useCustomAppForm: typeof useAppForm;
|
|
168
|
+
declare const withCustomAppForm: typeof withAppForm;
|
|
169
|
+
|
|
170
|
+
declare const appFieldContext: React$1.Context<_tanstack_react_form.AnyFieldApi>;
|
|
171
|
+
declare const appFormContext: React$1.Context<_tanstack_react_form.AnyFormApi>;
|
|
172
|
+
declare const useAppFieldContext: <TData>() => _tanstack_react_form.FieldApi<any, string, TData, any, any, any, any, any, any, any, any, any, any, any, any, any, any, any, any, any, any, any, any>;
|
|
173
|
+
declare const useAppFormContext: () => _tanstack_react_form.ReactFormExtendedApi<Record<string, never>, any, any, any, any, any, any, any, any, any, any, any>;
|
|
174
|
+
|
|
175
|
+
export { CheckboxGroupField, DateField, DateRangeField, NumberField, SelectField, SubmitButton, TextField, appFieldContext, appFormContext, useAppFieldContext, useCustomAppForm as useAppForm, useAppFormContext, withCustomAppForm as withAppForm };
|