@aitronos/freddy-plugins 0.4.43 → 0.4.44
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/CHANGELOG.md +13 -0
- package/dist/freddy-plugins.css +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +8 -0
- package/dist/index.js +1354 -1326
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5018,6 +5018,14 @@ export declare type TabButtonSize = 'sm';
|
|
|
5018
5018
|
*/
|
|
5019
5019
|
export declare type TabButtonType = 'underline' | 'line' | 'button';
|
|
5020
5020
|
|
|
5021
|
+
export declare const TabList: DefineComponent<ITabList, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
5022
|
+
tabSwitch: (...args: any[]) => void;
|
|
5023
|
+
}, string, PublicProps, Readonly<ITabList> & Readonly<{
|
|
5024
|
+
onTabSwitch?: ((...args: any[]) => any) | undefined;
|
|
5025
|
+
}>, {
|
|
5026
|
+
currentTab: number;
|
|
5027
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
5028
|
+
|
|
5021
5029
|
export declare interface TagsInputEvents extends InputFieldEvents {
|
|
5022
5030
|
'update:tags': [tags: string[]];
|
|
5023
5031
|
'tag-added': [tag: string];
|