@bolttech/atoms-checkbox 0.20.3 → 0.21.0

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.
Files changed (2) hide show
  1. package/index.cjs +9 -7
  2. package/package.json +5 -5
package/index.cjs CHANGED
@@ -243,9 +243,9 @@ var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$5(func
243
243
  /* eslint-disable es/no-symbol -- required for testing */
244
244
  var NATIVE_SYMBOL$1 = symbolConstructorDetection;
245
245
 
246
- var useSymbolAsUid = NATIVE_SYMBOL$1
247
- && !Symbol.sham
248
- && typeof Symbol.iterator == 'symbol';
246
+ var useSymbolAsUid = NATIVE_SYMBOL$1 &&
247
+ !Symbol.sham &&
248
+ typeof Symbol.iterator == 'symbol';
249
249
 
250
250
  var getBuiltIn$1 = getBuiltIn$2;
251
251
  var isCallable$7 = isCallable$a;
@@ -330,10 +330,10 @@ var SHARED = '__core-js_shared__';
330
330
  var store$3 = sharedStore.exports = globalThis$6[SHARED] || defineGlobalProperty$2(SHARED, {});
331
331
 
332
332
  (store$3.versions || (store$3.versions = [])).push({
333
- version: '3.38.1',
333
+ version: '3.39.0',
334
334
  mode: 'global',
335
335
  copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
336
- license: 'https://github.com/zloirock/core-js/blob/v3.38.1/LICENSE',
336
+ license: 'https://github.com/zloirock/core-js/blob/v3.39.0/LICENSE',
337
337
  source: 'https://github.com/zloirock/core-js'
338
338
  });
339
339
 
@@ -1239,9 +1239,11 @@ const Checkbox = /*#__PURE__*/react.forwardRef((_a, ref) => {
1239
1239
  children: label
1240
1240
  }))]
1241
1241
  })), errorMessage && jsxRuntime.jsx("section", {
1242
- children: jsxRuntime.jsx(LabelError, {
1242
+ children: jsxRuntime.jsx(LabelError, Object.assign({
1243
+ "data-testid": `${id}-error-label`
1244
+ }, uiUtils.applyDataAttributes(props, 'error-label'), {
1243
1245
  children: errorMessage
1244
- })
1246
+ }))
1245
1247
  })]
1246
1248
  });
1247
1249
  });
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@bolttech/atoms-checkbox",
3
- "version": "0.20.3",
3
+ "version": "0.21.0",
4
4
  "main": "./index.cjs",
5
5
  "type": "commonjs",
6
6
  "types": "./src/index.d.ts",
7
7
  "dependencies": {
8
- "@bolttech/default-theme": "0.8.0",
9
- "@bolttech/form-engine": "3.0.1-beta.7",
10
- "@bolttech/frontend-foundations": "0.9.3",
11
- "@bolttech/ui-utils": "0.4.0",
8
+ "@bolttech/default-theme": "0.10.0",
9
+ "@bolttech/form-engine": "3.1.0-beta.19",
10
+ "@bolttech/frontend-foundations": "0.10.0",
11
+ "@bolttech/ui-utils": "0.5.0",
12
12
  "react": "18.2.0",
13
13
  "styled-components": "6.1.1"
14
14
  },