@praxisui/core 1.0.0-beta.40 → 1.0.0-beta.41

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/index.d.ts CHANGED
@@ -4404,6 +4404,18 @@ interface MaterialSelectMetadata extends FieldMetadata {
4404
4404
  selectAll?: boolean;
4405
4405
  /** Maximum number of selections (for multiple) */
4406
4406
  maxSelections?: number;
4407
+ /** Inline/runtime compatibility for panel search icon. */
4408
+ panelSearchIcon?: string;
4409
+ /** Inline/runtime compatibility for panel search icon color. */
4410
+ panelSearchIconColor?: string;
4411
+ /** Inline/runtime compatibility for panel reset icon. */
4412
+ panelResetIcon?: string;
4413
+ /** Inline/runtime compatibility for panel reset icon color. */
4414
+ panelResetIconColor?: string;
4415
+ /** Inline/runtime compatibility for selected option icon. */
4416
+ optionSelectedIcon?: string;
4417
+ /** Inline/runtime compatibility for selected option icon color. */
4418
+ optionSelectedIconColor?: string;
4407
4419
  }
4408
4420
  /**
4409
4421
  * Metadata for Material Autocomplete components.
@@ -5397,6 +5409,16 @@ interface MaterialTimepickerMetadata extends BaseMaterialInputMetadata {
5397
5409
  openPanelAriaLabel?: string;
5398
5410
  closePanelAriaLabel?: string;
5399
5411
  };
5412
+ /** Inline/runtime compatibility for panel toggle icon when closed. */
5413
+ panelToggleCloseIcon?: string;
5414
+ /** Inline/runtime compatibility for panel toggle icon when open. */
5415
+ panelToggleOpenIcon?: string;
5416
+ /** Inline/runtime compatibility for panel toggle icon color. */
5417
+ panelToggleIconColor?: string;
5418
+ /** Inline/runtime compatibility for selected option icon. */
5419
+ optionSelectedIcon?: string;
5420
+ /** Inline/runtime compatibility for selected option icon color. */
5421
+ optionSelectedIconColor?: string;
5400
5422
  /** Identifier of a custom filter function to disable specific times. */
5401
5423
  timeFilter?: string;
5402
5424
  }
@@ -5434,6 +5456,28 @@ interface MaterialTreeSelectMetadata extends FieldMetadata {
5434
5456
  controlType: typeof FieldControlType.TREE_SELECT;
5435
5457
  /** Tree nodes to display */
5436
5458
  nodes?: MaterialTreeNode[];
5459
+ /** Enable search input */
5460
+ searchable?: boolean;
5461
+ /** Placeholder text for tree search input */
5462
+ searchPlaceholder?: string;
5463
+ /** Empty state message for filtered tree */
5464
+ emptyStateText?: string;
5465
+ /** Inline/runtime compatibility for panel search icon. */
5466
+ panelSearchIcon?: string;
5467
+ /** Inline/runtime compatibility for panel search icon color. */
5468
+ panelSearchIconColor?: string;
5469
+ /** Inline/runtime compatibility for panel toggle icon when closed. */
5470
+ panelToggleCloseIcon?: string;
5471
+ /** Inline/runtime compatibility for panel toggle icon when open. */
5472
+ panelToggleOpenIcon?: string;
5473
+ /** Inline/runtime compatibility for panel toggle icon color. */
5474
+ panelToggleIconColor?: string;
5475
+ /** Inline/runtime compatibility for expanded tree node icon. */
5476
+ treeNodeExpandedIcon?: string;
5477
+ /** Inline/runtime compatibility for collapsed tree node icon. */
5478
+ treeNodeCollapsedIcon?: string;
5479
+ /** Inline/runtime compatibility for tree node toggle icon color. */
5480
+ treeNodeIconColor?: string;
5437
5481
  /** Whether only leaf nodes can be selected */
5438
5482
  leafOnly?: boolean;
5439
5483
  /** Auto expand matches when searching */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/core",
3
- "version": "1.0.0-beta.40",
3
+ "version": "1.0.0-beta.41",
4
4
  "description": "Core library for Praxis UI Workspace: types, tokens, services and utilities shared across @praxisui/* packages.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.0.0",