@klu_dev/ui-klu-green 1.2.12 → 1.2.14
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 +19 -1
- package/dist/index.js +460 -11
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -128,8 +128,10 @@ interface NavItem {
|
|
|
128
128
|
|
|
129
129
|
interface SidebarTabsProps {
|
|
130
130
|
items: NavItem[];
|
|
131
|
+
activeTab: string;
|
|
132
|
+
onTabChange: (id: string) => void;
|
|
131
133
|
}
|
|
132
|
-
declare function SidebarTabs({ items }: SidebarTabsProps): react_jsx_runtime.JSX.Element;
|
|
134
|
+
declare function SidebarTabs({ items, activeTab, onTabChange }: SidebarTabsProps): react_jsx_runtime.JSX.Element;
|
|
133
135
|
|
|
134
136
|
interface MobileMenuDrawerProps {
|
|
135
137
|
isOpen: boolean;
|
|
@@ -177,6 +179,22 @@ declare const Icons: {
|
|
|
177
179
|
BOOKMARK: react_jsx_runtime.JSX.Element;
|
|
178
180
|
EDIT: react_jsx_runtime.JSX.Element;
|
|
179
181
|
DELETE: react_jsx_runtime.JSX.Element;
|
|
182
|
+
TELCEL: react_jsx_runtime.JSX.Element;
|
|
183
|
+
ATT: react_jsx_runtime.JSX.Element;
|
|
184
|
+
MOVISTAR: react_jsx_runtime.JSX.Element;
|
|
185
|
+
IAVE: react_jsx_runtime.JSX.Element;
|
|
186
|
+
PASE: react_jsx_runtime.JSX.Element;
|
|
187
|
+
MCIUDAD: react_jsx_runtime.JSX.Element;
|
|
188
|
+
CFE: react_jsx_runtime.JSX.Element;
|
|
189
|
+
GASN: react_jsx_runtime.JSX.Element;
|
|
190
|
+
TELMEX: react_jsx_runtime.JSX.Element;
|
|
191
|
+
DISH: react_jsx_runtime.JSX.Element;
|
|
192
|
+
SKY: react_jsx_runtime.JSX.Element;
|
|
193
|
+
MEGA: react_jsx_runtime.JSX.Element;
|
|
194
|
+
TOTALP: react_jsx_runtime.JSX.Element;
|
|
195
|
+
IZZI: react_jsx_runtime.JSX.Element;
|
|
196
|
+
XBOX: react_jsx_runtime.JSX.Element;
|
|
197
|
+
CALIENTE: react_jsx_runtime.JSX.Element;
|
|
180
198
|
};
|
|
181
199
|
|
|
182
200
|
declare const searchSelectTriggerVariants: (props?: ({
|