@momo-webplatform/mobase 0.2.70 → 0.2.72
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/cjs/index.cjs +14 -14
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/index.d.cts +7 -3
- package/dist/esm/index.d.ts +7 -3
- package/dist/esm/index.js +15 -15
- package/dist/esm/index.js.map +1 -1
- package/package.json +3 -3
package/dist/cjs/index.d.cts
CHANGED
|
@@ -509,9 +509,13 @@ interface DateSelectProps {
|
|
|
509
509
|
* The earliest year to start the month navigation.
|
|
510
510
|
*/
|
|
511
511
|
toYear?: number;
|
|
512
|
+
/**
|
|
513
|
+
* disable unselect date
|
|
514
|
+
*/
|
|
515
|
+
disableUnselect?: boolean;
|
|
512
516
|
}
|
|
513
517
|
|
|
514
|
-
declare const DateSelect: ({ label, selected, onSelect, size, message, isError, disabled, dateFormat, lang, fromYear, toYear, }: DateSelectProps) => react_jsx_runtime.JSX.Element;
|
|
518
|
+
declare const DateSelect: ({ label, selected, onSelect, size, message, isError, disabled, dateFormat, lang, fromYear, toYear, disableUnselect, }: DateSelectProps) => react_jsx_runtime.JSX.Element;
|
|
515
519
|
|
|
516
520
|
declare const Dialog: React$1.FC<DialogPrimitive.DialogProps>;
|
|
517
521
|
declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1520,7 +1524,7 @@ interface FeatureSectionProps extends SectionBlockProps {
|
|
|
1520
1524
|
/**
|
|
1521
1525
|
* The template of the feature section.
|
|
1522
1526
|
*/
|
|
1523
|
-
template?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
1527
|
+
template?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11;
|
|
1524
1528
|
/**
|
|
1525
1529
|
* The data heading of the feature section.
|
|
1526
1530
|
*/
|
|
@@ -1563,7 +1567,7 @@ interface TestimonialData {
|
|
|
1563
1567
|
*/
|
|
1564
1568
|
description?: string;
|
|
1565
1569
|
/**
|
|
1566
|
-
* Rating of the testimonial. value from
|
|
1570
|
+
* Rating of the testimonial. value from 0 to 5. If value is 0, rating will be hidden.
|
|
1567
1571
|
*/
|
|
1568
1572
|
rating?: number;
|
|
1569
1573
|
/**
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -509,9 +509,13 @@ interface DateSelectProps {
|
|
|
509
509
|
* The earliest year to start the month navigation.
|
|
510
510
|
*/
|
|
511
511
|
toYear?: number;
|
|
512
|
+
/**
|
|
513
|
+
* disable unselect date
|
|
514
|
+
*/
|
|
515
|
+
disableUnselect?: boolean;
|
|
512
516
|
}
|
|
513
517
|
|
|
514
|
-
declare const DateSelect: ({ label, selected, onSelect, size, message, isError, disabled, dateFormat, lang, fromYear, toYear, }: DateSelectProps) => react_jsx_runtime.JSX.Element;
|
|
518
|
+
declare const DateSelect: ({ label, selected, onSelect, size, message, isError, disabled, dateFormat, lang, fromYear, toYear, disableUnselect, }: DateSelectProps) => react_jsx_runtime.JSX.Element;
|
|
515
519
|
|
|
516
520
|
declare const Dialog: React$1.FC<DialogPrimitive.DialogProps>;
|
|
517
521
|
declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1520,7 +1524,7 @@ interface FeatureSectionProps extends SectionBlockProps {
|
|
|
1520
1524
|
/**
|
|
1521
1525
|
* The template of the feature section.
|
|
1522
1526
|
*/
|
|
1523
|
-
template?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
1527
|
+
template?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11;
|
|
1524
1528
|
/**
|
|
1525
1529
|
* The data heading of the feature section.
|
|
1526
1530
|
*/
|
|
@@ -1563,7 +1567,7 @@ interface TestimonialData {
|
|
|
1563
1567
|
*/
|
|
1564
1568
|
description?: string;
|
|
1565
1569
|
/**
|
|
1566
|
-
* Rating of the testimonial. value from
|
|
1570
|
+
* Rating of the testimonial. value from 0 to 5. If value is 0, rating will be hidden.
|
|
1567
1571
|
*/
|
|
1568
1572
|
rating?: number;
|
|
1569
1573
|
/**
|