@ssplib/react-components 0.0.316 → 0.0.317

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 (43) hide show
  1. package/Map-31d95a26.js.map +1 -1
  2. package/Map-644d2f90.js.map +1 -1
  3. package/decorators/GenericFormBaseDecorator.d.ts +1 -1
  4. package/decorators/StepperDecorator.d.ts +1 -1
  5. package/index.cjs +2 -2
  6. package/index.cjs.map +1 -1
  7. package/index.esm.js +2 -2
  8. package/index.esm.js.map +1 -1
  9. package/package.json +1 -1
  10. package/stories/Autocomplete.stories.d.ts +1 -1
  11. package/stories/CheckBox.stories.d.ts +1 -1
  12. package/stories/CheckBoxWarning.stories.d.ts +1 -1
  13. package/stories/DatePicker.stories.d.ts +1 -1
  14. package/stories/DetalhesCategory.stories.d.ts +1 -1
  15. package/stories/DetalhesField.stories.d.ts +1 -1
  16. package/stories/DetalhesFieldLabel.stories.d.ts +1 -1
  17. package/stories/DetalhesFile.stories.d.ts +1 -1
  18. package/stories/DropFileUpload.stories.d.ts +1 -1
  19. package/stories/ExemploAssitirValorInput.stories.d.ts +1 -1
  20. package/stories/ExemploInputs.stories.d.ts +1 -1
  21. package/stories/ExemploValoresCompartilhados.stories.d.ts +1 -1
  22. package/stories/FetchAutocomplete.stories.d.ts +1 -1
  23. package/stories/FileUpload.stories.d.ts +1 -1
  24. package/stories/FixedAutocomplete.stories.d.ts +1 -1
  25. package/stories/GenericFetchAutocomplete.stories.d.ts +1 -1
  26. package/stories/GenericInput.stories.d.ts +1 -1
  27. package/stories/GenericTable.stories.d.ts +1 -1
  28. package/stories/Input.stories.d.ts +1 -1
  29. package/stories/LinearProgress.stories.d.ts +1 -1
  30. package/stories/LoadingScreen.stories.d.ts +1 -1
  31. package/stories/Map.stories.d.ts +1 -1
  32. package/stories/MultInput.stories.d.ts +1 -1
  33. package/stories/NavBar.stories.d.ts +1 -1
  34. package/stories/OptionalInput.stories.d.ts +1 -1
  35. package/stories/OtherCheckBox.stories.d.ts +1 -1
  36. package/stories/Stepper.stories.d.ts +1 -1
  37. package/stories/StepperBlock.stories.d.ts +1 -1
  38. package/stories/Switch.stories.d.ts +1 -1
  39. package/stories/Table.stories.d.ts +1 -1
  40. package/stories/TableWithStaticData.stories.d.ts +1 -1
  41. package/stories/Teste.stories.d.ts +1 -1
  42. package/stories/TimePicker.stories.d.ts +1 -1
  43. package/stories/ExemploTable.stories.d.ts +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ssplib/react-components",
3
- "version": "0.0.316",
3
+ "version": "0.0.317",
4
4
  "description": "SSP React Components",
5
5
  "author": "Pedro Henrique <sr.hudrick@gmail.com>",
6
6
  "license": "MIT",
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import AutoComplete from '../components/form/input/AutoComplete';
3
3
  declare const meta: Meta<typeof AutoComplete>;
4
4
  export default meta;
@@ -1,5 +1,5 @@
1
- import { Meta, StoryObj } from '@storybook/react';
2
1
  import CheckBox from '../components/form/checkbox/CheckBox';
2
+ import { Meta, StoryObj } from '@storybook/nextjs';
3
3
  declare const meta: Meta<typeof CheckBox>;
4
4
  export default meta;
5
5
  type Story = StoryObj<typeof CheckBox>;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import CheckboxWarning from '../components/form/checkbox/CheckBoxWarning';
3
3
  declare const meta: Meta<typeof CheckboxWarning>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import DatePicker from '../components/form/date/DatePicker';
