antd-solid 0.0.18 → 0.0.19
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/package.json +3 -3
- package/src/index.ts +0 -102
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "antd-solid",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.19",
|
|
4
4
|
"description": "",
|
|
5
|
-
"main": "
|
|
5
|
+
"main": "dist/index.esm.js",
|
|
6
6
|
"module": "es/index.js",
|
|
7
|
-
"types": "
|
|
7
|
+
"types": "es/index.d.ts",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"devDependencies": {
|
|
10
10
|
"@iconify-json/ant-design": "^1.1.5",
|
package/src/index.ts
DELETED
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
export { default as Button } from './Button'
|
|
2
|
-
export { default as Input } from './Input'
|
|
3
|
-
export type { InputProps, TextAreaProps } from './Input'
|
|
4
|
-
export { default as InputNumber } from './InputNumber'
|
|
5
|
-
export type { InputNumberProps } from './InputNumber'
|
|
6
|
-
export { default as Timeline } from './Timeline'
|
|
7
|
-
export { default as Modal } from './Modal'
|
|
8
|
-
export type { ModalProps } from './Modal'
|
|
9
|
-
export { default as Drawer } from './Drawer'
|
|
10
|
-
export type { DrawerProps } from './Drawer'
|
|
11
|
-
// export { default as DatePicker } from './DatePicker'
|
|
12
|
-
export type { RangeInputProps } from './RangeInput'
|
|
13
|
-
export { default as RangeInput } from './RangeInput'
|
|
14
|
-
export type { SelectInputProps } from './SelectInput'
|
|
15
|
-
export { default as SelectInput } from './SelectInput'
|
|
16
|
-
export { default as Select } from './Select'
|
|
17
|
-
export type { SelectProps, SelectOption } from './Select'
|
|
18
|
-
export { default as Tree } from './Tree'
|
|
19
|
-
export type { TreeProps } from './Tree'
|
|
20
|
-
export { default as Popover } from './Popover'
|
|
21
|
-
export type { PopoverProps } from './Popover'
|
|
22
|
-
export { default as Tooltip } from './Tooltip'
|
|
23
|
-
export type { TooltipProps } from './Tooltip'
|
|
24
|
-
export { default as ColorPicker } from './ColorPicker'
|
|
25
|
-
export type { ColorPickerProps } from './ColorPicker'
|
|
26
|
-
export { default as Result } from './Result'
|
|
27
|
-
export { default as Progress } from './Progress'
|
|
28
|
-
export type { ProgressProps } from './Progress'
|
|
29
|
-
export { default as Tabs } from './Tabs'
|
|
30
|
-
export type { TabsProps, TabItem } from './Tabs'
|
|
31
|
-
export { default as Popconfirm } from './Popconfirm'
|
|
32
|
-
export type { PopconfirmProps } from './Popconfirm'
|
|
33
|
-
export { default as Upload } from './Upload'
|
|
34
|
-
export type { UploadProps, UploadFile } from './Upload'
|
|
35
|
-
export { default as Radio } from './Radio'
|
|
36
|
-
export type { RadioProps } from './Radio'
|
|
37
|
-
export type { RadioGroupProps } from './Radio/Group'
|
|
38
|
-
export { default as Form } from './Form'
|
|
39
|
-
export type { FormInstance, FormProps, FormItemProps, FormItemComponentProps } from './Form'
|
|
40
|
-
export { default as Switch } from './Switch'
|
|
41
|
-
export type { SwitchProps } from './Switch'
|
|
42
|
-
export { default as Spin } from './Spin'
|
|
43
|
-
export { default as Image } from './Image'
|
|
44
|
-
export type { ImageProps } from './Image'
|
|
45
|
-
export { default as Table } from './Table'
|
|
46
|
-
export type { TableProps, TableColumn } from './Table'
|
|
47
|
-
export { default as Compact } from './Compact'
|
|
48
|
-
export { default as CompactContextIsolator } from './Compact/CompactContextIsolator'
|
|
49
|
-
export type { CollapseProps, CollapseItem } from './Collapse'
|
|
50
|
-
export { default as Collapse } from './Collapse'
|
|
51
|
-
export { default as Empty } from './Empty'
|
|
52
|
-
export type { SegmentedProps } from './Segmented'
|
|
53
|
-
export { default as Segmented } from './Segmented'
|
|
54
|
-
export type { AlertProps } from './Alert'
|
|
55
|
-
export { default as Alert } from './Alert'
|
|
56
|
-
export { default as Checkbox } from './Checkbox'
|
|
57
|
-
export type { CheckboxProps } from './Checkbox'
|
|
58
|
-
export { default as TreeSelect } from './TreeSelect'
|
|
59
|
-
export type { TreeSelectProps, TreeSelectNode } from './TreeSelect'
|
|
60
|
-
export { default as Divider } from './Divider'
|
|
61
|
-
export type { DividerProps } from './Divider'
|
|
62
|
-
export { default as Slider } from './Slider'
|
|
63
|
-
export type { SliderProps } from './Slider'
|
|
64
|
-
export { default as Transformer } from './Transformer'
|
|
65
|
-
export type { TransformerProps, TransformValue, TransformerInstance } from './Transformer'
|
|
66
|
-
export { default as Menu } from './Menu'
|
|
67
|
-
export type { MenuProps, MenuItem, MenuItemType, MenuDividerType } from './Menu'
|
|
68
|
-
export { default as Dropdown } from './Dropdown'
|
|
69
|
-
export type { DropdownProps } from './Dropdown'
|
|
70
|
-
export { default as Element } from './Element'
|
|
71
|
-
export type { ElementProps } from './Element'
|
|
72
|
-
export { default as Cursor } from './Cursor'
|
|
73
|
-
export type { CursorProps } from './Cursor'
|
|
74
|
-
export { default as Space } from './Space'
|
|
75
|
-
export { default as CodeInput } from './CodeInput'
|
|
76
|
-
export type { CodeInputProps } from './CodeInput'
|
|
77
|
-
export { default as message } from './Message'
|
|
78
|
-
export type { MessageApi } from './Message'
|
|
79
|
-
export { default as Command } from './Command'
|
|
80
|
-
export { default as ContextMenu } from './ContextMenu'
|
|
81
|
-
|
|
82
|
-
export { default as ConfigProvider } from './ConfigProvider'
|
|
83
|
-
export { default as Fragment } from './Fragment'
|
|
84
|
-
export { default as DelayShow } from './DelayShow'
|
|
85
|
-
export { default as TreeFor } from './TreeFor'
|
|
86
|
-
|
|
87
|
-
export { default as createControllableValue } from './hooks/createControllableValue'
|
|
88
|
-
export { default as useClickAway } from './hooks/useClickAway'
|
|
89
|
-
export { default as useSize } from './hooks/useSize'
|
|
90
|
-
export { default as useScroll } from './hooks/useScroll'
|
|
91
|
-
export { default as useHover } from './hooks/useHover'
|
|
92
|
-
export { default as useFocus } from './hooks/useFocus'
|
|
93
|
-
export { default as useVirtualList } from './hooks/useVirtualList'
|
|
94
|
-
export { default as useCounter } from './hooks/useCounter'
|
|
95
|
-
export { default as useMouse } from './hooks/useMouse'
|
|
96
|
-
|
|
97
|
-
export { setupGlobalDrag } from './utils/setupGlobalDrag'
|
|
98
|
-
|
|
99
|
-
export type { ComponentSize } from './types'
|
|
100
|
-
|
|
101
|
-
export { default as enUS } from './locale/en_US'
|
|
102
|
-
export { default as zhCN } from './locale/zh_CN'
|