@descope-ui/descope-avatar 0.0.19 → 0.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 +18 -0
- package/e2e/descope-avatar.spec.ts +11 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.1.1](https://github.com/descope/web-components-ui/compare/@descope-ui/descope-avatar-0.1.0...@descope-ui/descope-avatar-0.1.1) (2025-09-29)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `@descope-ui/common` updated to version `0.1.1`
|
|
10
|
+
* `@descope-ui/theme-globals` updated to version `0.0.21`
|
|
11
|
+
## [0.1.0](https://github.com/descope/web-components-ui/compare/@descope-ui/descope-avatar-0.0.19...@descope-ui/descope-avatar-0.1.0) (2025-09-02)
|
|
12
|
+
|
|
13
|
+
### Dependency Updates
|
|
14
|
+
|
|
15
|
+
* `e2e-utils` updated to version `0.1.0`
|
|
16
|
+
* `@descope-ui/common` updated to version `0.1.0`
|
|
17
|
+
* `@descope-ui/theme-globals` updated to version `0.0.20`
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
* Trusted Devices ([#697](https://github.com/descope/web-components-ui/issues/697)) ([fb2f0eb](https://github.com/descope/web-components-ui/commit/fb2f0eb6773ed624354ed9f0b97d713bb8b10fce))
|
|
22
|
+
|
|
5
23
|
## [0.0.19](https://github.com/descope/web-components-ui/compare/@descope-ui/descope-avatar-0.0.18...@descope-ui/descope-avatar-0.0.19) (2025-07-21)
|
|
6
24
|
|
|
7
25
|
### Dependency Updates
|
|
@@ -32,7 +32,10 @@ test.describe('theme', () => {
|
|
|
32
32
|
loopConfig(componentAttributes, (attr, value) => {
|
|
33
33
|
test.describe(`${attr}: ${value}`, () => {
|
|
34
34
|
test.beforeEach(async ({ page }) => {
|
|
35
|
-
await page.goto(
|
|
35
|
+
await page.goto(
|
|
36
|
+
getStoryUrl(storyName, { text: 'Text 123', [attr]: value }),
|
|
37
|
+
{ waitUntil: 'load' },
|
|
38
|
+
);
|
|
36
39
|
});
|
|
37
40
|
test('style', async ({ page }) => {
|
|
38
41
|
const componentParent = page.locator(componentName);
|
|
@@ -48,7 +51,12 @@ test.describe('theme', () => {
|
|
|
48
51
|
await page.waitForSelector(componentName);
|
|
49
52
|
const component = page.locator(componentName);
|
|
50
53
|
expect(
|
|
51
|
-
await component.screenshot({
|
|
54
|
+
await component.screenshot({
|
|
55
|
+
animations: 'disabled',
|
|
56
|
+
timeout: 3000,
|
|
57
|
+
caret: 'hide',
|
|
58
|
+
}),
|
|
52
59
|
).toMatchSnapshot();
|
|
53
60
|
});
|
|
54
|
-
});
|
|
61
|
+
});
|
|
62
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@descope-ui/descope-avatar",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"import": "./src/component/index.js"
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"@vaadin/avatar": "24.3.4",
|
|
21
21
|
"@vaadin/icon": "24.3.4",
|
|
22
22
|
"@vaadin/icons": "24.3.4",
|
|
23
|
-
"@descope-ui/common": "0.
|
|
24
|
-
"@descope-ui/theme-globals": "0.0.
|
|
23
|
+
"@descope-ui/common": "0.1.1",
|
|
24
|
+
"@descope-ui/theme-globals": "0.0.21"
|
|
25
25
|
},
|
|
26
26
|
"publishConfig": {
|
|
27
27
|
"link-workspace-packages": false
|