@inceptionbg/iui 2.0.55 → 2.0.57
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-CC4dSo8Y.js +2 -0
- package/dist/NoAccessPage-CC4dSo8Y.js.map +1 -0
- package/dist/NotFoundPage-DvOOkCyk.js +2 -0
- package/dist/{NotFoundPage-BD3WL_BG.js.map → NotFoundPage-DvOOkCyk.js.map} +1 -1
- package/dist/index.d.ts +11 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/iui.css +1 -1
- package/package.json +25 -4
- package/dist/NoAccessPage-BHCAfL2g.js +0 -2
- package/dist/NoAccessPage-BHCAfL2g.js.map +0 -1
- package/dist/NotFoundPage-BD3WL_BG.js +0 -2
package/dist/index.d.ts
CHANGED
|
@@ -324,8 +324,17 @@ type ITableDataAction = {
|
|
|
324
324
|
hasAccess: boolean;
|
|
325
325
|
disabled?: boolean;
|
|
326
326
|
};
|
|
327
|
+
type ITableDataIconAction = {
|
|
328
|
+
id: string;
|
|
329
|
+
icon: IconDefinition;
|
|
330
|
+
onClick: () => void;
|
|
331
|
+
tooltip?: string;
|
|
332
|
+
hasAccess: boolean;
|
|
333
|
+
disabled?: boolean;
|
|
334
|
+
};
|
|
327
335
|
interface ITableDataActions<T = unknown> {
|
|
328
336
|
hasEditAccess?: boolean;
|
|
337
|
+
additionalIconActions?: (item: T) => ITableDataIconAction[];
|
|
329
338
|
actions?: (item: T) => ITableDataAction[];
|
|
330
339
|
}
|
|
331
340
|
interface ITableFilterData {
|
|
@@ -573,7 +582,7 @@ interface CreatableSelectProps extends BaseSelectProps {
|
|
|
573
582
|
interface ITab {
|
|
574
583
|
value: string;
|
|
575
584
|
label: string;
|
|
576
|
-
icon?:
|
|
585
|
+
icon?: IconDefinition;
|
|
577
586
|
component: ReactNode;
|
|
578
587
|
disabled?: boolean;
|
|
579
588
|
hidden?: boolean;
|
|
@@ -849,6 +858,7 @@ interface Props$j {
|
|
|
849
858
|
placeholder?: string;
|
|
850
859
|
required?: boolean;
|
|
851
860
|
disabled?: boolean;
|
|
861
|
+
hideError?: boolean;
|
|
852
862
|
className?: string;
|
|
853
863
|
ref?: Ref<HTMLInputElement>;
|
|
854
864
|
}
|