@synerise/ds-description 0.3.117 → 0.3.119

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,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.3.119](https://github.com/Synerise/synerise-design/compare/@synerise/ds-description@0.3.118...@synerise/ds-description@0.3.119) (2024-09-26)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-description
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.3.118](https://github.com/Synerise/synerise-design/compare/@synerise/ds-description@0.3.117...@synerise/ds-description@0.3.118) (2024-09-17)
15
+
16
+ **Note:** Version bump only for package @synerise/ds-description
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.3.117](https://github.com/Synerise/synerise-design/compare/@synerise/ds-description@0.3.116...@synerise/ds-description@0.3.117) (2024-09-13)
7
23
 
8
24
  **Note:** Version bump only for package @synerise/ds-description
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { DescriptionProps } from './Description.types';
3
3
  declare const Description: React.FC<DescriptionProps>;
4
4
  export default Description;
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import classnames from 'classnames';
3
3
  import * as S from './Description.styles';
4
4
 
package/dist/Row/Copy.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import React, { useState, useMemo, useCallback } from 'react';
2
2
  import Tooltip from '@synerise/ds-tooltip/dist/Tooltip';
3
3
  import Icon, { CopyClipboardM } from '@synerise/ds-icon';
4
- import * as copy from 'copy-to-clipboard';
4
+ import copy from 'copy-to-clipboard';
5
5
  import { useIntl } from 'react-intl';
6
6
  import * as S from './DescriptionRow.styles';
7
7
 
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { DescriptionRowProps } from './DescriptionRow.types';
3
3
  declare const DescriptionRow: React.FC<DescriptionRowProps>;
4
4
  export default DescriptionRow;
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import * as S from './DescriptionRow.styles';
3
3
  import Star from './Star';
4
4
  import Copy from './Copy';
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  export interface DescriptionRowProps {
3
3
  label?: string | React.ReactNode;
4
4
  labelIcon?: React.ReactNode;
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import { StarProps } from './Star.types';
3
3
  declare const Star: React.FC<StarProps>;
4
4
  export default Star;
package/dist/Row/Star.js CHANGED
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import React from 'react';
2
2
  import Icon, { StarFillM, StarM } from '@synerise/ds-icon';
3
3
  import { theme } from '@synerise/ds-core';
4
4
  import * as S from './DescriptionRow.styles';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-description",
3
- "version": "0.3.117",
3
+ "version": "0.3.119",
4
4
  "description": "Description UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -25,7 +25,8 @@
25
25
  "prepublish": "npm run build",
26
26
  "test": "jest",
27
27
  "test:watch": "npm run test -- --watchAll",
28
- "types": "tsc --noEmit"
28
+ "types": "tsc --noEmit",
29
+ "upgrade:ds": "ncu -f \"@synerise/ds-*\" -u"
29
30
  },
30
31
  "sideEffects": [
31
32
  "dist/style/*",
@@ -33,9 +34,9 @@
33
34
  ],
34
35
  "types": "dist/index.d.ts",
35
36
  "dependencies": {
36
- "@synerise/ds-icon": "^0.65.5",
37
- "@synerise/ds-tooltip": "^0.14.40",
38
- "@synerise/ds-utils": "^0.29.2",
37
+ "@synerise/ds-icon": "^0.65.7",
38
+ "@synerise/ds-tooltip": "^0.14.42",
39
+ "@synerise/ds-utils": "^0.29.4",
39
40
  "classnames": "2.3.2",
40
41
  "react-intl": "3.12.0"
41
42
  },
@@ -45,5 +46,5 @@
45
46
  "react": ">=16.9.0 <= 17.0.2",
46
47
  "styled-components": "5.0.1"
47
48
  },
48
- "gitHead": "6f3231e4a9e0720ffee61b748488cecd590da6e6"
49
+ "gitHead": "fc06bd0f13401a57329fb92985b735de33108dbc"
49
50
  }