@compill/admin 1.0.28 → 1.0.30
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/index.d.ts +44 -44
- package/index.js +10 -240
- package/index.mjs +3323 -40485
- package/index.umd.js +10 -240
- package/lib/SectionTitle.d.ts +2 -2
- package/lib/breadcrumbs/BreadCrumbs.d.ts +2 -2
- package/lib/buttons/DialogButton.d.ts +4 -3
- package/lib/buttons/IconButton.d.ts +2 -2
- package/lib/buttons/InvalidateButton.d.ts +2 -2
- package/lib/buttons/NavigateButton.d.ts +2 -2
- package/lib/buttons/PublishButton.d.ts +2 -2
- package/lib/buttons/UpdateButton.d.ts +2 -2
- package/lib/buttons/ViewButton.d.ts +2 -2
- package/lib/json/DetailsView.d.ts +3 -3
- package/lib/json/EditItemView.d.ts +2 -2
- package/lib/json/MultiQueryWrapper.d.ts +3 -3
- package/lib/json/QueryWrapper.d.ts +3 -3
- package/lib/json/ScreenRenderer.d.ts +3 -3
- package/lib/json/ScreenTopBar.d.ts +3 -3
- package/lib/json/TabbedView.d.ts +3 -3
- package/lib/json/buttons/ActionButton.d.ts +2 -2
- package/lib/json/buttons/ConfirmationActionButton.d.ts +2 -2
- package/lib/json/dialog/DialogRenderer.d.ts +4 -4
- package/lib/json/dialog/ItemDeleteDialog.d.ts +2 -2
- package/lib/json/dialog/ItemEditDialog.d.ts +6 -5
- package/lib/json/dialog/MultiQueryWrapperDialog.d.ts +2 -2
- package/lib/json/dialog/QueryWrapperDialog.d.ts +3 -3
- package/lib/json/table/TableRowActionsView.d.ts +2 -2
- package/lib/json/table/TableRowPublishPostButton.d.ts +2 -2
- package/lib/json/table/TableView.d.ts +3 -3
- package/lib/json/table/TableViewContext.d.ts +5 -4
- package/lib/json/table/useTableProps.d.ts +2 -1
- package/lib/json/types/DetailsView.d.ts +3 -3
- package/lib/json/types/EditItemDialog.d.ts +2 -1
- package/lib/json/types/MultiQueryWrapper.d.ts +4 -3
- package/lib/json/types/MultiQueryWrapperDialog.d.ts +2 -1
- package/lib/json/types/QueryWrapper.d.ts +4 -3
- package/lib/json/types/QueryWrapperDialog.d.ts +2 -1
- package/lib/json/types/ScreenConfig.d.ts +7 -6
- package/lib/json/types/TabbedView.d.ts +6 -6
- package/lib/json/types/TableView.d.ts +9 -9
- package/lib/modal/AttachDialog.d.ts +4 -4
- package/lib/modal/FormActionDialog.d.ts +6 -5
- package/lib/modal/ItemEditDialog.d.ts +5 -4
- package/lib/page/PageContainer.d.ts +2 -2
- package/lib/page/PageContentEditor.d.ts +2 -2
- package/lib/page/PageMain.d.ts +2 -2
- package/lib/page/PageQueryStateContainer.d.ts +3 -2
- package/lib/page/PageSectionTitle.d.ts +2 -2
- package/lib/page/PageSidebar.d.ts +2 -2
- package/lib/page/PageSidebarSection.d.ts +2 -2
- package/lib/page/PageStateContainer.d.ts +3 -2
- package/lib/page/PageSubSectionTitle.d.ts +2 -2
- package/lib/page/PageTitle.d.ts +2 -2
- package/lib/page/PageTopBar.d.ts +4 -3
- package/lib/status/StatusBadge.d.ts +2 -2
- package/lib/table/TableContainer.d.ts +3 -3
- package/lib/table/TableContainerContext.d.ts +3 -2
- package/lib/table/TableCreateButton.d.ts +2 -2
- package/lib/table/TableFilterButton.d.ts +2 -2
- package/lib/table/TableFilters.d.ts +1 -1
- package/lib/table/TableMassActions.d.ts +2 -2
- package/lib/table/TableRowActionBar.d.ts +2 -2
- package/lib/table/TableRowDeleteButton.d.ts +2 -2
- package/lib/table/TableRowEditButton.d.ts +2 -2
- package/lib/table/TableRowNavigateButton.d.ts +2 -2
- package/lib/table/TableRowPublishPostButton.d.ts +2 -2
- package/lib/table/TableRowViewButton.d.ts +2 -2
- package/lib/table/TableTopBar.d.ts +2 -2
- package/package.json +1 -1
@@ -1,3 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { ButtonProps } from '@valerya/ui';
|
2
|
+
|
3
3
|
export declare function TableFilterButton({ ...props }: ButtonProps): JSX.Element;
|
@@ -1,5 +1,5 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { ParentComponent, SoperioComponent } from '@soperio/react';
|
2
|
+
|
3
3
|
interface TableRowActionBarProps extends SoperioComponent, ParentComponent {
|
4
4
|
publishId?: string;
|
5
5
|
viewPath?: string;
|
@@ -1,3 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DialogButtonProps } from '../buttons/DialogButton';
|
2
|
+
|
3
3
|
export declare function TableRowDeleteButton({ children, ...props }: DialogButtonProps): JSX.Element;
|
@@ -1,3 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { DialogButtonProps } from '../buttons/DialogButton';
|
2
|
+
|
3
3
|
export declare function TableRowEditButton({ children, ...props }: DialogButtonProps): JSX.Element;
|
@@ -1,6 +1,6 @@
|
|
1
|
-
/// <reference types="react" />
|
2
|
-
import { ButtonProps } from "@valerya/ui";
|
3
1
|
import { API } from '../../../../admin-api/src/index.ts';
|
2
|
+
import { ButtonProps } from '@valerya/ui';
|
3
|
+
|
4
4
|
export declare function TableRowPublishPostButton({ id, api, status, invalidateQueryKey, ...props }: {
|
5
5
|
id: string;
|
6
6
|
api: API<any>;
|
@@ -1,5 +1,5 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { ParentComponent, SoperioComponent } from '@soperio/react';
|
2
|
+
|
3
3
|
interface TableTopBarProps extends SoperioComponent, ParentComponent {
|
4
4
|
title?: string;
|
5
5
|
queryKey: string[];
|