tycho-components 0.2.16 → 0.2.17

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.
@@ -0,0 +1,3 @@
1
+ import { ConsentTexts } from '../configs/localization/ConsentTexts';
2
+ export type ConsentSectionKey = keyof typeof ConsentTexts.en;
3
+ export default function AppConsent(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,19 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { useTranslation } from 'react-i18next';
3
+ const sectionKeys = [
4
+ 'purpose',
5
+ 'data.usage',
6
+ 'responsibilities',
7
+ 'create',
8
+ 'accessibility',
9
+ 'acknowledgment',
10
+ 'conduct',
11
+ 'feedback',
12
+ 'termination',
13
+ ];
14
+ export default function AppConsent() {
15
+ const { t } = useTranslation('consent');
16
+ return (_jsx("div", { className: "app-consent-container", children: _jsx("ol", { children: sectionKeys.map((sectionKey) => {
17
+ return (_jsxs("li", { children: [_jsx("b", { children: t(`${sectionKey}.title`) }), _jsx("ul", { children: Object.values(t(`${sectionKey}.texts`, { returnObjects: true })).map((text, index) => (_jsx("li", { children: text }, `${sectionKey}.${index}`))) })] }, sectionKey));
18
+ }) }) }));
19
+ }
@@ -0,0 +1,2 @@
1
+ import AppConsent from './AppConsent';
2
+ export default AppConsent;
@@ -0,0 +1,2 @@
1
+ import AppConsent from './AppConsent';
2
+ export default AppConsent;
@@ -5,7 +5,8 @@ type Props<TData> = {
5
5
  pagination: PaginationState;
6
6
  setPagination: (p: PaginationState) => void;
7
7
  hideItensPage?: boolean;
8
+ hidePageTotal?: boolean;
8
9
  numItens?: number[];
9
10
  };
10
- export default function AppPagination<TData>({ totalElements, pagination, setPagination, hideItensPage, numItens, }: Props<TData>): import("react/jsx-runtime").JSX.Element;
11
+ export default function AppPagination<TData>({ totalElements, pagination, setPagination, hideItensPage, hidePageTotal, numItens, }: Props<TData>): import("react/jsx-runtime").JSX.Element;
11
12
  export {};
@@ -3,7 +3,7 @@ import { MenuItem, Select } from '@mui/material';
3
3
  import { Trans, useTranslation } from 'react-i18next';
4
4
  import { IconButton } from 'tycho-storybook';
5
5
  import './styles.scss';
6
- export default function AppPagination({ totalElements, pagination, setPagination, hideItensPage, numItens = [10, 25, 50], }) {
6
+ export default function AppPagination({ totalElements, pagination, setPagination, hideItensPage, hidePageTotal, numItens = [10, 25, 50], }) {
7
7
  const { t } = useTranslation('common');
8
8
  const numPages = Math.ceil(totalElements / pagination.pageSize);
9
9
  const currentPage = pagination.pageIndex + 1;
@@ -19,7 +19,7 @@ export default function AppPagination({ totalElements, pagination, setPagination
19
19
  first: getFirstElementNumber(),
20
20
  last: getLastElementNumber(),
21
21
  total: totalElements,
22
- } }) }) }), _jsxs("div", { className: "pages-total", children: [_jsx(Select, { value: currentPage, onChange: (e) => setPageIndex(e.target.value - 1), MenuProps: menuProps, children: Array.from({ length: numPages }, (_, index) => (_jsx(MenuItem, { value: index + 1, children: index + 1 }, index + 1))) }), _jsx("span", { children: _jsx(Trans, { t: t, i18nKey: "table.label.pages", values: { value: numPages } }) })] }), _jsxs("div", { className: "pages-navigation", children: [_jsx(IconButton, { size: "medium", mode: "tonal", onClick: () => setPageIndex(pagination.pageIndex - 1), disabled: pagination.pageIndex === 0, name: "chevron_backward" }), _jsx(IconButton, { size: "medium", mode: "tonal", onClick: () => setPageIndex(pagination.pageIndex + 1), disabled: pagination.pageIndex >= numPages - 1, name: "chevron_forward" })] })] }));
22
+ } }) }) }), !hidePageTotal && (_jsxs("div", { className: "pages-total", children: [_jsx(Select, { value: currentPage, onChange: (e) => setPageIndex(e.target.value - 1), MenuProps: menuProps, children: Array.from({ length: numPages }, (_, index) => (_jsx(MenuItem, { value: index + 1, children: index + 1 }, index + 1))) }), _jsx("span", { children: _jsx(Trans, { t: t, i18nKey: "table.label.pages", values: { value: numPages } }) })] })), _jsxs("div", { className: "pages-navigation", children: [_jsx(IconButton, { size: "medium", mode: "tonal", onClick: () => setPageIndex(pagination.pageIndex - 1), disabled: pagination.pageIndex === 0, name: "chevron_backward" }), _jsx(IconButton, { size: "medium", mode: "tonal", onClick: () => setPageIndex(pagination.pageIndex + 1), disabled: pagination.pageIndex >= numPages - 1, name: "chevron_forward" })] })] }));
23
23
  }
