@namba_one/ui-kit-2 1.0.57 → 1.0.59
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 +15 -0
- package/dist/index.es.js +3418 -3363
- package/dist/index.umd.js +5 -5
- package/dist/namba-one-uikit.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1151,6 +1151,19 @@ declare const masks: {
|
|
|
1151
1151
|
};
|
|
1152
1152
|
};
|
|
1153
1153
|
|
|
1154
|
+
export declare const MenuBarItem: DefineComponent<MenuBarItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1155
|
+
click: () => any;
|
|
1156
|
+
}, string, PublicProps, Readonly<MenuBarItemProps> & Readonly<{
|
|
1157
|
+
onClick?: (() => any) | undefined;
|
|
1158
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1159
|
+
|
|
1160
|
+
export declare type MenuBarItemProps = {
|
|
1161
|
+
icon?: Maybe<IconName>;
|
|
1162
|
+
view?: (typeof views_8)[number];
|
|
1163
|
+
text: string;
|
|
1164
|
+
badgeText?: string;
|
|
1165
|
+
};
|
|
1166
|
+
|
|
1154
1167
|
export declare const ModalConfirmation: DefineComponent<ModalConfirmationProps, {
|
|
1155
1168
|
close: () => void;
|
|
1156
1169
|
toggle: () => void;
|
|
@@ -1645,6 +1658,8 @@ declare const views_6: readonly ["base", "critical"];
|
|
|
1645
1658
|
|
|
1646
1659
|
declare const views_7: readonly ["default", "flat", "flat-secondary"];
|
|
1647
1660
|
|
|
1661
|
+
declare const views_8: readonly ["base", "critical"];
|
|
1662
|
+
|
|
1648
1663
|
declare const weights: readonly ["regular", "medium", "semibold", "bold"];
|
|
1649
1664
|
|
|
1650
1665
|
declare const weights_2: TheTextProps['weight'][];
|