@lifesg/react-design-system 1.0.0-alpha.17 → 1.0.0-alpha.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/card/types.d.ts +1 -1
- package/checkbox/checkbox.d.ts +1 -1
- package/checkbox/index.js +6 -6
- package/checkbox/index.js.map +1 -1
- package/cjs/index.js +101 -29
- package/cjs/index.js.map +1 -1
- package/color/types.d.ts +1 -1
- package/date-input/date-input.d.ts +1 -1
- package/date-input/index.js +76 -76
- package/date-input/index.js.map +1 -1
- package/date-input/types.d.ts +6 -19
- package/feedback-rating/feedback-rating-stars-container.styles.d.ts +1 -1
- package/feedback-rating/feedback-rating.styles.d.ts +1 -1
- package/feedback-rating/index.js.map +1 -1
- package/footer/index.js +2 -2
- package/footer/index.js.map +1 -1
- package/footer/types.d.ts +2 -2
- package/form/index.js +455 -442
- package/form/index.js.map +1 -1
- package/form/types.d.ts +1 -1
- package/index.d.ts +1 -0
- package/index.js +101 -29
- package/index.js.map +1 -1
- package/input-group/index.js +14 -2
- package/input-group/index.js.map +1 -1
- package/input-group/types.d.ts +6 -6
- package/input-select/index.js +15 -3
- package/input-select/index.js.map +1 -1
- package/input-select/input-select-wrapper.d.ts +1 -1
- package/input-select/input-select.styles.d.ts +1 -0
- package/input-select/types.d.ts +11 -9
- package/input-textarea/types.d.ts +1 -1
- package/link-list/types.d.ts +1 -1
- package/modal/types.d.ts +3 -3
- package/navbar/brand.d.ts +1 -1
- package/navbar/index.js.map +1 -1
- package/navbar/types.d.ts +5 -5
- package/notification-banner/types.d.ts +1 -1
- package/overlay/types.d.ts +1 -1
- package/package.json +1 -1
- package/popover/types.d.ts +3 -3
- package/progress-indicator/types.d.ts +1 -1
- package/shared/dropdown-list/dropdown-list.styles.d.ts +1 -1
- package/shared/dropdown-list/types.d.ts +11 -11
- package/smart-app-banner/types.d.ts +1 -1
- package/timepicker/types.d.ts +3 -3
- package/unit-number/types.d.ts +5 -5
- package/util/date-helper.d.ts +19 -0
- package/util/index.d.ts +2 -0
package/footer/types.d.ts
CHANGED
|
@@ -19,13 +19,13 @@ export interface FooterProps<T = void> {
|
|
|
19
19
|
/** Custom component. This overrides the logo, links and download section */
|
|
20
20
|
children?: JSX.Element | JSX.Element[] | undefined;
|
|
21
21
|
/** Custom disclaimer link attributes */
|
|
22
|
-
disclaimerLinks?: DisclaimerLinks;
|
|
22
|
+
disclaimerLinks?: DisclaimerLinks | undefined;
|
|
23
23
|
/** A custom copyright text */
|
|
24
24
|
copyrightInfo?: string | undefined;
|
|
25
25
|
/** Custom logo source */
|
|
26
26
|
logoSrc?: string | undefined;
|
|
27
27
|
/** Last updated date value that is displayed in the bottom of the Footer */
|
|
28
28
|
lastUpdated?: Date | undefined;
|
|
29
|
-
onFooterLinkClick?: (link: FooterLinkProps<T>) => void | undefined;
|
|
29
|
+
onFooterLinkClick?: ((link: FooterLinkProps<T>) => void) | undefined;
|
|
30
30
|
}
|
|
31
31
|
export {};
|