Skip to content

Commit 1d3f79a

Browse files
authored
Merge pull request #19 from BIATeam/develop
from develop
2 parents 7b67b6c + 3915f66 commit 1d3f79a

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

docs/60-Migration/33-3.10.0 TO 4.0.0.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,10 @@ Example for plane--new-component.html :
255255
```
256256

257257
8. In table header replace delete and add by icon
258-
search **label="{{ 'bia.delete' | translate }}"**
258+
search
259+
```html
260+
`label="{{ 'bia.delete' | translate }}"`
261+
```
259262
in *-table.component.html files
260263
and replace it by
261264
```html
@@ -264,7 +267,10 @@ Example for plane--new-component.html :
264267
tooltipPosition="top"
265268
```
266269

267-
... same with **label="{{ 'bia.add' | translate }}"**
270+
same with
271+
```html
272+
`label="{{ 'bia.add' | translate }}"`
273+
```
268274
```html
269275
icon="pi pi-plus"
270276
pTooltip="{{ 'bia.add' | translate }}"

versioned_docs/version-3.10.0/60-Migration/33-3.9.0 TO 3.10.0.md

+8
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,14 @@ Migration should already fix a large number of typing errors but you might have
105105
Example :
106106
`<my-component showLoader="true">` has to be replaced by `<my-component [showLoader]="true">`
107107
You can always deactivate strictTemplates in the tsconfig.json (though unadvisable).
108+
3. The HTML templates of **BiaTableComponent** and **BiaCalcTableComponent** uses the property `selectedElements` to set the `selection` input property of `p-table` component. Ensure that any of your own table component that extends the **BiaTableComponent** or **BiaCalcTableComponent** with a custom HTML template set the same input property of `p-table` component with the `selectedElements` property :
109+
``` html
110+
<p-table
111+
...
112+
[(selection)]="selectedElements"
113+
...>
114+
</p-table>
115+
```
108116
### BACK
109117
1. Tout ce qui concerne UserProfile été supprimé du framework dans cette version. Cette partie ne devrait pas être utilisée et peut être supprimée de vos applications si vous y faites référence.
110118
2. The NotificationDomainService has been moved to NotificationAppService in application layer. If you had specific code in your NotificationDomainService, move it manually to the NotificationAppService.

0 commit comments

Comments
 (0)