dfh-ui-library 1.9.44 → 1.9.45

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.
@@ -324,6 +324,21 @@ export interface DropdownSearchProps {
324
324
  listHeader?: string;
325
325
  selected?: string;
326
326
  }
327
+ export interface DropdownVersionProps {
328
+ options?: OptionProps[];
329
+ label?: string;
330
+ labelType?: LableTypes;
331
+ onSelectedValuesChange?: (selectedValue: OptionProps) => void;
332
+ buttonProps?: BtnOptionDropdown[];
333
+ defaultValue?: string;
334
+ additionalErrorClasses?: string;
335
+ error?: string;
336
+ additionalClasses?: string;
337
+ readOnly?: boolean;
338
+ isBorderedError?: boolean;
339
+ listHeader?: string;
340
+ selected?: string;
341
+ }
327
342
  export interface UserDropdownProps {
328
343
  options?: OptionProps[];
329
344
  label?: string;
@@ -347,6 +362,16 @@ export interface UserDropdownProps {
347
362
  edited?: boolean;
348
363
  editedValue?: OptionProps;
349
364
  }
365
+ export interface VersionDropDownProps {
366
+ options?: {
367
+ displayText: string;
368
+ value: string;
369
+ }[];
370
+ additionalClasses?: string;
371
+ onClick?: () => void;
372
+ selectedValues?: string;
373
+ handleSelectedValuesChange?: (selectedValue: string) => void;
374
+ }
350
375
  export declare enum ClickedAction {
351
376
  NONE = "NONE",
352
377
  ADDME = "ADDME",
package/dist/index.d.ts CHANGED
@@ -311,6 +311,16 @@ interface UserDropdownProps {
311
311
  edited?: boolean;
312
312
  editedValue?: OptionProps;
313
313
  }
314
+ interface VersionDropDownProps {
315
+ options?: {
316
+ displayText: string;
317
+ value: string;
318
+ }[];
319
+ additionalClasses?: string;
320
+ onClick?: () => void;
321
+ selectedValues?: string;
322
+ handleSelectedValuesChange?: (selectedValue: string) => void;
323
+ }
314
324
  declare enum ClickedAction {
315
325
  NONE = "NONE",
316
326
  ADDME = "ADDME",
@@ -1063,6 +1073,8 @@ declare const Timeline: React__default.FC<TimelineProps>;
1063
1073
 
1064
1074
  declare const NoteEditor: React__default.FC<NoteComponentProps>;
1065
1075
 
1076
+ declare const VersionDateDropdown: React__default.FC<VersionDropDownProps>;
1077
+
1066
1078
  interface UseSchemaProcessorProps {
1067
1079
  schema: ISchema[];
1068
1080
  externalSetComponents: (data: IComponent[]) => void;
@@ -1367,4 +1379,4 @@ declare const themeConfigs: {
1367
1379
  plugins: any[];
1368
1380
  };
1369
1381
 
1370
- export { Breadcrumb, type BtnOptionDropdown, Button, ButtonGroup, ButtonGroupFormGen, ButtonGroupWithInputs, ButtonGroupWithInputsFormGen, ButtonGroupWithUpload, Card, Checkbox as CheckBox, ClickedAction, DFHFormProvider as ComponentProvider, CustomFileInput, CustomDatePicker as DatePicker, DialogBox, type DropdownSearchProps, DynamicDualInputTextGroupFormGen, FilterButtonGroup, Heading, Icon, IconInput, ImageInput, ImagePreview, IndeterminateCheckbox, InfoCard, Input, type InputType, InputValidation, InputsGroup, Label, LoadingSpinner, Logo, type LogoProps, Message, type MessageProps, Modal, NavBar, NoteEditor, type NoteItemProps, type OptionProps, PanelCard, PhoneNumberInput, ProgressBar, RadioButton, Row, SearchDropdownWithButton, Select, SelectUserWithButton, Stepper, Tab, TabList, TabPanel, Table, TagSelect as TagDropdown, TagSelect, Textarea, Timeline, type TimelineEventProps, Tooltip, Typhography, useSchemaProcessor as UseSchemaProcessor, type VariantTypes, themeConfigs, usePagination, useSorting };
1382
+ export { Breadcrumb, type BtnOptionDropdown, Button, ButtonGroup, ButtonGroupFormGen, ButtonGroupWithInputs, ButtonGroupWithInputsFormGen, ButtonGroupWithUpload, Card, Checkbox as CheckBox, ClickedAction, DFHFormProvider as ComponentProvider, CustomFileInput, CustomDatePicker as DatePicker, DialogBox, type DropdownSearchProps, DynamicDualInputTextGroupFormGen, FilterButtonGroup, Heading, Icon, IconInput, ImageInput, ImagePreview, IndeterminateCheckbox, InfoCard, Input, type InputType, InputValidation, InputsGroup, Label, LoadingSpinner, Logo, type LogoProps, Message, type MessageProps, Modal, NavBar, NoteEditor, type NoteItemProps, type OptionProps, PanelCard, PhoneNumberInput, ProgressBar, RadioButton, Row, SearchDropdownWithButton, Select, SelectUserWithButton, Stepper, Tab, TabList, TabPanel, Table, TagSelect as TagDropdown, TagSelect, Textarea, Timeline, type TimelineEventProps, Tooltip, Typhography, useSchemaProcessor as UseSchemaProcessor, type VariantTypes, VersionDateDropdown, themeConfigs, usePagination, useSorting };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.9.44",
3
+ "version": "1.9.45",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "rollup": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",