@synerise/ds-status 1.0.0 → 1.1.1

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.1.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-status@1.1.0...@synerise/ds-status@1.1.1) (2025-03-26)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-status
9
+
10
+
11
+
12
+
13
+
14
+ # [1.1.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-status@1.0.0...@synerise/ds-status@1.1.0) (2025-03-18)
15
+
16
+
17
+ ### Features
18
+
19
+ * **button:** add support for tag in button ([32b6956](https://github.com/Synerise/synerise-design/commit/32b6956d5e1f46df03abb4de8fbaf0a7d487043e))
20
+
21
+
22
+
23
+
24
+
6
25
  ## [0.8.9](https://github.com/Synerise/synerise-design/compare/@synerise/ds-status@0.8.8...@synerise/ds-status@0.8.9) (2025-03-10)
7
26
 
8
27
  **Note:** Version bump only for package @synerise/ds-status
package/dist/Status.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { TagShape } from '@synerise/ds-tags';
2
+ import { TagShape } from '@synerise/ds-tag';
3
3
  import * as S from './Status.styles';
4
4
  var Status = function Status(_ref) {
5
5
  var _ref$type = _ref.type,
@@ -1,11 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import type { StatusType } from './Status.types';
3
- export declare const StatusTag: import("styled-components").StyledComponent<{
4
- ({ id, name, className, disabled, removable, image, shape, color, textColor, onRemove, onClick, prefixel, suffixel, texts, asPill, dashed, ...htmlAttributes }: import("@synerise/ds-tags/dist/Tag/Tag.types").TagProps): import("react").JSX.Element;
5
- defaultProps: {
6
- shape: import("@synerise/ds-tags").TagShape;
7
- };
8
- }, any, {
3
+ export declare const StatusTag: import("styled-components").StyledComponent<({ id, name, className, disabled, removable, image, shape, color, textColor, onRemove, onClick, prefixel, suffixel, texts, asPill, dashed, ...htmlAttributes }: import("@synerise/ds-tag").TagProps) => import("react").JSX.Element, any, {
9
4
  type: StatusType;
10
5
  dashed?: boolean | undefined;
11
6
  }, never>;
@@ -1,5 +1,5 @@
1
1
  import styled, { css } from 'styled-components';
2
- import { Tag } from '@synerise/ds-tags';
2
+ import Tag from '@synerise/ds-tag';
3
3
  var typeColor = function typeColor(props) {
4
4
  return {
5
5
  primary: props.theme.palette['blue-600'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-status",
3
- "version": "1.0.0",
3
+ "version": "1.1.1",
4
4
  "description": "Status UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -34,13 +34,13 @@
34
34
  ],
35
35
  "types": "dist/index.d.ts",
36
36
  "dependencies": {
37
- "@synerise/ds-tags": "^1.0.0",
38
- "@synerise/ds-utils": "^1.0.0"
37
+ "@synerise/ds-tag": "^1.1.1",
38
+ "@synerise/ds-utils": "^1.0.1"
39
39
  },
40
40
  "peerDependencies": {
41
41
  "@synerise/ds-core": "*",
42
42
  "react": ">=16.9.0 <= 18.3.1",
43
43
  "styled-components": "^5.3.3"
44
44
  },
45
- "gitHead": "e4c3690238a44b584b9ea41e4aa52b1eec42174b"
45
+ "gitHead": "47960dcd849dc47c85bd134bcfeb90a5505656a7"
46
46
  }