@solidev/data 0.8.3 → 0.9.0

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/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@solidev/data",
3
- "version": "0.8.3",
3
+ "version": "0.9.0",
4
4
  "peerDependencies": {
5
- "@angular/common": "^21",
6
- "@angular/core": "^21",
5
+ "@angular/common": "^22",
6
+ "@angular/core": "^22",
7
7
  "@ng-bootstrap/ng-bootstrap": "^20",
8
8
  "jwt-decode": "^4",
9
9
  "ngx-editor": "^19.0.0-beta.1"
@@ -23,5 +23,6 @@
23
23
  "default": "./fesm2022/solidev-data.mjs"
24
24
  }
25
25
  },
26
- "sideEffects": false
26
+ "sideEffects": false,
27
+ "type": "module"
27
28
  }
@@ -1621,7 +1621,7 @@ declare class RicheditComponent<FT, T extends DataModel> implements OnInit, OnDe
1621
1621
  field?: string;
1622
1622
  editable: boolean;
1623
1623
  edit: boolean;
1624
- mode: 'dd' | 'inline' | 'form';
1624
+ mode: "dd" | "inline" | "form";
1625
1625
  /** Hide label (for inline forms) */
1626
1626
  hideLabel: boolean;
1627
1627
  /** Hide button (for changed usage) */
@@ -1629,7 +1629,7 @@ declare class RicheditComponent<FT, T extends DataModel> implements OnInit, OnDe
1629
1629
  /** Form control, from outside or created */
1630
1630
  fc: FormControl<string | null>;
1631
1631
  /** Toolbar mode */
1632
- toolbar: 'none' | 'default' | 'light' | Toolbar;
1632
+ toolbar: "none" | "default" | "light" | Toolbar;
1633
1633
  changed: EventEmitter<string | null>;
1634
1634
  /** Field manager */
1635
1635
  manager?: BaseFieldManager<FT>;