oddsgate-ds 1.0.177 → 1.0.179
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.js +4 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/atoms/AwardBadge/AwardBadge.interface.d.ts +1 -1
- package/dist/cjs/types/components/molecules/AwardCard/AwardCard.component.d.ts +1 -1
- package/dist/cjs/types/components/molecules/AwardCard/AwardCard.interface.d.ts +1 -4
- package/dist/esm/index.js +4 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/atoms/AwardBadge/AwardBadge.interface.d.ts +1 -1
- package/dist/esm/types/components/molecules/AwardCard/AwardCard.component.d.ts +1 -1
- package/dist/esm/types/components/molecules/AwardCard/AwardCard.interface.d.ts +1 -4
- package/dist/types.d.ts +3 -6
- package/package.json +1 -1
- package/src/components/atoms/AwardBadge/AwardBadge.interface.ts +1 -1
- package/src/components/atoms/AwardBadge/AwardBadge.stories.tsx +12 -0
- package/src/components/atoms/AwardBadge/AwardBadge.theme.ts +5 -0
- package/src/components/atoms/Button/Button.stories.tsx +1 -1
- package/src/components/atoms/Button/Button.theme.ts +10 -5
- package/src/components/molecules/AwardCard/AwardCard.component.tsx +3 -3
- package/src/components/molecules/AwardCard/AwardCard.interface.ts +1 -4
- package/src/components/molecules/AwardCard/AwardCard.stories.tsx +1 -4
|
@@ -11,5 +11,5 @@ import React from 'react';
|
|
|
11
11
|
* @param {{ variant: string; label: string }} [props.chip] - Optional chip object to display a badge, with variant and label.
|
|
12
12
|
* @returns {JSX.Element} The rendered AwardCard component.
|
|
13
13
|
*/
|
|
14
|
-
declare const AwardCard: ({ title, imageElement, className, style,
|
|
14
|
+
declare const AwardCard: ({ title, imageElement, className, style, chipLabel, ...props }: IAwardCard) => React.JSX.Element;
|
|
15
15
|
export default AwardCard;
|