dfh-ui-library 1.13.115 → 1.13.116
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/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/shared/models/components/common.model.d.ts +2 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/shared/models/components/common.model.d.ts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
@@ -962,6 +962,8 @@ export interface NoteComponentProps {
|
|
962
962
|
isSaving?: boolean;
|
963
963
|
isBillable?: boolean;
|
964
964
|
enableBillableCheckBox?: boolean;
|
965
|
+
isTyping?: boolean;
|
966
|
+
setIsTyping?: (value: boolean) => void;
|
965
967
|
}
|
966
968
|
export interface TabButtonProps {
|
967
969
|
onClickTab?: (value: string) => void;
|
package/dist/index.d.ts
CHANGED
@@ -830,6 +830,8 @@ interface NoteComponentProps {
|
|
830
830
|
isSaving?: boolean;
|
831
831
|
isBillable?: boolean;
|
832
832
|
enableBillableCheckBox?: boolean;
|
833
|
+
isTyping?: boolean;
|
834
|
+
setIsTyping?: (value: boolean) => void;
|
833
835
|
}
|
834
836
|
interface TabButtonProps {
|
835
837
|
onClickTab?: (value: string) => void;
|