@hopper-ui/components 1.3.8 → 1.3.10

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 (213) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/Avatar/src/AnonymousAvatar.css +237 -10
  3. package/dist/Avatar/src/AnonymousAvatar.js +2 -2
  4. package/dist/Avatar/src/Avatar.css +184 -37
  5. package/dist/Avatar/src/Avatar.js +3 -3
  6. package/dist/Avatar/src/DeletedAvatar.css +237 -10
  7. package/dist/Avatar/src/DeletedAvatar.js +2 -2
  8. package/dist/Avatar/src/RichIconAvatarImage.css +237 -10
  9. package/dist/Avatar/src/RichIconAvatarImage.js +1 -1
  10. package/dist/Avatar/src/index.css +184 -37
  11. package/dist/Avatar/src/index.js +5 -5
  12. package/dist/Badge/src/Badge.css +205 -21
  13. package/dist/Badge/src/Badge.js +2 -2
  14. package/dist/Badge/src/FloatingBadge.css +237 -10
  15. package/dist/Badge/src/FloatingBadge.js +1 -1
  16. package/dist/Badge/src/index.css +215 -31
  17. package/dist/Badge/src/index.js +3 -3
  18. package/dist/ComboBox/src/ComboBox.css +5135 -0
  19. package/dist/ComboBox/src/ComboBox.d.ts +94 -0
  20. package/dist/ComboBox/src/ComboBox.js +123 -0
  21. package/dist/ComboBox/src/ComboBoxContext.d.ts +16 -0
  22. package/dist/ComboBox/src/ComboBoxContext.js +2 -0
  23. package/dist/ComboBox/src/index.css +5135 -0
  24. package/dist/ComboBox/src/index.d.ts +12 -0
  25. package/dist/ComboBox/src/index.js +123 -0
  26. package/dist/Divider/src/Divider.css +229 -2
  27. package/dist/Divider/src/Divider.js +1 -1
  28. package/dist/Divider/src/index.css +229 -2
  29. package/dist/Divider/src/index.js +1 -1
  30. package/dist/ErrorMessage/src/ErrorMessage.css +158 -11
  31. package/dist/ErrorMessage/src/ErrorMessage.js +2 -2
  32. package/dist/ErrorMessage/src/index.css +158 -11
  33. package/dist/ErrorMessage/src/index.js +2 -2
  34. package/dist/Form/src/Form.css +1994 -1821
  35. package/dist/Form/src/Form.d.ts +4 -0
  36. package/dist/Form/src/Form.js +69 -67
  37. package/dist/Form/src/index.css +1994 -1821
  38. package/dist/Form/src/index.js +69 -67
  39. package/dist/HelperMessage/src/HelperMessage.css +158 -11
  40. package/dist/HelperMessage/src/HelperMessage.js +2 -2
  41. package/dist/HelperMessage/src/index.css +158 -11
  42. package/dist/HelperMessage/src/index.js +2 -2
  43. package/dist/IconList/src/IconList.css +228 -1
  44. package/dist/IconList/src/IconList.js +1 -1
  45. package/dist/IconList/src/index.css +228 -1
  46. package/dist/IconList/src/index.js +1 -1
  47. package/dist/Link/src/Link.css +184 -37
  48. package/dist/Link/src/Link.js +3 -3
  49. package/dist/Link/src/index.css +184 -37
  50. package/dist/Link/src/index.js +3 -3
  51. package/dist/ListBox/src/ListBox.css +398 -346
  52. package/dist/ListBox/src/ListBox.js +7 -8
  53. package/dist/ListBox/src/ListBoxItem.css +391 -306
  54. package/dist/ListBox/src/ListBoxItem.js +5 -5
  55. package/dist/ListBox/src/ListBoxItemSkeleton.css +234 -7
  56. package/dist/ListBox/src/ListBoxItemSkeleton.js +1 -1
  57. package/dist/ListBox/src/index.css +398 -346
  58. package/dist/ListBox/src/index.js +7 -8
  59. package/dist/Select/src/Select.css +1063 -890
  60. package/dist/Select/src/Select.d.ts +4 -0
  61. package/dist/Select/src/Select.js +69 -67
  62. package/dist/Select/src/SelectValue.css +197 -191
  63. package/dist/Select/src/SelectValue.js +5 -5
  64. package/dist/Select/src/index.css +1063 -890
  65. package/dist/Select/src/index.js +69 -67
  66. package/dist/Spinner/src/Spinner.css +166 -19
  67. package/dist/Spinner/src/Spinner.js +2 -2
  68. package/dist/Spinner/src/index.css +166 -19
  69. package/dist/Spinner/src/index.js +2 -2
  70. package/dist/buttons/src/Button.css +247 -100
  71. package/dist/buttons/src/Button.js +4 -4
  72. package/dist/buttons/src/ButtonGroup.css +238 -11
  73. package/dist/buttons/src/ButtonGroup.js +2 -2
  74. package/dist/buttons/src/ClearButton.css +298 -71
  75. package/dist/buttons/src/ClearButton.js +2 -2
  76. package/dist/buttons/src/EmbeddedButton.css +298 -71
  77. package/dist/buttons/src/EmbeddedButton.js +1 -1
  78. package/dist/buttons/src/index.css +329 -182
  79. package/dist/buttons/src/index.js +8 -8
  80. package/dist/checkbox/src/Checkbox.css +181 -34
  81. package/dist/checkbox/src/Checkbox.js +2 -2
  82. package/dist/checkbox/src/CheckboxField.css +162 -15
  83. package/dist/checkbox/src/CheckboxField.js +1 -1
  84. package/dist/checkbox/src/CheckboxGroup.css +233 -105
  85. package/dist/checkbox/src/CheckboxGroup.d.ts +4 -0
  86. package/dist/checkbox/src/CheckboxGroup.js +2 -2
  87. package/dist/checkbox/src/DecorativeCheckbox.css +189 -42
  88. package/dist/checkbox/src/DecorativeCheckbox.js +2 -2
  89. package/dist/checkbox/src/index.css +233 -105
  90. package/dist/checkbox/src/index.js +8 -8
  91. package/dist/{chunk-AJMHHWRN.js → chunk-2BYOZEHS.js} +1 -1
  92. package/dist/{chunk-4ARX267G.js → chunk-45BUVEOG.js} +8 -3
  93. package/dist/{chunk-BPFMTXRF.js → chunk-46Y3BNK6.js} +2 -2
  94. package/dist/{chunk-GMMQYERH.js → chunk-4KKT3O2S.js} +2 -2
  95. package/dist/chunk-4XHTP4GX.js +7 -0
  96. package/dist/{chunk-H2L3SQIO.js → chunk-6J3RVKV4.js} +509 -216
  97. package/dist/{chunk-6FDLX77I.js → chunk-7P6QVHCU.js} +2 -2
  98. package/dist/{chunk-KZWQ57ZJ.js → chunk-AH3LBZUR.js} +2 -2
  99. package/dist/{chunk-PWOFOTJR.js → chunk-ARURHRKE.js} +1 -1
  100. package/dist/{chunk-BFVCZF4H.js → chunk-B44HANDX.js} +2 -2
  101. package/dist/{chunk-E4PIETAY.js → chunk-BJNXUNAB.js} +2 -2
  102. package/dist/{chunk-MBFMR455.js → chunk-CIKHW47C.js} +1 -1
  103. package/dist/{chunk-NLQW4MJR.js → chunk-DCAA2AVQ.js} +1 -1
  104. package/dist/{chunk-J2OCA4O2.js → chunk-DV7LZMDA.js} +1 -1
  105. package/dist/{chunk-AC6JVAVX.js → chunk-FF6KAPPN.js} +5 -4
  106. package/dist/{chunk-YHH5TXPG.js → chunk-FI74MGJH.js} +3 -3
  107. package/dist/{chunk-THMKXCNG.js → chunk-GLFAZQ25.js} +3 -3
  108. package/dist/{chunk-Z2VOM3C3.js → chunk-GU6D6RQL.js} +5 -4
  109. package/dist/{chunk-Z54LX6IU.js → chunk-IBHSGV7Y.js} +3 -3
  110. package/dist/{chunk-JVDDMMRS.js → chunk-IJS2OFE5.js} +2 -2
  111. package/dist/{chunk-3LUQ6A2L.js → chunk-JCD37WMK.js} +2 -2
  112. package/dist/{chunk-CURG4YI3.js → chunk-JMQTEJC4.js} +4 -8
  113. package/dist/{chunk-7H4MZKSZ.js → chunk-JRL2S56W.js} +4 -4
  114. package/dist/{chunk-XEZVEXWO.js → chunk-KKL5HHYL.js} +5 -3
  115. package/dist/{chunk-KQ735GKE.js → chunk-LU7KOIOH.js} +5 -5
  116. package/dist/{chunk-AGRLOZWN.js → chunk-MMROXMQV.js} +4 -4
  117. package/dist/{chunk-DRG2376D.js → chunk-OBLOV2RN.js} +5 -4
  118. package/dist/{chunk-7CIKPH4J.js → chunk-OOY56G7Y.js} +2 -2
  119. package/dist/{chunk-QLLCRVCV.js → chunk-P5YCVNZM.js} +7 -4
  120. package/dist/{chunk-FIJ3CLQB.js → chunk-QX6MTYPY.js} +1 -1
  121. package/dist/{chunk-JNDKNURH.js → chunk-RKX7GGGY.js} +1 -1
  122. package/dist/{chunk-XJAHZJVO.js → chunk-RZ4K42NA.js} +1 -1
  123. package/dist/{chunk-XHMXUELC.js → chunk-TNXKWBYE.js} +8 -7
  124. package/dist/{chunk-MVBXZQAH.js → chunk-TTECXSWO.js} +2 -2
  125. package/dist/{chunk-CTTRBWBT.js → chunk-UBMAVA4B.js} +8 -3
  126. package/dist/{chunk-VMCZQTOI.js → chunk-VM6LLJYR.js} +2 -2
  127. package/dist/{chunk-IP4N5EBH.js → chunk-VRMZDHNL.js} +1 -1
  128. package/dist/{chunk-JURJ6BXP.js → chunk-X7ZM3VW6.js} +1 -1
  129. package/dist/{chunk-KXUA2JOW.js → chunk-XBVS62J3.js} +1 -1
  130. package/dist/{chunk-RR6N2GZX.js → chunk-XDRKVTAI.js} +2 -2
  131. package/dist/{chunk-PEB7PBUB.js → chunk-XFQJ7HYB.js} +1 -1
  132. package/dist/{chunk-UR26A74E.js → chunk-XNOILDPJ.js} +1 -1
  133. package/dist/{chunk-TQZKBOSP.js → chunk-XT3AM5KT.js} +1 -1
  134. package/dist/{chunk-R4LPKOSF.js → chunk-XT4MALWA.js} +2 -2
  135. package/dist/{chunk-2J5HM77N.js → chunk-Y7G6PIDC.js} +1 -1
  136. package/dist/chunk-ZRGWYBTI.js +9 -0
  137. package/dist/index.css +1997 -1824
  138. package/dist/index.d.ts +10 -7
  139. package/dist/index.js +69 -67
  140. package/dist/inputs/src/InputGroup.css +344 -197
  141. package/dist/inputs/src/InputGroup.js +1 -1
  142. package/dist/inputs/src/NumberField.css +336 -336
  143. package/dist/inputs/src/NumberField.d.ts +4 -0
  144. package/dist/inputs/src/NumberField.js +6 -6
  145. package/dist/inputs/src/PasswordField.css +354 -354
  146. package/dist/inputs/src/PasswordField.d.ts +4 -0
  147. package/dist/inputs/src/PasswordField.js +7 -7
  148. package/dist/inputs/src/RemainingCharacterCount.css +30 -30
  149. package/dist/inputs/src/RemainingCharacterCount.js +5 -5
  150. package/dist/inputs/src/SearchField.css +360 -360
  151. package/dist/inputs/src/SearchField.d.ts +4 -0
  152. package/dist/inputs/src/SearchField.js +8 -8
  153. package/dist/inputs/src/TextArea.css +331 -331
  154. package/dist/inputs/src/TextArea.d.ts +4 -0
  155. package/dist/inputs/src/TextArea.js +7 -7
  156. package/dist/inputs/src/TextField.css +358 -358
  157. package/dist/inputs/src/TextField.d.ts +4 -0
  158. package/dist/inputs/src/TextField.js +10 -10
  159. package/dist/inputs/src/index.css +404 -404
  160. package/dist/inputs/src/index.js +17 -17
  161. package/dist/overlays/Popover/src/Popover.css +2115 -1942
  162. package/dist/overlays/Popover/src/Popover.js +69 -67
  163. package/dist/overlays/Popover/src/index.css +2115 -1942
  164. package/dist/overlays/Popover/src/index.js +69 -67
  165. package/dist/radio/src/DecorativeRadio.css +189 -42
  166. package/dist/radio/src/DecorativeRadio.js +2 -2
  167. package/dist/radio/src/Radio.css +181 -34
  168. package/dist/radio/src/Radio.js +2 -2
  169. package/dist/radio/src/RadioField.css +162 -15
  170. package/dist/radio/src/RadioField.js +1 -1
  171. package/dist/radio/src/RadioGroup.css +227 -99
  172. package/dist/radio/src/RadioGroup.d.ts +4 -0
  173. package/dist/radio/src/RadioGroup.js +2 -2
  174. package/dist/radio/src/index.css +233 -105
  175. package/dist/radio/src/index.js +8 -8
  176. package/dist/switch/src/Switch.css +178 -31
  177. package/dist/switch/src/Switch.js +2 -2
  178. package/dist/switch/src/SwitchField.css +162 -15
  179. package/dist/switch/src/SwitchField.js +2 -2
  180. package/dist/switch/src/index.css +184 -37
  181. package/dist/switch/src/index.js +4 -4
  182. package/dist/tag/src/Tag.css +464 -360
  183. package/dist/tag/src/Tag.js +5 -5
  184. package/dist/tag/src/TagGroup.css +166 -38
  185. package/dist/tag/src/TagGroup.d.ts +4 -0
  186. package/dist/tag/src/TagGroup.js +2 -2
  187. package/dist/tag/src/TagList.css +226 -0
  188. package/dist/tag/src/index.css +474 -389
  189. package/dist/tag/src/index.js +9 -9
  190. package/dist/typography/Heading/src/Heading.css +151 -9
  191. package/dist/typography/Heading/src/Heading.js +1 -1
  192. package/dist/typography/Heading/src/index.css +151 -9
  193. package/dist/typography/Heading/src/index.js +1 -1
  194. package/dist/typography/Label/src/Label.css +211 -3
  195. package/dist/typography/Label/src/Label.d.ts +2 -2
  196. package/dist/typography/Label/src/Label.js +1 -1
  197. package/dist/typography/Label/src/index.css +211 -3
  198. package/dist/typography/Label/src/index.js +1 -1
  199. package/dist/typography/OverlineText/src/OverlineText.css +190 -6
  200. package/dist/typography/OverlineText/src/OverlineText.js +1 -1
  201. package/dist/typography/OverlineText/src/index.css +190 -6
  202. package/dist/typography/OverlineText/src/index.js +1 -1
  203. package/dist/typography/Text/src/Text.css +156 -9
  204. package/dist/typography/Text/src/Text.js +1 -1
  205. package/dist/typography/Text/src/index.css +156 -9
  206. package/dist/typography/Text/src/index.js +1 -1
  207. package/dist/utils/src/EnsureTextWrapper.css +226 -0
  208. package/dist/utils/src/EnsureTextWrapper.d.ts +9 -0
  209. package/dist/utils/src/EnsureTextWrapper.js +16 -0
  210. package/dist/utils/src/index.css +226 -0
  211. package/dist/utils/src/index.d.ts +11 -10
  212. package/dist/utils/src/index.js +14 -3
  213. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
