@granto-umbrella/umbrella-components 3.0.31 → 3.0.32

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": "@granto-umbrella/umbrella-components",
3
- "version": "3.0.31",
3
+ "version": "3.0.32",
4
4
  "description": "Umbrella Components for React",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -1,8 +1,8 @@
1
1
  import React from 'react';
2
2
  import { Count, Tab, Wrapper } from './TabBar.styles';
3
- import { TapbarProps } from './TabBar.types';
3
+ import { TabBarProps } from './TabBar.types';
4
4
 
5
- export const Tapbar: React.FC<TapbarProps> = ({
5
+ export const TabBar: React.FC<TabBarProps> = ({
6
6
  items,
7
7
  activeIndex,
8
8
  onChange,
@@ -4,8 +4,8 @@ export interface TabItem {
4
4
  testId?: string;
5
5
  }
6
6
 
7
- export interface TapbarProps {
7
+ export interface TabBarProps {
8
8
  items: TabItem[];
9
9
  activeIndex: number;
10
10
  onChange: (newIndex: number) => void;
11
- }
11
+ }
@@ -1,2 +1,2 @@
1
- export { Tapbar } from './TabBar';
2
- export type { TapbarProps, TabItem } from './TabBar.types';
1
+ export { TabBar } from './TabBar';
2
+ export type { TabBarProps, TabItem } from './TabBar.types';
package/src/index.ts CHANGED
@@ -33,7 +33,7 @@ import { ResendLink } from './components/atoms/ResendLink';
33
33
  import Select from './components/atoms/Select';
34
34
  import { Subtitle } from './components/atoms/Subtitle';
35
35
  import Switch from './components/atoms/Switch/Switch';
36
- import { Tapbar } from './components/atoms/TabBar';
36
+ import { TabBar } from './components/atoms/TabBar';
37
37
  import Text from './components/atoms/Text';
38
38
  import Textarea from './components/atoms/Textarea/Textarea';
39
39
  import { Title } from './components/atoms/Title';
@@ -133,7 +133,7 @@ export {
133
133
  StyledDialogClose,
134
134
  StyledDialogOverlay,
135
135
  Switch,
136
- Tapbar,
136
+ TabBar,
137
137
  TabToggle,
138
138
  Text,
139
139
  Textarea,