@burdenoff/fe-libs 2026.725.4 → 2026.730.1
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/shared/components/assistantWidget/AssistantWidget.d.ts +12 -0
- package/dist/shared/components/assistantWidget/AssistantWidget.d.ts.map +1 -1
- package/dist/shared/components/assistantWidget/AssistantWidget.js +241 -200
- package/dist/shared/components/assistantWidget/types.d.ts +8 -0
- package/dist/shared/components/assistantWidget/types.d.ts.map +1 -1
- package/package.json +8 -2
- package/scripts/graphql-schema-drift/README.md +137 -0
- package/scripts/graphql-schema-drift/cli.ts +83 -0
- package/scripts/graphql-schema-drift/extract.ts +95 -0
- package/scripts/graphql-schema-drift/fragments.ts +92 -0
- package/scripts/graphql-schema-drift/fs-util.ts +22 -0
- package/scripts/graphql-schema-drift/index.ts +11 -0
- package/scripts/graphql-schema-drift/schema.ts +42 -0
- package/scripts/graphql-schema-drift/types.ts +73 -0
- package/scripts/graphql-schema-drift/validate.ts +159 -0
|
@@ -63,6 +63,18 @@ export interface AssistantWidgetProps {
|
|
|
63
63
|
* covers the top nav. Defaults to 0 (full height) for hosts with no header.
|
|
64
64
|
*/
|
|
65
65
|
topOffsetPx?: number;
|
|
66
|
+
/**
|
|
67
|
+
* Show a file-upload (paperclip) button in the composer so users can attach a
|
|
68
|
+
* data file (JSON / CSV / Excel / PDF) as a source. Off by default → every
|
|
69
|
+
* product that mounts this widget keeps its current UI untouched. Only hosts
|
|
70
|
+
* whose transport can actually ingest attachments (BigConsole) turn it on.
|
|
71
|
+
*/
|
|
72
|
+
enableAttachments?: boolean;
|
|
73
|
+
/**
|
|
74
|
+
* `accept` filter for the attachment input. Defaults to the data-file types the
|
|
75
|
+
* BigConsole assistant understands.
|
|
76
|
+
*/
|
|
77
|
+
attachmentAccept?: string;
|
|
66
78
|
}
|
|
67
79
|
/** External toggle hook so command palettes / plugins can open the widget. */
|
|
68
80
|
export declare const ASSISTANT_WIDGET_TOGGLE_EVENT = "bf:toggle-assistant-widget";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AssistantWidget.d.ts","sourceRoot":"","sources":["../../../../src/shared/components/assistantWidget/AssistantWidget.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAEH,OAAO,EAML,KAAK,EAAE,EAER,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"AssistantWidget.d.ts","sourceRoot":"","sources":["../../../../src/shared/components/assistantWidget/AssistantWidget.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAEH,OAAO,EAML,KAAK,EAAE,EAER,MAAM,OAAO,CAAC;AAoBf,OAAO,KAAK,EAGV,kBAAkB,EAEnB,MAAM,SAAS,CAAC;AAEjB;;;;;GAKG;AACH,MAAM,WAAW,mBAAmB;IAClC,kDAAkD;IAClD,EAAE,EAAE,MAAM,CAAC;IACX,8CAA8C;IAC9C,KAAK,EAAE,MAAM,CAAC;IACd,qCAAqC;IACrC,SAAS,EAAE,kBAAkB,CAAC;IAC9B,iFAAiF;IACjF,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,oBAAoB;IACnC;;;OAGG;IACH,SAAS,CAAC,EAAE,kBAAkB,CAAC;IAC/B;;;OAGG;IACH,KAAK,CAAC,EAAE,mBAAmB,EAAE,CAAC;IAC9B,+EAA+E;IAC/E,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,2BAA2B;IAC3B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,uDAAuD;IACvD,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kEAAkE;IAClE,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,uCAAuC;IACvC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;;;;OAMG;IACH,MAAM,CAAC,EAAE,UAAU,GAAG,SAAS,CAAC;IAChC;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,4EAA4E;IAC5E,UAAU,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IACpC;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;;OAKG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B;;;OAGG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B;AAED,8EAA8E;AAC9E,eAAO,MAAM,6BAA6B,+BAA+B,CAAC;AA0D1E,eAAO,MAAM,eAAe,EAAE,EAAE,CAAC,oBAAoB,CA22BpD,CAAC"}
|