@danske/sapphire-react-lab 0.79.1 → 0.81.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/build/cjs/index.js +1278 -855
  2. package/build/cjs/index.js.map +1 -1
  3. package/build/esm/AlertDialog/src/AlertDialog.js +73 -0
  4. package/build/esm/AlertDialog/src/AlertDialog.js.map +1 -0
  5. package/build/esm/Avatar/src/Avatar.js +14 -1
  6. package/build/esm/Avatar/src/Avatar.js.map +1 -1
  7. package/build/esm/FeedbackMessage/src/FeedbackMessage.js +43 -11
  8. package/build/esm/FeedbackMessage/src/FeedbackMessage.js.map +1 -1
  9. package/build/esm/NumberField/i18n/da-DK.js +9 -0
  10. package/build/esm/NumberField/i18n/da-DK.js.map +1 -0
  11. package/build/esm/NumberField/i18n/de-DE.js +9 -0
  12. package/build/esm/NumberField/i18n/de-DE.js.map +1 -0
  13. package/build/esm/NumberField/i18n/en-US.js +9 -0
  14. package/build/esm/NumberField/i18n/en-US.js.map +1 -0
  15. package/build/esm/NumberField/i18n/fi-FI.js +9 -0
  16. package/build/esm/NumberField/i18n/fi-FI.js.map +1 -0
  17. package/build/esm/NumberField/i18n/index.js +20 -0
  18. package/build/esm/NumberField/i18n/index.js.map +1 -0
  19. package/build/esm/NumberField/i18n/nb-NO.js +9 -0
  20. package/build/esm/NumberField/i18n/nb-NO.js.map +1 -0
  21. package/build/esm/NumberField/i18n/pl-PL.js +9 -0
  22. package/build/esm/NumberField/i18n/pl-PL.js.map +1 -0
  23. package/build/esm/NumberField/i18n/sv-SE.js +9 -0
  24. package/build/esm/NumberField/i18n/sv-SE.js.map +1 -0
  25. package/build/esm/NumberField/src/NumberField.js +149 -0
  26. package/build/esm/NumberField/src/NumberField.js.map +1 -0
  27. package/build/esm/NumberField/src/StepperButton.js +63 -0
  28. package/build/esm/NumberField/src/StepperButton.js.map +1 -0
  29. package/build/esm/NumberField/src/useAutofillStyle.js +21 -0
  30. package/build/esm/NumberField/src/useAutofillStyle.js.map +1 -0
  31. package/build/esm/NumberField/src/useSapphireNumberField.js +49 -0
  32. package/build/esm/NumberField/src/useSapphireNumberField.js.map +1 -0
  33. package/build/esm/index.js +2 -0
  34. package/build/esm/index.js.map +1 -1
  35. package/build/index.d.ts +108 -8
  36. package/package.json +5 -3
