memorial-ui-component-library 1.0.4-dev.2396 → 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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "memorial-ui-component-library",
3
3
  "description": "Memorial Health System Vue UI library.",
4
4
  "private": false,
5
- "version": "1.0.4-dev.2396",
5
+ "version": "1.0.5-dev.2402",
6
6
  "author": "Solutions Development",
7
7
  "license": "MIT",
8
8
  "scripts": {
@@ -39,3 +39,4 @@ export * from './popout-menu';
39
39
  export * from './radio';
40
40
  export * from './rater';
41
41
  export * from './select';
42
+ export * from './tabs';
@@ -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;