jamespot-react-components 1.3.45 → 1.3.46
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/dist/jamespot-react-components.cjs +79 -79
- package/dist/jamespot-react-components.js +1435 -1458
- package/dist/src/components/Widgets/JRCWidgetTable/model/doc/DocEditor.d.ts +2 -1
- package/dist/src/components/Widgets/JRCWidgetTable/model/excel/ExcelEditorSpreadSheets.d.ts +2 -2
- package/dist/src/components/Widgets/JRCWidgetTable/model/excel/ExcelEditorUploader.d.ts +2 -3
- package/dist/src/components/Widgets/JRCWidgetTable/model/studio/StudioEditor.d.ts +2 -1
- package/dist/src/translation/lang.json.d.ts +2 -0
- package/package.json +2 -2
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { DatasourceModel, DatasourceType, WidgetTableColumnsData } from 'jamespot-user-api';
|
|
2
|
-
export declare const DocEditor: ({ uri, tableColumnsData, model, type, }: {
|
|
2
|
+
export declare const DocEditor: ({ uri, tableColumnsData, model, type, onRemove, }: {
|
|
3
3
|
uri?: string;
|
|
4
4
|
model?: DatasourceModel;
|
|
5
5
|
type?: DatasourceType;
|
|
6
6
|
tableColumnsData: WidgetTableColumnsData;
|
|
7
|
+
onRemove: () => void;
|
|
7
8
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
export declare const ExcelEditorUploader: ({
|
|
2
|
-
token: string;
|
|
1
|
+
export declare const ExcelEditorUploader: ({ onCreateSuccess }: {
|
|
3
2
|
onCreateSuccess: (uri: string) => void;
|
|
4
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
}) => import("react/jsx-runtime").JSX.Element | undefined;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { DatasourceModel, DatasourceType, WidgetTableColumnsData } from 'jamespot-user-api';
|
|
2
|
-
export declare const StudioEditor: ({ uri, tableColumnsData, model, type, }: {
|
|
2
|
+
export declare const StudioEditor: ({ uri, tableColumnsData, model, type, onRemove, }: {
|
|
3
3
|
uri?: string;
|
|
4
4
|
model?: DatasourceModel;
|
|
5
5
|
type?: DatasourceType;
|
|
6
6
|
tableColumnsData: WidgetTableColumnsData;
|
|
7
|
+
onRemove: () => void;
|
|
7
8
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -287,6 +287,8 @@ declare const _default: {
|
|
|
287
287
|
"PANEL_Text_Size": "Taille du texte",
|
|
288
288
|
"PANEL_Widget_Empty_Setting": "Il n'y a rien à configurer",
|
|
289
289
|
"PANEL_Widget_Level": "Niveau d'affichage",
|
|
290
|
+
"PANEL_Widget_Synchronize": "Synchronisation",
|
|
291
|
+
"PANEL_Widget_Url": "Copier l'url du widget",
|
|
290
292
|
"PANEL_Widget_Selection": "Style & décorations",
|
|
291
293
|
"PANEL_Widget_Settings": "Configuration du widget",
|
|
292
294
|
"PLUGIN_Manager_CalDav_Prompt": "Tester la connexion CalDav",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-react-components",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.46",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/jamespot-react-components.js",
|
|
6
6
|
"module": "dist/jamespot-react-components.mjs",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"globals": "^16.5.0",
|
|
79
79
|
"html2canvas": "^1.4.1",
|
|
80
80
|
"husky": "^9.1.7",
|
|
81
|
-
"jamespot-user-api": "^1.3.
|
|
81
|
+
"jamespot-user-api": "^1.3.46",
|
|
82
82
|
"jest": "^30.2.0",
|
|
83
83
|
"jest-environment-jsdom": "^30.2.0",
|
|
84
84
|
"knip": "^5.82.1",
|