@pnkx-lib/ui 1.9.493 → 1.9.494

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pnkx-lib/ui",
3
3
  "private": false,
4
- "version": "1.9.493",
4
+ "version": "1.9.494",
5
5
  "type": "module",
6
6
  "main": "./es/index.js",
7
7
  "module": "./es/index.js",
@@ -0,0 +1,5 @@
1
+ import { Descriptions as AntdDescriptions, DescriptionsProps as AntdDescriptionsProps } from 'antd';
2
+ export type DescriptionsProps = AntdDescriptionsProps;
3
+ export declare const Descriptions: React.FC<DescriptionsProps> & {
4
+ Item: typeof AntdDescriptions.Item;
5
+ };
@@ -1,4 +1,4 @@
1
- import { TFilters } from '@pnkx-lib/ui';
1
+ import { TFilters } from '../../../..';
2
2
  import { InitialFiltersSearch } from '@pnkx-lib/core';
3
3
  export interface GroupHeadingButtonItem {
4
4
  label: string;
@@ -1,7 +1,7 @@
1
1
  import { GroupHeadingButtonItem } from './components/GroupHeadingButton';
2
2
  import { ReactNode } from 'react';
3
3
  import { InitialFiltersSearch } from '@pnkx-lib/core';
4
- import { MenuType, TFilters } from '@pnkx-lib/ui';
4
+ import { MenuType, TFilters } from '../..';
5
5
  export interface IHeadingCatgoryProps {
6
6
  setOpenStting: (value: boolean) => void;
7
7
  showSetting?: boolean;
@@ -1,5 +1,5 @@
1
1
  import { ReactNode } from 'react';
2
- import { TableColumnsType } from '@pnkx-lib/ui';
2
+ import { TableColumnsType } from '../../..';
3
3
  export interface SettingTableProps<T> {
4
4
  open: boolean;
5
5
  setOpen: (open: boolean) => void;
@@ -1,7 +1,7 @@
1
1
  import { default as React, ReactNode } from 'react';
2
2
  import { BulkActionHandlers, InitialFiltersSearch } from '@pnkx-lib/core';
3
3
  import { GroupHeadingButtonItem } from './HeadingTable/components/GroupHeadingButton';
4
- import { RowCommon, TableColumnsType, TableCommonProps, TFilters, MenuType } from '@pnkx-lib/ui';
4
+ import { RowCommon, TableColumnsType, TableCommonProps, TFilters, MenuType } from '../..';
5
5
  export interface TableCategoryProps<T> extends TableCommonProps<T> {
6
6
  titleSettingTableModal?: string;
7
7
  showSetting?: boolean;
@@ -70,3 +70,4 @@ export * from './LoadingWrapper';
70
70
  export * from './SelectSingleTable';
71
71
  export * from './GenericUploadModal';
72
72
  export * from './TableCategory';
73
+ export * from './Descriptions';
@@ -0,0 +1,2 @@
1
+ export * from '../components/ui/Descriptions'
2
+ export {}