@smart-cloud/ai-kit-core 1.5.4 → 1.5.5
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/types.d.ts +6 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -475,6 +475,12 @@ export type DocSearchProps = AiWorkerProps & {
|
|
|
475
475
|
availableCategories?: Record<string, string[]>;
|
|
476
476
|
/** Available tags for user selection */
|
|
477
477
|
availableTags?: string[];
|
|
478
|
+
/** Categories selected when DocSearch first opens. */
|
|
479
|
+
initialSelectedCategories?: string[];
|
|
480
|
+
/** Subcategories selected when DocSearch first opens. */
|
|
481
|
+
initialSelectedSubcategories?: string[];
|
|
482
|
+
/** Tags selected when DocSearch first opens. */
|
|
483
|
+
initialSelectedTags?: string[];
|
|
478
484
|
};
|
|
479
485
|
export type DocSearchArgs = DocSearchProps & {
|
|
480
486
|
target?: string | HTMLElement;
|