jamespot-front-business 1.2.53 → 1.2.55

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +8 -8
  2. package/package.json +5 -5
package/dist/types.d.ts CHANGED
@@ -450,7 +450,7 @@ type JType = {
450
450
  mainType: string;
451
451
  };
452
452
  type ContentTypePropertyValue = Pick<JType, 'type' | 'label'>;
453
- declare const AppFormFixedList: ("USER" | "TITLE" | "PUBLISHTO" | "SENDALERTTOSUBSCRIBERS" | "RECEIVEACOPY" | "CREATIONDATE")[];
453
+ declare const AppFormFixedList: ("TITLE" | "USER" | "PUBLISHTO" | "SENDALERTTOSUBSCRIBERS" | "RECEIVEACOPY" | "CREATIONDATE")[];
454
454
  declare const AppFormNoAsFieldList: Array<ExtraAppFieldsItemViewsValues | AppFormItemTypesValues>;
455
455
  declare const AppFormFieldOnlyInView: "CODEHTML"[];
456
456
  declare const AppFormNonPrimaryList: (AppFormItemTypesValues | ExtraAppFieldsItemViewsValues)[];
@@ -1930,13 +1930,13 @@ declare const Bookmark: {
1930
1930
  } | undefined;
1931
1931
  };
1932
1932
  getRTHandlers: (dispatch: AppDispatch) => ({
1933
- namespace: "CUSTOM-ACTION";
1934
- function: "update" | "add" | "remove";
1935
- handler: (message: jamespot_user_api.RTMessageObject<"CUSTOM-ACTION", "update", {}, {}> | jamespot_user_api.RTMessageObject<"CUSTOM-ACTION", "add", {}, {}> | jamespot_user_api.RTMessageObject<"CUSTOM-ACTION", "remove", {}, {}>) => void;
1936
- } | {
1937
1933
  namespace: "BOOKMARKS";
1938
1934
  function: "update" | "add" | "delete";
1939
1935
  handler: (message: jamespot_user_api.RTMessageObject<"BOOKMARKS", "update", {}, {}> | jamespot_user_api.RTMessageObject<"BOOKMARKS", "add", {}, {}> | jamespot_user_api.RTMessageObject<"BOOKMARKS", "delete", {}, {}>) => void;
1936
+ } | {
1937
+ namespace: "CUSTOM-ACTION";
1938
+ function: "update" | "add" | "remove";
1939
+ handler: (message: jamespot_user_api.RTMessageObject<"CUSTOM-ACTION", "update", {}, {}> | jamespot_user_api.RTMessageObject<"CUSTOM-ACTION", "add", {}, {}> | jamespot_user_api.RTMessageObject<"CUSTOM-ACTION", "remove", {}, {}>) => void;
1940
1940
  })[];
1941
1941
  };
1942
1942
 
@@ -3055,7 +3055,7 @@ declare const Faq: {
3055
3055
  };
3056
3056
  actions: {
3057
3057
  fetchFaqConfig: _reduxjs_toolkit.AsyncThunk<{
3058
- _web: "" | "0" | "1" | undefined;
3058
+ _web: "" | "1" | "0" | undefined;
3059
3059
  appImage: string | {
3060
3060
  image: {
3061
3061
  id: string;
@@ -3066,7 +3066,7 @@ declare const Faq: {
3066
3066
  access: {
3067
3067
  createCategory: boolean;
3068
3068
  };
3069
- _displayComment: "" | "0" | "1" | undefined;
3069
+ _displayComment: "" | "1" | "0" | undefined;
3070
3070
  } | {
3071
3071
  _web: string;
3072
3072
  appImage?: never;
@@ -5233,7 +5233,7 @@ declare const Widget: {
5233
5233
  }[];
5234
5234
  selectFlushedWidgets: (state: RootState$1) => string[];
5235
5235
  selectWidgetContext: (state: RootState$1, uniqid: string) => "article" | "comment" | undefined;
5236
- selectWidgetLevel: (state: RootState$1, uniqid: string) => 1 | 2 | 3 | 4 | undefined;
5236
+ selectWidgetLevel: (state: RootState$1, uniqid: string) => 1 | 3 | 2 | 4 | undefined;
5237
5237
  selectWidgetWrapperStyle: (state: RootState$1, uniqid: string) => Record<string, string | number>;
5238
5238
  selectWidgetTitleStyle: (state: RootState$1, uniqid: string) => Record<string, string | number>;
5239
5239
  selectWidgetChipCount: (state: RootState$1, uniqid: string) => number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jamespot-front-business",
3
- "version": "1.2.53",
3
+ "version": "1.2.55",
4
4
  "description": "typescript utils",
5
5
  "main": "dist/cjs.js",
6
6
  "module": "dist/esm.js",
@@ -19,11 +19,11 @@
19
19
  "devDependencies": {
20
20
  "@changesets/cli": "^2.29.7",
21
21
  "@reduxjs/toolkit": "^1.9.7",
22
- "@rollup/plugin-commonjs": "^28.0.6",
22
+ "@rollup/plugin-commonjs": "^28.0.7",
23
23
  "@rollup/plugin-json": "^6.1.0",
24
24
  "@rollup/plugin-typescript": "^12.1.4",
25
25
  "@types/jest": "^30.0.0",
26
- "@types/react": "^18.3.25",
26
+ "@types/react": "^18.3.26",
27
27
  "@types/uuid": "^10.0.0",
28
28
  "@typescript-eslint/eslint-plugin": "^5.62.0",
29
29
  "@typescript-eslint/parser": "^5.62.0",
@@ -31,7 +31,7 @@
31
31
  "eslint-config-prettier": "^8.10.2",
32
32
  "eslint-import-resolver-typescript": "^4.4.4",
33
33
  "eslint-plugin-import": "^2.32.0",
34
- "jamespot-user-api": "^1.2.53",
34
+ "jamespot-user-api": "^1.2.55",
35
35
  "jest": "^30.2.0",
36
36
  "jest-environment-jsdom": "^30.2.0",
37
37
  "prettier": "^3.6.2",
@@ -41,7 +41,7 @@
41
41
  "redux": "^4.2.1",
42
42
  "rollup": "^4.52.4",
43
43
  "rollup-plugin-dts": "^6.2.3",
44
- "ts-jest": "^29.4.4",
44
+ "ts-jest": "^29.4.5",
45
45
  "tslib": "^2.8.1",
46
46
  "typescript": "^5.9.3",
47
47
  "uuid": "^10.0.0",