@@ -0,0 +1,21 @@
1
+ import { useState } from 'react';
2
+
3
+ function useAutofillStyle(inputRef) {
4
+ const [styles, setStyles] = useState({});
5
+ const updateStyle = () => {
6
+ const input = inputRef.current;
7
+ if (input) {
8
+ const color = window.getComputedStyle(input).backgroundColor;
9
+ setStyles({
10
+ boxShadow: `-100px 0 ${color}, 100px 0 ${color}`
11
+ });
12
+ }
13
+ };
14
+ return {
15
+ autofillStyles: styles,
16
+ updateStyle
17
+ };
18
+ }
19
+
20
+ export { useAutofillStyle };
21
+ //# sourceMappingURL=useAutofillStyle.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useAutofillStyle.js","sources":["../../../../src/NumberField/src/useAutofillStyle.ts"],"sourcesContent":["import { CSSProperties, RefObject, useState } from 'react';\n\ninterface UseAutofillStyle {\n autofillStyles: CSSProperties;\n updateStyle: () => void;\n}\n\n//Copied from TextFieldBase, once NumberField moves into Core, this file can be removed and the import updated\nexport function useAutofillStyle<T>(\n inputRef: RefObject<\n T extends 'input' ? HTMLInputElement : HTMLTextAreaElement\n >\n): UseAutofillStyle {\n const [styles, setStyles] = useState<CSSProperties>({});\n\n const updateStyle = () => {\n const input = inputRef.current;\n if (input) {\n const color = window.getComputedStyle(input).backgroundColor;\n\n setStyles({\n boxShadow: `-100px 0 ${color}, 100px 0 ${color}`,\n });\n }\n };\n\n return {\n autofillStyles: styles,\n updateStyle,\n };\n}\n"],"names":[],"mappings":";;AAQO,SAAA,gBAAA,CACL,QAGkB,EAAA;AAClB,EAAM,MAAA,CAAC,MAAQ,EAAA,SAAA,CAAA,GAAa,QAAwB,CAAA,EAAA,CAAA,CAAA;AAEpD,EAAA,MAAM,cAAc,MAAM;AACxB,IAAA,MAAM,QAAQ,QAAS,CAAA,OAAA,CAAA;AACvB,IAAA,IAAI,KAAO,EAAA;AACT,MAAM,MAAA,KAAA,GAAQ,MAAO,CAAA,gBAAA,CAAiB,KAAO,CAAA,CAAA,eAAA,CAAA;AAE7C,MAAU,SAAA,CAAA;AAAA,QACR,SAAA,EAAW,YAAY,KAAkB,CAAA,UAAA,EAAA,KAAA,CAAA,CAAA;AAAA,OAAA,CAAA,CAAA;AAAA,KAAA;AAAA,GAAA,CAAA;AAK/C,EAAO,OAAA;AAAA,IACL,cAAgB,EAAA,MAAA;AAAA,IAChB,WAAA;AAAA,GAAA,CAAA;AAAA;;;;"}
@@ -0,0 +1,49 @@
1
+ import { useNumberField } from '@react-aria/numberfield';
2
+ import { useNumberFieldState } from '@react-stately/numberfield';
3
+ import { useLocale } from '@react-aria/i18n';
4
+
5
+ var __defProp = Object.defineProperty;
6
+ var __defProps = Object.defineProperties;
7
+ var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
8
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
9
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
10
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
11
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
12
+ var __spreadValues = (a, b) => {
13
+ for (var prop in b || (b = {}))
14
+ if (__hasOwnProp.call(b, prop))
15
+ __defNormalProp(a, prop, b[prop]);
16
+ if (__getOwnPropSymbols)
17
+ for (var prop of __getOwnPropSymbols(b)) {
18
+ if (__propIsEnum.call(b, prop))
19
+ __defNormalProp(a, prop, b[prop]);
20
+ }
21
+ return a;
22
+ };
23
+ var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
24
+ var __objRest = (source, exclude) => {
25
+ var target = {};
26
+ for (var prop in source)
27
+ if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
28
+ target[prop] = source[prop];
29
+ if (source != null && __getOwnPropSymbols)
30
+ for (var prop of __getOwnPropSymbols(source)) {
31
+ if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
32
+ target[prop] = source[prop];
33
+ }
34
+ return target;
35
+ };
36
+ const useSapphireNumberField = (_a, ref) => {
37
+ var _b = _a, { error } = _b, numberFieldProps = __objRest(_b, ["error"]);
38
+ const { locale } = useLocale();
39
+ const numberFieldState = useNumberFieldState(__spreadProps(__spreadValues({}, numberFieldProps), {
40
+ locale
41
+ }));
42
+ const numberFieldAria = useNumberField(__spreadProps(__spreadValues({}, numberFieldProps), {
43
+ validationState: error === false || error === void 0 ? void 0 : "invalid"
44
+ }), numberFieldState, ref);
45
+ return numberFieldAria;
46
+ };
47
+
48
+ export { useSapphireNumberField };
49
+ //# sourceMappingURL=useSapphireNumberField.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useSapphireNumberField.js","sources":["../../../../src/NumberField/src/useSapphireNumberField.ts"],"sourcesContent":["import { RefObject } from 'react';\nimport {\n AriaNumberFieldProps,\n NumberFieldAria,\n useNumberField,\n} from '@react-aria/numberfield';\nimport { useNumberFieldState } from '@react-stately/numberfield';\nimport { useLocale } from '@react-aria/i18n';\nimport { Validation } from '@react-types/shared';\n\nexport interface SapphireNumberFieldProps\n /**\n * Reasons to omit the below properties:\n * - Validation:\n * - validationState: we handle that with the `error` prop instead.\n * - errorMessage: our own error-prop covers the same.\n */\n extends Omit<\n AriaNumberFieldProps,\n 'errorMessage' | keyof Omit<Validation<unknown>, 'isRequired'>\n > {\n /**\n * Whether the input should render as having an error and an error message.\n * This also sets the appropriate `aria` attributes on the input.\n *\n * A `boolean` sets the error state.\n * A `string` sets the error state with an additional error message.\n *\n * **An error message is strongly recommended because an error should always have an explanation about how to fix it.**\n */\n error?: boolean | string;\n}\n\nexport const useSapphireNumberField = (\n { error, ...numberFieldProps }: SapphireNumberFieldProps,\n ref: RefObject<HTMLInputElement>\n): NumberFieldAria => {\n const { locale } = useLocale();\n const numberFieldState = useNumberFieldState({\n ...numberFieldProps,\n locale,\n });\n const numberFieldAria = useNumberField(\n {\n ...numberFieldProps,\n validationState:\n error === false || error === undefined ? undefined : 'invalid',\n },\n numberFieldState,\n ref\n );\n\n return numberFieldAria;\n};\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiCa,MAAA,sBAAA,GAAyB,CACpC,EAAA,EACA,GACoB,KAAA;AAFpB,EAAA,IAAA,EAAA,GAAA,EAAA,EAAE,EAAF,KAAA,EAAA,GAAA,EAAA,EAAY,gBAAZ,GAAA,SAAA,CAAA,EAAA,EAAY,CAAV,OAAA,CAAA,CAAA,CAAA;AAGF,EAAA,MAAM,EAAE,MAAW,EAAA,GAAA,SAAA,EAAA,CAAA;AACnB,EAAM,MAAA,gBAAA,GAAmB,mBAAoB,CAAA,aAAA,CAAA,cAAA,CAAA,EAAA,EACxC,gBADwC,CAAA,EAAA;AAAA,IAE3C,MAAA;AAAA,GAAA,CAAA,CAAA,CAAA;AAEF,EAAM,MAAA,eAAA,GAAkB,cACtB,CAAA,aAAA,CAAA,cAAA,CAAA,EAAA,EACK,gBADL,CAAA,EAAA;AAAA,IAEE,eACE,EAAA,KAAA,KAAU,KAAS,IAAA,KAAA,KAAU,SAAY,KAAY,CAAA,GAAA,SAAA;AAAA,GAAA,CAAA,EAEzD,gBACA,EAAA,GAAA,CAAA,CAAA;AAGF,EAAO,OAAA,eAAA,CAAA;AAAA;;;;"}
@@ -17,5 +17,7 @@ export { Accordion } from './Accordion/index.js';
17
17
  export { Typography } from './Typography/index.js';
