@atlaskit/checkbox 12.3.20 → 12.4.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.
Files changed (35) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/codemods/utils.tsx +187 -185
  3. package/dist/cjs/checkbox.js +7 -7
  4. package/dist/cjs/internal/checkbox-icon.js +6 -6
  5. package/dist/cjs/internal/label-text.js +3 -3
  6. package/dist/cjs/internal/label.js +6 -6
  7. package/dist/cjs/internal/required-indicator.js +3 -3
  8. package/dist/cjs/version.json +1 -1
  9. package/dist/es2019/checkbox.js +2 -2
  10. package/dist/es2019/internal/checkbox-icon.js +1 -1
  11. package/dist/es2019/internal/label-text.js +1 -1
  12. package/dist/es2019/internal/label.js +1 -1
  13. package/dist/es2019/internal/required-indicator.js +1 -1
  14. package/dist/es2019/version.json +1 -1
  15. package/dist/esm/checkbox.js +2 -2
  16. package/dist/esm/internal/checkbox-icon.js +1 -1
  17. package/dist/esm/internal/label-text.js +1 -1
  18. package/dist/esm/internal/label.js +1 -1
  19. package/dist/esm/internal/required-indicator.js +1 -1
  20. package/dist/esm/version.json +1 -1
  21. package/dist/types/internal/label-text.d.ts +3 -2
  22. package/dist/types/internal/label.d.ts +3 -2
  23. package/dist/types/internal/required-indicator.d.ts +3 -2
  24. package/package.json +8 -14
  25. package/report.api.md +28 -78
  26. package/dist/types-ts4.0/checkbox.d.ts +0 -12
  27. package/dist/types-ts4.0/index.d.ts +0 -2
  28. package/dist/types-ts4.0/internal/checkbox-icon.d.ts +0 -16
  29. package/dist/types-ts4.0/internal/constants.d.ts +0 -2
  30. package/dist/types-ts4.0/internal/index.d.ts +0 -4
  31. package/dist/types-ts4.0/internal/label-text.d.ts +0 -3
  32. package/dist/types-ts4.0/internal/label.d.ts +0 -3
  33. package/dist/types-ts4.0/internal/required-indicator.d.ts +0 -2
  34. package/dist/types-ts4.0/internal/theme.d.ts +0 -55
  35. package/dist/types-ts4.0/types.d.ts +0 -103
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @atlaskit/checkbox
2
2
 
3
+ ## 12.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 12.4.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [`0944c0e7eed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0944c0e7eed) - Updates `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies
18
+
3
19
  ## 12.3.20
4
20
 
5
21
  ### Patch Changes
@@ -222,94 +222,95 @@ export function addToImport({
222
222
  });
223
223
  }
224
224
 