24
24
  const menuProps = {
25
25
  PaperProps: {
@@ -192,6 +192,44 @@ export declare const commonResources: {
192
192
  'checkbox.autoOpen': string;
193
193
  'button.open': string;
194
194
  };
195
+ consent: {
196
+ purpose: {
197
+ title: string;
198
+ texts: string[];
199
+ };
200
+ 'data.usage': {
201
+ title: string;
202
+ texts: string[];
203
+ };
204
+ responsibilities: {
205
+ title: string;
206
+ texts: string[];
207
+ };
208
+ accessibility: {
209
+ title: string;
210
+ texts: string[];
211
+ };
212
+ acknowledgment: {
213
+ title: string;
214
+ texts: string[];
215
+ };
216
+ conduct: {
217
+ title: string;
218
+ texts: string[];
219
+ };
220
+ feedback: {
221
+ title: string;
222
+ texts: string[];
223
+ };
224
+ termination: {
225
+ title: string;
226
+ texts: string[];
227
+ };
228
+ create: {
229
+ title: string;
230
+ texts: string[];
231
+ };
232
+ };
195
233
  };
196
234
  'pt-BR': {
197
235
  base: {
@@ -384,6 +422,44 @@ export declare const commonResources: {
384
422
  'checkbox.autoOpen': string;
385
423
  'button.open': string;
386
424
  };
425
+ consent: {
426
+ purpose: {
427
+ title: string;
428
+ texts: string[];
429
+ };
430
+ 'data.usage': {
431
+ title: string;
432
+ texts: string[];
433
+ };
434
+ responsibilities: {
435
+ title: string;
436
+ texts: string[];
437
+ };
438
+ accessibility: {
439
+ title: string;
440
+ texts: string[];
441
+ };
442
+ acknowledgment: {
443
+ title: string;
444
+ texts: string[];
445
+ };
446
+ conduct: {
447
+ title: string;
448
+ texts: string[];
449
+ };
450
+ feedback: {
451
+ title: string;
452
+ texts: string[];
453
+ };
454
+ termination: {
455
+ title: string;
456
+ texts: string[];
457
+ };
458
+ create: {
459
+ title: string;
460
+ texts: string[];
461
+ };
462
+ };
387
463
  };
388
464
  it: {
389
465
  base: {
@@ -577,6 +653,44 @@ export declare const commonResources: {
577
653
  'checkbox.autoOpen': string;
578
654
  'button.open': string;
579
655
  };
656
+ consent: {
657
+ purpose: {
658
+ title: string;
659
+ texts: string[];
660
+ };
661
+ 'data.usage': {
662
+ title: string;
663
+ texts: string[];
664
+ };
665
+ responsibilities: {
666
+ title: string;
667
+ texts: string[];
668
+ };
669
+ accessibility: {
670
+ title: string;
671
+ texts: string[];
672
+ };
673
+ acknowledgment: {
674
+ title: string;
675
+ texts: string[];
676
+ };
677
+ conduct: {
678
+ title: string;
679
+ texts: string[];
680
+ };
681
+ feedback: {
682
+ title: string;
683
+ texts: string[];
684
+ };
685
+ termination: {
686
+ title: string;
687
+ texts: string[];
688
+ };
689
+ create: {
690
+ title: string;
691
+ texts: string[];
692
+ };
693
+ };
580
694
  };
581
695
  };
582
696
  export default function commonLocalization(): void;
@@ -10,6 +10,7 @@ import { TreeTexts } from './localization/TreeTexts';
10
10
  import { SentenceTexts } from './localization/SentenceTexts';
11
11
  import { BaseTexts } from './localization/BaseTexts';
12
12
  import { HelpTexts } from './localization/HelpTexts';
13
+ import { ConsentTexts } from './localization/ConsentTexts';
13
14
  export const commonResources = {
14
15
  en: {
15
16
  base: BaseTexts.en,
@@ -21,6 +22,7 @@ export const commonResources = {
21
22
  sentence: SentenceTexts.en,
22
23
  upload: UploadTexts.en,
23
24
  help: HelpTexts.en,
25
+ consent: ConsentTexts.en,
24
26
  },
25
27
  'pt-BR': {
26
28
  base: BaseTexts['pt-BR'],
@@ -32,6 +34,7 @@ export const commonResources = {
32
34
  tree: TreeTexts['pt-BR'],
33
35
  upload: UploadTexts['pt-BR'],
34
36
  help: HelpTexts['pt-BR'],
37
+ consent: ConsentTexts['pt-BR'],
35
38
  },
36
39
  it: {
37
40
  base: BaseTexts.it,
@@ -43,6 +46,7 @@ export const commonResources = {
43
46
  tree: TreeTexts.it,
44
47
  upload: UploadTexts.it,
45
48
  help: HelpTexts.it,
49
+ consent: ConsentTexts.it,
46
50
  },
47
51
  };
48
52
  export default function commonLocalization() {
@@ -0,0 +1,116 @@
1
+ export declare const ConsentTexts: {
2
+ en: {
3
+ purpose: {
4
+ title: string;
5
+ texts: string[];
6
+ };
7
+ 'data.usage': {
8
+ title: string;
9
+ texts: string[];
10
+ };
11
+ responsibilities: {
12
+ title: string;
13
+ texts: string[];
14
+ };
15
+ accessibility: {
16
+ title: string;
17
+ texts: string[];
18
+ };
19
+ acknowledgment: {
20
+ title: string;
21
+ texts: string[];
22
+ };
23
+ conduct: {
24
+ title: string;
25
+ texts: string[];
26
+ };
27
+ feedback: {
28
+ title: string;
29
+ texts: string[];
30
+ };
31
+ termination: {
32
+ title: string;
33
+ texts: string[];
34
+ };
35
+ create: {
36
+ title: string;
37
+ texts: string[];
38
+ };
39
+ };
40
+ 'pt-BR': {
41
+ purpose: {
42
+ title: string;
43
+ texts: string[];
44
+ };
45
+ 'data.usage': {
46
+ title: string;
47
+ texts: string[];
48
+ };
49
+ responsibilities: {
50
+ title: string;
51
+ texts: string[];
52
+ };
53
+ accessibility: {
54
+ title: string;
55
+ texts: string[];
56
+ };
57
+ acknowledgment: {
58
+ title: string;
59
+ texts: string[];
60
+ };
61
+ conduct: {
62
+ title: string;
63
+ texts: string[];
64
+ };
65
+ feedback: {
66
+ title: string;
67
+ texts: string[];
68
+ };
69
+ termination: {
70
+ title: string;
71
+ texts: string[];
72
+ };
73
+ create: {
74
+ title: string;
75
+ texts: string[];
76
+ };
77
+ };
78
+ it: {
79
+ purpose: {
80
+ title: string;
81
+ texts: string[];
82
+ };
83
+ 'data.usage': {
84
+ title: string;
85
+ texts: string[];
86
+ };
87
+ responsibilities: {
88
+ title: string;
89
+ texts: string[];
90
+ };
91
+ accessibility: {
92
+ title: string;
93
+ texts: string[];
94
+ };
95
+ acknowledgment: {
96
+ title: string;
97
+ texts: string[];
98
+ };
99
+ conduct: {
100
+ title: string;
101
+ texts: string[];
102
+ };
103
+ feedback: {
104
+ title: string;
105
+ texts: string[];
106
+ };
107
+ termination: {
108
+ title: string;
109
+ texts: string[];
110
+ };
111
+ create: {
112
+ title: string;
113
+ texts: string[];
114
+ };
115
+ };
116
+ };
@@ -0,0 +1,203 @@
1
+ export const ConsentTexts = {
2
+ en: {
3
+ purpose: {
4
+ title: 'Purpose of Use:',
5
+ texts: [
6
+ 'The Tycho Brahe Platform is provided free of charge for academic research purposes only. By using this platform, you agree to use it solely for non-commercial, scholarly activities related to linguistic analysis and research.',
7
+ ],
8
+ },
9
+ 'data.usage': {
10
+ title: 'Data Usage and Privacy:',
11
+ texts: [
12
+ 'The data you upload and analyze using the Tycho Brahe Platform remains your intellectual property.',
13
+ 'We will not share your uploaded data or analysis results with third parties unless required by law.',
14
+ "Your data may be used in an anonymized and aggregated form for research purposes to improve the platform's functionality and performance.",
15
+ ],
16
+ },
17
+ responsibilities: {
18
+ title: 'User Responsibilities:',
19
+ texts: [
20
+ 'You are responsible for the accuracy and legality of the data you upload to the platform.',
21
+ 'You agree not to use the platform for any unlawful, harmful, or unauthorized activities.',
22
+ 'You must respect the privacy and confidentiality of any sensitive information contained in the corpus.',
23
+ ],
24
+ },
25
+ accessibility: {
26
+ title: 'Data Accessibility:',
27
+ texts: [
28
+ 'By default, data uploaded to the Tycho Brahe Platform is restricted to public access unless explicitly specified by you.',
29
+ 'You can configure the access settings for your corpora to determine who can view and use your data.',
30
+ 'You acknowledge that the Tycho Brahe Platform may collect and store usage data to improve the user experience.',
31
+ ],
32
+ },
33
+ acknowledgment: {
34
+ title: 'Acknowledgment:',
35
+ texts: [
36
+ 'You acknowledge that the Tycho Brahe Platform is provided "as is" without warranty of any kind.',
37
+ 'We do not guarantee the availability, accuracy, or reliability of the platform for any specific purpose.',
38
+ ],
39
+ },
40
+ conduct: {
41
+ title: 'User Conduct:',
42
+ texts: [
43
+ 'You agree to conduct yourself in a respectful and professional manner while using the platform.',
44
+ 'Any misuse or abuse of the platform may result in suspension or termination of your account.',
45
+ ],
46
+ },
47
+ feedback: {
48
+ title: 'Feedback and Contributions:',
49
+ texts: [
50
+ 'We welcome your feedback and suggestions for improving the Tycho Brahe Platform.',
51
+ 'Contributions such as bug reports, feature requests, and code contributions are encouraged and appreciated.',
52
+ ],
53
+ },
54
+ termination: {
55
+ title: 'Termination of Use:',
56
+ texts: [
57
+ 'You have the right to terminate your use of the Tycho Brahe Platform at any time.',
58
+ 'We reserve the right to suspend or terminate your account if you violate these terms or engage in any inappropriate behavior.',
59
+ ],
60
+ },
61
+ create: {
62
+ title: 'Corpus creation:',
63
+ texts: [
64
+ 'When creating a corpus, you are requesting the creation to the administrators of the Tycho Brahe Platform and this needs to go through a approval process.',
65
+ 'You will only be able to create 1 (one) corpus, that is, after requesting the creation of the corpus and this is approved, you will NOT be able to create another one subsequently.',
66
+ ],
67
+ },
68
+ },
69
+ 'pt-BR': {
70
+ purpose: {
71
+ title: 'Finalidade do Uso:',
72
+ texts: [
73
+ 'A Plataforma Tycho Brahe é fornecida gratuitamente apenas para fins de pesquisa acadêmica. Ao utilizar esta plataforma, você concorda em usá-la exclusivamente para atividades acadêmicas não comerciais relacionadas à análise e pesquisa linguística.',
74
+ ],
75
+ },
76
+ 'data.usage': {
77
+ title: 'Uso de Dados e Privacidade:',
78
+ texts: [
79
+ 'Os dados que você envia e analisa na Plataforma Tycho Brahe permanecem sua propriedade intelectual.',
80
+ 'Não compartilharemos seus dados enviados ou resultados de análise com terceiros, a menos que exigido por lei.',
81
+ 'Seus dados podem ser usados de forma anonimizada e agregada para fins de pesquisa, a fim de melhorar a funcionalidade e o desempenho da plataforma.',
82
+ ],
83
+ },
84
+ responsibilities: {
85
+ title: 'Responsabilidades do Usuário:',
86
+ texts: [
87
+ 'Você é responsável pela precisão e legalidade dos dados que enviar para a plataforma.',
88
+ 'Você concorda em não usar a plataforma para atividades ilegais, prejudiciais ou não autorizadas.',
89
+ 'Você deve respeitar a privacidade e a confidencialidade de qualquer informação sensível contida no corpus.',
90
+ ],
91
+ },
92
+ accessibility: {
93
+ title: 'Acessibilidade dos Dados:',
94
+ texts: [
95
+ 'Por padrão, os dados enviados para a Plataforma Tycho Brahe são restritos ao acesso público, a menos que você especifique o contrário.',
96
+ 'Você pode configurar as permissões de acesso aos seus corpora para determinar quem pode visualizar e usar seus dados.',
97
+ 'Você reconhece que a Plataforma Tycho Brahe pode coletar e armazenar dados de uso para melhorar a experiência do usuário.',
98
+ ],
99
+ },
100
+ acknowledgment: {
101
+ title: 'Reconhecimento:',
102
+ texts: [
103
+ 'Você reconhece que a Plataforma Tycho Brahe é fornecida "como está", sem garantia de qualquer tipo.',
104
+ 'Não garantimos a disponibilidade, precisão ou confiabilidade da plataforma para qualquer finalidade específica.',
105
+ ],
106
+ },
107
+ conduct: {
108
+ title: 'Conduta do Usuário:',
109
+ texts: [
110
+ 'Você concorda em se comportar de maneira respeitosa e profissional ao utilizar a plataforma.',
111
+ 'Qualquer uso indevido ou abuso da plataforma pode resultar na suspensão ou encerramento de sua conta.',
112
+ ],
113
+ },
114
+ feedback: {
115
+ title: 'Feedback e Contribuições:',
116
+ texts: [
117
+ 'Agradecemos seu feedback e sugestões para melhorar a Plataforma Tycho Brahe.',
118
+ 'Contribuições como relatórios de bugs, solicitações de recursos e contribuições de código são incentivadas e bem-vindas.',
119
+ ],
120
+ },
121
+ termination: {
122
+ title: 'Encerramento do Uso:',
123
+ texts: [
124
+ 'Você tem o direito de encerrar o uso da Plataforma Tycho Brahe a qualquer momento.',
125
+ 'Reservamo-nos o direito de suspender ou encerrar sua conta caso você viole estes termos ou se envolva em qualquer comportamento inadequado.',
126
+ ],
127
+ },
128
+ create: {
129
+ title: 'Criação de um corpus',
130
+ texts: [
131
+ 'Ao criar um corpus você está SOLICITANDO a criação aos administradores da Plataforma Tycho Brahe e isso precisa passar por um processo de aprovação.',
132
+ 'Você só poderá criar 1 (um) corpus, ou seja, ao solicitar a criação do corpus e isto for aprovado, você NÃO poderá criar outro posteriormente.',
133
+ ],
134
+ },
135
+ },
136
+ it: {
137
+ purpose: {
138
+ title: "Scopo dell'Uso:",
139
+ texts: [
140
+ "La Piattaforma Tycho Brahe è fornita gratuitamente solo per scopi di ricerca accademica. Utilizzando questa piattaforma, accetti di utilizzarla esclusivamente per attività non commerciali, legate all'analisi e alla ricerca linguistica.",
141
+ ],
142
+ },
143
+ 'data.usage': {
144
+ title: 'Uso Dati e Privacy:',
145
+ texts: [
146
+ 'I dati che carichi e analizzi utilizzando la Piattaforma Tycho Brahe restano di tua proprietà intellettuale.',
147
+ 'Non condivideremo i tuoi dati caricati o i risultati delle analisi con terze parti a meno che non sia richiesto dalla legge.',
148
+ 'I tuoi dati possono essere utilizzati in forma anonima e aggregata per scopi di ricerca per migliorare la funzionalità e le prestazioni della piattaforma.',
149
+ ],
150
+ },
151
+ responsibilities: {
152
+ title: "Responsabilità dell'Utente:",
153
+ texts: [
154
+ "Sei responsabile dell'accuratezza e della legalità dei dati che carichi sulla piattaforma.",
155
+ 'Accetti di non utilizzare la piattaforma per attività illegali, dannose o non autorizzate.',
156
+ 'Devi rispettare la privacy e la confidenzialità di qualsiasi informazione sensibile contenuta nel corpus.',
157
+ ],
158
+ },
159
+ accessibility: {
160
+ title: 'Accessibilità dei Dati:',
161
+ texts: [
162
+ "Per impostazione predefinita, i dati caricati sulla Piattaforma Tycho Brahe sono limitati all'accesso pubblico a meno che non sia specificato esplicitamente da te.",
163
+ 'Puoi configurare le impostazioni di accesso per i tuoi corpora per determinare chi può visualizzare e utilizzare i tuoi dati.',
164
+ "Riconosci che la Piattaforma Tycho Brahe può raccogliere e memorizzare dati di utilizzo per migliorare l'esperienza utente.",
165
+ ],
166
+ },
167
+ acknowledgment: {
168
+ title: 'Riconoscimento:',
169
+ texts: [
170
+ 'Riconosci che la Piattaforma Tycho Brahe è fornita "così com\'è" senza garanzia di alcun tipo.',
171
+ 'Non garantiamo la disponibilità, accuratezza o affidabilità della piattaforma per alcun scopo specifico.',
172
+ ],
173
+ },
174
+ conduct: {
175
+ title: "Comportamento dell'Utente:",
176
+ texts: [
177
+ 'Accetti di comportarti in modo rispettoso e professionale mentre usi la piattaforma.',
178
+ 'Qualsiasi uso improprio o abuso della piattaforma può comportare la sospensione o la terminazione del tuo account.',
179
+ ],
180
+ },
181
+ feedback: {
182
+ title: 'Feedback e Contributi:',
183
+ texts: [
184
+ 'Accettiamo volentieri il tuo feedback e suggerimenti per migliorare la Piattaforma Tycho Brahe.',
185
+ 'Contributi come segnalazioni di bug, richieste di funzionalità e contributi di codice sono incoraggiati e apprezzati.',
186
+ ],
187
+ },
188
+ termination: {
189
+ title: "Terminazione dell'Uso:",
190
+ texts: [
191
+ "Hai il diritto di terminare l'uso della Piattaforma Tycho Brahe in qualsiasi momento.",
192
+ 'Ci riserviamo il diritto di sospendere o terminare il tuo account se violi questi termini o ti impegni in qualsiasi comportamento inappropriato.',
193
+ ],
194
+ },
195
+ create: {
196
+ title: 'Creazione di un corpus',
197
+ texts: [
198
+ 'Quando crei un corpus stai SOLICITANDO la creazione aos amministratori della Piattaforma Tycho Brahe e questo deve passare per un processo di approvazione.',
199
+ 'Potrai creare solo 1 (uno) corpus, ossia dopo aver richiesto la creazione del corpus e questo sia approvato, non potrai creare un altro in seguito.',
200
+ ],
201
+ },
202
+ },
203
+ };
package/dist/index.d.ts CHANGED
@@ -73,3 +73,4 @@ export { default as VirtualKeyboard } from './VirtualKeyboard';
73
73
  export { KeyboardCustomLayouts } from './VirtualKeyboard/KeyboardCustomLayout';
74
74
  export type { KeyboardLayout } from './VirtualKeyboard/KeyboardCustomLayout';
75
75
  export { default as AppCopyText } from './AppCopyText';
76
+ export { default as AppConsent } from './AppConsent';
package/dist/index.js CHANGED
@@ -57,3 +57,4 @@ export { default as SyntreesCytoscape } from './TreeView/cytoscape/SyntreesCytos
57
57
  export { default as VirtualKeyboard } from './VirtualKeyboard';
58
58
  export { KeyboardCustomLayouts } from './VirtualKeyboard/KeyboardCustomLayout';
59
59
  export { default as AppCopyText } from './AppCopyText';
60
+ export { default as AppConsent } from './AppConsent';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tycho-components",
3
3
  "private": false,
4
- "version": "0.2.16",
4
+ "version": "0.2.17",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -53,7 +53,7 @@
53
53
  "react-hook-form": "^7.45.2",
54
54
  "react-i18next": "^13.0.2",
55
55
  "react-router-dom": "^6.14.2",
56
- "tycho-storybook": "0.1.11",
56
+ "tycho-storybook": "0.1.12",
57
57
  "yup": "^1.2.0"
58
58
  },
59
59
  "devDependencies": {