3
3
  declare const meta: Meta<typeof DatePicker>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import { Category } from '../components/detalhes/Category';
3
3
  declare const meta: Meta<typeof Category>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import { Field } from '../components/detalhes/Field';
3
3
  declare const meta: Meta<typeof Field>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import { FieldLabel } from '../components/detalhes/FieldLabel';
3
3
  declare const meta: Meta<typeof FieldLabel>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import { File } from '../components/detalhes/File';
3
3
  declare const meta: Meta<typeof File>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import DropFileUpload from '../components/form/file/DropFileUpload';
3
3
  declare const meta: Meta<typeof DropFileUpload>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import 'react-toastify/ReactToastify.min.css';
3
3
  declare const meta: Meta<typeof Teste>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import 'react-toastify/ReactToastify.min.css';
3
3
  declare const meta: Meta<typeof Teste>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import 'react-toastify/ReactToastify.min.css';
3
3
  declare const meta: Meta<typeof Teste>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import FetchAutoComplete from '../components/form/input/FetchAutoComplete';
3
3
  declare const meta: Meta<typeof FetchAutoComplete>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import FileUpload from '../components/form/file/FileUpload';
3
3
  declare const meta: Meta<typeof FileUpload>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import { FixedAutoComplete } from '../components/form/input/FixedAutoComplete';
3
3
  declare const meta: Meta<typeof FixedAutoComplete>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import GenericFetchAutoComplete from '../components/form/input/GenericFetchAutoComplete';
3
3
  declare const meta: Meta<typeof GenericFetchAutoComplete>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import GenericInput from '../components/form/input/GenericInput';
3
3
  declare const meta: Meta<typeof GenericInput>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import { GenericTable } from '../components/form/table/GenericTable';
3
3
  declare const meta: Meta<typeof GenericTable>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import Input from '../components/form/input/Input';
3
3
  declare const meta: Meta<typeof Input>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import { LinearProgress } from '../components/loading/LinearProgress';
3
3
  declare const meta: Meta<typeof LinearProgress>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import { LoadingScreen } from '../components/loading/LoadingScreen';
3
3
  declare const meta: Meta<typeof LoadingScreen>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import { Map } from '../components/map/Map';
3
3
  declare const meta: Meta<typeof Map>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import MultInput from '../components/form/input/MultInput';
3
3
  declare const meta: Meta<typeof MultInput>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import NavBar from '../components/navbar/NavBar';
3
3
  declare const meta: Meta<typeof NavBar>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import OptionalInput from '../components/form/input/OptionalInput';
3
3
  declare const meta: Meta<typeof OptionalInput>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import OtherCheckBox from '../components/form/input/OtherCheckBox';
3
3
  declare const meta: Meta<typeof OtherCheckBox>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import Stepper from '../components/form/stepper/Stepper';
3
3
  declare const meta: Meta<typeof Stepper>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import StepperBlock from '../components/form/stepper/StepperBlock';
3
3
  declare const meta: Meta<typeof StepperBlock>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import Switch from '../components/form/switch/Switch';
3
3
  declare const meta: Meta<typeof Switch>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta } from '@storybook/react';
1
+ import { Meta } from '@storybook/nextjs';
2
2
  import Table from '../components/form/table/Table';
3
3
  declare const meta: Meta<typeof Table>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import Table from '../components/form/table/Table';
3
3
  declare const meta: Meta<typeof Table>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import Teste from '../components/teste/Teste.tsx';
3
3
  declare const meta: Meta<typeof Teste>;
4
4
  export default meta;
@@ -1,4 +1,4 @@
1
- import { Meta, StoryObj } from '@storybook/react';
1
+ import { Meta, StoryObj } from '@storybook/nextjs';
2
2
  import TimePicker from '../components/form/date/TimePicker';
3
3
  declare const meta: Meta<typeof TimePicker>;
4
4
  export default meta;
@@ -1 +0,0 @@
1
- import 'react-toastify/ReactToastify.min.css';