jamespot-react-core 1.2.57 → 1.2.62
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/README.md +2 -0
- package/build/{541.f36879fda62072178a72.chunk.js → 306.70047e7323717f3ef108.chunk.js} +116 -116
- package/build/306.70047e7323717f3ef108.chunk.js.map +1 -0
- package/build/app.bundle.js +824 -796
- package/build/app.bundle.js.map +1 -1
- package/build/src/App.d.ts +4 -4
- package/build/src/components/tinymce/extension/GifsModal.d.ts +6 -0
- package/build/src/components/widgets/wrapper/utils.d.ts +1 -17
- package/build/src/hooks/useGifsModal.d.ts +8 -0
- package/build/src/redux/store.d.ts +18 -813
- package/build/src/registry/core-component-list.d.ts +1 -0
- package/build/src/registry/coreComponents.d.ts +1 -0
- package/build/src/registry/ext-component-list.d.ts +1 -0
- package/build/src/utils/translation.d.ts +0 -1
- package/package.json +4 -6
- package/build/541.f36879fda62072178a72.chunk.js.map +0 -1
package/build/src/App.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { useAppSelector, useAppDispatch } from './redux/store';
|
|
2
|
-
import { WindowJ } from './utils/types';
|
|
3
|
-
import { ReactRouterHistory } from './utils/router';
|
|
4
|
-
import ReactCore from './ReactCore';
|
|
5
1
|
import * as jamespotReactComponents from 'jamespot-react-components';
|
|
2
|
+
import ReactCore from './ReactCore';
|
|
3
|
+
import { useAppDispatch, useAppSelector } from './redux/store';
|
|
4
|
+
import { ReactRouterHistory } from './utils/router';
|
|
5
|
+
import { WindowJ } from './utils/types';
|
|
6
6
|
declare global {
|
|
7
7
|
const J: WindowJ;
|
|
8
8
|
interface Window {
|
|
@@ -1,18 +1,2 @@
|
|
|
1
1
|
import { WidgetTableColumn, WidgetTableColumnsData } from 'jamespot-user-api';
|
|
2
|
-
export declare const getVisibleColumns: (tableColumnsData: WidgetTableColumnsData, columns: WidgetTableColumn[]) =>
|
|
3
|
-
name: string;
|
|
4
|
-
type: "number" | "text" | "date" | "datetime" | "file" | "select" | "email" | "url" | "transient" | "uri" | "title";
|
|
5
|
-
label: string;
|
|
6
|
-
widget: {} | {
|
|
7
|
-
type: "text";
|
|
8
|
-
} | {
|
|
9
|
-
type: "select";
|
|
10
|
-
options: {
|
|
11
|
-
value: string;
|
|
12
|
-
label: string;
|
|
13
|
-
}[];
|
|
14
|
-
} | {
|
|
15
|
-
type: "date";
|
|
16
|
-
};
|
|
17
|
-
sortable?: boolean | undefined;
|
|
18
|
-
}[];
|
|
2
|
+
export declare const getVisibleColumns: (tableColumnsData: WidgetTableColumnsData, columns: WidgetTableColumn[]) => WidgetTableColumn[];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { JTinyMCEExtensionsBuilders } from 'jamespot-react-components';
|
|
2
|
+
export declare const useGifsModal: () => {
|
|
3
|
+
open: boolean;
|
|
4
|
+
onSelect: (v: string) => void;
|
|
5
|
+
close: () => void;
|
|
6
|
+
ext: ReturnType<typeof JTinyMCEExtensionsBuilders.gifs>;
|
|
7
|
+
isActive?: boolean;
|
|
8
|
+
};
|