dfh-ui-library 1.12.184 → 1.12.186

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.
@@ -1 +1 @@
1
- export declare const handleButtonClasses: (variants?: string | undefined) => "bg-[#333333] text-white hover:bg-gray-700" | "text-16s h-[52px] text-base font-semibold leading-5 border border-solid border-[#CDCED6] bg-white" | "text-14s h-9 bg-[#333333] text-white hover:bg-gray-700" | "text-14s h-9 text-base font-semibold leading-5 border border-solid border-[#CDCED6] bg-white" | "text-14s h-7 bg-[#333333] text-white hover:bg-gray-700" | "text-14s h-7 text-base font-semibold leading-5 border border-solid border-[#CDCED6] bg-white" | "text-16s h-11 text-base font-semibold leading-5 border border-solid border-[#CDCED6] bg-white" | "text-16s h-11 bg-[#333333] text-white hover:bg-gray-700" | "text-16s h-11 bg-[#006CD0] text-21s text-white" | "text-16s h-10 bg-[#006CD0] text-21s text-white !p-0 !px-2" | "h-11 bg-[#006CD0] text-12s text-white" | "h-11 text-21s text-black-540 border border-[#CDCED6] bg-white" | "h-11 text-21s border text-btn-main border-[#006CD0] bg-[#F1F5F9]" | "h-11 text-12s border text-black-540 border-0 bg-[#F1F5F9]" | "h-11 text-21s text-black-540 border border-0 bg-white" | "h-11 text-21s text-white border border-0 bg-[#006CD0]" | "h-11 text-21s text-white border border-0 bg-pinkRead" | "h-8 text-12s text-black-540 border border-[#CDCED6] bg-white" | "flex text-12s h-8 bg-[#006CD0] text-white" | "h-8 text-12s border text-btn-main border-[#006CD0] bg-[#F1F5F9]" | "h-11 text-21s border border-0 bg-white" | "h-8 text-21s border border-0 bg-transparent" | undefined;
1
+ export declare const handleButtonClasses: (variants?: string | undefined) => "bg-[#333333] text-white hover:bg-gray-700" | "text-16s h-[52px] text-base font-semibold leading-5 border border-solid border-[#CDCED6] bg-white" | "text-14s h-9 bg-[#333333] text-white hover:bg-gray-700" | "text-14s h-9 text-base font-semibold leading-5 border border-solid border-[#CDCED6] bg-white" | "text-14s h-7 bg-[#333333] text-white hover:bg-gray-700" | "text-14s h-7 text-base font-semibold leading-5 border border-solid border-[#CDCED6] bg-white" | "text-16s h-11 text-base font-semibold leading-5 border border-solid border-[#CDCED6] bg-white" | "text-16s h-11 bg-[#333333] text-white hover:bg-gray-700" | "text-16s h-11 bg-[#006CD0] text-21s text-white" | "text-16s h-10 bg-[#006CD0] text-21s text-white !p-0 !px-2" | "bg-[#006CD0] text-12s text-white" | "text-21s text-black-540 border border-[#CDCED6] bg-white" | "text-21s border text-btn-main border-[#006CD0] bg-[#F1F5F9]" | "text-12s border text-black-540 border-0 bg-[#F1F5F9]" | "text-21s text-black-540 border border-0 bg-white" | "text-21s text-white border border-0 bg-[#006CD0]" | "text-21s text-white border border-0 bg-pinkRead" | "h-8 text-12s text-black-540 border border-[#CDCED6] bg-white" | "flex text-12s h-8 bg-[#006CD0] text-white" | "h-8 text-12s border text-btn-main border-[#006CD0] bg-[#F1F5F9]" | "h-11 text-21s border border-0 bg-white" | "h-8 text-21s border border-0 bg-transparent" | undefined;
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ import { IInputProps } from "../../../shared/models/components/base.model";
3
+ /**
4
+ * Primary UI component for user interaction
5
+ */
6
+ declare const AutoResizeTextarea: React.FC<IInputProps>;
7
+ export default AutoResizeTextarea;
@@ -0,0 +1 @@
1
+ export { default as AutoResizeTextarea } from "./AutoResizeTextarea";
@@ -12,7 +12,7 @@ interface todosProps {
12
12
  listMasterData?: ListMasterDataProps;
13
13
  detailAction?: (rowId: string | undefined) => void;
14
14
  handleNameClick?: (id?: string) => void;
15
- toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
15
+ toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
16
16
  }
17
17
  declare const Todos: React.FC<todosProps>;
18
18
  export default Todos;
@@ -591,6 +591,8 @@ export interface ITabProps extends AdditionalClassesProp {
591
591
  label: string;
592
592
  /** Unique identifier for the tab. */
593
593
  value: string;
594
+ /** Count value for the tab. */
595
+ count?: string | null;
594
596
  /** Active tab identifier (optional). */
595
597
  activeTab?: string;
596
598
  /** Callback on tab click (optional). */
@@ -687,7 +687,7 @@ export interface SideBarListProps {
687
687
  detailAction?: (value: string | undefined) => void;
688
688
  handleNameClick?: (id?: string) => void;
689
689
  handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
690
- toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
690
+ toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
691
691
  }
692
692
  export interface UrgentDataProps {
693
693
  fullName?: string | undefined;
package/dist/index.d.ts CHANGED
@@ -16,7 +16,7 @@ interface todosProps {
16
16
  listMasterData?: ListMasterDataProps;
17
17
  detailAction?: (rowId: string | undefined) => void;
18
18
  handleNameClick?: (id?: string) => void;
19
- toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
19
+ toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
20
20
  }
21
21
  declare const Todos: React__default.FC<todosProps>;
22
22
 
@@ -576,7 +576,7 @@ interface SideBarListProps {
576
576
  detailAction?: (value: string | undefined) => void;
577
577
  handleNameClick?: (id?: string) => void;
578
578
  handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
579
- toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
579
+ toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
580
580
  }
581
581
  interface UrgentDataProps {
582
582
  fullName?: string | undefined;
@@ -1128,6 +1128,8 @@ interface ITabProps extends AdditionalClassesProp {
1128
1128
  label: string;
1129
1129
  /** Unique identifier for the tab. */
1130
1130
  value: string;
1131
+ /** Count value for the tab. */
1132
+ count?: string | null;
1131
1133
  /** Active tab identifier (optional). */
1132
1134
  activeTab?: string;
1133
1135
  /** Callback on tab click (optional). */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.12.184",
3
+ "version": "1.12.186",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",