Skip to content

Commit dc8c2dc

Browse files
feat: Update changes from core sdk
1 parent a0f29dd commit dc8c2dc

34 files changed

+480
-335
lines changed

.storybook/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { StorybookConfig } from "@storybook/vue3-vite";
22

33
const config: StorybookConfig = {
4-
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
4+
stories: ["../**/*.mdx", "../**/*.stories.@(js|jsx|mjs|ts|tsx)"],
55
addons: [
66
"@storybook/addon-links",
77
"@storybook/addon-essentials",

custom.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@ declare module '*.svg' {
22
const src: string;
33
export default src;
44
}
5+
6+
declare module '*.png';

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,6 @@
6565
"license"
6666
],
6767
"dependencies": {
68-
"test_notification": "1.0.20"
68+
"test_notification": "1.1.0"
6969
}
7070
}
11.7 KB
Loading

src/assets/defaultAvatar.svg

Lines changed: 0 additions & 5 deletions
This file was deleted.
11.4 KB
Loading

src/components/BellIcon.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<template>
2-
<div :class="className" :style="{ width: size, height: size }">
32
<svg
43
:width="size"
54
:height="size"
@@ -15,7 +14,6 @@
1514
stroke-linejoin="round"
1615
/>
1716
</svg>
18-
</div>
1917
</template>
2018

2119
<script setup lang="ts">

src/components/ClearAllIcon.vue

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<template>
2-
<div :class="className" :style="{ width: size, height: size }">
32
<svg
43
:width="size"
54
:height="size"
@@ -12,18 +11,15 @@
1211
:fill="fill"
1312
/>
1413
</svg>
15-
</div>
1614
</template>
1715

1816
<script setup lang="ts">
1917
withDefaults(
2018
defineProps<{
2119
fill?: string;
22-
className?: string;
2320
size?: string;
2421
}>(),
2522
{
26-
className: '',
2723
fill: '#667185',
2824
size: '24'
2925
}

src/components/CloseIcon.vue

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<template>
2-
<div :class="className" :style="{ width: size, height: size }">
32
<svg
43
:width="size"
54
:height="size"
@@ -15,22 +14,19 @@
1514
stroke-linejoin="round"
1615
/>
1716
</svg>
18-
</div>
1917
</template>
2018

2119
<script setup lang="ts">
2220
withDefaults(
2321
defineProps<{
2422
fill?: string;
25-
className?: string;
2623
size?: string;
2724
stroke?: string;
2825
}>(),
2926
{
3027
fill: 'none',
3128
size: '20',
32-
stroke: '#98A2B3',
33-
className: ''
29+
stroke: '#98A2B3'
3430
}
3531
);
3632
</script>

src/components/ErrorWindow.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/>
1010
</div>
1111
<div :style="styles.errorText" class="siren-sdk-error-text">
12-
{{ ERROR_TEXT }}
12+
{{ error || ERROR_TEXT }}
1313
</div>
1414
<div :style="styles.errorText" class="siren-sdk-error-sub-text">
1515
{{ ERROR_SUB_TEXT }}

0 commit comments

Comments
 (0)