mn-angular-lib 1.0.17 → 1.0.18
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/package.json
CHANGED
|
@@ -175,7 +175,10 @@ declare const mnButtonVariants: tailwind_variants.TVReturnType<{
|
|
|
175
175
|
disabled: {
|
|
176
176
|
true: string;
|
|
177
177
|
};
|
|
178
|
-
|
|
178
|
+
noWrap: {
|
|
179
|
+
true: string;
|
|
180
|
+
};
|
|
181
|
+
}, undefined, "hover:cursor-pointer transition-all duration-300 ease-in-out", {
|
|
179
182
|
size: {
|
|
180
183
|
sm: string;
|
|
181
184
|
md: string;
|
|
@@ -209,6 +212,9 @@ declare const mnButtonVariants: tailwind_variants.TVReturnType<{
|
|
|
209
212
|
disabled: {
|
|
210
213
|
true: string;
|
|
211
214
|
};
|
|
215
|
+
noWrap: {
|
|
216
|
+
true: string;
|
|
217
|
+
};
|
|
212
218
|
}, undefined, tailwind_variants.TVReturnType<{
|
|
213
219
|
size: {
|
|
214
220
|
sm: string;
|
|
@@ -243,7 +249,10 @@ declare const mnButtonVariants: tailwind_variants.TVReturnType<{
|
|
|
243
249
|
disabled: {
|
|
244
250
|
true: string;
|
|
245
251
|
};
|
|
246
|
-
|
|
252
|
+
noWrap: {
|
|
253
|
+
true: string;
|
|
254
|
+
};
|
|
255
|
+
}, undefined, "hover:cursor-pointer transition-all duration-300 ease-in-out", unknown, unknown, undefined>>;
|
|
247
256
|
type MnButtonVariants = VariantProps<typeof mnButtonVariants>;
|
|
248
257
|
|
|
249
258
|
interface MnButtonTypes {
|
|
@@ -252,6 +261,7 @@ interface MnButtonTypes {
|
|
|
252
261
|
borderRadius: MnButtonVariants['borderRadius'];
|
|
253
262
|
color: MnButtonVariants['color'];
|
|
254
263
|
disabled?: MnButtonVariants['disabled'];
|
|
264
|
+
noWrap?: MnButtonVariants['noWrap'];
|
|
255
265
|
}
|
|
256
266
|
|
|
257
267
|
declare class MnButton {
|