@compill/admin 1.0.29 → 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.
Files changed (68) hide show
  1. package/index.d.ts +44 -44
  2. package/index.umd.js +6 -6
  3. package/lib/SectionTitle.d.ts +2 -2
  4. package/lib/breadcrumbs/BreadCrumbs.d.ts +2 -2
  5. package/lib/buttons/DialogButton.d.ts +4 -3
  6. package/lib/buttons/IconButton.d.ts +2 -2
  7. package/lib/buttons/InvalidateButton.d.ts +2 -2
  8. package/lib/buttons/NavigateButton.d.ts +2 -2
  9. package/lib/buttons/PublishButton.d.ts +2 -2
  10. package/lib/buttons/UpdateButton.d.ts +2 -2
  11. package/lib/buttons/ViewButton.d.ts +2 -2
  12. package/lib/json/DetailsView.d.ts +3 -3
  13. package/lib/json/EditItemView.d.ts +2 -2
  14. package/lib/json/MultiQueryWrapper.d.ts +3 -3
  15. package/lib/json/QueryWrapper.d.ts +3 -3
  16. package/lib/json/ScreenRenderer.d.ts +3 -3
  17. package/lib/json/ScreenTopBar.d.ts +3 -3
  18. package/lib/json/TabbedView.d.ts +3 -3
  19. package/lib/json/buttons/ActionButton.d.ts +2 -2
  20. package/lib/json/buttons/ConfirmationActionButton.d.ts +2 -2
  21. package/lib/json/dialog/DialogRenderer.d.ts +4 -4
  22. package/lib/json/dialog/ItemDeleteDialog.d.ts +2 -2
  23. package/lib/json/dialog/ItemEditDialog.d.ts +6 -5
  24. package/lib/json/dialog/MultiQueryWrapperDialog.d.ts +2 -2
  25. package/lib/json/dialog/QueryWrapperDialog.d.ts +3 -3
  26. package/lib/json/table/TableRowActionsView.d.ts +2 -2
  27. package/lib/json/table/TableRowPublishPostButton.d.ts +2 -2
  28. package/lib/json/table/TableView.d.ts +3 -3
  29. package/lib/json/table/TableViewContext.d.ts +5 -4
  30. package/lib/json/table/useTableProps.d.ts +2 -1
  31. package/lib/json/types/DetailsView.d.ts +3 -3
  32. package/lib/json/types/EditItemDialog.d.ts +2 -1
  33. package/lib/json/types/MultiQueryWrapper.d.ts +4 -3
  34. package/lib/json/types/MultiQueryWrapperDialog.d.ts +2 -1
  35. package/lib/json/types/QueryWrapper.d.ts +4 -3
  36. package/lib/json/types/QueryWrapperDialog.d.ts +2 -1
  37. package/lib/json/types/ScreenConfig.d.ts +7 -6
  38. package/lib/json/types/TabbedView.d.ts +6 -6
  39. package/lib/json/types/TableView.d.ts +9 -9
  40. package/lib/modal/AttachDialog.d.ts +4 -4
  41. package/lib/modal/FormActionDialog.d.ts +6 -5
  42. package/lib/modal/ItemEditDialog.d.ts +5 -4
  43. package/lib/page/PageContainer.d.ts +2 -2
  44. package/lib/page/PageContentEditor.d.ts +2 -2
  45. package/lib/page/PageMain.d.ts +2 -2
  46. package/lib/page/PageQueryStateContainer.d.ts +3 -2
  47. package/lib/page/PageSectionTitle.d.ts +2 -2
  48. package/lib/page/PageSidebar.d.ts +2 -2
  49. package/lib/page/PageSidebarSection.d.ts +2 -2
  50. package/lib/page/PageStateContainer.d.ts +3 -2
  51. package/lib/page/PageSubSectionTitle.d.ts +2 -2
  52. package/lib/page/PageTitle.d.ts +2 -2
  53. package/lib/page/PageTopBar.d.ts +4 -3
  54. package/lib/status/StatusBadge.d.ts +2 -2
  55. package/lib/table/TableContainer.d.ts +3 -3
  56. package/lib/table/TableContainerContext.d.ts +3 -2
  57. package/lib/table/TableCreateButton.d.ts +2 -2
  58. package/lib/table/TableFilterButton.d.ts +2 -2
  59. package/lib/table/TableFilters.d.ts +1 -1
  60. package/lib/table/TableMassActions.d.ts +2 -2
  61. package/lib/table/TableRowActionBar.d.ts +2 -2
  62. package/lib/table/TableRowDeleteButton.d.ts +2 -2
  63. package/lib/table/TableRowEditButton.d.ts +2 -2
  64. package/lib/table/TableRowNavigateButton.d.ts +2 -2
  65. package/lib/table/TableRowPublishPostButton.d.ts +2 -2
  66. package/lib/table/TableRowViewButton.d.ts +2 -2
  67. package/lib/table/TableTopBar.d.ts +2 -2
  68. package/package.json +1 -1
