@ichicraft/widgets-widget-base 1.10.0 → 1.10.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 +4 -0
- package/lib/types/index.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,6 +9,10 @@ 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.10.1 - 2024-07-08
|
|
13
|
+
|
|
14
|
+
- Added `widget-administrator` role to the `UserRole` type.
|
|
15
|
+
|
|
12
16
|
## 1.10.0 - 2024-06-25
|
|
13
17
|
|
|
14
18
|
- Added optional `updateDataAccess()` function to the `BaseWidget` class, used to update access to widget-specific data.
|
package/lib/types/index.d.ts
CHANGED
|
@@ -776,7 +776,7 @@ export interface FilePickerFileProps {
|
|
|
776
776
|
siteId: string;
|
|
777
777
|
}
|
|
778
778
|
export type BoardType = 'shared' | 'personal';
|
|
779
|
-
export type UserRole = 'administrator' | 'board-owner';
|
|
779
|
+
export type UserRole = 'administrator' | 'board-owner' | 'widget-administrator';
|
|
780
780
|
export interface ExportData {
|
|
781
781
|
data: object[];
|
|
782
782
|
}
|
package/package.json
CHANGED