@m4l/components 8.1.0-beta.devManuela.HelperError → 8.1.0-beta.devManuela.TextField

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 (93) hide show
  1. package/@types/export.d.ts +4 -1
  2. package/@types/types.d.ts +12 -0
  3. package/components/DynamicFilter/DynamicFIlter.styles.js +156 -0
  4. package/components/GridLayout/subcomponents/withSizeProvider/index.d.ts +2 -2
  5. package/components/HelperError/HelperError.d.ts +11 -1
  6. package/components/HelperError/HelperError.js +2 -18
  7. package/components/HelperError/HelperError.styles.js +2 -2
  8. package/components/HelperError/constant.d.ts +0 -4
  9. package/components/HelperError/slots/HelperErrorEnum.d.ts +0 -3
  10. package/components/HelperError/slots/HelperErrorSlots.d.ts +4 -4
  11. package/components/HelperError/types.d.ts +4 -22
  12. package/components/Icon/Icon.styles.js +1 -1
  13. package/components/Label/Label.d.ts +17 -1
  14. package/components/Label/Label.js +8 -3
  15. package/components/Label/Label.styles.js +43 -6
  16. package/components/Label/{Label.stories.d.ts → stories/PaletteColor/DefaultinternalManagement/LabelDefaultInternal.stories.d.ts} +6 -8
  17. package/components/Label/stories/PaletteColor/DefaultinternalManagement/LabelDefaultPredeterminado.stories.d.ts +18 -0
  18. package/components/Label/stories/PaletteColor/DefaultinternalManagement/commonProps/LabelDefaultInternalVariants.stories.d.ts +14 -0
  19. package/components/Label/stories/PaletteColor/DefaultinternalManagement/commonProps/LabelDefaultVariants.stories.d.ts +14 -0
  20. package/components/Label/types.d.ts +7 -1
  21. package/components/MFLoader/MFLoader.d.ts +6 -0
  22. package/components/MFLoader/MFLoader.js +3 -0
  23. package/components/NavLink/NavLink.d.ts +4 -0
  24. package/components/areas/components/AreasViewer/classes/index.d.ts +2 -2
  25. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/PanelWindows/index.d.ts +2 -2
  26. package/components/areas/contexts/AreasContext/store.d.ts +4 -0
  27. package/components/areas/contexts/AreasContext/store.js +268 -0
  28. package/components/hook-form/RHFAutocompleteAsync/subcomponents/ComponentTypeImage/index.d.ts +4 -0
  29. package/components/hook-form/RHFAutocompleteAsync/subcomponents/ComponentTypeText/index.d.ts +4 -0
  30. package/components/hook-form/RHFTextField/RHFTextField.js +15 -4
  31. package/components/hook-form/RHFTextField/RHFTextField.styles.js +266 -96
  32. package/components/hook-form/RHFTextField/slots/RHFTextFieldSlots.d.ts +10 -10
  33. package/components/hook-form/RHFTextField/stories/Default/RHFTextFieldDisabledOutlined.stories.d.ts +10 -0
  34. package/components/hook-form/RHFTextField/stories/Default/RHFTextFieldDisabledText.stories.d.ts +10 -0
  35. package/components/hook-form/RHFTextField/stories/Default/RHFTextFieldSkeleton.stories.d.ts +6 -0
  36. package/components/hook-form/RHFTextField/stories/Error/TextFieldErrorOutlined.stories.d.ts +9 -0
  37. package/components/hook-form/RHFTextField/stories/Error/TextFieldErrorText.stories.d.ts +9 -0
  38. package/components/hook-form/RHFTextField/stories/Primary/TextFieldOutlined.stories.d.ts +9 -0
  39. package/components/hook-form/RHFTextField/stories/Primary/TextFieldText.stories.d.ts +9 -0
  40. package/components/hook-form/RHFTextField/types.d.ts +10 -2
  41. package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/index.d.ts +2 -2
  42. package/components/maps/components/Map/contexts/MapContext/store.d.ts +2 -2
  43. package/components/maps/components/Map/contexts/MapContext/store.js +272 -152
  44. package/components/maps/components/Map/hooks/useAutoFocus/index.d.ts +2 -2
  45. package/components/maps/components/Map/pluginLayers/PolylineWithArrows/index.d.ts +2 -2
  46. package/components/maps/components/Map/subcomponents/LayersContainer/subcomponents/MyLayer/index.d.ts +2 -2
  47. package/components/mui_extended/Accordion/Accordion.d.ts +4 -0
  48. package/components/mui_extended/IconButton/IconButton.d.ts +2 -2
  49. package/components/mui_extended/IconButton/IconButton.styles.js +18 -2
  50. package/components/mui_extended/LoadingButton/index.d.ts +4 -0
  51. package/components/mui_extended/Skeleton/Skeleton.d.ts +4 -0
  52. package/components/mui_extended/Skeleton/skeleton.styles.js +4 -0
  53. package/components/mui_extended/TextField/TextField.d.ts +5 -0
  54. package/components/mui_extended/TextField/TextField.styles.d.ts +2 -0
  55. package/components/mui_extended/TextField/constants.d.ts +1 -0
  56. package/components/mui_extended/TextField/index.d.ts +1 -0
  57. package/components/mui_extended/TextField/slots/TextFieldEnum.d.ts +5 -0
  58. package/components/mui_extended/TextField/slots/TextFieldSlots.d.ts +13 -0
  59. package/components/mui_extended/TextField/slots/index.d.ts +2 -0
  60. package/components/mui_extended/TextField/stories/PaletteColorTextField/Default/TextFieldDisabledOutlined.stories.d.ts +15 -0
  61. package/components/mui_extended/TextField/stories/PaletteColorTextField/Default/TextFieldDisabledText.stories.d.ts +15 -0
  62. package/components/mui_extended/TextField/stories/PaletteColorTextField/Default/TextFieldSkeleton.stories.d.ts +11 -0
  63. package/components/mui_extended/TextField/stories/PaletteColorTextField/Error/TextFieldErrorOutlined.stories.d.ts +9 -0
  64. package/components/mui_extended/TextField/stories/PaletteColorTextField/Error/TextFieldErrorText.stories.d.ts +9 -0
  65. package/components/mui_extended/TextField/stories/PaletteColorTextField/Error/states/stateOutlined/TextFieldErrorOutlinedStateActive.stories.d.ts +14 -0
  66. package/components/mui_extended/TextField/stories/PaletteColorTextField/Error/states/stateOutlined/TextFieldErrorOutlinedStateEnabled.stories.d.ts +14 -0
  67. package/components/mui_extended/TextField/stories/PaletteColorTextField/Error/states/stateOutlined/TextFieldErrorOutlinedStateFocus.stories.d.ts +14 -0
  68. package/components/mui_extended/TextField/stories/PaletteColorTextField/Error/states/stateOutlined/TextFieldErrorOutlinedStateHover.stories.d.ts +14 -0
  69. package/components/mui_extended/TextField/stories/PaletteColorTextField/Error/states/stateText/TextFieldTextErrorStateActive.stories.d.ts +14 -0
  70. package/components/mui_extended/TextField/stories/PaletteColorTextField/Error/states/stateText/TextFieldTextErrorStateEnabled.stories.d.ts +14 -0
  71. package/components/mui_extended/TextField/stories/PaletteColorTextField/Error/states/stateText/TextFieldTextErrorStateFocus.stories.d.ts +14 -0
  72. package/components/mui_extended/TextField/stories/PaletteColorTextField/Error/states/stateText/TextFieldTextErrorStateHover.stories.d.ts +14 -0
  73. package/components/mui_extended/TextField/stories/PaletteColorTextField/Primary/TextFieldOutlined.stories.d.ts +9 -0
  74. package/components/mui_extended/TextField/stories/PaletteColorTextField/Primary/TextFieldText.stories.d.ts +12 -0
  75. package/components/mui_extended/TextField/stories/PaletteColorTextField/Primary/states/stateOutlined/TextFieldPrimaryOutlinedStateActive.stories.d.ts +14 -0
  76. package/components/mui_extended/TextField/stories/PaletteColorTextField/Primary/states/stateOutlined/TextFieldPrimaryOutlinedStateEnabled.stories.d.ts +14 -0
  77. package/components/mui_extended/TextField/stories/PaletteColorTextField/Primary/states/stateOutlined/TextFieldPrimaryOutlinedStateFocus.stories.d.ts +14 -0
  78. package/components/mui_extended/TextField/stories/PaletteColorTextField/Primary/states/stateOutlined/TextFieldPrimaryOutlinedStateHover.stories.d.ts +14 -0
  79. package/components/mui_extended/TextField/stories/PaletteColorTextField/Primary/states/stateText/TextFieldTextPrimaryStateActive.stories.d.ts +14 -0
  80. package/components/mui_extended/TextField/stories/PaletteColorTextField/Primary/states/stateText/TextFieldTextPrimaryStateEnabled.stories.d.ts +14 -0
  81. package/components/mui_extended/TextField/stories/PaletteColorTextField/Primary/states/stateText/TextFieldTextPrimaryStateFocus.stories.d.ts +14 -0
  82. package/components/mui_extended/TextField/stories/PaletteColorTextField/Primary/states/stateText/TextFieldTextPrimaryStateHover.stories.d.ts +14 -0
  83. package/components/mui_extended/TextField/stories/PaletteColorTextField/sizes/TextFieldSizes.stories.d.ts +16 -0
  84. package/components/mui_extended/TextField/types.d.ts +35 -0
  85. package/components/mui_extended/Typography/Typography.d.ts +4 -0
  86. package/components/mui_extended/Typography/typography.styles.js +4 -0
  87. package/components/popups/components/PopupsProvider/contexts/PopupsContext/store.d.ts +2 -2
  88. package/components/popups/components/PopupsProvider/contexts/PopupsContext/store.js +82 -18
  89. package/contexts/RealTimeContext/store.d.ts +2 -2
  90. package/contexts/RealTimeContext/store.js +22 -6
  91. package/hooks/useSizeContainer/index.d.ts +2 -2
  92. package/package.json +1 -1
  93. package/components/hook-form/RHFTextField/RHFTextField.stories.d.ts +0 -14