18
18
  export { Fieldset } from './Fieldset/src/Fieldset.js';
19
19
  export { Avatar } from './Avatar/src/Avatar.js';
20
+ export { AlertDialog } from './AlertDialog/src/AlertDialog.js';
21
+ export { NumberField } from './NumberField/src/NumberField.js';
20
22
  export { useLocale } from '@react-aria/i18n';
21
23
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;"}
package/build/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  import * as _react_types_shared from '@react-types/shared';
2
- import { PressEvents, Validation, RangeValue, HelpTextProps, LabelableProps, CollectionBase, DOMProps, Expandable, ItemProps } from '@react-types/shared';
2
+ import { PressEvents, Validation, RangeValue, HelpTextProps, LabelableProps, CollectionBase, DOMProps, Expandable, ItemProps, FocusableRefValue } from '@react-types/shared';
3
3
  import * as React from 'react';
4
- import React__default, { ReactNode, ComponentType } from 'react';
4
+ import React__default, { ReactNode, ComponentType, RefObject } from 'react';
5
5
  import { AriaToggleButtonProps } from '@react-aria/button';
6
- import { SapphireStyleProps, PopoverTriggerProps, HeadingProps, TextStyleProps } from '@danske/sapphire-react';
6
+ import { SapphireStyleProps, PopoverTriggerProps, HeadingProps, TextStyleProps, DialogProps } from '@danske/sapphire-react';
7
7
  import { DateValue } from '@internationalized/date';
8
8
  import { AriaCalendarProps, AriaRangeCalendarProps } from '@react-aria/calendar';
9
9
  import { RangeCalendarStateOptions as RangeCalendarStateOptions$1 } from '@react-stately/calendar';
@@ -13,6 +13,8 @@ import { ComboBoxProps } from '@react-types/combobox';
13
13
  import { AriaSearchFieldProps } from '@react-aria/searchfield';
14
14
  import { AriaToastRegionProps } from '@react-aria/toast';
15
15
  import { ToastState } from '@react-stately/toast';
16
+ import { AriaModalOverlayProps } from '@react-aria/overlays';
17
+ import { AriaNumberFieldProps } from '@react-aria/numberfield';
16
18
  export { useLocale } from '@react-aria/i18n';
17
19
 
18
20
  declare type SapphireToggleButtonProps = Omit<AriaToggleButtonProps<'button'>, 'elementType' | 'type'> & SapphireStyleProps & PressEvents & {
@@ -479,18 +481,23 @@ declare const DateRangeField: <T extends DateValue$1, P extends string>(props: O
479
481
  declare const isEndDateBeforeStartDate: (dateRange?: RangeValue<DateValue$1> | null) => boolean | null | undefined;
480
482
  declare const isDateOutsideValidRange: (value?: DateValue$1 | null, minValue?: DateValue$1 | null, maxValue?: DateValue$1 | null) => "after" | "before" | undefined;
481
483
 
484
+ declare type FeedbackMessageVariant = 'success' | 'error' | 'warning' | 'informative' | 'neutral';
482
485
  interface SapphireFeedbackMessageProps extends SapphireStyleProps {
483
486
  /**
484
487
  * Heading content, rendered in a sapphire Heading component.
485
488
  */
486
- heading: React__default.ReactNode;
489
+ heading: React__default.ReactNode | string;
487
490
  /**
488
491
  * The type of message.
489
492
  * The 'error' and 'success' are meant to attract more attention.
490
493
  *
491
494
  * @default 'neutral'
492
495
  */
493
- type?: 'error' | 'success' | 'neutral';
496
+ variant?: FeedbackMessageVariant;
497
+ /**
498
+ * Optional icon to override the default icon for the message type.
499
+ */
500
+ icon?: React__default.ReactNode;
494
501
  /**
495
502
  * Optional description, rendered as a section below heading.
496
503
  */
@@ -504,7 +511,7 @@ interface SapphireFeedbackMessageProps extends SapphireStyleProps {
504
511
  /**
505
512
  * Implements layout and style of a feedback message.
506
513
  */
507
- declare const FeedbackMessage: ({ heading, body, actions, type, ...otherProps }: SapphireFeedbackMessageProps) => JSX.Element;
514
+ declare const FeedbackMessage: ({ heading, body, actions, variant, icon, ...otherProps }: SapphireFeedbackMessageProps) => JSX.Element;
508
515
 
509
516
  declare type SapphireSearchFieldProps<T extends object> = SapphireStyleProps & Omit<AriaSearchFieldProps, keyof HelpTextProps | keyof Validation<unknown> | keyof LabelableProps> & AutocompleteProps<T> & {
510
517
  /**
@@ -756,7 +763,7 @@ declare type SapphireAvatarProps = SapphireStyleProps & {
756
763
  /**
757
764
  * @default 'medium'
758
765
  */
759
- size?: 'large' | 'medium' | 'small' | 'extraSmall';
766
+ size?: 'extraLarge' | 'large' | 'medium' | 'small' | 'extraSmall';
760
767
  /**
761
768
  * The background color of the avatar.
762
769
  * Can either be semantic or one of the named decorative colors.
@@ -773,4 +780,97 @@ declare type SapphireAvatarProps = SapphireStyleProps & {
773
780
  });
774
781
  declare const Avatar: ({ monogram, icon, color, size, ...props }: SapphireAvatarProps) => React__default.ReactElement;
775
782
 
776
- export { _Accordion as Accordion, Avatar, Calendar, CalendarView, DateField, DateFieldProps, DateRangeField, DateRangeFieldProps, FeedbackMessage, Fieldset, FieldsetProps, FilterDropdown, NotificationBadge, NotificationBadgeProps, PredefinedDateRange, RangeCalendar, SapphireAccordionHeadingProps, SapphireAccordionItemProps, SapphireAccordionProps, SapphireAvatarProps, SapphireCalendarProps, SapphireFeedbackMessageProps, SapphireFilterDropdownProps, SapphireRangeCalendarProps, SapphireSearchFieldProps, SapphireToggleButtonProps, SearchField, ShowToastFn, ShowToastOptions, Spinner, SpinnerProps, ToastProvider, ToastProviderProps, ToggleButton, Typography, TypographyBodyProps, TypographyCaptionProps, TypographyHeadingProps, TypographySubheadingProps, isDateOutsideValidRange, isEndDateBeforeStartDate, useShowToast };
783
+ declare type SapphireAlertDialogProps = AriaModalOverlayProps & SapphireStyleProps & Pick<DialogProps, 'isOpen' | 'onClose'> & Omit<SapphireFeedbackMessageProps, 'heading' | 'actions'> & {
784
+ /**
785
+ *
786
+ * @default "horizontal"
787
+ */
788
+ actionsOrientation?: 'vertical' | 'horizontal';
789
+ /**
790
+ * The elements that will be rendered in the footer of the dialog.
791
+ */
792
+ actions: ReactNode;
793
+ /**
794
+ * The title of the dialog.
795
+ */
796
+ heading: string;
797
+ };
798
+ declare const AlertDialog: React__default.ForwardRefExoticComponent<AriaModalOverlayProps & SapphireStyleProps & Pick<DialogProps, "isOpen" | "onClose"> & Omit<SapphireFeedbackMessageProps, "heading" | "actions"> & {
799
+ /**
800
+ *
801
+ * @default "horizontal"
802
+ */
803
+ actionsOrientation?: "horizontal" | "vertical" | undefined;
804
+ /**
805
+ * The elements that will be rendered in the footer of the dialog.
806
+ */
807
+ actions: ReactNode;
808
+ /**
809
+ * The title of the dialog.
810
+ */
811
+ heading: string;
812
+ } & React__default.RefAttributes<_react_types_shared.DOMRefValue<HTMLDivElement>>>;
813
+
814
+ interface SapphireNumberFieldProps
815
+ /**
816
+ * Reasons to omit the below properties:
817
+ * - Validation:
818
+ * - validationState: we handle that with the `error` prop instead.
819
+ * - errorMessage: our own error-prop covers the same.
820
+ */
821
+ extends Omit<AriaNumberFieldProps, 'errorMessage' | keyof Omit<Validation<unknown>, 'isRequired'>> {
822
+ /**
823
+ * Whether the input should render as having an error and an error message.
824
+ * This also sets the appropriate `aria` attributes on the input.
825
+ *
826
+ * A `boolean` sets the error state.
827
+ * A `string` sets the error state with an additional error message.
828
+ *
829
+ * **An error message is strongly recommended because an error should always have an explanation about how to fix it.**
830
+ */
831
+ error?: boolean | string;
832
+ }
833
+
834
+ declare type NumberFieldRef = FocusableRefValue<HTMLInputElement, HTMLDivElement> & {
835
+ getInputElement(): HTMLInputElement | null;
836
+ };
837
+ interface NumberFieldProps extends SapphireNumberFieldProps, PressEvents, SapphireStyleProps {
838
+ prefix?: ReactNode;
839
+ postfix?: ReactNode;
840
+ inputRef?: RefObject<HTMLInputElement | null>;
841
+ /**
842
+ * A note to show below the input.
843
+ * If the input has an error message, this note will be replaced by that.
844
+ */
845
+ note?: ReactNode;
846
+ /**
847
+ * A ContextualHelp to render next to the label.
848
+ */
849
+ contextualHelp?: ReactNode;
850
+ /**
851
+ * To visually indicate if this field is required or optional.
852
+ * @default false
853
+ */
854
+ necessityIndicator?: boolean;
855
+ /**
856
+ * @default 'large'
857
+ */
858
+ size?: 'large' | 'medium';
859
+ /**
860
+ * Aligns the text inside the input fields without affecting the positioning of the label of the field.
861
+ */
862
+ alignInputRight?: boolean;
863
+ /**
864
+ * Places the label either above (default) or on the side of the control.
865
+ * @default 'above'
866
+ */
867
+ labelPlacement?: 'side' | 'above';
868
+ /**
869
+ * To show the buttons for incrementing and decrementing the value.
870
+ * @default false
871
+ */
872
+ showButtons?: boolean;
873
+ }
874
+ declare const NumberField: React__default.ForwardRefExoticComponent<NumberFieldProps & React__default.RefAttributes<NumberFieldRef>>;
875
+
876
+ export { _Accordion as Accordion, AlertDialog, Avatar, Calendar, CalendarView, DateField, DateFieldProps, DateRangeField, DateRangeFieldProps, FeedbackMessage, Fieldset, FieldsetProps, FilterDropdown, NotificationBadge, NotificationBadgeProps, NumberField, NumberFieldProps, NumberFieldRef, PredefinedDateRange, RangeCalendar, SapphireAccordionHeadingProps, SapphireAccordionItemProps, SapphireAccordionProps, SapphireAlertDialogProps, SapphireAvatarProps, SapphireCalendarProps, SapphireFeedbackMessageProps, SapphireFilterDropdownProps, SapphireRangeCalendarProps, SapphireSearchFieldProps, SapphireToggleButtonProps, SearchField, ShowToastFn, ShowToastOptions, Spinner, SpinnerProps, ToastProvider, ToastProviderProps, ToggleButton, Typography, TypographyBodyProps, TypographyCaptionProps, TypographyHeadingProps, TypographySubheadingProps, isDateOutsideValidRange, isEndDateBeforeStartDate, useShowToast };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@danske/sapphire-react-lab",
3
- "version": "0.79.1",
3
+ "version": "0.81.0",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "description": "Experimental React components of the Sapphire Design System from Danske Bank A/S",
6
6
  "exports": {
@@ -36,7 +36,7 @@
36
36
  "cross-env": "^7.0.3"
37
37
  },
38
38
  "dependencies": {
39
- "@danske/sapphire-css": "^26.6.0",
39
+ "@danske/sapphire-css": "^27.1.0",
40
40
  "@internationalized/date": "^3.5.2",
41
41
  "@internationalized/string": "^3.2.1",
42
42
  "@react-aria/accordion": "^3.0.0-alpha.27",
@@ -49,6 +49,7 @@
49
49
  "@react-aria/i18n": "^3.10.2",
50
50
  "@react-aria/interactions": "^3.21.1",
51
51
  "@react-aria/label": "^3.7.6",
52
+ "@react-aria/numberfield": "^3.11.3",
52
53
  "@react-aria/overlays": "^3.21.1",
53
54
  "@react-aria/searchfield": "^3.7.3",
54
55
  "@react-aria/toast": "^3.0.0-beta.10",
@@ -59,6 +60,7 @@
59
60
  "@react-stately/collections": "^3.10.5",
60
61
  "@react-stately/combobox": "^3.8.2",
61
62
  "@react-stately/datepicker": "^3.9.2",
63
+ "@react-stately/numberfield": "^3.9.3",
62
64
  "@react-stately/searchfield": "^3.5.1",
63
65
  "@react-stately/toast": "^3.0.0-beta.2",
64
66
  "@react-stately/toggle": "^3.7.2",
@@ -69,5 +71,5 @@
69
71
  "clsx": "^1.1.1",
70
72
  "react-transition-group": "^4.4.5"
71
73
  },
72
- "gitHead": "18d399194b252d505e09222e08996991f1a9d68a"
74
+ "gitHead": "b32c314ce39dda19db3c38304864b4e63c0f9470"
73
75
  }