mblabs-roccato-frontend-commons 0.2.25 → 0.2.26
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.
|
@@ -42255,6 +42255,7 @@ function vDe({
|
|
|
42255
42255
|
Rw,
|
|
42256
42256
|
{
|
|
42257
42257
|
mode: "single",
|
|
42258
|
+
size: "compact",
|
|
42258
42259
|
selected: P,
|
|
42259
42260
|
onSelect: B,
|
|
42260
42261
|
formatLocale: m,
|
|
@@ -42268,6 +42269,7 @@ function vDe({
|
|
|
42268
42269
|
Rw,
|
|
42269
42270
|
{
|
|
42270
42271
|
mode: "multiple",
|
|
42272
|
+
size: "compact",
|
|
42271
42273
|
selected: P,
|
|
42272
42274
|
onSelect: V,
|
|
42273
42275
|
formatLocale: m,
|
|
@@ -42281,6 +42283,7 @@ function vDe({
|
|
|
42281
42283
|
Rw,
|
|
42282
42284
|
{
|
|
42283
42285
|
mode: "range",
|
|
42286
|
+
size: "compact",
|
|
42284
42287
|
selected: P,
|
|
42285
42288
|
onSelect: V,
|
|
42286
42289
|
formatLocale: m,
|
package/package.json
CHANGED
|
@@ -255,6 +255,7 @@ export function DatePicker({
|
|
|
255
255
|
return (
|
|
256
256
|
<Calendar
|
|
257
257
|
mode="single"
|
|
258
|
+
size="compact"
|
|
258
259
|
selected={date}
|
|
259
260
|
onSelect={handleSelect}
|
|
260
261
|
formatLocale={locale}
|
|
@@ -269,6 +270,7 @@ export function DatePicker({
|
|
|
269
270
|
return (
|
|
270
271
|
<Calendar
|
|
271
272
|
mode="multiple"
|
|
273
|
+
size="compact"
|
|
272
274
|
selected={dates}
|
|
273
275
|
onSelect={handleChange}
|
|
274
276
|
formatLocale={locale}
|
|
@@ -283,6 +285,7 @@ export function DatePicker({
|
|
|
283
285
|
return (
|
|
284
286
|
<Calendar
|
|
285
287
|
mode="range"
|
|
288
|
+
size="compact"
|
|
286
289
|
selected={range}
|
|
287
290
|
onSelect={handleChange}
|
|
288
291
|
formatLocale={locale}
|