@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.
- package/artifacts/dist/index.mjs +4083 -4043
- package/artifacts/dist/index.mjs.map +1 -1
- package/artifacts/dist/index.umd.js +2 -2
- package/artifacts/dist/index.umd.js.map +1 -1
- package/artifacts/dist/style.css +1 -1
- package/artifacts/dist/tailwind.css +107 -97
- package/artifacts/dist/types/components/cards/card-action/card-action-variants.d.ts +0 -6
- package/artifacts/dist/types/components/cards/card-action/card-action.d.ts +2 -2
- package/artifacts/dist/types/components/cards/card-expandable/card-expandable-style.d.ts +0 -13
- package/artifacts/dist/types/components/cards/card-general/card-general.d.ts +64 -0
- package/artifacts/dist/types/components/cards/card-general/index.d.ts +2 -0
- package/artifacts/dist/types/components/cards/card-section/card-section-helper/card-section-helper.d.ts +32 -0
- package/artifacts/dist/types/components/cards/card-section/card-section-helper/index.d.ts +2 -0
- package/artifacts/dist/types/components/cards/card-section/card-section-index/card-section-index.d.ts +24 -0
- package/artifacts/dist/types/components/cards/card-section/card-section-index/index.d.ts +2 -0
- package/artifacts/dist/types/components/cards/card-section/card-section-sitemap/card-section-sitemap.d.ts +32 -0
- package/artifacts/dist/types/components/cards/card-section/card-section-sitemap/index.d.ts +2 -0
- package/artifacts/dist/types/components/cards/card-section/card-section-types.d.ts +1 -0
- package/artifacts/dist/types/components/cards/card-section/index.d.ts +3 -0
- package/artifacts/dist/types/components/cards/index.d.ts +1 -0
- package/artifacts/dist/types/components/footer/federated-footer/federated-footer.d.ts +4 -0
- package/artifacts/dist/types/components/footer/models/CardFooterProps.d.ts +1 -0
- package/artifacts/dist/types/components/footer/public-footer/public-footer-highlight.d.ts +1 -0
- package/artifacts/dist/types/components/footer/public-footer/public-footer-main-plus-card-links.d.ts +1 -0
- package/artifacts/dist/types/components/footer/public-footer/public-footer.d.ts +4 -0
- package/artifacts/dist/types/components/footer/shared-components/footer-caption-partners.d.ts +1 -0
- package/artifacts/dist/types/components/footer/shared-components/footer-social-useful-copyright.d.ts +1 -0
- package/artifacts/dist/types/components/stepper/step.d.ts +4 -0
- package/artifacts/dist/types/components/stepper/stepper.d.ts +4 -0
- 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 };
|
|
@@ -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 };
|
|
@@ -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
|
*/
|