@primer/components 0.0.0-2021118165314 → 0.0.0-20211181903

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 (119) hide show
  1. package/dist/browser.esm.js +2 -2
  2. package/dist/browser.esm.js.map +1 -1
  3. package/dist/browser.umd.js +2 -2
  4. package/dist/browser.umd.js.map +1 -1
  5. package/lib/Autocomplete/AutocompleteMenu.js +11 -17
  6. package/lib/CheckboxInputField.d.ts +11 -0
  7. package/lib/CheckboxInputField.js +73 -0
  8. package/lib/ChoiceFieldset/ChoiceFieldCaption.d.ts +3 -0
  9. package/lib/ChoiceFieldset/ChoiceFieldCaption.js +35 -0
  10. package/lib/ChoiceFieldset/ChoiceFieldLabel.d.ts +3 -0
  11. package/lib/ChoiceFieldset/ChoiceFieldLabel.js +35 -0
  12. package/lib/ChoiceFieldset/ChoiceFieldset.d.ts +65 -0
  13. package/lib/ChoiceFieldset/ChoiceFieldset.js +93 -0
  14. package/lib/ChoiceFieldset/ChoiceFieldsetDescription.d.ts +3 -0
  15. package/lib/ChoiceFieldset/ChoiceFieldsetDescription.js +29 -0
  16. package/lib/ChoiceFieldset/ChoiceFieldsetLegend.d.ts +9 -0
  17. package/lib/ChoiceFieldset/ChoiceFieldsetLegend.js +44 -0
  18. package/lib/ChoiceFieldset/ChoiceFieldsetList.d.ts +9 -0
  19. package/lib/ChoiceFieldset/ChoiceFieldsetList.js +71 -0
  20. package/lib/ChoiceFieldset/ChoiceFieldsetListContext.d.ts +19 -0
  21. package/lib/ChoiceFieldset/ChoiceFieldsetListContext.js +15 -0
  22. package/lib/ChoiceFieldset/ChoiceFieldsetListItem.d.ts +25 -0
  23. package/lib/ChoiceFieldset/ChoiceFieldsetListItem.js +75 -0
  24. package/lib/ChoiceFieldset/ChoiceFieldsetValidation.d.ts +6 -0
  25. package/lib/ChoiceFieldset/ChoiceFieldsetValidation.js +17 -0
  26. package/lib/ChoiceFieldset/index.d.ts +3 -0
  27. package/lib/ChoiceFieldset/index.js +23 -0
  28. package/lib/RadioInputField.d.ts +10 -0
  29. package/lib/RadioInputField.js +74 -0
  30. package/lib/TextInputField.d.ts +583 -0
  31. package/lib/TextInputField.js +66 -0
  32. package/lib/_InputCaption.d.ts +13 -0
  33. package/lib/_InputCaption.js +27 -0
  34. package/lib/_InputField/InputField.d.ts +39 -0
  35. package/lib/_InputField/InputField.js +88 -0
  36. package/lib/_InputField/InputFieldCaption.d.ts +3 -0
  37. package/lib/_InputField/InputFieldCaption.js +30 -0
  38. package/lib/_InputField/InputFieldLabel.d.ts +9 -0
  39. package/lib/_InputField/InputFieldLabel.js +34 -0
  40. package/lib/_InputField/InputFieldValidation.d.ts +6 -0
  41. package/lib/_InputField/InputFieldValidation.js +17 -0
  42. package/lib/_InputField/ToggleInputField.d.ts +13 -0
  43. package/lib/_InputField/ToggleInputField.js +75 -0
  44. package/lib/_InputField/ToggleInputLeadingVisual.d.ts +3 -0
  45. package/lib/_InputField/ToggleInputLeadingVisual.js +22 -0
  46. package/lib/_InputField/ValidationAnimationContainer.d.ts +6 -0
  47. package/lib/_InputField/ValidationAnimationContainer.js +48 -0
  48. package/lib/_InputField/index.d.ts +1 -0
  49. package/lib/_InputField/index.js +15 -0
  50. package/lib/_InputField/slots.d.ts +13 -0
  51. package/lib/_InputField/slots.js +17 -0
  52. package/lib/_InputLabel.d.ts +8 -0
  53. package/lib/_InputLabel.js +45 -0
  54. package/lib/_InputValidation.d.ts +8 -0
  55. package/lib/_InputValidation.js +59 -0
  56. package/lib/_VisuallyHidden.d.ts +6 -0
  57. package/lib/_VisuallyHidden.js +39 -0
  58. package/lib/index.d.ts +4 -0
  59. package/lib/index.js +38 -0
  60. package/lib/utils/types/FormValidationStatus.d.ts +1 -0
  61. package/lib/utils/types/FormValidationStatus.js +1 -0
  62. package/lib-esm/Autocomplete/AutocompleteMenu.js +7 -16
  63. package/lib-esm/CheckboxInputField.d.ts +11 -0
  64. package/lib-esm/CheckboxInputField.js +56 -0
  65. package/lib-esm/ChoiceFieldset/ChoiceFieldCaption.d.ts +3 -0
  66. package/lib-esm/ChoiceFieldset/ChoiceFieldCaption.js +20 -0
  67. package/lib-esm/ChoiceFieldset/ChoiceFieldLabel.d.ts +3 -0
  68. package/lib-esm/ChoiceFieldset/ChoiceFieldLabel.js +20 -0
  69. package/lib-esm/ChoiceFieldset/ChoiceFieldset.d.ts +65 -0
  70. package/lib-esm/ChoiceFieldset/ChoiceFieldset.js +71 -0
  71. package/lib-esm/ChoiceFieldset/ChoiceFieldsetDescription.d.ts +3 -0
  72. package/lib-esm/ChoiceFieldset/ChoiceFieldsetDescription.js +17 -0
  73. package/lib-esm/ChoiceFieldset/ChoiceFieldsetLegend.d.ts +9 -0
  74. package/lib-esm/ChoiceFieldset/ChoiceFieldsetLegend.js +31 -0
  75. package/lib-esm/ChoiceFieldset/ChoiceFieldsetList.d.ts +9 -0
  76. package/lib-esm/ChoiceFieldset/ChoiceFieldsetList.js +55 -0
  77. package/lib-esm/ChoiceFieldset/ChoiceFieldsetListContext.d.ts +19 -0
  78. package/lib-esm/ChoiceFieldset/ChoiceFieldsetListContext.js +5 -0
  79. package/lib-esm/ChoiceFieldset/ChoiceFieldsetListItem.d.ts +25 -0
  80. package/lib-esm/ChoiceFieldset/ChoiceFieldsetListItem.js +51 -0
  81. package/lib-esm/ChoiceFieldset/ChoiceFieldsetValidation.d.ts +6 -0
  82. package/lib-esm/ChoiceFieldset/ChoiceFieldsetValidation.js +7 -0
  83. package/lib-esm/ChoiceFieldset/index.d.ts +3 -0
  84. package/lib-esm/ChoiceFieldset/index.js +2 -0
  85. package/lib-esm/RadioInputField.d.ts +10 -0
  86. package/lib-esm/RadioInputField.js +56 -0
  87. package/lib-esm/TextInputField.d.ts +583 -0
  88. package/lib-esm/TextInputField.js +50 -0
  89. package/lib-esm/_InputCaption.d.ts +13 -0
  90. package/lib-esm/_InputCaption.js +16 -0
  91. package/lib-esm/_InputField/InputField.d.ts +39 -0
  92. package/lib-esm/_InputField/InputField.js +69 -0
  93. package/lib-esm/_InputField/InputFieldCaption.d.ts +3 -0
  94. package/lib-esm/_InputField/InputFieldCaption.js +18 -0
  95. package/lib-esm/_InputField/InputFieldLabel.d.ts +9 -0
  96. package/lib-esm/_InputField/InputFieldLabel.js +22 -0
  97. package/lib-esm/_InputField/InputFieldValidation.d.ts +6 -0
  98. package/lib-esm/_InputField/InputFieldValidation.js +7 -0
  99. package/lib-esm/_InputField/ToggleInputField.d.ts +13 -0
  100. package/lib-esm/_InputField/ToggleInputField.js +58 -0
  101. package/lib-esm/_InputField/ToggleInputLeadingVisual.d.ts +3 -0
  102. package/lib-esm/_InputField/ToggleInputLeadingVisual.js +11 -0
  103. package/lib-esm/_InputField/ValidationAnimationContainer.d.ts +6 -0
  104. package/lib-esm/_InputField/ValidationAnimationContainer.js +33 -0
  105. package/lib-esm/_InputField/index.d.ts +1 -0
  106. package/lib-esm/_InputField/index.js +1 -0
  107. package/lib-esm/_InputField/slots.d.ts +13 -0
  108. package/lib-esm/_InputField/slots.js +5 -0
  109. package/lib-esm/_InputLabel.d.ts +8 -0
  110. package/lib-esm/_InputLabel.js +33 -0
  111. package/lib-esm/_InputValidation.d.ts +8 -0
  112. package/lib-esm/_InputValidation.js +46 -0
  113. package/lib-esm/_VisuallyHidden.d.ts +6 -0
  114. package/lib-esm/_VisuallyHidden.js +26 -0
  115. package/lib-esm/index.d.ts +4 -0
  116. package/lib-esm/index.js +4 -0
  117. package/lib-esm/utils/types/FormValidationStatus.d.ts +1 -0
  118. package/lib-esm/utils/types/FormValidationStatus.js +1 -0
  119. package/package.json +2 -2
