iglooform 3.0.0-alpha.9 → 3.0.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/.dumi/tmp/dumi/theme/ContextWrapper.tsx +2 -2
- package/es/form/hsteps/index.js +8 -11
- package/es/form/steps/index.js +8 -11
- package/es/free-form/steps/index.js +8 -11
- package/es/hooks/ocr/index.js +1 -3
- package/es/hooks/ocr/micro-blink.d.ts +4 -1
- package/es/hooks/ocr/micro-blink.js +42 -20
- package/es/locale/en-US/messages.json +4 -0
- package/es/locale/id-ID/messages.json +4 -0
- package/es/locale/th-TH/messages.json +4 -0
- package/es/locale/vi-VN/messages.json +4 -0
- package/es/locale/zh-CN/messages.json +4 -0
- package/es/locale/zh-TW/messages.json +4 -0
- package/es/ocr/micro-blink/index.js +52 -48
- package/es/types.d.ts +1 -0
- package/lib/form/hsteps/index.js +8 -11
- package/lib/form/steps/index.js +8 -11
- package/lib/free-form/steps/index.js +8 -11
- package/lib/hooks/ocr/index.js +1 -3
- package/lib/hooks/ocr/micro-blink.d.ts +4 -1
- package/lib/hooks/ocr/micro-blink.js +41 -19
- package/lib/locale/en-US/messages.json +4 -0
- package/lib/locale/id-ID/messages.json +4 -0
- package/lib/locale/th-TH/messages.json +4 -0
- package/lib/locale/vi-VN/messages.json +4 -0
- package/lib/locale/zh-CN/messages.json +4 -0
- package/lib/locale/zh-TW/messages.json +4 -0
- package/lib/ocr/micro-blink/index.js +51 -47
- package/lib/types.d.ts +1 -0
- package/package.json +1 -1
- package/es/admin-amount/style/index.d.ts +0 -0
- package/es/babel-plugin-import-option.d.ts +0 -7
- package/es/back-top/index.d.ts +0 -5
- package/es/input/style/amount/index.d.ts +0 -2
- package/es/input/style/index.d.ts +0 -2
- package/es/input/style/input-date/index.d.ts +0 -2
- package/es/input/style/otp/index.d.ts +0 -2
- package/es/input/style/phone-number/index.d.ts +0 -2
- package/es/input/style/text-area/index.d.ts +0 -2
- package/es/locale/locale-provider.d.ts +0 -11
- package/es/login-page/index.d.ts +0 -7
- package/es/message/style/index.d.ts +0 -1
- package/es/ocr/micro-blink/style/index.d.ts +0 -1
- package/es/platform/platform-card/index.d.ts +0 -12
- package/es/platform/switch-platform/index.d.ts +0 -12
- package/es/tabs/index.d.ts +0 -15
- package/es/utils/useAsyncEffect.d.ts +0 -3
- package/lib/admin-amount/style/index.d.ts +0 -0
- package/lib/babel-plugin-import-option.d.ts +0 -7
- package/lib/back-top/index.d.ts +0 -5
- package/lib/input/style/amount/index.d.ts +0 -2
- package/lib/input/style/index.d.ts +0 -2
- package/lib/input/style/input-date/index.d.ts +0 -2
- package/lib/input/style/otp/index.d.ts +0 -2
- package/lib/input/style/phone-number/index.d.ts +0 -2
- package/lib/input/style/text-area/index.d.ts +0 -2
- package/lib/locale/locale-provider.d.ts +0 -11
- package/lib/login-page/index.d.ts +0 -7
- package/lib/message/style/index.d.ts +0 -1
- package/lib/ocr/micro-blink/style/index.d.ts +0 -1
- package/lib/platform/platform-card/index.d.ts +0 -12
- package/lib/platform/switch-platform/index.d.ts +0 -12
- package/lib/tabs/index.d.ts +0 -15
- package/lib/utils/useAsyncEffect.d.ts +0 -3
package/es/login-page/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import './index.less';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import './index.less';
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { FC } from 'react';
|
|
2
|
-
import './style';
|
|
3
|
-
interface Props {
|
|
4
|
-
platforms: (string | {
|
|
5
|
-
name: string;
|
|
6
|
-
key: string;
|
|
7
|
-
})[];
|
|
8
|
-
currentPlatform: string;
|
|
9
|
-
onChange: (platform: string) => any;
|
|
10
|
-
}
|
|
11
|
-
declare const SwitchPlatform: FC<Props>;
|
|
12
|
-
export default SwitchPlatform;
|
package/es/tabs/index.d.ts
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { TabsProps } from 'antd';
|
|
3
|
-
import './style';
|
|
4
|
-
interface IglooTabsProps extends TabsProps {
|
|
5
|
-
}
|
|
6
|
-
export declare const TabPane: React.FC<import("antd").TabPaneProps>;
|
|
7
|
-
/**
|
|
8
|
-
* Tab
|
|
9
|
-
* @param {*} 所有antd的tabs
|
|
10
|
-
*/
|
|
11
|
-
declare function Tabs(props: IglooTabsProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
-
declare namespace Tabs {
|
|
13
|
-
var TabPane: React.FC<import("antd").TabPaneProps>;
|
|
14
|
-
}
|
|
15
|
-
export default Tabs;
|
|
File without changes
|
package/lib/back-top/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import './index.less';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import './index.less';
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { FC } from 'react';
|
|
2
|
-
import './style';
|
|
3
|
-
interface Props {
|
|
4
|
-
platforms: (string | {
|
|
5
|
-
name: string;
|
|
6
|
-
key: string;
|
|
7
|
-
})[];
|
|
8
|
-
currentPlatform: string;
|
|
9
|
-
onChange: (platform: string) => any;
|
|
10
|
-
}
|
|
11
|
-
declare const SwitchPlatform: FC<Props>;
|
|
12
|
-
export default SwitchPlatform;
|
package/lib/tabs/index.d.ts
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { TabsProps } from 'antd';
|
|
3
|
-
import './style';
|
|
4
|
-
interface IglooTabsProps extends TabsProps {
|
|
5
|
-
}
|
|
6
|
-
export declare const TabPane: React.FC<import("antd").TabPaneProps>;
|
|
7
|
-
/**
|
|
8
|
-
* Tab
|
|
9
|
-
* @param {*} 所有antd的tabs
|
|
10
|
-
*/
|
|
11
|
-
declare function Tabs(props: IglooTabsProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
-
declare namespace Tabs {
|
|
13
|
-
var TabPane: React.FC<import("antd").TabPaneProps>;
|
|
14
|
-
}
|
|
15
|
-
export default Tabs;
|