dfh-ui-library 1.13.12 → 1.13.14
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
@@ -124,6 +124,7 @@ export interface MessageProps {
|
|
124
124
|
type: string;
|
125
125
|
text: string;
|
126
126
|
onClose?: () => void;
|
127
|
+
isVisible?: boolean;
|
127
128
|
}
|
128
129
|
export interface BreadcrumbProps {
|
129
130
|
items: BreadcrumbItem[];
|
@@ -893,6 +894,7 @@ export interface NoteComponentProps {
|
|
893
894
|
isAutoSave?: boolean;
|
894
895
|
isOptional?: boolean;
|
895
896
|
badgeLabel?: string;
|
897
|
+
stayOnSave?: boolean;
|
896
898
|
}
|
897
899
|
export interface TabButtonProps {
|
898
900
|
onClickTab?: (value: string) => void;
|
package/dist/index.d.ts
CHANGED
@@ -101,6 +101,7 @@ interface MessageProps {
|
|
101
101
|
type: string;
|
102
102
|
text: string;
|
103
103
|
onClose?: () => void;
|
104
|
+
isVisible?: boolean;
|
104
105
|
}
|
105
106
|
interface BreadcrumbProps {
|
106
107
|
items: BreadcrumbItem[];
|
@@ -779,6 +780,7 @@ interface NoteComponentProps {
|
|
779
780
|
isAutoSave?: boolean;
|
780
781
|
isOptional?: boolean;
|
781
782
|
badgeLabel?: string;
|
783
|
+
stayOnSave?: boolean;
|
782
784
|
}
|
783
785
|
interface TabButtonProps {
|
784
786
|
onClickTab?: (value: string) => void;
|