@@ -0,0 +1,75 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+
8
+ var _react = _interopRequireWildcard(require("react"));
9
+
10
+ var _ = require("..");
11
+
12
+ var _ToggleInputLeadingVisual = _interopRequireDefault(require("../_InputField/ToggleInputLeadingVisual"));
13
+
14
+ var _ChoiceFieldCaption = _interopRequireDefault(require("./ChoiceFieldCaption"));
15
+
16
+ var _ChoiceFieldLabel = _interopRequireDefault(require("./ChoiceFieldLabel"));
17
+
18
+ var _ChoiceFieldsetListContext = _interopRequireDefault(require("./ChoiceFieldsetListContext"));
19
+
20
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21
+
22
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
23
+
24
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
25
+
26
+ const ChoiceFieldsetListItem = ({
27
+ children,
28
+ id,
29
+ disabled: disabledProp,
30
+ value
31
+ }) => {
32
+ const choiceFieldsetListContext = (0, _react.useContext)(_ChoiceFieldsetListContext.default);
33
+
34
+ if (choiceFieldsetListContext === null) {
35
+ throw new Error('ChoiceFieldsetListContext returned null');
36
+ }
37
+
38
+ const {
39
+ name,
40
+ onChange,
41
+ fieldComponent: FieldComponent,
42
+ selected,
43
+ disabled,
44
+ selectionVariant
45
+ } = choiceFieldsetListContext;
46
+ const fieldId = (0, _.useSSRSafeId)(id);
47
+
48
+ const labelChild = _react.default.Children.toArray(children).find(child => /*#__PURE__*/_react.default.isValidElement(child) && child.type === _ChoiceFieldLabel.default);
49
+
50
+ const otherValidChildren = _react.default.Children.toArray(children).filter(child => /*#__PURE__*/_react.default.isValidElement(child) && (child.type === _ChoiceFieldCaption.default || child.type === _ToggleInputLeadingVisual.default));
51
+
52
+ return /*#__PURE__*/_react.default.createElement(FieldComponent, {
53
+ id: fieldId,
54
+ disabled: disabledProp || disabled
55
+ }, /*#__PURE__*/_react.default.createElement(FieldComponent.Input, {
56
+ checked: selected === null || selected === void 0 ? void 0 : selected.includes(value),
57
+ value: value,
58
+ name: selectionVariant === 'multiple' ? value : name,
59
+ onChange: onChange
60
+ }), labelChild ? // if <Item.Label> was passed, we can just render the children as-is
61
+ children :
62
+ /*#__PURE__*/
63
+ // if <Item.Label> was NOT passed, treat all the children except <Item.Caption> and <Item.LeadingVisual> as the label
64
+ _react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(FieldComponent.Label, null, children), otherValidChildren));
65
+ };
66
+
67
+ ChoiceFieldsetListItem.displayName = "ChoiceFieldsetListItem";
68
+
69
+ var _default = Object.assign(ChoiceFieldsetListItem, {
70
+ Caption: _ChoiceFieldCaption.default,
71
+ Label: _ChoiceFieldLabel.default,
72
+ LeadingVisual: _ToggleInputLeadingVisual.default
73
+ });
74
+
75
+ exports.default = _default;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface ChoiceFieldsetValidationProps {
3
+ validationKey: string;
4
+ }
5
+ declare const ChoiceFieldsetValidation: React.FC<ChoiceFieldsetValidationProps>;
6
+ export default ChoiceFieldsetValidation;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+
8
+ var _react = _interopRequireDefault(require("react"));
9
+
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
+
12
+ const ChoiceFieldsetValidation = ({
13
+ children
14
+ }) => /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, children);
15
+
16
+ var _default = ChoiceFieldsetValidation;
17
+ exports.default = _default;
@@ -0,0 +1,3 @@
1
+ export { default } from './ChoiceFieldset';
2
+ export { default as Item } from './ChoiceFieldsetListItem';
3
+ export type { ChoiceFieldsetProps } from './ChoiceFieldset';
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "default", {
7
+ enumerable: true,
8
+ get: function () {
9
+ return _ChoiceFieldset.default;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "Item", {
13
+ enumerable: true,
14
+ get: function () {
15
+ return _ChoiceFieldsetListItem.default;
16
+ }
17
+ });
18
+
19
+ var _ChoiceFieldset = _interopRequireDefault(require("./ChoiceFieldset"));
20
+
21
+ var _ChoiceFieldsetListItem = _interopRequireDefault(require("./ChoiceFieldsetListItem"));
22
+
23
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import { RadioProps } from '.';
3
+ import { ToggleInputFieldProps } from './_InputField/ToggleInputField';
4
+ declare const _default: React.FC<ToggleInputFieldProps> & {
5
+ Input: React.FC<RadioProps>;
6
+ Caption: React.FC<{}>;
7
+ Label: React.FC<import("./_InputField/InputFieldLabel").Props>;
8
+ LeadingVisual: React.FC<{}>;
9
+ };
10
+ export default _default;
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+
8
+ var _react = _interopRequireDefault(require("react"));
9
+
10
+ var _ = require(".");
11
+
12
+ var _InputField = _interopRequireDefault(require("./_InputField/InputField"));
13
+
14
+ var _slots = require("./_InputField/slots");
15
+
16
+ var _ToggleInputField = _interopRequireDefault(require("./_InputField/ToggleInputField"));
17
+
18
+ var _ToggleInputLeadingVisual = _interopRequireDefault(require("./_InputField/ToggleInputLeadingVisual"));
19
+
20
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21
+
22
+ function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
23
+
24
+ // pulling out `id`, `disabled`, and `required` because those should come from the parent TextInputField component
25
+ const Input = ({
26
+ id: idProp,
27
+ required: requiredProp,
28
+ disabled: disabledProp,
29
+ ...rest
30
+ }) => {
31
+ if (idProp) {
32
+ // eslint-disable-next-line no-console
33
+ console.warn("instead of passing the 'id' prop directly to <TextInputField.Input>, it should be passed to the parent component, <TextInputField>");
34
+ }
35
+
36
+ if (disabledProp) {
37
+ // eslint-disable-next-line no-console
38
+ console.warn("instead of passing the 'disabled' prop directly to <TextInputField.Input>, it should be passed to the parent component, <TextInputField>");
39
+ }
40
+
41
+ if (requiredProp) {
42
+ // eslint-disable-next-line no-console
43
+ console.warn("instead of passing the 'required' prop directly to <TextInputField.Input>, it should be passed to the parent component, <TextInputField>");
44
+ }
45
+
46
+ return /*#__PURE__*/_react.default.createElement(_slots.Slot, {
47
+ name: "Input"
48
+ }, ({
49
+ disabled,
50
+ id,
51
+ required,
52
+ captionId
53
+ }) => /*#__PURE__*/_react.default.createElement(_.Radio, _extends({
54
+ "aria-describedby": captionId,
55
+ id: id,
56
+ required: required,
57
+ disabled: disabled
58
+ }, rest)));
59
+ };
60
+
61
+ Input.displayName = "Input";
62
+
63
+ const RadioInputField = props => /*#__PURE__*/_react.default.createElement(_ToggleInputField.default, props);
64
+
65
+ RadioInputField.displayName = "RadioInputField";
66
+
67
+ var _default = Object.assign(RadioInputField, {
68
+ Input,
69
+ Caption: _InputField.default.Caption,
70
+ Label: _InputField.default.Label,
71
+ LeadingVisual: _ToggleInputLeadingVisual.default
72
+ });
73
+
74
+ exports.default = _default;