@digigov/ui 0.29.0 → 0.29.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/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # Change Log - @digigov/ui
2
2
 
3
- This log was last generated on Mon, 16 Jan 2023 13:05:21 GMT and should not be manually modified.
3
+ This log was last generated on Wed, 18 Jan 2023 13:07:00 GMT and should not be manually modified.
4
+
5
+ ## 0.29.1
6
+ Wed, 18 Jan 2023 13:07:00 GMT
7
+
8
+ ### Patches
9
+
10
+ - Rexport FieldContainer from `@digigov/ui/core` path
4
11
 
5
12
  ## 0.29.0
6
13
  Mon, 16 Jan 2023 13:05:21 GMT
package/core/index.d.ts CHANGED
@@ -12,6 +12,7 @@ export * from '@digigov/ui/core/Details';
12
12
  export * from '@digigov/ui/core/Divider';
13
13
  export * from '@digigov/ui/core/ErrorMessage';
14
14
  export * from '@digigov/ui/core/ErrorSummary';
15
+ export * from '@digigov/ui/core/FieldContainer';
15
16
  export * from '@digigov/ui/core/FileUpload';
16
17
  export * from '@digigov/ui/core/Form';
17
18
  export * from '@digigov/ui/core/Hidden';
package/core/index.js CHANGED
@@ -173,6 +173,19 @@ Object.keys(_ErrorSummary).forEach(function (key) {
173
173
  });
174
174
  });
175
175
 
176
+ var _FieldContainer = require("@digigov/ui/core/FieldContainer");
177
+
178
+ Object.keys(_FieldContainer).forEach(function (key) {
179
+ if (key === "default" || key === "__esModule") return;
180
+ if (key in exports && exports[key] === _FieldContainer[key]) return;
181
+ Object.defineProperty(exports, key, {
182
+ enumerable: true,
183
+ get: function get() {
184
+ return _FieldContainer[key];
185
+ }
186
+ });
187
+ });
188
+
176
189
  var _FileUpload = require("@digigov/ui/core/FileUpload");
177
190
 
178
191
  Object.keys(_FileUpload).forEach(function (key) {
package/es/core/index.js CHANGED
@@ -12,6 +12,7 @@ export * from '@digigov/ui/core/Details';
12
12
  export * from '@digigov/ui/core/Divider';
13
13
  export * from '@digigov/ui/core/ErrorMessage';
14
14
  export * from '@digigov/ui/core/ErrorSummary';
15
+ export * from '@digigov/ui/core/FieldContainer';
15
16
  export * from '@digigov/ui/core/FileUpload';
16
17
  export * from '@digigov/ui/core/Form';
17
18
  export * from '@digigov/ui/core/Hidden';
package/esm/core/index.js CHANGED
@@ -12,6 +12,7 @@ export * from '@digigov/ui/core/Details';
12
12
  export * from '@digigov/ui/core/Divider';
13
13
  export * from '@digigov/ui/core/ErrorMessage';
14
14
  export * from '@digigov/ui/core/ErrorSummary';
15
+ export * from '@digigov/ui/core/FieldContainer';
15
16
  export * from '@digigov/ui/core/FileUpload';
16
17
  export * from '@digigov/ui/core/Form';
17
18
  export * from '@digigov/ui/core/Hidden';
package/esm/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Digigov v0.29.0
1
+ /** @license Digigov v0.29.1
2
2
  *
3
3
  * This source code is licensed under the BSD-2-Clause license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digigov/ui",
3
- "version": "0.29.0",
3
+ "version": "0.29.1",
4
4
  "description": "@digigov reusable components toolkit",
5
5
  "main": "./index.js",
6
6
  "module": "./esm/index.js",
package/src/core/index.ts CHANGED
@@ -12,6 +12,7 @@ export * from '@digigov/ui/core/Details';
12
12
  export * from '@digigov/ui/core/Divider';
13
13
  export * from '@digigov/ui/core/ErrorMessage';
14
14
  export * from '@digigov/ui/core/ErrorSummary';
15
+ export * from '@digigov/ui/core/FieldContainer';
15
16
  export * from '@digigov/ui/core/FileUpload';
16
17
  export * from '@digigov/ui/core/Form';
17
18
  export * from '@digigov/ui/core/Hidden';