@statezero/core 0.2.44 → 0.2.45

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.
@@ -5,3 +5,4 @@
5
5
  * @returns {Object} Components registry for LayoutRenderer
6
6
  */
7
7
  export function createDefaultComponents(options?: Object): Object;
8
+ export { AlertElement, LabelElement, DividerElement, DisplayElement, GroupElement, TabsElement, ErrorBlock };
@@ -4,13 +4,14 @@
4
4
  * These are minimal, unstyled implementations that follow the contracts.
5
5
  * Users can use these as-is or as reference for custom implementations.
6
6
  */
7
- export { default as AlertElement } from './AlertElement.js';
8
- export { default as LabelElement } from './LabelElement.js';
9
- export { default as DividerElement } from './DividerElement.js';
10
- export { default as DisplayElement } from './DisplayElement.js';
11
- export { default as GroupElement } from './GroupElement.js';
12
- export { default as TabsElement } from './TabsElement.js';
13
- export { default as ErrorBlock } from './ErrorBlock.js';
7
+ import AlertElement from './AlertElement.js';
8
+ import LabelElement from './LabelElement.js';
9
+ import DividerElement from './DividerElement.js';
10
+ import DisplayElement from './DisplayElement.js';
11
+ import GroupElement from './GroupElement.js';
12
+ import TabsElement from './TabsElement.js';
13
+ import ErrorBlock from './ErrorBlock.js';
14
+ export { AlertElement, LabelElement, DividerElement, DisplayElement, GroupElement, TabsElement, ErrorBlock };
14
15
  /**
15
16
  * Create a default components registry (without Control - user must provide)
16
17
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@statezero/core",
3
- "version": "0.2.44",
3
+ "version": "0.2.45",
4
4
  "type": "module",
5
5
  "module": "ESNext",
6
6
  "description": "The type-safe frontend client for StateZero - connect directly to your backend models with zero boilerplate",