@appquality/unguess-design-system 3.1.108 → 3.1.109
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/.github/workflows/release.yml +7 -0
- package/CHANGELOG.md +12 -0
- package/build/stories/buttons/button/index.stories.d.ts +1 -0
- package/build/stories/chat/index.stories.d.ts +1 -0
- package/build/stories/dropdowns/select/index.stories.d.ts +1 -0
- package/build/stories/editor/index.stories.d.ts +1 -0
- package/build/stories/highlight/index.stories.d.ts +1 -0
- package/build/stories/player/index.stories.d.ts +1 -0
- package/package.json +1 -1
|
@@ -32,6 +32,13 @@ jobs:
|
|
|
32
32
|
key: yarn-deps-${{ hashFiles('yarn.lock') }}
|
|
33
33
|
restore-keys: |
|
|
34
34
|
yarn-deps-${{ hashFiles('yarn.lock') }}
|
|
35
|
+
- name: Git Identity
|
|
36
|
+
run: |
|
|
37
|
+
git config --global user.name 'github-actions[bot]'
|
|
38
|
+
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
|
|
39
|
+
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/$GITHUB_REPOSITORY
|
|
40
|
+
env:
|
|
41
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
35
42
|
- name: Create Release
|
|
36
43
|
env:
|
|
37
44
|
GITHUB_TOKEN: ${{ secrets.REPO_PAT }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v3.1.109 (Wed Oct 02 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Fix authentication logic [#415](https://github.com/AppQuality/unguess-design-system/pull/415) ([@cannarocks](https://github.com/cannarocks))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v3.1.108 (Wed Oct 02 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import { ButtonArgs } from "./_types";
|
|
2
3
|
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, ButtonArgs>;
|
|
3
4
|
export declare const Basic: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0fc72a6d").R, ButtonArgs>;
|