@synerise/ds-operators 1.1.21 → 1.1.23

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +12 -10
  3. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
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
+ ## [1.1.23](https://github.com/Synerise/synerise-design/compare/@synerise/ds-operators@1.1.22...@synerise/ds-operators@1.1.23) (2026-03-20)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-operators
9
+
10
+ ## [1.1.22](https://github.com/Synerise/synerise-design/compare/@synerise/ds-operators@1.1.21...@synerise/ds-operators@1.1.22) (2026-03-09)
11
+
12
+ **Note:** Version bump only for package @synerise/ds-operators
13
+
6
14
  ## [1.1.21](https://github.com/Synerise/synerise-design/compare/@synerise/ds-operators@1.1.20...@synerise/ds-operators@1.1.21) (2026-02-23)
7
15
 
8
16
  **Note:** Version bump only for package @synerise/ds-operators
package/README.md CHANGED
@@ -80,16 +80,18 @@ import Operators from '@synerise/ds-operators'
80
80
 
81
81
  | Property | Description | Type | Default |
82
82
  | ------------------------- | ---------------------------------------------------------- | ---------------------------------------------------------- | --------- |
83
- | error | error validation | boolean | - |
84
- | getPopupContainerOverride | Popup container function for child tooltips and dropdowns | (trigger: HTMLElement \ null) => HTMLElement; | - |
85
- | groups | Groups of operators | OperatorsGroup[] | [] |
86
- | items | Array of operators | OperatorsItem[] | [] |
87
- | onActivate | Callback called when user opens dropdown | (fieldType: string) => void | - |
88
- | onChange | Callback called when user selects operator | (item: OperatorsItem \ OperatorsGroup \ undefined) => void | - |
89
- | onDeactivate | Callback called when user closes dropdown | () => void | - |
90
- | opened | Whether if dropdown should opens from outside of component | boolean | false |
91
- | texts | Translations object | OperatorTexts | - |
92
- | value | Selected operator | OperatorsItem \ undefined | undefined |
83
+ | errorText | Puts the trigger button in error state | ReactNode | - |
84
+ | getPopupContainerOverride | Popup container function for child tooltips and dropdowns | (trigger: HTMLElement \| null) => HTMLElement | - |
85
+ | groups | Groups of operators | OperatorsGroup[] | - |
86
+ | items | Array of operators | OperatorsItem[] | - |
87
+ | onActivate | Callback called when user opens dropdown | () => void | - |
88
+ | onChange | Callback called when user selects operator | (item: OperatorsItem \| undefined) => void | - |
89
+ | onDeactivate | Callback called when user closes dropdown | () => void | - |
90
+ | opened | Whether if dropdown should opens from outside of component | boolean | false |
91
+ | readOnly | Disables the dropdown; shows selected value without arrow | boolean | false |
92
+ | texts | Translations object | Partial\<OperatorTexts\> | - |
93
+ | value | Selected operator | OperatorsItem \| undefined | undefined |
94
+ | dropdownDimensionsConfig | Override responsive height thresholds | `{ defaultHeight?, lowerHeight?, threshold? }`| - |
93
95
 
94
96
  ### OperatorsGroup
95
97
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-operators",
3
- "version": "1.1.21",
3
+ "version": "1.1.23",
4
4
  "description": "Operators UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -35,15 +35,15 @@
35
35
  ],
36
36
  "types": "dist/index.d.ts",
37
37
  "dependencies": {
38
- "@synerise/ds-button": "^1.5.15",
39
- "@synerise/ds-dropdown": "^1.2.7",
40
- "@synerise/ds-icon": "^1.14.1",
41
- "@synerise/ds-list-item": "^1.4.7",
42
- "@synerise/ds-result": "^1.0.46",
43
- "@synerise/ds-scrollbar": "^1.2.14",
44
- "@synerise/ds-tabs": "^1.1.21",
45
- "@synerise/ds-tooltip": "^1.4.7",
46
- "@synerise/ds-utils": "^1.6.0",
38
+ "@synerise/ds-button": "^1.5.17",
39
+ "@synerise/ds-dropdown": "^1.3.1",
40
+ "@synerise/ds-icon": "^1.15.0",
41
+ "@synerise/ds-list-item": "^1.4.9",
42
+ "@synerise/ds-result": "^1.0.48",
43
+ "@synerise/ds-scrollbar": "^1.2.16",
44
+ "@synerise/ds-tabs": "^1.1.23",
45
+ "@synerise/ds-tooltip": "^1.4.9",
46
+ "@synerise/ds-utils": "^1.7.0",
47
47
  "uuid": "^8.3.2"
48
48
  },
49
49
  "peerDependencies": {
@@ -52,5 +52,5 @@
52
52
  "react-intl": ">=3.12.0 <= 6.8",
53
53
  "styled-components": "^5.3.3"
54
54
  },
55
- "gitHead": "2997f77d657c1aed2fc39901d3e0b8f88b05cc53"
55
+ "gitHead": "8efc031fa688c0b87c7b3915bae93546bb63bcac"
56
56
  }