sti-antd-package 0.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/dist/components/Button/Component.d.ts +4 -0
- package/dist/components/Button/Group/Add/Component.d.ts +3 -0
- package/dist/components/Button/Group/Add/index.d.ts +2 -0
- package/dist/components/Button/Group/Add/types.d.ts +9 -0
- package/dist/components/Button/Group/Edit/Component.d.ts +4 -0
- package/dist/components/Button/Group/Edit/index.d.ts +2 -0
- package/dist/components/Button/Group/Edit/types.d.ts +12 -0
- package/dist/components/Button/index.d.ts +2 -0
- package/dist/components/Button/types.d.ts +26 -0
- package/dist/components/Card/Component.d.ts +4 -0
- package/dist/components/Card/index.d.ts +2 -0
- package/dist/components/Card/types.d.ts +9 -0
- package/dist/components/index.d.ts +8 -0
- package/dist/constants/formColLayout.d.ts +31 -0
- package/dist/constants/index.d.ts +2 -0
- package/dist/helpers/colLayout.d.ts +11 -0
- package/dist/helpers/index.d.ts +1 -0
- package/dist/index.d.ts +108 -0
- package/dist/index.esm.js +2313 -0
- package/dist/index.js +2338 -0
- package/package.json +143 -0
- package/readme.md +7 -0
package/package.json
ADDED
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "sti-antd-package",
|
|
3
|
+
"description": "STI ANT Design",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.esm.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "rollup -c",
|
|
14
|
+
"prepare": "npm run build"
|
|
15
|
+
},
|
|
16
|
+
"directories": {
|
|
17
|
+
"example": "example",
|
|
18
|
+
"lib": "lib"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/stevan-iskandar/sti-antd-package.git"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"npm-package",
|
|
26
|
+
"antd"
|
|
27
|
+
],
|
|
28
|
+
"author": "Stevan Iskandar",
|
|
29
|
+
"license": "ISC",
|
|
30
|
+
"bugs": {
|
|
31
|
+
"url": "https://github.com/stevan-iskandar/sti-antd-package/issues"
|
|
32
|
+
},
|
|
33
|
+
"homepage": "https://github.com/stevan-iskandar/sti-antd-package#readme",
|
|
34
|
+
"peerDependencies": {
|
|
35
|
+
"@ant-design/icons": "^5.5.1",
|
|
36
|
+
"@types/react": "^19.0.12",
|
|
37
|
+
"@types/react-dom": "^19.0.4",
|
|
38
|
+
"antd": "^5.21.4",
|
|
39
|
+
"react": "^19.0.0",
|
|
40
|
+
"react-dom": "^19.0.0",
|
|
41
|
+
"typescript": "^5.8.2"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@ant-design/icons": "^5.6.1",
|
|
45
|
+
"@rollup/plugin-alias": "^5.1.1",
|
|
46
|
+
"@rollup/plugin-babel": "^6.0.4",
|
|
47
|
+
"@rollup/plugin-commonjs": "^28.0.3",
|
|
48
|
+
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
49
|
+
"@rollup/plugin-typescript": "^12.1.2",
|
|
50
|
+
"antd": "^5.24.4",
|
|
51
|
+
"postcss": "^8.5.3",
|
|
52
|
+
"rollup": "^4.36.0",
|
|
53
|
+
"rollup-plugin-dts": "^6.2.0",
|
|
54
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
55
|
+
"tslib": "^2.8.1"
|
|
56
|
+
},
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"browserslist": "^4.24.4",
|
|
59
|
+
"caniuse-lite": "^1.0.30001706",
|
|
60
|
+
"classnames": "^2.5.1",
|
|
61
|
+
"commondir": "^1.0.1",
|
|
62
|
+
"compute-scroll-into-view": "^3.1.1",
|
|
63
|
+
"convert-source-map": "^2.0.0",
|
|
64
|
+
"copy-to-clipboard": "^3.3.3",
|
|
65
|
+
"csstype": "^3.1.3",
|
|
66
|
+
"dayjs": "^1.11.13",
|
|
67
|
+
"debug": "^4.4.0",
|
|
68
|
+
"deepmerge": "^4.3.1",
|
|
69
|
+
"electron-to-chromium": "^1.5.122",
|
|
70
|
+
"escalade": "^3.2.0",
|
|
71
|
+
"estree-walker": "^2.0.2",
|
|
72
|
+
"fdir": "^6.4.3",
|
|
73
|
+
"function-bind": "^1.1.2",
|
|
74
|
+
"gensync": "^1.0.0-beta.2",
|
|
75
|
+
"globals": "^11.12.0",
|
|
76
|
+
"hasown": "^2.0.2",
|
|
77
|
+
"is-core-module": "^2.16.1",
|
|
78
|
+
"is-module": "^1.0.0",
|
|
79
|
+
"is-reference": "^1.2.1",
|
|
80
|
+
"js-tokens": "^4.0.0",
|
|
81
|
+
"jsesc": "^3.1.0",
|
|
82
|
+
"json2mq": "^0.2.0",
|
|
83
|
+
"json5": "^2.2.3",
|
|
84
|
+
"lru-cache": "^5.1.1",
|
|
85
|
+
"magic-string": "^0.30.17",
|
|
86
|
+
"ms": "^2.1.3",
|
|
87
|
+
"node-releases": "^2.0.19",
|
|
88
|
+
"path-parse": "^1.0.7",
|
|
89
|
+
"picocolors": "^1.1.1",
|
|
90
|
+
"picomatch": "^4.0.2",
|
|
91
|
+
"rc-cascader": "^3.33.1",
|
|
92
|
+
"rc-checkbox": "^3.5.0",
|
|
93
|
+
"rc-collapse": "^3.9.0",
|
|
94
|
+
"rc-dialog": "^9.6.0",
|
|
95
|
+
"rc-drawer": "^7.2.0",
|
|
96
|
+
"rc-dropdown": "^4.2.1",
|
|
97
|
+
"rc-field-form": "^2.7.0",
|
|
98
|
+
"rc-image": "^7.11.1",
|
|
99
|
+
"rc-input": "^1.7.3",
|
|
100
|
+
"rc-input-number": "^9.4.0",
|
|
101
|
+
"rc-mentions": "^2.19.1",
|
|
102
|
+
"rc-menu": "^9.16.1",
|
|
103
|
+
"rc-motion": "^2.9.5",
|
|
104
|
+
"rc-notification": "^5.6.3",
|
|
105
|
+
"rc-overflow": "^1.4.1",
|
|
106
|
+
"rc-pagination": "^5.1.0",
|
|
107
|
+
"rc-picker": "^4.11.3",
|
|
108
|
+
"rc-progress": "^4.0.0",
|
|
109
|
+
"rc-rate": "^2.13.1",
|
|
110
|
+
"rc-resize-observer": "^1.4.3",
|
|
111
|
+
"rc-segmented": "^2.7.0",
|
|
112
|
+
"rc-select": "^14.16.6",
|
|
113
|
+
"rc-slider": "^11.1.8",
|
|
114
|
+
"rc-steps": "^6.0.1",
|
|
115
|
+
"rc-switch": "^4.1.0",
|
|
116
|
+
"rc-table": "^7.50.4",
|
|
117
|
+
"rc-tabs": "^15.5.1",
|
|
118
|
+
"rc-textarea": "^1.9.0",
|
|
119
|
+
"rc-tooltip": "^6.4.0",
|
|
120
|
+
"rc-tree": "^5.13.1",
|
|
121
|
+
"rc-tree-select": "^5.27.0",
|
|
122
|
+
"rc-upload": "^4.8.1",
|
|
123
|
+
"rc-util": "^5.44.4",
|
|
124
|
+
"rc-virtual-list": "^3.18.4",
|
|
125
|
+
"react": "^19.0.0",
|
|
126
|
+
"react-dom": "^19.0.0",
|
|
127
|
+
"react-is": "^18.3.1",
|
|
128
|
+
"regenerator-runtime": "^0.14.1",
|
|
129
|
+
"resize-observer-polyfill": "^1.5.1",
|
|
130
|
+
"resolve": "^1.22.10",
|
|
131
|
+
"scheduler": "^0.25.0",
|
|
132
|
+
"scroll-into-view-if-needed": "^3.1.0",
|
|
133
|
+
"semver": "^6.3.1",
|
|
134
|
+
"string-convert": "^0.2.1",
|
|
135
|
+
"stylis": "^4.3.6",
|
|
136
|
+
"supports-preserve-symlinks-flag": "^1.0.0",
|
|
137
|
+
"throttle-debounce": "^5.0.2",
|
|
138
|
+
"toggle-selection": "^1.0.6",
|
|
139
|
+
"typescript": "^5.8.2",
|
|
140
|
+
"update-browserslist-db": "^1.1.3",
|
|
141
|
+
"yallist": "^3.1.1"
|
|
142
|
+
}
|
|
143
|
+
}
|