@ama-pt/agora-design-system 3.3.4 → 3.3.5

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.
Files changed (30) hide show
  1. package/artifacts/dist/index.mjs +4083 -4043
  2. package/artifacts/dist/index.mjs.map +1 -1
  3. package/artifacts/dist/index.umd.js +2 -2
  4. package/artifacts/dist/index.umd.js.map +1 -1
  5. package/artifacts/dist/style.css +1 -1
  6. package/artifacts/dist/tailwind.css +107 -97
  7. package/artifacts/dist/types/components/cards/card-action/card-action-variants.d.ts +0 -6
  8. package/artifacts/dist/types/components/cards/card-action/card-action.d.ts +2 -2
  9. package/artifacts/dist/types/components/cards/card-expandable/card-expandable-style.d.ts +0 -13
  10. package/artifacts/dist/types/components/cards/card-general/card-general.d.ts +64 -0
  11. package/artifacts/dist/types/components/cards/card-general/index.d.ts +2 -0
  12. package/artifacts/dist/types/components/cards/card-section/card-section-helper/card-section-helper.d.ts +32 -0
  13. package/artifacts/dist/types/components/cards/card-section/card-section-helper/index.d.ts +2 -0
  14. package/artifacts/dist/types/components/cards/card-section/card-section-index/card-section-index.d.ts +24 -0
  15. package/artifacts/dist/types/components/cards/card-section/card-section-index/index.d.ts +2 -0
  16. package/artifacts/dist/types/components/cards/card-section/card-section-sitemap/card-section-sitemap.d.ts +32 -0
  17. package/artifacts/dist/types/components/cards/card-section/card-section-sitemap/index.d.ts +2 -0
  18. package/artifacts/dist/types/components/cards/card-section/card-section-types.d.ts +1 -0
  19. package/artifacts/dist/types/components/cards/card-section/index.d.ts +3 -0
  20. package/artifacts/dist/types/components/cards/index.d.ts +1 -0
  21. package/artifacts/dist/types/components/footer/federated-footer/federated-footer.d.ts +4 -0
  22. package/artifacts/dist/types/components/footer/models/CardFooterProps.d.ts +1 -0
  23. package/artifacts/dist/types/components/footer/public-footer/public-footer-highlight.d.ts +1 -0
  24. package/artifacts/dist/types/components/footer/public-footer/public-footer-main-plus-card-links.d.ts +1 -0
  25. package/artifacts/dist/types/components/footer/public-footer/public-footer.d.ts +4 -0
  26. package/artifacts/dist/types/components/footer/shared-components/footer-caption-partners.d.ts +1 -0
  27. package/artifacts/dist/types/components/footer/shared-components/footer-social-useful-copyright.d.ts +1 -0
  28. package/artifacts/dist/types/components/stepper/step.d.ts +4 -0
  29. package/artifacts/dist/types/components/stepper/stepper.d.ts +4 -0
  30. package/package.json +1 -1
@@ -43,6 +43,10 @@ export interface FederatedFooterProps {
43
43
  */
44
44
  usefulLinksAriaLabel?: string;
45
45
  copyright: string;
46
+ /**
47
+ * The flag to set if the footer is in dark mode or light mode.
48
+ */
49
+ darkMode?: boolean;
46
50
  }
47
51
  declare const FederatedFooter: FC<FederatedFooterProps>;
48
52
  export { FederatedFooter };
@@ -3,4 +3,5 @@ export type CardFooterProps = {
3
3
  title?: string | ReactNode;
4
4
  description?: string | ReactNode;
5
5
  links?: AnchorHTMLAttributes<HTMLAnchorElement>[];
6
+ darkMode?: boolean;
6
7
  };
@@ -6,5 +6,6 @@ declare const PublicFooterHighlight: FC<{
6
6
  card?: CardFooterProps;
7
7
  cardLinks?: CardLinksFooterProps;
8
8
  contacts?: ContactsFooterProps[];
9
+ darkMode?: boolean;
9
10
  }>;
10
11
  export { PublicFooterHighlight };
@@ -14,5 +14,6 @@ declare const PublicFooterMainPlusCardLinks: FC<{
14
14
  usefulLinksAriaLabel?: string;
15
15
  copyright: string | ReactNode;
16
16
  cardLinks: CardLinksFooterProps;
17
+ darkMode?: boolean;
17
18
  }>;
18
19
  export { PublicFooterMainPlusCardLinks };
@@ -52,6 +52,10 @@ export interface PublicFooterProps {
52
52
  */
53
53
  usefulLinksAriaLabel?: string;
54
54
  copyright: string | ReactNode;
55
+ /**
56
+ * The flag to set if the footer is in dark mode or light mode.
57
+ */
58
+ darkMode?: boolean;
55
59
  }
56
60
  declare const PublicFooter: FC<PublicFooterProps>;
57
61
  export { PublicFooter };
@@ -4,5 +4,6 @@ declare const FooterCaptionPartners: FC<{
4
4
  caption: string | ReactNode;
5
5
  partnersLogos: LinkableImagesProps[];
6
6
  partnersLogosAriaLabel?: string;
7
+ darkMode?: boolean;
7
8
  }>;
8
9
  export { FooterCaptionPartners };
@@ -6,5 +6,6 @@ declare const FooterSocialUsefulCopyright: FC<{
6
6
  copyright: string | ReactNode;
7
7
  socialsLinkAriaLabel?: string;
8
8
  usefulLinksAriaLabel?: string;
9
+ darkMode?: boolean;
9
10
  }>;
10
11
  export { FooterSocialUsefulCopyright };
@@ -14,5 +14,9 @@ export interface StepProps extends ComponentProps<'button'> {
14
14
  * The status of the step.
15
15
  */
16
16
  status?: StepStatusType;
17
+ /**
18
+ * Defines if the stepper is in dark mode or not.
19
+ */
20
+ darkMode?: BooleanProp;
17
21
  }
18
22
  export declare const Step: FC<StepProps>;
@@ -7,6 +7,10 @@ export interface StepperProps extends ComponentProps<'div'> {
7
7
  * Defines if the stepper is interactive or not.
8
8
  */
9
9
  interactive?: BooleanProp;
10
+ /**
11
+ * Defines if the stepper is in dark mode or not.
12
+ */
13
+ darkMode?: BooleanProp;
10
14
  /**
11
15
  * List of steps.
12
16
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ama-pt/agora-design-system",
3
3
  "description": "Ágora Design system",
4
- "version": "3.3.4",
4
+ "version": "3.3.5",
5
5
  "main": "artifacts/dist/index.mjs",
6
6
  "module": "artifacts/dist/index.umd.js",
7
7
  "files": [