@zauru-sdk/components 1.0.33 → 1.0.35
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.0.35](https://github.com/intuitiva/zauru-typescript-sdk/compare/v1.0.34...v1.0.35) (2024-03-25)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @zauru-sdk/components
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.0.34](https://github.com/intuitiva/zauru-typescript-sdk/compare/v1.0.33...v1.0.34) (2024-03-25)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @zauru-sdk/components
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [1.0.33](https://github.com/intuitiva/zauru-typescript-sdk/compare/v1.0.32...v1.0.33) (2024-03-25)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @zauru-sdk/components
|
package/dist/Chat/ChatLayout.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { useRef, useState } from "react";
|
|
3
|
-
import { TextField } from "../Form";
|
|
3
|
+
import { TextField } from "../Form/TextField";
|
|
4
4
|
import { Form } from "@remix-run/react";
|
|
5
|
-
import { LoadingInputSkeleton } from "
|
|
5
|
+
import { LoadingInputSkeleton } from "../Skeletons/LoadingInputSkeleton.js";
|
|
6
6
|
import { AttachmentIconSVG, SendMessageIcon, SpinnerSvg, } from "@zauru-sdk/icons";
|
|
7
7
|
export const ChatLayout = ({ children, sendingMessage = false, formConfig = undefined, }) => {
|
|
8
8
|
const refAttachment = useRef(null);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import React, { useEffect, useCallback, useState } from "react";
|
|
3
|
-
import { TextFieldWithoutValidation } from "
|
|
4
|
-
import { SelectFieldWithoutValidation } from "
|
|
3
|
+
import { TextFieldWithoutValidation } from "../Form/TextField";
|
|
4
|
+
import { SelectFieldWithoutValidation } from "../Form/SelectField";
|
|
5
5
|
import { useAppSelector } from "@zauru-sdk/redux";
|
|
6
6
|
const errorAnimation = {
|
|
7
7
|
hidden: { opacity: 0, y: -10 },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zauru-sdk/components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.35",
|
|
4
4
|
"description": "Componentes reutilizables en las WebApps de Zauru.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"engines": {
|
|
49
49
|
"node": ">=18.0.0"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "c1ebda7692cc270d457c2a736e0ae1448fd6d12b"
|
|
52
52
|
}
|
package/src/Buttons/Button.tsx
CHANGED
package/src/Chat/ChatLayout.tsx
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React, { useRef, useState } from "react";
|
|
2
|
-
import { TextField } from "../Form";
|
|
2
|
+
import { TextField } from "../Form/TextField";
|
|
3
3
|
import { Form } from "@remix-run/react";
|
|
4
4
|
import { FormDocumentType } from "@zauru-sdk/types";
|
|
5
|
-
import { LoadingInputSkeleton } from "
|
|
5
|
+
import { LoadingInputSkeleton } from "../Skeletons/LoadingInputSkeleton.js";
|
|
6
6
|
import {
|
|
7
7
|
AttachmentIconSVG,
|
|
8
8
|
SendMessageIcon,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, { useEffect, useCallback, useState, type ReactNode } from "react";
|
|
2
|
-
import { TextFieldWithoutValidation } from "
|
|
3
|
-
import { SelectFieldWithoutValidation } from "
|
|
2
|
+
import { TextFieldWithoutValidation } from "../Form/TextField";
|
|
3
|
+
import { SelectFieldWithoutValidation } from "../Form/SelectField";
|
|
4
4
|
import type { SingleValue } from "react-select";
|
|
5
5
|
import { useAppSelector } from "@zauru-sdk/redux";
|
|
6
6
|
import { SelectFieldOption } from "@zauru-sdk/types";
|