@etsoo/materialui 1.5.26 → 1.5.27

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.
@@ -20,7 +20,7 @@ export interface TabBoxPanel extends Omit<TabProps, "value" | "children"> {
20
20
  /**
21
21
  * Tabs with box props
22
22
  */
23
- export interface TabBoxPros extends Omit<TabsProps, "value"> {
23
+ export interface TabBoxProps extends Omit<TabsProps, "value"> {
24
24
  /**
25
25
  * Default selected index
26
26
  */
@@ -51,5 +51,5 @@ export interface TabBoxPros extends Omit<TabsProps, "value"> {
51
51
  * @param props Props
52
52
  * @returns Component
53
53
  */
54
- export declare function TabBox(props: TabBoxPros): import("react/jsx-runtime").JSX.Element;
54
+ export declare function TabBox(props: TabBoxProps): import("react/jsx-runtime").JSX.Element;
55
55
  export {};
@@ -20,7 +20,7 @@ export interface TabBoxPanel extends Omit<TabProps, "value" | "children"> {
20
20
  /**
21
21
  * Tabs with box props
22
22
  */
23
- export interface TabBoxPros extends Omit<TabsProps, "value"> {
23
+ export interface TabBoxProps extends Omit<TabsProps, "value"> {
24
24
  /**
25
25
  * Default selected index
26
26
  */
@@ -51,5 +51,5 @@ export interface TabBoxPros extends Omit<TabsProps, "value"> {
51
51
  * @param props Props
52
52
  * @returns Component
53
53
  */
54
- export declare function TabBox(props: TabBoxPros): import("react/jsx-runtime").JSX.Element;
54
+ export declare function TabBox(props: TabBoxProps): import("react/jsx-runtime").JSX.Element;
55
55
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/materialui",
3
- "version": "1.5.26",
3
+ "version": "1.5.27",
4
4
  "description": "TypeScript Material-UI Implementation",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
package/src/TabBox.tsx CHANGED
@@ -35,7 +35,7 @@ export interface TabBoxPanel extends Omit<TabProps, "value" | "children"> {
35
35
  /**
36
36
  * Tabs with box props
37
37
  */
38
- export interface TabBoxPros extends Omit<TabsProps, "value"> {
38
+ export interface TabBoxProps extends Omit<TabsProps, "value"> {
39
39
  /**
40
40
  * Default selected index
41
41
  */
@@ -72,7 +72,7 @@ export interface TabBoxPros extends Omit<TabsProps, "value"> {
72
72
  * @param props Props
73
73
  * @returns Component
74
74
  */
75
- export function TabBox(props: TabBoxPros) {
75
+ export function TabBox(props: TabBoxProps) {
76
76
  // Destruct
77
77
  const {
78
78
  index,