@inceptionbg/iui 2.0.14 → 2.0.16
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/dist/NoAccessPage-BmizYfw0.js +2 -0
- package/dist/{NoAccessPage-DBq5IzIf.js.map → NoAccessPage-BmizYfw0.js.map} +1 -1
- package/dist/NotFoundPage-Cv544vAr.js +2 -0
- package/dist/{NotFoundPage-DM-I96ar.js.map → NotFoundPage-Cv544vAr.js.map} +1 -1
- package/dist/index.d.ts +7 -4
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/iui.css +1 -1
- package/package.json +2 -3
- package/src/components/Dialog/Dialog.tsx +3 -3
- package/src/components/Dialog/components/DialogFooter.tsx +18 -16
- package/src/components/Header/Components/UserMenu.tsx +15 -14
- package/src/components/Inputs/TextInput.tsx +1 -0
- package/src/components/List/ListItem.tsx +1 -1
- package/src/components/Menu/Menu.tsx +3 -0
- package/src/components/Pullover/Pullover.tsx +22 -22
- package/src/components/Table/Table.tsx +18 -29
- package/src/components/Table/components/columns/ColumnsList.tsx +59 -0
- package/src/components/Table/components/columns/TableColumnsEdit.tsx +116 -0
- package/src/components/Table/components/edit/TableEditRow.tsx +13 -19
- package/src/components/Table/components/header/TableHeaderRow.tsx +1 -1
- package/src/components/Table/contexts/TableContext.tsx +1 -9
- package/src/components/Table/hooks/localHooks/useLocalTableColumns.tsx +21 -24
- package/src/components/Table/hooks/useTableColumns.ts +16 -8
- package/src/components/Tabs/Tabs.tsx +1 -0
- package/src/index.ts +1 -1
- package/src/styles/components/_badge.scss +1 -1
- package/src/styles/components/_header.scss +4 -7
- package/src/styles/components/_list.scss +1 -1
- package/src/styles/components/_table.scss +49 -38
- package/src/styles/variables/_variables.scss +9 -0
- package/src/types/IHeader.ts +1 -1
- package/src/types/ITable.ts +1 -0
- package/dist/NoAccessPage-DBq5IzIf.js +0 -2
- package/dist/NotFoundPage-DM-I96ar.js +0 -2
|
@@ -9,6 +9,8 @@ table {
|
|
|
9
9
|
thead {
|
|
10
10
|
z-index: 2;
|
|
11
11
|
background-color: var(--neutral-100);
|
|
12
|
+
// background-color: var(--primary);
|
|
13
|
+
// color: var(--text-inverse);
|
|
12
14
|
tr:first-child th {
|
|
13
15
|
border-top: var(--borderlight);
|
|
14
16
|
}
|
|
@@ -44,6 +46,10 @@ table {
|
|
|
44
46
|
&.selected {
|
|
45
47
|
background-color: rgba(0, 0, 0, 0.05);
|
|
46
48
|
}
|
|
49
|
+
&:has(.iui-icon-btn:hover),
|
|
50
|
+
&:has(a:hover) {
|
|
51
|
+
background-color: transparent !important;
|
|
52
|
+
}
|
|
47
53
|
&.focused {
|
|
48
54
|
background-color: var(--primary-100);
|
|
49
55
|
}
|
|
@@ -204,44 +210,49 @@ table {
|
|
|
204
210
|
.table-sort-item {
|
|
205
211
|
flex-direction: row-reverse;
|
|
206
212
|
}
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
213
|
+
.dual-list-container {
|
|
214
|
+
.dual-list-content {
|
|
215
|
+
display: grid;
|
|
216
|
+
grid-template-columns: 1fr auto 1fr;
|
|
217
|
+
gap: 16px 12px;
|
|
218
|
+
}
|
|
219
|
+
.list-box {
|
|
220
|
+
border: var(--border-light);
|
|
221
|
+
border-radius: 8px;
|
|
222
|
+
padding: 8px;
|
|
223
|
+
user-select: none;
|
|
224
|
+
& > .item {
|
|
225
|
+
display: flex;
|
|
226
|
+
justify-content: space-between;
|
|
227
|
+
align-items: center;
|
|
228
|
+
padding: 8px;
|
|
229
|
+
font-size: 14spx;
|
|
230
|
+
svg {
|
|
231
|
+
color: var(--text);
|
|
232
|
+
margin-left: 1rem;
|
|
233
|
+
}
|
|
234
|
+
&:hover {
|
|
235
|
+
background-color: var(--primary-o10);
|
|
236
|
+
}
|
|
237
|
+
&:active {
|
|
238
|
+
background-color: var(--primary-o25);
|
|
239
|
+
}
|
|
240
|
+
&.dragging {
|
|
241
|
+
transform: scale(1.02);
|
|
242
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
243
|
+
background-color: #fff !important;
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
.exchange-icon {
|
|
248
|
+
display: flex;
|
|
249
|
+
align-items: center;
|
|
250
|
+
svg {
|
|
251
|
+
height: 20px;
|
|
252
|
+
width: 20px;
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
}
|
|
245
256
|
|
|
246
257
|
.edit-row {
|
|
247
258
|
background: var(--neutral-100);
|
|
@@ -112,8 +112,17 @@
|
|
|
112
112
|
--neutral-700: hsl(351, 0%, 31%);
|
|
113
113
|
--neutral-t: rgba(16, 24, 40, 0.5);
|
|
114
114
|
|
|
115
|
+
// --danger-100: #fceae8;
|
|
116
|
+
// --danger-200: #f7d7d4;
|
|
117
|
+
// --danger-300: #dc776f;
|
|
118
|
+
// --danger-400: #de4f45;
|
|
119
|
+
// --danger-500: #d92d20;
|
|
120
|
+
// --danger-600: #c5261b;
|
|
121
|
+
// --danger-700: #a11b12;
|
|
122
|
+
|
|
115
123
|
--primary: var(--primary-500);
|
|
116
124
|
--neutral: var(--neutral-500);
|
|
125
|
+
--danger: var(--danger-500);
|
|
117
126
|
|
|
118
127
|
--text: var(--neutral-700);
|
|
119
128
|
--text-disabled: var(--neutral-400);
|
package/src/types/IHeader.ts
CHANGED
package/src/types/ITable.ts
CHANGED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
import{jsxs as e,jsx as t}from"react/jsx-runtime";import{useTranslation as r}from"react-i18next";import{Link as a}from"react-router";import{Button as c}from"./index.js";import"@fortawesome/react-fontawesome";import"clsx";import"dayjs";import"react-beautiful-dnd";import"react-toastify";import"react";import"react-dom";import"react-calendar";import"react-select";import"react-select-async-paginate";import"react-select/async-creatable";const i=()=>{const{t:i}=r();return e("div",{className:"full-screen-page",children:[e("div",{id:"content",children:[t("h1",{children:i("NoAccessPage")}),t("p",{className:"subtitle",children:i("NoAccessPageInfo")})]}),t("p",{id:"img",className:"img-403",children:"403"}),t("div",{id:"actions",children:t(a,{to:"/",children:t(c,{label:i("ReturnToHomepage")})})})]})};export{i as default};
|
|
2
|
-
//# sourceMappingURL=NoAccessPage-DBq5IzIf.js.map
|