forstok-ui-lib 8.3.16 → 8.3.17
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/index.d.ts +2 -1
- package/dist/index.js +29 -29
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/datetime/index.tsx +26 -11
package/dist/index.d.ts
CHANGED
|
@@ -748,8 +748,9 @@ type TDate = {
|
|
|
748
748
|
};
|
|
749
749
|
declare const DateRefComponent: react.ForwardRefExoticComponent<TDate & react.RefAttributes<unknown>>;
|
|
750
750
|
|
|
751
|
-
declare const DateTimeComponent: ({ dateTimeData }: {
|
|
751
|
+
declare const DateTimeComponent: ({ dateTimeData, $mode, }: {
|
|
752
752
|
dateTimeData: string;
|
|
753
|
+
$mode?: "single";
|
|
753
754
|
}) => react_jsx_runtime.JSX.Element;
|
|
754
755
|
|
|
755
756
|
type TRadio = InputHTMLAttributes<HTMLInputElement> & {
|