@trustquery/browser 0.2.10 → 0.3.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/src/TrustQuery.js CHANGED
@@ -10,6 +10,12 @@ import AutoGrow from './AutoGrow.js';
10
10
  import ValidationStateManager from './ValidationStateManager.js';
11
11
  import MobileKeyboardHandler from './MobileKeyboardHandler.js';
12
12
 
13
+ // Import attachment managers for re-export
14
+ import AttachmentManager from './AttachmentManager.js';
15
+ import AttachmentStyleManager from './AttachmentStyleManager.js';
16
+ import CSVModalManager from './CSVModalManager.js';
17
+ import CSVModalStyleManager from './CSVModalStyleManager.js';
18
+
13
19
  export default class TrustQuery {
14
20
  // Store all instances
15
21
  static instances = new Map();
@@ -550,3 +556,11 @@ export default class TrustQuery {
550
556
  this.render();
551
557
  }
552
558
  }
559
+
560
+ // Export attachment managers as named exports
561
+ export {
562
+ AttachmentManager,
563
+ AttachmentStyleManager,
564
+ CSVModalManager,
565
+ CSVModalStyleManager
566
+ };