@ichicraft/widgets-widget-base 1.13.2 → 1.14.1

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 CHANGED
@@ -9,6 +9,12 @@ All notable changes to this project will be documented here.
9
9
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
10
10
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
11
11
 
12
+ ## 1.14.1 - 2025-06-17
13
+ - Reverted module type 'commonjs' for backwards compatibility
14
+
15
+ ## 1.14.0 - 2025-05-21
16
+ - Version bumped `@microsoft/sp-http` dependency to latest SPFx version `1.21.1`
17
+
12
18
  ## 1.13.2 - 2025-04-11
13
19
  - Minor update in documentation of `WebApiPermissionRequest` interface
14
20
 
@@ -1,4 +1,4 @@
1
- import { WidgetContext, ValidationResult, ExportData } from './types';
1
+ import { ExportData, ValidationResult, WidgetContext } from './types';
2
2
  export default abstract class BaseWidget {
3
3
  protected readonly context: WidgetContext;
4
4
  constructor(context: WidgetContext);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ichicraft/widgets-widget-base",
3
- "version": "1.13.2",
3
+ "version": "1.14.1",
4
4
  "description": "Part of the Widget Development Kit for building widgets for Ichicraft Boards",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -22,10 +22,17 @@
22
22
  "requirejs": "2.3.7"
23
23
  },
24
24
  "dependencies": {
25
- "@microsoft/sp-http": "1.18.2",
25
+ "@microsoft/sp-http": "1.21.1",
26
26
  "@pnp/sp": "4.0.1"
27
27
  },
28
28
  "devDependencies": {
29
- "typescript": "^5.4.5"
29
+ "@ianvs/prettier-plugin-sort-imports": "4.4.1",
30
+ "eslint": "8.57.0",
31
+ "eslint-config-prettier": "9.1.0",
32
+ "eslint-plugin-prettier": "5.2.1",
33
+ "eslint-plugin-react": "7.35.2",
34
+ "eslint-plugin-react-hooks": "4.6.2",
35
+ "prettier": "3.3.3",
36
+ "typescript": "~5.3.3"
30
37
  }
31
38
  }