@copilotkit/react-textarea 1.54.1-next.6 → 1.55.0-next.7
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 +13 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.mts +3 -3
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +4 -4
- package/src/components/copilot-textarea/copilot-textarea.tsx +3 -3
- package/tsconfig.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -250,7 +250,7 @@ interface AutosuggestionsConfigUserSpecified extends Partial<Omit<Autosuggestion
|
|
|
250
250
|
interface CopilotTextareaProps extends Omit<BaseCopilotTextareaProps, "baseAutosuggestionsConfig"> {
|
|
251
251
|
/**
|
|
252
252
|
* Configuration settings for the autosuggestions feature.
|
|
253
|
-
* For full reference, [check the interface on GitHub](https://github.com/CopilotKit/CopilotKit/blob/main/
|
|
253
|
+
* For full reference, [check the interface on GitHub](https://github.com/CopilotKit/CopilotKit/blob/main/packages/react-textarea/src/types/base/base-copilot-textarea-props.tsx#L8).
|
|
254
254
|
*
|
|
255
255
|
* <PropertyReference name="textareaPurpose" type="string" required={true} >
|
|
256
256
|
* The purpose of the text area in plain text.
|
|
@@ -264,10 +264,10 @@ interface CopilotTextareaProps extends Omit<BaseCopilotTextareaProps, "baseAutos
|
|
|
264
264
|
* <strong>NOTE:</strong> You must provide specify at least one of `suggestionsApiConfig` or `insertionApiConfig`.
|
|
265
265
|
*
|
|
266
266
|
* <PropertyReference name="suggestionsApiConfig" type="SuggestionsApiConfig">
|
|
267
|
-
* For full reference, please [click here](https://github.com/CopilotKit/CopilotKit/blob/main/
|
|
267
|
+
* For full reference, please [click here](https://github.com/CopilotKit/CopilotKit/blob/main/packages/react-textarea/src/types/autosuggestions-config/suggestions-api-config.tsx#L4).
|
|
268
268
|
* </PropertyReference>
|
|
269
269
|
* <PropertyReference name="insertionApiConfig" type="InsertionApiConfig">
|
|
270
|
-
* For full reference, please [click here](https://github.com/CopilotKit/CopilotKit/blob/main/
|
|
270
|
+
* For full reference, please [click here](https://github.com/CopilotKit/CopilotKit/blob/main/packages/react-textarea/src/types/autosuggestions-config/insertions-api-config.tsx#L4).
|
|
271
271
|
* </PropertyReference>
|
|
272
272
|
* </PropertyReference>
|
|
273
273
|
*
|
package/dist/index.d.mts
CHANGED
|
@@ -250,7 +250,7 @@ interface AutosuggestionsConfigUserSpecified extends Partial<Omit<Autosuggestion
|
|
|
250
250
|
interface CopilotTextareaProps extends Omit<BaseCopilotTextareaProps, "baseAutosuggestionsConfig"> {
|
|
251
251
|
/**
|
|
252
252
|
* Configuration settings for the autosuggestions feature.
|
|
253
|
-
* For full reference, [check the interface on GitHub](https://github.com/CopilotKit/CopilotKit/blob/main/
|
|
253
|
+
* For full reference, [check the interface on GitHub](https://github.com/CopilotKit/CopilotKit/blob/main/packages/react-textarea/src/types/base/base-copilot-textarea-props.tsx#L8).
|
|
254
254
|
*
|
|
255
255
|
* <PropertyReference name="textareaPurpose" type="string" required={true} >
|
|
256
256
|
* The purpose of the text area in plain text.
|
|
@@ -264,10 +264,10 @@ interface CopilotTextareaProps extends Omit<BaseCopilotTextareaProps, "baseAutos
|
|
|
264
264
|
* <strong>NOTE:</strong> You must provide specify at least one of `suggestionsApiConfig` or `insertionApiConfig`.
|
|
265
265
|
*
|
|
266
266
|
* <PropertyReference name="suggestionsApiConfig" type="SuggestionsApiConfig">
|
|
267
|
-
* For full reference, please [click here](https://github.com/CopilotKit/CopilotKit/blob/main/
|
|
267
|
+
* For full reference, please [click here](https://github.com/CopilotKit/CopilotKit/blob/main/packages/react-textarea/src/types/autosuggestions-config/suggestions-api-config.tsx#L4).
|
|
268
268
|
* </PropertyReference>
|
|
269
269
|
* <PropertyReference name="insertionApiConfig" type="InsertionApiConfig">
|
|
270
|
-
* For full reference, please [click here](https://github.com/CopilotKit/CopilotKit/blob/main/
|
|
270
|
+
* For full reference, please [click here](https://github.com/CopilotKit/CopilotKit/blob/main/packages/react-textarea/src/types/autosuggestions-config/insertions-api-config.tsx#L4).
|
|
271
271
|
* </PropertyReference>
|
|
272
272
|
* </PropertyReference>
|
|
273
273
|
*
|