@praxisui/list 9.0.68-rc.2 → 9.0.68-rc.3
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 +3 -1
- package/ai/component-registry.json +2 -2
- package/fesm2022/praxisui-list.mjs +13 -2
- package/package.json +6 -6
- package/types/praxisui-list.d.ts +3 -0
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/list",
|
|
3
|
-
"version": "9.0.68-rc.
|
|
3
|
+
"version": "9.0.68-rc.3",
|
|
4
4
|
"description": "List components and helpers for Praxis UI.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^21.0.0",
|
|
7
7
|
"@angular/core": "^21.0.0",
|
|
8
8
|
"@angular/material": "^21.0.0",
|
|
9
|
-
"@praxisui/dynamic-fields": "^9.0.68-rc.
|
|
9
|
+
"@praxisui/dynamic-fields": "^9.0.68-rc.3",
|
|
10
10
|
"rxjs": ">=7 <9",
|
|
11
11
|
"@angular/forms": "^21.0.0",
|
|
12
12
|
"@angular/router": "^21.0.0",
|
|
13
|
-
"@praxisui/ai": "^9.0.68-rc.
|
|
14
|
-
"@praxisui/core": "^9.0.68-rc.
|
|
15
|
-
"@praxisui/rich-content": "^9.0.68-rc.
|
|
16
|
-
"@praxisui/settings-panel": "^9.0.68-rc.
|
|
13
|
+
"@praxisui/ai": "^9.0.68-rc.3",
|
|
14
|
+
"@praxisui/core": "^9.0.68-rc.3",
|
|
15
|
+
"@praxisui/rich-content": "^9.0.68-rc.3",
|
|
16
|
+
"@praxisui/settings-panel": "^9.0.68-rc.3"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"tslib": "^2.3.0",
|
package/types/praxisui-list.d.ts
CHANGED
|
@@ -771,6 +771,7 @@ declare class PraxisList implements OnInit, OnChanges, AfterViewInit, OnDestroy
|
|
|
771
771
|
remoteTotalLabel(total: number | null | undefined): string;
|
|
772
772
|
onSortChange(val: string): void;
|
|
773
773
|
retryRemoteData(): void;
|
|
774
|
+
private focusCollectionBeforeReload;
|
|
774
775
|
onSearchInput(val: string): void;
|
|
775
776
|
isRemoteDataMode(): boolean;
|
|
776
777
|
activeSortValue(sort: string[] | undefined): string;
|
|
@@ -2173,6 +2174,7 @@ declare class PraxisListDocPageComponent {
|
|
|
2173
2174
|
}
|
|
2174
2175
|
|
|
2175
2176
|
declare const PRAXIS_LIST_EN_US: {
|
|
2177
|
+
readonly loading: "Loading items…";
|
|
2176
2178
|
readonly "configurationSource.label": "Configuration source";
|
|
2177
2179
|
readonly "configurationSource.page": "Page configuration";
|
|
2178
2180
|
readonly "configurationSource.individual": "Individual list preferences";
|
|
@@ -2559,6 +2561,7 @@ declare const PRAXIS_LIST_I18N_NAMESPACE = "praxis-list";
|
|
|
2559
2561
|
declare function providePraxisListI18n(): i0.Provider[];
|
|
2560
2562
|
|
|
2561
2563
|
declare const PRAXIS_LIST_PT_BR: {
|
|
2564
|
+
readonly loading: "Carregando itens…";
|
|
2562
2565
|
readonly "configurationSource.label": "Origem da configuração";
|
|
2563
2566
|
readonly "configurationSource.page": "Configuração da página";
|
|
2564
2567
|
readonly "configurationSource.individual": "Preferências individuais da lista";
|