memorial-ui-component-library 1.0.4 → 1.0.5-dev.2402
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/memorial-ui-component-library.common.js +9 -9
- package/dist/memorial-ui-component-library.common.js.map +1 -1
- package/dist/memorial-ui-component-library.css +1 -1
- package/dist/memorial-ui-component-library.umd.js +9 -9
- package/dist/memorial-ui-component-library.umd.js.map +1 -1
- package/dist/memorial-ui-component-library.umd.min.js +1 -1
- package/dist/memorial-ui-component-library.umd.min.js.map +1 -1
- package/dist/report.html +2 -2
- package/package.json +1 -1
- package/types/memorial-ui-component-library.d.ts +1 -0
- package/types/tabs.d.ts +20 -0
package/package.json
CHANGED
package/types/tabs.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { MemorialUIComponent } from './component';
|
|
2
|
+
|
|
3
|
+
export interface SdTabsType {
|
|
4
|
+
|
|
5
|
+
key: string,
|
|
6
|
+
label: string,
|
|
7
|
+
content: any
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
/** Tabs component */
|
|
11
|
+
export declare class SdTabs extends MemorialUIComponent{
|
|
12
|
+
/**
|
|
13
|
+
* The tabsInfo to bind the tabs to.
|
|
14
|
+
*/
|
|
15
|
+
tabsInfo: SdTabsType[];
|
|
16
|
+
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
declare const plugin: SdTabs;
|
|
20
|
+
export default plugin;
|