@namba_one/ui-kit-2 1.0.66 → 1.0.67

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 CHANGED
@@ -1157,19 +1157,22 @@ declare const masks: {
1157
1157
  };
1158
1158
  };
1159
1159
 
1160
- export declare const MenuBarItem: DefineComponent<MenuBarItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1161
- click: () => any;
1162
- }, string, PublicProps, Readonly<MenuBarItemProps> & Readonly<{
1163
- onClick?: (() => any) | undefined;
1164
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1160
+ export declare const MenuBar: DefineComponent<MenuBarProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<MenuBarProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
1161
+
1162
+ export declare const MenuBarItem: DefineComponent<MenuBarItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<MenuBarItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1165
1163
 
1166
1164
  export declare type MenuBarItemProps = {
1165
+ onClick: () => void;
1166
+ text: string;
1167
1167
  icon?: Maybe<IconName>;
1168
1168
  view?: (typeof views_8)[number];
1169
- text: string;
1170
1169
  badgeText?: string;
1171
1170
  };
1172
1171
 
1172
+ export declare type MenuBarProps = {
1173
+ list: MenuBarItemProps[][];
1174
+ };
1175
+
1173
1176
  export declare const ModalConfirmation: DefineComponent<ModalConfirmationProps, {
1174
1177
  close: () => void;
1175
1178
  toggle: () => void;