thailife-react 0.0.19 → 0.0.21
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 +1 -19
- package/dist/components/DatePicker/DatePicker.d.ts +38 -0
- package/dist/components/DatePicker/DatePicker.d.ts.map +1 -0
- package/dist/components/DatePicker/DatePicker.stories.d.ts +17 -0
- package/dist/components/DatePicker/DatePicker.stories.d.ts.map +1 -0
- package/dist/components/DatePicker/examples.d.ts +4 -0
- package/dist/components/DatePicker/examples.d.ts.map +1 -0
- package/dist/components/DatePicker/index.d.ts +4 -0
- package/dist/components/DatePicker/index.d.ts.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.esm.js +555 -16
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +554 -14
- package/dist/index.js.map +1 -1
- package/dist/styles/index.css +6 -5
- package/package.json +4 -3
package/dist/styles/index.css
CHANGED
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
align-items: center;
|
|
95
95
|
justify-content: center;
|
|
96
96
|
border: none;
|
|
97
|
-
border-radius: var(--border-radius-md);
|
|
97
|
+
/* border-radius: var(--border-radius-md); */
|
|
98
98
|
font-family: var(--font-family-sans);
|
|
99
99
|
font-weight: 500;
|
|
100
100
|
cursor: pointer;
|
|
@@ -200,7 +200,7 @@
|
|
|
200
200
|
|
|
201
201
|
.input {
|
|
202
202
|
border: 1px solid var(--color-gray-300);
|
|
203
|
-
border-radius: var(--border-radius-md);
|
|
203
|
+
/* border-radius: var(--border-radius-md); */
|
|
204
204
|
transition: border-color var(--transition-base);
|
|
205
205
|
outline: none;
|
|
206
206
|
font-family: var(--font-family-sans);
|
|
@@ -238,6 +238,7 @@
|
|
|
238
238
|
|
|
239
239
|
.input-helper-text--error {
|
|
240
240
|
color: var(--color-error);
|
|
241
|
+
font-size: var(--font-size-xs);
|
|
241
242
|
}
|
|
242
243
|
|
|
243
244
|
/* Checkbox Component */
|
|
@@ -257,7 +258,7 @@
|
|
|
257
258
|
}
|
|
258
259
|
|
|
259
260
|
.checkbox {
|
|
260
|
-
border-radius: var(--border-radius-md);
|
|
261
|
+
/* border-radius: var(--border-radius-md); */
|
|
261
262
|
border: 1px solid var(--color-gray-300);
|
|
262
263
|
transition: all var(--transition-base);
|
|
263
264
|
outline: none;
|
|
@@ -370,7 +371,7 @@
|
|
|
370
371
|
|
|
371
372
|
.select {
|
|
372
373
|
border: 1px solid var(--color-gray-300);
|
|
373
|
-
border-radius: var(--border-radius-md);
|
|
374
|
+
/* border-radius: var(--border-radius-md); */
|
|
374
375
|
transition: border-color var(--transition-base);
|
|
375
376
|
outline: none;
|
|
376
377
|
appearance: none;
|
|
@@ -432,7 +433,7 @@
|
|
|
432
433
|
|
|
433
434
|
.textarea {
|
|
434
435
|
border: 1px solid var(--color-gray-300);
|
|
435
|
-
border-radius: var(--border-radius-md);
|
|
436
|
+
/* border-radius: var(--border-radius-md); */
|
|
436
437
|
transition: border-color var(--transition-base);
|
|
437
438
|
outline: none;
|
|
438
439
|
resize: vertical;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "thailife-react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.21",
|
|
4
4
|
"description": "A modern UI library built with React and CSS",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"dist"
|
|
12
12
|
],
|
|
13
13
|
"scripts": {
|
|
14
|
+
"dev": "vite",
|
|
14
15
|
"build": "rollup -c rollup.config.mjs && tsc --emitDeclarationOnly",
|
|
15
16
|
"build:watch": "rollup -c rollup.config.mjs -w",
|
|
16
17
|
"storybook": "storybook dev -p 6006",
|
|
@@ -78,8 +79,8 @@
|
|
|
78
79
|
"identity-obj-proxy": "^3.0.0",
|
|
79
80
|
"jest": "^29.7.0",
|
|
80
81
|
"jest-environment-jsdom": "^29.7.0",
|
|
81
|
-
"react": "
|
|
82
|
-
"react-dom": "
|
|
82
|
+
"react": "18.3.1",
|
|
83
|
+
"react-dom": "18.3.1",
|
|
83
84
|
"rollup": "^4.1.0",
|
|
84
85
|
"rollup-plugin-copy": "3.5.0",
|
|
85
86
|
"storybook": "^7.5.0",
|