@pnkx-lib/ui 1.9.140 → 1.9.141
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/style.css +1 -1
- package/es/chunks/{PageNotFound-BT1mkXgK.js → PageNotFound-BtCmLe_F.js} +1056 -11971
- package/es/chunks/{Switch-DHAoXDmV.js → Switch-DzlrxqZF.js} +1 -1
- package/es/chunks/{AntdIcon-BS99Z6_t.js → index-C4SA6TOQ.js} +11183 -332
- package/es/fields/index.js +2 -2
- package/es/index.js +3 -3
- package/es/ui/index.js +2 -2
- package/package.json +1 -1
- package/types/components/fields/CascaderField.d.ts +4 -3
- package/types/components/fields/Checkbox.d.ts +3 -3
- package/types/components/fields/Input.d.ts +1 -0
- package/types/components/ui/Anchor.d.ts +4 -6
- package/types/components/ui/BulkActions/index.d.ts +1 -1
- package/types/components/ui/Collapse.d.ts +3 -3
- package/types/components/ui/ColorPicker.d.ts +3 -2
package/es/fields/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export { C as
|
2
|
-
export { R as RadioGroup, S as Select, a as Switch, U as UploadField } from '../chunks/Switch-
|
1
|
+
export { C as Checkbox, D as DatePickerField, I as Input, P as PnkxField, R as RangePickerField, f as TinyMCE } from '../chunks/index-C4SA6TOQ.js';
|
2
|
+
export { R as RadioGroup, S as Select, a as Switch, U as UploadField } from '../chunks/Switch-DzlrxqZF.js';
|
package/es/index.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
export {
|
2
|
-
export { C as
|
3
|
-
export { R as RadioGroup, S as Select, a as Switch, U as UploadField } from './chunks/Switch-
|
1
|
+
export { N as ActionRowTable, A as Alert, v as Anchor, w as Appfix, x as AutoComplete, d as Badge, f as Breadcrumb, a2 as BreadcrumbHeading, a1 as BulkActions, B as Button, a3 as Card, C as CascaderField, L as CategoryStatus, e as Col, y as Collapse, z as ColorPicker, a4 as ConfigProvider, G as ConfirmModal, c as Container, j as Divider, l as Drawer, D as Dropdown, E as Empty, J as ErrorBoundary, F as Flex, H as Heading, I as Image, M as Modal, V as PAGE_NUMBER, X as PAGE_SIZE, a5 as PageNotFound, g as Pagination, m as Popconfirm, P as Popover, Q as QRCode, o as Rate, n as Result, R as Row, Y as SORT_BY, Z as SORT_DESC, O as START_PAGE, U as START_PAGE_SIZE, b as SearchFiltersForm, p as Segmented, h as Sidebar, S as Skeleton, k as Spin, q as Statistic, T as Table, a as Tabs, i as Tag, r as Timeline, s as Tour, u as Tree, _ as TypeActionRowTable, $ as TypeBulkActions, a0 as TypeStatusTable, W as Watermark, K as badgeStatusCategoryConfig, t as typeColorMap } from './chunks/PageNotFound-BtCmLe_F.js';
|
2
|
+
export { C as Checkbox, D as DatePickerField, E as ErrorMessage, I as Input, L as Label, b as Layout, M as Menu, P as PnkxField, R as RangePickerField, S as Space, c as Splitter, d as Steps, e as TINY_API, f as TinyMCE, a as Tooltip, T as Typography } from './chunks/index-C4SA6TOQ.js';
|
3
|
+
export { R as RadioGroup, S as Select, a as Switch, U as UploadField } from './chunks/Switch-DzlrxqZF.js';
|
4
4
|
export { a as useMessage, u as useToast } from './chunks/useMessage-CUPcOtIS.js';
|
package/es/ui/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export {
|
2
|
-
export { E as ErrorMessage, L as Label,
|
1
|
+
export { N as ActionRowTable, A as Alert, v as Anchor, w as Appfix, x as AutoComplete, d as Badge, f as Breadcrumb, a2 as BreadcrumbHeading, a1 as BulkActions, B as Button, a3 as Card, C as CascaderField, L as CategoryStatus, e as Col, y as Collapse, z as ColorPicker, a4 as ConfigProvider, G as ConfirmModal, c as Container, j as Divider, l as Drawer, D as Dropdown, E as Empty, J as ErrorBoundary, F as Flex, H as Heading, I as Image, M as Modal, V as PAGE_NUMBER, X as PAGE_SIZE, a5 as PageNotFound, g as Pagination, m as Popconfirm, P as Popover, Q as QRCode, o as Rate, n as Result, R as Row, Y as SORT_BY, Z as SORT_DESC, O as START_PAGE, U as START_PAGE_SIZE, b as SearchFiltersForm, p as Segmented, h as Sidebar, S as Skeleton, k as Spin, q as Statistic, T as Table, a as Tabs, i as Tag, r as Timeline, s as Tour, u as Tree, _ as TypeActionRowTable, $ as TypeBulkActions, a0 as TypeStatusTable, W as Watermark, K as badgeStatusCategoryConfig, t as typeColorMap } from '../chunks/PageNotFound-BtCmLe_F.js';
|
2
|
+
export { E as ErrorMessage, L as Label, b as Layout, M as Menu, S as Space, c as Splitter, d as Steps, e as TINY_API, a as Tooltip, T as Typography } from '../chunks/index-C4SA6TOQ.js';
|
package/package.json
CHANGED
@@ -1,5 +1,6 @@
|
|
1
|
+
import { CascaderProps as CascaderPropsAntd } from 'antd';
|
1
2
|
import { ControllerRenderProps, UseFormSetValue, UseFormStateReturn } from 'react-hook-form';
|
2
|
-
interface CascaderFieldProps {
|
3
|
+
interface CascaderFieldProps extends CascaderPropsAntd {
|
3
4
|
field?: ControllerRenderProps<any, any>;
|
4
5
|
formState?: UseFormStateReturn<any>;
|
5
6
|
setValue?: UseFormSetValue<any>;
|
@@ -7,7 +8,7 @@ interface CascaderFieldProps {
|
|
7
8
|
required?: boolean;
|
8
9
|
afterOnChange?: (value: any) => void;
|
9
10
|
classNameContainer?: string;
|
10
|
-
|
11
|
+
classNameCascader?: string;
|
11
12
|
}
|
12
|
-
export declare const
|
13
|
+
export declare const Cascader: (props: CascaderFieldProps) => import("react/jsx-runtime").JSX.Element;
|
13
14
|
export {};
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import { CheckboxProps } from 'antd';
|
1
|
+
import { CheckboxProps as CheckboxAntdProps } from 'antd';
|
2
2
|
import { ControllerRenderProps, UseFormStateReturn } from 'react-hook-form';
|
3
|
-
export interface
|
3
|
+
export interface CheckboxProps extends Omit<CheckboxAntdProps, "onChange" | "checked"> {
|
4
4
|
field?: ControllerRenderProps<any, any>;
|
5
5
|
formState?: UseFormStateReturn<any>;
|
6
6
|
label?: string;
|
@@ -9,4 +9,4 @@ export interface CheckboxFieldProps extends Omit<CheckboxProps, "onChange" | "ch
|
|
9
9
|
customStyleContainer?: string;
|
10
10
|
customStyleCheckbox?: string;
|
11
11
|
}
|
12
|
-
export declare const
|
12
|
+
export declare const Checkbox: (props: CheckboxProps) => import("react/jsx-runtime").JSX.Element;
|
@@ -16,6 +16,7 @@ export interface InputProps extends InputPropsAntd {
|
|
16
16
|
decimalScale?: number;
|
17
17
|
prefix?: string;
|
18
18
|
suffix?: string;
|
19
|
+
contentTooltip?: string;
|
19
20
|
}
|
20
21
|
export declare const Input: (props: InputProps) => import("react/jsx-runtime").JSX.Element;
|
21
22
|
export interface PropsNumberFormat extends Omit<InputProps, "onChange" | "afterOnChange" | "value" | "defaultValue" | "iconStartInput" | "iconEndInput"> {
|
@@ -1,11 +1,9 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
1
|
+
import { AnchorProps as AnchorPropsAntd } from 'antd';
|
2
|
+
import { FC } from 'react';
|
3
3
|
type BaseProps = {
|
4
4
|
containerClassName?: string;
|
5
|
-
|
5
|
+
anchorClassName?: string;
|
6
6
|
};
|
7
7
|
export type AnchorPropsUnion = BaseProps & AnchorPropsAntd;
|
8
|
-
export declare const Anchor:
|
9
|
-
Link: typeof AnchorLink;
|
10
|
-
};
|
8
|
+
export declare const Anchor: FC<AnchorPropsUnion>;
|
11
9
|
export {};
|
@@ -1,3 +1,3 @@
|
|
1
|
-
import { CollapseProps } from 'antd';
|
2
|
-
export type
|
3
|
-
export declare const
|
1
|
+
import { CollapseProps as CollapseAntdProps } from 'antd';
|
2
|
+
export type CollapseProps = CollapseAntdProps;
|
3
|
+
export declare const Collapse: React.FC<CollapseProps>;
|
@@ -1,2 +1,3 @@
|
|
1
|
-
import { ColorPickerProps } from 'antd';
|
2
|
-
export
|
1
|
+
import { ColorPickerProps as ColorPickerPropsAntd } from 'antd';
|
2
|
+
export type ColorPickerProps = ColorPickerPropsAntd;
|
3
|
+
export declare const ColorPicker: React.FC<ColorPickerProps>;
|