@copilotkit/react-textarea 1.54.1 → 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/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "publishConfig": {
11
11
  "access": "public"
12
12
  },
13
- "version": "1.54.1",
13
+ "version": "1.55.0-next.7",
14
14
  "sideEffects": [
15
15
  "**/*.css"
16
16
  ],
@@ -47,9 +47,9 @@
47
47
  "vitest": "^3.2.4",
48
48
  "tsdown": "^0.20.3",
49
49
  "typescript": "^5.2.3",
50
- "eslint-config-custom": "1.4.13",
51
- "tailwind-config": "1.4.13",
52
- "tsconfig": "1.4.13"
50
+ "eslint-config-custom": "1.4.12",
51
+ "tailwind-config": "1.4.12",
52
+ "tsconfig": "1.4.12"
53
53
  },
54
54
  "dependencies": {
55
55
  "@emotion/css": "^11.11.2",
@@ -70,9 +70,9 @@
70
70
  "slate-history": "^0.93.0",
71
71
  "slate-react": "^0.98.1",
72
72
  "tailwind-merge": "^1.13.2",
73
- "@copilotkit/react-core": "1.54.1",
74
- "@copilotkit/runtime-client-gql": "1.54.1",
75
- "@copilotkit/shared": "1.54.1"
73
+ "@copilotkit/react-core": "1.55.0-next.7",
74
+ "@copilotkit/runtime-client-gql": "1.55.0-next.7",
75
+ "@copilotkit/shared": "1.55.0-next.7"
76
76
  },
77
77
  "keywords": [
78
78
  "copilotkit",
@@ -107,7 +107,7 @@ export interface CopilotTextareaProps extends Omit<
107
107
  > {
108
108
  /**
109
109
  * Configuration settings for the autosuggestions feature.
110
- * For full reference, [check the interface on GitHub](https://github.com/CopilotKit/CopilotKit/blob/main/src/v1.x/packages/react-textarea/src/types/base/base-copilot-textarea-props.tsx#L8).
110
+ * 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).
111
111
  *
112
112
  * <PropertyReference name="textareaPurpose" type="string" required={true} >
113
113
  * The purpose of the text area in plain text.
@@ -121,10 +121,10 @@ export interface CopilotTextareaProps extends Omit<
121
121
  * <strong>NOTE:</strong> You must provide specify at least one of `suggestionsApiConfig` or `insertionApiConfig`.
122
122
  *
123
123
  * <PropertyReference name="suggestionsApiConfig" type="SuggestionsApiConfig">
124
- * For full reference, please [click here](https://github.com/CopilotKit/CopilotKit/blob/main/src/v1.x/packages/react-textarea/src/types/autosuggestions-config/suggestions-api-config.tsx#L4).
124
+ * 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).
125
125
  * </PropertyReference>
126
126
  * <PropertyReference name="insertionApiConfig" type="InsertionApiConfig">
127
- * For full reference, please [click here](https://github.com/CopilotKit/CopilotKit/blob/main/src/v1.x/packages/react-textarea/src/types/autosuggestions-config/insertions-api-config.tsx#L4).
127
+ * 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).
128
128
  * </PropertyReference>
129
129
  * </PropertyReference>
130
130
  *
package/tsconfig.json CHANGED
@@ -5,8 +5,8 @@
5
5
  "dist",
6
6
  "build",
7
7
  "node_modules",
8
- "**/*.test.ts", // Exclude TypeScript test files
9
- "**/*.test.tsx", // Exclude TypeScript React test files
10
- "**/__tests__/*" // Exclude any files inside a __tests__ directory
8
+ "**/*.test.ts",
9
+ "**/*.test.tsx",
10
+ "**/__tests__/*"
11
11
  ]
12
12
  }