@jobber/components 8.1.0 → 8.2.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.
- package/dist/InputNumber/InputNumber.d.ts +1 -12
- package/dist/InputNumber/{InputNumber.rebuilt.types.d.ts → InputNumber.types.d.ts} +2 -3
- package/dist/InputNumber/index.cjs +9 -5076
- package/dist/InputNumber/index.d.ts +2 -11
- package/dist/InputNumber/index.mjs +8 -5079
- package/dist/InputNumber-cjs.js +5004 -0
- package/dist/InputNumber-es.js +5002 -0
- package/dist/docs/Countdown/Countdown.md +0 -1
- package/dist/docs/InputNumber/InputNumber.md +40 -36
- package/dist/docs/index.md +0 -1
- package/dist/index.cjs +2 -4
- package/dist/index.d.mts +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.mjs +1 -2
- package/dist/styles.css +47 -47
- package/dist/utils/meta/meta.json +0 -1
- package/package.json +2 -7
- package/FormatTime.d.ts +0 -1
- package/FormatTime.js +0 -17
- package/dist/FormatTime/FormatTime.d.ts +0 -15
- package/dist/FormatTime/index.cjs +0 -8
- package/dist/FormatTime/index.d.ts +0 -1
- package/dist/FormatTime/index.mjs +0 -2
- package/dist/FormatTime-cjs.js +0 -24
- package/dist/FormatTime-es.js +0 -22
- package/dist/InputNumber/InputNumber.rebuilt.d.ts +0 -7
- package/dist/docs/FormatTime/FormatTime.md +0 -32
|
@@ -1,11 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import { type InputNumberRebuiltProps, type InputNumberRebuiltRef } from "./InputNumber.rebuilt.types";
|
|
4
|
-
export type InputNumberProps = ({
|
|
5
|
-
version: 2;
|
|
6
|
-
} & InputNumberRebuiltProps) | ({
|
|
7
|
-
version?: 1;
|
|
8
|
-
} & InputNumberLegacyProps);
|
|
9
|
-
type InputNumberRef = InputNumberRebuiltRef | InputNumberLegacyRef;
|
|
10
|
-
export declare const InputNumber: React.ForwardRefExoticComponent<InputNumberProps & React.RefAttributes<InputNumberRef>>;
|
|
11
|
-
export type { InputNumberRef, InputNumberRebuiltProps, InputNumberLegacyProps };
|
|
1
|
+
export { InputNumber, type InputNumberRef } from "./InputNumber";
|
|
2
|
+
export type { InputNumberProps } from "./InputNumber.types";
|