@itcase/forms 1.0.74 → 1.0.76
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/dist/itcase-forms.cjs.js +25 -29
- package/dist/itcase-forms.esm.js +25 -27
- package/package.json +20 -20
package/dist/itcase-forms.cjs.js
CHANGED
|
@@ -25,8 +25,6 @@ var Loader = require('@itcase/ui/components/Loader');
|
|
|
25
25
|
var Title = require('@itcase/ui/components/Title');
|
|
26
26
|
var Icon = require('@itcase/ui/components/Icon');
|
|
27
27
|
var Input = require('@itcase/ui/components/Input');
|
|
28
|
-
var iconSizeProps = require('@itcase/ui/constants/componentProps/iconSize');
|
|
29
|
-
var shapeProps = require('@itcase/ui/constants/componentProps/shape');
|
|
30
28
|
var Radio = require('@itcase/ui/components/Radio');
|
|
31
29
|
var Segmented = require('@itcase/ui/components/Segmented');
|
|
32
30
|
var Select = require('@itcase/ui/components/Select');
|
|
@@ -48,8 +46,6 @@ var camelCase__default = /*#__PURE__*/_interopDefault(camelCase);
|
|
|
48
46
|
var snakeCase__default = /*#__PURE__*/_interopDefault(snakeCase);
|
|
49
47
|
var axios__default = /*#__PURE__*/_interopDefault(axios);
|
|
50
48
|
var castArray__default = /*#__PURE__*/_interopDefault(castArray);
|
|
51
|
-
var iconSizeProps__default = /*#__PURE__*/_interopDefault(iconSizeProps);
|
|
52
|
-
var shapeProps__default = /*#__PURE__*/_interopDefault(shapeProps);
|
|
53
49
|
var createDecorator__default = /*#__PURE__*/_interopDefault(createDecorator);
|
|
54
50
|
|
|
55
51
|
const phoneValidation = (value, context) => {
|
|
@@ -1555,6 +1551,10 @@ Group.propTypes = {
|
|
|
1555
1551
|
|
|
1556
1552
|
const InputField = /*#__PURE__*/React__default.default.memo(function InputField(props) {
|
|
1557
1553
|
const {
|
|
1554
|
+
isDisabled,
|
|
1555
|
+
isPassword,
|
|
1556
|
+
isRequired,
|
|
1557
|
+
isRevealable,
|
|
1558
1558
|
classNameGroupItem,
|
|
1559
1559
|
fieldProps,
|
|
1560
1560
|
iconFill,
|
|
@@ -1565,10 +1565,6 @@ const InputField = /*#__PURE__*/React__default.default.memo(function InputField(
|
|
|
1565
1565
|
iconSize,
|
|
1566
1566
|
initialValue,
|
|
1567
1567
|
inputProps,
|
|
1568
|
-
isDisabled,
|
|
1569
|
-
isPassword,
|
|
1570
|
-
isRequired,
|
|
1571
|
-
isRevealable,
|
|
1572
1568
|
name,
|
|
1573
1569
|
parse,
|
|
1574
1570
|
showMessage,
|
|
@@ -1590,8 +1586,8 @@ const InputField = /*#__PURE__*/React__default.default.memo(function InputField(
|
|
|
1590
1586
|
setIsRevealed(prev => !prev);
|
|
1591
1587
|
}, []);
|
|
1592
1588
|
return /*#__PURE__*/React__default.default.createElement(reactFinalForm.Field, {
|
|
1593
|
-
initialValue: initialValue,
|
|
1594
1589
|
name: name,
|
|
1590
|
+
initialValue: initialValue,
|
|
1595
1591
|
parse: parse
|
|
1596
1592
|
}, function Render({
|
|
1597
1593
|
input,
|
|
@@ -1621,8 +1617,8 @@ const InputField = /*#__PURE__*/React__default.default.memo(function InputField(
|
|
|
1621
1617
|
meta: meta
|
|
1622
1618
|
});
|
|
1623
1619
|
const updatedInputProps = useValidationAppearanceInputProps({
|
|
1624
|
-
|
|
1625
|
-
|
|
1620
|
+
inputProps: inputProps,
|
|
1621
|
+
validationStateKey: isErrorState ? errorKey : 'success'
|
|
1626
1622
|
});
|
|
1627
1623
|
return /*#__PURE__*/React__default.default.createElement(FieldWrapper, Object.assign({
|
|
1628
1624
|
className: clsx__default.default('form-field_type_input', 'form__item_type_input', classNameGroupItem),
|
|
@@ -1631,21 +1627,21 @@ const InputField = /*#__PURE__*/React__default.default.memo(function InputField(
|
|
|
1631
1627
|
fieldClassName: isRevealable ? 'form-password' : 'form-input',
|
|
1632
1628
|
inputName: input.name,
|
|
1633
1629
|
inputValue: input.value || '',
|
|
1630
|
+
metaActive: meta.active,
|
|
1631
|
+
metaError: meta.error,
|
|
1632
|
+
showMessage: showMessage,
|
|
1634
1633
|
isDisabled: isDisabled,
|
|
1635
1634
|
isErrorState: isErrorState,
|
|
1636
1635
|
isRequired: isRequired,
|
|
1637
|
-
isValidState: isValidState
|
|
1638
|
-
metaActive: meta.active,
|
|
1639
|
-
metaError: meta.error,
|
|
1640
|
-
showMessage: showMessage
|
|
1636
|
+
isValidState: isValidState
|
|
1641
1637
|
}, fieldProps), /*#__PURE__*/React__default.default.createElement(Input.Input, Object.assign({
|
|
1642
|
-
autoComplete: "nope",
|
|
1643
1638
|
className: clsx__default.default(meta.active && 'input_state_focus', meta.error && meta.touched && `input_state_${errorKey}`),
|
|
1644
|
-
dataTestId: `${input.name}FieldInput`,
|
|
1645
|
-
isDisabled: isDisabled,
|
|
1646
1639
|
name: input.name,
|
|
1640
|
+
autoComplete: "nope",
|
|
1641
|
+
dataTestId: `${input.name}FieldInput`,
|
|
1647
1642
|
type: inputType,
|
|
1648
1643
|
value: input.value || '',
|
|
1644
|
+
isDisabled: isDisabled,
|
|
1649
1645
|
onBlur: input.onBlur,
|
|
1650
1646
|
onChange: onChangeField,
|
|
1651
1647
|
onFocus: input.onFocus
|
|
@@ -1662,11 +1658,14 @@ const InputField = /*#__PURE__*/React__default.default.memo(function InputField(
|
|
|
1662
1658
|
});
|
|
1663
1659
|
});
|
|
1664
1660
|
InputField.defaultProps = {
|
|
1665
|
-
|
|
1666
|
-
|
|
1661
|
+
fieldProps: {},
|
|
1662
|
+
inputProps: {}
|
|
1667
1663
|
};
|
|
1668
1664
|
InputField.propTypes = {
|
|
1669
|
-
|
|
1665
|
+
isDisabled: PropTypes__default.default.bool,
|
|
1666
|
+
isPassword: PropTypes__default.default.bool,
|
|
1667
|
+
isRequired: PropTypes__default.default.bool,
|
|
1668
|
+
isRevealable: PropTypes__default.default.bool,
|
|
1670
1669
|
classNameGroupItem: PropTypes__default.default.string,
|
|
1671
1670
|
dataTestId: PropTypes__default.default.oneOfType([PropTypes__default.default.string, PropTypes__default.default.number]),
|
|
1672
1671
|
fieldProps: PropTypes__default.default.object,
|
|
@@ -1676,14 +1675,11 @@ InputField.propTypes = {
|
|
|
1676
1675
|
iconFillHover: PropTypes__default.default.string,
|
|
1677
1676
|
iconRevealableHide: PropTypes__default.default.oneOfType([PropTypes__default.default.elementType, PropTypes__default.default.func, PropTypes__default.default.object]),
|
|
1678
1677
|
iconRevealableShow: PropTypes__default.default.oneOfType([PropTypes__default.default.elementType, PropTypes__default.default.func, PropTypes__default.default.object]),
|
|
1679
|
-
iconShape: PropTypes__default.default.
|
|
1680
|
-
iconSize: PropTypes__default.default.
|
|
1678
|
+
iconShape: PropTypes__default.default.string,
|
|
1679
|
+
iconSize: PropTypes__default.default.string,
|
|
1681
1680
|
initialValue: PropTypes__default.default.oneOfType([PropTypes__default.default.string, PropTypes__default.default.number]),
|
|
1682
1681
|
inputProps: PropTypes__default.default.object,
|
|
1683
|
-
|
|
1684
|
-
isPassword: PropTypes__default.default.bool,
|
|
1685
|
-
isRequired: PropTypes__default.default.bool,
|
|
1686
|
-
isRevealable: PropTypes__default.default.bool,
|
|
1682
|
+
name: PropTypes__default.default.string.isRequired,
|
|
1687
1683
|
parse: PropTypes__default.default.func,
|
|
1688
1684
|
showMessage: PropTypes__default.default.bool,
|
|
1689
1685
|
onChange: PropTypes__default.default.func
|
|
@@ -2471,13 +2467,13 @@ function ChipsField(props) {
|
|
|
2471
2467
|
});
|
|
2472
2468
|
}
|
|
2473
2469
|
ChipsField.propTypes = {
|
|
2470
|
+
isDisabled: PropTypes__default.default.bool,
|
|
2471
|
+
isRequired: PropTypes__default.default.bool,
|
|
2474
2472
|
classNameGroupItem: PropTypes__default.default.string,
|
|
2475
2473
|
fieldProps: PropTypes__default.default.object,
|
|
2476
2474
|
initialValue: PropTypes__default.default.array,
|
|
2477
2475
|
input: PropTypes__default.default.object,
|
|
2478
2476
|
inputProps: PropTypes__default.default.object,
|
|
2479
|
-
isDisabled: PropTypes__default.default.bool,
|
|
2480
|
-
isRequired: PropTypes__default.default.bool,
|
|
2481
2477
|
name: PropTypes__default.default.string,
|
|
2482
2478
|
options: PropTypes__default.default.arrayOf(PropTypes__default.default.shape({
|
|
2483
2479
|
value: PropTypes__default.default.oneOfType([PropTypes__default.default.string, PropTypes__default.default.number, PropTypes__default.default.bool]),
|
package/dist/itcase-forms.esm.js
CHANGED
|
@@ -24,8 +24,6 @@ import { Loader } from '@itcase/ui/components/Loader';
|
|
|
24
24
|
import { Title } from '@itcase/ui/components/Title';
|
|
25
25
|
import { Icon } from '@itcase/ui/components/Icon';
|
|
26
26
|
import { Input } from '@itcase/ui/components/Input';
|
|
27
|
-
import iconSizeProps from '@itcase/ui/constants/componentProps/iconSize';
|
|
28
|
-
import shapeProps from '@itcase/ui/constants/componentProps/shape';
|
|
29
27
|
import { Radio } from '@itcase/ui/components/Radio';
|
|
30
28
|
import { Segmented } from '@itcase/ui/components/Segmented';
|
|
31
29
|
import { Select } from '@itcase/ui/components/Select';
|
|
@@ -1541,6 +1539,10 @@ Group.propTypes = {
|
|
|
1541
1539
|
|
|
1542
1540
|
const InputField = /*#__PURE__*/React.memo(function InputField(props) {
|
|
1543
1541
|
const {
|
|
1542
|
+
isDisabled,
|
|
1543
|
+
isPassword,
|
|
1544
|
+
isRequired,
|
|
1545
|
+
isRevealable,
|
|
1544
1546
|
classNameGroupItem,
|
|
1545
1547
|
fieldProps,
|
|
1546
1548
|
iconFill,
|
|
@@ -1551,10 +1553,6 @@ const InputField = /*#__PURE__*/React.memo(function InputField(props) {
|
|
|
1551
1553
|
iconSize,
|
|
1552
1554
|
initialValue,
|
|
1553
1555
|
inputProps,
|
|
1554
|
-
isDisabled,
|
|
1555
|
-
isPassword,
|
|
1556
|
-
isRequired,
|
|
1557
|
-
isRevealable,
|
|
1558
1556
|
name,
|
|
1559
1557
|
parse,
|
|
1560
1558
|
showMessage,
|
|
@@ -1576,8 +1574,8 @@ const InputField = /*#__PURE__*/React.memo(function InputField(props) {
|
|
|
1576
1574
|
setIsRevealed(prev => !prev);
|
|
1577
1575
|
}, []);
|
|
1578
1576
|
return /*#__PURE__*/React.createElement(Field, {
|
|
1579
|
-
initialValue: initialValue,
|
|
1580
1577
|
name: name,
|
|
1578
|
+
initialValue: initialValue,
|
|
1581
1579
|
parse: parse
|
|
1582
1580
|
}, function Render({
|
|
1583
1581
|
input,
|
|
@@ -1607,8 +1605,8 @@ const InputField = /*#__PURE__*/React.memo(function InputField(props) {
|
|
|
1607
1605
|
meta: meta
|
|
1608
1606
|
});
|
|
1609
1607
|
const updatedInputProps = useValidationAppearanceInputProps({
|
|
1610
|
-
|
|
1611
|
-
|
|
1608
|
+
inputProps: inputProps,
|
|
1609
|
+
validationStateKey: isErrorState ? errorKey : 'success'
|
|
1612
1610
|
});
|
|
1613
1611
|
return /*#__PURE__*/React.createElement(FieldWrapper, Object.assign({
|
|
1614
1612
|
className: clsx('form-field_type_input', 'form__item_type_input', classNameGroupItem),
|
|
@@ -1617,21 +1615,21 @@ const InputField = /*#__PURE__*/React.memo(function InputField(props) {
|
|
|
1617
1615
|
fieldClassName: isRevealable ? 'form-password' : 'form-input',
|
|
1618
1616
|
inputName: input.name,
|
|
1619
1617
|
inputValue: input.value || '',
|
|
1618
|
+
metaActive: meta.active,
|
|
1619
|
+
metaError: meta.error,
|
|
1620
|
+
showMessage: showMessage,
|
|
1620
1621
|
isDisabled: isDisabled,
|
|
1621
1622
|
isErrorState: isErrorState,
|
|
1622
1623
|
isRequired: isRequired,
|
|
1623
|
-
isValidState: isValidState
|
|
1624
|
-
metaActive: meta.active,
|
|
1625
|
-
metaError: meta.error,
|
|
1626
|
-
showMessage: showMessage
|
|
1624
|
+
isValidState: isValidState
|
|
1627
1625
|
}, fieldProps), /*#__PURE__*/React.createElement(Input, Object.assign({
|
|
1628
|
-
autoComplete: "nope",
|
|
1629
1626
|
className: clsx(meta.active && 'input_state_focus', meta.error && meta.touched && `input_state_${errorKey}`),
|
|
1630
|
-
dataTestId: `${input.name}FieldInput`,
|
|
1631
|
-
isDisabled: isDisabled,
|
|
1632
1627
|
name: input.name,
|
|
1628
|
+
autoComplete: "nope",
|
|
1629
|
+
dataTestId: `${input.name}FieldInput`,
|
|
1633
1630
|
type: inputType,
|
|
1634
1631
|
value: input.value || '',
|
|
1632
|
+
isDisabled: isDisabled,
|
|
1635
1633
|
onBlur: input.onBlur,
|
|
1636
1634
|
onChange: onChangeField,
|
|
1637
1635
|
onFocus: input.onFocus
|
|
@@ -1648,11 +1646,14 @@ const InputField = /*#__PURE__*/React.memo(function InputField(props) {
|
|
|
1648
1646
|
});
|
|
1649
1647
|
});
|
|
1650
1648
|
InputField.defaultProps = {
|
|
1651
|
-
|
|
1652
|
-
|
|
1649
|
+
fieldProps: {},
|
|
1650
|
+
inputProps: {}
|
|
1653
1651
|
};
|
|
1654
1652
|
InputField.propTypes = {
|
|
1655
|
-
|
|
1653
|
+
isDisabled: PropTypes.bool,
|
|
1654
|
+
isPassword: PropTypes.bool,
|
|
1655
|
+
isRequired: PropTypes.bool,
|
|
1656
|
+
isRevealable: PropTypes.bool,
|
|
1656
1657
|
classNameGroupItem: PropTypes.string,
|
|
1657
1658
|
dataTestId: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
1658
1659
|
fieldProps: PropTypes.object,
|
|
@@ -1662,14 +1663,11 @@ InputField.propTypes = {
|
|
|
1662
1663
|
iconFillHover: PropTypes.string,
|
|
1663
1664
|
iconRevealableHide: PropTypes.oneOfType([PropTypes.elementType, PropTypes.func, PropTypes.object]),
|
|
1664
1665
|
iconRevealableShow: PropTypes.oneOfType([PropTypes.elementType, PropTypes.func, PropTypes.object]),
|
|
1665
|
-
iconShape: PropTypes.
|
|
1666
|
-
iconSize: PropTypes.
|
|
1666
|
+
iconShape: PropTypes.string,
|
|
1667
|
+
iconSize: PropTypes.string,
|
|
1667
1668
|
initialValue: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
1668
1669
|
inputProps: PropTypes.object,
|
|
1669
|
-
|
|
1670
|
-
isPassword: PropTypes.bool,
|
|
1671
|
-
isRequired: PropTypes.bool,
|
|
1672
|
-
isRevealable: PropTypes.bool,
|
|
1670
|
+
name: PropTypes.string.isRequired,
|
|
1673
1671
|
parse: PropTypes.func,
|
|
1674
1672
|
showMessage: PropTypes.bool,
|
|
1675
1673
|
onChange: PropTypes.func
|
|
@@ -2457,13 +2455,13 @@ function ChipsField(props) {
|
|
|
2457
2455
|
});
|
|
2458
2456
|
}
|
|
2459
2457
|
ChipsField.propTypes = {
|
|
2458
|
+
isDisabled: PropTypes.bool,
|
|
2459
|
+
isRequired: PropTypes.bool,
|
|
2460
2460
|
classNameGroupItem: PropTypes.string,
|
|
2461
2461
|
fieldProps: PropTypes.object,
|
|
2462
2462
|
initialValue: PropTypes.array,
|
|
2463
2463
|
input: PropTypes.object,
|
|
2464
2464
|
inputProps: PropTypes.object,
|
|
2465
|
-
isDisabled: PropTypes.bool,
|
|
2466
|
-
isRequired: PropTypes.bool,
|
|
2467
2465
|
name: PropTypes.string,
|
|
2468
2466
|
options: PropTypes.arrayOf(PropTypes.shape({
|
|
2469
2467
|
value: PropTypes.oneOfType([PropTypes.string, PropTypes.number, PropTypes.bool]),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itcase/forms",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.76",
|
|
4
4
|
"description": "Forms fields, inputs, etc.",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,19 +31,19 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@itcase/common": "^1.2.17",
|
|
34
|
-
"@itcase/ui": "^1.3.
|
|
34
|
+
"@itcase/ui": "^1.3.14",
|
|
35
35
|
"axios": "^1.7.9",
|
|
36
36
|
"clsx": "^2.1.1",
|
|
37
37
|
"final-form": "^4.20.10",
|
|
38
38
|
"final-form-focus": "^1.1.2",
|
|
39
|
-
"libphonenumber-js": "^1.11.
|
|
39
|
+
"libphonenumber-js": "^1.11.18",
|
|
40
40
|
"lodash": "^4.17.21",
|
|
41
41
|
"luxon": "^3.5.0",
|
|
42
|
-
"postcss": "^8.
|
|
42
|
+
"postcss": "^8.5.1",
|
|
43
43
|
"prop-types": "^15.8.1",
|
|
44
44
|
"react": "^18.3.1",
|
|
45
45
|
"react-date-range": "^2.0.1",
|
|
46
|
-
"react-datepicker": "^7.
|
|
46
|
+
"react-datepicker": "^7.6.0",
|
|
47
47
|
"react-dom": "^18.3.1",
|
|
48
48
|
"react-dropzone": "^14.3.5",
|
|
49
49
|
"react-final-form": "^6.5.9",
|
|
@@ -51,16 +51,16 @@
|
|
|
51
51
|
"react-select": "^5.9.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@itcase/lint": "^1.0.
|
|
54
|
+
"@itcase/lint": "^1.0.36",
|
|
55
55
|
"@babel/core": "^7.26.0",
|
|
56
|
-
"@babel/eslint-parser": "^7.
|
|
56
|
+
"@babel/eslint-parser": "^7.26.5",
|
|
57
57
|
"@babel/preset-env": "^7.26.0",
|
|
58
58
|
"@babel/preset-react": "^7.26.3",
|
|
59
59
|
"@commitlint/cli": "^19.6.1",
|
|
60
60
|
"@commitlint/config-conventional": "^19.6.0",
|
|
61
|
-
"@eslint/compat": "^1.2.
|
|
61
|
+
"@eslint/compat": "^1.2.5",
|
|
62
62
|
"@eslint/eslintrc": "^3.2.0",
|
|
63
|
-
"@ianvs/prettier-plugin-sort-imports": "^4.4.
|
|
63
|
+
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
|
|
64
64
|
"@rollup/plugin-babel": "^6.0.4",
|
|
65
65
|
"@rollup/plugin-commonjs": "^28.0.2",
|
|
66
66
|
"@rollup/plugin-json": "^6.1.0",
|
|
@@ -68,26 +68,26 @@
|
|
|
68
68
|
"@rollup/plugin-terser": "^0.4.4",
|
|
69
69
|
"@semantic-release/changelog": "^6.0.3",
|
|
70
70
|
"@semantic-release/git": "^10.0.1",
|
|
71
|
-
"@semantic-release/release-notes-generator": "14.0.
|
|
71
|
+
"@semantic-release/release-notes-generator": "14.0.3",
|
|
72
72
|
"@types/react": "^18",
|
|
73
73
|
"@types/react-dom": "^18.3.1",
|
|
74
74
|
"babel-plugin-inline-react-svg": "^2.0.2",
|
|
75
75
|
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
|
|
76
76
|
"conventional-changelog-conventionalcommits": "^8.0.0",
|
|
77
|
-
"eslint": "9.
|
|
78
|
-
"eslint-config-prettier": "
|
|
77
|
+
"eslint": "9.18.0",
|
|
78
|
+
"eslint-config-prettier": "10.0.1",
|
|
79
79
|
"eslint-config-standard": "17.1.0",
|
|
80
80
|
"eslint-plugin-babel": "5.3.1",
|
|
81
81
|
"eslint-plugin-import": "2.31.0",
|
|
82
82
|
"eslint-plugin-n": "17.15.1",
|
|
83
83
|
"eslint-plugin-node": "11.1.0",
|
|
84
|
-
"eslint-plugin-prettier": "5.2.
|
|
84
|
+
"eslint-plugin-prettier": "5.2.3",
|
|
85
85
|
"eslint-plugin-promise": "7.2.1",
|
|
86
|
-
"eslint-plugin-react": "7.37.
|
|
86
|
+
"eslint-plugin-react": "7.37.4",
|
|
87
87
|
"eslint-plugin-react-hooks": "5.1.0",
|
|
88
88
|
"eslint-plugin-standard": "5.0.0",
|
|
89
89
|
"husky": "^9.1.7",
|
|
90
|
-
"lint-staged": "^15.
|
|
90
|
+
"lint-staged": "^15.4.1",
|
|
91
91
|
"npm": "^11.0.0",
|
|
92
92
|
"postcss-aspect-ratio-polyfill": "^2.0.0",
|
|
93
93
|
"postcss-cli": "^11.0.0",
|
|
@@ -111,13 +111,13 @@
|
|
|
111
111
|
"postcss-responsive-type": "github:ITCase/postcss-responsive-type",
|
|
112
112
|
"postcss-sort-media-queries": "^5.2.0",
|
|
113
113
|
"prettier": "3.4.2",
|
|
114
|
-
"rollup": "^4.
|
|
114
|
+
"rollup": "^4.31.0",
|
|
115
115
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
116
|
-
"semantic-release": "^24.2.
|
|
117
|
-
"stylelint": "^16.
|
|
118
|
-
"stylelint-config-standard": "^
|
|
116
|
+
"semantic-release": "^24.2.1",
|
|
117
|
+
"stylelint": "^16.13.2",
|
|
118
|
+
"stylelint-config-standard": "^37.0.0",
|
|
119
119
|
"stylelint-no-unsupported-browser-features": "^8.0.2",
|
|
120
120
|
"stylelint-order": "^6.0.4",
|
|
121
|
-
"typescript": "^5.7.
|
|
121
|
+
"typescript": "^5.7.3"
|
|
122
122
|
}
|
|
123
123
|
}
|