@synerise/ds-subject 0.9.67 → 0.9.69

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.9.69](https://github.com/Synerise/synerise-design/compare/@synerise/ds-subject@0.9.68...@synerise/ds-subject@0.9.69) (2023-10-06)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-subject
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.9.68](https://github.com/Synerise/synerise-design/compare/@synerise/ds-subject@0.9.67...@synerise/ds-subject@0.9.68) (2023-10-02)
15
+
16
+ **Note:** Version bump only for package @synerise/ds-subject
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.9.67](https://github.com/Synerise/synerise-design/compare/@synerise/ds-subject@0.9.66...@synerise/ds-subject@0.9.67) (2023-09-26)
7
23
 
8
24
  **Note:** Version bump only for package @synerise/ds-subject
@@ -1,12 +1,12 @@
1
1
  import * as React from 'react';
2
2
  export declare const ALL_TYPES: readonly ["event", "parameter", "context"];
3
- export declare type SubjectType = typeof ALL_TYPES[number] | string;
4
- export declare type SubjectItem = {
3
+ export type SubjectType = typeof ALL_TYPES[number] | string;
4
+ export type SubjectItem = {
5
5
  id: React.ReactText;
6
6
  name: string;
7
7
  icon: React.ReactNode;
8
8
  };
9
- export declare type SubjectProps = {
9
+ export type SubjectProps = {
10
10
  onShowPreview?: () => void;
11
11
  onActivate?: (fieldType: string) => void;
12
12
  onDeactivate?: () => void;
@@ -23,10 +23,10 @@ export declare type SubjectProps = {
23
23
  };
24
24
  opened?: boolean;
25
25
  };
26
- export declare type SubjectListProps = Pick<SubjectProps, 'items' | 'onSelectItem' | 'texts'> & {
26
+ export type SubjectListProps = Pick<SubjectProps, 'items' | 'onSelectItem' | 'texts'> & {
27
27
  hideDropdown: () => void;
28
28
  };
29
- export declare type SubjectTriggerProps = Pick<SubjectProps, 'placeholder' | 'iconPlaceholder' | 'selectedItem'> & {
29
+ export type SubjectTriggerProps = Pick<SubjectProps, 'placeholder' | 'iconPlaceholder' | 'selectedItem'> & {
30
30
  color: string;
31
31
  onClick: () => void;
32
32
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-subject",
3
- "version": "0.9.67",
3
+ "version": "0.9.69",
4
4
  "description": "Subject UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -32,13 +32,13 @@
32
32
  ],
33
33
  "types": "dist/index.d.ts",
34
34
  "dependencies": {
35
- "@synerise/ds-button": "^0.18.2",
36
- "@synerise/ds-dropdown": "^0.17.80",
37
- "@synerise/ds-icon": "^0.58.2",
38
- "@synerise/ds-menu": "^0.17.19",
39
- "@synerise/ds-result": "^0.6.31",
40
- "@synerise/ds-scrollbar": "^0.6.7",
41
- "@synerise/ds-utils": "^0.24.16",
35
+ "@synerise/ds-button": "^0.18.3",
36
+ "@synerise/ds-dropdown": "^0.17.82",
37
+ "@synerise/ds-icon": "^0.58.3",
38
+ "@synerise/ds-menu": "^0.18.0",
39
+ "@synerise/ds-result": "^0.6.32",
40
+ "@synerise/ds-scrollbar": "^0.6.8",
41
+ "@synerise/ds-utils": "^0.24.17",
42
42
  "uuid": "^8.3.2"
43
43
  },
44
44
  "peerDependencies": {
@@ -51,5 +51,5 @@
51
51
  "@testing-library/react": "10.0.1",
52
52
  "@testing-library/user-event": "^10.3.1"
53
53
  },
54
- "gitHead": "f1f520c4c5ef9f90bacb5d5e0b2e778ceb8fdf79"
54
+ "gitHead": "d944339a738211d8f74b27360481aafd7ef51ddd"
55
55
  }