@synerise/ds-information-card 1.0.4 → 1.0.6

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,25 @@
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.0.6](https://github.com/Synerise/synerise-design/compare/@synerise/ds-information-card@1.0.5...@synerise/ds-information-card@1.0.6) (2025-04-08)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **information-card:** update property list styles ([647e0b3](https://github.com/Synerise/synerise-design/commit/647e0b3951d51b7b1bb205f9e05052074993c9c5))
12
+
13
+
14
+
15
+
16
+
17
+ ## [1.0.5](https://github.com/Synerise/synerise-design/compare/@synerise/ds-information-card@1.0.4...@synerise/ds-information-card@1.0.5) (2025-04-04)
18
+
19
+ **Note:** Version bump only for package @synerise/ds-information-card
20
+
21
+
22
+
23
+
24
+
6
25
  ## [1.0.4](https://github.com/Synerise/synerise-design/compare/@synerise/ds-information-card@1.0.3...@synerise/ds-information-card@1.0.4) (2025-04-02)
7
26
 
8
27
  **Note:** Version bump only for package @synerise/ds-information-card
@@ -1,6 +1,6 @@
1
1
  var _excluded = ["actionButton", "actionButtonTooltipText", "actionButtonCallback", "actionsMenu", "asTooltip", "avatarTooltipText", "copyTooltip", "copiedTooltip", "renderFooter", "renderBadge", "subtitle", "title", "notice", "footerText", "icon", "iconColor", "descriptionConfig", "className", "renderAdditionalDescription", "propertyListItems", "summaryItems"];
2
- function _extends() { _extends = Object.assign ? Object.assign.bind() : 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); }
3
- function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
2
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
3
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
4
4
  import React, { forwardRef, useState, useRef, useEffect } from 'react';
5
5
  import { SegmentM } from '@synerise/ds-icon';
6
6
  import Card from '@synerise/ds-card';
@@ -14,7 +14,7 @@ import { InformationCardActions } from './InformationCardActions/InformationCard
14
14
  import { InformationCardDescription } from './InformationCardDescription/InformationCardDescription';
15
15
  import { InformationCardPropertyList } from './InformationCardPropertyList/InformationCardPropertyList';
16
16
  import { InformationCardSummary } from './InformationCardSummary/InformationCardSummary';
17
- var InformationCard = forwardRef(function (_ref, ref) {
17
+ var InformationCard = /*#__PURE__*/forwardRef(function (_ref, ref) {
18
18
  var actionButton = _ref.actionButton,
19
19
  actionButtonTooltipText = _ref.actionButtonTooltipText,
20
20
  actionButtonCallback = _ref.actionButtonCallback,
@@ -104,11 +104,11 @@ export var InformationCardActionsWrapper = styled.div.withConfig({
104
104
  export var InformationCardPropertyListWrapper = styled.div.withConfig({
105
105
  displayName: "InformationCardstyles__InformationCardPropertyListWrapper",
106
106
  componentId: "sc-zxu5qa-16"
107
- })(["display:flex;flex-direction:column;padding:0 16px 8px;"]);
107
+ })(["display:flex;flex-direction:column;padding:0 16px 8px;gap:8px;"]);
108
108
  export var InformationCardPropertyItem = styled.div.withConfig({
109
109
  displayName: "InformationCardstyles__InformationCardPropertyItem",
110
110
  componentId: "sc-zxu5qa-17"
111
- })(["display:flex;align-items:center;height:24px;gap:8px;"]);
111
+ })(["display:flex;align-items:center;flex-wrap:wrap;column-gap:8px;row-gap:6px;"]);
112
112
  export var InformationCardPropertyItemLabel = styled.span.withConfig({
113
113
  displayName: "InformationCardstyles__InformationCardPropertyItemLabel",
114
114
  componentId: "sc-zxu5qa-18"
@@ -1,4 +1,4 @@
1
- function _extends() { _extends = Object.assign ? Object.assign.bind() : 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); }
1
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
2
2
  import React from 'react';
3
3
  import Alert from '@synerise/ds-alert';
4
4
  import Avatar, { ObjectAvatar } from '@synerise/ds-avatar';
@@ -1,4 +1,4 @@
1
- function _extends() { _extends = Object.assign ? Object.assign.bind() : 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); }
1
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
2
2
  import React from 'react';
3
3
  import { FormattedMessage } from 'react-intl';
4
4
  import Dropdown from '@synerise/ds-dropdown';
@@ -1,4 +1,4 @@
1
- function _extends() { _extends = Object.assign ? Object.assign.bind() : 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); }
1
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
2
2
  import React, { useState } from 'react';
3
3
  import SubtleForm from '@synerise/ds-subtle-form';
4
4
  import * as S from '../InformationCard.styles';
@@ -1,4 +1,4 @@
1
- function _extends() { _extends = Object.assign ? Object.assign.bind() : 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); }
1
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
2
2
  import React, { useMemo } from 'react';
3
3
  import { v4 as uuid } from 'uuid';
4
4
  import * as S from '../InformationCard.styles';
@@ -1,4 +1,4 @@
1
- function _extends() { _extends = Object.assign ? Object.assign.bind() : 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); }
1
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
2
2
  import React, { useMemo } from 'react';
3
3
  import { v4 as uuid } from 'uuid';
4
4
  import Tooltip from '@synerise/ds-tooltip';
@@ -1,6 +1,6 @@
1
1
  var _excluded = ["triggerProps", "children", "style", "informationCardProps"];
2
- function _extends() { _extends = Object.assign ? Object.assign.bind() : 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); }
3
- function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
2
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
3
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
4
4
  import React, { useCallback, useMemo } from 'react';
5
5
  import Trigger from 'rc-trigger';
6
6
  import { useTheme } from '@synerise/ds-core';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-information-card",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "InformationCard UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -58,5 +58,5 @@
58
58
  "react-intl": ">=3.12.0 <= 6.8",
59
59
  "styled-components": "^5.3.3"
60
60
  },
61
- "gitHead": "dc78b03be09e793ec84f1dafc59c5616e77f1196"
61
+ "gitHead": "7586f8946fc312eae130021f8ae4ad4b9455e8d4"
62
62
  }