tw-react-components 0.0.185 → 0.0.190
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 -6
- package/index.css +2 -2
- package/index.esm.js +460 -484
- package/package.json +3 -3
- package/src/components/Accordion/index.d.ts +19 -0
- package/src/components/Form/controls/primitive/BasicInput.d.ts +0 -1
- package/src/components/Form/controls/with-form.d.ts +1 -0
- package/src/components/Spinner/index.d.ts +1 -0
- package/src/components/index.d.ts +1 -0
- package/src/components/types.d.ts +1 -1
- /package/{index.esm.d.ts → index.d.ts} +0 -0
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# TailwindCSS React Components
|
|
2
2
|
|
|
3
3
|

|
|
4
|
-
[](https://codecov.io/gh/bacali95/tw-react-components)
|
|
4
|
+
[](https://codecov.io/gh/bacali95/tw-react-components)
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
A comprehensive library of React components built with TailwindCSS for creating beautiful and responsive dashboards.
|
|
@@ -71,20 +71,17 @@ Add the following import to your main CSS file:
|
|
|
71
71
|
This library provides a wide range of components:
|
|
72
72
|
|
|
73
73
|
- **Layout:** Building blocks for page layouts
|
|
74
|
-
|
|
75
74
|
- `Layout` - Main container for your application
|
|
76
75
|
- `Flex` - Flexible box layout component
|
|
77
76
|
- `Block` - Block-level layout component
|
|
78
77
|
- `Card` - Container with styling and functionality
|
|
79
78
|
|
|
80
79
|
- **Navigation:**
|
|
81
|
-
|
|
82
80
|
- `Navbar` - Top navigation bar
|
|
83
81
|
- `Sidebar` - Side navigation component
|
|
84
82
|
- `Tabs` - Tabbed interface component
|
|
85
83
|
|
|
86
84
|
- **Data Display:**
|
|
87
|
-
|
|
88
85
|
- `Table` - Regular table component
|
|
89
86
|
- `DataTable` - Advanced data table with sorting and filtering
|
|
90
87
|
- `List` - Displaying lists of data
|
|
@@ -92,13 +89,11 @@ This library provides a wide range of components:
|
|
|
92
89
|
- `Badge` - Small status indicator
|
|
93
90
|
|
|
94
91
|
- **Input & Form:**
|
|
95
|
-
|
|
96
92
|
- `Button` - Various button styles
|
|
97
93
|
- `Form` - Form controls and helpers
|
|
98
94
|
- `Switch` - Toggle switch component
|
|
99
95
|
|
|
100
96
|
- **Feedback & Overlay:**
|
|
101
|
-
|
|
102
97
|
- `Dialog` - Modal dialog boxes
|
|
103
98
|
- `Popover` - Content that appears over the UI
|
|
104
99
|
- `Tooltip` - Information shown on hover
|
package/index.css
CHANGED
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
|
|
35
35
|
--ring: 215 20.2% 65.1%;
|
|
36
36
|
|
|
37
|
-
--radius: 0.
|
|
37
|
+
--radius: 0.625rem;
|
|
38
38
|
|
|
39
39
|
--sidebar-background: var(--color-slate-100);
|
|
40
40
|
--sidebar-foreground: 240 5.3% 26.1%;
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
|
|
80
80
|
--ring: 216 34% 17%;
|
|
81
81
|
|
|
82
|
-
--radius: 0.
|
|
82
|
+
--radius: 0.625rem;
|
|
83
83
|
|
|
84
84
|
--sidebar-background: var(--color-slate-900);
|
|
85
85
|
--sidebar-foreground: 240 4.8% 95.9%;
|