@pinnacle0/web-ui 0.6.16 → 0.6.17-beta.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/admin/index.d.ts +3 -0
- package/admin/index.js +4 -0
- package/admin/index.js.map +1 -0
- package/core/DateCalendar.d.ts +1 -2
- package/core/MultipleEnumSelect.d.ts +1 -2
- package/core/Space.d.ts +1 -2
- package/core/UIProvider.d.ts +1 -1
- package/core/index.d.ts +96 -0
- package/core/index.js +50 -0
- package/core/index.js.map +1 -0
- package/hooks/index.d.ts +15 -0
- package/hooks/index.js +16 -0
- package/hooks/index.js.map +1 -0
- package/package.json +19 -1
- package/util/index.d.ts +22 -0
- package/util/index.js +23 -0
- package/util/index.js.map +1 -0
package/admin/index.d.ts
ADDED
package/admin/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/admin/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,QAAQ,EAA8B,MAAM,YAAY,CAAC;AACjE,OAAO,EAAC,SAAS,EAA+B,MAAM,aAAa,CAAC;AACpE,OAAO,EAAC,uBAAuB,EAA6C,MAAM,2BAA2B,CAAC"}
|
package/core/DateCalendar.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import React from "react";
|
|
|
2
2
|
import type { ControlledFormValue } from "../internal/type";
|
|
3
3
|
import type { HeaderRender } from "antd/es/calendar/generateCalendar";
|
|
4
4
|
import type { Dayjs } from "dayjs";
|
|
5
|
-
interface Props extends ControlledFormValue<string> {
|
|
5
|
+
export interface Props extends ControlledFormValue<string> {
|
|
6
6
|
}
|
|
7
7
|
export declare class DateCalendar extends React.PureComponent<Props> {
|
|
8
8
|
static displayName: string;
|
|
@@ -13,4 +13,3 @@ export declare class DateCalendar extends React.PureComponent<Props> {
|
|
|
13
13
|
renderHeader: HeaderRender<Dayjs>;
|
|
14
14
|
render(): React.JSX.Element;
|
|
15
15
|
}
|
|
16
|
-
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import type { ControlledFormValue } from "../internal/type";
|
|
3
|
-
interface Props<Enum extends string | number> extends ControlledFormValue<Enum[]> {
|
|
3
|
+
export interface Props<Enum extends string | number> extends ControlledFormValue<Enum[]> {
|
|
4
4
|
list: Enum[];
|
|
5
5
|
maxShownTagCount?: number;
|
|
6
6
|
translator?: (enumValue: Enum) => string;
|
|
@@ -15,4 +15,3 @@ export declare class MultipleEnumSelect<Enum extends string | number> extends Re
|
|
|
15
15
|
}[];
|
|
16
16
|
render(): React.JSX.Element;
|
|
17
17
|
}
|
|
18
|
-
export {};
|
package/core/Space.d.ts
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import type { SpaceProps } from "antd/es/space";
|
|
3
|
-
interface Props extends SpaceProps {
|
|
3
|
+
export interface Props extends SpaceProps {
|
|
4
4
|
}
|
|
5
5
|
export declare class Space extends React.PureComponent<Props> {
|
|
6
6
|
static displayName: string;
|
|
7
7
|
static Compact: React.FC<import("antd/es/space/Compact").SpaceCompactProps>;
|
|
8
8
|
render(): React.JSX.Element;
|
|
9
9
|
}
|
|
10
|
-
export {};
|
package/core/UIProvider.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import React from "react";
|
|
|
2
2
|
import type { Locale } from "../util/LocaleUtil";
|
|
3
3
|
import type { ConfigProviderProps } from "antd/es/config-provider";
|
|
4
4
|
export type { ThemeConfig } from "antd";
|
|
5
|
-
interface Props extends Omit<ConfigProviderProps, "locale"> {
|
|
5
|
+
export interface Props extends Omit<ConfigProviderProps, "locale"> {
|
|
6
6
|
children: React.ReactNode;
|
|
7
7
|
locale: Locale | "auto";
|
|
8
8
|
}
|
package/core/index.d.ts
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
export { type Props as CarouselProps } from "./Carousel";
|
|
2
|
+
export { Carousel } from "./Carousel";
|
|
3
|
+
export { type Props as YearMonthSelectorProps } from "./YearMonthSelector";
|
|
4
|
+
export { YearMonthSelector } from "./YearMonthSelector";
|
|
5
|
+
export { type Props as RelativeTimeProps } from "./RelativeTime";
|
|
6
|
+
export { RelativeTime } from "./RelativeTime";
|
|
7
|
+
export { type Props as WithTooltipListProps } from "./WithTooltipList";
|
|
8
|
+
export { WithTooltipList } from "./WithTooltipList";
|
|
9
|
+
export { type Props as ButtonProps } from "./Button";
|
|
10
|
+
export { Button } from "./Button";
|
|
11
|
+
export { type Props as TimeRangePickerProps } from "./TimeRangePicker";
|
|
12
|
+
export { TimeRangePicker } from "./TimeRangePicker";
|
|
13
|
+
export { type Props as SpinProps } from "./Spin";
|
|
14
|
+
export { Spin } from "./Spin";
|
|
15
|
+
export { type Props as CardProps } from "./Card";
|
|
16
|
+
export { Card } from "./Card";
|
|
17
|
+
export { type Props as RadioProps } from "./Radio";
|
|
18
|
+
export { Radio } from "./Radio";
|
|
19
|
+
export { type Props as SkeletonProps } from "./Skeleton";
|
|
20
|
+
export { Skeleton } from "./Skeleton";
|
|
21
|
+
export { type Props as AmountRangeInputProps } from "./AmountRangeInput";
|
|
22
|
+
export { AmountRangeInput } from "./AmountRangeInput";
|
|
23
|
+
export { type Props as AutoCompleteInputProps } from "./AutoCompleteInput";
|
|
24
|
+
export { AutoCompleteInput } from "./AutoCompleteInput";
|
|
25
|
+
export { type Props as OrientationContextProps } from "./OrientationContext";
|
|
26
|
+
export { OrientationContextProvider } from "./OrientationContext";
|
|
27
|
+
export { type Props as BadgeProps } from "./Badge";
|
|
28
|
+
export { Badge } from "./Badge";
|
|
29
|
+
export { type Props as DateRangePickerProps } from "./DateRangePicker";
|
|
30
|
+
export { DateRangePicker } from "./DateRangePicker";
|
|
31
|
+
export { type Props as BoolSwitchProps } from "./BoolSwitch";
|
|
32
|
+
export { BoolSwitch } from "./BoolSwitch";
|
|
33
|
+
export { type Props as LabelledSelectProps } from "./LabelledSelect";
|
|
34
|
+
export { LabelledSelect } from "./LabelledSelect";
|
|
35
|
+
export { Progress } from "./Progress";
|
|
36
|
+
export { type Props as TooltipProps } from "./Tooltip";
|
|
37
|
+
export { Tooltip } from "./Tooltip";
|
|
38
|
+
export { type Props as SignedAmountInputProps } from "./SignedAmountInput";
|
|
39
|
+
export { SignedAmountInput } from "./SignedAmountInput";
|
|
40
|
+
export { type Props as DocumentTitleProps } from "./DocumentTitle";
|
|
41
|
+
export { DocumentTitle } from "./DocumentTitle";
|
|
42
|
+
export { Grid } from "./Grid";
|
|
43
|
+
export { EnumSelect } from "./EnumSelect";
|
|
44
|
+
export { type Props as EnumSelectProps } from "./EnumSelect";
|
|
45
|
+
export { type Props as BoolRadioProps } from "./BoolRadio";
|
|
46
|
+
export { BoolRadio } from "./BoolRadio";
|
|
47
|
+
export { type Props as BoolSelectProps } from "./BoolSelect";
|
|
48
|
+
export { BoolSelect } from "./BoolSelect";
|
|
49
|
+
export { type Props as InputProps } from "./Input";
|
|
50
|
+
export { Input } from "./Input";
|
|
51
|
+
export { type Props as ImageProps } from "./Image";
|
|
52
|
+
export { Image } from "./Image";
|
|
53
|
+
export { type Props as MultipleEnumSelectProps } from "./MultipleEnumSelect";
|
|
54
|
+
export { MultipleEnumSelect } from "./MultipleEnumSelect";
|
|
55
|
+
export { type TableProps } from "./Table";
|
|
56
|
+
export { Table } from "./Table";
|
|
57
|
+
export { type Props as UploaderProps } from "./Uploader";
|
|
58
|
+
export { Uploader } from "./Uploader";
|
|
59
|
+
export { type Props as LocalImporterProps } from "./LocalImporter";
|
|
60
|
+
export { LocalImporter } from "./LocalImporter";
|
|
61
|
+
export { type Props as TagsProps } from "./Tags";
|
|
62
|
+
export { Tags } from "./Tags";
|
|
63
|
+
export { type Props as LinkProps } from "./Link";
|
|
64
|
+
export { Link } from "./Link";
|
|
65
|
+
export { type Props as TimePickerProps } from "./TimePicker";
|
|
66
|
+
export { TimePicker } from "./TimePicker";
|
|
67
|
+
export { type Props as SelectProps } from "./Select";
|
|
68
|
+
export { Select } from "./Select";
|
|
69
|
+
export { type Props as AmountConditionInputProps } from "./AmountConditionInput";
|
|
70
|
+
export { AmountConditionInput } from "./AmountConditionInput";
|
|
71
|
+
export { type Props as DateCalendarProps } from "./DateCalendar";
|
|
72
|
+
export { DateCalendar } from "./DateCalendar";
|
|
73
|
+
export { type Props as CheckboxProps } from "./Checkbox";
|
|
74
|
+
export { Checkbox } from "./Checkbox";
|
|
75
|
+
export { type Props as StepsProps } from "./Steps";
|
|
76
|
+
export { Steps } from "./Steps";
|
|
77
|
+
export { type Props as DateTimePickerProps } from "./DateTimePicker";
|
|
78
|
+
export { DateTimePicker } from "./DateTimePicker";
|
|
79
|
+
export { type Props as SearchableSelectProps } from "./SearchableSelect";
|
|
80
|
+
export { SearchableSelect } from "./SearchableSelect";
|
|
81
|
+
export { type Props as DrawerProps } from "./Drawer";
|
|
82
|
+
export { Drawer } from "./Drawer";
|
|
83
|
+
export { type Props as TagProps } from "./Tag";
|
|
84
|
+
export { Tag } from "./Tag";
|
|
85
|
+
export { type Props as DatePickerProps } from "./DatePicker";
|
|
86
|
+
export { DatePicker } from "./DatePicker";
|
|
87
|
+
export { type Props as LocaleSelectProps } from "./LocaleSelect";
|
|
88
|
+
export { LocaleSelect } from "./LocaleSelect";
|
|
89
|
+
export { type Props as UIProviderProps } from "./UIProvider";
|
|
90
|
+
export { UIProvider } from "./UIProvider";
|
|
91
|
+
export { type Props as DropdownProps } from "./Dropdown";
|
|
92
|
+
export { Dropdown } from "./Dropdown";
|
|
93
|
+
export { type Props as SpaceProps } from "./Space";
|
|
94
|
+
export { Space } from "./Space";
|
|
95
|
+
export { type Props as CollapseProps } from "./Collapse";
|
|
96
|
+
export { Collapse } from "./Collapse";
|
package/core/index.js
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
export { Carousel } from "./Carousel";
|
|
2
|
+
export { YearMonthSelector } from "./YearMonthSelector";
|
|
3
|
+
export { RelativeTime } from "./RelativeTime";
|
|
4
|
+
export { WithTooltipList } from "./WithTooltipList";
|
|
5
|
+
export { Button } from "./Button";
|
|
6
|
+
export { TimeRangePicker } from "./TimeRangePicker";
|
|
7
|
+
export { Spin } from "./Spin";
|
|
8
|
+
export { Card } from "./Card";
|
|
9
|
+
export { Radio } from "./Radio";
|
|
10
|
+
export { Skeleton } from "./Skeleton";
|
|
11
|
+
export { AmountRangeInput } from "./AmountRangeInput";
|
|
12
|
+
export { AutoCompleteInput } from "./AutoCompleteInput";
|
|
13
|
+
export { OrientationContextProvider } from "./OrientationContext";
|
|
14
|
+
export { Badge } from "./Badge";
|
|
15
|
+
export { DateRangePicker } from "./DateRangePicker";
|
|
16
|
+
export { BoolSwitch } from "./BoolSwitch";
|
|
17
|
+
export { LabelledSelect } from "./LabelledSelect";
|
|
18
|
+
export { Progress } from "./Progress";
|
|
19
|
+
export { Tooltip } from "./Tooltip";
|
|
20
|
+
export { SignedAmountInput } from "./SignedAmountInput";
|
|
21
|
+
export { DocumentTitle } from "./DocumentTitle";
|
|
22
|
+
export { Grid } from "./Grid";
|
|
23
|
+
export { EnumSelect } from "./EnumSelect";
|
|
24
|
+
export { BoolRadio } from "./BoolRadio";
|
|
25
|
+
export { BoolSelect } from "./BoolSelect";
|
|
26
|
+
export { Input } from "./Input";
|
|
27
|
+
export { Image } from "./Image";
|
|
28
|
+
export { MultipleEnumSelect } from "./MultipleEnumSelect";
|
|
29
|
+
export { Table } from "./Table";
|
|
30
|
+
export { Uploader } from "./Uploader";
|
|
31
|
+
export { LocalImporter } from "./LocalImporter";
|
|
32
|
+
export { Tags } from "./Tags";
|
|
33
|
+
export { Link } from "./Link";
|
|
34
|
+
export { TimePicker } from "./TimePicker";
|
|
35
|
+
export { Select } from "./Select";
|
|
36
|
+
export { AmountConditionInput } from "./AmountConditionInput";
|
|
37
|
+
export { DateCalendar } from "./DateCalendar";
|
|
38
|
+
export { Checkbox } from "./Checkbox";
|
|
39
|
+
export { Steps } from "./Steps";
|
|
40
|
+
export { DateTimePicker } from "./DateTimePicker";
|
|
41
|
+
export { SearchableSelect } from "./SearchableSelect";
|
|
42
|
+
export { Drawer } from "./Drawer";
|
|
43
|
+
export { Tag } from "./Tag";
|
|
44
|
+
export { DatePicker } from "./DatePicker";
|
|
45
|
+
export { LocaleSelect } from "./LocaleSelect";
|
|
46
|
+
export { UIProvider } from "./UIProvider";
|
|
47
|
+
export { Dropdown } from "./Dropdown";
|
|
48
|
+
export { Space } from "./Space";
|
|
49
|
+
export { Collapse } from "./Collapse";
|
|
50
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/core/index.ts"],"names":[],"mappings":"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"}
|
package/hooks/index.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export * from "./useCompositeRef";
|
|
2
|
+
export * from "./useTransform";
|
|
3
|
+
export * from "./useWhyDidYouUpdate";
|
|
4
|
+
export * from "./useDebounce";
|
|
5
|
+
export * from "./useExtended";
|
|
6
|
+
export * from "./useOrientation";
|
|
7
|
+
export * from "./useResizeObserver";
|
|
8
|
+
export * from "./useDelayed";
|
|
9
|
+
export * from "./useAPI";
|
|
10
|
+
export * from "./useBool";
|
|
11
|
+
export * from "./useDidMountEffect";
|
|
12
|
+
export * from "./useForceUpdate";
|
|
13
|
+
export * from "./usePrevious";
|
|
14
|
+
export * from "./useThunk";
|
|
15
|
+
export * from "./useWillUnmountEffect";
|
package/hooks/index.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export * from "./useCompositeRef";
|
|
2
|
+
export * from "./useTransform";
|
|
3
|
+
export * from "./useWhyDidYouUpdate";
|
|
4
|
+
export * from "./useDebounce";
|
|
5
|
+
export * from "./useExtended";
|
|
6
|
+
export * from "./useOrientation";
|
|
7
|
+
export * from "./useResizeObserver";
|
|
8
|
+
export * from "./useDelayed";
|
|
9
|
+
export * from "./useAPI";
|
|
10
|
+
export * from "./useBool";
|
|
11
|
+
export * from "./useDidMountEffect";
|
|
12
|
+
export * from "./useForceUpdate";
|
|
13
|
+
export * from "./usePrevious";
|
|
14
|
+
export * from "./useThunk";
|
|
15
|
+
export * from "./useWillUnmountEffect";
|
|
16
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC;AAC3B,cAAc,wBAAwB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pinnacle0/web-ui",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.17-beta.1",
|
|
4
4
|
"author": "Pinnacle",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"sideEffects": [
|
|
@@ -49,6 +49,24 @@
|
|
|
49
49
|
"@pinnacle0/devtool-util": "1.3.3",
|
|
50
50
|
"@pinnacle0/webpack-util": "0.8.9"
|
|
51
51
|
},
|
|
52
|
+
"exports": {
|
|
53
|
+
"./util": {
|
|
54
|
+
"import": "./util/index.js",
|
|
55
|
+
"types": "./util/index.d.ts"
|
|
56
|
+
},
|
|
57
|
+
"./core": {
|
|
58
|
+
"import": "./core/index.js",
|
|
59
|
+
"types": "./core/index.d.ts"
|
|
60
|
+
},
|
|
61
|
+
"./hooks": {
|
|
62
|
+
"import": "./hooks/index.js",
|
|
63
|
+
"types": "./hooks/index.d.ts"
|
|
64
|
+
},
|
|
65
|
+
"./admin": {
|
|
66
|
+
"import": "./admin/index.js",
|
|
67
|
+
"types": "./admin/index.d.ts"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
52
70
|
"publishConfig": {
|
|
53
71
|
"directory": "build",
|
|
54
72
|
"linkDirectory": false
|
package/util/index.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export * from "./NotificationUtil";
|
|
2
|
+
export * from "./MessageUtil";
|
|
3
|
+
export * from "./ReactUtil";
|
|
4
|
+
export * from "./PromptUtil";
|
|
5
|
+
export * from "./LocaleUtil";
|
|
6
|
+
export * from "./RecentUsedStorageUtil";
|
|
7
|
+
export * from "./ExpirableLocalStorageUtil";
|
|
8
|
+
export * from "./LocalStorageUtil";
|
|
9
|
+
export * from "./UploadUtil";
|
|
10
|
+
export * from "./MediaUtil";
|
|
11
|
+
export * from "./DayJS";
|
|
12
|
+
export * from "./SwipeUtil";
|
|
13
|
+
export * from "./SessionStorageUtil";
|
|
14
|
+
export * from "./ModalUtil";
|
|
15
|
+
export * from "./BrowserUtil";
|
|
16
|
+
export * from "./AdminNavigationUtil";
|
|
17
|
+
export * from "./CanvasUtil";
|
|
18
|
+
export * from "./ClassNames";
|
|
19
|
+
export * from "./Clipboard";
|
|
20
|
+
export * from "./ExportUtil";
|
|
21
|
+
export * from "./ImportUtil";
|
|
22
|
+
export * from "./OrientationUtil";
|
package/util/index.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export * from "./NotificationUtil";
|
|
2
|
+
export * from "./MessageUtil";
|
|
3
|
+
export * from "./ReactUtil";
|
|
4
|
+
export * from "./PromptUtil";
|
|
5
|
+
export * from "./LocaleUtil";
|
|
6
|
+
export * from "./RecentUsedStorageUtil";
|
|
7
|
+
export * from "./ExpirableLocalStorageUtil";
|
|
8
|
+
export * from "./LocalStorageUtil";
|
|
9
|
+
export * from "./UploadUtil";
|
|
10
|
+
export * from "./MediaUtil";
|
|
11
|
+
export * from "./DayJS";
|
|
12
|
+
export * from "./SwipeUtil";
|
|
13
|
+
export * from "./SessionStorageUtil";
|
|
14
|
+
export * from "./ModalUtil";
|
|
15
|
+
export * from "./BrowserUtil";
|
|
16
|
+
export * from "./AdminNavigationUtil";
|
|
17
|
+
export * from "./CanvasUtil";
|
|
18
|
+
export * from "./ClassNames";
|
|
19
|
+
export * from "./Clipboard";
|
|
20
|
+
export * from "./ExportUtil";
|
|
21
|
+
export * from "./ImportUtil";
|
|
22
|
+
export * from "./OrientationUtil";
|
|
23
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/util/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,yBAAyB,CAAC;AACxC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,oBAAoB,CAAC;AACnC,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,sBAAsB,CAAC;AACrC,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,uBAAuB,CAAC;AACtC,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC"}
|