@@ -0,0 +1,13 @@
1
+ export declare const MuiTextFieldStyled: import('@emotion/styled').StyledComponent<Pick<{
2
+ variant?: import('@mui/material').TextFieldVariants | undefined;
3
+ } & Omit<import('@mui/material').FilledTextFieldProps | import('@mui/material').StandardTextFieldProps | import('@mui/material').OutlinedTextFieldProps, "variant">, "color" | "content" | "translate" | "margin" | "size" | "disabled" | "sx" | "classes" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "slot" | "spellCheck" | "style" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "ref" | "error" | "name" | "label" | "select" | "key" | "component" | "value" | "type" | "variant" | "autoComplete" | "placeholder" | "required" | "rows" | "fullWidth" | "inputProps" | "inputRef" | "SelectProps" | "multiline" | "maxRows" | "minRows" | "hiddenLabel" | "focused" | "InputProps" | "FormHelperTextProps" | "helperText" | "InputLabelProps"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').OwnerState> & Record<string, unknown> & {
4
+ ownerState: Partial<import('../types').OwnerState> & Record<string, unknown>;
5
+ }, {}, {}>;
6
+ export declare const TextFieldRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').OwnerState> & Record<string, unknown> & {
7
+ ownerState: Partial<import('../types').OwnerState> & Record<string, unknown>;
8
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
9
+ export declare const MuiSkeletonStyled: import('@emotion/styled').StyledComponent<Pick<import('@mui/material').SkeletonOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
10
+ ref?: ((instance: HTMLSpanElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLSpanElement> | null | undefined;
11
+ }, "height" | "width" | "animation" | "sx" | "classes" | "className" | "style" | "children" | "variant">, "color" | "content" | "height" | "translate" | "width" | "animation" | "sx" | "classes" | "title" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "slot" | "spellCheck" | "style" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "ref" | "key" | "variant"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('../types').OwnerState> & Record<string, unknown> & {
12
+ ownerState: Partial<import('../types').OwnerState> & Record<string, unknown>;
13
+ }, {}, {}>;
@@ -0,0 +1,2 @@
1
+ export * from './TextFieldEnum';
2
+ export * from './TextFieldSlots';
@@ -0,0 +1,15 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../..';
3
+ /**
4
+ * Se aplica cuando el input está deshabilitado y no puede ser interactuado por el usuario.
5
+ *
6
+ * disabled
7
+ */
8
+ declare const meta: Meta<typeof TextField>;
9
+ type Story = StoryObj<typeof TextField>;
10
+ export declare const OutlinedDisabled: Story;
11
+ export declare const WhitoutEndAdorment: Story;
12
+ export declare const WhitAdorment: Story;
13
+ export declare const WhitoutStartAdorment: Story;
14
+ export declare const WhitoutAdorment: Story;
15
+ export default meta;
@@ -0,0 +1,15 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../..';
3
+ /**
4
+ * Se aplica cuando el input está deshabilitado y no puede ser interactuado por el usuario.
5
+ *
6
+ * disabled
7
+ */
8
+ declare const meta: Meta<typeof TextField>;
9
+ type Story = StoryObj<typeof TextField>;
10
+ export declare const TextDisabled: Story;
11
+ export declare const WhitoutEndAdorment: Story;
12
+ export declare const WhitoutStartAdorment: Story;
13
+ export declare const WhitAdorment: Story;
14
+ export declare const WhitoutAdorment: Story;
15
+ export default meta;
@@ -0,0 +1,11 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../..';
3
+ /**
4
+ * Se utiliza cuando el componente está esperando datos de una fuente externa, como una API.
5
+ *
6
+ * useModuleSkeleton
7
+ */
8
+ declare const meta: Meta<typeof TextField>;
9
+ type Story = StoryObj<typeof TextField>;
10
+ export declare const SkeletonBase: Story;
11
+ export default meta;
@@ -0,0 +1,9 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../..';
3
+ declare const meta: Meta<typeof TextField>;
4
+ type Story = StoryObj<typeof TextField>;
5
+ /**
6
+ * Error en variante outlined y text se utiliza para mostrar un campo de texto que indica un estado de error. Esto es útil para proporcionar retroalimentación visual al usuario cuando hay un problema con la entrada de datos.
7
+ */
8
+ export declare const ErrorOutlined: Story;
9
+ export default meta;
@@ -0,0 +1,9 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../..';
3
+ declare const meta: Meta<typeof TextField>;
4
+ type Story = StoryObj<typeof TextField>;
5
+ /**
6
+ * Error en variante outlined y text se utiliza para mostrar un campo de texto que indica un estado de error. Esto es útil para proporcionar retroalimentación visual al usuario cuando hay un problema con la entrada de datos.
7
+ */
8
+ export declare const ErrorText: Story;
9
+ export default meta;
@@ -0,0 +1,14 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../../../..';
3
+ declare const meta: Meta<typeof TextField>;
4
+ type Story = StoryObj<typeof TextField>;
5
+ /**
6
+ * Componente TextField en su estado Error Active con variante outlined
7
+ * con diferentes configuraciones de adornos y variantes.
8
+ */
9
+ export declare const ActiveOutlined: Story;
10
+ export declare const WhitoutAdornments: Story;
11
+ export declare const WhitAdornments: Story;
12
+ export declare const WhitAdornmentsEnd: Story;
13
+ export declare const WhitAdornmentsStart: Story;
14
+ export default meta;
@@ -0,0 +1,14 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../../../..';
3
+ declare const meta: Meta<typeof TextField>;
4
+ type Story = StoryObj<typeof TextField>;
5
+ /**
6
+ * Componente TextField en su estado Error Active con variante outlined
7
+ * con diferentes configuraciones de adornos y variantes.
8
+ */
9
+ export declare const EnabledOutlined: Story;
10
+ export declare const WhitoutAdornments: Story;
11
+ export declare const WhitAdornments: Story;
12
+ export declare const WhitAdornmentsEnd: Story;
13
+ export declare const WhitAdornmentsStart: Story;
14
+ export default meta;
@@ -0,0 +1,14 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../../../..';
3
+ declare const meta: Meta<typeof TextField>;
4
+ type Story = StoryObj<typeof TextField>;
5
+ /**
6
+ * Componente TextField en su estado Error Active con variante outlined
7
+ * con diferentes configuraciones de adornos y variantes.
8
+ */
9
+ export declare const FocusOutlined: Story;
10
+ export declare const WhitoutAdornments: Story;
11
+ export declare const WhitAdornments: Story;
12
+ export declare const WhitAdornmentsEnd: Story;
13
+ export declare const WhitAdornmentsStart: Story;
14
+ export default meta;
@@ -0,0 +1,14 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../../../..';
3
+ declare const meta: Meta<typeof TextField>;
4
+ type Story = StoryObj<typeof TextField>;
5
+ /**
6
+ * Componente TextField en su estado Error Active con variante outlined
7
+ * con diferentes configuraciones de adornos y variantes.
8
+ */
9
+ export declare const HoverOutlined: Story;
10
+ export declare const WhitoutAdornments: Story;
11
+ export declare const WhitAdornments: Story;
12
+ export declare const WhitAdornmentsEnd: Story;
13
+ export declare const WhitAdornmentsStart: Story;
14
+ export default meta;
@@ -0,0 +1,14 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../../../..';
3
+ declare const meta: Meta<typeof TextField>;
4
+ type Story = StoryObj<typeof TextField>;
5
+ /**
6
+ * Componente TextField en su estado Error Active con variante text
7
+ * con diferentes configuraciones de adornos y variantes.
8
+ */
9
+ export declare const ActiveText: Story;
10
+ export declare const WhitoutAdornments: Story;
11
+ export declare const WhitAdornments: Story;
12
+ export declare const WhitAdornmentsEnd: Story;
13
+ export declare const WhitAdornmentsStart: Story;
14
+ export default meta;
@@ -0,0 +1,14 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../../../..';
3
+ declare const meta: Meta<typeof TextField>;
4
+ type Story = StoryObj<typeof TextField>;
5
+ /**
6
+ * Componente TextField en su estado Error Enabled con variante text
7
+ * con diferentes configuraciones de adornos y variantes.
8
+ */
9
+ export declare const EnabledText: Story;
10
+ export declare const WhitoutAdornments: Story;
11
+ export declare const WhitAdornments: Story;
12
+ export declare const WhitAdornmentsEnd: Story;
13
+ export declare const WhitAdornmentsStart: Story;
14
+ export default meta;
@@ -0,0 +1,14 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../../../..';
3
+ declare const meta: Meta<typeof TextField>;
4
+ type Story = StoryObj<typeof TextField>;
5
+ /**
6
+ * Componente TextField en su estado Error Focus con variante text
7
+ * con diferentes configuraciones de adornos y variantes.
8
+ */
9
+ export declare const FocusText: Story;
10
+ export declare const WhitoutAdornments: Story;
11
+ export declare const WhitAdornments: Story;
12
+ export declare const WhitAdornmentsEnd: Story;
13
+ export declare const WhitAdornmentsStart: Story;
14
+ export default meta;
@@ -0,0 +1,14 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../../../..';
3
+ declare const meta: Meta<typeof TextField>;
4
+ type Story = StoryObj<typeof TextField>;
5
+ /**
6
+ * Componente TextField en su estado Error Hover con variante text
7
+ * con diferentes configuraciones de adornos y variantes.
8
+ */
9
+ export declare const HoverText: Story;
10
+ export declare const WhitoutAdornments: Story;
11
+ export declare const WhitAdornments: Story;
12
+ export declare const WhitAdornmentsEnd: Story;
13
+ export declare const WhitAdornmentsStart: Story;
14
+ export default meta;
@@ -0,0 +1,9 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../..';
3
+ declare const meta: Meta<typeof TextField>;
4
+ type Story = StoryObj<typeof TextField>;
5
+ /**
6
+ * Story for the primary outlined variant of the TextField component.
7
+ */
8
+ export declare const PrimaryOutlined: Story;
9
+ export default meta;
@@ -0,0 +1,12 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../..';
3
+ /**
4
+ * Meta configuration for the TextField stories.
5
+ */
6
+ declare const meta: Meta<typeof TextField>;
7
+ type Story = StoryObj<typeof TextField>;
8
+ /**
9
+ * Story for the primary text variant of the TextField component.
10
+ */
11
+ export declare const PrimaryText: Story;
12
+ export default meta;
@@ -0,0 +1,14 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../../../..';
3
+ declare const meta: Meta<typeof TextField>;
4
+ type Story = StoryObj<typeof TextField>;
5
+ /**
6
+ * Componente TextField en su estado primary Active con variante outlined
7
+ * con diferentes configuraciones de adornos y variantes.
8
+ */
9
+ export declare const ActiveOutlined: Story;
10
+ export declare const WhitoutAdornments: Story;
11
+ export declare const WhitAdornments: Story;
12
+ export declare const WhitAdornmentsEnd: Story;
13
+ export declare const WhitAdornmentsStart: Story;
14
+ export default meta;
@@ -0,0 +1,14 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../../../..';
3
+ declare const meta: Meta<typeof TextField>;
4
+ type Story = StoryObj<typeof TextField>;
5
+ /**
6
+ * Componente TextField en su estado primary Enabled con variante outlined
7
+ * con diferentes configuraciones de adornos y variantes.
8
+ */
9
+ export declare const EnabledOutlined: Story;
10
+ export declare const WhitoutAdornments: Story;
11
+ export declare const WhitAdornments: Story;
12
+ export declare const WhitAdornmentsEnd: Story;
13
+ export declare const WhitAdornmentsStart: Story;
14
+ export default meta;
@@ -0,0 +1,14 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../../../..';
3
+ declare const meta: Meta<typeof TextField>;
4
+ type Story = StoryObj<typeof TextField>;
5
+ /**
6
+ * Componente TextField en su estado primary Focus con variante outlined
7
+ * con diferentes configuraciones de adornos y variantes.
8
+ */
9
+ export declare const FocusOutlined: Story;
10
+ export declare const WhitoutAdornments: Story;
11
+ export declare const WhitAdornments: Story;
12
+ export declare const WhitAdornmentsEnd: Story;
13
+ export declare const WhitAdornmentsStart: Story;
14
+ export default meta;
@@ -0,0 +1,14 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../../../..';
3
+ declare const meta: Meta<typeof TextField>;
4
+ type Story = StoryObj<typeof TextField>;
5
+ /**
6
+ * Componente TextField en su estado primary Hover con variante outlined
7
+ * con diferentes configuraciones de adornos y variantes.
8
+ */
9
+ export declare const HoverOutlined: Story;
10
+ export declare const WhitoutAdornments: Story;
11
+ export declare const WhitAdornments: Story;
12
+ export declare const WhitAdornmentsEnd: Story;
13
+ export declare const WhitAdornmentsStart: Story;
14
+ export default meta;
@@ -0,0 +1,14 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../../../..';
3
+ declare const meta: Meta<typeof TextField>;
4
+ type Story = StoryObj<typeof TextField>;
5
+ /**
6
+ * Componente TextField en su estado primary Active con variante text
7
+ * con diferentes configuraciones de adornos y variantes.
8
+ */
9
+ export declare const ActiveText: Story;
10
+ export declare const WhitoutAdornments: Story;
11
+ export declare const WhitAdornments: Story;
12
+ export declare const WhitAdornmentsEnd: Story;
13
+ export declare const WhitAdornmentsStart: Story;
14
+ export default meta;
@@ -0,0 +1,14 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../../../..';
3
+ declare const meta: Meta<typeof TextField>;
4
+ type Story = StoryObj<typeof TextField>;
5
+ /**
6
+ * Componente TextField en su estado primary Enabled con variante text
7
+ * con diferentes configuraciones de adornos y variantes.
8
+ */
9
+ export declare const EnabledText: Story;
10
+ export declare const WhitoutAdornments: Story;
11
+ export declare const WhitAdornments: Story;
12
+ export declare const WhitAdornmentsEnd: Story;
13
+ export declare const WhitAdornmentsStart: Story;
14
+ export default meta;
@@ -0,0 +1,14 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../../../..';
3
+ declare const meta: Meta<typeof TextField>;
4
+ type Story = StoryObj<typeof TextField>;
5
+ /**
6
+ * Componente TextField en su estado primary Focus con variante text
7
+ * con diferentes configuraciones de adornos y variantes.
8
+ */
9
+ export declare const FocusText: Story;
10
+ export declare const WhitoutAdornments: Story;
11
+ export declare const WhitAdornments: Story;
12
+ export declare const WhitAdornmentsEnd: Story;
13
+ export declare const WhitAdornmentsStart: Story;
14
+ export default meta;
@@ -0,0 +1,14 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../../../..';
3
+ declare const meta: Meta<typeof TextField>;
4
+ type Story = StoryObj<typeof TextField>;
5
+ /**
6
+ * Componente TextField en su estado primary Hover con variante text
7
+ * con diferentes configuraciones de adornos y variantes.
8
+ */
9
+ export declare const HoverText: Story;
10
+ export declare const WhitoutAdornments: Story;
11
+ export declare const WhitAdornments: Story;
12
+ export declare const WhitAdornmentsEnd: Story;
13
+ export declare const WhitAdornmentsStart: Story;
14
+ export default meta;
@@ -0,0 +1,16 @@
1
+ import { Meta, StoryObj } from '@storybook/react/*';
2
+ import { TextField } from '../../../TextField';
3
+ /**
4
+ * Meta configuration for the TextField stories.
5
+ */
6
+ declare const meta: Meta<typeof TextField>;
7
+ type Story = StoryObj<typeof TextField>;
8
+ /**
9
+ * Story for the small size variant of the TextField component.
10
+ */
11
+ export declare const Small: Story;
12
+ /**
13
+ * Story for the medium size variant of the TextField component.
14
+ */
15
+ export declare const Medium: Story;
16
+ export default meta;
@@ -0,0 +1,35 @@
1
+ import { TextFieldProps as MUITextFieldProps } from '@mui/material/TextField';
2
+ import { Theme, PaletteColor } from '@mui/material';
3
+ import { TextFieldSlots } from './slots/TextFieldEnum';
4
+ import { OverridesStyleRules } from '@mui/material/styles/overrides';
5
+ import { TEXT_FIELD_KEY_COMPONENT } from './constants';
6
+ import { ComponentPalletColor, Sizes } from '@m4l/styles';
7
+ import { LabelProps } from '../../Label/types';
8
+ /**
9
+ * Variants for the TextField component.
10
+ */
11
+ export type TextFieldVariants = 'outlined' | 'text';
12
+ /**
13
+ * Variants for the Skeleton component.
14
+ */
15
+ export type SkeletonVariants = 'rectangular' | 'circular' | 'text';
16
+ /**
17
+ * Props for the TextField component.
18
+ *
19
+ */
20
+ export interface TextFieldProps extends Omit<MUITextFieldProps, 'size' | 'color' | 'disabled' | 'variant'>, Pick<LabelProps, 'helperMessage' | 'htmlFor' | 'id' | 'mandatory' | 'mandatoryMessage'> {
21
+ dataTestId?: string;
22
+ variant?: TextFieldVariants;
23
+ disabled?: boolean;
24
+ size?: Sizes;
25
+ color?: Extract<ComponentPalletColor, 'primary'>;
26
+ }
27
+ export type OwnerState = Pick<TextFieldProps, 'size' | 'color' | 'disabled' | 'error'> & {
28
+ disabled?: boolean;
29
+ paletteColor: PaletteColor;
30
+ variantTextField?: TextFieldVariants;
31
+ componentPaletteColor?: ComponentPalletColor;
32
+ };
33
+ export type TextFieldSlotsType = keyof typeof TextFieldSlots;
34
+ export type TextFieldOwnerState = OwnerState;
35
+ export type TextFieldStyles = Partial<OverridesStyleRules<TextFieldSlotsType, typeof TEXT_FIELD_KEY_COMPONENT, Theme> | undefined> | undefined;
@@ -17,5 +17,9 @@ import { TypographyProps } from './types';
17
17
  * @param {React.ReactNode} [props.children] - The content of the typography.
18
18
  * @param {object} [props.other] - Additional properties to be passed to the component.
19
19
  * @returns {JSX.Element} The rendered Typography component.
20
+ * @author Bruce Escobar - automatic
21
+ * @createdAt 2024-10-22 09:41:31 - automatic
22
+ * @updatedAt 2024-10-22 09:42:39 - automatic
23
+ * @updatedUser Bruce Escobar - automatic
20
24
  */
21
25
  export declare function Typography(props: TypographyProps): import("react/jsx-runtime").JSX.Element;
@@ -2,6 +2,10 @@ const typographyStyles = {
2
2
  /**
3
3
  * Slot: root
4
4
  * Componente extendido de MUI Typography, que permite personalizar los estilos del componente.
5
+ * @author Bruce Escobar - automatic
6
+ * @createdAt 2024-10-22 09:41:31 - automatic
7
+ * @updatedAt 2024-10-22 09:42:39 - automatic
8
+ * @updatedUser Bruce Escobar - automatic
5
9
  */
6
10
  root: ({ ownerState, theme }) => ({
7
11
  "&.M4lclassCssSpecificity": {
@@ -8,8 +8,8 @@ import { PopupsStateWithActions, InitialPopupsStoreProps } from './types';
8
8
  /**
9
9
  * Crea el store de los popups
10
10
  * @author Juan Escobar - automatic
11
- * @updatedAt 2024-10-15 18:01:45 - automatic
12
- * @updatedUser Juan Escobar - automatic
11
+ * @updatedAt 2024-10-22 09:42:39 - automatic
12
+ * @updatedUser Bruce Escobar - automatic
13
13
  * @createdAt 2024-10-15 17:33:28 - automatic
14
14
  */
15
15
  export declare const createPopupsStore: (initProps: InitialPopupsStoreProps) => Omit<Omit<import('zustand').StoreApi<PopupsStateWithActions>, "setState"> & {
@@ -17,22 +17,86 @@ const createPopupsStore = (initProps) => {
17
17
  popupsActions: {
18
18
  /**
19
19
  * TODO: Documentar
20
- * @updatedUser Juan Escobar - automatic
21
- * @updatedUser Juan Escobar - automatic
22
- * @updatedUser Juan Escobar - automatic
23
- * @updatedUser Juan Escobar - automatic
24
- * @updatedUser Juan Escobar - automatic
25
- * @updatedUser Juan Escobar - automatic
26
- * @updatedUser Juan Escobar - automatic
27
- * @updatedUser Juan Escobar - automatic
28
- * @updatedAt 2024-10-15 18:01:45 - automatic
29
- * @updatedAt 2024-10-15 18:01:45 - automatic
30
- * @updatedAt 2024-10-15 18:01:45 - automatic
31
- * @updatedAt 2024-10-15 18:01:45 - automatic
32
- * @updatedAt 2024-10-15 18:01:45 - automatic
33
- * @updatedAt 2024-10-15 18:01:45 - automatic
34
- * @updatedAt 2024-10-15 18:01:45 - automatic
35
- * @updatedAt 2024-10-15 18:01:45 - automatic
20
+ * @updatedUser Bruce Escobar - automatic
21
+ * @updatedUser Bruce Escobar - automatic
22
+ * @updatedUser Bruce Escobar - automatic
23
+ * @updatedUser Bruce Escobar - automatic
24
+ * @updatedUser Bruce Escobar - automatic
25
+ * @updatedUser Bruce Escobar - automatic
26
+ * @updatedUser Bruce Escobar - automatic
27
+ * @updatedUser Bruce Escobar - automatic
28
+ * @updatedAt 2024-10-22 09:42:39 - automatic
29
+ * @updatedAt 2024-10-22 09:42:39 - automatic
30
+ * @updatedAt 2024-10-22 09:42:39 - automatic
31
+ * @updatedAt 2024-10-22 09:42:39 - automatic
32
+ * @updatedAt 2024-10-22 09:42:39 - automatic
33
+ * @updatedAt 2024-10-22 09:42:39 - automatic
34
+ * @updatedAt 2024-10-22 09:42:39 - automatic
35
+ * @updatedAt 2024-10-22 09:42:39 - automatic
36
+ * @createdAt 2024-10-22 09:42:38 - automatic
37
+ * @createdAt 2024-10-22 09:42:38 - automatic
38
+ * @createdAt 2024-10-22 09:42:38 - automatic
39
+ * @createdAt 2024-10-22 09:42:38 - automatic
40
+ * @createdAt 2024-10-22 09:42:38 - automatic
41
+ * @createdAt 2024-10-22 09:42:38 - automatic
42
+ * @createdAt 2024-10-22 09:42:38 - automatic
43
+ * @createdAt 2024-10-22 09:42:38 - automatic
44
+ * @author Bruce Escobar - automatic
45
+ * @author Bruce Escobar - automatic
46
+ * @author Bruce Escobar - automatic
47
+ * @author Bruce Escobar - automatic
48
+ * @author Bruce Escobar - automatic
49
+ * @author Bruce Escobar - automatic
50
+ * @author Bruce Escobar - automatic
51
+ * @author Bruce Escobar - automatic
52
+ * @updatedUser Bruce Escobar - automatic
53
+ * @updatedUser Bruce Escobar - automatic
54
+ * @updatedUser Bruce Escobar - automatic
55
+ * @updatedUser Bruce Escobar - automatic
56
+ * @updatedUser Bruce Escobar - automatic
57
+ * @updatedUser Bruce Escobar - automatic
58
+ * @updatedUser Bruce Escobar - automatic
59
+ * @updatedUser Bruce Escobar - automatic
60
+ * @updatedAt 2024-10-22 09:42:39 - automatic
61
+ * @updatedAt 2024-10-22 09:42:39 - automatic
62
+ * @updatedAt 2024-10-22 09:42:39 - automatic
63
+ * @updatedAt 2024-10-22 09:42:39 - automatic
64
+ * @updatedAt 2024-10-22 09:42:39 - automatic
65
+ * @updatedAt 2024-10-22 09:42:39 - automatic
66
+ * @updatedAt 2024-10-22 09:42:39 - automatic
67
+ * @updatedAt 2024-10-22 09:42:39 - automatic
68
+ * @createdAt 2024-10-22 09:41:31 - automatic
69
+ * @createdAt 2024-10-22 09:41:31 - automatic
70
+ * @createdAt 2024-10-22 09:41:31 - automatic
71
+ * @createdAt 2024-10-22 09:41:31 - automatic
72
+ * @createdAt 2024-10-22 09:41:31 - automatic
73
+ * @createdAt 2024-10-22 09:41:31 - automatic
74
+ * @createdAt 2024-10-22 09:41:31 - automatic
75
+ * @createdAt 2024-10-22 09:41:31 - automatic
76
+ * @author Bruce Escobar - automatic
77
+ * @author Bruce Escobar - automatic
78
+ * @author Bruce Escobar - automatic
79
+ * @author Bruce Escobar - automatic
80
+ * @author Bruce Escobar - automatic
81
+ * @author Bruce Escobar - automatic
82
+ * @author Bruce Escobar - automatic
83
+ * @author Bruce Escobar - automatic
84
+ * @updatedUser Bruce Escobar - automatic
85
+ * @updatedUser Bruce Escobar - automatic
86
+ * @updatedUser Bruce Escobar - automatic
87
+ * @updatedUser Bruce Escobar - automatic
88
+ * @updatedUser Bruce Escobar - automatic
89
+ * @updatedUser Bruce Escobar - automatic
90
+ * @updatedUser Bruce Escobar - automatic
91
+ * @updatedUser Bruce Escobar - automatic
92
+ * @updatedAt 2024-10-22 09:42:39 - automatic
93
+ * @updatedAt 2024-10-22 09:42:39 - automatic
94
+ * @updatedAt 2024-10-22 09:42:39 - automatic
95
+ * @updatedAt 2024-10-22 09:42:39 - automatic
96
+ * @updatedAt 2024-10-22 09:42:39 - automatic
97
+ * @updatedAt 2024-10-22 09:42:39 - automatic
98
+ * @updatedAt 2024-10-22 09:42:39 - automatic
99
+ * @updatedAt 2024-10-22 09:42:39 - automatic
36
100
  * @createdAt 2024-10-15 18:01:45 - automatic
37
101
  * @createdAt 2024-10-15 18:01:45 - automatic
38
102
  * @createdAt 2024-10-15 18:01:45 - automatic
@@ -50,8 +114,8 @@ const createPopupsStore = (initProps) => {
50
114
  * @author Juan Escobar - automatic
51
115
  * @author Juan Escobar - automatic
52
116
  * @author Juan Escobar - automatic
53
- * @updatedAt 2024-10-15 18:01:45 - automatic
54
- * @updatedUser Juan Escobar - automatic
117
+ * @updatedAt 2024-10-22 09:42:39 - automatic
118
+ * @updatedUser Bruce Escobar - automatic
55
119
  * @createdAt 2024-10-15 17:33:28 - automatic
56
120
  */
57
121
  init: (initialPopups) => {
@@ -8,8 +8,8 @@ import { RealTimeStateWithActions, InitialRealTimeStoreProps } from './types';
8
8
  /**
9
9
  * TODO: Documentar
10
10
  * @author Juan Escobar - automatic
11
- * @updatedAt 2024-10-15 18:01:45 - automatic
12
- * @updatedUser Juan Escobar - automatic
11
+ * @updatedAt 2024-10-22 09:42:39 - automatic
12
+ * @updatedUser Bruce Escobar - automatic
13
13
  * @createdAt 2024-10-15 17:33:28 - automatic
14
14
  */
15
15
  export declare function createRealTimeStore(initProps: InitialRealTimeStoreProps): Omit<Omit<import('zustand').StoreApi<RealTimeStateWithActions>, "setState"> & {