@synerise/ds-subject 0.7.7 → 0.8.0
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 +27 -0
- package/dist/Subject.js +1 -1
- package/dist/Subject.types.d.ts +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.8.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-subject@0.7.9...@synerise/ds-subject@0.8.0) (2022-04-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **filter:** fixes bugs ([b862ddd](https://github.com/Synerise/synerise-design/commit/b862dddbce1293c2a5381663fc903bb574edd135))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.7.9](https://github.com/Synerise/synerise-design/compare/@synerise/ds-subject@0.7.8...@synerise/ds-subject@0.7.9) (2022-03-30)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @synerise/ds-subject
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [0.7.8](https://github.com/Synerise/synerise-design/compare/@synerise/ds-subject@0.7.7...@synerise/ds-subject@0.7.8) (2022-03-24)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @synerise/ds-subject
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
## [0.7.7](https://github.com/Synerise/synerise-design/compare/@synerise/ds-subject@0.7.6...@synerise/ds-subject@0.7.7) (2022-03-24)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @synerise/ds-subject
|
package/dist/Subject.js
CHANGED
|
@@ -26,7 +26,7 @@ var Subject = function Subject(_ref) {
|
|
|
26
26
|
return type && ['event', 'context'].indexOf(type) >= 0 ? 'cyan' : 'green';
|
|
27
27
|
}, [type]);
|
|
28
28
|
var onDropdownVisibilityChange = React.useCallback(function (value) {
|
|
29
|
-
return value && onActivate && onActivate();
|
|
29
|
+
return value && onActivate && onActivate('');
|
|
30
30
|
}, [onActivate]);
|
|
31
31
|
return /*#__PURE__*/React.createElement(S.Subject, null, /*#__PURE__*/React.createElement(Dropdown, {
|
|
32
32
|
visible: dropdownVisible,
|
package/dist/Subject.types.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export declare type SubjectItem = {
|
|
|
8
8
|
};
|
|
9
9
|
export declare type SubjectProps = {
|
|
10
10
|
onShowPreview?: () => void;
|
|
11
|
-
onActivate?: () => void;
|
|
11
|
+
onActivate?: (fieldType: string) => void;
|
|
12
12
|
getPopupContainerOverride?: (trigger: HTMLElement | null) => HTMLElement;
|
|
13
13
|
placeholder: string | React.ReactNode;
|
|
14
14
|
iconPlaceholder: React.ReactNode;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-subject",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "Subject UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
],
|
|
33
33
|
"types": "dist/index.d.ts",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@synerise/ds-button": "^0.17.
|
|
36
|
-
"@synerise/ds-dropdown": "^0.17.
|
|
37
|
-
"@synerise/ds-icon": "^0.
|
|
38
|
-
"@synerise/ds-menu": "^0.13.
|
|
39
|
-
"@synerise/ds-result": "^0.6.
|
|
40
|
-
"@synerise/ds-scrollbar": "^0.4.
|
|
35
|
+
"@synerise/ds-button": "^0.17.2",
|
|
36
|
+
"@synerise/ds-dropdown": "^0.17.16",
|
|
37
|
+
"@synerise/ds-icon": "^0.49.0",
|
|
38
|
+
"@synerise/ds-menu": "^0.13.2",
|
|
39
|
+
"@synerise/ds-result": "^0.6.9",
|
|
40
|
+
"@synerise/ds-scrollbar": "^0.4.7",
|
|
41
41
|
"@synerise/ds-typography": "^0.12.2",
|
|
42
42
|
"@synerise/ds-utils": "^0.19.0"
|
|
43
43
|
},
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"@synerise/ds-core": "*",
|
|
46
46
|
"react": ">=16.9.0 < 17.0.0"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "5793ce09feb88b36cc8ca1923ddfcb272b889cb0"
|
|
49
49
|
}
|