@veevarts/design-system 1.16.0 → 1.17.0-beta.2
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 +12 -0
- package/dist/components/DatePicker/DatePicker.d.ts +17 -0
- package/dist/components/DatePicker/index.d.ts +2 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/index.cjs +4 -4
- package/dist/index.js +7567 -7407
- package/dist/patterns/Summary/components/CollapseHeader.d.ts +6 -0
- package/package.json +1 -1
|
@@ -6,6 +6,12 @@ export interface CollapseHeaderProps {
|
|
|
6
6
|
label?: React.ReactNode;
|
|
7
7
|
amount: Money;
|
|
8
8
|
};
|
|
9
|
+
/** Optional primary-colored row mirrored under the Total in the compact bar
|
|
10
|
+
* (e.g. "Due Today"); cross-fades like the Total. */
|
|
11
|
+
secondaryTotal?: {
|
|
12
|
+
label: React.ReactNode;
|
|
13
|
+
amount: Money;
|
|
14
|
+
};
|
|
9
15
|
locale: string;
|
|
10
16
|
open: boolean;
|
|
11
17
|
/** Open progress 0→1; drives the cross-fade opacity. */
|