@indxsearch/systm 1.0.0 → 1.2.0
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 +25 -0
- package/dist/components/Button/Button.d.ts +1 -1
- package/dist/components/Checkbox/Checkbox.d.ts +1 -1
- package/dist/components/InputField/InputField.d.ts +1 -1
- package/dist/components/Popover/Popover.d.ts +1 -1
- package/dist/components/RadioButton/RadioButton.d.ts +1 -1
- package/dist/components/SearchField/SearchField.d.ts +1 -1
- package/dist/components/Select/Select.d.ts +1 -1
- package/dist/components/Slider/Slider.d.ts +1 -1
- package/dist/components/Table/Table.d.ts +6 -0
- package/dist/components/Table/TableCell.d.ts +7 -0
- package/dist/components/Table/TableHeader.d.ts +6 -0
- package/dist/components/Table/TableIcon.d.ts +10 -0
- package/dist/components/Table/TableRow.d.ts +6 -0
- package/dist/components/Table/TableValue.d.ts +6 -0
- package/dist/components/Table/index.d.ts +6 -0
- package/dist/components/ToggleSwitch/ToggleSwitch.d.ts +1 -1
- package/dist/cursors.css +196 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.es.js +1790 -1755
- package/dist/index.umd.js +10 -10
- package/dist/systm.css +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -41,6 +41,31 @@ function App() {
|
|
|
41
41
|
- **Base** - Base container component
|
|
42
42
|
- **FilterPanelBase** - Filter panel container
|
|
43
43
|
|
|
44
|
+
## Custom Cursors (Optional)
|
|
45
|
+
|
|
46
|
+
Systm includes an optional custom cursor system with 13 cursor utilities. Import the cursors stylesheet to enable:
|
|
47
|
+
|
|
48
|
+
```tsx
|
|
49
|
+
import '@indxsearch/systm/styles.css';
|
|
50
|
+
import '@indxsearch/systm/cursors.css'; // Optional custom cursors
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
**Available cursor utilities:**
|
|
54
|
+
- `.cursor-pointer` - Hand cursor for clickable elements
|
|
55
|
+
- `.cursor-text` - I-beam cursor for text selection
|
|
56
|
+
- `.cursor-resize-col` - Column resize cursor
|
|
57
|
+
- `.cursor-resize-ew` - Horizontal resize (↔)
|
|
58
|
+
- `.cursor-resize-ns` - Vertical resize (↕)
|
|
59
|
+
- `.cursor-resize-nwse` - Diagonal resize (↖↘)
|
|
60
|
+
- `.cursor-resize-nesw` - Diagonal resize (↗↙)
|
|
61
|
+
- `.cursor-move` - Four-way move cursor
|
|
62
|
+
- `.cursor-crosshair` - Crosshair for precise selection
|
|
63
|
+
- `.cursor-help` - Help cursor
|
|
64
|
+
- `.cursor-wait` - Loading cursor
|
|
65
|
+
- `.cursor-not-allowed` - Disabled state cursor
|
|
66
|
+
|
|
67
|
+
All cursors automatically adapt to dark mode via `prefers-color-scheme`.
|
|
68
|
+
|
|
44
69
|
## Dependencies
|
|
45
70
|
|
|
46
71
|
- `@indxsearch/pixl` - Icon library
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface IconProps {
|
|
3
|
+
size?: string | number;
|
|
4
|
+
color?: string;
|
|
5
|
+
}
|
|
6
|
+
interface TableIconProps {
|
|
7
|
+
children: React.ReactElement<IconProps>;
|
|
8
|
+
}
|
|
9
|
+
export declare function TableIcon({ children }: TableIconProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
package/dist/cursors.css
ADDED
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
/* Custom Cursors - 21x21 */
|
|
2
|
+
|
|
3
|
+
/* Default: Arrow cursor */
|
|
4
|
+
* {
|
|
5
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 3H15V6H18V9H12V15H9V12H6V6H3V0H9V3Z" fill="%231A1A21"/></svg>') 3 0, auto !important;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
/* I-beam: Text elements */
|
|
9
|
+
p, h1, h2, h3, h4, h5, h6, td, th,
|
|
10
|
+
input,
|
|
11
|
+
textarea {
|
|
12
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 18H6V15H9V18ZM15 18H12V15H15V18ZM12 15H9V6H12V15ZM9 6H6V3H9V6ZM15 6H12V3H15V6Z" fill="%231A1A21"/></svg>') 10 10, text !important;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/* Pointer: Interactive elements */
|
|
16
|
+
a, button,
|
|
17
|
+
input[type="radio"],
|
|
18
|
+
input[type="checkbox"],
|
|
19
|
+
input[type="submit"],
|
|
20
|
+
input[type="button"],
|
|
21
|
+
input[type="range"],
|
|
22
|
+
select {
|
|
23
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M9 0V3V6V9V12H6V9H3V12H6V15H9H12H15H18V12V9V6H15H12V3V0H9Z" fill="%231A1A21"/></svg>') 6 0, pointer !important;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
/* Text inside clickable elements should have pointer */
|
|
27
|
+
a *, button * {
|
|
28
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M9 0V3V6V9V12H6V9H3V12H6V15H9H12H15H18V12V9V6H15H12V3V0H9Z" fill="%231A1A21"/></svg>') 6 0, pointer !important;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/* Utility classes */
|
|
32
|
+
.cursor-pointer,
|
|
33
|
+
.cursor-pointer * {
|
|
34
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M9 0V3V6V9V12H6V9H3V12H6V15H9H12H15H18V12V9V6H15H12V3V0H9Z" fill="%231A1A21"/></svg>') 6 0, pointer !important;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.cursor-text,
|
|
38
|
+
.cursor-text * {
|
|
39
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 18H6V15H9V18ZM15 18H12V15H15V18ZM12 15H9V6H12V15ZM9 6H6V3H9V6ZM15 6H12V3H15V6Z" fill="%231A1A21"/></svg>') 10 10, text !important;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.cursor-resize-col,
|
|
43
|
+
.cursor-resize-col * {
|
|
44
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 18H9V3H12V18ZM6 15H3V12H6V15ZM18 15H15V12H18V15ZM3 12H0V9H3V12ZM21 12H18V9H21V12ZM6 9H3V6H6V9ZM18 9H15V6H18V9Z" fill="%231A1A21"/></svg>') 10 10, col-resize !important;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.cursor-resize-ew,
|
|
48
|
+
.cursor-resize-ew * {
|
|
49
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 15H6V12H9V15ZM15 15H12V12H15V15ZM6 12H3V9H6V12ZM18 12H15V9H18V12ZM9 9H6V6H9V9ZM15 9H12V6H15V9Z" fill="%23080809"/></svg>') 10 10, ew-resize !important;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.cursor-resize-ns,
|
|
53
|
+
.cursor-resize-ns * {
|
|
54
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 18H9V15H12V18ZM9 15H6V12H9V15ZM15 12V15H12V12H15ZM9 9H6V6H9V9ZM15 9H12V6H15V9ZM12 6H9V3H12V6Z" fill="%23080809"/></svg>') 10 10, ns-resize !important;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.cursor-not-allowed,
|
|
58
|
+
.cursor-not-allowed * {
|
|
59
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15 6H18V15H15V18H6V15H3V6H6V3H15V6ZM6 12H15V9H6V12Z" fill="%231A1A21"/></svg>') 10 10, not-allowed !important;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.cursor-wait,
|
|
63
|
+
.cursor-wait * {
|
|
64
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6 3H3V6H6V9H9V12H6V15H3V18H6H9H12H15H18V15H15V12H12V9H15V6H18V3H15H12H9H6ZM12 9H9V6H12V9Z" fill="%23080809"/></svg>') 10 10, wait !important;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.cursor-help,
|
|
68
|
+
.cursor-help * {
|
|
69
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 18H9V15H12V18ZM12 12H9V9H12V12ZM15 9H12V6H15V9ZM12 3V6H6V3H12Z" fill="%23080809"/></svg>') 10 10, help !important;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.cursor-move,
|
|
73
|
+
.cursor-move * {
|
|
74
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 18H9V15H12V18ZM6 12H3V9H6V12ZM12 12H9V9H12V12ZM18 12H15V9H18V12ZM12 6H9V3H12V6Z" fill="%23080809"/></svg>') 10 10, move !important;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.cursor-crosshair,
|
|
78
|
+
.cursor-crosshair * {
|
|
79
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 18H9V12H12V18ZM9 12H3V9H9V12ZM18 9V12H12V9H18ZM12 9H9V3H12V9Z" fill="%23080809"/></svg>') 10 10, crosshair !important;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.cursor-resize-nwse,
|
|
83
|
+
.cursor-resize-nwse * {
|
|
84
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 18H12V15H15V12H18V18ZM9 3V6H6V9H3V3H9Z" fill="%23080809"/></svg>') 10 10, nwse-resize !important;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.cursor-resize-nesw,
|
|
88
|
+
.cursor-resize-nesw * {
|
|
89
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 15H9V18H3V12H6V15ZM18 9H15V6H12V3H18V9Z" fill="%23080809"/></svg>') 10 10, nesw-resize !important;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/* Disabled states */
|
|
93
|
+
input:disabled,
|
|
94
|
+
textarea:disabled,
|
|
95
|
+
button:disabled,
|
|
96
|
+
select:disabled,
|
|
97
|
+
.disabled,
|
|
98
|
+
.disabled * {
|
|
99
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15 6H18V15H15V18H6V15H3V6H6V3H15V6ZM6 12H15V9H6V12Z" fill="%231A1A21"/></svg>') 10 10, not-allowed !important;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
/* Dark Mode - Use CSS filter to invert colors */
|
|
103
|
+
@media (prefers-color-scheme: dark) {
|
|
104
|
+
* {
|
|
105
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 3H15V6H18V9H12V15H9V12H6V6H3V0H9V3Z" fill="%23EFEFEF"/></svg>') 3 0, auto !important;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
p, h1, h2, h3, h4, h5, h6, td, th,
|
|
109
|
+
input,
|
|
110
|
+
textarea {
|
|
111
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 18H6V15H9V18ZM15 18H12V15H15V18ZM12 15H9V6H12V15ZM9 6H6V3H9V6ZM15 6H12V3H15V6Z" fill="%23EFEFEF"/></svg>') 10 10, text !important;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
a, button,
|
|
115
|
+
input[type="radio"],
|
|
116
|
+
input[type="checkbox"],
|
|
117
|
+
input[type="submit"],
|
|
118
|
+
input[type="button"],
|
|
119
|
+
input[type="range"],
|
|
120
|
+
select {
|
|
121
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M9 0V3V6V9V12H6V9H3V12H6V15H9H12H15H18V12V9V6H15H12V3V0H9Z" fill="%23EFEFEF"/></svg>') 6 0, pointer !important;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
a *, button * {
|
|
125
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M9 0V3V6V9V12H6V9H3V12H6V15H9H12H15H18V12V9V6H15H12V3V0H9Z" fill="%23EFEFEF"/></svg>') 6 0, pointer !important;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.cursor-pointer,
|
|
129
|
+
.cursor-pointer * {
|
|
130
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M9 0V3V6V9V12H6V9H3V12H6V15H9H12H15H18V12V9V6H15H12V3V0H9Z" fill="%23EFEFEF"/></svg>') 6 0, pointer !important;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.cursor-text,
|
|
134
|
+
.cursor-text * {
|
|
135
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 18H6V15H9V18ZM15 18H12V15H15V18ZM12 15H9V6H12V15ZM9 6H6V3H9V6ZM15 6H12V3H15V6Z" fill="%23EFEFEF"/></svg>') 10 10, text !important;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.cursor-resize-col,
|
|
139
|
+
.cursor-resize-col * {
|
|
140
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 18H9V3H12V18ZM6 15H3V12H6V15ZM18 15H15V12H18V15ZM3 12H0V9H3V12ZM21 12H18V9H21V12ZM6 9H3V6H6V9ZM18 9H15V6H18V9Z" fill="%23EFEFEF"/></svg>') 10 10, col-resize !important;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.cursor-resize-ew,
|
|
144
|
+
.cursor-resize-ew * {
|
|
145
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 15H6V12H9V15ZM15 15H12V12H15V15ZM6 12H3V9H6V12ZM18 12H15V9H18V12ZM9 9H6V6H9V9ZM15 9H12V6H15V9Z" fill="%23EFEFEF"/></svg>') 10 10, ew-resize !important;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.cursor-resize-ns,
|
|
149
|
+
.cursor-resize-ns * {
|
|
150
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 18H9V15H12V18ZM9 15H6V12H9V15ZM15 12V15H12V12H15ZM9 9H6V6H9V9ZM15 9H12V6H15V9ZM12 6H9V3H12V6Z" fill="%23EFEFEF"/></svg>') 10 10, ns-resize !important;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.cursor-not-allowed,
|
|
154
|
+
.cursor-not-allowed * {
|
|
155
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15 6H18V15H15V18H6V15H3V6H6V3H15V6ZM6 12H15V9H6V12Z" fill="%23EFEFEF"/></svg>') 10 10, not-allowed !important;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.cursor-wait,
|
|
159
|
+
.cursor-wait * {
|
|
160
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6 3H3V6H6V9H9V12H6V15H3V18H6H9H12H15H18V15H15V12H12V9H15V6H18V3H15H12H9H6ZM12 9H9V6H12V9Z" fill="%23EFEFEF"/></svg>') 10 10, wait !important;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.cursor-help,
|
|
164
|
+
.cursor-help * {
|
|
165
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 18H9V15H12V18ZM12 12H9V9H12V12ZM15 9H12V6H15V9ZM12 3V6H6V3H12Z" fill="%23EFEFEF"/></svg>') 10 10, help !important;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.cursor-move,
|
|
169
|
+
.cursor-move * {
|
|
170
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 18H9V15H12V18ZM6 12H3V9H6V12ZM12 12H9V9H12V12ZM18 12H15V9H18V12ZM12 6H9V3H12V6Z" fill="%23EFEFEF"/></svg>') 10 10, move !important;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.cursor-crosshair,
|
|
174
|
+
.cursor-crosshair * {
|
|
175
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 18H9V12H12V18ZM9 12H3V9H9V12ZM18 9V12H12V9H18ZM12 9H9V3H12V9Z" fill="%23EFEFEF"/></svg>') 10 10, crosshair !important;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.cursor-resize-nwse,
|
|
179
|
+
.cursor-resize-nwse * {
|
|
180
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 18H12V15H15V12H18V18ZM9 3V6H6V9H3V3H9Z" fill="%23EFEFEF"/></svg>') 10 10, nwse-resize !important;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.cursor-resize-nesw,
|
|
184
|
+
.cursor-resize-nesw * {
|
|
185
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 15H9V18H3V12H6V15ZM18 9H15V6H12V3H18V9Z" fill="%23EFEFEF"/></svg>') 10 10, nesw-resize !important;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
input:disabled,
|
|
189
|
+
textarea:disabled,
|
|
190
|
+
button:disabled,
|
|
191
|
+
select:disabled,
|
|
192
|
+
.disabled,
|
|
193
|
+
.disabled * {
|
|
194
|
+
cursor: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15 6H18V15H15V18H6V15H3V6H6V3H15V6ZM6 12H15V9H6V12Z" fill="%23EFEFEF"/></svg>') 10 10, not-allowed !important;
|
|
195
|
+
}
|
|
196
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import './globals/globals.css';
|
|
1
2
|
export { Button } from './components/Button/Button';
|
|
2
3
|
export { Checkbox } from './components/Checkbox/Checkbox';
|
|
3
4
|
export { Base, type BaseProps } from './components/Base/Base';
|
|
@@ -10,3 +11,4 @@ export { ToggleSwitch } from './components/ToggleSwitch/ToggleSwitch';
|
|
|
10
11
|
export { Slider } from './components/Slider/Slider';
|
|
11
12
|
export { Select, type SelectOption, type SelectProps } from './components/Select/Select';
|
|
12
13
|
export { Popover, type PopoverProps } from './components/Popover';
|
|
14
|
+
export { Table, TableHeader, TableRow, TableCell, TableValue, TableIcon } from './components/Table';
|