@otl-core/next-navigation 1.1.19 → 1.1.21
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/components/icons/chevron-icon.d.ts +10 -0
- package/dist/components/icons/chevron-icon.js +30 -0
- package/dist/components/icons/chevron-icon.js.map +1 -0
- package/dist/components/icons/grid-icon.d.ts +12 -0
- package/dist/components/icons/grid-icon.js +95 -0
- package/dist/components/icons/grid-icon.js.map +1 -0
- package/dist/components/icons/hamburger-icon.d.ts +12 -0
- package/dist/components/icons/hamburger-icon.js +78 -0
- package/dist/components/icons/hamburger-icon.js.map +1 -0
- package/dist/components/icons/kebab-icon.d.ts +12 -0
- package/dist/components/icons/kebab-icon.js +81 -0
- package/dist/components/icons/kebab-icon.js.map +1 -0
- package/dist/components/icons/meatballs-icon.d.ts +12 -0
- package/dist/components/icons/meatballs-icon.js +81 -0
- package/dist/components/icons/meatballs-icon.js.map +1 -0
- package/dist/components/icons/plus-icon.d.ts +12 -0
- package/dist/components/icons/plus-icon.js +64 -0
- package/dist/components/icons/plus-icon.js.map +1 -0
- package/dist/components/icons/toggle-icon-map.d.ts +14 -0
- package/dist/components/icons/toggle-icon-map.js +22 -0
- package/dist/components/icons/toggle-icon-map.js.map +1 -0
- package/dist/components/icons/toggle-icon.d.ts +14 -0
- package/dist/components/icons/toggle-icon.js +39 -0
- package/dist/components/icons/toggle-icon.js.map +1 -0
- package/dist/components/items/animated-toggle-icon.d.ts +15 -0
- package/dist/components/items/animated-toggle-icon.js +39 -0
- package/dist/components/items/animated-toggle-icon.js.map +1 -0
- package/dist/components/items/dropdown-content-item.d.ts +12 -0
- package/dist/components/items/dropdown-content-item.js +223 -0
- package/dist/components/items/dropdown-content-item.js.map +1 -0
- package/dist/components/items/logo.d.ts +11 -0
- package/dist/components/items/logo.js +42 -0
- package/dist/components/items/logo.js.map +1 -0
- package/dist/components/mobile/mobile-menu-toggle.d.ts +12 -0
- package/dist/components/mobile/mobile-menu-toggle.js +53 -0
- package/dist/components/mobile/mobile-menu-toggle.js.map +1 -0
- package/dist/components/mobile/navigation-header-wrapper.d.ts +11 -0
- package/dist/components/mobile/navigation-header-wrapper.js +15 -0
- package/dist/components/mobile/navigation-header-wrapper.js.map +1 -0
- package/dist/components/navigation/dropdown.d.ts +19 -0
- package/dist/components/navigation/dropdown.js +258 -0
- package/dist/components/navigation/dropdown.js.map +1 -0
- package/dist/components/navigation/header.d.ts +13 -0
- package/dist/components/navigation/header.js +305 -0
- package/dist/components/navigation/header.js.map +1 -0
- package/dist/components/navigation/navbar.d.ts +21 -0
- package/dist/components/navigation/navbar.js +66 -0
- package/dist/components/navigation/navbar.js.map +1 -0
- package/dist/components/sections/navbar-sections.d.ts +23 -0
- package/dist/components/sections/navbar-sections.js +103 -0
- package/dist/components/sections/navbar-sections.js.map +1 -0
- package/dist/components/sections/navigation-item.d.ts +13 -0
- package/dist/components/sections/navigation-item.js +171 -0
- package/dist/components/sections/navigation-item.js.map +1 -0
- package/dist/components/ui/button.d.ts +14 -0
- package/dist/components/ui/button.js +51 -0
- package/dist/components/ui/button.js.map +1 -0
- package/dist/context/navigation-context.d.ts +17 -0
- package/dist/context/navigation-context.js +93 -0
- package/dist/context/navigation-context.js.map +1 -0
- package/dist/index.d.ts +12 -86
- package/dist/index.js +19 -2077
- package/dist/index.js.map +1 -1
- package/dist/lib/footer.utils.d.ts +20 -0
- package/dist/lib/footer.utils.js +84 -0
- package/dist/lib/footer.utils.js.map +1 -0
- package/dist/lib/navigation.utils.d.ts +34 -0
- package/dist/lib/navigation.utils.js +387 -0
- package/dist/lib/navigation.utils.js.map +1 -0
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -1,86 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
declare const Header: React__default.FC<NavigationHeaderProps>;
|
|
14
|
-
|
|
15
|
-
interface ChevronIconProps {
|
|
16
|
-
isOpen: boolean;
|
|
17
|
-
className?: string;
|
|
18
|
-
size?: number;
|
|
19
|
-
}
|
|
20
|
-
declare function ChevronIcon({ isOpen, className, size, }: ChevronIconProps): react_jsx_runtime.JSX.Element;
|
|
21
|
-
|
|
22
|
-
interface GridIconProps {
|
|
23
|
-
isOpen: boolean;
|
|
24
|
-
className?: string;
|
|
25
|
-
size?: number;
|
|
26
|
-
animationDuration?: number;
|
|
27
|
-
animationTiming?: string;
|
|
28
|
-
}
|
|
29
|
-
declare function GridIcon({ isOpen, className, size, animationDuration, animationTiming, }: GridIconProps): react_jsx_runtime.JSX.Element;
|
|
30
|
-
|
|
31
|
-
interface HamburgerIconProps {
|
|
32
|
-
isOpen: boolean;
|
|
33
|
-
className?: string;
|
|
34
|
-
size?: number;
|
|
35
|
-
animationDuration?: number;
|
|
36
|
-
animationTiming?: string;
|
|
37
|
-
}
|
|
38
|
-
declare function HamburgerIcon({ isOpen, className, size, animationDuration, animationTiming, }: HamburgerIconProps): react_jsx_runtime.JSX.Element;
|
|
39
|
-
|
|
40
|
-
interface KebabIconProps {
|
|
41
|
-
isOpen: boolean;
|
|
42
|
-
className?: string;
|
|
43
|
-
size?: number;
|
|
44
|
-
animationDuration?: number;
|
|
45
|
-
animationTiming?: string;
|
|
46
|
-
}
|
|
47
|
-
declare function KebabIcon({ isOpen, className, size, animationDuration, animationTiming, }: KebabIconProps): react_jsx_runtime.JSX.Element;
|
|
48
|
-
|
|
49
|
-
interface MeatballsIconProps {
|
|
50
|
-
isOpen: boolean;
|
|
51
|
-
className?: string;
|
|
52
|
-
size?: number;
|
|
53
|
-
animationDuration?: number;
|
|
54
|
-
animationTiming?: string;
|
|
55
|
-
}
|
|
56
|
-
declare function MeatballsIcon({ isOpen, className, size, animationDuration, animationTiming, }: MeatballsIconProps): react_jsx_runtime.JSX.Element;
|
|
57
|
-
|
|
58
|
-
interface PlusIconProps {
|
|
59
|
-
isOpen: boolean;
|
|
60
|
-
className?: string;
|
|
61
|
-
size?: number;
|
|
62
|
-
animationDuration?: number;
|
|
63
|
-
animationTiming?: string;
|
|
64
|
-
}
|
|
65
|
-
declare function PlusIcon({ isOpen, className, size, animationDuration, animationTiming, }: PlusIconProps): react_jsx_runtime.JSX.Element;
|
|
66
|
-
|
|
67
|
-
interface ToggleIconProps$1 {
|
|
68
|
-
type: ToggleIconType;
|
|
69
|
-
isOpen: boolean;
|
|
70
|
-
className?: string;
|
|
71
|
-
size?: number;
|
|
72
|
-
animationDuration?: number;
|
|
73
|
-
animationTiming?: string;
|
|
74
|
-
}
|
|
75
|
-
declare function ToggleIcon({ type, isOpen, className, size, animationDuration, animationTiming, }: ToggleIconProps$1): react_jsx_runtime.JSX.Element;
|
|
76
|
-
|
|
77
|
-
interface ToggleIconProps {
|
|
78
|
-
isOpen: boolean;
|
|
79
|
-
className?: string;
|
|
80
|
-
size?: number;
|
|
81
|
-
animationDuration?: number;
|
|
82
|
-
animationTiming?: string;
|
|
83
|
-
}
|
|
84
|
-
declare const toggleIconMap: Map<ToggleIconType, React.ComponentType<ToggleIconProps>>;
|
|
85
|
-
|
|
86
|
-
export { ChevronIcon, GridIcon, HamburgerIcon, Header, KebabIcon, MeatballsIcon, PlusIcon, ToggleIcon, toggleIconMap };
|
|
1
|
+
export { Header } from './components/navigation/header.js';
|
|
2
|
+
export { ChevronIcon } from './components/icons/chevron-icon.js';
|
|
3
|
+
export { GridIcon } from './components/icons/grid-icon.js';
|
|
4
|
+
export { HamburgerIcon } from './components/icons/hamburger-icon.js';
|
|
5
|
+
export { KebabIcon } from './components/icons/kebab-icon.js';
|
|
6
|
+
export { MeatballsIcon } from './components/icons/meatballs-icon.js';
|
|
7
|
+
export { PlusIcon } from './components/icons/plus-icon.js';
|
|
8
|
+
export { ToggleIcon } from './components/icons/toggle-icon.js';
|
|
9
|
+
export { toggleIconMap } from './components/icons/toggle-icon-map.js';
|
|
10
|
+
import '@otl-core/cms-types';
|
|
11
|
+
import 'react';
|
|
12
|
+
import 'react/jsx-runtime';
|