225
- export const createRenameFuncFor = (
226
- component: string,
227
- importName: string,
228
- from: string,
229
- to: string,
230
- ) => (j: core.JSCodeshift, source: Collection<Node>) => {
231
- const specifier = getNamedSpecifier(j, source, component, importName);
225
+ export const createRenameFuncFor =
226
+ (component: string, importName: string, from: string, to: string) =>
227
+ (j: core.JSCodeshift, source: Collection<Node>) => {
228
+ const specifier = getNamedSpecifier(j, source, component, importName);
232
229
 
233
- if (!specifier) {
234
- return;
235
- }
230
+ if (!specifier) {
231
+ return;
232
+ }
236
233
 
237
- source.findJSXElements(specifier).forEach((element) => {
238
- getJSXAttributesByName(j, element, from).forEach((attribute) => {
239
- j(attribute).replaceWith(
240
- j.jsxAttribute(j.jsxIdentifier(to), attribute.node.value),
241
- );
234
+ source.findJSXElements(specifier).forEach((element) => {
235
+ getJSXAttributesByName(j, element, from).forEach((attribute) => {
236
+ j(attribute).replaceWith(
237
+ j.jsxAttribute(j.jsxIdentifier(to), attribute.node.value),
238
+ );
239
+ });
242
240
  });
243
- });
244
241
 
245
- let variable = hasVariableAssignment(j, source, specifier);
246
- if (variable) {
247
- variable.find(j.VariableDeclarator).forEach((declarator) => {
248
- j(declarator)
249
- .find(j.Identifier)
250
- .filter((identifier) => identifier.name === 'id')
251
- .forEach((ids) => {
252
- findIdentifierAndReplaceAttribute(j, source, ids.node.name, from, to);
253
- });
254
- });
255
- }
256
- };
242
+ let variable = hasVariableAssignment(j, source, specifier);
243
+ if (variable) {
244
+ variable.find(j.VariableDeclarator).forEach((declarator) => {
245
+ j(declarator)
246
+ .find(j.Identifier)
247
+ .filter((identifier) => identifier.name === 'id')
248
+ .forEach((ids) => {
249
+ findIdentifierAndReplaceAttribute(
250
+ j,
251
+ source,
252
+ ids.node.name,
253
+ from,
254
+ to,
255
+ );
256
+ });
257
+ });
258
+ }
259
+ };
257
260
 
258
- export const createRemoveFuncFor = (
259
- component: string,
260
- importName: string,
261
- prop: string,
262
- comment?: string,
263
- ) => (j: core.JSCodeshift, source: Collection<Node>) => {
264
- const specifier = getNamedSpecifier(j, source, component, importName);
261
+ export const createRemoveFuncFor =
262
+ (component: string, importName: string, prop: string, comment?: string) =>
263
+ (j: core.JSCodeshift, source: Collection<Node>) => {
264
+ const specifier = getNamedSpecifier(j, source, component, importName);
265
265
 
266
- if (!specifier) {
267
- return;
268
- }
266
+ if (!specifier) {
267
+ return;
268
+ }
269
269
 
270
- source.findJSXElements(specifier).forEach((element) => {
271
- getJSXAttributesByName(j, element, prop).forEach((attribute) => {
272
- j(attribute).remove();
273
- if (comment) {
274
- addCommentToStartOfFile({ j, base: source, message: comment });
275
- }
270
+ source.findJSXElements(specifier).forEach((element) => {
271
+ getJSXAttributesByName(j, element, prop).forEach((attribute) => {
272
+ j(attribute).remove();
273
+ if (comment) {
274
+ addCommentToStartOfFile({ j, base: source, message: comment });
275
+ }
276
+ });
276
277
  });
277
- });
278
- };
279
-
280
- export const createRenameImportFor = ({
281
- componentName,
282
- newComponentName,
283
- oldPackagePath,
284
- newPackagePath,
285
- }: {
286
- componentName: string;
287
- newComponentName?: string;
288
- oldPackagePath: string;
289
- newPackagePath: string;
290
- }) => (j: core.JSCodeshift, source: Collection<Node>) => {
291
- const isUsingName: boolean =
292
- source
293
- .find(j.ImportDeclaration)
294
- .filter((path) => path.node.source.value === oldPackagePath)
295
- .find(j.ImportSpecifier)
296
- .nodes()
297
- .filter(
298
- (specifier) =>
299
- specifier.imported && specifier.imported.name === componentName,
300
- ).length > 0;
301
- if (!isUsingName) {
302
- return;
303
- }
278
+ };
279
+
280
+ export const createRenameImportFor =
281
+ ({
282
+ componentName,
283
+ newComponentName,
284
+ oldPackagePath,
285
+ newPackagePath,
286
+ }: {
287
+ componentName: string;
288
+ newComponentName?: string;
289
+ oldPackagePath: string;
290
+ newPackagePath: string;
291
+ }) =>
292
+ (j: core.JSCodeshift, source: Collection<Node>) => {
293
+ const isUsingName: boolean =
294
+ source
295
+ .find(j.ImportDeclaration)
296
+ .filter((path) => path.node.source.value === oldPackagePath)
297
+ .find(j.ImportSpecifier)
298
+ .nodes()
299
+ .filter(
300
+ (specifier) =>
301
+ specifier.imported && specifier.imported.name === componentName,
302
+ ).length > 0;
303
+ if (!isUsingName) {
304
+ return;
305
+ }
304
306
 
305
- const existingAlias: Nullable<string> =
306
- source
307
- .find(j.ImportDeclaration)
308
- .filter((path) => path.node.source.value === oldPackagePath)
309
- .find(j.ImportSpecifier)
310
- .nodes()
311
- .map(
312
- (specifier): Nullable<string> => {
307
+ const existingAlias: Nullable<string> =
308
+ source
309
+ .find(j.ImportDeclaration)
310
+ .filter((path) => path.node.source.value === oldPackagePath)
311
+ .find(j.ImportSpecifier)
312
+ .nodes()
313
+ .map((specifier): Nullable<string> => {
313
314
  if (specifier.imported && specifier.imported.name !== componentName) {
314
315
  return null;
315
316
  }
@@ -319,81 +320,81 @@ export const createRenameImportFor = ({
319
320
  }
320
321
 
321
322
  return null;
322
- },
323
- )
324
- .filter(Boolean)[0] || null;
323
+ })
324
+ .filter(Boolean)[0] || null;
325
+
326
+ // Check to see if need to create new package path
327
+ // Try create an import declaration just before the old import
328
+ tryCreateImport({
329
+ j,
330
+ base: source,
331
+ relativeToPackage: oldPackagePath,
332
+ packageName: newPackagePath,
333
+ });
325
334
 
326
- // Check to see if need to create new package path
327
- // Try create an import declaration just before the old import
328
- tryCreateImport({
329
- j,
330
- base: source,
331
- relativeToPackage: oldPackagePath,
332
- packageName: newPackagePath,
333
- });
335
+ const newSpecifier: ImportSpecifier | ImportDefaultSpecifier = (() => {
336
+ // If there's a new name use that
337
+ if (newComponentName) {
338
+ return j.importSpecifier(
339
+ j.identifier(newComponentName),
340
+ j.identifier(newComponentName),
341
+ );
342
+ }
334
343
 
335
- const newSpecifier: ImportSpecifier | ImportDefaultSpecifier = (() => {
336
- // If there's a new name use that
337
- if (newComponentName) {
338
- return j.importSpecifier(
339
- j.identifier(newComponentName),
340
- j.identifier(newComponentName),
341
- );
342
- }
344
+ if (existingAlias) {
345
+ return j.importSpecifier(
346
+ j.identifier(componentName),
347
+ j.identifier(existingAlias),
348
+ );
349
+ }
343
350
 
344
- if (existingAlias) {
351
+ // Add specifier
345
352
  return j.importSpecifier(
346
353
  j.identifier(componentName),
347
- j.identifier(existingAlias),
354
+ j.identifier(componentName),
348
355
  );
349
- }
350
-
351
- // Add specifier
352
- return j.importSpecifier(
353
- j.identifier(componentName),
354
- j.identifier(componentName),
355
- );
356
- })();
356
+ })();
357
357
 
358
- addToImport({
359
- j,
360
- base: source,
361
- importSpecifier: newSpecifier,
362
- packageName: newPackagePath,
363
- });
358
+ addToImport({
359
+ j,
360
+ base: source,
361
+ importSpecifier: newSpecifier,
362
+ packageName: newPackagePath,
363
+ });
364
364
 
365
- // Remove old path
366
- source
367
- .find(j.ImportDeclaration)
368
- .filter((path) => path.node.source.value === oldPackagePath)
369
- .remove();
370
- };
371
-
372
- export const createRemoveImportsFor = ({
373
- importsToRemove,
374
- packagePath,
375
- comment,
376
- }: {
377
- importsToRemove: string[];
378
- packagePath: string;
379
- comment: string;
380
- }) => (j: core.JSCodeshift, source: Collection<Node>) => {
381
- const isUsingName: boolean =
365
+ // Remove old path
382
366
  source
383
367
  .find(j.ImportDeclaration)
384
- .filter((path) => path.node.source.value === packagePath).length > 0;
385
- if (!isUsingName) {
386
- return;
387
- }
368
+ .filter((path) => path.node.source.value === oldPackagePath)
369
+ .remove();
370
+ };
371
+
372
+ export const createRemoveImportsFor =
373
+ ({
374
+ importsToRemove,
375
+ packagePath,
376
+ comment,
377
+ }: {
378
+ importsToRemove: string[];
379
+ packagePath: string;
380
+ comment: string;
381
+ }) =>
382
+ (j: core.JSCodeshift, source: Collection<Node>) => {
383
+ const isUsingName: boolean =
384
+ source
385
+ .find(j.ImportDeclaration)
386
+ .filter((path) => path.node.source.value === packagePath).length > 0;
387
+ if (!isUsingName) {
388
+ return;
389
+ }
388
390
 
389
- const existingAlias: Nullable<string> =
390
- source
391
- .find(j.ImportDeclaration)
392
- .filter((path) => path.node.source.value === packagePath)
393
- .find(j.ImportSpecifier)
394
- .nodes()
395
- .map(
396
- (specifier): Nullable<string> => {
391
+ const existingAlias: Nullable<string> =
392
+ source
393
+ .find(j.ImportDeclaration)
394
+ .filter((path) => path.node.source.value === packagePath)
395
+ .find(j.ImportSpecifier)
396
+ .nodes()
397
+ .map((specifier): Nullable<string> => {
397
398
  if (!importsToRemove.includes(specifier.imported.name)) {
398
399
  return null;
399
400
  }
@@ -406,54 +407,55 @@ export const createRemoveImportsFor = ({
406
407
  }
407
408
 
408
409
  return null;
409
- },
410
- )
411
- .filter(Boolean)[0] || null;
412
-
413
- // Remove imports
414
- source
415
- .find(j.ImportDeclaration)
416
- .filter((path) => path.node.source.value === packagePath)
417
- .find(j.ImportSpecifier)
418
- .find(j.Identifier)
419
- .filter((identifier) => {
420
- if (
421
- importsToRemove.includes(identifier.value.name) ||
422
- identifier.value.name === existingAlias
423
- ) {
424
- addCommentToStartOfFile({ j, base: source, message: comment });
425
- return true;
426
- }
427
- return false;
428
- })
429
- .remove();
410
+ })
411
+ .filter(Boolean)[0] || null;
430
412
 
431
- // Remove entire import if it is empty
432
- const isEmptyImport =
413
+ // Remove imports
433
414
  source
434
415
  .find(j.ImportDeclaration)
435
416
  .filter((path) => path.node.source.value === packagePath)
436
417
  .find(j.ImportSpecifier)
437
- .find(j.Identifier).length === 0;
438
- if (isEmptyImport) {
439
- source
440
- .find(j.ImportDeclaration)
441
- .filter((path) => path.node.source.value === packagePath)
418
+ .find(j.Identifier)
419
+ .filter((identifier) => {
420
+ if (
421
+ importsToRemove.includes(identifier.value.name) ||
422
+ identifier.value.name === existingAlias
423
+ ) {
424
+ addCommentToStartOfFile({ j, base: source, message: comment });
425
+ return true;
426
+ }
427
+ return false;
428
+ })
442
429
  .remove();
443
- }
444
- };
445
430
 
446
- export const createTransformer = (
447
- component: string,
448
- migrates: { (j: core.JSCodeshift, source: Collection<Node>): void }[],
449
- ) => (fileInfo: FileInfo, { jscodeshift: j }: API, options: Options) => {
450
- const source: Collection<Node> = j(fileInfo.source);
451
-
452
- if (!hasImportDeclaration(j, source, component)) {
453
- return fileInfo.source;
454
- }
431
+ // Remove entire import if it is empty
432
+ const isEmptyImport =
433
+ source
434
+ .find(j.ImportDeclaration)
435
+ .filter((path) => path.node.source.value === packagePath)
436
+ .find(j.ImportSpecifier)
437
+ .find(j.Identifier).length === 0;
438
+ if (isEmptyImport) {
439
+ source
440
+ .find(j.ImportDeclaration)
441
+ .filter((path) => path.node.source.value === packagePath)
442
+ .remove();
443
+ }
444
+ };
445
+
446
+ export const createTransformer =
447
+ (
448
+ component: string,
449
+ migrates: { (j: core.JSCodeshift, source: Collection<Node>): void }[],
450
+ ) =>
451
+ (fileInfo: FileInfo, { jscodeshift: j }: API, options: Options) => {
452
+ const source: Collection<Node> = j(fileInfo.source);
453
+
454
+ if (!hasImportDeclaration(j, source, component)) {
455
+ return fileInfo.source;
456
+ }
455
457
 
456
- migrates.forEach((tf) => tf(j, source));
458
+ migrates.forEach((tf) => tf(j, source));
457
459
 
458
- return source.toSource(options.printOptions || { quote: 'single' });
459
- };
460
+ return source.toSource(options.printOptions || { quote: 'single' });
461
+ };
@@ -15,7 +15,7 @@ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/h
15
15
 
16
16
  var _react = require("react");
17
17
 
18
- var _core = require("@emotion/core");
18
+ var _react2 = require("@emotion/react");
19
19
 
20
20
  var _usePlatformLeafEventHandler = require("@atlaskit/analytics-next/usePlatformLeafEventHandler");
21
21
 
@@ -26,7 +26,7 @@ var _internal = require("./internal");
26
26
  var _excluded = ["isChecked", "isDisabled", "isInvalid", "defaultChecked", "isIndeterminate", "size", "onChange", "analyticsContext", "label", "name", "value", "isRequired", "testId"];
27
27
 
28
28
  /* eslint-disable @repo/internal/styles/no-nested-styles */
29
- var checkboxStyles = (0, _core.css)({
29
+ var checkboxStyles = (0, _react2.css)({
30
30
  width: '100%',
31
31
  height: '100%',
32
32
  margin: 0,
@@ -174,17 +174,17 @@ var Checkbox = /*#__PURE__*/(0, _react.memo)( /*#__PURE__*/(0, _react.forwardRef
174
174
  analyticsData: analyticsContext,
175
175
  componentName: 'checkbox',
176
176
  packageName: "@atlaskit/checkbox",
177
- packageVersion: "12.3.20"
177
+ packageVersion: "12.4.1"
178
178
  });
179
179
  var internalRef = (0, _react.useRef)(null);
180
180
  var mergedRefs = (0, _mergeRefs.default)([internalRef, ref]); // Use isChecked from the state if it is controlled
181
181
 
182
182
  var isChecked = isCheckedProp === undefined ? isCheckedState : isCheckedProp;
183
- return (0, _core.jsx)(_internal.Label, {
183
+ return (0, _react2.jsx)(_internal.Label, {
184
184
  isDisabled: isDisabled,
185
185
  id: rest.id ? "".concat(rest.id, "-label") : undefined,
186
186
  testId: testId && "".concat(testId, "--checkbox-label")
187
- }, (0, _core.jsx)("input", (0, _extends2.default)({}, rest, {
187
+ }, (0, _react2.jsx)("input", (0, _extends2.default)({}, rest, {
188
188
  type: "checkbox",
189
189
  ref: mergedRefs,
190
190
  disabled: isDisabled,
@@ -198,11 +198,11 @@ var Checkbox = /*#__PURE__*/(0, _react.memo)( /*#__PURE__*/(0, _react.forwardRef
198
198
  "aria-invalid": isInvalid ? 'true' : undefined,
199
199
  "data-testid": testId && "".concat(testId, "--hidden-checkbox"),
200
200
  "data-invalid": isInvalid ? 'true' : undefined
201
- })), (0, _core.jsx)(_internal.CheckboxIcon, {
201
+ })), (0, _react2.jsx)(_internal.CheckboxIcon, {
202
202
  size: size,
203
203
  isIndeterminate: isIndeterminate,
204
204
  isChecked: isChecked
205
- }), label && (0, _core.jsx)(_internal.LabelText, null, label, isRequired && (0, _core.jsx)(_internal.RequiredIndicator, null)));
205
+ }), label && (0, _react2.jsx)(_internal.LabelText, null, label, isRequired && (0, _react2.jsx)(_internal.RequiredIndicator, null)));
206
206
  }));
207
207
  Checkbox.displayName = 'Checkbox';
208
208
  var _default = Checkbox;
@@ -9,14 +9,14 @@ exports.default = void 0;
9
9
 
10
10
  var _react = require("react");
11
11
 
12
- var _core = require("@emotion/core");
12
+ var _react2 = require("@emotion/react");
13
13
 
14
14
  var _svg = _interopRequireDefault(require("@atlaskit/icon/svg"));
15
15
 
16
16
  /** @jsx jsx */
17
17
  function getIcon(isIndeterminate, isChecked) {
18
18
  if (isIndeterminate) {
19
- return (0, _core.jsx)("rect", {
19
+ return (0, _react2.jsx)("rect", {
20
20
  fill: "inherit",
21
21
  x: "8",
22
22
  y: "11",
@@ -27,7 +27,7 @@ function getIcon(isIndeterminate, isChecked) {
27
27
  }
28
28
 
29
29
  if (isChecked) {
30
- return (0, _core.jsx)("path", {
30
+ return (0, _react2.jsx)("path", {
31
31
  d: "M9.707 11.293a1 1 0 1 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l4-4a1 1 0 1 0-1.414-1.414L11 12.586l-1.293-1.293z",
32
32
  fill: "inherit"
33
33
  });
@@ -53,14 +53,14 @@ var CheckboxIcon = /*#__PURE__*/(0, _react.memo)(function (_ref) {
53
53
  var icon = (0, _react.useMemo)(function () {
54
54
  return getIcon(isIndeterminate, isChecked);
55
55
  }, [isIndeterminate, isChecked]);
56
- return (0, _core.jsx)(_svg.default, {
56
+ return (0, _react2.jsx)(_svg.default, {
57
57
  label: "",
58
58
  size: size,
59
59
  primaryColor: "var(--checkbox-background-color)",
60
60
  secondaryColor: "var(--checkbox-tick-color)"
61
- }, (0, _core.jsx)("g", {
61
+ }, (0, _react2.jsx)("g", {
62
62
  fillRule: "evenodd"
63
- }, (0, _core.jsx)("rect", {
63
+ }, (0, _react2.jsx)("rect", {
64
64
  fill: "currentColor",
65
65
  x: "6",
66
66
  y: "6",
@@ -5,17 +5,17 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.default = LabelText;
7
7
 
8
- var _core = require("@emotion/core");
8
+ var _react = require("@emotion/react");
9
9
 
10
10
  /** @jsx jsx */
11
- var labelTextStyles = (0, _core.css)({
11
+ var labelTextStyles = (0, _react.css)({
12
12
  alignSelf: 'center',
13
13
  gridArea: '1 / 2 / 2 / 3'
14
14
  });
15
15
 
16
16
  function LabelText(_ref) {
17
17
  var children = _ref.children;
18
- return (0, _core.jsx)("span", {
18
+ return (0, _react.jsx)("span", {
19
19
  css: labelTextStyles
20
20
  }, children);
21
21
  }
@@ -7,7 +7,7 @@ Object.defineProperty(exports, "__esModule", {
7
7
  });
8
8
  exports.default = Label;
9
9
 
10
- var _core = require("@emotion/core");
10
+ var _react = require("@emotion/react");
11
11
 
12
12
  var _colors = require("@atlaskit/theme/colors");
13
13
 
@@ -18,7 +18,7 @@ var _constants = require("./constants");
18
18
  var _theme = _interopRequireDefault(require("./theme"));
19
19
 
20
20
  /** @jsx jsx */
21
- var labelStyles = (0, _core.css)({
21
+ var labelStyles = (0, _react.css)({
22
22
  display: 'grid',
23
23
  gap: '0 4px',
24
24
  gridAutoColumns: '1fr',
@@ -28,12 +28,12 @@ var labelStyles = (0, _core.css)({
28
28
  cursor: 'default',
29
29
  fontFamily: _constants.fontFamily
30
30
  });
31
- var disabledStyles = (0, _core.css)({
31
+ var disabledStyles = (0, _react.css)({
32
32
  color: "var(--ds-text-disabled, ".concat(_colors.N80, ")"),
33
33
  cursor: 'not-allowed'
34
34
  });
35
35
  var themeStyles = {
36
- light: (0, _core.css)({
36
+ light: (0, _react.css)({
37
37
  /**
38
38
  * Background
39
39
  */
@@ -65,7 +65,7 @@ var themeStyles = {
65
65
  '--local-tick-disabled': _theme.default.light.tickColor.disabledAndChecked,
66
66
  '--local-tick-rest': 'transparent'
67
67
  }),
68
- dark: (0, _core.css)({
68
+ dark: (0, _react.css)({
69
69
  /**
70
70
  * Background
71
71
  */
@@ -110,7 +110,7 @@ function Label(_ref) {
110
110
  mode = _useGlobalTheme.mode;
111
111
 
112
112
  return (// eslint-disable-next-line jsx-a11y/click-events-have-key-events, jsx-a11y/no-noninteractive-element-interactions
113
- (0, _core.jsx)("label", {
113
+ (0, _react.jsx)("label", {
114
114
  css: [labelStyles, isDisabled && disabledStyles, mode === 'light' && themeStyles.light, mode === 'dark' && themeStyles.dark],
115
115
  "data-testid": testId,
116
116
  "data-disabled": isDisabled || undefined,
@@ -5,20 +5,20 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.default = RequiredIndicator;
7
7
 
8
- var _core = require("@emotion/core");
8
+ var _react = require("@emotion/react");
9
9
 
10
10
  var _colors = require("@atlaskit/theme/colors");
11
11
 
12
12
  var _constants = require("./constants");
13
13
 
14
14
  /** @jsx jsx */
15
- var requiredIndicatorStyles = (0, _core.css)({
15
+ var requiredIndicatorStyles = (0, _react.css)({
16
16
  paddingLeft: _constants.gridSize * 0.25,
17
17
  color: "var(--ds-text-danger, ".concat(_colors.R500, ")")
18
18
  });
19
19
 
20
20
  function RequiredIndicator() {
21
- return (0, _core.jsx)("span", {
21
+ return (0, _react.jsx)("span", {
22
22
  css: requiredIndicatorStyles,
23
23
  "aria-hidden": true
24
24
  }, "*");
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/checkbox",
3
- "version": "12.3.20",
3
+ "version": "12.4.1",
4
4
  "sideEffects": false
5
5
  }
@@ -2,7 +2,7 @@ import _extends from "@babel/runtime/helpers/extends";
2
2
 
3
3
  /** @jsx jsx */
4
4
  import { forwardRef, memo, useCallback, useRef, useState } from 'react';
5
- import { css, jsx } from '@emotion/core';
5
+ import { css, jsx } from '@emotion/react';
6
6
  import { usePlatformLeafEventHandler } from '@atlaskit/analytics-next/usePlatformLeafEventHandler';
7
7
  import mergeRefs from '@atlaskit/ds-lib/merge-refs';
8
8
  import { CheckboxIcon, Label, LabelText, RequiredIndicator } from './internal';
@@ -148,7 +148,7 @@ const Checkbox = /*#__PURE__*/memo( /*#__PURE__*/forwardRef(function Checkbox(pr
148
148
  analyticsData: analyticsContext,
149
149
  componentName: 'checkbox',
150
150
  packageName: "@atlaskit/checkbox",
151
- packageVersion: "12.3.20"
151
+ packageVersion: "12.4.1"
152
152
  });
153
153
  const internalRef = useRef(null);
154
154
  const mergedRefs = mergeRefs([internalRef, ref]); // Use isChecked from the state if it is controlled
@@ -1,6 +1,6 @@
1
1
  /** @jsx jsx */
2
2
  import { memo, useMemo } from 'react';
3
- import { jsx } from '@emotion/core';
3
+ import { jsx } from '@emotion/react';
4
4
  import PrimitiveSVGIcon from '@atlaskit/icon/svg';
5
5
 
6
6
  function getIcon(isIndeterminate, isChecked) {
@@ -1,5 +1,5 @@
1
1
  /** @jsx jsx */
2
- import { css, jsx } from '@emotion/core';
2
+ import { css, jsx } from '@emotion/react';
3
3
  const labelTextStyles = css({
4
4
  alignSelf: 'center',
5
5
  gridArea: '1 / 2 / 2 / 3'
@@ -1,5 +1,5 @@
1
1
  /** @jsx jsx */
2
- import { css, jsx } from '@emotion/core';
2
+ import { css, jsx } from '@emotion/react';
3
3
  import { N80, N900 } from '@atlaskit/theme/colors';
4
4
  import { useGlobalTheme } from '@atlaskit/theme/components';
5
5
  import { fontFamily } from './constants';
@@ -1,5 +1,5 @@
1
1
  /** @jsx jsx */
2
- import { css, jsx } from '@emotion/core';
2
+ import { css, jsx } from '@emotion/react';
3
3
  import { R500 } from '@atlaskit/theme/colors';
4
4
  import { gridSize } from './constants';
5
5
  const requiredIndicatorStyles = css({
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/checkbox",
3
- "version": "12.3.20",
3
+ "version": "12.4.1",
4
4
  "sideEffects": false
5
5
  }
@@ -5,7 +5,7 @@ var _excluded = ["isChecked", "isDisabled", "isInvalid", "defaultChecked", "isIn
5
5
 
6
6
  /** @jsx jsx */
7
7
  import { forwardRef, memo, useCallback, useRef, useState } from 'react';
8
- import { css, jsx } from '@emotion/core';
8
+ import { css, jsx } from '@emotion/react';
9
9
  import { usePlatformLeafEventHandler } from '@atlaskit/analytics-next/usePlatformLeafEventHandler';
10
10
  import mergeRefs from '@atlaskit/ds-lib/merge-refs';
11
11
  import { CheckboxIcon, Label, LabelText, RequiredIndicator } from './internal';
@@ -159,7 +159,7 @@ var Checkbox = /*#__PURE__*/memo( /*#__PURE__*/forwardRef(function Checkbox(prop
159
159
  analyticsData: analyticsContext,
160
160
  componentName: 'checkbox',
161
161
  packageName: "@atlaskit/checkbox",
162
- packageVersion: "12.3.20"
162
+ packageVersion: "12.4.1"
163
163
  });
164
164
  var internalRef = useRef(null);
165
165
  var mergedRefs = mergeRefs([internalRef, ref]); // Use isChecked from the state if it is controlled
@@ -1,6 +1,6 @@
1
1
  /** @jsx jsx */
2
2
  import { memo, useMemo } from 'react';
3
- import { jsx } from '@emotion/core';
3
+ import { jsx } from '@emotion/react';
4
4
  import PrimitiveSVGIcon from '@atlaskit/icon/svg';
5
5
 
6
6
  function getIcon(isIndeterminate, isChecked) {
@@ -1,5 +1,5 @@
1
1
  /** @jsx jsx */
2
- import { css, jsx } from '@emotion/core';
2
+ import { css, jsx } from '@emotion/react';
3
3
  var labelTextStyles = css({
4
4
  alignSelf: 'center',
5
5
  gridArea: '1 / 2 / 2 / 3'
@@ -1,5 +1,5 @@
1
1
  /** @jsx jsx */
2
- import { css, jsx } from '@emotion/core';
2
+ import { css, jsx } from '@emotion/react';
3
3
  import { N80, N900 } from '@atlaskit/theme/colors';
4
4
  import { useGlobalTheme } from '@atlaskit/theme/components';
5
5
  import { fontFamily } from './constants';
@@ -1,5 +1,5 @@
1
1
  /** @jsx jsx */
2
- import { css, jsx } from '@emotion/core';
2
+ import { css, jsx } from '@emotion/react';
3
3
  import { R500 } from '@atlaskit/theme/colors';
4
4
  import { gridSize } from './constants';
5
5
  var requiredIndicatorStyles = css({
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/checkbox",
3
- "version": "12.3.20",
3
+ "version": "12.4.1",
4
4
  "sideEffects": false
5
5
  }
@@ -1,3 +1,4 @@
1
- /// <reference types="react" />
1
+ /** @jsx jsx */
2
+ import { jsx } from '@emotion/react';
2
3
  import { LabelTextProps } from '../types';
3
- export default function LabelText({ children }: LabelTextProps): JSX.Element;
4
+ export default function LabelText({ children }: LabelTextProps): jsx.JSX.Element;
@@ -1,3 +1,4 @@
1
- /// <reference types="react" />
1
+ /** @jsx jsx */
2
+ import { jsx } from '@emotion/react';
2
3
  import { LabelProps } from '../types';
3
- export default function Label({ children, isDisabled, testId, onClick, id, }: LabelProps): JSX.Element;
4
+ export default function Label({ children, isDisabled, testId, onClick, id, }: LabelProps): jsx.JSX.Element;
@@ -1,2 +1,3 @@
1
- /// <reference types="react" />
2
- export default function RequiredIndicator(): JSX.Element;
1
+ /** @jsx jsx */
2
+ import { jsx } from '@emotion/react';
3
+ export default function RequiredIndicator(): jsx.JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/checkbox",
3
- "version": "12.3.20",
3
+ "version": "12.4.1",
4
4
  "description": "A checkbox is an input control that allows a user to select one or more options from a number of choices.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -12,16 +12,10 @@
12
12
  "module": "dist/esm/index.js",
13
13
  "module:es2019": "dist/es2019/index.js",
14
14
  "types": "dist/types/index.d.ts",
15
- "typesVersions": {
16
- ">=4.0 <4.5": {
17
- "*": [
18
- "dist/types-ts4.0/*"
19
- ]
20
- }
21
- },
22
15
  "sideEffects": false,
23
16
  "atlaskit:src": "src/index.tsx",
24
17
  "atlassian": {
18
+ "disableProductCI": true,
25
19
  "team": "Design System Team",
26
20
  "releaseModel": "scheduled",
27
21
  "website": {
@@ -35,20 +29,20 @@
35
29
  "dependencies": {
36
30
  "@atlaskit/analytics-next": "^8.2.0",
37
31
  "@atlaskit/ds-lib": "^2.1.0",
38
- "@atlaskit/icon": "^21.10.0",
32
+ "@atlaskit/icon": "^21.11.0",
39
33
  "@atlaskit/theme": "^12.2.0",
40
- "@atlaskit/tokens": "^0.10.0",
34
+ "@atlaskit/tokens": "^0.11.0",
41
35
  "@babel/runtime": "^7.0.0",
42
- "@emotion/core": "^10.0.9"
36
+ "@emotion/react": "^11.7.1"
43
37
  },
44
38
  "peerDependencies": {
45
39
  "react": "^16.8.0"
46
40
  },
47
41
  "devDependencies": {
48
- "@atlaskit/button": "^16.3.0",
42
+ "@atlaskit/button": "^16.4.0",
49
43
  "@atlaskit/docs": "*",
50
- "@atlaskit/form": "^8.5.0",
51
- "@atlaskit/section-message": "^6.2.0",
44
+ "@atlaskit/form": "^8.7.0",
45
+ "@atlaskit/section-message": "^6.3.0",
52
46
  "@atlaskit/ssr": "*",
53
47
  "@atlaskit/toggle": "^12.5.0",
54
48
  "@atlaskit/visual-regression": "*",
package/report.api.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
4
 
5
+ <!--
6
+ Generated API Report version: 2.0
7
+ -->
8
+
9
+ [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
10
+
5
11
  ```ts
6
12
  /// <reference types="react" />
7
13
 
@@ -12,30 +18,25 @@ import { default as React_2 } from 'react';
12
18
  import { RefAttributes } from 'react';
13
19
  import type UIAnalyticsEvent from '@atlaskit/analytics-next/UIAnalyticsEvent';
14
20
 
15
- /**
16
- * __Checkbox__
17
- *
18
- * A checkbox an input control that allows a user to select one or more options from a number of choices.
19
- *
20
- * - [Examples](https://atlassian.design/components/checkbox/examples)
21
- * - [Code](https://atlassian.design/components/checkbox/code)
22
- * - [Usage](https://atlassian.design/components/checkbox/usage)
23
- */
24
- declare const Checkbox: MemoExoticComponent<ForwardRefExoticComponent<
25
- Omit<
21
+ // @public
22
+ const Checkbox: MemoExoticComponent<
23
+ ForwardRefExoticComponent<
26
24
  Omit<
27
- InputHTMLAttributes<HTMLInputElement>,
28
- 'disabled' | 'required' | 'checked' | 'css'
29
- >,
30
- keyof OwnProps
31
- > &
32
- OwnProps &
33
- RefAttributes<HTMLInputElement>
34
- >>;
25
+ Omit<
26
+ InputHTMLAttributes<HTMLInputElement>,
27
+ 'disabled' | 'required' | 'checked' | 'css'
28
+ >,
29
+ keyof OwnProps
30
+ > &
31
+ OwnProps &
32
+ RefAttributes<HTMLInputElement>
33
+ >
34
+ >;
35
35
  export { Checkbox };
36
36
  export default Checkbox;
37
37
 
38
- export declare type CheckboxProps = Combine<
38
+ // @public (undocumented)
39
+ export type CheckboxProps = Combine<
39
40
  Omit<
40
41
  React_2.InputHTMLAttributes<HTMLInputElement>,
41
42
  /**
@@ -54,83 +55,32 @@ export declare type CheckboxProps = Combine<
54
55
  OwnProps
55
56
  >;
56
57
 
57
- declare type Combine<First, Second> = Omit<First, keyof Second> & Second;
58
+ // @public (undocumented)
59
+ type Combine<First, Second> = Omit<First, keyof Second> & Second;
58
60
 
59
- /**
60
- *
61
- *
62
- * CHECKBOX PROPTYPES
63
- *
64
- *
65
- */
66
- declare type OwnProps = {
67
- /**
68
- * Sets whether the checkbox begins checked.
69
- */
61
+ // @public
62
+ type OwnProps = {
70
63
  defaultChecked?: boolean;
71
- /**
72
- * id assigned to input
73
- */
74
64
  id?: string;
75
- /**
76
- * Sets whether the checkbox is checked or unchecked.
77
- */
78
65
  isChecked?: boolean;
79
- /**
80
- * Sets whether the checkbox is disabled.
81
- */
82
66
  isDisabled?: boolean;
83
- /**
84
- * Sets whether the checkbox is indeterminate. This only affects the
85
- * style and does not modify the isChecked property.
86
- */
87
67
  isIndeterminate?: boolean;
88
- /**
89
- * Marks the field as invalid. Changes style of unchecked component.
90
- */
91
68
  isInvalid?: boolean;
92
- /**
93
- * Marks the field as required & changes the label style.
94
- */
95
69
  isRequired?: boolean;
96
- /**
97
- * The label to be displayed to the right of the checkbox. The label is part
98
- * of the clickable element to select the checkbox.
99
- */
100
70
  label?: React_2.ReactChild;
101
- /**
102
- * The name of the submitted field in a checkbox.
103
- */
104
71
  name?: string;
105
- /**
106
- * Function that is called whenever the state of the checkbox changes. It will
107
- * be called with an object containing the react synthetic event. Use currentTarget to get value, name and checked
108
- */
109
72
  onChange?: (
110
73
  e: React_2.ChangeEvent<HTMLInputElement>,
111
74
  analyticsEvent: UIAnalyticsEvent,
112
75
  ) => void;
113
- /**
114
- * The value to be used in the checkbox input. This is the value that will be returned on form submission.
115
- */
116
76
  value?: number | string;
117
- /**
118
- * The size of the Checkbox
119
- */
120
77
  size?: Size;
121
- /**
122
- * A `testId` prop is provided for specified elements, which is a unique string that appears as a data attribute `data-testid` in the rendered code, serving as a hook for automated tests
123
- * we have generated testid based on the one you pass to the Checkbox component:
124
- * - `{testId}--hidden-checkbox` to check if it got changed to checked/unchecked.
125
- */
126
78
  testId?: string;
127
- /**
128
- * Additional information to be included in the `context` of analytics events that come from radio
129
- */
130
79
  analyticsContext?: Record<string, any>;
131
80
  };
132
81
 
133
- declare type Size = 'small' | 'medium' | 'large' | 'xlarge';
82
+ // @public (undocumented)
83
+ type Size = 'small' | 'medium' | 'large' | 'xlarge';
134
84
 
135
- export {};
85
+ // (No @packageDocumentation comment for this package)
136
86
  ```
@@ -1,12 +0,0 @@
1
- /// <reference types="react" />
2
- /**
3
- * __Checkbox__
4
- *
5
- * A checkbox an input control that allows a user to select one or more options from a number of choices.
6
- *
7
- * - [Examples](https://atlassian.design/components/checkbox/examples)
8
- * - [Code](https://atlassian.design/components/checkbox/code)
9
- * - [Usage](https://atlassian.design/components/checkbox/usage)
10
- */
11
- declare const Checkbox: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<Omit<Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "disabled" | "required" | "checked" | "css">, keyof import("./types").OwnProps> & import("./types").OwnProps & import("react").RefAttributes<HTMLInputElement>>>;
12
- export default Checkbox;
@@ -1,2 +0,0 @@
1
- export { default, default as Checkbox } from './checkbox';
2
- export type { CheckboxProps } from './types';
@@ -1,16 +0,0 @@
1
- /// <reference types="react" />
2
- import type { Size } from '../types';
3
- /**
4
- * __Checkbox icon__
5
- *
6
- * A checkbox icon is the visual representation of checkbox state,
7
- * which is shown instead of the native input.
8
- *
9
- * @internal
10
- */
11
- declare const CheckboxIcon: import("react").NamedExoticComponent<{
12
- size: Size;
13
- isIndeterminate: boolean;
14
- isChecked: boolean;
15
- }>;
16
- export default CheckboxIcon;
@@ -1,2 +0,0 @@
1
- export declare const fontFamily: string;
2
- export declare const gridSize: number;
@@ -1,4 +0,0 @@
1
- export { default as CheckboxIcon } from './checkbox-icon';
2
- export { default as Label } from './label';
3
- export { default as LabelText } from './label-text';
4
- export { default as RequiredIndicator } from './required-indicator';
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- import { LabelTextProps } from '../types';
3
- export default function LabelText({ children }: LabelTextProps): JSX.Element;
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- import { LabelProps } from '../types';
3
- export default function Label({ children, isDisabled, testId, onClick, id, }: LabelProps): JSX.Element;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export default function RequiredIndicator(): JSX.Element;
@@ -1,55 +0,0 @@
1
- declare const theme: {
2
- light: {
3
- borderColor: {
4
- rest: "var(--ds-border-input)";
5
- hovered: "var(--ds-border-input)";
6
- disabled: "var(--ds-background-disabled)";
7
- checked: "var(--ds-background-selected-bold)";
8
- active: "var(--ds-border)";
9
- invalid: "var(--ds-border-danger)";
10
- invalidAndChecked: "var(--ds-border-danger)";
11
- focused: "var(--ds-border-focused)";
12
- hoveredAndChecked: "var(--ds-background-selected-bold-hovered)";
13
- };
14
- boxColor: {
15
- rest: "var(--ds-background-input)";
16
- hovered: "var(--ds-background-input-hovered)";
17
- disabled: "var(--ds-background-disabled)";
18
- active: "var(--ds-background-input-pressed)";
19
- hoveredAndChecked: "var(--ds-background-selected-bold-hovered)";
20
- checked: "var(--ds-background-selected-bold)";
21
- };
22
- tickColor: {
23
- disabledAndChecked: "var(--ds-icon-disabled)";
24
- activeAndChecked: "var(--ds-icon-inverse)";
25
- checked: "var(--ds-icon-inverse)";
26
- };
27
- };
28
- dark: {
29
- borderColor: {
30
- rest: "var(--ds-border-input)";
31
- hovered: "var(--ds-border-input)";
32
- disabled: "var(--ds-background-disabled)";
33
- checked: "var(--ds-background-selected-bold)";
34
- active: "var(--ds-border)";
35
- invalid: "var(--ds-border-danger)";
36
- invalidAndChecked: "var(--ds-border-danger)";
37
- focused: "var(--ds-border-focused)";
38
- hoveredAndChecked: "var(--ds-background-selected-bold-hovered)";
39
- };
40
- boxColor: {
41
- rest: "var(--ds-background-input)";
42
- hovered: "var(--ds-background-input-hovered)";
43
- disabled: "var(--ds-background-disabled)";
44
- active: "var(--ds-background-input-pressed)";
45
- hoveredAndChecked: "var(--ds-background-selected-bold-hovered)";
46
- checked: "var(--ds-background-selected-bold)";
47
- };
48
- tickColor: {
49
- disabledAndChecked: "var(--ds-icon-disabled)";
50
- activeAndChecked: "var(--ds-icon-inverse)";
51
- checked: "var(--ds-icon-inverse)";
52
- };
53
- };
54
- };
55
- export default theme;
@@ -1,103 +0,0 @@
1
- import React from 'react';
2
- import type UIAnalyticsEvent from '@atlaskit/analytics-next/UIAnalyticsEvent';
3
- export declare type Size = 'small' | 'medium' | 'large' | 'xlarge';
4
- /**
5
- *
6
- *
7
- * CHECKBOX PROPTYPES
8
- *
9
- *
10
- */
11
- export declare type OwnProps = {
12
- /**
13
- * Sets whether the checkbox begins checked.
14
- */
15
- defaultChecked?: boolean;
16
- /**
17
- * id assigned to input
18
- */
19
- id?: string;
20
- /**
21
- * Sets whether the checkbox is checked or unchecked.
22
- */
23
- isChecked?: boolean;
24
- /**
25
- * Sets whether the checkbox is disabled.
26
- */
27
- isDisabled?: boolean;
28
- /**
29
- * Sets whether the checkbox is indeterminate. This only affects the
30
- * style and does not modify the isChecked property.
31
- */
32
- isIndeterminate?: boolean;
33
- /**
34
- * Marks the field as invalid. Changes style of unchecked component.
35
- */
36
- isInvalid?: boolean;
37
- /**
38
- * Marks the field as required & changes the label style.
39
- */
40
- isRequired?: boolean;
41
- /**
42
- * The label to be displayed to the right of the checkbox. The label is part
43
- * of the clickable element to select the checkbox.
44
- */
45
- label?: React.ReactChild;
46
- /**
47
- * The name of the submitted field in a checkbox.
48
- */
49
- name?: string;
50
- /**
51
- * Function that is called whenever the state of the checkbox changes. It will
52
- * be called with an object containing the react synthetic event. Use currentTarget to get value, name and checked
53
- */
54
- onChange?: (e: React.ChangeEvent<HTMLInputElement>, analyticsEvent: UIAnalyticsEvent) => void;
55
- /**
56
- * The value to be used in the checkbox input. This is the value that will be returned on form submission.
57
- */
58
- value?: number | string;
59
- /**
60
- * The size of the Checkbox
61
- */
62
- size?: Size;
63
- /**
64
- * A `testId` prop is provided for specified elements, which is a unique string that appears as a data attribute `data-testid` in the rendered code, serving as a hook for automated tests
65
- * we have generated testid based on the one you pass to the Checkbox component:
66
- * - `{testId}--hidden-checkbox` to check if it got changed to checked/unchecked.
67
- */
68
- testId?: string;
69
- /**
70
- * Additional information to be included in the `context` of analytics events that come from radio
71
- */
72
- analyticsContext?: Record<string, any>;
73
- };
74
- declare type Combine<First, Second> = Omit<First, keyof Second> & Second;
75
- export declare type CheckboxProps = Combine<Omit<React.InputHTMLAttributes<HTMLInputElement>,
76
- /**
77
- * 'disabled', 'required', and 'checked' are omitted so that
78
- * consumers must handle state using our props.
79
- *
80
- * 'css' is added globally to element attributes by emotion.
81
- * This was causing a bug, making the css prop required in
82
- * some cases. We explicitly omit it to avoid that.
83
- *
84
- * Because 'className' (which the css prop uses internally)
85
- * is still available, this should not break existing usage.
86
- */
87
- 'disabled' | 'required' | 'checked' | 'css'>, OwnProps>;
88
- export interface LabelTextProps extends React.HTMLProps<HTMLSpanElement> {
89
- children: React.ReactNode;
90
- }
91
- export interface LabelProps extends React.HTMLProps<HTMLInputElement> {
92
- isDisabled?: boolean;
93
- /**
94
- * A `testId` prop is provided for specified elements, which is a unique string that appears as a data attribute `data-testid` in the rendered code, serving as a hook for automated tests
95
- */
96
- testId?: string;
97
- /**
98
- * Click handler that is conditionally applied for Firefox
99
- * as Firefox does not dispatch modified click events (e.g. Ctrl+Click) down to the underlying input element
100
- */
101
- onClick?: React.MouseEventHandler;
102
- }
103
- export {};