dfh-ui-library 1.13.143 → 1.13.145

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.
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const FilterButtonGroupExample: React.FC;
3
+ export default FilterButtonGroupExample;
@@ -106,7 +106,7 @@ export interface AccountPopoverMenuItem {
106
106
  }
107
107
  export interface Environment {
108
108
  environment: string;
109
- tag?: string;
109
+ tags?: string[];
110
110
  version?: string;
111
111
  id: string;
112
112
  }
@@ -534,6 +534,11 @@ export interface ButtonGroupProps extends InputGroupProps {
534
534
  setSelectedUserValues?: (users: OptionProps[]) => void;
535
535
  isDischarged?: boolean;
536
536
  secondaryVisible?: boolean;
537
+ countData?: {
538
+ my?: number;
539
+ assigned?: number;
540
+ unassigned?: number;
541
+ };
537
542
  }
538
543
  export interface ButtonGroupWithInputsProps extends Omit<ButtonGroupProps, 'selected' | 'onSelect'> {
539
544
  options: {
package/dist/index.d.ts CHANGED
@@ -96,7 +96,7 @@ interface AccountPopoverMenuItem {
96
96
  }
97
97
  interface Environment {
98
98
  environment: string;
99
- tag?: string;
99
+ tags?: string[];
100
100
  version?: string;
101
101
  id: string;
102
102
  }
@@ -500,6 +500,11 @@ interface ButtonGroupProps extends InputGroupProps {
500
500
  setSelectedUserValues?: (users: OptionProps[]) => void;
501
501
  isDischarged?: boolean;
502
502
  secondaryVisible?: boolean;
503
+ countData?: {
504
+ my?: number;
505
+ assigned?: number;
506
+ unassigned?: number;
507
+ };
503
508
  }
504
509
  interface ButtonGroupMultiProps extends InputGroupProps {
505
510
  options: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.13.143",
3
+ "version": "1.13.145",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",