jamespot-react-core 1.3.50 → 1.3.51

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,3 +1,4 @@
1
+ export declare const CSSCheckBoxContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
1
2
  export declare const EditorTabWidgetSelection: ({ uniqid }: {
2
3
  uniqid: string;
3
4
  }) => import("react/jsx-runtime").JSX.Element;
@@ -2,3 +2,7 @@ export declare const EDITOR_TOP = 90;
2
2
  export declare const EDITOR_WIDTH = 440;
3
3
  export declare const EDITOR_MENU_WIDTH = 50;
4
4
  export declare const EDITOR_CONTENT_WIDTH: number;
5
+ export declare enum BoxShadow {
6
+ None = "0px 0px 0px",
7
+ Light = "rgba(0, 0, 0, 0.12) 0px 4px 6px 0px"
8
+ }
@@ -0,0 +1,8 @@
1
+ import { WidgetTextType, WidgetDisplayMode } from 'jamespot-user-api';
2
+ type JRCWidgetTextWrapperProps = {
3
+ widget: WidgetTextType;
4
+ inplace: boolean;
5
+ mode?: WidgetDisplayMode;
6
+ };
7
+ export declare const JRCWidgetTextWrapper: ({ widget, mode }: JRCWidgetTextWrapperProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -46,6 +46,9 @@ declare const mapping: {
46
46
  DriveMSGraph: "JRCDriveMSGraph";
47
47
  DropDown: "JRCDropDown";
48
48
  Droppable: "Droppable";
49
+ EditorButtonToggle: "EditorButtonToggle";
50
+ EditorCheckbox: "EditorCheckbox";
51
+ EditorComponentSeparator: "CSSEditorComponentSeparator";
49
52
  EmptySpace: "JRCEmptySpace";
50
53
  FadeStepper: "JRCFadeStepper";
51
54
  File: "JRCFile";
@@ -141,6 +144,10 @@ declare const mapping: {
141
144
  TemplateBase: "JRCTemplateBase";
142
145
  TemplateTwoColumns: "JRCTemplateTwoColumns";
143
146
  Text: "JRCText";
147
+ TextAlign: "TextAlign";
148
+ TextAlignOptions: "TextAlignOptions";
149
+ TextFontWeight: "TextFontWeight";
150
+ TextFontWeightOptions: "TextFontWeightOptions";
144
151
  TinyMCEFileUploadModal: "JRCTinyMCEFileUploadModal";
145
152
  TinyMCEImageUploadModal: "JRCTinyMCEImageUploadModal";
146
153
  TinyMCEVideoUploadModal: "JRCTinyMCEVideoUploadModal";
@@ -190,6 +197,8 @@ declare const mapping: {
190
197
  WidgetSurveyDate: "JRCWidgetSurveyDate";
191
198
  WidgetTable: "JRCWidgetTable";
192
199
  WidgetTableEditor: "JRCWidgetTableEditor";
200
+ WidgetText: "JRCWidgetText";
201
+ WidgetTextEditor: "JRCWidgetTextEditor";
193
202
  WidgetUserProfile: "JRCWidgetUserProfile";
194
203
  WidgetUserProfileEditor: "JRCWidgetUserProfileEditor";
195
204
  WidgetWelcome: "JRCWidgetWelcome";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jamespot-react-core",
3
- "version": "1.3.50",
3
+ "version": "1.3.51",
4
4
  "description": "Jamespot React Core",
5
5
  "main": "./build/app.bundle.js",
6
6
  "types": "./build/src/App.d.ts",
@@ -38,9 +38,9 @@
38
38
  "fork-ts-checker-webpack-plugin": "^9.1.0",
39
39
  "history": "^5.3.0",
40
40
  "husky": "^9.1.7",
41
- "jamespot-front-business": "^1.3.50",
42
- "jamespot-react-components": "^1.3.50",
43
- "jamespot-user-api": "^1.3.50",
41
+ "jamespot-front-business": "^1.3.51",
42
+ "jamespot-react-components": "^1.3.51",
43
+ "jamespot-user-api": "^1.3.51",
44
44
  "jest": "^30.2.0",
45
45
  "jest-environment-jsdom": "^30.2.0",
46
46
  "knip": "^5.82.1",