@rh-support/components 2.1.60 → 2.1.61-beta.1

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.
@@ -12,6 +12,7 @@ interface IProps {
12
12
  onPerPageSelect?: (pageSize: number) => void;
13
13
  perPageOptions?: PaginationProps['perPageOptions'];
14
14
  errorMessage?: string;
15
+ setPaginatedListLength?: React.Dispatch<React.SetStateAction<number | undefined>>;
15
16
  }
16
17
  export declare function PaginatedList(props: IProps): React.JSX.Element;
17
18
  export {};
@@ -1 +1 @@
1
- {"version":3,"file":"PaginatedList.d.ts","sourceRoot":"","sources":["../../../src/PaginatedList/PaginatedList.tsx"],"names":[],"mappings":"AAAA,OAAO,EAIH,eAAe,EAElB,MAAM,wBAAwB,CAAC;AAEhC,OAAO,KAA8B,MAAM,OAAO,CAAC;AAKnD,UAAU,MAAM;IACZ,EAAE,EAAE,MAAM,CAAC;IACX,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,KAAK,CAAC,SAAS,EAAE,CAAC;IAC7B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,SAAS,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;IACzC,eAAe,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C,cAAc,CAAC,EAAE,eAAe,CAAC,gBAAgB,CAAC,CAAC;IACnD,YAAY,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,wBAAgB,aAAa,CAAC,KAAK,EAAE,MAAM,qBA4D1C"}
1
+ {"version":3,"file":"PaginatedList.d.ts","sourceRoot":"","sources":["../../../src/PaginatedList/PaginatedList.tsx"],"names":[],"mappings":"AAAA,OAAO,EAIH,eAAe,EAElB,MAAM,wBAAwB,CAAC;AAEhC,OAAO,KAA8B,MAAM,OAAO,CAAC;AAKnD,UAAU,MAAM;IACZ,EAAE,EAAE,MAAM,CAAC;IACX,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,KAAK,CAAC,SAAS,EAAE,CAAC;IAC7B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,SAAS,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;IACzC,eAAe,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C,cAAc,CAAC,EAAE,eAAe,CAAC,gBAAgB,CAAC,CAAC;IACnD,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,sBAAsB,CAAC,EAAE,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,cAAc,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC,CAAC;CACrF;AAED,wBAAgB,aAAa,CAAC,KAAK,EAAE,MAAM,qBAwE1C"}
@@ -14,6 +14,15 @@ export function PaginatedList(props) {
14
14
  if (!props.serverPaginated) {
15
15
  listItems = listItems.slice(indexOfFirstShownElement, indexOfFirstShownElement + pageSize);
16
16
  }
17
+ useEffect(() => {
18
+ // Only update the external state if the prop function is provided
19
+ if (props.setPaginatedListLength) {
20
+ // Calculate the length based on current page and perPage, or directly use listItems.length
21
+ listItems &&
22
+ props.setPaginatedListLength(listItems.slice(indexOfFirstShownElement, indexOfFirstShownElement + pageSize).length);
23
+ }
24
+ // eslint-disable-next-line react-hooks/exhaustive-deps
25
+ }, [props.listItems.length]);
17
26
  const onSetPage = (event, pageNumber) => {
18
27
  setCurrentPage(pageNumber);
19
28
  props.onSetPage && props.onSetPage(pageNumber);
@@ -10,6 +10,7 @@ interface IProps {
10
10
  setInvalid?: (boolean: any) => void;
11
11
  isLoading?: boolean;
12
12
  isDisabled?: boolean;
13
+ shouldNotSetCountryCode?: boolean;
13
14
  }
14
15
  export declare const getPhoneObj: (phoneNumber: string) => {
15
16
  countryCode: string;
@@ -1 +1 @@
1
- {"version":3,"file":"PhoneInput.d.ts","sourceRoot":"","sources":["../../../src/PhoneInput/PhoneInput.tsx"],"names":[],"mappings":"AAAA,OAAO,mBAAmB,CAAC;AAM3B,OAAO,KAA8B,MAAM,OAAO,CAAC;AAKnD,UAAU,MAAM;IACZ,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kBAAkB,EAAE,CAAC,MAAM,KAAA,KAAK,IAAI,CAAC;IACrC,WAAW,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,CAAC;IACtE,mBAAmB,CAAC,EAAE,CAAC,MAAM,KAAA,KAAK,IAAI,CAAC;IACvC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,UAAU,CAAC,EAAE,CAAC,OAAO,KAAA,KAAK,IAAI,CAAC;IAC/B,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;CACxB;AA4DD,eAAO,MAAM,WAAW,gBAAiB,MAAM;;;CAqB9C,CAAC;AAEF,wBAAgB,UAAU,CAAC,KAAK,EAAE,MAAM,qBAuPvC"}
1
+ {"version":3,"file":"PhoneInput.d.ts","sourceRoot":"","sources":["../../../src/PhoneInput/PhoneInput.tsx"],"names":[],"mappings":"AAAA,OAAO,mBAAmB,CAAC;AAM3B,OAAO,KAA8B,MAAM,OAAO,CAAC;AAKnD,UAAU,MAAM;IACZ,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kBAAkB,EAAE,CAAC,MAAM,KAAA,KAAK,IAAI,CAAC;IACrC,WAAW,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,CAAC;IACtE,mBAAmB,CAAC,EAAE,CAAC,MAAM,KAAA,KAAK,IAAI,CAAC;IACvC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,UAAU,CAAC,EAAE,CAAC,OAAO,KAAA,KAAK,IAAI,CAAC;IAC/B,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,uBAAuB,CAAC,EAAE,OAAO,CAAC;CACrC;AA4ED,eAAO,MAAM,WAAW,gBAAiB,MAAM;;;CAqB9C,CAAC;AAEF,wBAAgB,UAAU,CAAC,KAAK,EAAE,MAAM,qBAoRvC"}
@@ -32,11 +32,24 @@ const initializedCountries = COUNTRY_DATA.map((country) => {
32
32
  };
33
33
  return countryItem;
34
34
  });
35
+ const trimAndReplacePlusFromPhone = (value) => {
36
+ var _a;
37
+ if (!value)
38
+ return '';
39
+ return (_a = value === null || value === void 0 ? void 0 : value.trim()) === null || _a === void 0 ? void 0 : _a.replace('+', '');
40
+ };
41
+ const removeAllSpaces = (value) => {
42
+ // to remove all trailing and in between spaces
43
+ if (!value)
44
+ return '';
45
+ return value === null || value === void 0 ? void 0 : value.replace(/\s+/g, '');
46
+ };
35
47
  // Formatting phone numbers according to country
36
48
  const formatNumber = (fullPhoneNumber, localFormat) => {
37
49
  if (isEmpty(fullPhoneNumber))
38
50
  return '';
39
- let localPhone = fullPhoneNumber.replace(PREFIX, '');
51
+ let localPhone = fullPhoneNumber === null || fullPhoneNumber === void 0 ? void 0 : fullPhoneNumber.replace(PREFIX, '');
52
+ localPhone = removeAllSpaces(localPhone);
40
53
  if (isEmpty(localPhone))
41
54
  return '';
42
55
  // Formatting inputted number
@@ -48,7 +61,7 @@ const formatNumber = (fullPhoneNumber, localFormat) => {
48
61
  });
49
62
  let pattern = '';
50
63
  let i = 0;
51
- for (let j = 0; j < (localFormat === null || localFormat === void 0 ? void 0 : localFormat.length) && i < phone.length; j++) {
64
+ for (let j = 0; j < (localFormat === null || localFormat === void 0 ? void 0 : localFormat.length) && i < (phone === null || phone === void 0 ? void 0 : phone.length); j++) {
52
65
  if (localFormat[j] === '.') {
53
66
  pattern += phone[i];
54
67
  i++;
@@ -57,11 +70,13 @@ const formatNumber = (fullPhoneNumber, localFormat) => {
57
70
  pattern += localFormat[j];
58
71
  }
59
72
  }
73
+ const isPatternWithPrefix = pattern.replace(/\s+/g, '').startsWith(PREFIX);
74
+ pattern = isPatternWithPrefix ? pattern : !isEmpty(isPatternWithPrefix) ? PREFIX + pattern : '';
60
75
  return pattern;
61
76
  };
62
77
  // return phoneline and countrycode for any given phone
63
78
  export const getPhoneObj = (phoneNumber) => {
64
- let localPhone = phoneNumber.replace(/[^0-9]/g, '');
79
+ let localPhone = phoneNumber === null || phoneNumber === void 0 ? void 0 : phoneNumber.replace(/[^0-9]/g, '');
65
80
  let countryCode = '';
66
81
  // Guessing countries according to user input
67
82
  const possibleCountries = initializedCountries.filter((country) => localPhone === null || localPhone === void 0 ? void 0 : localPhone.startsWith(country.dialCode.toString()));
@@ -74,16 +89,17 @@ export const getPhoneObj = (phoneNumber) => {
74
89
  }
75
90
  return {
76
91
  countryCode: PREFIX + countryCode,
77
- phoneLine: localPhone.substring(countryCode.length, localPhone.length),
92
+ phoneLine: localPhone === null || localPhone === void 0 ? void 0 : localPhone.substring(countryCode.length, localPhone.length),
78
93
  };
79
94
  };
80
95
  export function PhoneInput(props) {
81
- const { phoneValue, countryCode, onCountryCodeChange, onPhoneValueChange, validations, setInvalid } = props;
96
+ const { phoneValue, countryCode, onCountryCodeChange, onPhoneValueChange, validations, setInvalid, shouldNotSetCountryCode, } = props;
82
97
  const { t } = useTranslation();
83
98
  const [isOpen, setIsOpen] = useState(false);
84
99
  const [iso2, setIso2] = useState('');
85
100
  const [formattedNumber, setFormattedNumber] = useState('');
86
101
  const [format, setFormat] = useState('');
102
+ const [phoneWithoutCountryCode, setPhoneWithoutCountryCode] = useState('');
87
103
  const [countryObj, setCountryObj] = useState({
88
104
  name: '', // Country name
89
105
  regions: [''], // Surronding regions
@@ -98,8 +114,11 @@ export function PhoneInput(props) {
98
114
  let localPhone = phoneNumber === null || phoneNumber === void 0 ? void 0 : phoneNumber.replace(PREFIX, '').trim();
99
115
  localPhone = localPhone === null || localPhone === void 0 ? void 0 : localPhone.replace('(', '').trim();
100
116
  localPhone = localPhone === null || localPhone === void 0 ? void 0 : localPhone.replace(/ +/g, '');
101
- // if the user selects a value from the dropdown and the country code is the same as prev, iso2 values shouldn't override
117
+ if (shouldNotSetCountryCode) {
118
+ return PREFIX + DEFAULT_MASK; // default format for portal phone without country code
119
+ }
102
120
  if (!isEmpty(countryObj) && isEqual(localPhone, countryObj.dialCode)) {
121
+ // if the user selects a value from the dropdown and the country code is the same as prev, iso2 values shouldn't override
103
122
  onCountryCodeChange && onCountryCodeChange(PREFIX + countryObj.countryCode);
104
123
  return countryObj.format;
105
124
  }
@@ -198,24 +217,15 @@ export function PhoneInput(props) {
198
217
  React.createElement("div", { className: "pf-v5-u-display-inline-flex" },
199
218
  React.createElement("div", { className: `flag ${iso2}`, style: { marginRight: '5px' } }),
200
219
  iso2.toUpperCase())));
201
- useEffect(() => {
202
- if (isEmpty(phoneValue)) {
203
- setInvalid && setInvalid(false);
204
- return;
205
- }
206
- if (isEmpty(iso2)) {
207
- const localFormat = setLocalFormat(phoneValue);
208
- const _formattedNumber = formatNumber(phoneValue, localFormat);
209
- setFormattedNumber(_formattedNumber);
210
- }
211
- // eslint-disable-next-line react-hooks/exhaustive-deps
212
- }, []);
213
220
  useEffect(() => {
214
221
  if (!isEmpty(countryObj.iso2) && `${PREFIX}${countryObj.dialCode}` !== countryCode) {
222
+ if (shouldNotSetCountryCode) {
223
+ onCountryCodeChange && onCountryCodeChange(PREFIX + countryObj.dialCode);
224
+ }
215
225
  setIso2(countryObj.iso2);
216
226
  setFormat(countryObj.format);
217
- onPhoneValueChange(`${PREFIX}${countryObj.dialCode}`);
218
- setFormattedNumber(`${PREFIX}${countryObj.dialCode}`);
227
+ onPhoneValueChange(`${PREFIX}${countryObj.dialCode} ${trimAndReplacePlusFromPhone(phoneWithoutCountryCode)}`);
228
+ setFormattedNumber(`${PREFIX}${countryObj.dialCode} ${trimAndReplacePlusFromPhone(phoneWithoutCountryCode)}`);
219
229
  }
220
230
  // eslint-disable-next-line react-hooks/exhaustive-deps
221
231
  }, [countryObj]);
@@ -243,15 +253,37 @@ export function PhoneInput(props) {
243
253
  setInvalid && setInvalid(false);
244
254
  setFormattedNumber('');
245
255
  onPhoneValueChange('');
256
+ setPhoneWithoutCountryCode('');
246
257
  }
247
258
  else {
248
259
  onPhoneValueChange(phoneValue);
249
260
  const localFormat = setLocalFormat(phoneValue);
250
261
  const _formattedNumber = formatNumber(phoneValue, localFormat);
251
262
  setFormattedNumber(_formattedNumber);
263
+ // to have phone without country code so it can populated with the newly selected country code
264
+ // instead of keeping it just country code
265
+ setPhoneWithoutCountryCode(removeAllSpaces(phoneValue).replace(countryCode, ''));
252
266
  }
253
267
  // eslint-disable-next-line react-hooks/exhaustive-deps
254
268
  }, [phoneValue]);
269
+ // For first time user whose phone is fetched from portal without country code
270
+ // For phone length less or equal to 10 country code shouldn't be fetched to avoid faulty phone population
271
+ // shouldNotSetCountryCode flag from ContactPhoneNumber
272
+ useEffect(() => {
273
+ if (shouldNotSetCountryCode) {
274
+ setIso2('');
275
+ onCountryCodeChange && onCountryCodeChange('');
276
+ }
277
+ else {
278
+ setIso2(countryObj.iso2);
279
+ onCountryCodeChange && onCountryCodeChange(PREFIX + countryCode);
280
+ }
281
+ onPhoneValueChange && onPhoneValueChange(removeAllSpaces(phoneValue)); // removing trailing and in between spaces
282
+ const localFormat = setLocalFormat(phoneValue);
283
+ const _formattedNumber = formatNumber(phoneValue, localFormat);
284
+ setFormattedNumber(_formattedNumber);
285
+ // eslint-disable-next-line react-hooks/exhaustive-deps
286
+ }, [shouldNotSetCountryCode]);
255
287
  return (React.createElement(InputGroup, { className: "phone-number-input" },
256
288
  React.createElement(InputGroupItem, null,
257
289
  React.createElement("div", null,
@@ -7,8 +7,10 @@ interface IProps {
7
7
  topContentData: ITopContentList[];
8
8
  enableEventTracking?: boolean;
9
9
  onSearch: (searchVal: string, searchResults: ITopContentList[]) => void;
10
+ searchQuery?: string;
11
+ setSearchQuery?: Function;
10
12
  }
11
13
  export declare const getTopContentUrl: (contentUrl: string) => string;
12
- export declare function TopContentSearch({ topContentData, topContentResultsWrapperRef, onSearch, dataTrackingId, enableEventTracking, }: IProps): React.JSX.Element;
14
+ export declare function TopContentSearch({ topContentData, topContentResultsWrapperRef, onSearch, dataTrackingId, enableEventTracking, searchQuery, setSearchQuery, }: IProps): React.JSX.Element;
13
15
  export {};
14
16
  //# sourceMappingURL=TopContentSearch.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"TopContentSearch.d.ts","sourceRoot":"","sources":["../../../src/TopContentSearch/TopContentSearch.tsx"],"names":[],"mappings":"AAAA,OAAO,yBAAyB,CAAC;AAEjC,OAAO,EAAE,eAAe,EAAE,MAAM,2DAA2D,CAAC;AAQ5F,OAAO,KAA4D,MAAM,OAAO,CAAC;AAGjF,UAAU,MAAM;IACZ,cAAc,EAAE,MAAM,CAAC;IACvB,2BAA2B,EAAE,KAAK,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC;IACzD,cAAc,EAAE,eAAe,EAAE,CAAC;IAClC,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,QAAQ,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,aAAa,EAAE,eAAe,EAAE,KAAK,IAAI,CAAC;CAC3E;AAED,eAAO,MAAM,gBAAgB,eAAgB,MAAM,WASlD,CAAC;AAOF,wBAAgB,gBAAgB,CAAC,EAC7B,cAAmB,EACnB,2BAA6C,EAC7C,QAAQ,EACR,cAAc,EACd,mBAA2B,GAC9B,EAAE,MAAM,qBA8GR"}
1
+ {"version":3,"file":"TopContentSearch.d.ts","sourceRoot":"","sources":["../../../src/TopContentSearch/TopContentSearch.tsx"],"names":[],"mappings":"AAAA,OAAO,yBAAyB,CAAC;AAEjC,OAAO,EAAE,eAAe,EAAE,MAAM,2DAA2D,CAAC;AAQ5F,OAAO,KAA4D,MAAM,OAAO,CAAC;AAGjF,UAAU,MAAM;IACZ,cAAc,EAAE,MAAM,CAAC;IACvB,2BAA2B,EAAE,KAAK,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC;IACzD,cAAc,EAAE,eAAe,EAAE,CAAC;IAClC,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,QAAQ,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,aAAa,EAAE,eAAe,EAAE,KAAK,IAAI,CAAC;IACxE,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,QAAQ,CAAC;CAC7B;AAED,eAAO,MAAM,gBAAgB,eAAgB,MAAM,WASlD,CAAC;AAOF,wBAAgB,gBAAgB,CAAC,EAC7B,cAAmB,EACnB,2BAA6C,EAC7C,QAAQ,EACR,cAAc,EACd,mBAA2B,EAC3B,WAAgB,EAChB,cAAc,GACjB,EAAE,MAAM,qBAwHR"}
@@ -31,8 +31,8 @@ var CustomEvents;
31
31
  CustomEvents["inputChange"] = "top-content-filter-input-change";
32
32
  CustomEvents["inputClear"] = "top-content-filter-input-clear";
33
33
  })(CustomEvents || (CustomEvents = {}));
34
- export function TopContentSearch({ topContentData = [], topContentResultsWrapperRef = { current: {} }, onSearch, dataTrackingId, enableEventTracking = false, }) {
35
- const [searchText, setSearchText] = useState('');
34
+ export function TopContentSearch({ topContentData = [], topContentResultsWrapperRef = { current: {} }, onSearch, dataTrackingId, enableEventTracking = false, searchQuery = '', setSearchQuery, }) {
35
+ const [searchText, setSearchText] = useState(searchQuery);
36
36
  const { t } = useTranslation();
37
37
  const searchWorkerRef = useRef(new SearchApi({
38
38
  indexMode: INDEX_MODES.ALL_SUBSTRINGS,
@@ -56,8 +56,9 @@ export function TopContentSearch({ topContentData = [], topContentResultsWrapper
56
56
  dtmTrackEvent(searchWrapperRef, eventName, event);
57
57
  };
58
58
  const highlightSearchResults = useCallback((searchTerm) => {
59
+ var _a;
59
60
  // highlight search term present in contents only. Contents are present within <dd> tag
60
- const contentElements = topContentResultsWrapperRef.current.querySelectorAll('dd.pf-v5-c-accordion__expandable-content');
61
+ const contentElements = (_a = topContentResultsWrapperRef === null || topContentResultsWrapperRef === void 0 ? void 0 : topContentResultsWrapperRef.current) === null || _a === void 0 ? void 0 : _a.querySelectorAll('dd.pf-v5-c-accordion__expandable-content');
61
62
  const markInstance = new Mark(contentElements);
62
63
  markInstance.unmark({
63
64
  done: () => {
@@ -68,10 +69,10 @@ export function TopContentSearch({ topContentData = [], topContentResultsWrapper
68
69
  });
69
70
  }, [topContentResultsWrapperRef]);
70
71
  const onSearchInputClear = useCallback((event) => {
71
- logCustomEvent(CustomEvents.inputClear, event);
72
72
  setSearchText('');
73
- highlightSearchResults('');
74
73
  onSearch('', topContentData);
74
+ logCustomEvent(CustomEvents.inputClear, event);
75
+ highlightSearchResults('');
75
76
  },
76
77
  // eslint-disable-next-line react-hooks/exhaustive-deps
77
78
  [highlightSearchResults, topContentData]);
@@ -103,8 +104,15 @@ export function TopContentSearch({ topContentData = [], topContentResultsWrapper
103
104
  const debounceSearch = useMemo(() => debounce(handleSearch, 500), [handleSearch]);
104
105
  const onSearchInputChange = (value) => {
105
106
  setSearchText(value);
107
+ setSearchQuery && setSearchQuery(value);
106
108
  debounceSearch(value);
107
109
  };
110
+ useEffect(() => {
111
+ if (searchQuery)
112
+ debounceSearch(searchQuery);
113
+ },
114
+ // eslint-disable-next-line react-hooks/exhaustive-deps
115
+ []);
108
116
  return (React.createElement("div", { className: "top-content-search-wrapper pf-v5-u-p-md", ref: searchWrapperRef },
109
117
  React.createElement("label", { htmlFor: "top-content-search-input", className: "pf-v5-u-mr-md top-content-search-label" },
110
118
  React.createElement(Trans, null, "Filter results:")),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rh-support/components",
3
- "version": "2.1.60",
3
+ "version": "2.1.61-beta.1",
4
4
  "description": "Contains all reusabel components for support app",
5
5
  "author": "Vikas Rathee <vrathee@redhat.com>",
6
6
  "license": "ISC",
@@ -68,7 +68,7 @@
68
68
  "@patternfly/react-core": "5.1.1",
69
69
  "@patternfly/react-table": "5.1.1",
70
70
  "@rh-support/types": "2.0.3",
71
- "@rh-support/user-permissions": "2.1.43",
71
+ "@rh-support/user-permissions": "2.1.44",
72
72
  "@rh-support/utils": "2.1.33",
73
73
  "dompurify": "^2.2.6",
74
74
  "downshift": "^6.0.5",
@@ -109,5 +109,5 @@
109
109
  "defaults and supports es6-module",
110
110
  "maintained node versions"
111
111
  ],
112
- "gitHead": "d0800f64f5543b6f26b111bd7f179a8277e32456"
112
+ "gitHead": "d867a78014ee4a08aa8d7bf9e0dc9bd08ce6ac5a"
113
113
  }