@synerise/ds-factors 1.11.22 → 1.11.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
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.11.23](https://github.com/Synerise/synerise-design/compare/@synerise/ds-factors@1.11.22...@synerise/ds-factors@1.11.23) (2026-05-04)
7
+
8
+ ### Bug Fixes
9
+
10
+ - add exports field to all component packages for correct ESM detection ([6eccfde](https://github.com/Synerise/synerise-design/commit/6eccfde8f2dd73c59860793231fbd7bcd61813b4))
11
+
6
12
  ## [1.11.22](https://github.com/Synerise/synerise-design/compare/@synerise/ds-factors@1.11.21...@synerise/ds-factors@1.11.22) (2026-04-29)
7
13
 
8
14
  **Note:** Version bump only for package @synerise/ds-factors
@@ -3,7 +3,7 @@ import { useState, useEffect, useMemo } from "react";
3
3
  import Button from "@synerise/ds-button";
4
4
  import { InputGroup } from "@synerise/ds-input";
5
5
  import InputNumber from "@synerise/ds-input-number";
6
- import Select from "@synerise/ds-select/dist/Select";
6
+ import Select from "@synerise/ds-select";
7
7
  import { BEFORE, INTERVALS, DEFAULT_VALUE, TIME_RELATIONS, AFTER } from "./RelativeDate.const.js";
8
8
  import { getTranslation } from "./RelativeDate.utils.js";
9
9
  import { RelativeDateDropdownWrapper, RelativeDateCurrentLabel, RelativeDateDropdownFooter } from "./RelativeDateDropdown.styles.js";
@@ -1,6 +1,6 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import React from "react";
3
- import Textarea from "@synerise/ds-input/dist/Textarea/Textarea";
3
+ import { DSRawTextArea } from "@synerise/ds-input";
4
4
  import ModalProxy from "@synerise/ds-modal";
5
5
  const TextModal = ({
6
6
  value,
@@ -20,7 +20,7 @@ const TextModal = ({
20
20
  const handleOk = React.useCallback(() => {
21
21
  onApply(expandValue);
22
22
  }, [onApply, expandValue]);
23
- return /* @__PURE__ */ jsx(ModalProxy, { size: "medium", title: texts.modalTitle, closable: true, onOk: handleOk, onCancel: handleCancel, visible, okText: texts.modalApply, cancelText: texts.modalCancel, children: /* @__PURE__ */ jsx(Textarea, { rows: 7, value: expandValue, onChange: (event) => setExpandValue(event.target.value) }) });
23
+ return /* @__PURE__ */ jsx(ModalProxy, { size: "medium", title: texts.modalTitle, closable: true, onOk: handleOk, onCancel: handleCancel, visible, okText: texts.modalApply, cancelText: texts.modalCancel, children: /* @__PURE__ */ jsx(DSRawTextArea, { rows: 7, value: expandValue, onChange: (event) => setExpandValue(event.target.value) }) });
24
24
  };
25
25
  export {
26
26
  TextModal as default
@@ -1,8 +1,7 @@
1
1
  import { ComponentType, ReactNode, ReactText } from 'react';
2
2
  import { AutocompleteProps } from '@synerise/ds-autocomplete';
3
3
  import { CollectorValue } from '@synerise/ds-collector';
4
- import { Texts as DateRangeTexts } from '@synerise/ds-date-range-picker/dist/DateRangePicker.types';
5
- import { DateFilter, RelativeUnits } from '@synerise/ds-date-range-picker/dist/date.types';
4
+ import { DateFilter, DateRangePickerTexts as DateRangeTexts, RelativeUnits } from '@synerise/ds-date-range-picker';
6
5
  import { InformationCardProps } from '@synerise/ds-information-card';
7
6
  import { AutoResizeProp, InputProps } from '@synerise/ds-input';
8
7
  import { ListItemProps } from '@synerise/ds-list-item';
package/package.json CHANGED
@@ -1,10 +1,19 @@
1
1
  {
2
2
  "name": "@synerise/ds-factors",
3
- "version": "1.11.22",
3
+ "version": "1.11.23",
4
4
  "description": "Factors UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
7
7
  "main": "dist/index.js",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js",
12
+ "default": "./dist/index.js"
13
+ },
14
+ "./dist/*.js": "./dist/*.js",
15
+ "./dist/*": "./dist/*.js"
16
+ },
8
17
  "files": [
9
18
  "/dist",
10
19
  "CHANGELOG.md",
@@ -32,34 +41,34 @@
32
41
  ],
33
42
  "types": "dist/index.d.ts",
34
43
  "dependencies": {
35
- "@synerise/ds-alert": "^1.1.52",
36
- "@synerise/ds-autocomplete": "^1.2.42",
37
- "@synerise/ds-badge": "^1.0.51",
38
- "@synerise/ds-button": "^1.5.25",
39
- "@synerise/ds-button-group": "^1.1.50",
40
- "@synerise/ds-collector": "^1.4.36",
41
- "@synerise/ds-date-picker": "^1.4.10",
42
- "@synerise/ds-date-range-picker": "^1.6.21",
43
- "@synerise/ds-divider": "^1.3.9",
44
- "@synerise/ds-dropdown": "^1.3.10",
45
- "@synerise/ds-empty-states": "^1.0.42",
46
- "@synerise/ds-icon": "^1.17.2",
47
- "@synerise/ds-information-card": "^1.6.14",
48
- "@synerise/ds-inline-edit": "^1.1.33",
49
- "@synerise/ds-input": "^1.7.5",
50
- "@synerise/ds-input-number": "^1.2.42",
51
- "@synerise/ds-list-item": "^1.4.18",
52
- "@synerise/ds-modal": "^1.4.9",
53
- "@synerise/ds-result": "^1.0.56",
54
- "@synerise/ds-scrollbar": "^1.3.3",
55
- "@synerise/ds-search": "^1.5.19",
56
- "@synerise/ds-select": "^1.3.27",
57
- "@synerise/ds-short-cuts": "^1.0.49",
58
- "@synerise/ds-skeleton": "^1.0.52",
59
- "@synerise/ds-tabs": "^1.1.32",
60
- "@synerise/ds-tag": "^1.4.25",
61
- "@synerise/ds-tooltip": "^1.4.17",
62
- "@synerise/ds-utils": "^1.8.0",
44
+ "@synerise/ds-alert": "^1.1.53",
45
+ "@synerise/ds-autocomplete": "^1.2.43",
46
+ "@synerise/ds-badge": "^1.0.52",
47
+ "@synerise/ds-button": "^1.5.26",
48
+ "@synerise/ds-button-group": "^1.1.51",
49
+ "@synerise/ds-collector": "^1.4.37",
50
+ "@synerise/ds-date-picker": "^1.4.11",
51
+ "@synerise/ds-date-range-picker": "^1.6.22",
52
+ "@synerise/ds-divider": "^1.3.10",
53
+ "@synerise/ds-dropdown": "^1.3.11",
54
+ "@synerise/ds-empty-states": "^1.0.43",
55
+ "@synerise/ds-icon": "^1.17.3",
56
+ "@synerise/ds-information-card": "^1.6.15",
57
+ "@synerise/ds-inline-edit": "^1.1.34",
58
+ "@synerise/ds-input": "^1.7.6",
59
+ "@synerise/ds-input-number": "^1.2.43",
60
+ "@synerise/ds-list-item": "^1.4.19",
61
+ "@synerise/ds-modal": "^1.4.10",
62
+ "@synerise/ds-result": "^1.0.57",
63
+ "@synerise/ds-scrollbar": "^1.3.4",
64
+ "@synerise/ds-search": "^1.5.20",
65
+ "@synerise/ds-select": "^1.3.28",
66
+ "@synerise/ds-short-cuts": "^1.0.50",
67
+ "@synerise/ds-skeleton": "^1.0.53",
68
+ "@synerise/ds-tabs": "^1.1.33",
69
+ "@synerise/ds-tag": "^1.4.26",
70
+ "@synerise/ds-tooltip": "^1.4.18",
71
+ "@synerise/ds-utils": "^1.8.1",
63
72
  "lodash.merge": "^4.6.2",
64
73
  "react-window": "^1.8.11",
65
74
  "uuid": "^8.3.2"
@@ -76,5 +85,5 @@
76
85
  "styled-components": "^5.3.3",
77
86
  "vitest": "4"
78
87
  },
79
- "gitHead": "82150f1e50f5a3e19682c68e4eec9ae441950327"
88
+ "gitHead": "c5eee882509cbeb4544cb45939620881b829d4d9"
80
89
  }