prisma-goat 0.2.8 → 0.2.9
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 +1 -1
- package/dist/prisma-goat.d.ts +79 -0
- package/dist/prisma-goat.js +2397 -2150
- package/dist/prisma-goat.umd.cjs +8 -8
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/prisma-goat.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { default as default_2 } from 'react';
|
|
|
4
4
|
import { ForwardRefExoticComponent } from 'react';
|
|
5
5
|
import { HTMLAttributes } from 'react';
|
|
6
6
|
import { IconType } from 'react-icons';
|
|
7
|
+
import { InputHTMLAttributes } from 'react';
|
|
7
8
|
import { ReactNode } from 'react';
|
|
8
9
|
import { RefAttributes } from 'react';
|
|
9
10
|
|
|
@@ -105,6 +106,84 @@ export declare type HeaderProps = HTMLAttributes<HTMLElement> & {
|
|
|
105
106
|
handletext5?: () => void;
|
|
106
107
|
};
|
|
107
108
|
|
|
109
|
+
export declare const Input: default_2.ForwardRefExoticComponent<{
|
|
110
|
+
variant?: "primary" | "secondary" | "vividPink" | "darkMagenta" | "veryDarkViolet" | "danger" | "warning" | "success" | "tertiary";
|
|
111
|
+
size?: "small" | "medium" | "large";
|
|
112
|
+
disabled?: boolean;
|
|
113
|
+
hasIcon?: "home" | "Left" | "save" | "more" | "right" | "update" | "attach" | "send" | "delete" | "edit" | "login" | "reset" | "add" | "exit" | "off" | "calculator" | "list" | "futbol";
|
|
114
|
+
icon?: ComponentType<{
|
|
115
|
+
className?: string;
|
|
116
|
+
}> | default_2.ReactNode;
|
|
117
|
+
placeholder?: string;
|
|
118
|
+
title?: string;
|
|
119
|
+
info?: boolean;
|
|
120
|
+
infoText?: string;
|
|
121
|
+
positionIcon?: "left" | "right";
|
|
122
|
+
type?: "text" | "password" | "email" | "number";
|
|
123
|
+
error?: boolean;
|
|
124
|
+
errorMessage?: string;
|
|
125
|
+
} & default_2.InputHTMLAttributes<HTMLInputElement> & default_2.RefAttributes<HTMLInputElement>>;
|
|
126
|
+
|
|
127
|
+
export declare type InputProps = {
|
|
128
|
+
variant?: "primary" | "secondary" | "vividPink" | "darkMagenta" | "veryDarkViolet" | "danger" | "warning" | "success" | "tertiary";
|
|
129
|
+
size?: "small" | "medium" | "large";
|
|
130
|
+
disabled?: boolean;
|
|
131
|
+
hasIcon?: "home" | "Left" | "save" | "more" | "right" | "update" | "attach" | "send" | "delete" | "edit" | "login" | "reset" | "add" | "exit" | "off" | "calculator" | "list" | "futbol";
|
|
132
|
+
icon?: ComponentType<{
|
|
133
|
+
className?: string;
|
|
134
|
+
}> | default_2.ReactNode;
|
|
135
|
+
placeholder?: string;
|
|
136
|
+
title?: string;
|
|
137
|
+
info?: boolean;
|
|
138
|
+
infoText?: string;
|
|
139
|
+
positionIcon?: "left" | "right";
|
|
140
|
+
type?: "text" | "password" | "email" | "number";
|
|
141
|
+
error?: boolean;
|
|
142
|
+
errorMessage?: string;
|
|
143
|
+
} & InputHTMLAttributes<HTMLInputElement>;
|
|
144
|
+
|
|
145
|
+
export declare const InputSelect: default_2.ForwardRefExoticComponent<{
|
|
146
|
+
variant?: "primary" | "secondary" | "vividPink" | "darkMagenta" | "veryDarkViolet" | "danger" | "warning" | "success" | "tertiary";
|
|
147
|
+
size?: "small" | "medium" | "large";
|
|
148
|
+
disabled?: boolean;
|
|
149
|
+
hasIcon?: "home" | "Left" | "save" | "more" | "right" | "update" | "attach" | "send" | "delete" | "edit" | "login" | "reset" | "add" | "exit" | "off" | "calculator" | "list" | "futbol";
|
|
150
|
+
icon?: ComponentType<{
|
|
151
|
+
className?: string;
|
|
152
|
+
}> | default_2.ReactNode;
|
|
153
|
+
placeholder?: string;
|
|
154
|
+
title?: string;
|
|
155
|
+
info?: boolean;
|
|
156
|
+
infoText?: string;
|
|
157
|
+
positionIcon?: "left" | "right";
|
|
158
|
+
error?: boolean;
|
|
159
|
+
errorMessage?: string;
|
|
160
|
+
options: {
|
|
161
|
+
label: string;
|
|
162
|
+
value: string | number;
|
|
163
|
+
}[];
|
|
164
|
+
} & default_2.InputHTMLAttributes<HTMLSelectElement> & default_2.RefAttributes<HTMLSelectElement>>;
|
|
165
|
+
|
|
166
|
+
export declare type InputSelectProps = {
|
|
167
|
+
variant?: "primary" | "secondary" | "vividPink" | "darkMagenta" | "veryDarkViolet" | "danger" | "warning" | "success" | "tertiary";
|
|
168
|
+
size?: "small" | "medium" | "large";
|
|
169
|
+
disabled?: boolean;
|
|
170
|
+
hasIcon?: "home" | "Left" | "save" | "more" | "right" | "update" | "attach" | "send" | "delete" | "edit" | "login" | "reset" | "add" | "exit" | "off" | "calculator" | "list" | "futbol";
|
|
171
|
+
icon?: ComponentType<{
|
|
172
|
+
className?: string;
|
|
173
|
+
}> | default_2.ReactNode;
|
|
174
|
+
placeholder?: string;
|
|
175
|
+
title?: string;
|
|
176
|
+
info?: boolean;
|
|
177
|
+
infoText?: string;
|
|
178
|
+
positionIcon?: "left" | "right";
|
|
179
|
+
error?: boolean;
|
|
180
|
+
errorMessage?: string;
|
|
181
|
+
options: {
|
|
182
|
+
label: string;
|
|
183
|
+
value: string | number;
|
|
184
|
+
}[];
|
|
185
|
+
} & InputHTMLAttributes<HTMLSelectElement>;
|
|
186
|
+
|
|
108
187
|
export declare const LoadingIndicator: ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
109
188
|
variant?: "primary" | "secondary" | "vividPink" | "darkMagenta" | "veryDarkViolet" | "danger" | "warning" | "success";
|
|
110
189
|
background?: "black" | "white";
|