wini-web-components 0.4.0 → 0.5.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/component/calendar/calendar.d.ts +46 -0
- package/dist/component/calendar/calendar.js +426 -0
- package/dist/component/checkbox/checkbox.d.ts +20 -0
- package/dist/component/checkbox/checkbox.js +79 -0
- package/dist/component/component-status.d.ts +8 -0
- package/dist/component/component-status.js +32 -0
- package/dist/component/date-picker/date-picker.d.ts +31 -0
- package/dist/component/date-picker/date-picker.js +358 -0
- package/dist/component/dialog/dialog.d.ts +33 -0
- package/dist/component/dialog/dialog.js +96 -0
- package/dist/component/import-file/import-file.d.ts +35 -0
- package/dist/component/import-file/import-file.js +117 -0
- package/dist/component/infinite-scroll/infinite-scroll.d.ts +16 -0
- package/dist/component/infinite-scroll/infinite-scroll.js +102 -0
- package/dist/component/input-multi-select/input-multi-select.d.ts +39 -0
- package/dist/component/input-multi-select/input-multi-select.js +249 -0
- package/dist/component/pagination/pagination.d.ts +11 -0
- package/dist/component/pagination/pagination.js +46 -0
- package/dist/component/popup/popup.d.ts +31 -0
- package/dist/component/popup/popup.js +105 -0
- package/dist/component/progress-bar/progress-bar.d.ts +16 -0
- package/dist/component/progress-bar/progress-bar.js +39 -0
- package/dist/component/progress-circle/progress-circle.d.ts +13 -0
- package/dist/component/progress-circle/progress-circle.js +31 -0
- package/dist/component/radio-button/radio-button.d.ts +20 -0
- package/dist/component/radio-button/radio-button.js +64 -0
- package/dist/component/rating/rating.d.ts +23 -0
- package/dist/component/rating/rating.js +76 -0
- package/dist/component/select1/select1.d.ts +38 -0
- package/dist/component/select1/select1.js +185 -0
- package/dist/component/slider/slider.d.ts +31 -0
- package/dist/component/slider/slider.js +83 -0
- package/dist/component/switch/switch.d.ts +23 -0
- package/dist/component/switch/switch.js +81 -0
- package/dist/component/table/table.d.ts +46 -0
- package/dist/component/table/table.js +119 -0
- package/dist/component/text/text.d.ts +14 -0
- package/dist/component/text/text.js +50 -0
- package/dist/component/text-area/text-area.d.ts +25 -0
- package/dist/component/text-area/text-area.js +47 -0
- package/dist/component/text-field/text-field.d.ts +28 -0
- package/dist/component/text-field/text-field.js +50 -0
- package/dist/component/toast-noti/toast-noti.d.ts +4 -0
- package/dist/component/toast-noti/toast-noti.js +27 -0
- package/dist/index.d.ts +26 -0
- package/dist/index.js +59 -1
- package/package.json +12 -12
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wini-web-components",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1",
|
|
4
|
+
"main": "dist/index.js",
|
|
5
|
+
"types": "dist/index.d.ts",
|
|
4
6
|
"dependencies": {
|
|
5
7
|
"@fortawesome/free-solid-svg-icons": "^6.5.2",
|
|
6
8
|
"@fortawesome/react-fontawesome": "^0.2.2",
|
|
7
|
-
"
|
|
8
|
-
"react": "^18.0.0",
|
|
9
|
+
"react": "^18.3.1",
|
|
9
10
|
"react-awesome-slider": "^4.1.0",
|
|
10
|
-
"react-dom": "^18.
|
|
11
|
+
"react-dom": "^18.3.1",
|
|
11
12
|
"react-hook-form": "^7.52.0",
|
|
12
13
|
"react-paginate": "^8.2.0",
|
|
13
14
|
"react-scripts": "5.0.1",
|
|
@@ -16,7 +17,8 @@
|
|
|
16
17
|
},
|
|
17
18
|
"scripts": {
|
|
18
19
|
"build": "webpack --mode development",
|
|
19
|
-
"build:prod": "webpack --mode production"
|
|
20
|
+
"build:prod": "webpack --mode production",
|
|
21
|
+
"build:types": "tsc"
|
|
20
22
|
},
|
|
21
23
|
"eslintConfig": {
|
|
22
24
|
"extends": [
|
|
@@ -36,8 +38,6 @@
|
|
|
36
38
|
"last 1 safari version"
|
|
37
39
|
]
|
|
38
40
|
},
|
|
39
|
-
"description": "This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).",
|
|
40
|
-
"main": "dist/index.js",
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"react": "^18.0.0",
|
|
43
43
|
"react-dom": "^18.0.0"
|
|
@@ -47,17 +47,17 @@
|
|
|
47
47
|
"@babel/preset-env": "^7.0.0",
|
|
48
48
|
"@babel/preset-react": "^7.0.0",
|
|
49
49
|
"@babel/preset-typescript": "^7.0.0",
|
|
50
|
-
"@types/react": "^18.0.0",
|
|
51
|
-
"@types/react-dom": "^18.0.0",
|
|
52
50
|
"babel-loader": "^8.0.0",
|
|
51
|
+
"webpack": "^5.0.0",
|
|
52
|
+
"webpack-cli": "^4.0.0",
|
|
53
53
|
"css-loader": "^5.0.0",
|
|
54
54
|
"style-loader": "^2.0.0",
|
|
55
55
|
"typescript": "^4.0.0",
|
|
56
|
-
"
|
|
57
|
-
"
|
|
56
|
+
"@types/react": "^18.0.0",
|
|
57
|
+
"@types/react-dom": "^18.0.0"
|
|
58
58
|
},
|
|
59
59
|
"publishConfig": {
|
|
60
|
-
"
|
|
60
|
+
"registry": "https://registry.npmjs.org/"
|
|
61
61
|
},
|
|
62
62
|
"repository": {
|
|
63
63
|
"type": "git",
|