@mirantes-micro/foundation-design-system 1.2.417 → 1.2.419
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/index.d.ts +3 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -2219,11 +2219,13 @@ declare function PagesFeedTrigger({ onClick }: {
|
|
|
2219
2219
|
|
|
2220
2220
|
interface NavbarProps {
|
|
2221
2221
|
activeOverride?: "home" | "jobs" | "marketplace";
|
|
2222
|
+
basePath?: string;
|
|
2222
2223
|
}
|
|
2223
2224
|
|
|
2224
|
-
declare function Header({ className, activeOverride }: {
|
|
2225
|
+
declare function Header({ className, activeOverride, basePath }: {
|
|
2225
2226
|
className?: string;
|
|
2226
2227
|
activeOverride?: NavbarProps["activeOverride"];
|
|
2228
|
+
basePath?: NavbarProps["basePath"];
|
|
2227
2229
|
}): React__default.JSX.Element;
|
|
2228
2230
|
|
|
2229
2231
|
interface CandidaciesTriggerState {
|