solid-element-ui 0.1.8 → 0.1.11

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 (2) hide show
  1. package/index.tsx +95 -0
  2. package/package.json +35 -27
package/index.tsx ADDED
@@ -0,0 +1,95 @@
1
+ // TODO ICONS 的选择
2
+ // TODO 国际化的选择
3
+ // TODO 主题定制
4
+ // TODO 文档站点搭建
5
+ // TODO 单元测试
6
+ // TODO CI/CD 流水线搭建
7
+ // TODO 专属css
8
+ // TODO 格栅布局,flex布局,space看情况再说添加不添加
9
+
10
+ import "../css/index.css";
11
+ export { SeButton } from "@solid-element-ui/components/button/src/button.tsx";
12
+ export { SeButtonGroup } from "@solid-element-ui/components/button/src/button-group.tsx";
13
+ export { SeAffix } from "@solid-element-ui/components/affix/src/affix.tsx";
14
+ export { SeBreadcrumb } from "@solid-element-ui/components/breadcrumb/src/breadcrumb.tsx";
15
+ export { SeBreadcrumbItem } from "@solid-element-ui/components/breadcrumb/src/breadcrumb-item.tsx";
16
+ export { SeAnchor } from "@solid-element-ui/components/anchor/src/anchor.tsx";
17
+ export { SeAnchorLink } from "@solid-element-ui/components/anchor/src/anchor-link.tsx";
18
+
19
+ export { SeDivider } from "@solid-element-ui/components/divider/src/divider.tsx";
20
+
21
+ export { SeAutocomplete } from "@solid-element-ui/components/autocomplete/src/autocomplete.tsx";
22
+
23
+ export { SeCascader } from "@solid-element-ui/components/cascader/src/cascader.tsx";
24
+ export { SeCheckbox } from "@solid-element-ui/components/checkbox/src/checkbox.tsx";
25
+
26
+ export { SeColorPicker } from "@solid-element-ui/components/color-picker/src/color-picker.tsx";
27
+
28
+ export { SeDatePicker } from "@solid-element-ui/components/date-picker/src/date-picker.tsx";
29
+
30
+ export { SeForm } from "@solid-element-ui/components/form/src/form.tsx";
31
+ export { SeFormItem } from "@solid-element-ui/components/form/src/form-item.tsx";
32
+ export { SeInput } from "@solid-element-ui/components/input/src/input.tsx";
33
+ export { SeInputNumber } from "@solid-element-ui/components/input-number/src/input-number.tsx";
34
+ export { SeInputTag } from "@solid-element-ui/components/input-tag/src/input-tag.tsx";
35
+ export { SeMentions } from "@solid-element-ui/components/mentions/src/mentions.tsx";
36
+
37
+ export { SeRadio } from "@solid-element-ui/components/radio/src/radio.tsx";
38
+ export { SeRadioGroup } from "@solid-element-ui/components/radio/src/radio-group.tsx";
39
+ export { SeRate } from "@solid-element-ui/components/rate/src/rate.tsx";
40
+ export { SeSelect } from "@solid-element-ui/components/select/src/select.tsx";
41
+ export { SeSlider } from "@solid-element-ui/components/slider/src/slider.tsx";
42
+ export { SeSwitch } from "@solid-element-ui/components/switch/src/switch.tsx";
43
+ export { SeTimePicker } from "@solid-element-ui/components/time-picker/src/time-picker.tsx";
44
+ export { SeTransfer } from "@solid-element-ui/components/transfer/src/transfer.tsx";
45
+ export { SeTreeSelect } from "@solid-element-ui/components/tree-select/src/tree-select.tsx";
46
+ export { SeUpload } from "@solid-element-ui/components/upload/src/upload.tsx";
47
+ export { type UploadFile } from "@solid-element-ui/components/upload/src/setting.ts";
48
+ export { SeAvatar } from "@solid-element-ui/components/avatar/src/avatar.tsx";
49
+ export { SeBadge } from "@solid-element-ui/components/badge/src/badge.tsx";
50
+ export { SeCalendar } from "@solid-element-ui/components/calendar/src/calendar.tsx";
51
+ export { SeCard } from "@solid-element-ui/components/card/src/card.tsx";
52
+ export { SeCarousel } from "@solid-element-ui/components/carousel/src/carousel.tsx";
53
+ export { SeCollapse } from "@solid-element-ui/components/collapse/src/collapse.tsx";
54
+ export { SeCollapsePanel } from "@solid-element-ui/components/collapse/src/collapse-panel.tsx";
55
+ export { SeDescription } from "@solid-element-ui/components/description/src/description.tsx";
56
+ export { SeDescriptionItem } from "@solid-element-ui/components/description/src/description-item.tsx";
57
+ export { SeEmpty } from "@solid-element-ui/components/empty/src/empty.tsx";
58
+ export { SeImage } from "@solid-element-ui/components/image/src/image.tsx";
59
+ export { SePopover } from "@solid-element-ui/components/popover/src/popover.tsx";
60
+ export { SeSegmented } from "@solid-element-ui/components/segmented/src/segmented.tsx";
61
+ export { SeStatistic } from "@solid-element-ui/components/statistic/src/statistic.tsx";
62
+ export { SeTable } from "@solid-element-ui/components/table/src/table.tsx";
63
+ export { type ColumnType } from "@solid-element-ui/components/table/src/setting.ts";
64
+ export { SeTag } from "@solid-element-ui/components/tag/src/tag.tsx";
65
+ export { SeTimeline } from "@solid-element-ui/components/timeline/src/timeline.tsx";
66
+ export { SeTimelineItem } from "@solid-element-ui/components/timeline/src/timeline-item.tsx";
67
+ export { SeTooltip } from "@solid-element-ui/components/tooltip/src/tooltip.tsx";
68
+ export { SeTour } from "@solid-element-ui/components/tour/src/tour.tsx";
69
+ export { SeTree } from "@solid-element-ui/components/tree/src/tree.tsx";
70
+ export { type TreeData } from "@solid-element-ui/components/tree/src/setting.ts";
71
+ export { SeAlert } from "@solid-element-ui/components/alert/src/alert.tsx";
72
+ export { SeDrawer } from "@solid-element-ui/components/drawer/src/drawer.tsx";
73
+ export { SeMessage } from "@solid-element-ui/components/message/src/message.tsx";
74
+ export { SeModal } from "@solid-element-ui/components/modal/src/modal.tsx";
75
+ export { SeNotification } from "@solid-element-ui/components/notification/src/notification.tsx";
76
+ export { SePopconfirm } from "@solid-element-ui/components/popconfirm/src/popconfirm.tsx";
77
+ export { SeProgress } from "@solid-element-ui/components/progress/src/progress.tsx";
78
+ export { SeResult } from "@solid-element-ui/components/result/src/result.tsx";
79
+ export { SeSkeleton } from "@solid-element-ui/components/skeleton/src/skeleton.tsx";
80
+ export { SeSkeletonElement } from "@solid-element-ui/components/skeleton/src/skeleton.tsx";
81
+ export { SeSpin } from "@solid-element-ui/components/spin/src/spin.tsx";
82
+ export { SeWatermark } from "@solid-element-ui/components/watermark/src/watermark.tsx";
83
+ export { SeDropdown } from "@solid-element-ui/components/dropdown/src/dropdown.tsx";
84
+ export { SeMenu } from "@solid-element-ui/components/menu/src/menu.tsx";
85
+ export { type MenuItemType } from "@solid-element-ui/components/menu/src/setting.ts";
86
+ export { SePagination } from "@solid-element-ui/components/pagination/src/pagination.tsx";
87
+ export { SeSteps } from "@solid-element-ui/components/steps/src/steps.tsx";
88
+ export { SeTabs } from "@solid-element-ui/components/tabs/src/tabs.tsx";
89
+ export { SeMasonry } from "@solid-element-ui/components/masonry/src/masonry.tsx";
90
+
91
+ const justForTest = () => {
92
+ console.log("just for test");
93
+ };
94
+
95
+ export default justForTest;
package/package.json CHANGED
@@ -1,9 +1,41 @@
1
1
  {
2
2
  "name": "solid-element-ui",
3
- "version": "0.1.8",
3
+ "version": "0.1.11",
4
+ "description": "A Component Library for solidjs",
5
+ "type": "module",
6
+ "files": [
7
+ "dist",
8
+ "README.md",
9
+ "index.tsx",
10
+ "src"
11
+ ],
12
+ "main": "./dist/index.js",
13
+ "module": "./dist/index.js",
14
+ "types": "./dist/index.d.ts",
15
+ "source": "./index.tsx",
16
+ "exports": {
17
+ ".": {
18
+ "types": "./dist/index.d.ts",
19
+ "import": "./dist/index.js",
20
+ "browser": "./dist/index.js",
21
+ "development": "./index.tsx",
22
+ "default": "./dist/index.js"
23
+ }
24
+ },
25
+ "scripts": {
26
+ "dev": "vite",
27
+ "build": "tsc -b && vite build",
28
+ "preview": "vite preview"
29
+ },
30
+ "peerDependencies": {
31
+ "solid-js": "^1.0.0"
32
+ },
33
+ "devDependencies": {
34
+ "@solid-element-ui/components": "workspace:*",
35
+ "@solid-element-ui/utils": "workspace:*"
36
+ },
4
37
  "license": "MIT",
5
38
  "author": "sanguogege",
6
- "description": "A Component Library for solidjs",
7
39
  "keywords": [
8
40
  "solid-element-ui",
9
41
  "element",
@@ -23,29 +55,5 @@
23
55
  "bugs": {
24
56
  "url": "https://github.com/sanguogege/solid-element-ui/issues"
25
57
  },
26
- "type": "module",
27
- "files": [
28
- "dist",
29
- "README.md"
30
- ],
31
- "main": "./dist/index.js",
32
- "module": "./dist/index.js",
33
- "sideEffects": false,
34
- "types": "./dist/index.d.ts",
35
- "exports": {
36
- ".": {
37
- "types": "./dist/index.d.ts",
38
- "import": "./dist/index.js",
39
- "development": "./index.ts"
40
- }
41
- },
42
- "dependencies": {
43
- "@solid-element-ui/components": "workspace:*",
44
- "@solid-element-ui/utils": "workspace:*"
45
- },
46
- "scripts": {
47
- "dev": "vite",
48
- "build": "tsc -b && vite build",
49
- "preview": "vite preview"
50
- }
58
+ "sideEffects": false
51
59
  }