@truedat/core 4.35.4 → 4.35.8

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/CHANGELOG.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # Changelog
2
2
 
3
- ## Unreleased
3
+ ## [4.35.8] 2022-01-07
4
+
5
+ ### Added
6
+
7
+ - [TD-4390] fluid param to OptionGroup
8
+
9
+ ## [4.33.4] 2021-11-26
4
10
 
5
11
  ### Added
6
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/core",
3
- "version": "4.35.4",
3
+ "version": "4.35.8",
4
4
  "description": "Truedat Web Core",
5
5
  "sideEffects": false,
6
6
  "jsnext:main": "src/index.js",
@@ -103,5 +103,5 @@
103
103
  "react-dom": ">= 16.8.6 < 17",
104
104
  "semantic-ui-react": ">= 0.88.2 < 2.1"
105
105
  },
106
- "gitHead": "b03fba26635e365bbab64a6de1dd9a155925b5d1"
106
+ "gitHead": "35a51ffb36f357fe814258d51420d5ace5b3cd63"
107
107
  }
@@ -21,6 +21,7 @@ const Group = ({ label, icon, options, onClick, value }) => (
21
21
  );
22
22
  // TODO: Refactor
23
23
  export const OptionGroup = ({
24
+ fluid,
24
25
  inline,
25
26
  label,
26
27
  options = [],
@@ -92,6 +93,7 @@ export const OptionGroup = ({
92
93
  <>
93
94
  {label && <label>{label}</label>}
94
95
  <Dropdown
96
+ fluid={fluid}
95
97
  className="selection"
96
98
  placeholder={placeholder}
97
99
  searchQuery={query}
@@ -134,6 +136,7 @@ export const OptionGroup = ({
134
136
  OptionGroup.propTypes = {
135
137
  onClick: PropTypes.func,
136
138
  value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
139
+ fluid: PropTypes.bool,
137
140
  inline: PropTypes.bool,
138
141
  label: PropTypes.string,
139
142
  placeholder: PropTypes.string,