@pnkx-lib/ui 1.9.501 → 1.9.502

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.
@@ -1,6 +1,5 @@
1
1
  import { jsxs, Fragment, jsx } from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
- import { T as TINY_API } from '../chunks/common-BcURBmQ-.js';
4
3
  import { get } from 'lodash';
5
4
  import { ErrorMessage } from '../ui/ErrorMessage.js';
6
5
  import { Label } from '../ui/Label.js';
@@ -1948,7 +1947,6 @@ const TinyMCE = (props) => {
1948
1947
  {
1949
1948
  value,
1950
1949
  tinymceScriptSrc: "https://cdnjs.cloudflare.com/ajax/libs/tinymce/6.8.3/tinymce.min.js",
1951
- apiKey: TINY_API,
1952
1950
  init: {
1953
1951
  height: height || 200,
1954
1952
  plugins: ["link", "image", "code", "advlist", "lists"],
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pnkx-lib/ui",
3
3
  "private": false,
4
- "version": "1.9.501",
4
+ "version": "1.9.502",
5
5
  "type": "module",
6
6
  "main": "./es/index.js",
7
7
  "module": "./es/index.js",
@@ -31,7 +31,7 @@ export interface TableCommonProps<T> extends Omit<TableProps<T>, "columns"> {
31
31
  size?: SizeType;
32
32
  defaultEllipsis?: boolean;
33
33
  handleSubmit?: FormEventHandler<any>;
34
- noPagination: boolean;
34
+ noPagination?: boolean;
35
35
  customPagination?: React.ReactNode;
36
36
  }
37
37
  export declare const Table: <T>({ dataSource, columns, loading, totalItems, filters, onChangePage, onChangePageSize, onSort, rowsSelected, onSelect, onRowClick, rowKey, showIndexColumn, size, defaultEllipsis, onDoubleClickRow, handleSubmit, customPagination, noPagination, ...rest }: TableCommonProps<T>) => import("react/jsx-runtime").JSX.Element;