@praxisui/list 8.0.0-beta.31 → 8.0.0-beta.33
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/fesm2022/praxisui-list.mjs +115 -119
- package/package.json +15 -14
- package/{index.d.ts → types/praxisui-list.d.ts} +24 -23
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/list",
|
|
3
|
-
"version": "8.0.0-beta.
|
|
3
|
+
"version": "8.0.0-beta.33",
|
|
4
4
|
"description": "List components and helpers for Praxis UI.",
|
|
5
5
|
"peerDependencies": {
|
|
6
|
-
"@angular/common": "
|
|
7
|
-
"@angular/core": "
|
|
8
|
-
"@angular/material": "
|
|
9
|
-
"@praxisui/dynamic-fields": "^8.0.0-beta.
|
|
6
|
+
"@angular/common": "^21.0.0",
|
|
7
|
+
"@angular/core": "^21.0.0",
|
|
8
|
+
"@angular/material": "^21.0.0",
|
|
9
|
+
"@praxisui/dynamic-fields": "^8.0.0-beta.33",
|
|
10
10
|
"rxjs": ">=7 <9",
|
|
11
|
-
"@angular/forms": "
|
|
12
|
-
"@angular/router": "
|
|
13
|
-
"@praxisui/ai": "^8.0.0-beta.
|
|
14
|
-
"@praxisui/core": "^8.0.0-beta.
|
|
15
|
-
"@praxisui/rich-content": "^8.0.0-beta.
|
|
16
|
-
"@praxisui/settings-panel": "^8.0.0-beta.
|
|
11
|
+
"@angular/forms": "^21.0.0",
|
|
12
|
+
"@angular/router": "^21.0.0",
|
|
13
|
+
"@praxisui/ai": "^8.0.0-beta.33",
|
|
14
|
+
"@praxisui/core": "^8.0.0-beta.33",
|
|
15
|
+
"@praxisui/rich-content": "^8.0.0-beta.33",
|
|
16
|
+
"@praxisui/settings-panel": "^8.0.0-beta.33"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"tslib": "^2.3.0",
|
|
@@ -41,14 +41,15 @@
|
|
|
41
41
|
],
|
|
42
42
|
"sideEffects": false,
|
|
43
43
|
"module": "fesm2022/praxisui-list.mjs",
|
|
44
|
-
"typings": "
|
|
44
|
+
"typings": "types/praxisui-list.d.ts",
|
|
45
45
|
"exports": {
|
|
46
46
|
"./package.json": {
|
|
47
47
|
"default": "./package.json"
|
|
48
48
|
},
|
|
49
49
|
".": {
|
|
50
|
-
"types": "./
|
|
50
|
+
"types": "./types/praxisui-list.d.ts",
|
|
51
51
|
"default": "./fesm2022/praxisui-list.mjs"
|
|
52
52
|
}
|
|
53
|
-
}
|
|
53
|
+
},
|
|
54
|
+
"type": "module"
|
|
54
55
|
}
|
|
@@ -6,9 +6,10 @@ import { MatSelectionListChange } from '@angular/material/list';
|
|
|
6
6
|
import { MatPaginatorSelectConfig, PageEvent } from '@angular/material/paginator';
|
|
7
7
|
import { FormGroup, FormControl } from '@angular/forms';
|
|
8
8
|
import * as _praxisui_core from '@praxisui/core';
|
|
9
|
-
import { PraxisExportFormat, PraxisExportScope, PraxisRuntimeConditionalEffectRule, JsonLogicExpression, GlobalActionRef, LocalizationConfig, AiCapability, PraxisDataQueryContext, RichBlockNode, GlobalActionCatalogEntry, SurfaceOpenPayload, SettingsValueProvider as SettingsValueProvider$1, RichPresenterNode, RichComposeNode, ComponentDocMeta, AiCapabilityCategory,
|
|
9
|
+
import { PraxisExportFormat, PraxisExportScope, PraxisRuntimeConditionalEffectRule, JsonLogicExpression, GlobalActionRef, LocalizationConfig, AiCapability, PraxisDataQueryContext, RichBlockNode, GlobalActionCatalogEntry, SurfaceOpenPayload, SettingsValueProvider as SettingsValueProvider$1, RichPresenterNode, RichComposeNode, ComponentDocMeta, AiCapabilityCategory, AiCapabilityCatalog, AiValueKind, ComponentAuthoringManifest } from '@praxisui/core';
|
|
10
10
|
import { BaseAiAdapter, AiResponseCompileResult, PatchResult, PraxisAssistantTurnViewState, PraxisAssistantShellLayout, PraxisAssistantShellLabels, PraxisAssistantSessionSnapshot, PraxisAssistantShellQuickReply, PraxisAssistantShellMessage } from '@praxisui/ai';
|
|
11
11
|
import { SettingsValueProvider } from '@praxisui/settings-panel';
|
|
12
|
+
import * as _praxisui_list from '@praxisui/list';
|
|
12
13
|
|
|
13
14
|
type TemplateType = 'text' | 'icon' | 'image' | 'chip' | 'rating' | 'currency' | 'date' | 'html' | 'slot' | 'metric' | 'compose' | 'component';
|
|
14
15
|
interface TemplateDef {
|
|
@@ -1786,7 +1787,7 @@ declare class PraxisListDocPageComponent {
|
|
|
1786
1787
|
rowLayout?: {
|
|
1787
1788
|
type?: "grid" | "flex";
|
|
1788
1789
|
columns?: Array<{
|
|
1789
|
-
slot: ListRowLayoutSlot;
|
|
1790
|
+
slot: _praxisui_list.ListRowLayoutSlot;
|
|
1790
1791
|
width?: string;
|
|
1791
1792
|
minWidth?: string;
|
|
1792
1793
|
maxWidth?: string;
|
|
@@ -1824,33 +1825,33 @@ declare class PraxisListDocPageComponent {
|
|
|
1824
1825
|
} | undefined;
|
|
1825
1826
|
templating: {
|
|
1826
1827
|
statusPosition: "top-right";
|
|
1827
|
-
leading?: TemplateDef;
|
|
1828
|
-
primary?: TemplateDef;
|
|
1829
|
-
secondary?: TemplateDef;
|
|
1830
|
-
meta?: TemplateDef;
|
|
1831
|
-
trailing?: TemplateDef;
|
|
1832
|
-
identity?: TemplateDef;
|
|
1833
|
-
balance?: TemplateDef;
|
|
1834
|
-
limit?: TemplateDef;
|
|
1835
|
-
risk?: TemplateDef;
|
|
1836
|
-
alerts?: TemplateDef;
|
|
1837
|
-
owner?: TemplateDef;
|
|
1828
|
+
leading?: _praxisui_list.TemplateDef;
|
|
1829
|
+
primary?: _praxisui_list.TemplateDef;
|
|
1830
|
+
secondary?: _praxisui_list.TemplateDef;
|
|
1831
|
+
meta?: _praxisui_list.TemplateDef;
|
|
1832
|
+
trailing?: _praxisui_list.TemplateDef;
|
|
1833
|
+
identity?: _praxisui_list.TemplateDef;
|
|
1834
|
+
balance?: _praxisui_list.TemplateDef;
|
|
1835
|
+
limit?: _praxisui_list.TemplateDef;
|
|
1836
|
+
risk?: _praxisui_list.TemplateDef;
|
|
1837
|
+
alerts?: _praxisui_list.TemplateDef;
|
|
1838
|
+
owner?: _praxisui_list.TemplateDef;
|
|
1838
1839
|
metaPlacement?: "side" | "line";
|
|
1839
1840
|
metaPrefixIcon?: string;
|
|
1840
1841
|
chipColorMap?: Record<string, string>;
|
|
1841
1842
|
chipLabelMap?: Record<string, string>;
|
|
1842
1843
|
iconColorMap?: Record<string, string>;
|
|
1843
|
-
features?: TemplatingFeatureDef[];
|
|
1844
|
+
features?: _praxisui_list.TemplatingFeatureDef[];
|
|
1844
1845
|
featuresVisible?: boolean;
|
|
1845
1846
|
featuresMode?: "icons+labels" | "icons-only" | "labels-only";
|
|
1846
|
-
sectionHeader?: TemplateDef;
|
|
1847
|
-
emptyState?: TemplateDef;
|
|
1847
|
+
sectionHeader?: _praxisui_list.TemplateDef;
|
|
1848
|
+
emptyState?: _praxisui_list.TemplateDef;
|
|
1848
1849
|
skeleton?: {
|
|
1849
1850
|
count?: number;
|
|
1850
1851
|
};
|
|
1851
1852
|
};
|
|
1852
1853
|
id?: string;
|
|
1853
|
-
export?: PraxisListExportConfig;
|
|
1854
|
+
export?: _praxisui_list.PraxisListExportConfig;
|
|
1854
1855
|
interaction?: {
|
|
1855
1856
|
expandable?: boolean;
|
|
1856
1857
|
expandTrigger?: "row" | "icon" | "row+icon";
|
|
@@ -1858,11 +1859,11 @@ declare class PraxisListDocPageComponent {
|
|
|
1858
1859
|
expandPlacement?: "expand" | "trailing";
|
|
1859
1860
|
};
|
|
1860
1861
|
rules?: {
|
|
1861
|
-
itemStyles?: ListItemStyleRule[];
|
|
1862
|
-
slotOverrides?: ListSlotOverrideRule[];
|
|
1862
|
+
itemStyles?: _praxisui_list.ListItemStyleRule[];
|
|
1863
|
+
slotOverrides?: _praxisui_list.ListSlotOverrideRule[];
|
|
1863
1864
|
};
|
|
1864
1865
|
expansion?: {
|
|
1865
|
-
sections?: ListExpansionSectionDef[];
|
|
1866
|
+
sections?: _praxisui_list.ListExpansionSectionDef[];
|
|
1866
1867
|
dataSource?: {
|
|
1867
1868
|
mode?: "inline" | "resource" | "resourcePath";
|
|
1868
1869
|
resource?: {
|
|
@@ -1897,8 +1898,8 @@ declare class PraxisListDocPageComponent {
|
|
|
1897
1898
|
padding?: string;
|
|
1898
1899
|
class?: string;
|
|
1899
1900
|
style?: string;
|
|
1900
|
-
loadingTemplate?: TemplateDef;
|
|
1901
|
-
errorTemplate?: TemplateDef;
|
|
1901
|
+
loadingTemplate?: _praxisui_list.TemplateDef;
|
|
1902
|
+
errorTemplate?: _praxisui_list.TemplateDef;
|
|
1902
1903
|
};
|
|
1903
1904
|
};
|
|
1904
1905
|
actions?: Array<{
|
|
@@ -1920,7 +1921,7 @@ declare class PraxisListDocPageComponent {
|
|
|
1920
1921
|
type?: "danger" | "warning" | "info";
|
|
1921
1922
|
};
|
|
1922
1923
|
}>;
|
|
1923
|
-
i18n?: PraxisListI18nConfig;
|
|
1924
|
+
i18n?: _praxisui_list.PraxisListI18nConfig;
|
|
1924
1925
|
ui?: {
|
|
1925
1926
|
showSearch?: boolean;
|
|
1926
1927
|
searchField?: string;
|