@usetrip/react-ui 0.1.0 → 0.2.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/README.md +347 -0
- package/dist/AlertBox.cjs +1 -0
- package/dist/AlertBox.d.ts +15 -0
- package/dist/AlertBox.js +5 -0
- package/dist/Button.cjs +1 -0
- package/dist/Button.d.ts +22 -0
- package/dist/Button.js +6 -0
- package/dist/ButtonLink.cjs +1 -0
- package/dist/ButtonLink.d.ts +25 -0
- package/dist/ButtonLink.js +6 -0
- package/dist/CalendarInput.cjs +1 -0
- package/dist/CalendarInput.d.ts +19 -0
- package/dist/CalendarInput.js +5 -0
- package/dist/CustomEditor.cjs +1 -0
- package/dist/CustomEditor.d.ts +16 -0
- package/dist/CustomEditor.js +5 -0
- package/dist/InputCounter.cjs +1 -0
- package/dist/InputCounter.d.ts +18 -0
- package/dist/InputCounter.js +5 -0
- package/dist/RangeDatePicker.cjs +1 -0
- package/dist/RangeDatePicker.d.ts +17 -0
- package/dist/RangeDatePicker.js +5 -0
- package/dist/SearchInput.cjs +1 -0
- package/dist/SearchInput.d.ts +15 -0
- package/dist/SearchInput.js +5 -0
- package/dist/TextField.cjs +1 -0
- package/dist/TextField.d.ts +27 -0
- package/dist/TextField.js +5 -0
- package/dist/Typography.cjs +1 -0
- package/dist/Typography.d.ts +25 -0
- package/dist/Typography.js +5 -0
- package/dist/chunks/AlertBox-TM5iLIH2.js +26 -0
- package/dist/chunks/AlertBox-b6dgMZ5I.cjs +1 -0
- package/dist/chunks/Button-C2ZQLgBk.js +75 -0
- package/dist/chunks/Button-DjizmSRN.cjs +1 -0
- package/dist/chunks/ButtonLink-C1BjiV2m.cjs +1 -0
- package/dist/chunks/ButtonLink-CG6S2pym.js +105 -0
- package/dist/chunks/CalendarInput-CPV0f1Gl.cjs +1 -0
- package/dist/chunks/CalendarInput-CxvAV7hK.js +58 -0
- package/dist/chunks/CustomEditor-BW_Mgv0y.cjs +1 -0
- package/dist/chunks/CustomEditor-q2MqCUUF.js +28 -0
- package/dist/chunks/InputCounter-6ZYoaiaX.js +46 -0
- package/dist/chunks/InputCounter-srYivV6j.cjs +1 -0
- package/dist/chunks/RangeDatePicker-CoEU93mq.cjs +1 -0
- package/dist/chunks/RangeDatePicker-DwccOp_Y.js +458 -0
- package/dist/chunks/SearchInput-5J5H9Yfv.js +55 -0
- package/dist/chunks/SearchInput-Dp1Q72Co.cjs +1 -0
- package/dist/chunks/TextField-DX6eZufy.js +145 -0
- package/dist/chunks/TextField-Dr3vhUtA.cjs +1 -0
- package/dist/chunks/Typography-B892BQsd.js +166 -0
- package/dist/chunks/Typography-CTDehHO_.cjs +1 -0
- package/dist/chunks/utils-D1b-iVvd.cjs +1 -0
- package/dist/chunks/utils-D9fNSpDp.js +8 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +22 -1110
- package/package.json +52 -1
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@usetrip/react-ui",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"type": "module",
|
|
5
|
+
"sideEffects": false,
|
|
5
6
|
"main": "dist/index.cjs",
|
|
6
7
|
"module": "dist/index.js",
|
|
7
8
|
"types": "dist/index.d.ts",
|
|
@@ -11,6 +12,56 @@
|
|
|
11
12
|
"import": "./dist/index.js",
|
|
12
13
|
"require": "./dist/index.cjs"
|
|
13
14
|
},
|
|
15
|
+
"./Button": {
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"import": "./dist/Button.js",
|
|
18
|
+
"require": "./dist/Button.cjs"
|
|
19
|
+
},
|
|
20
|
+
"./ButtonLink": {
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"import": "./dist/ButtonLink.js",
|
|
23
|
+
"require": "./dist/ButtonLink.cjs"
|
|
24
|
+
},
|
|
25
|
+
"./TextField": {
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"import": "./dist/TextField.js",
|
|
28
|
+
"require": "./dist/TextField.cjs"
|
|
29
|
+
},
|
|
30
|
+
"./Typography": {
|
|
31
|
+
"types": "./dist/index.d.ts",
|
|
32
|
+
"import": "./dist/Typography.js",
|
|
33
|
+
"require": "./dist/Typography.cjs"
|
|
34
|
+
},
|
|
35
|
+
"./AlertBox": {
|
|
36
|
+
"types": "./dist/index.d.ts",
|
|
37
|
+
"import": "./dist/AlertBox.js",
|
|
38
|
+
"require": "./dist/AlertBox.cjs"
|
|
39
|
+
},
|
|
40
|
+
"./SearchInput": {
|
|
41
|
+
"types": "./dist/index.d.ts",
|
|
42
|
+
"import": "./dist/SearchInput.js",
|
|
43
|
+
"require": "./dist/SearchInput.cjs"
|
|
44
|
+
},
|
|
45
|
+
"./CalendarInput": {
|
|
46
|
+
"types": "./dist/index.d.ts",
|
|
47
|
+
"import": "./dist/CalendarInput.js",
|
|
48
|
+
"require": "./dist/CalendarInput.cjs"
|
|
49
|
+
},
|
|
50
|
+
"./InputCounter": {
|
|
51
|
+
"types": "./dist/index.d.ts",
|
|
52
|
+
"import": "./dist/InputCounter.js",
|
|
53
|
+
"require": "./dist/InputCounter.cjs"
|
|
54
|
+
},
|
|
55
|
+
"./RangeDatePicker": {
|
|
56
|
+
"types": "./dist/index.d.ts",
|
|
57
|
+
"import": "./dist/RangeDatePicker.js",
|
|
58
|
+
"require": "./dist/RangeDatePicker.cjs"
|
|
59
|
+
},
|
|
60
|
+
"./CustomEditor": {
|
|
61
|
+
"types": "./dist/index.d.ts",
|
|
62
|
+
"import": "./dist/CustomEditor.js",
|
|
63
|
+
"require": "./dist/CustomEditor.cjs"
|
|
64
|
+
},
|
|
14
65
|
"./dist/react-ui.css": {
|
|
15
66
|
"style": "./dist/react-ui.css",
|
|
16
67
|
"default": "./dist/react-ui.css"
|