@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.
Files changed (25) hide show
  1. package/dist/client/assistant-tool/Designable/DesignableButtonProvider.d.ts +1 -0
  2. package/dist/client/assistant-tool/Designable/plugin.d.ts +5 -0
  3. package/dist/client/assistant-tool/calculator/AutoScalingText.d.ts +3 -0
  4. package/dist/client/assistant-tool/calculator/Calculator.d.ts +2 -0
  5. package/dist/client/assistant-tool/calculator/CalculatorDisplay.d.ts +4 -0
  6. package/dist/client/assistant-tool/calculator/CalculatorKey.d.ts +5 -0
  7. package/dist/client/assistant-tool/calculator/CalculatorModalProvider.d.ts +9 -0
  8. package/dist/client/assistant-tool/calculator/CalculatorProvider.d.ts +1 -0
  9. package/dist/client/assistant-tool/calculator/Draggable.d.ts +8 -0
  10. package/dist/client/assistant-tool/calculator/plugin.d.ts +5 -0
  11. package/dist/client/assistant-tool/calculator/style.d.ts +3 -0
  12. package/dist/client/assistant-tool/search-and-jump/SearchAndJumpModelProvider.d.ts +16 -0
  13. package/dist/client/assistant-tool/search-and-jump/SearchAndJumpProvider.d.ts +1 -0
  14. package/dist/client/assistant-tool/search-and-jump/plugin.d.ts +5 -0
  15. package/dist/client/core/schema/components/antd-mobile/DatePicker/DatePicker.d.ts +1 -2
  16. package/dist/client/index.js +148 -52
  17. package/dist/externalVersion.js +8 -7
  18. package/dist/locale/en_US.js +8 -0
  19. package/dist/locale/zh-CN.js +8 -0
  20. package/dist/node_modules/cronstrue/package.json +1 -1
  21. package/dist/server/cron.js +1 -1
  22. package/dist/server/migrations/20250114140330-update-uiSchemas.d.ts +6 -0
  23. package/dist/server/migrations/20250114140330-update-uiSchemas.js +51 -0
  24. package/dist/server/server.js +6 -5
  25. package/package.json +9 -9
@@ -0,0 +1 @@
1
+ export declare const DesignableButtonProvider: (props: any) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ import { Plugin } from '@tachybase/client';
2
+ export declare class PluginDesignableButton extends Plugin {
3
+ load(): Promise<void>;
4
+ }
5
+ export default PluginDesignableButton;
@@ -0,0 +1,3 @@
1
+ export declare const AutoScalingText: ({ children }: {
2
+ children: any;
3
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const CalculatorWrapper: React.ForwardRefExoticComponent<React.RefAttributes<unknown>>;
@@ -0,0 +1,4 @@
1
+ export declare const CalculatorDisplay: ({ value, ...props }: {
2
+ [x: string]: any;
3
+ value: any;
4
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ export declare const CalculatorKey: ({ onPress, className, ...props }: {
2
+ [x: string]: any;
3
+ onPress: any;
4
+ className: any;
5
+ }) => 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,5 @@
1
+ import { Plugin } from '@tachybase/client';
2
+ export declare class PluginCalculator extends Plugin {
3
+ load(): Promise<void>;
4
+ }
5
+ export default PluginCalculator;
@@ -0,0 +1,3 @@
1
+ export declare const useStyles: (props?: unknown) => import("antd-style").ReturnStyles<{
2
+ container: import("antd-style").SerializedStyles;
3
+ }>;
@@ -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;
@@ -0,0 +1,5 @@
1
+ import { Plugin } from '@tachybase/client';
2
+ export declare class PluginSearchAndJump extends Plugin {
3
+ load(): Promise<void>;
4
+ }
5
+ export default PluginSearchAndJump;
@@ -1,3 +1,2 @@
1
- import React from 'react';
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;