mn-angular-lib 1.0.28 → 1.0.30
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
|
@@ -149,6 +149,10 @@ declare const mnBadgeVariants: tailwind_variants.TVReturnType<{
|
|
|
149
149
|
lg: string;
|
|
150
150
|
xl: string;
|
|
151
151
|
};
|
|
152
|
+
variant: {
|
|
153
|
+
default: string;
|
|
154
|
+
fill: string;
|
|
155
|
+
};
|
|
152
156
|
wrap: {
|
|
153
157
|
true: string;
|
|
154
158
|
false: string;
|
|
@@ -169,6 +173,10 @@ declare const mnBadgeVariants: tailwind_variants.TVReturnType<{
|
|
|
169
173
|
lg: string;
|
|
170
174
|
xl: string;
|
|
171
175
|
};
|
|
176
|
+
variant: {
|
|
177
|
+
default: string;
|
|
178
|
+
fill: string;
|
|
179
|
+
};
|
|
172
180
|
wrap: {
|
|
173
181
|
true: string;
|
|
174
182
|
false: string;
|
|
@@ -189,6 +197,10 @@ declare const mnBadgeVariants: tailwind_variants.TVReturnType<{
|
|
|
189
197
|
lg: string;
|
|
190
198
|
xl: string;
|
|
191
199
|
};
|
|
200
|
+
variant: {
|
|
201
|
+
default: string;
|
|
202
|
+
fill: string;
|
|
203
|
+
};
|
|
192
204
|
wrap: {
|
|
193
205
|
true: string;
|
|
194
206
|
false: string;
|
|
@@ -207,6 +219,7 @@ type MnBadgeVariants = VariantProps<typeof mnBadgeVariants>;
|
|
|
207
219
|
|
|
208
220
|
interface MnBadgeTypes {
|
|
209
221
|
size: MnBadgeVariants['size'];
|
|
222
|
+
variant: MnBadgeVariants['variant'];
|
|
210
223
|
color: MnBadgeVariants['color'];
|
|
211
224
|
wrap: MnBadgeVariants['wrap'];
|
|
212
225
|
}
|
|
@@ -237,6 +250,7 @@ declare const mnButtonVariants: tailwind_variants.TVReturnType<{
|
|
|
237
250
|
warning: string;
|
|
238
251
|
success: string;
|
|
239
252
|
accent: string;
|
|
253
|
+
gray: string;
|
|
240
254
|
};
|
|
241
255
|
borderRadius: {
|
|
242
256
|
none: string;
|
|
@@ -275,6 +289,7 @@ declare const mnButtonVariants: tailwind_variants.TVReturnType<{
|
|
|
275
289
|
warning: string;
|
|
276
290
|
success: string;
|
|
277
291
|
accent: string;
|
|
292
|
+
gray: string;
|
|
278
293
|
};
|
|
279
294
|
borderRadius: {
|
|
280
295
|
none: string;
|
|
@@ -313,6 +328,7 @@ declare const mnButtonVariants: tailwind_variants.TVReturnType<{
|
|
|
313
328
|
warning: string;
|
|
314
329
|
success: string;
|
|
315
330
|
accent: string;
|
|
331
|
+
gray: string;
|
|
316
332
|
};
|
|
317
333
|
borderRadius: {
|
|
318
334
|
none: string;
|
|
@@ -4101,6 +4117,8 @@ declare class CalendarViewComponent implements OnInit, OnDestroy {
|
|
|
4101
4117
|
goToToday(): void;
|
|
4102
4118
|
/** Handles the date-picker input change. */
|
|
4103
4119
|
onDateInputChange(event: Event): void;
|
|
4120
|
+
/** Handles the mn-lib-datetime ngModel change. */
|
|
4121
|
+
onDateStringChange(value: string): void;
|
|
4104
4122
|
/** Handles a day click from the month view — switches to day view. */
|
|
4105
4123
|
onMonthDayClick(date: Date): void;
|
|
4106
4124
|
/** Forwards a child event click to the parent output. */
|