@sunggang/ui-lib 0.2.10 → 0.2.12

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sunggang/ui-lib",
3
- "version": "0.2.10",
3
+ "version": "0.2.12",
4
4
  "dependencies": {
5
5
  "@iconify/react": "^4.1.1",
6
6
  "@mdx-js/react": "^3.0.1",
package/src/index.d.ts CHANGED
@@ -14,3 +14,5 @@ export * from './lib/DataTable/BaseTable';
14
14
  export * from './lib/Function';
15
15
  export * from './lib/BigCalender';
16
16
  export * from './lib/BigCalender/dnd';
17
+ export * from './lib/Select/CustomSelect';
18
+ export * from './lib/Tabs/TabsPanel';
@@ -8,6 +8,7 @@ export interface CustomSelectProps {
8
8
  currentID: string | null;
9
9
  setCurrentID: React.Dispatch<React.SetStateAction<any>>;
10
10
  className?: string;
11
+ hasEmptyOption?: boolean;
11
12
  }
12
- declare const CustomSelect: React.FC<CustomSelectProps>;
13
+ export declare const CustomSelect: React.FC<CustomSelectProps>;
13
14
  export default CustomSelect;
@@ -11,7 +11,7 @@ export interface TabsPanelProps {
11
11
  tabsClassName?: string;
12
12
  tabClassName?: string;
13
13
  }
14
- declare const TabsPanel: ({ tabsClassName, tabClassName, activeIndex, setActiveIndex, config, children, }: {
14
+ export declare const TabsPanel: ({ tabsClassName, tabClassName, activeIndex, setActiveIndex, config, children, }: {
15
15
  tabsClassName?: string | undefined;
16
16
  tabClassName?: string | undefined;
17
17
  activeIndex: any;