oddsgate-ds 1.0.199 → 1.0.201

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.
@@ -1,26 +1,4 @@
1
1
  import React from 'react';
2
- type GlossaryItem = {
3
- title: string;
4
- categories: {
5
- name: string;
6
- items: {
7
- slug: string;
8
- name: string;
9
- }[];
10
- }[];
11
- };
12
- type GlossaryProps = {
13
- title: string;
14
- subtitle: string;
15
- items: GlossaryItem[];
16
- categories: {
17
- name: string;
18
- items: {
19
- slug: string;
20
- name: string;
21
- }[];
22
- }[];
23
- placeholder?: string;
24
- };
25
- declare const Glossary: React.FC<GlossaryProps>;
2
+ import { GlossaryProps } from './Glossary.interface';
3
+ export declare const Glossary: React.FC<GlossaryProps>;
26
4
  export default Glossary;
@@ -0,0 +1,24 @@
1
+ type GlossaryItem = {
2
+ title: string;
3
+ categories: {
4
+ name: string;
5
+ items: {
6
+ slug: string;
7
+ name: string;
8
+ }[];
9
+ }[];
10
+ };
11
+ export type GlossaryProps = {
12
+ title: string;
13
+ subtitle: string;
14
+ items: GlossaryItem[];
15
+ categories: {
16
+ name: string;
17
+ items: {
18
+ slug: string;
19
+ name: string;
20
+ }[];
21
+ }[];
22
+ placeholder?: string;
23
+ };
24
+ export {};
@@ -0,0 +1 @@
1
+ export { default } from './Glossary.component';
@@ -49,6 +49,7 @@ export { default as Cover } from './components/organisms/Cover';
49
49
  export { default as Tabs } from './components/organisms/Tabs';
50
50
  export { default as CircularSlider } from './components/organisms/CircularSlider';
51
51
  export { default as ProductsSlider } from './components/organisms/ProductsSlider';
52
+ export { default as Glossary } from './components/organisms/Glossary';
52
53
  export { iconsList } from './helpers/getIcons';
53
54
  export { default as GlobalStyles } from './styles/Global';
54
55
  export { default as clickOutSideToClose } from './helpers/clickOutsideToClose';