- import { SwitchContext } from './chunk-YHBJAXUY.js';
2
1
  import { SwitchFieldContext } from './chunk-H7VJS4MX.js';
2
+ import { SwitchContext } from './chunk-YHBJAXUY.js';
3
3
  import { TextContext } from './chunk-X6SER3TZ.js';
4
4
  import { useRenderProps } from './chunk-NH3IVMXB.js';
5
5
  import { composeClassnameRenderProps } from './chunk-65JPI4FL.js';
@@ -12,7 +12,7 @@ import { useContextProps, composeRenderProps } from 'react-aria-components';
12
12
  import { jsx } from 'react/jsx-runtime';
13
13
 
14
14
  // css-module:./SwitchField.module.css#css-module
15
- var SwitchField_module_default = { "hop-SwitchField": "SwitchField-module__hop-SwitchField___0n7-7", "hop-SwitchField--sm": "SwitchField-module__hop-SwitchField--sm___BwXun", "hop-SwitchField--md": "SwitchField-module__hop-SwitchField--md___rQvZR", "hop-SwitchField__description": "SwitchField-module__hop-SwitchField__description___9m0Ll", "hop-SwitchField__switch": "SwitchField-module__hop-SwitchField__switch___g5U-l" };
15
+ var SwitchField_module_default = { "hop-SwitchField": "SwitchField-module__hop-SwitchField___3acY7", "hop-SwitchField--sm": "SwitchField-module__hop-SwitchField--sm___IaTPM", "hop-SwitchField--md": "SwitchField-module__hop-SwitchField--md___19UN-", "hop-SwitchField__description": "SwitchField-module__hop-SwitchField__description___BOkq0", "hop-SwitchField__switch": "SwitchField-module__hop-SwitchField__switch___2IDNK" };
16
16
  var GlobalSwitchFieldCssSelector = "hop-SwitchField";