@@ -1,3 +1,3 @@
1
- /// <reference types="react" />
2
- import { ButtonProps } from "@valerya/ui";
1
+ import { ButtonProps } from '@valerya/ui';
2
+
3
3
  export declare function TableFilterButton({ ...props }: ButtonProps): JSX.Element;
@@ -1,5 +1,5 @@
1
- /// <reference types="react" />
2
1
  import { FormRendererConfig } from '../../../../form/src/index.ts';
2
+
3
3
  interface TableFiltersProps {
4
4
  form: FormRendererConfig;
5
5
  initialValues: any;
@@ -1,5 +1,5 @@
1
- /// <reference types="react" />
2
- import { MassAction } from "../json/types/TableView";
1
+ import { MassAction } from '../json/types/TableView';
2
+
3
3
  interface TableMassActionsProps {
4
4
  actions: MassAction[];
5
5
  }
@@ -1,5 +1,5 @@
1
- /// <reference types="react" />
2
- import { ParentComponent, SoperioComponent } from "@soperio/react";
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
- /// <reference types="react" />
2
- import { DialogButtonProps } from "../buttons/DialogButton";
1
+ import { DialogButtonProps } from '../buttons/DialogButton';
2
+
3
3
  export declare function TableRowDeleteButton({ children, ...props }: DialogButtonProps): JSX.Element;
@@ -1,3 +1,3 @@
1
- /// <reference types="react" />
2
- import { DialogButtonProps } from "../buttons/DialogButton";
1
+ import { DialogButtonProps } from '../buttons/DialogButton';
2
+
3
3
  export declare function TableRowEditButton({ children, ...props }: DialogButtonProps): JSX.Element;
@@ -1,5 +1,5 @@
1
- /// <reference types="react" />
2
- import { ButtonProps } from "@valerya/ui";
1
+ import { ButtonProps } from '@valerya/ui';
2
+
3
3
  export declare function TableRowNavigateButton({ path, ...props }: {
4
4
  path: string;
5
5
  } & ButtonProps): 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
- /// <reference types="react" />
2
- import { ButtonProps } from "@valerya/ui";
1
+ import { ButtonProps } from '@valerya/ui';
2
+
3
3
  export declare function TableRowViewButton({ path, ...props }: {
4
4
  path: string;
5
5
  } & ButtonProps): JSX.Element;
@@ -1,5 +1,5 @@
1
- /// <reference types="react" />
2
- import { ParentComponent, SoperioComponent } from "@soperio/react";
1
+ import { ParentComponent, SoperioComponent } from '@soperio/react';
2
+
3
3
  interface TableTopBarProps extends SoperioComponent, ParentComponent {
4
4
  title?: string;
5
5
  queryKey: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compill/admin",
3
- "version": "1.0.29",
3
+ "version": "1.0.30",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {