@fluentui/react-spinbutton 0.0.0-nightly-20230222-0421.1 → 0.0.0-nightly-20230223-2115.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.swcrc +33 -0
- package/CHANGELOG.json +32 -17
- package/CHANGELOG.md +20 -11
- package/lib/SpinButton.js.map +1 -1
- package/lib/SpinButtonField.js.map +1 -1
- package/lib/components/SpinButton/SpinButton.js.map +1 -1
- package/lib/components/SpinButton/SpinButton.types.js +2 -1
- package/lib/components/SpinButton/SpinButton.types.js.map +1 -1
- package/lib/components/SpinButton/index.js.map +1 -1
- package/lib/components/SpinButton/renderSpinButton.js +2 -9
- package/lib/components/SpinButton/renderSpinButton.js.map +1 -1
- package/lib/components/SpinButton/useSpinButton.js +7 -8
- package/lib/components/SpinButton/useSpinButton.js.map +1 -1
- package/lib/components/SpinButton/useSpinButtonStyles.js.map +1 -1
- package/lib/components/SpinButtonField/SpinButtonField.js +1 -2
- package/lib/components/SpinButtonField/SpinButtonField.js.map +1 -1
- package/lib/components/SpinButtonField/index.js.map +1 -1
- package/lib/index.js.map +1 -1
- package/lib/utils/clamp.js.map +1 -1
- package/lib/utils/getBound.js.map +1 -1
- package/lib/utils/index.js.map +1 -1
- package/lib/utils/precision.js +8 -8
- package/lib/utils/precision.js.map +1 -1
- package/lib-commonjs/SpinButton.js +5 -4
- package/lib-commonjs/SpinButton.js.map +1 -1
- package/lib-commonjs/SpinButtonField.js +5 -4
- package/lib-commonjs/SpinButtonField.js.map +1 -1
- package/lib-commonjs/components/SpinButton/SpinButton.js +16 -15
- package/lib-commonjs/components/SpinButton/SpinButton.js.map +1 -1
- package/lib-commonjs/components/SpinButton/SpinButton.types.js +6 -2
- package/lib-commonjs/components/SpinButton/SpinButton.types.js.map +1 -1
- package/lib-commonjs/components/SpinButton/index.js +9 -8
- package/lib-commonjs/components/SpinButton/index.js.map +1 -1
- package/lib-commonjs/components/SpinButton/renderSpinButton.js +34 -43
- package/lib-commonjs/components/SpinButton/renderSpinButton.js.map +1 -1
- package/lib-commonjs/components/SpinButton/useSpinButton.js +246 -259
- package/lib-commonjs/components/SpinButton/useSpinButton.js.map +1 -1
- package/lib-commonjs/components/SpinButton/useSpinButtonStyles.js +506 -246
- package/lib-commonjs/components/SpinButton/useSpinButtonStyles.js.map +1 -1
- package/lib-commonjs/components/SpinButtonField/SpinButtonField.js +17 -11
- package/lib-commonjs/components/SpinButtonField/SpinButtonField.js.map +1 -1
- package/lib-commonjs/components/SpinButtonField/index.js +5 -4
- package/lib-commonjs/components/SpinButtonField/index.js.map +1 -1
- package/lib-commonjs/index.js +21 -49
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/utils/clamp.js +28 -21
- package/lib-commonjs/utils/clamp.js.map +1 -1
- package/lib-commonjs/utils/getBound.js +16 -14
- package/lib-commonjs/utils/getBound.js.map +1 -1
- package/lib-commonjs/utils/index.js +7 -6
- package/lib-commonjs/utils/index.js.map +1 -1
- package/lib-commonjs/utils/precision.js +35 -34
- package/lib-commonjs/utils/precision.js.map +1 -1
- package/package.json +10 -10
package/lib/utils/clamp.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"mappings":"AAAA,OAAO,MAAMA,
|
1
|
+
{"version":3,"mappings":"AAAA,OAAO,MAAMA,QAAQ,CAACC,OAAeC,KAAcC,QAAyB;EAC1E,IAAIC,YAAYH;EAChB,IAAIC,QAAQG,WAAW;IACrB,IAAIF,QAAQE,aAAaH,MAAMC,KAAK;MAClC,MAAMG,QAAQ,IAAIC;MAClB,IAAIC,QAAQC,GAAG,CAACC,QAAQ,KAAK,cAAc;QACzC;QACAC,QAAQL,KAAK,CACX,CACG,gBAAeJ,GAAI,kCAAiCC,GAAI,IAAG,EAC5D,8CACC,oBAAmBF,KAAM,IAAG,EAC7BK,MAAMM,KAAK,CACZ,CAACC,IAAI;MAEV;MACA,OAAOZ;IACT;IAEAG,YAAYU,KAAKX,GAAG,CAACD,KAAKE;EAC5B;EAEA,IAAID,QAAQE,WAAW;IACrBD,YAAYU,KAAKZ,GAAG,CAACC,KAAKC;EAC5B;EAEA,OAAOA;AACT","names":["clamp","value","min","max","nextValue","undefined","error","Error","process","env","NODE_ENV","console","stack","join","Math"],"sources":["../../src/utils/clamp.ts"],"sourcesContent":["export const clamp = (value: number, min?: number, max?: number): number => {\n let nextValue = value;\n if (min !== undefined) {\n if (max !== undefined && min > max) {\n const error = new Error();\n if (process.env.NODE_ENV !== 'production') {\n // eslint-disable-next-line no-console\n console.error(\n [\n `\"min\" value \"${min}\" is greater than \"max\" value \"${max}\".`,\n '\"min\" must be less than or equal to \"max\".',\n `Returning value \"${value}\".`,\n error.stack,\n ].join(),\n );\n }\n return value;\n }\n\n nextValue = Math.max(min, nextValue);\n }\n\n if (max !== undefined) {\n nextValue = Math.min(max, nextValue);\n }\n\n return nextValue;\n};\n"]}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"mappings":"AAEA,OAAO,MAAMA,
|
1
|
+
{"version":3,"mappings":"AAEA,OAAO,MAAMA,WAAW,CAACC,OAAeC,KAAcC,QAAmC;EACvF,IAAID,QAAQE,aAAaH,UAAUC,KAAK;IACtC,IAAIC,QAAQD,KAAK;MACf,OAAO;IACT;IACA,OAAO;EACT,OAAO,IAAIC,QAAQC,aAAaH,UAAUE,KAAK;IAC7C,OAAO;EACT;EAEA,OAAO;AACT","names":["getBound","value","min","max","undefined"],"sources":["../../src/utils/getBound.ts"],"sourcesContent":["import type { SpinButtonBounds } from '../SpinButton';\n\nexport const getBound = (value: number, min?: number, max?: number): SpinButtonBounds => {\n if (min !== undefined && value === min) {\n if (max === min) {\n return 'both';\n }\n return 'min';\n } else if (max !== undefined && value === max) {\n return 'max';\n }\n\n return 'none';\n};\n"]}
|
package/lib/utils/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"
|
1
|
+
{"version":3,"mappings":"AAAA,cAAc;AACd,cAAc;AACd,cAAc","names":[],"sources":["../../src/utils/index.ts"],"sourcesContent":["export * from './clamp';\nexport * from './getBound';\nexport * from './precision';\n"]}
|
package/lib/utils/precision.js
CHANGED
@@ -4,14 +4,13 @@
|
|
4
4
|
* precision. Otherwise, it calculates the number of digits after
|
5
5
|
* the decimal point indicated by a positive precision.
|
6
6
|
* @param value - the value to determine the precision of
|
7
|
-
*/
|
8
|
-
export function calculatePrecision(value) {
|
7
|
+
*/export function calculatePrecision(value) {
|
9
8
|
/**
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
9
|
+
* Group 1:
|
10
|
+
* [1-9]([0]+$) matches trailing zeros
|
11
|
+
* Group 2:
|
12
|
+
* \.([0-9]*) matches all digits after a decimal point.
|
13
|
+
*/
|
15
14
|
const groups = /[1-9]([0]+$)|\.([0-9]*)/.exec(String(value));
|
16
15
|
if (!groups) {
|
17
16
|
return 0;
|
@@ -29,7 +28,8 @@ export function calculatePrecision(value) {
|
|
29
28
|
* @param value - The value that is being rounded.
|
30
29
|
* @param precision - The number of decimal places to round the number to
|
31
30
|
*/
|
32
|
-
export function precisionRound(value, precision
|
31
|
+
export function precisionRound(value, precision) {
|
32
|
+
let base = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : 10;
|
33
33
|
const exp = Math.pow(base, precision);
|
34
34
|
return Math.round(value * exp) / exp;
|
35
35
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"mappings":"AAAA
|
1
|
+
{"version":3,"mappings":"AAAA;;;;;;GAOA,OAAO,SAASA,mBAAmBC,KAAsB,EAAU;EACjE;;;;;;EAMA,MAAMC,SAAS,0BAA0BC,IAAI,CAACC,OAAOH;EACrD,IAAI,CAACC,QAAQ;IACX,OAAO;EACT;EACA,IAAIA,MAAM,CAAC,EAAE,EAAE;IACb,OAAO,CAACA,MAAM,CAAC,EAAE,CAACG,MAAM;EAC1B;EACA,IAAIH,MAAM,CAAC,EAAE,EAAE;IACb,OAAOA,MAAM,CAAC,EAAE,CAACG,MAAM;EACzB;EACA,OAAO;AACT;AAEA;;;;;AAKA,OAAO,SAASC,eAAeL,KAAa,EAAEM,SAAiB,EAA6B;MAA3BC,wEAAe,EAAE;EAChF,MAAMC,MAAMC,KAAKC,GAAG,CAACH,MAAMD;EAC3B,OAAOG,KAAKE,KAAK,CAACX,QAAQQ,OAAOA;AACnC","names":["calculatePrecision","value","groups","exec","String","length","precisionRound","precision","base","exp","Math","pow","round"],"sources":["../../src/utils/precision.ts"],"sourcesContent":["/**\n * Calculates a number's precision based on the number of trailing\n * zeros if the number does not have a decimal indicated by a negative\n * precision. Otherwise, it calculates the number of digits after\n * the decimal point indicated by a positive precision.\n * @param value - the value to determine the precision of\n */\nexport function calculatePrecision(value: number | string): number {\n /**\n * Group 1:\n * [1-9]([0]+$) matches trailing zeros\n * Group 2:\n * \\.([0-9]*) matches all digits after a decimal point.\n */\n const groups = /[1-9]([0]+$)|\\.([0-9]*)/.exec(String(value));\n if (!groups) {\n return 0;\n }\n if (groups[1]) {\n return -groups[1].length;\n }\n if (groups[2]) {\n return groups[2].length;\n }\n return 0;\n}\n\n/**\n * Rounds a number to a certain level of precision. Accepts negative precision.\n * @param value - The value that is being rounded.\n * @param precision - The number of decimal places to round the number to\n */\nexport function precisionRound(value: number, precision: number, base: number = 10): number {\n const exp = Math.pow(base, precision);\n return Math.round(value * exp) / exp;\n}\n"]}
|
@@ -1,8 +1,9 @@
|
|
1
1
|
"use strict";
|
2
|
-
|
3
2
|
Object.defineProperty(exports, "__esModule", {
|
4
|
-
|
3
|
+
value: true
|
5
4
|
});
|
6
|
-
const
|
7
|
-
|
5
|
+
const _exportStar = require("@swc/helpers/lib/_export_star.js").default;
|
6
|
+
_exportStar(require("./components/SpinButton/index"), exports);
|
7
|
+
//# sourceMappingURL=SpinButton.js.map
|
8
|
+
|
8
9
|
//# sourceMappingURL=SpinButton.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"
|
1
|
+
{"version":3,"sources":["../lib/SpinButton.js"],"sourcesContent":["export * from './components/SpinButton/index';\n//# sourceMappingURL=SpinButton.js.map"],"names":[],"mappings":";;;;;oBAAc;CACd,sCAAsC"}
|
@@ -1,8 +1,9 @@
|
|
1
1
|
"use strict";
|
2
|
-
|
3
2
|
Object.defineProperty(exports, "__esModule", {
|
4
|
-
|
3
|
+
value: true
|
5
4
|
});
|
6
|
-
const
|
7
|
-
|
5
|
+
const _exportStar = require("@swc/helpers/lib/_export_star.js").default;
|
6
|
+
_exportStar(require("./components/SpinButtonField/index"), exports);
|
7
|
+
//# sourceMappingURL=SpinButtonField.js.map
|
8
|
+
|
8
9
|
//# sourceMappingURL=SpinButtonField.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"
|
1
|
+
{"version":3,"sources":["../lib/SpinButtonField.js"],"sourcesContent":["export * from './components/SpinButtonField/index';\n//# sourceMappingURL=SpinButtonField.js.map"],"names":[],"mappings":";;;;;oBAAc;CACd,2CAA2C"}
|
@@ -1,20 +1,21 @@
|
|
1
1
|
"use strict";
|
2
|
-
|
3
2
|
Object.defineProperty(exports, "__esModule", {
|
4
|
-
|
3
|
+
value: true
|
4
|
+
});
|
5
|
+
Object.defineProperty(exports, "SpinButton", {
|
6
|
+
enumerable: true,
|
7
|
+
get: ()=>SpinButton
|
5
8
|
});
|
6
|
-
|
7
|
-
const
|
8
|
-
const
|
9
|
-
const
|
10
|
-
const
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
const state = useSpinButton_1.useSpinButton_unstable(props, ref);
|
16
|
-
useSpinButtonStyles_1.useSpinButtonStyles_unstable(state);
|
17
|
-
return renderSpinButton_1.renderSpinButton_unstable(state);
|
9
|
+
const _interopRequireWildcard = require("@swc/helpers/lib/_interop_require_wildcard.js").default;
|
10
|
+
const _react = /*#__PURE__*/ _interopRequireWildcard(require("react"));
|
11
|
+
const _useSpinButton = require("./useSpinButton");
|
12
|
+
const _renderSpinButton = require("./renderSpinButton");
|
13
|
+
const _useSpinButtonStyles = require("./useSpinButtonStyles");
|
14
|
+
const SpinButton = /*#__PURE__*/ _react.forwardRef((props, ref)=>{
|
15
|
+
const state = (0, _useSpinButton.useSpinButton_unstable)(props, ref);
|
16
|
+
(0, _useSpinButtonStyles.useSpinButtonStyles_unstable)(state);
|
17
|
+
return (0, _renderSpinButton.renderSpinButton_unstable)(state);
|
18
18
|
});
|
19
|
-
|
19
|
+
SpinButton.displayName = 'SpinButton'; //# sourceMappingURL=SpinButton.js.map
|
20
|
+
|
20
21
|
//# sourceMappingURL=SpinButton.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"
|
1
|
+
{"version":3,"sources":["../../../lib/components/SpinButton/SpinButton.js"],"sourcesContent":["import * as React from 'react';\nimport { useSpinButton_unstable } from './useSpinButton';\nimport { renderSpinButton_unstable } from './renderSpinButton';\nimport { useSpinButtonStyles_unstable } from './useSpinButtonStyles';\n/**\n * A SpinButton allows someone to incrementally adjust a value in small steps.\n */\nexport const SpinButton = /*#__PURE__*/React.forwardRef((props, ref) => {\n const state = useSpinButton_unstable(props, ref);\n useSpinButtonStyles_unstable(state);\n return renderSpinButton_unstable(state);\n});\nSpinButton.displayName = 'SpinButton';\n//# sourceMappingURL=SpinButton.js.map"],"names":["SpinButton","React","forwardRef","props","ref","state","useSpinButton_unstable","useSpinButtonStyles_unstable","renderSpinButton_unstable","displayName"],"mappings":";;;;+BAOaA;;aAAAA;;;6DAPU;+BACgB;kCACG;qCACG;AAItC,MAAMA,aAAa,WAAW,GAAEC,OAAMC,UAAU,CAAC,CAACC,OAAOC,MAAQ;IACtE,MAAMC,QAAQC,IAAAA,qCAAsB,EAACH,OAAOC;IAC5CG,IAAAA,iDAA4B,EAACF;IAC7B,OAAOG,IAAAA,2CAAyB,EAACH;AACnC;AACAL,WAAWS,WAAW,GAAG,cACzB,sCAAsC"}
|
@@ -1,6 +1,10 @@
|
|
1
|
+
// import { Input } from '@fluentui/react-input';
|
1
2
|
"use strict";
|
2
|
-
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
4
|
-
|
4
|
+
value: true
|
5
5
|
});
|
6
|
+
const _interopRequireWildcard = require("@swc/helpers/lib/_interop_require_wildcard.js").default;
|
7
|
+
const _react = /*#__PURE__*/ _interopRequireWildcard(require("react"));
|
8
|
+
//# sourceMappingURL=SpinButton.types.js.map
|
9
|
+
|
6
10
|
//# sourceMappingURL=SpinButton.types.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"
|
1
|
+
{"version":3,"sources":["../../../lib/components/SpinButton/SpinButton.types.js"],"sourcesContent":["// import { Input } from '@fluentui/react-input';\nimport * as React from 'react';\n//# sourceMappingURL=SpinButton.types.js.map"],"names":[],"mappings":"AAAA,iDAAiD;;;;;;6DAC1B;CACvB,4CAA4C"}
|
@@ -1,12 +1,13 @@
|
|
1
1
|
"use strict";
|
2
|
-
|
3
2
|
Object.defineProperty(exports, "__esModule", {
|
4
|
-
|
3
|
+
value: true
|
5
4
|
});
|
6
|
-
const
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
5
|
+
const _exportStar = require("@swc/helpers/lib/_export_star.js").default;
|
6
|
+
_exportStar(require("./SpinButton"), exports);
|
7
|
+
_exportStar(require("./SpinButton.types"), exports);
|
8
|
+
_exportStar(require("./renderSpinButton"), exports);
|
9
|
+
_exportStar(require("./useSpinButton"), exports);
|
10
|
+
_exportStar(require("./useSpinButtonStyles"), exports);
|
11
|
+
//# sourceMappingURL=index.js.map
|
12
|
+
|
12
13
|
//# sourceMappingURL=index.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"
|
1
|
+
{"version":3,"sources":["../../../lib/components/SpinButton/index.js"],"sourcesContent":["export * from './SpinButton';\nexport * from './SpinButton.types';\nexport * from './renderSpinButton';\nexport * from './useSpinButton';\nexport * from './useSpinButtonStyles';\n//# sourceMappingURL=index.js.map"],"names":[],"mappings":";;;;;oBAAc;oBACA;oBACA;oBACA;oBACA;CACd,iCAAiC"}
|
@@ -1,47 +1,38 @@
|
|
1
1
|
"use strict";
|
2
|
-
|
3
2
|
Object.defineProperty(exports, "__esModule", {
|
4
|
-
|
3
|
+
value: true
|
4
|
+
});
|
5
|
+
Object.defineProperty(exports, "renderSpinButton_unstable", {
|
6
|
+
enumerable: true,
|
7
|
+
get: ()=>renderSpinButton_unstable
|
5
8
|
});
|
6
|
-
|
7
|
-
const
|
8
|
-
const
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
} = react_utilities_1.getSlots(state);
|
36
|
-
return React.createElement(slots.root, {
|
37
|
-
...slotProps.root
|
38
|
-
}, React.createElement(slots.input, {
|
39
|
-
...slotProps.input
|
40
|
-
}), React.createElement(slots.incrementButton, {
|
41
|
-
...slotProps.incrementButton
|
42
|
-
}), React.createElement(slots.decrementButton, {
|
43
|
-
...slotProps.decrementButton
|
44
|
-
}));
|
45
|
-
};
|
46
|
-
exports.renderSpinButton_unstable = renderSpinButton_unstable;
|
9
|
+
const _interopRequireDefault = require("@swc/helpers/lib/_interop_require_default.js").default;
|
10
|
+
const _interopRequireWildcard = require("@swc/helpers/lib/_interop_require_wildcard.js").default;
|
11
|
+
const _extends = require("@swc/helpers/lib/_extends.js").default;
|
12
|
+
const _react = /*#__PURE__*/ _interopRequireWildcard(require("react"));
|
13
|
+
const _reactUtilities = require("@fluentui/react-utilities");
|
14
|
+
const renderSpinButton_unstable = (state)=>{
|
15
|
+
// Leaving this here for now.
|
16
|
+
// This is the approach using react-input's Input component.
|
17
|
+
// It has some Typescript problems and feels hacky.
|
18
|
+
// const { slots, slotProps } = getSlots<SpinButtonSlots>(state);
|
19
|
+
// const { contentAfter, ...otherInputSlotProps } = slotProps.input as SpinButtonSlots['input'];
|
20
|
+
// const inputContentAfter = {
|
21
|
+
// ...contentAfter,
|
22
|
+
// children: (
|
23
|
+
// <>
|
24
|
+
// <slots.incrementButton {...slotProps.incrementButton} />
|
25
|
+
// <slots.decrementButton {...slotProps.decrementButton} />
|
26
|
+
// </>
|
27
|
+
// ),
|
28
|
+
// };
|
29
|
+
// return (
|
30
|
+
// <slots.root {...slotProps.root}>
|
31
|
+
// <slots.input {...otherInputSlotProps} contentAfter={inputContentAfter}/>
|
32
|
+
// </slots.root>
|
33
|
+
// );
|
34
|
+
const { slots , slotProps } = (0, _reactUtilities.getSlots)(state);
|
35
|
+
return /*#__PURE__*/ _react.createElement(slots.root, _extends({}, slotProps.root), /*#__PURE__*/ _react.createElement(slots.input, _extends({}, slotProps.input)), /*#__PURE__*/ _react.createElement(slots.incrementButton, _extends({}, slotProps.incrementButton)), /*#__PURE__*/ _react.createElement(slots.decrementButton, _extends({}, slotProps.decrementButton)));
|
36
|
+
}; //# sourceMappingURL=renderSpinButton.js.map
|
37
|
+
|
47
38
|
//# sourceMappingURL=renderSpinButton.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"
|
1
|
+
{"version":3,"sources":["../../../lib/components/SpinButton/renderSpinButton.js"],"sourcesContent":["import _extends from \"@swc/helpers/src/_extends.mjs\";\nimport * as React from 'react';\nimport { getSlots } from '@fluentui/react-utilities';\n/**\n * Render the final JSX of SpinButton\n */\nexport const renderSpinButton_unstable = state => {\n // Leaving this here for now.\n // This is the approach using react-input's Input component.\n // It has some Typescript problems and feels hacky.\n // const { slots, slotProps } = getSlots<SpinButtonSlots>(state);\n // const { contentAfter, ...otherInputSlotProps } = slotProps.input as SpinButtonSlots['input'];\n // const inputContentAfter = {\n // ...contentAfter,\n // children: (\n // <>\n // <slots.incrementButton {...slotProps.incrementButton} />\n // <slots.decrementButton {...slotProps.decrementButton} />\n // </>\n // ),\n // };\n // return (\n // <slots.root {...slotProps.root}>\n // <slots.input {...otherInputSlotProps} contentAfter={inputContentAfter}/>\n // </slots.root>\n // );\n const {\n slots,\n slotProps\n } = getSlots(state);\n return /*#__PURE__*/React.createElement(slots.root, _extends({}, slotProps.root), /*#__PURE__*/React.createElement(slots.input, _extends({}, slotProps.input)), /*#__PURE__*/React.createElement(slots.incrementButton, _extends({}, slotProps.incrementButton)), /*#__PURE__*/React.createElement(slots.decrementButton, _extends({}, slotProps.decrementButton)));\n};\n//# sourceMappingURL=renderSpinButton.js.map"],"names":["renderSpinButton_unstable","state","slots","slotProps","getSlots","React","createElement","root","_extends","input","incrementButton","decrementButton"],"mappings":";;;;+BAMaA;;aAAAA;;;;yBANQ;6DACE;gCACE;AAIlB,MAAMA,4BAA4BC,CAAAA,QAAS;IAChD,6BAA6B;IAC7B,4DAA4D;IAC5D,mDAAmD;IACnD,iEAAiE;IACjE,gGAAgG;IAChG,8BAA8B;IAC9B,qBAAqB;IACrB,gBAAgB;IAChB,SAAS;IACT,iEAAiE;IACjE,iEAAiE;IACjE,UAAU;IACV,OAAO;IACP,KAAK;IACL,WAAW;IACX,qCAAqC;IACrC,+EAA+E;IAC/E,kBAAkB;IAClB,KAAK;IACL,MAAM,EACJC,MAAK,EACLC,UAAS,EACV,GAAGC,IAAAA,wBAAQ,EAACH;IACb,OAAO,WAAW,GAAEI,OAAMC,aAAa,CAACJ,MAAMK,IAAI,EAAEC,SAAS,CAAC,GAAGL,UAAUI,IAAI,GAAG,WAAW,GAAEF,OAAMC,aAAa,CAACJ,MAAMO,KAAK,EAAED,SAAS,CAAC,GAAGL,UAAUM,KAAK,IAAI,WAAW,GAAEJ,OAAMC,aAAa,CAACJ,MAAMQ,eAAe,EAAEF,SAAS,CAAC,GAAGL,UAAUO,eAAe,IAAI,WAAW,GAAEL,OAAMC,aAAa,CAACJ,MAAMS,eAAe,EAAEH,SAAS,CAAC,GAAGL,UAAUQ,eAAe;AAClW,GACA,4CAA4C"}
|