@stndrds/constants 1.0.0-alpha.136 → 1.0.0-alpha.138

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/dist/index.d.mts CHANGED
@@ -8,11 +8,11 @@ import { ClassValue } from 'clsx';
8
8
  * these values to ensure consistency.
9
9
  */
10
10
  /** Image MIME types supported by AI chat (subset of all image types) */
11
- declare const AI_CHAT_SUPPORTED_IMAGES: readonly ["image/jpeg", "image/png", "image/webp", "image/gif"];
11
+ declare const AI_CHAT_SUPPORTED_IMAGES: readonly ["image/jpeg", "image/png", "image/webp", "image/gif", "image/svg+xml"];
12
12
  /** Document MIME types supported by AI chat */
13
13
  declare const AI_CHAT_SUPPORTED_DOCUMENTS: readonly ["application/pdf", "application/msword", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "text/plain", "text/markdown", "text/csv"];
14
14
  /** All MIME types supported by AI chat */
15
- declare const AI_CHAT_SUPPORTED_MIME_TYPES: readonly ["image/jpeg", "image/png", "image/webp", "image/gif", "application/pdf", "application/msword", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "text/plain", "text/markdown", "text/csv"];
15
+ declare const AI_CHAT_SUPPORTED_MIME_TYPES: readonly ["image/jpeg", "image/png", "image/webp", "image/gif", "image/svg+xml", "application/pdf", "application/msword", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "text/plain", "text/markdown", "text/csv"];
16
16
  /** Comma-separated accept string for file inputs */
17
17
  declare const AI_CHAT_ACCEPTED_TYPES: string;
18
18
  /** Maximum file size for AI chat attachments (50 MB) */
package/dist/index.d.ts CHANGED
@@ -8,11 +8,11 @@ import { ClassValue } from 'clsx';
8
8
  * these values to ensure consistency.
9
9
  */
10
10
  /** Image MIME types supported by AI chat (subset of all image types) */
11
- declare const AI_CHAT_SUPPORTED_IMAGES: readonly ["image/jpeg", "image/png", "image/webp", "image/gif"];
11
+ declare const AI_CHAT_SUPPORTED_IMAGES: readonly ["image/jpeg", "image/png", "image/webp", "image/gif", "image/svg+xml"];
12
12
  /** Document MIME types supported by AI chat */
13
13
  declare const AI_CHAT_SUPPORTED_DOCUMENTS: readonly ["application/pdf", "application/msword", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "text/plain", "text/markdown", "text/csv"];
14
14
  /** All MIME types supported by AI chat */
15
- declare const AI_CHAT_SUPPORTED_MIME_TYPES: readonly ["image/jpeg", "image/png", "image/webp", "image/gif", "application/pdf", "application/msword", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "text/plain", "text/markdown", "text/csv"];
15
+ declare const AI_CHAT_SUPPORTED_MIME_TYPES: readonly ["image/jpeg", "image/png", "image/webp", "image/gif", "image/svg+xml", "application/pdf", "application/msword", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "text/plain", "text/markdown", "text/csv"];
16
16
  /** Comma-separated accept string for file inputs */
17
17
  declare const AI_CHAT_ACCEPTED_TYPES: string;
18
18
  /** Maximum file size for AI chat attachments (50 MB) */
package/dist/index.js CHANGED
@@ -242,7 +242,8 @@ var AI_CHAT_SUPPORTED_IMAGES = [
242
242
  IMAGE_MIME_TYPES.JPEG,
243
243
  IMAGE_MIME_TYPES.PNG,
244
244
  IMAGE_MIME_TYPES.WEBP,
245
- IMAGE_MIME_TYPES.GIF
245
+ IMAGE_MIME_TYPES.GIF,
246
+ IMAGE_MIME_TYPES.SVG
246
247
  ];
247
248
  var AI_CHAT_SUPPORTED_DOCUMENTS = [
248
249
  DOCUMENT_MIME_TYPES.PDF,
package/dist/index.mjs CHANGED
@@ -139,7 +139,8 @@ var AI_CHAT_SUPPORTED_IMAGES = [
139
139
  IMAGE_MIME_TYPES.JPEG,
140
140
  IMAGE_MIME_TYPES.PNG,
141
141
  IMAGE_MIME_TYPES.WEBP,
142
- IMAGE_MIME_TYPES.GIF
142
+ IMAGE_MIME_TYPES.GIF,
143
+ IMAGE_MIME_TYPES.SVG
143
144
  ];
144
145
  var AI_CHAT_SUPPORTED_DOCUMENTS = [
145
146
  DOCUMENT_MIME_TYPES.PDF,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stndrds/constants",
3
- "version": "1.0.0-alpha.136",
3
+ "version": "1.0.0-alpha.138",
4
4
  "description": "Currency and country data with ISO codes",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",