@synerise/ds-factors 0.22.0 → 0.22.2
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 +16 -0
- package/dist/FactorValue/Text/Text.d.ts +1 -2
- package/dist/FactorValue/Text/Text.js +1 -2
- package/dist/Factors.d.ts +2 -2
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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.22.2](https://github.com/Synerise/synerise-design/compare/@synerise/ds-factors@0.22.1...@synerise/ds-factors@0.22.2) (2024-03-18)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-factors
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.22.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-factors@0.22.0...@synerise/ds-factors@0.22.1) (2024-03-13)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @synerise/ds-factors
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [0.22.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-factors@0.21.8...@synerise/ds-factors@0.22.0) (2024-03-05)
|
|
7
23
|
|
|
8
24
|
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { FC } from 'react';
|
|
2
1
|
import { InputProps } from '../../Factors.types';
|
|
3
|
-
declare const TextInput:
|
|
2
|
+
declare const TextInput: ({ value, onChange, texts, textType, autocompleteText, factorType, opened, onDeactivate, error, inputProps, getPopupContainerOverride, readOnly, }: InputProps) => JSX.Element;
|
|
4
3
|
export default TextInput;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
2
|
|
|
3
|
-
import
|
|
4
|
-
import { useCallback, useEffect, useMemo, useState, useRef } from 'react';
|
|
3
|
+
import React, { useCallback, useEffect, useMemo, useState, useRef } from 'react';
|
|
5
4
|
import { debounce } from 'lodash';
|
|
6
5
|
import Icon, { FullScreenM } from '@synerise/ds-icon';
|
|
7
6
|
import { theme } from '@synerise/ds-core';
|
package/dist/Factors.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export declare const factorTypes: {
|
|
|
4
4
|
text: {
|
|
5
5
|
icon: JSX.Element;
|
|
6
6
|
name: string;
|
|
7
|
-
input:
|
|
7
|
+
input: ({ value, onChange, texts, textType, autocompleteText, factorType, opened, onDeactivate, error, inputProps, getPopupContainerOverride, readOnly, }: import("./Factors.types").InputProps) => JSX.Element;
|
|
8
8
|
};
|
|
9
9
|
number: {
|
|
10
10
|
icon: JSX.Element;
|
|
@@ -34,7 +34,7 @@ export declare const factorTypes: {
|
|
|
34
34
|
array: {
|
|
35
35
|
icon: JSX.Element;
|
|
36
36
|
name: string;
|
|
37
|
-
input:
|
|
37
|
+
input: ({ value, onChange, texts, textType, autocompleteText, factorType, opened, onDeactivate, error, inputProps, getPopupContainerOverride, readOnly, }: import("./Factors.types").InputProps) => JSX.Element;
|
|
38
38
|
};
|
|
39
39
|
date: {
|
|
40
40
|
icon: JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-factors",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.2",
|
|
4
4
|
"description": "Factors UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -33,23 +33,23 @@
|
|
|
33
33
|
],
|
|
34
34
|
"types": "dist/index.d.ts",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@synerise/ds-autocomplete": "^0.7.
|
|
36
|
+
"@synerise/ds-autocomplete": "^0.7.1",
|
|
37
37
|
"@synerise/ds-badge": "^0.6.52",
|
|
38
38
|
"@synerise/ds-button": "^0.19.3",
|
|
39
|
-
"@synerise/ds-date-picker": "^0.10.
|
|
40
|
-
"@synerise/ds-date-range-picker": "^0.27.
|
|
41
|
-
"@synerise/ds-dropdown": "^0.17.
|
|
39
|
+
"@synerise/ds-date-picker": "^0.10.39",
|
|
40
|
+
"@synerise/ds-date-range-picker": "^0.27.2",
|
|
41
|
+
"@synerise/ds-dropdown": "^0.17.100",
|
|
42
42
|
"@synerise/ds-icon": "^0.60.3",
|
|
43
|
-
"@synerise/ds-information-card": "^0.3.
|
|
44
|
-
"@synerise/ds-inline-edit": "^0.6.
|
|
45
|
-
"@synerise/ds-input": "^0.20.
|
|
43
|
+
"@synerise/ds-information-card": "^0.3.63",
|
|
44
|
+
"@synerise/ds-inline-edit": "^0.6.100",
|
|
45
|
+
"@synerise/ds-input": "^0.20.1",
|
|
46
46
|
"@synerise/ds-input-number": "^0.9.7",
|
|
47
47
|
"@synerise/ds-menu": "^0.18.15",
|
|
48
48
|
"@synerise/ds-modal": "^0.17.21",
|
|
49
49
|
"@synerise/ds-result": "^0.6.47",
|
|
50
50
|
"@synerise/ds-scrollbar": "^0.8.3",
|
|
51
51
|
"@synerise/ds-skeleton": "^0.5.1",
|
|
52
|
-
"@synerise/ds-tabs": "^0.13.
|
|
52
|
+
"@synerise/ds-tabs": "^0.13.99",
|
|
53
53
|
"@synerise/ds-tooltip": "^0.14.20",
|
|
54
54
|
"@synerise/ds-utils": "^0.25.0",
|
|
55
55
|
"lodash": "^4.17.19",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"@testing-library/react": "10.0.1",
|
|
68
68
|
"@testing-library/user-event": "^10.3.1"
|
|
69
69
|
},
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "914ce4be2e0e1fe145edeca838ab04eaa1aec1bf"
|
|
71
71
|
}
|