@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.
|
@@ -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
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
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