kui-complex 0.0.219 → 0.0.220

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.
Files changed (2) hide show
  1. package/index.d.ts +10 -2
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -33,7 +33,11 @@ type ButtonsPanelProps = {
33
33
  startComponent?: ReactNode
34
34
  endComponent?: ReactNode
35
35
  navigate?: (path: string) => void
36
- renderTabWrapper?: (tab: string, children: ReactElement) => ReactElement
36
+ renderTabWrapper?: (
37
+ tab: string,
38
+ children: ReactElement,
39
+ index: number
40
+ ) => ReactElement
37
41
  }
38
42
 
39
43
  /** @jsxImportSource @emotion/react */
@@ -46,7 +50,11 @@ type ButtonTabProps = {
46
50
  isActive: boolean
47
51
  label?: string
48
52
  disabled?: boolean
49
- renderTabWrapper?: (tab: string, children: ReactElement, index: number) => ReactElement
53
+ renderTabWrapper?: (
54
+ tab: string,
55
+ children: ReactElement,
56
+ index: number
57
+ ) => ReactElement
50
58
  }
51
59
 
52
60
  /** @jsxImportSource @emotion/react */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kui-complex",
3
- "version": "0.0.219",
3
+ "version": "0.0.220",
4
4
  "description": "ui kit for maroom products",
5
5
  "main": "./cjs/index.js",
6
6
  "types": "./index.d.ts",