@inntechcorp/it-design 2.0.142 → 2.0.144
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.
|
@@ -61,6 +61,35 @@
|
|
|
61
61
|
-webkit-box-shadow: 0 0 0 30px #151d3d inset !important;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
+
.arrow {
|
|
65
|
+
transition: all 0.25s ease-out;
|
|
66
|
+
margin-left: auto;
|
|
67
|
+
transform: rotate(0deg);
|
|
68
|
+
width: 20px;
|
|
69
|
+
height: 20px;
|
|
70
|
+
fill: rgba(255, 255, 255, 0.6);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.arrowNormal {
|
|
74
|
+
margin-left: auto;
|
|
75
|
+
transform: rotate(-90deg);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.arrowOpen {
|
|
79
|
+
transform: rotate(-180deg);
|
|
80
|
+
fill: #ffffff;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.icon {
|
|
84
|
+
margin-right: 8px;
|
|
85
|
+
height: 22px;
|
|
86
|
+
width: 22px;
|
|
87
|
+
color: rgba(255, 255, 255, 0.6);
|
|
88
|
+
font-size: 22px;
|
|
89
|
+
display: flex;
|
|
90
|
+
align-items: center;
|
|
91
|
+
}
|
|
92
|
+
|
|
64
93
|
.option {
|
|
65
94
|
display: flex;
|
|
66
95
|
align-items: center;
|
|
@@ -153,35 +182,6 @@
|
|
|
153
182
|
transition: height 150ms ease-out;
|
|
154
183
|
}
|
|
155
184
|
|
|
156
|
-
.arrow {
|
|
157
|
-
transition: all 0.25s ease-out;
|
|
158
|
-
margin-left: auto;
|
|
159
|
-
transform: rotate(0deg);
|
|
160
|
-
width: 20px;
|
|
161
|
-
height: 20px;
|
|
162
|
-
fill: rgba(255, 255, 255, 0.6);
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
.arrowNormal {
|
|
166
|
-
margin-left: auto;
|
|
167
|
-
transform: rotate(-90deg);
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
.arrowOpen {
|
|
171
|
-
transform: rotate(-180deg);
|
|
172
|
-
fill: #ffffff;
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
.icon {
|
|
176
|
-
margin-right: 8px;
|
|
177
|
-
height: 22px;
|
|
178
|
-
width: 22px;
|
|
179
|
-
color: rgba(255, 255, 255, 0.6);
|
|
180
|
-
font-size: 22px;
|
|
181
|
-
display: flex;
|
|
182
|
-
align-items: center;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
185
|
.container {
|
|
186
186
|
display: flex;
|
|
187
187
|
align-items: center;
|
package/dist/table/index.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import { CSSProperties } from "react";
|
|
1
2
|
import { TableProps } from "../index";
|
|
2
|
-
declare const Table: <T>({ columns, data, cellHeight, size, headless, bordered, dashed, noGaps, overflow }: TableProps<T>
|
|
3
|
+
declare const Table: <T>({ columns, data, cellHeight, size, headless, bordered, dashed, noGaps, overflow, getTRProps }: TableProps<T> & {
|
|
4
|
+
getTRProps?: (row: T, rowIndex: number) => CSSProperties;
|
|
5
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
3
6
|
export default Table;
|