@tachybase/module-web 0.23.20 → 0.23.35
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/client/assistant-tool/Designable/DesignableButtonProvider.d.ts +1 -0
- package/dist/client/assistant-tool/Designable/plugin.d.ts +5 -0
- package/dist/client/assistant-tool/calculator/AutoScalingText.d.ts +3 -0
- package/dist/client/assistant-tool/calculator/Calculator.d.ts +2 -0
- package/dist/client/assistant-tool/calculator/CalculatorDisplay.d.ts +4 -0
- package/dist/client/assistant-tool/calculator/CalculatorKey.d.ts +5 -0
- package/dist/client/assistant-tool/calculator/CalculatorModalProvider.d.ts +9 -0
- package/dist/client/assistant-tool/calculator/CalculatorProvider.d.ts +1 -0
- package/dist/client/assistant-tool/calculator/Draggable.d.ts +8 -0
- package/dist/client/assistant-tool/calculator/plugin.d.ts +5 -0
- package/dist/client/assistant-tool/calculator/style.d.ts +3 -0
- package/dist/client/assistant-tool/search-and-jump/SearchAndJumpModelProvider.d.ts +16 -0
- package/dist/client/assistant-tool/search-and-jump/SearchAndJumpProvider.d.ts +1 -0
- package/dist/client/assistant-tool/search-and-jump/plugin.d.ts +5 -0
- package/dist/client/core/schema/components/antd-mobile/DatePicker/DatePicker.d.ts +1 -2
- package/dist/client/index.js +148 -52
- package/dist/externalVersion.js +8 -7
- package/dist/locale/en_US.js +8 -0
- package/dist/locale/zh-CN.js +8 -0
- package/dist/node_modules/cronstrue/package.json +1 -1
- package/dist/server/cron.js +1 -1
- package/dist/server/migrations/20250114140330-update-uiSchemas.d.ts +6 -0
- package/dist/server/migrations/20250114140330-update-uiSchemas.js +51 -0
- package/dist/server/server.js +6 -5
- package/package.json +9 -9
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const DesignableButtonProvider: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export interface CalculatorProps {
|
|
2
|
+
visible: boolean;
|
|
3
|
+
setVisible: React.Dispatch<React.SetStateAction<boolean>>;
|
|
4
|
+
}
|
|
5
|
+
export declare const CalculatorContext: import("react").Context<Partial<CalculatorProps>>;
|
|
6
|
+
export declare const useCalculator: () => Partial<CalculatorProps>;
|
|
7
|
+
export declare const CalculatorModalProvider: ({ children }: {
|
|
8
|
+
children: any;
|
|
9
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const CalculatorProvider: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const Draggable: ({ children, updateTransform, }: {
|
|
3
|
+
children: any;
|
|
4
|
+
updateTransform?: (transformStr: any, tx: any, ty: any, tdom: any) => void;
|
|
5
|
+
}) => React.DetailedReactHTMLElement<{
|
|
6
|
+
ref: React.MutableRefObject<any>;
|
|
7
|
+
style: any;
|
|
8
|
+
}, HTMLElement>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const SearchAndJumpContext: React.Context<{
|
|
3
|
+
open: boolean;
|
|
4
|
+
setOpen: (open: boolean | ((open: boolean) => boolean)) => void;
|
|
5
|
+
}>;
|
|
6
|
+
export declare const SearchAndJumpModalProvider: ({ children }: {
|
|
7
|
+
children: any;
|
|
8
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare const useSearchAndJump: () => {
|
|
10
|
+
open: boolean;
|
|
11
|
+
setOpen: (open: boolean | ((open: boolean) => boolean)) => void;
|
|
12
|
+
};
|
|
13
|
+
export declare const SearchAndJump: ({ open, setOpen }: {
|
|
14
|
+
open: any;
|
|
15
|
+
setOpen: any;
|
|
16
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const SearchAndJumpProvider: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
import
|
|
2
|
-
export declare const MDatePicker: React.ForwardRefExoticComponent<Omit<Partial<any>, "ref"> & React.RefAttributes<unknown>>;
|
|
1
|
+
export declare const MDatePicker: import("react").ForwardRefExoticComponent<Omit<Partial<any>, "ref"> & import("react").RefAttributes<unknown>>;
|
|
3
2
|
export default MDatePicker;
|