@propbinder/mobile-design 0.2.41 → 0.2.43

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
@@ -6699,6 +6699,8 @@ interface HandbookDetailData {
6699
6699
  title: string;
6700
6700
  /** Color variant: 'success', 'warning', 'destructive', 'blue', 'light-purple', 'pink', 'salmon-orange', 'orange', 'lime-green', 'grey' */
6701
6701
  variant: string;
6702
+ /** Optional custom hex color */
6703
+ customColor?: string;
6702
6704
  /** Icon name from design system (e.g., 'remixKey2Line', 'remixLightbulbLine') */
6703
6705
  iconName: string;
6704
6706
  /** Total number of items/sections in this category */
@@ -6934,6 +6936,11 @@ declare class DsMobileHandbookFolderComponent {
6934
6936
  * Example: 'pink', 'success', 'blue'
6935
6937
  */
6936
6938
  variant: string;
6939
+ /**
6940
+ * Optional custom hex color for the folder.
6941
+ * If provided, overrides the variant color completely.
6942
+ */
6943
+ customColor?: string;
6937
6944
  /**
6938
6945
  * Icon name from the design system icon library
6939
6946
  * Example: 'remixLightbulbLine', 'remixFolder3Line'
@@ -7003,7 +7010,7 @@ declare class DsMobileHandbookFolderComponent {
7003
7010
  getPageSheets(): number[];
7004
7011
  constructor(handbookModal: DsMobileHandbookDetailModalService);
7005
7012
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileHandbookFolderComponent, never>;
7006
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileHandbookFolderComponent, "ds-mobile-handbook-folder", never, { "variant": { "alias": "variant"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "itemCount": { "alias": "itemCount"; "required": false; }; "label": { "alias": "label"; "required": false; }; "items": { "alias": "items"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "error": { "alias": "error"; "required": false; }; }, {}, never, never, true, never>;
7013
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileHandbookFolderComponent, "ds-mobile-handbook-folder", never, { "variant": { "alias": "variant"; "required": false; }; "customColor": { "alias": "customColor"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "itemCount": { "alias": "itemCount"; "required": false; }; "label": { "alias": "label"; "required": false; }; "items": { "alias": "items"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "error": { "alias": "error"; "required": false; }; }, {}, never, never, true, never>;
7007
7014
  }
7008
7015
 
7009
7016
  /**
@@ -7026,6 +7033,11 @@ declare class DsMobileHandbookFolderMiniComponent {
7026
7033
  * Available variants: success, warning, destructive, blue, light-purple, pink, salmon-orange, orange, lime-green, grey
7027
7034
  */
7028
7035
  variant: string;
7036
+ /**
7037
+ * Optional custom hex color for the folder.
7038
+ * If provided, overrides the variant color.
7039
+ */
7040
+ customColor?: string;
7029
7041
  /**
7030
7042
  * Icon name from the design system icon library
7031
7043
  */
@@ -7035,7 +7047,7 @@ declare class DsMobileHandbookFolderMiniComponent {
7035
7047
  */
7036
7048
  getColorVar(suffix: 'base' | 'strong'): string;
7037
7049
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileHandbookFolderMiniComponent, never>;
7038
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileHandbookFolderMiniComponent, "ds-mobile-handbook-folder-mini", never, { "variant": { "alias": "variant"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; }, {}, never, never, true, never>;
7050
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileHandbookFolderMiniComponent, "ds-mobile-handbook-folder-mini", never, { "variant": { "alias": "variant"; "required": false; }; "customColor": { "alias": "customColor"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; }, {}, never, never, true, never>;
7039
7051
  }
7040
7052
 
7041
7053
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@propbinder/mobile-design",
3
- "version": "0.2.41",
3
+ "version": "0.2.43",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.3.0 || ^21.0.0",
6
6
  "@angular/core": "^20.3.0 || ^21.0.0"