17
17
  var SwitchToDescriptionSizeAdapter = {
18
18
  sm: "xs",
@@ -1,7 +1,7 @@
1
1
  import { RadioContext } from './chunk-FU5CCPLP.js';
2
2
  import { isTextOnlyChildren } from './chunk-ZWU6DRRZ.js';
3
3
  import { IconListContext } from './chunk-DHVVYSLB.js';
4
- import { _Text } from './chunk-2J5HM77N.js';
4
+ import { _Text } from './chunk-Y7G6PIDC.js';
5
5
  import { TextContext } from './chunk-X6SER3TZ.js';
6
6
  import { ClearContainerSlots } from './chunk-HXI3MEEK.js';
7
7
  import { composeClassnameRenderProps } from './chunk-65JPI4FL.js';
@@ -14,7 +14,7 @@ import { useContextProps, composeRenderProps, Radio as Radio$1 } from 'react-ari
14
14
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
15
15
 
16
16
  // css-module:./Radio.module.css#css-module
17
- var Radio_module_default = { "hop-Radio": "Radio-module__hop-Radio___W1Vdc", "hop-Radio--sm": "Radio-module__hop-Radio--sm___NYymj", "hop-Radio--md": "Radio-module__hop-Radio--md___CQv8r", "hop-Radio__icon": "Radio-module__hop-Radio__icon___W3Yrf", "hop-Radio__icon-list": "Radio-module__hop-Radio__icon-list___Ky-BO", "hop-Radio__box": "Radio-module__hop-Radio__box___T-9Zw", "hop-Radio__bullet": "Radio-module__hop-Radio__bullet___aikpb", "hop-Radio__text": "Radio-module__hop-Radio__text___gfkdz" };
17
+ var Radio_module_default = { "hop-Radio": "Radio-module__hop-Radio___9Bh4R", "hop-Radio--sm": "Radio-module__hop-Radio--sm___zLF4V", "hop-Radio--md": "Radio-module__hop-Radio--md___gKxx2", "hop-Radio__icon": "Radio-module__hop-Radio__icon___FtbVn", "hop-Radio__icon-list": "Radio-module__hop-Radio__icon-list___wF0hY", "hop-Radio__box": "Radio-module__hop-Radio__box___Y0VE1", "hop-Radio__bullet": "Radio-module__hop-Radio__bullet___es-94", "hop-Radio__text": "Radio-module__hop-Radio__text___-q0Z2" };
18
18
  var GlobalRadioCssSelector = "hop-Radio";
19
19
  function Radio(props, ref) {
20
20
  var _a;
@@ -13,7 +13,7 @@ import { useContextProps, composeRenderProps } from 'react-aria-components';
13
13
  import { jsx } from 'react/jsx-runtime';
14
14
 
15
15
  // css-module:./RadioField.module.css#css-module
16
- var RadioField_module_default = { "hop-RadioField": "RadioField-module__hop-RadioField___1-HVZ", "hop-RadioField--sm": "RadioField-module__hop-RadioField--sm___QmRzg", "hop-RadioField--md": "RadioField-module__hop-RadioField--md___In1AA", "hop-RadioField__description": "RadioField-module__hop-RadioField__description___o5cEe", "hop-RadioField__radio": "RadioField-module__hop-RadioField__radio___JOWVQ" };
16
+ var RadioField_module_default = { "hop-RadioField": "RadioField-module__hop-RadioField___rwaZY", "hop-RadioField--sm": "RadioField-module__hop-RadioField--sm___1Q2QK", "hop-RadioField--md": "RadioField-module__hop-RadioField--md___YX5XY", "hop-RadioField__description": "RadioField-module__hop-RadioField__description___6uwj3", "hop-RadioField__radio": "RadioField-module__hop-RadioField__radio___lxu0c" };
17
17
  var GlobalRadioFieldCssSelector = "hop-RadioField";
18
18
  var RadioToDescriptionSizeAdapter = {
19
19
  sm: "xs",
@@ -1,5 +1,5 @@
1
1
  import { useLocalizedString } from './chunk-TFVDF4YH.js';
2
- import { _Text } from './chunk-2J5HM77N.js';
2
+ import { _Text } from './chunk-Y7G6PIDC.js';
3
3
  import { useRenderProps } from './chunk-NH3IVMXB.js';
4
4
  import { composeClassnameRenderProps } from './chunk-65JPI4FL.js';
5
5
  import { cssModule } from './chunk-KVDXQMWI.js';
@@ -10,7 +10,7 @@ import { composeRenderProps } from 'react-aria-components';
10
10
  import { jsx } from 'react/jsx-runtime';
11
11
 
12
12
  // css-module:./RemainingCharacterCount.module.css#css-module
13
- var RemainingCharacterCount_module_default = { "hop-RemainingCharacterCount": "RemainingCharacterCount-module__hop-RemainingCharacterCount___spzWY" };
13
+ var RemainingCharacterCount_module_default = { "hop-RemainingCharacterCount": "RemainingCharacterCount-module__hop-RemainingCharacterCount___wI8Lz" };
14
14
  function RemainingCharacterCount(props, ref) {
15
15
  const { stylingProps, ...ownProps } = useStyledSystem(props);
16
16
  const { className, style, count, isDisabled, isInvalid, ...textProps } = ownProps;
@@ -1,7 +1,7 @@
1
1
  import { RadioContext } from './chunk-FU5CCPLP.js';
2
2
  import { isTextOnlyChildren } from './chunk-ZWU6DRRZ.js';
3
3
  import { IconListContext } from './chunk-DHVVYSLB.js';
4
- import { _Text } from './chunk-2J5HM77N.js';
4
+ import { _Text } from './chunk-Y7G6PIDC.js';
5
5
  import { TextContext } from './chunk-X6SER3TZ.js';
6
6
  import { ClearContainerSlots } from './chunk-HXI3MEEK.js';
7
7
  import { useRenderProps } from './chunk-NH3IVMXB.js';
@@ -16,7 +16,7 @@ import { useContextProps, composeRenderProps } from 'react-aria-components';
16
16
  import { jsx, jsxs } from 'react/jsx-runtime';
17
17
 
18
18
  // css-module:./DecorativeRadio.module.css#css-module
19
- var DecorativeRadio_module_default = { "hop-DecorativeRadio": "DecorativeRadio-module__hop-DecorativeRadio___rEyYa Radio-module__hop-Radio___W1Vdc", "hop-DecorativeRadio--sm": "DecorativeRadio-module__hop-DecorativeRadio--sm___c4DTm Radio-module__hop-Radio--sm___NYymj", "hop-DecorativeRadio--md": "DecorativeRadio-module__hop-DecorativeRadio--md___4FKuP Radio-module__hop-Radio--md___CQv8r", "hop-DecorativeRadio__icon": "DecorativeRadio-module__hop-DecorativeRadio__icon___A0Dsb Radio-module__hop-Radio__icon___W3Yrf", "hop-DecorativeRadio__icon-list": "DecorativeRadio-module__hop-DecorativeRadio__icon-list___fJ9KP Radio-module__hop-Radio__icon___W3Yrf", "hop-DecorativeRadio__box": "DecorativeRadio-module__hop-DecorativeRadio__box___e68gp Radio-module__hop-Radio__box___T-9Zw", "hop-DecorativeRadio__bullet": "DecorativeRadio-module__hop-DecorativeRadio__bullet___WU567 Radio-module__hop-Radio__bullet___aikpb", "hop-DecorativeRadio__text": "DecorativeRadio-module__hop-DecorativeRadio__text___5m-W5 Radio-module__hop-Radio__text___gfkdz" };
19
+ var DecorativeRadio_module_default = { "hop-DecorativeRadio": "DecorativeRadio-module__hop-DecorativeRadio___3v5Ro Radio-module__hop-Radio___9Bh4R", "hop-DecorativeRadio--sm": "DecorativeRadio-module__hop-DecorativeRadio--sm___2HhXt Radio-module__hop-Radio--sm___zLF4V", "hop-DecorativeRadio--md": "DecorativeRadio-module__hop-DecorativeRadio--md___X9jvu Radio-module__hop-Radio--md___gKxx2", "hop-DecorativeRadio__icon": "DecorativeRadio-module__hop-DecorativeRadio__icon___PvtCv Radio-module__hop-Radio__icon___FtbVn", "hop-DecorativeRadio__icon-list": "DecorativeRadio-module__hop-DecorativeRadio__icon-list___U4Az5 Radio-module__hop-Radio__icon___FtbVn", "hop-DecorativeRadio__box": "DecorativeRadio-module__hop-DecorativeRadio__box___FYK2b Radio-module__hop-Radio__box___Y0VE1", "hop-DecorativeRadio__bullet": "DecorativeRadio-module__hop-DecorativeRadio__bullet___jI8X2 Radio-module__hop-Radio__bullet___es-94", "hop-DecorativeRadio__text": "DecorativeRadio-module__hop-DecorativeRadio__text___aiWaU Radio-module__hop-Radio__text___-q0Z2" };
20
20
  var GlobalDecorativeRadioCssSelector = "hop-DecorativeRadio";
21
21
  function DecorativeRadio(props, ref) {
22
22
  var _a;
@@ -10,7 +10,7 @@ import { useContextProps, useSlottedContext, InputContext, TextAreaContext, Fiel
10
10
  import { jsx } from 'react/jsx-runtime';
11
11
 
12
12
  // css-module:./InputGroup.module.css#css-module
13
- var InputGroup_module_default = { "hop-InputGroup": "InputGroup-module__hop-InputGroup___cxU-Q", "hop-InputGroup--fluid": "InputGroup-module__hop-InputGroup--fluid___JDLHZ", "hop-InputGroup--sm": "InputGroup-module__hop-InputGroup--sm___xub9Y", "hop-InputGroup__input": "InputGroup-module__hop-InputGroup__input___WN-8O", "hop-InputGroup__textarea": "InputGroup-module__hop-InputGroup__textarea___Kn-qF", "hop-InputGroup__embedded-button": "InputGroup-module__hop-InputGroup__embedded-button___THXUj" };
13
+ var InputGroup_module_default = { "hop-InputGroup": "InputGroup-module__hop-InputGroup___E2-k9", "hop-InputGroup--fluid": "InputGroup-module__hop-InputGroup--fluid___Q-hCw", "hop-InputGroup--sm": "InputGroup-module__hop-InputGroup--sm___i6g3r", "hop-InputGroup__input": "InputGroup-module__hop-InputGroup__input___feDtc", "hop-InputGroup__textarea": "InputGroup-module__hop-InputGroup__textarea___UBhut", "hop-InputGroup__embedded-button": "InputGroup-module__hop-InputGroup__embedded-button___TyVai" };
14
14
  var GlobalInputGroupCssSelector = "hop-InputGroup";
15
15
  function InputGroup(props, ref) {
16
16
  var _a, _b;
@@ -12,7 +12,7 @@ import { useContextProps, composeRenderProps } from 'react-aria-components';
12
12
  import { jsx } from 'react/jsx-runtime';
13
13
 
14
14
  // css-module:./CheckboxField.module.css#css-module
15
- var CheckboxField_module_default = { "hop-CheckboxField": "CheckboxField-module__hop-CheckboxField___tjnl9", "hop-CheckboxField--sm": "CheckboxField-module__hop-CheckboxField--sm___mtiU4", "hop-CheckboxField--md": "CheckboxField-module__hop-CheckboxField--md___uCBiT", "hop-CheckboxField__description": "CheckboxField-module__hop-CheckboxField__description___uxJ4N", "hop-CheckboxField__checkbox": "CheckboxField-module__hop-CheckboxField__checkbox___ytOgd" };
15
+ var CheckboxField_module_default = { "hop-CheckboxField": "CheckboxField-module__hop-CheckboxField___A5x07", "hop-CheckboxField--sm": "CheckboxField-module__hop-CheckboxField--sm___FRCIP", "hop-CheckboxField--md": "CheckboxField-module__hop-CheckboxField--md___GCH8E", "hop-CheckboxField__description": "CheckboxField-module__hop-CheckboxField__description___8jt9j", "hop-CheckboxField__checkbox": "CheckboxField-module__hop-CheckboxField__checkbox___oc2NL" };
16
16
  var GlobalCheckboxFieldCssSelector = "hop-CheckboxField";
17
17
  var CheckboxToDescriptionSizeAdapter = {
18
18
  sm: "xs",
@@ -10,7 +10,7 @@ import { useContextProps } from 'react-aria-components';
10
10
  import { jsx } from 'react/jsx-runtime';
11
11
 
12
12
  // css-module:./FloatingBadge.module.css#css-module
13
- var FloatingBadge_module_default = { "hop-FloatingBadge": "FloatingBadge-module__hop-FloatingBadge___DWDc3", "hop-FloatingBadge__badge": "FloatingBadge-module__hop-FloatingBadge__badge___Zuv6z" };
13
+ var FloatingBadge_module_default = { "hop-FloatingBadge": "FloatingBadge-module__hop-FloatingBadge___a4Q56", "hop-FloatingBadge__badge": "FloatingBadge-module__hop-FloatingBadge__badge___ETFGb" };
14
14
  var GlobalFloatingBadgeCssSelector = "hop-FloatingBadge";
15
15
  function FloatingBadge(props, ref) {
16
16
  [props, ref] = useContextProps(props, ref, FloatingBadgeContext);
@@ -1,6 +1,6 @@
1
1
  import { SearchFieldContext } from './chunk-3NKF5TPD.js';
2
- import { _InputGroup } from './chunk-MBFMR455.js';
3
- import { _ClearButton } from './chunk-KXUA2JOW.js';
2
+ import { _InputGroup } from './chunk-CIKHW47C.js';
3
+ import { _ClearButton } from './chunk-XBVS62J3.js';
4
4
  import { LabelContext } from './chunk-QCA3ZR56.js';
5
5
  import { HelperMessageContext } from './chunk-HZKFQ33E.js';
6
6
  import { ErrorMessageContext } from './chunk-FAE27DLF.js';
@@ -17,7 +17,7 @@ import { useContextProps, composeRenderProps, Input, SearchField as SearchField$
17
17
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
18
18
 
19
19
  // css-module:./SearchField.module.css#css-module
20
- var SearchField_module_default = { "hop-SearchField": "SearchField-module__hop-SearchField___q-EeQ", "hop-SearchField--fluid": "SearchField-module__hop-SearchField--fluid___CPvL1", "hop-SearchField__Label": "SearchField-module__hop-SearchField__Label___h8Tgk", "hop-SearchField__prefix": "SearchField-module__hop-SearchField__prefix___BJJRt", "hop-SearchField__InputGroup": "SearchField-module__hop-SearchField__InputGroup___K4N-1", "hop-SearchField--clearable": "SearchField-module__hop-SearchField--clearable___ztMMx", "hop-SearchField__ErrorMessage": "SearchField-module__hop-SearchField__ErrorMessage___nFg62", "hop-SearchField__HelperMessage": "SearchField-module__hop-SearchField__HelperMessage___pkXdH", "hop-SearchField__ClearButton": "SearchField-module__hop-SearchField__ClearButton___rn5bg" };
20
+ var SearchField_module_default = { "hop-SearchField": "SearchField-module__hop-SearchField___W6W5b", "hop-SearchField--fluid": "SearchField-module__hop-SearchField--fluid___8r8W4", "hop-SearchField__Label": "SearchField-module__hop-SearchField__Label___plAkN", "hop-SearchField__prefix": "SearchField-module__hop-SearchField__prefix___fiCjG", "hop-SearchField__InputGroup": "SearchField-module__hop-SearchField__InputGroup___Pczio", "hop-SearchField--clearable": "SearchField-module__hop-SearchField--clearable___ClGaI", "hop-SearchField__ErrorMessage": "SearchField-module__hop-SearchField__ErrorMessage___ox01g", "hop-SearchField__HelperMessage": "SearchField-module__hop-SearchField__HelperMessage___8xA39", "hop-SearchField__ClearButton": "SearchField-module__hop-SearchField__ClearButton___54BN-" };
21
21
  var GlobalSearchFieldCssSelector = "hop-SearchField";
22
22
  function SearchField(props, ref) {
23
23
  var _a;
@@ -39,6 +39,7 @@ function SearchField(props, ref) {
39
39
  isDisabled,
40
40
  isInvalid,
41
41
  isRequired,
42
+ necessityIndicator,
42
43
  ...otherProps
43
44
  } = ownProps;
44
45
  const inputRef = useObjectRef(mergeRefs(userProvidedInputRef, props.inputRef !== void 0 ? props.inputRef : null));
@@ -90,7 +91,7 @@ function SearchField(props, ref) {
90
91
  SlotProvider,
91
92
  {
92
93
  values: [
93
- [LabelContext, { className: SearchField_module_default["hop-SearchField__Label"], isRequired }],
94
+ [LabelContext, { className: SearchField_module_default["hop-SearchField__Label"], isRequired, necessityIndicator }],
94
95
  [HelperMessageContext, { className: SearchField_module_default["hop-SearchField__HelperMessage"] }],
95
96
  [ErrorMessageContext, { className: SearchField_module_default["hop-SearchField__ErrorMessage"] }]
96
97
  ],
@@ -1,7 +1,7 @@
1
- import { _Text } from './chunk-2J5HM77N.js';
1
+ import { _Text } from './chunk-Y7G6PIDC.js';
2
2
  import { useImageFallback } from './chunk-NS3XVOQ7.js';
3
3
  import { AvatarContext } from './chunk-AES7QBQE.js';
4
- import { _RichIconAvatarImage } from './chunk-XJAHZJVO.js';
4
+ import { _RichIconAvatarImage } from './chunk-RZ4K42NA.js';
5
5
  import { useRenderProps } from './chunk-NH3IVMXB.js';
6
6
  import { composeClassnameRenderProps } from './chunk-65JPI4FL.js';
7
7
  import { cssModule } from './chunk-KVDXQMWI.js';
@@ -13,7 +13,7 @@ import { useContextProps, composeRenderProps } from 'react-aria-components';
13
13
  import { jsx } from 'react/jsx-runtime';
14
14
 
15
15
  // css-module:./Avatar.module.css#css-module
16
- var Avatar_module_default = { "hop-Avatar": "Avatar-module__hop-Avatar___9Hi70", "hop-Avatar--xs": "Avatar-module__hop-Avatar--xs___ezEoM", "hop-Avatar--sm": "Avatar-module__hop-Avatar--sm___980Uh", "hop-Avatar--md": "Avatar-module__hop-Avatar--md___wMa-k", "hop-Avatar--lg": "Avatar-module__hop-Avatar--lg___yGqTp", "hop-Avatar--xl": "Avatar-module__hop-Avatar--xl___AXLnM", "hop-Avatar--2xl": "Avatar-module__hop-Avatar--2xl___aERCF", "hop-Avatar--decorative-option1": "Avatar-module__hop-Avatar--decorative-option1___f7v8W", "hop-Avatar--decorative-option2": "Avatar-module__hop-Avatar--decorative-option2___1jb39", "hop-Avatar--decorative-option3": "Avatar-module__hop-Avatar--decorative-option3___cJs0U", "hop-Avatar--decorative-option4": "Avatar-module__hop-Avatar--decorative-option4___ll-5h", "hop-Avatar--decorative-option5": "Avatar-module__hop-Avatar--decorative-option5___lyS7v", "hop-Avatar--decorative-option6": "Avatar-module__hop-Avatar--decorative-option6___nXt6p", "hop-Avatar--decorative-option7": "Avatar-module__hop-Avatar--decorative-option7___gDoKx", "hop-Avatar--decorative-option8": "Avatar-module__hop-Avatar--decorative-option8___RmnZd", "hop-Avatar--decorative-option9": "Avatar-module__hop-Avatar--decorative-option9___Tpf7q", "hop-Avatar__image": "Avatar-module__hop-Avatar__image___oh7hq" };
16
+ var Avatar_module_default = { "hop-Avatar": "Avatar-module__hop-Avatar___6rJWN", "hop-Avatar--xs": "Avatar-module__hop-Avatar--xs___Nw00i", "hop-Avatar--sm": "Avatar-module__hop-Avatar--sm___Xle0f", "hop-Avatar--md": "Avatar-module__hop-Avatar--md___-q7Y7", "hop-Avatar--lg": "Avatar-module__hop-Avatar--lg___yp6lW", "hop-Avatar--xl": "Avatar-module__hop-Avatar--xl___LcfDc", "hop-Avatar--2xl": "Avatar-module__hop-Avatar--2xl___6b02-", "hop-Avatar--decorative-option1": "Avatar-module__hop-Avatar--decorative-option1___7Wzcu", "hop-Avatar--decorative-option2": "Avatar-module__hop-Avatar--decorative-option2___9eaAb", "hop-Avatar--decorative-option3": "Avatar-module__hop-Avatar--decorative-option3___Bb7Eg", "hop-Avatar--decorative-option4": "Avatar-module__hop-Avatar--decorative-option4___2W2AQ", "hop-Avatar--decorative-option5": "Avatar-module__hop-Avatar--decorative-option5___LGCFG", "hop-Avatar--decorative-option6": "Avatar-module__hop-Avatar--decorative-option6___WYaD4", "hop-Avatar--decorative-option7": "Avatar-module__hop-Avatar--decorative-option7___bjjEn", "hop-Avatar--decorative-option8": "Avatar-module__hop-Avatar--decorative-option8___XzQX-", "hop-Avatar--decorative-option9": "Avatar-module__hop-Avatar--decorative-option9___lK19f", "hop-Avatar__image": "Avatar-module__hop-Avatar__image___uR0Tx" };
17
17
  var GlobalAvatarCssSelector = "hop-Avatar";
18
18
  var AvatarToTextSizeAdapter = {
19
19
  xs: "xs",
@@ -1,7 +1,7 @@
1
- import { LinkContext } from './chunk-4VVNSXIB.js';
2
1
  import { isTextOnlyChildren } from './chunk-ZWU6DRRZ.js';
3
2
  import { IconListContext } from './chunk-DHVVYSLB.js';
4
- import { _Text } from './chunk-2J5HM77N.js';
3
+ import { LinkContext } from './chunk-4VVNSXIB.js';
4
+ import { _Text } from './chunk-Y7G6PIDC.js';
5
5
  import { TextContext } from './chunk-X6SER3TZ.js';
6
6
  import { composeClassnameRenderProps } from './chunk-65JPI4FL.js';
7
7
  import { SlotProvider } from './chunk-M36KANKC.js';
@@ -13,7 +13,7 @@ import { useContextProps, composeRenderProps, DEFAULT_SLOT, Link as Link$1 } fro
13
13
  import { jsx } from 'react/jsx-runtime';
14
14
 
15
15
  // css-module:./Link.module.css#css-module
16
- var Link_module_default = { "hop-Link": "Link-module__hop-Link___wHXJ5", "hop-Link--quiet": "Link-module__hop-Link--quiet___F7596", "hop-Link--primary": "Link-module__hop-Link--primary___aqAlg", "hop-Link--secondary": "Link-module__hop-Link--secondary___-wVgn", "hop-Link__icon": "Link-module__hop-Link__icon___9twUA", "hop-Link__icon-list": "Link-module__hop-Link__icon-list___su6NW", "hop-Link__text": "Link-module__hop-Link__text___hW4PZ", "hop-Link__start-icon": "Link-module__hop-Link__start-icon___Sickn", "hop-Link__start-icon-list": "Link-module__hop-Link__start-icon-list___mQVck" };
16
+ var Link_module_default = { "hop-Link": "Link-module__hop-Link___f0TqC", "hop-Link--quiet": "Link-module__hop-Link--quiet___-jNN7", "hop-Link--primary": "Link-module__hop-Link--primary___AcfJ8", "hop-Link--secondary": "Link-module__hop-Link--secondary___-2oF8", "hop-Link__icon": "Link-module__hop-Link__icon___6Ufeq", "hop-Link__icon-list": "Link-module__hop-Link__icon-list___-5W5s", "hop-Link__text": "Link-module__hop-Link__text___kfXDL", "hop-Link__start-icon": "Link-module__hop-Link__start-icon___NUj49", "hop-Link__start-icon-list": "Link-module__hop-Link__start-icon-list___VJOKc" };
17
17
  var GlobalLinkCssSelector = "hop-Link";
18
18
  var LinkToIconSizeAdapter = {
19
19
  inherit: void 0,
@@ -1,11 +1,11 @@
1
1
  import { useScale } from './chunk-MTDFS4CZ.js';
2
2
  import { NumberFieldContext } from './chunk-ZQ3AWYRR.js';
3
- import { _InputGroup } from './chunk-MBFMR455.js';
3
+ import { _InputGroup } from './chunk-CIKHW47C.js';
4
4
  import { LabelContext } from './chunk-QCA3ZR56.js';
5
5
  import { isTextOnlyChildren } from './chunk-ZWU6DRRZ.js';
6
6
  import { HelperMessageContext } from './chunk-HZKFQ33E.js';
7
7
  import { ErrorMessageContext } from './chunk-FAE27DLF.js';
8
- import { _Text } from './chunk-2J5HM77N.js';
8
+ import { _Text } from './chunk-Y7G6PIDC.js';
9
9
  import { TextContext } from './chunk-X6SER3TZ.js';
10
10
  import { ClearContainerSlots } from './chunk-HXI3MEEK.js';
11
11
  import { composeClassnameRenderProps } from './chunk-65JPI4FL.js';
@@ -21,7 +21,7 @@ import { useContextProps, composeRenderProps, Input, NumberField as NumberField$
21
21
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
22
22
 
23
23
  // css-module:./NumberField.module.css#css-module
24
- var NumberField_module_default = { "hop-NumberField": "NumberField-module__hop-NumberField___apdI6", "hop-NumberField--fluid": "NumberField-module__hop-NumberField--fluid___zqiUX", "hop-NumberField--mobile": "NumberField-module__hop-NumberField--mobile___NKAaR", "hop-NumberField__Label": "NumberField-module__hop-NumberField__Label___Z2mj5", "hop-NumberField__prefix": "NumberField-module__hop-NumberField__prefix___JnwJ1", "hop-NumberField__InputGroup": "NumberField-module__hop-NumberField__InputGroup___y0Rb6", "hop-NumberField__ErrorMessage": "NumberField-module__hop-NumberField__ErrorMessage___9p0yi", "hop-NumberField__HelperMessage": "NumberField-module__hop-NumberField__HelperMessage___zIKmw", "hop-NumberField__stepper-button": "NumberField-module__hop-NumberField__stepper-button___hxdTL", "hop-NumberField__stepper-button--increment": "NumberField-module__hop-NumberField__stepper-button--increment___nUuTR", "hop-NumberField__stepper-button--decrement": "NumberField-module__hop-NumberField__stepper-button--decrement___dKoOR", "hop-NumberField__stepper-button--mobile": "NumberField-module__hop-NumberField__stepper-button--mobile___Td1XM", "hop-NumberField__stepper-button__icon": "NumberField-module__hop-NumberField__stepper-button__icon___ACv7y", "hop-NumberField__input": "NumberField-module__hop-NumberField__input___mcmo2" };
24
+ var NumberField_module_default = { "hop-NumberField": "NumberField-module__hop-NumberField___SQ-T7", "hop-NumberField--fluid": "NumberField-module__hop-NumberField--fluid___6SyKQ", "hop-NumberField--mobile": "NumberField-module__hop-NumberField--mobile___rHeEi", "hop-NumberField__Label": "NumberField-module__hop-NumberField__Label___OPAwN", "hop-NumberField__prefix": "NumberField-module__hop-NumberField__prefix___GQ-bS", "hop-NumberField__InputGroup": "NumberField-module__hop-NumberField__InputGroup___-Xcp-", "hop-NumberField__ErrorMessage": "NumberField-module__hop-NumberField__ErrorMessage___lC-je", "hop-NumberField__HelperMessage": "NumberField-module__hop-NumberField__HelperMessage___Gr9hE", "hop-NumberField__stepper-button": "NumberField-module__hop-NumberField__stepper-button___GCK47", "hop-NumberField__stepper-button--increment": "NumberField-module__hop-NumberField__stepper-button--increment___NPF-g", "hop-NumberField__stepper-button--decrement": "NumberField-module__hop-NumberField__stepper-button--decrement___aRPH3", "hop-NumberField__stepper-button--mobile": "NumberField-module__hop-NumberField__stepper-button--mobile___MBaPI", "hop-NumberField__stepper-button__icon": "NumberField-module__hop-NumberField__stepper-button__icon___PGs1W", "hop-NumberField__input": "NumberField-module__hop-NumberField__input___-DsQz" };
25
25
  var GlobalNumberFieldCssSelector = "hop-NumberField";
26
26
  var StepperButton = ({ direction }) => {
27
27
  const scale = useScale();
@@ -72,6 +72,7 @@ function NumberField(props, ref) {
72
72
  isDisabled,
73
73
  isInvalid,
74
74
  isRequired,
75
+ necessityIndicator,
75
76
  ...otherProps
76
77
  } = ownProps;
77
78
  const inputRef = useObjectRef(mergeRefs(userProvidedInputRef, props.inputRef !== void 0 ? props.inputRef : null));
@@ -133,7 +134,7 @@ function NumberField(props, ref) {
133
134
  SlotProvider,
134
135
  {
135
136
  values: [
136
- [LabelContext, { className: NumberField_module_default["hop-NumberField__Label"], isRequired }],
137
+ [LabelContext, { className: NumberField_module_default["hop-NumberField__Label"], isRequired, necessityIndicator }],
137
138
  [HelperMessageContext, { className: NumberField_module_default["hop-NumberField__HelperMessage"] }],
138
139
  [ErrorMessageContext, { className: NumberField_module_default["hop-NumberField__ErrorMessage"] }]
139
140
  ],
@@ -1,10 +1,10 @@
1
1
  import { useSlot } from './chunk-H5YTU3U7.js';
2
- import { _Spinner } from './chunk-RR6N2GZX.js';
3
2
  import { ButtonContext } from './chunk-WMTWFKKP.js';
3
+ import { _Spinner } from './chunk-XDRKVTAI.js';
4
4
  import { useLocalizedString } from './chunk-TFVDF4YH.js';
5
5
  import { isTextOnlyChildren } from './chunk-ZWU6DRRZ.js';
6
6
  import { IconListContext } from './chunk-DHVVYSLB.js';
7
- import { _Text } from './chunk-2J5HM77N.js';
7
+ import { _Text } from './chunk-Y7G6PIDC.js';
8
8
  import { TextContext } from './chunk-X6SER3TZ.js';
9
9
  import { useRenderProps } from './chunk-NH3IVMXB.js';
10
10
  import { composeClassnameRenderProps } from './chunk-65JPI4FL.js';
@@ -19,7 +19,7 @@ import { useContextProps, ButtonContext as ButtonContext$1, composeRenderProps,
19
19
  import { jsx, jsxs } from 'react/jsx-runtime';
20
20
 
21
21
  // css-module:./Button.module.css#css-module
22
- var Button_module_default = { "hop-Button": "Button-module__hop-Button___5w5a2", "hop-Button--icon-only": "Button-module__hop-Button--icon-only___V-noN", "hop-Button--fluid": "Button-module__hop-Button--fluid___QaAvn", "hop-Button--sm": "Button-module__hop-Button--sm___nMy5q", "hop-Button--primary": "Button-module__hop-Button--primary___EvsVi", "hop-Button--md": "Button-module__hop-Button--md___cThV4", "hop-Button--secondary": "Button-module__hop-Button--secondary___HYyfJ", "hop-Button--upsell": "Button-module__hop-Button--upsell___laWqg", "hop-Button--danger": "Button-module__hop-Button--danger___4-NJy", "hop-Button--ghost-danger": "Button-module__hop-Button--ghost-danger___5xkKn", "hop-Button--ghost-secondary": "Button-module__hop-Button--ghost-secondary___74X2R", "hop-Button--ghost-primary": "Button-module__hop-Button--ghost-primary___sh82s", "hop-Button__Spinner": "Button-module__hop-Button__Spinner___23sIY", "hop-Button__icon": "Button-module__hop-Button__icon___OCH09", "hop-Button__icon-list": "Button-module__hop-Button__icon-list___90QTb", "hop-Button__text": "Button-module__hop-Button__text___hmgmJ", "hop-Button__end-icon": "Button-module__hop-Button__end-icon___WUX-K", "hop-Button__end-icon-list": "Button-module__hop-Button__end-icon-list___TYtCm" };
22
+ var Button_module_default = { "hop-Button": "Button-module__hop-Button___BnZcq", "hop-Button--icon-only": "Button-module__hop-Button--icon-only___IFDUG", "hop-Button--fluid": "Button-module__hop-Button--fluid___SKVyY", "hop-Button--sm": "Button-module__hop-Button--sm___UtI6P", "hop-Button--primary": "Button-module__hop-Button--primary___YvIex", "hop-Button--md": "Button-module__hop-Button--md___-bMkM", "hop-Button--secondary": "Button-module__hop-Button--secondary___-im3S", "hop-Button--upsell": "Button-module__hop-Button--upsell___ytjAz", "hop-Button--danger": "Button-module__hop-Button--danger___vcD8w", "hop-Button--ghost-danger": "Button-module__hop-Button--ghost-danger___4RCQS", "hop-Button--ghost-secondary": "Button-module__hop-Button--ghost-secondary___GwotL", "hop-Button--ghost-primary": "Button-module__hop-Button--ghost-primary___5gGhU", "hop-Button__Spinner": "Button-module__hop-Button__Spinner___OZ3q6", "hop-Button__icon": "Button-module__hop-Button__icon___yQZMY", "hop-Button__icon-list": "Button-module__hop-Button__icon-list___gGuuU", "hop-Button__text": "Button-module__hop-Button__text___dI2SY", "hop-Button__end-icon": "Button-module__hop-Button__end-icon___jThJU", "hop-Button__end-icon-list": "Button-module__hop-Button__end-icon-list___E79O6" };
23
23
  var GlobalButtonCssSelector = "hop-Button";
24
24
  var additionalButtonHTMLAttributes = /* @__PURE__ */ new Set(["form", "formAction", "formEncType", "formMethod", "formNoValidate", "formTarget", "name", "value"]);
25
25
  function useSimulatedRACButton(props, ref) {
@@ -1,4 +1,4 @@
1
- import { _OverlineText } from './chunk-TQZKBOSP.js';
1
+ import { _OverlineText } from './chunk-XT3AM5KT.js';
2
2
  import { BadgeContext } from './chunk-CQDLZ42T.js';
3
3
  import { ClearContainerSlots } from './chunk-HXI3MEEK.js';
4
4
  import { useRenderProps } from './chunk-NH3IVMXB.js';
@@ -11,7 +11,7 @@ import { useContextProps, composeRenderProps } from 'react-aria-components';
11
11
  import { jsx } from 'react/jsx-runtime';
12
12
 
13
13
  // css-module:./Badge.module.css#css-module
14
- var Badge_module_default = { "hop-Badge": "Badge-module__hop-Badge___6H0U2" };
14
+ var Badge_module_default = { "hop-Badge": "Badge-module__hop-Badge___dEW-X" };
15
15
  var GlobalBadgeCssSelector = "hop-Badge";
16
16
  function Badge(props, ref) {
17
17
  [props, ref] = useContextProps(props, ref, BadgeContext);
@@ -1,7 +1,7 @@
1
1
  import { SwitchContext } from './chunk-YHBJAXUY.js';
2
2
  import { isTextOnlyChildren } from './chunk-ZWU6DRRZ.js';
3
3
  import { IconListContext } from './chunk-DHVVYSLB.js';
4
- import { _Text } from './chunk-2J5HM77N.js';
4
+ import { _Text } from './chunk-Y7G6PIDC.js';
5
5
  import { TextContext } from './chunk-X6SER3TZ.js';
6
6
  import { ClearContainerSlots } from './chunk-HXI3MEEK.js';
7
7
  import { composeClassnameRenderProps } from './chunk-65JPI4FL.js';
@@ -14,7 +14,7 @@ import { useContextProps, composeRenderProps, Switch as Switch$1 } from 'react-a
14
14
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
15
15
 
16
16
  // css-module:./Switch.module.css#css-module
17
- var Switch_module_default = { "hop-Switch": "Switch-module__hop-Switch___wIPTD", "hop-Switch--sm": "Switch-module__hop-Switch--sm___IbMER", "hop-Switch--md": "Switch-module__hop-Switch--md___u8wNw", "hop-Switch__indicator": "Switch-module__hop-Switch__indicator___y1-JU", "hop-Switch__text": "Switch-module__hop-Switch__text___tx38o", "hop-Switch__icon-list": "Switch-module__hop-Switch__icon-list___nq-3a", "hop-Switch__icon": "Switch-module__hop-Switch__icon___EATtC" };
17
+ var Switch_module_default = { "hop-Switch": "Switch-module__hop-Switch___Kgcyv", "hop-Switch--sm": "Switch-module__hop-Switch--sm___4U1md", "hop-Switch--md": "Switch-module__hop-Switch--md___TSTHO", "hop-Switch__indicator": "Switch-module__hop-Switch__indicator___JPWQg", "hop-Switch__text": "Switch-module__hop-Switch__text___W3CHD", "hop-Switch__icon-list": "Switch-module__hop-Switch__icon-list___KPKJ1", "hop-Switch__icon": "Switch-module__hop-Switch__icon___g8HsW" };
18
18
  var GlobalSwitchCssSelector = "hop-Switch";
19
19
  function Switch(props, ref) {
20
20
  var _a;
@@ -1,12 +1,11 @@
1
1
  import { isFunction } from './chunk-TIPN4VYD.js';
2
2
  import { useLocalizedString } from './chunk-TFVDF4YH.js';
3
- import { SectionContext } from './chunk-5H5AZJPQ.js';
4
3
  import { ListBoxContext } from './chunk-UIEP5BA5.js';
5
- import { _ListBoxItem } from './chunk-KQ735GKE.js';
4
+ import { _ListBoxItem } from './chunk-LU7KOIOH.js';
6
5
  import { ListBoxItemContext } from './chunk-Y2POLIXK.js';
6
+ import { SectionContext } from './chunk-5H5AZJPQ.js';
7
7
  import { HeaderContext } from './chunk-7JOGKC3W.js';
8
- import { DividerContext } from './chunk-FYIHMKHI.js';
9
- import { _Text } from './chunk-2J5HM77N.js';
8
+ import { _Text } from './chunk-Y7G6PIDC.js';
10
9
  import { composeClassnameRenderProps } from './chunk-65JPI4FL.js';
11
10
  import { SlotProvider } from './chunk-M36KANKC.js';
12
11
  import { cssModule } from './chunk-KVDXQMWI.js';
@@ -18,7 +17,7 @@ import { useContextProps, composeRenderProps, ListBox as ListBox$1, Collection }
18
17
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
19
18
 
20
19
  // css-module:./ListBox.module.css#css-module
21
- var ListBox_module_default = { "hop-ListBox": "ListBox-module__hop-ListBox___eUpnT", "hop-ListBox--fluid": "ListBox-module__hop-ListBox--fluid___Ippzh", "hop-ListBox__section": "ListBox-module__hop-ListBox__section___qvP27", "hop-ListBox__item": "ListBox-module__hop-ListBox__item___zZ38V", "hop-ListBox__section-header": "ListBox-module__hop-ListBox__section-header___6j-wC" };
20
+ var ListBox_module_default = { "hop-ListBox": "ListBox-module__hop-ListBox___LIHuX", "hop-ListBox--fluid": "ListBox-module__hop-ListBox--fluid___a3XQA", "hop-ListBox__section": "ListBox-module__hop-ListBox__section___0UWh0", "hop-ListBox__item": "ListBox-module__hop-ListBox__item___fcJBr", "hop-ListBox__section-header": "ListBox-module__hop-ListBox__section-header___cIBsM" };
22
21
  var GlobalListBoxCssSelector = "hop-ListBox";
23
22
  var GlobalListBoxEmptyItemCssSelector = "hop-ListBox__empty-item";
24
23
  var ListBoxToTextSizeAdapter = {
@@ -102,9 +101,6 @@ function ListBox(props, ref) {
102
101
  [SectionContext, {
103
102
  className: ListBox_module_default["hop-ListBox__section"]
104
103
  }],
105
- [DividerContext, {
106
- className: ListBox_module_default["hop-ListBox__divider"]
107
- }],
108
104
  [ListBoxItemContext, {
109
105
  className: ListBox_module_default["hop-ListBox__item"],
110
106
  size,
@@ -1,11 +1,11 @@
1
1
  import { TagContext } from './chunk-EWMWQ2MC.js';
2
- import { _ClearButton } from './chunk-KXUA2JOW.js';
3
- import { _Spinner } from './chunk-RR6N2GZX.js';
2
+ import { _ClearButton } from './chunk-XBVS62J3.js';
3
+ import { _Spinner } from './chunk-XDRKVTAI.js';
4
4
  import { useLocalizedString } from './chunk-TFVDF4YH.js';
5
5
  import { isTextOnlyChildren } from './chunk-ZWU6DRRZ.js';
6
6
  import { IconListContext } from './chunk-DHVVYSLB.js';
7
7
  import { BadgeContext } from './chunk-CQDLZ42T.js';
8
- import { _Text } from './chunk-2J5HM77N.js';
8
+ import { _Text } from './chunk-Y7G6PIDC.js';
9
9
  import { TextContext } from './chunk-X6SER3TZ.js';
10
10
  import { ClearContainerSlots } from './chunk-HXI3MEEK.js';
11
11
  import { AvatarContext } from './chunk-AES7QBQE.js';
@@ -19,7 +19,7 @@ import { useContextProps, composeRenderProps, Tag as Tag$1 } from 'react-aria-co
19
19
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
20
20
 
21
21
  // css-module:./Tag.module.css#css-module
22
- var Tag_module_default = { "hop-Tag": "Tag-module__hop-Tag___NM6io", "hop-Tag--sm": "Tag-module__hop-Tag--sm___RusnS", "hop-Tag__remove-btn": "Tag-module__hop-Tag__remove-btn___W-ZWY", "hop-Tag__Spinner": "Tag-module__hop-Tag__Spinner___iMDOt", "hop-Tag__avatar": "Tag-module__hop-Tag__avatar___Sb-9t", "hop-Tag--md": "Tag-module__hop-Tag--md___kkBZU", "hop-Tag--lg": "Tag-module__hop-Tag--lg___6uwPK", "hop-Tag--neutral": "Tag-module__hop-Tag--neutral___USBuA", "hop-Tag--subdued": "Tag-module__hop-Tag--subdued___xQkUX", "hop-Tag--progress": "Tag-module__hop-Tag--progress___zPefF", "hop-Tag--positive": "Tag-module__hop-Tag--positive___-0pjQ", "hop-Tag--caution": "Tag-module__hop-Tag--caution___t7-CS", "hop-Tag--negative": "Tag-module__hop-Tag--negative___B5fjH", "hop-Tag--option1": "Tag-module__hop-Tag--option1___AYNLX", "hop-Tag--option2": "Tag-module__hop-Tag--option2___Sajtj", "hop-Tag--option3": "Tag-module__hop-Tag--option3___Eivl4", "hop-Tag--option4": "Tag-module__hop-Tag--option4___24aL5", "hop-Tag--option5": "Tag-module__hop-Tag--option5___MUm8-", "hop-Tag--option6": "Tag-module__hop-Tag--option6___-sBKA", "hop-Tag__icon": "Tag-module__hop-Tag__icon___Kk1ms", "hop-Tag__icon-list": "Tag-module__hop-Tag__icon-list___sGKeO", "hop-Tag__text": "Tag-module__hop-Tag__text___QMrwz", "hop-Tag__badge": "Tag-module__hop-Tag__badge___3Bb7n" };
22
+ var Tag_module_default = { "hop-Tag": "Tag-module__hop-Tag___gYajJ", "hop-Tag--sm": "Tag-module__hop-Tag--sm___xgy7v", "hop-Tag__remove-btn": "Tag-module__hop-Tag__remove-btn___a7sSh", "hop-Tag__Spinner": "Tag-module__hop-Tag__Spinner___UbQq5", "hop-Tag__avatar": "Tag-module__hop-Tag__avatar___Eq97E", "hop-Tag--md": "Tag-module__hop-Tag--md___3bIjI", "hop-Tag--lg": "Tag-module__hop-Tag--lg___gyxe-", "hop-Tag--neutral": "Tag-module__hop-Tag--neutral___4RXQ-", "hop-Tag--subdued": "Tag-module__hop-Tag--subdued___V-IFB", "hop-Tag--progress": "Tag-module__hop-Tag--progress___KRxyM", "hop-Tag--positive": "Tag-module__hop-Tag--positive___y0R1a", "hop-Tag--caution": "Tag-module__hop-Tag--caution___3AuKR", "hop-Tag--negative": "Tag-module__hop-Tag--negative___qGVub", "hop-Tag--option1": "Tag-module__hop-Tag--option1___iP-MY", "hop-Tag--option2": "Tag-module__hop-Tag--option2___K9mXa", "hop-Tag--option3": "Tag-module__hop-Tag--option3___wPjxx", "hop-Tag--option4": "Tag-module__hop-Tag--option4___HlCdF", "hop-Tag--option5": "Tag-module__hop-Tag--option5___68umF", "hop-Tag--option6": "Tag-module__hop-Tag--option6___6L7iF", "hop-Tag__icon": "Tag-module__hop-Tag__icon___3HZP1", "hop-Tag__icon-list": "Tag-module__hop-Tag__icon-list___gCDvv", "hop-Tag__text": "Tag-module__hop-Tag__text___VHIAH", "hop-Tag__badge": "Tag-module__hop-Tag__badge___B9x2Q" };
23
23
  var GlobalTagCssSelector = "hop-Tag";
24
24
  var TagToTextSizeAdapter = {
25
25
  sm: "xs",
@@ -1,6 +1,6 @@
1
+ import { TagListContext } from './chunk-XLKYXKWE.js';
1
2
  import { TagContext } from './chunk-EWMWQ2MC.js';
2
3
  import { TagGroupContext } from './chunk-LCAS3YQV.js';
3
- import { TagListContext } from './chunk-XLKYXKWE.js';
4
4
  import { LabelContext } from './chunk-QCA3ZR56.js';
5
5
  import { HelperMessageContext } from './chunk-HZKFQ33E.js';
6
6
  import { ErrorMessageContext } from './chunk-FAE27DLF.js';
@@ -13,7 +13,7 @@ import { useContextProps, FieldErrorContext, TagGroup as TagGroup$1 } from 'reac
13
13
  import { jsx } from 'react/jsx-runtime';
14
14
 
15
15
  // css-module:./TagGroup.module.css#css-module
16
- var TagGroup_module_default = { "hop-TagGroup": "TagGroup-module__hop-TagGroup___tcuEw", "hop-TagGroup__label": "TagGroup-module__hop-TagGroup__label___MIfwe", "hop-TagGroup__list": "TagGroup-module__hop-TagGroup__list___BBlDb", "hop-TagGroup__error-message": "TagGroup-module__hop-TagGroup__error-message___JUQXc", "hop-TagGroup__helper-message": "TagGroup-module__hop-TagGroup__helper-message___Oka5s" };
16
+ var TagGroup_module_default = { "hop-TagGroup": "TagGroup-module__hop-TagGroup___gLm6g", "hop-TagGroup__label": "TagGroup-module__hop-TagGroup__label___D9H8a", "hop-TagGroup__list": "TagGroup-module__hop-TagGroup__list___CIMy4", "hop-TagGroup__error-message": "TagGroup-module__hop-TagGroup__error-message___ttjZc", "hop-TagGroup__helper-message": "TagGroup-module__hop-TagGroup__helper-message___xirFF" };
17
17
  var GlobalTagGroupCssSelector = "hop-TagGroup";
18
18
  function TagGroup(props, ref) {
19
19
  var _a;
@@ -23,6 +23,7 @@ function TagGroup(props, ref) {
23
23
  className,
24
24
  children,
25
25
  isInvalid = false,
26
+ necessityIndicator,
26
27
  style: styleProp,
27
28
  size: sizeProp,
28
29
  variant,
@@ -48,7 +49,8 @@ function TagGroup(props, ref) {
48
49
  {
49
50
  values: [
50
51
  [LabelContext, {
51
- className: TagGroup_module_default["hop-TagGroup__label"]
52
+ className: TagGroup_module_default["hop-TagGroup__label"],
53
+ necessityIndicator
52
54
  }],
53
55
  [TagListContext, {
54
56
  className: TagGroup_module_default["hop-TagGroup__list"]
@@ -1,11 +1,11 @@
1
- import { _DecorativeRadio } from './chunk-E4PIETAY.js';
2
- import { _DecorativeCheckbox } from './chunk-R4LPKOSF.js';
1
+ import { _DecorativeRadio } from './chunk-BJNXUNAB.js';
2
+ import { _DecorativeCheckbox } from './chunk-XT4MALWA.js';
3
3
  import { ListBoxItemContext } from './chunk-Y2POLIXK.js';
4
- import { _ListBoxItemSkeleton } from './chunk-IP4N5EBH.js';
4
+ import { _ListBoxItemSkeleton } from './chunk-VRMZDHNL.js';
5
5
  import { isTextOnlyChildren } from './chunk-ZWU6DRRZ.js';
6
6
  import { IconListContext } from './chunk-DHVVYSLB.js';
7
7
  import { BadgeContext } from './chunk-CQDLZ42T.js';
8
- import { _Text } from './chunk-2J5HM77N.js';
8
+ import { _Text } from './chunk-Y7G6PIDC.js';
9
9
  import { TextContext } from './chunk-X6SER3TZ.js';
10
10
  import { AvatarContext } from './chunk-AES7QBQE.js';
11
11
  import { composeClassnameRenderProps } from './chunk-65JPI4FL.js';
@@ -18,7 +18,7 @@ import { useContextProps, composeRenderProps, ListBoxItem as ListBoxItem$1, List
18
18
  import { jsx, jsxs } from 'react/jsx-runtime';
19
19
 
20
20
  // css-module:./ListBoxItem.module.css#css-module
21
- var ListBoxItem_module_default = { "hop-ListBoxItem": "ListBoxItem-module__hop-ListBoxItem___MMTyZ", "hop-ListBoxItem--xs": "ListBoxItem-module__hop-ListBoxItem--xs___rnMPS", "hop-ListBoxItem--sm": "ListBoxItem-module__hop-ListBoxItem--sm___quqA7", "hop-ListBoxItem--md": "ListBoxItem-module__hop-ListBoxItem--md___zpQ-Z", "hop-ListBoxItem--lg": "ListBoxItem-module__hop-ListBoxItem--lg___-c0Bb", "hop-ListBoxItem__inner": "ListBoxItem-module__hop-ListBoxItem__inner___GdqVw", "hop-ListBoxItem__checkmark": "ListBoxItem-module__hop-ListBoxItem__checkmark___jF5Ms", "hop-ListBoxItem__description": "ListBoxItem-module__hop-ListBoxItem__description___oX2hJ", "hop-ListBoxItem__radio": "ListBoxItem-module__hop-ListBoxItem__radio___-E4Qp", "hop-ListBoxItem__checkbox": "ListBoxItem-module__hop-ListBoxItem__checkbox___gDZAy", "hop-ListBoxItem__avatar": "ListBoxItem-module__hop-ListBoxItem__avatar___ENL9t", "hop-ListBoxItem__icon-list": "ListBoxItem-module__hop-ListBoxItem__icon-list___qp7p9", "hop-ListBoxItem__icon": "ListBoxItem-module__hop-ListBoxItem__icon___uvHkz", "hop-ListBoxItem__label": "ListBoxItem-module__hop-ListBoxItem__label___RjMsK", "hop-ListBoxItem__end-icon-list": "ListBoxItem-module__hop-ListBoxItem__end-icon-list___guJ4T", "hop-ListBoxItem__end-icon": "ListBoxItem-module__hop-ListBoxItem__end-icon___wqMna", "hop-ListBoxItem__badge": "ListBoxItem-module__hop-ListBoxItem__badge___kKsUG" };
21
+ var ListBoxItem_module_default = { "hop-ListBoxItem": "ListBoxItem-module__hop-ListBoxItem___W325Q", "hop-ListBoxItem--xs": "ListBoxItem-module__hop-ListBoxItem--xs___CdJZG", "hop-ListBoxItem--sm": "ListBoxItem-module__hop-ListBoxItem--sm___dZMVr", "hop-ListBoxItem--md": "ListBoxItem-module__hop-ListBoxItem--md___Lq6FY", "hop-ListBoxItem--lg": "ListBoxItem-module__hop-ListBoxItem--lg___vkdBW", "hop-ListBoxItem__inner": "ListBoxItem-module__hop-ListBoxItem__inner___KKBhD", "hop-ListBoxItem__checkmark": "ListBoxItem-module__hop-ListBoxItem__checkmark___wXLwn", "hop-ListBoxItem__description": "ListBoxItem-module__hop-ListBoxItem__description___QenNQ", "hop-ListBoxItem__radio": "ListBoxItem-module__hop-ListBoxItem__radio___CfP0T", "hop-ListBoxItem__checkbox": "ListBoxItem-module__hop-ListBoxItem__checkbox___iaY3V", "hop-ListBoxItem__avatar": "ListBoxItem-module__hop-ListBoxItem__avatar___p2wCv", "hop-ListBoxItem__icon-list": "ListBoxItem-module__hop-ListBoxItem__icon-list___ITmPT", "hop-ListBoxItem__icon": "ListBoxItem-module__hop-ListBoxItem__icon___IxLk2", "hop-ListBoxItem__label": "ListBoxItem-module__hop-ListBoxItem__label___m0bUs", "hop-ListBoxItem__end-icon-list": "ListBoxItem-module__hop-ListBoxItem__end-icon-list___zzPrO", "hop-ListBoxItem__end-icon": "ListBoxItem-module__hop-ListBoxItem__end-icon___awWKd", "hop-ListBoxItem__badge": "ListBoxItem-module__hop-ListBoxItem__badge___-kCfN" };
22
22
  var GlobalListBoxItemCssSelector = "hop-ListBoxItem";
23
23
  var ListBoxItemToIconSizeAdapter = {
24
24
  xs: "sm",
@@ -8,7 +8,7 @@ import { useContextProps, Label as Label$1 } from 'react-aria-components';
8
8
  import { jsx, jsxs } from 'react/jsx-runtime';
9
9
 
10
10
  // css-module:./Label.module.css#css-module
11
- var Label_module_default = { "hop-Label": "Label-module__hop-Label___I1lcR", "hop-Label__indicator": "Label-module__hop-Label__indicator___bMR5H" };
11
+ var Label_module_default = { "hop-Label": "Label-module__hop-Label___2IpOS", "hop-Label__indicator": "Label-module__hop-Label__indicator___nEWGk" };
12
12
  var GlobalLabelCssSelector = "hop-Label";
13
13
  function Label(props, ref) {
14
14
  [props, ref] = useContextProps(props, ref, LabelContext);
@@ -18,7 +18,7 @@ function Label(props, ref) {
18
18
  children,
19
19
  style,
20
20
  isRequired,
21
- necessityIndicator = isRequired != null ? "icon" : null,
21
+ necessityIndicator,
22
22
  ...otherProps
23
23
  } = ownProps;
24
24
  const stringFormatter = useLocalizedString();
@@ -54,12 +54,12 @@ function Label(props, ref) {
54
54
  style: mergedStyles,
55
55
  children: [
56
56
  children,
57
- necessityIndicator === "label" && /* @__PURE__ */ jsxs("span", { children: [
57
+ necessityIndicator === "label" && !isRequired && /* @__PURE__ */ jsxs("span", { className: Label_module_default["hop-Label__label-indicator"], children: [
58
58
  " (",
59
59
  necessityLabel,
60
60
  ")"
61
61
  ] }),
62
- necessityIndicator === "icon" && isRequired && requiredIndicator
62
+ necessityIndicator === "asterisk" && isRequired && requiredIndicator
63
63
  ]
64
64
  }
65
65
  );
@@ -1,6 +1,6 @@
1
1
  import { PasswordFieldContext } from './chunk-QW45G6K4.js';
2
- import { _InputGroup } from './chunk-MBFMR455.js';
3
- import { _EmbeddedButton } from './chunk-AJMHHWRN.js';
2
+ import { _InputGroup } from './chunk-CIKHW47C.js';
3
+ import { _EmbeddedButton } from './chunk-2BYOZEHS.js';
4
4
  import { LabelContext } from './chunk-QCA3ZR56.js';
5
5
  import { useLocalizedString } from './chunk-TFVDF4YH.js';
6
6
  import { HelperMessageContext } from './chunk-HZKFQ33E.js';
@@ -18,7 +18,7 @@ import { useContextProps, composeRenderProps, Input, TextField } from 'react-ari
18
18
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
19
19
 
20
20
  // css-module:./PasswordField.module.css#css-module
21
- var PasswordField_module_default = { "hop-PasswordField": "PasswordField-module__hop-PasswordField___lIpWY", "hop-PasswordField--fluid": "PasswordField-module__hop-PasswordField--fluid___mWiBH", "hop-PasswordField__Label": "PasswordField-module__hop-PasswordField__Label___jhOyi", "hop-PasswordField__InputGroup": "PasswordField-module__hop-PasswordField__InputGroup___neXGZ", "hop-PasswordField__ErrorMessage": "PasswordField-module__hop-PasswordField__ErrorMessage___tl8k3", "hop-PasswordField__HelperMessage": "PasswordField-module__hop-PasswordField__HelperMessage___JGtpS" };
21
+ var PasswordField_module_default = { "hop-PasswordField": "PasswordField-module__hop-PasswordField___HKYN-", "hop-PasswordField--fluid": "PasswordField-module__hop-PasswordField--fluid___ov1ao", "hop-PasswordField__Label": "PasswordField-module__hop-PasswordField__Label___nc1jG", "hop-PasswordField__InputGroup": "PasswordField-module__hop-PasswordField__InputGroup___lZBUS", "hop-PasswordField__ErrorMessage": "PasswordField-module__hop-PasswordField__ErrorMessage___T7Gk3", "hop-PasswordField__HelperMessage": "PasswordField-module__hop-PasswordField__HelperMessage___N7CeS" };
22
22
  var GlobalPasswordFieldCssSelector = "hop-PasswordField";
23
23
  function PasswordField(props, ref) {
24
24
  var _a;
@@ -40,6 +40,7 @@ function PasswordField(props, ref) {
40
40
  isDisabled,
41
41
  isInvalid,
42
42
  isRequired,
43
+ necessityIndicator,
43
44
  ...otherProps
44
45
  } = ownProps;
45
46
  const inputRef = useObjectRef(mergeRefs(userProvidedInputRef, props.inputRef !== void 0 ? props.inputRef : null));
@@ -91,7 +92,7 @@ function PasswordField(props, ref) {
91
92
  SlotProvider,
92
93
  {
93
94
  values: [
94
- [LabelContext, { className: PasswordField_module_default["hop-PasswordField__Label"], isRequired }],
95
+ [LabelContext, { className: PasswordField_module_default["hop-PasswordField__Label"], isRequired, necessityIndicator }],
95
96
  [HelperMessageContext, { className: PasswordField_module_default["hop-PasswordField__HelperMessage"] }],
96
97
  [ErrorMessageContext, { className: PasswordField_module_default["hop-PasswordField__ErrorMessage"] }]
97
98
  ],
@@ -1,7 +1,7 @@
1
1
  import { CheckboxContext } from './chunk-2EAZPH3M.js';
2
2
  import { isTextOnlyChildren } from './chunk-ZWU6DRRZ.js';
3
3
  import { IconListContext } from './chunk-DHVVYSLB.js';
4
- import { _Text } from './chunk-2J5HM77N.js';
4
+ import { _Text } from './chunk-Y7G6PIDC.js';
5
5
  import { TextContext } from './chunk-X6SER3TZ.js';
6
6
  import { ClearContainerSlots } from './chunk-HXI3MEEK.js';
7
7
  import { composeClassnameRenderProps } from './chunk-65JPI4FL.js';
@@ -14,7 +14,7 @@ import { useContextProps, composeRenderProps, Checkbox as Checkbox$1 } from 'rea
14
14
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
15
15
 
16
16
  // css-module:./Checkbox.module.css#css-module
17
- var Checkbox_module_default = { "hop-Checkbox": "Checkbox-module__hop-Checkbox___N1R82", "hop-Checkbox--sm": "Checkbox-module__hop-Checkbox--sm___fyMAY", "hop-Checkbox--md": "Checkbox-module__hop-Checkbox--md___K8Wf4", "hop-Checkbox__icon": "Checkbox-module__hop-Checkbox__icon___-2zc-", "hop-Checkbox__icon-list": "Checkbox-module__hop-Checkbox__icon-list___Xucoa", "hop-Checkbox__box": "Checkbox-module__hop-Checkbox__box___KQHTU", "hop-Checkbox__check": "Checkbox-module__hop-Checkbox__check___kpRRX", "hop-Checkbox__text": "Checkbox-module__hop-Checkbox__text___lT5Jd" };
17
+ var Checkbox_module_default = { "hop-Checkbox": "Checkbox-module__hop-Checkbox___AFr1n", "hop-Checkbox--sm": "Checkbox-module__hop-Checkbox--sm___cv1sJ", "hop-Checkbox--md": "Checkbox-module__hop-Checkbox--md___TocUo", "hop-Checkbox__icon": "Checkbox-module__hop-Checkbox__icon___JH9nN", "hop-Checkbox__icon-list": "Checkbox-module__hop-Checkbox__icon-list___mkaQb", "hop-Checkbox__box": "Checkbox-module__hop-Checkbox__box___IDUqw", "hop-Checkbox__check": "Checkbox-module__hop-Checkbox__check___CRsUX", "hop-Checkbox__text": "Checkbox-module__hop-Checkbox__text___x76Rd" };
18
18
  var GlobalCheckboxCssSelector = "hop-Checkbox";
19
19
  function Checkbox(props, ref) {
20
20
  var _a;
@@ -1,8 +1,8 @@
1
1
  import { useFontFaceReady } from './chunk-IU6XMS2X.js';
2
2
  import { TextAreaContext } from './chunk-MHQZXLKW.js';
3
3
  import { useTruncatedText } from './chunk-Z57VHYOF.js';
4
- import { _RemainingCharacterCount } from './chunk-BFVCZF4H.js';
5
- import { _InputGroup } from './chunk-MBFMR455.js';
4
+ import { _RemainingCharacterCount } from './chunk-B44HANDX.js';
5
+ import { _InputGroup } from './chunk-CIKHW47C.js';
6
6
  import { LabelContext } from './chunk-QCA3ZR56.js';
7
7
  import { HelperMessageContext } from './chunk-HZKFQ33E.js';
8
8
  import { ErrorMessageContext } from './chunk-FAE27DLF.js';
@@ -78,7 +78,7 @@ function $b5e257d569688ac6$export$535bd6ca7f90a273() {
78
78
  }
79
79
 
80
80
  // css-module:./TextArea.module.css#css-module
81
- var TextArea_module_default = { "hop-TextArea": "TextArea-module__hop-TextArea___-HVPa", "hop-TextArea--fluid": "TextArea-module__hop-TextArea--fluid___EVe6A", "hop-TextArea__Label": "TextArea-module__hop-TextArea__Label___1FkkL", "hop-TextArea__prefix": "TextArea-module__hop-TextArea__prefix___Ebbu7", "hop-TextArea__InputGroup": "TextArea-module__hop-TextArea__InputGroup___RrdVH", "hop-TextArea__RemainingCharacterCount": "TextArea-module__hop-TextArea__RemainingCharacterCount___TfXYa", "hop-TextArea__textarea": "TextArea-module__hop-TextArea__textarea___vNhDn", "hop-TextArea__ErrorMessage": "TextArea-module__hop-TextArea__ErrorMessage___Vkzeg", "hop-TextArea__HelperMessage": "TextArea-module__hop-TextArea__HelperMessage___-FgEV" };
81
+ var TextArea_module_default = { "hop-TextArea": "TextArea-module__hop-TextArea___ayVLZ", "hop-TextArea--fluid": "TextArea-module__hop-TextArea--fluid___DD2CN", "hop-TextArea__Label": "TextArea-module__hop-TextArea__Label___7ysE-", "hop-TextArea__prefix": "TextArea-module__hop-TextArea__prefix___qELG8", "hop-TextArea__InputGroup": "TextArea-module__hop-TextArea__InputGroup___uxV86", "hop-TextArea__RemainingCharacterCount": "TextArea-module__hop-TextArea__RemainingCharacterCount___uDD9f", "hop-TextArea__textarea": "TextArea-module__hop-TextArea__textarea___JWTll", "hop-TextArea__ErrorMessage": "TextArea-module__hop-TextArea__ErrorMessage___A54rv", "hop-TextArea__HelperMessage": "TextArea-module__hop-TextArea__HelperMessage___UCMn7" };
82
82
  var GlobalTextAreaCssSelector = "hop-TextArea";
83
83
  var DefaultMinimumTextAreaRows = 3;
84
84
  var pxToInt = (value) => {
@@ -140,7 +140,9 @@ function TextArea(props, ref) {
140
140
  isFluid: isFluidProp,
141
141
  isDisabled,
142
142
  isInvalid,
143
+ isRequired,
143
144
  restrictMaxLength = true,
145
+ necessityIndicator,
144
146
  ...otherProps
145
147
  } = ownProps;
146
148
  const mergedTextAreaRef = useObjectRef(mergeRefs(userProvidedInputRef, props.inputRef !== void 0 ? props.inputRef : null));
@@ -234,7 +236,7 @@ function TextArea(props, ref) {
234
236
  SlotProvider,
235
237
  {
236
238
  values: [
237
- [LabelContext, { className: TextArea_module_default["hop-TextArea__Label"] }],
239
+ [LabelContext, { className: TextArea_module_default["hop-TextArea__Label"], isRequired, necessityIndicator }],
238
240
  [HelperMessageContext, { className: TextArea_module_default["hop-TextArea__HelperMessage"] }],
239
241
  [ErrorMessageContext, { className: TextArea_module_default["hop-TextArea__ErrorMessage"] }]
240
242
  ],
@@ -255,6 +257,7 @@ function TextArea(props, ref) {
255
257
  onChange,
256
258
  isDisabled,
257
259
  isInvalid,
260
+ isRequired,
258
261
  "data-resize-mode": resizeMode,
259
262
  ...otherProps,
260
263
  children: childrenMarkup