@softwareone/spi-sv5-library 1.1.0 → 1.2.0
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/dist/Accordion/Accordion.svelte +89 -0
- package/dist/Accordion/Accordion.svelte.d.ts +9 -0
- package/dist/Card/Card.svelte +2 -16
- package/dist/Card/Card.svelte.d.ts +0 -1
- package/dist/ErrorPage/ErrorPage.svelte +1 -0
- package/dist/Form/Input/Input.svelte +9 -31
- package/dist/Form/Input/Input.svelte.d.ts +1 -0
- package/dist/Form/Label.svelte +37 -0
- package/dist/Form/Label.svelte.d.ts +9 -0
- package/dist/Form/Select/Select.svelte +457 -0
- package/dist/Form/Select/Select.svelte.d.ts +22 -0
- package/dist/Form/Select/selectState.svelte.d.ts +4 -0
- package/dist/Form/Select/selectState.svelte.js +1 -0
- package/dist/Form/TextArea/TextArea.svelte +3 -23
- package/dist/Modal/Modal.svelte +5 -1
- package/dist/Modal/modalState.svelte.d.ts +1 -1
- package/dist/Notification/Notification.svelte +69 -0
- package/dist/Notification/Notification.svelte.d.ts +4 -0
- package/dist/Notification/notificationState.svelte.d.ts +9 -0
- package/dist/Notification/notificationState.svelte.js +1 -0
- package/dist/ProgressPage/ProgressPage.svelte +95 -0
- package/dist/ProgressPage/ProgressPage.svelte.d.ts +11 -0
- package/dist/ProgressWizard/ProgressWizard.svelte +1 -2
- package/dist/Search/Search.svelte +12 -5
- package/dist/Spinner/Spinner.svelte +23 -34
- package/dist/Spinner/Spinner.svelte.d.ts +3 -2
- package/dist/Toast/Toast.svelte +0 -5
- package/dist/Tooltip/Tooltip.svelte +0 -2
- package/dist/index.d.ts +6 -1
- package/dist/index.js +5 -1
- package/package.json +1 -1
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import { Button } from '../index.js';
|
|
3
|
+
|
|
4
|
+
type ProgressPageProps = {
|
|
5
|
+
iconName: string;
|
|
6
|
+
title: string;
|
|
7
|
+
description?: string;
|
|
8
|
+
documentationUrl?: string;
|
|
9
|
+
onclick?: VoidFunction;
|
|
10
|
+
buttonText?: string;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
let {
|
|
14
|
+
iconName,
|
|
15
|
+
title,
|
|
16
|
+
description = '',
|
|
17
|
+
documentationUrl = '',
|
|
18
|
+
onclick,
|
|
19
|
+
buttonText = 'Save'
|
|
20
|
+
}: ProgressPageProps = $props();
|
|
21
|
+
</script>
|
|
22
|
+
|
|
23
|
+
<article class="progress-page">
|
|
24
|
+
<span class="material-icons-outlined progress-icon">{iconName}</span>
|
|
25
|
+
<div class="progress-content">
|
|
26
|
+
<p class="progress-title">{title}</p>
|
|
27
|
+
{#if description}
|
|
28
|
+
<p class="progress-description">{description}</p>
|
|
29
|
+
{/if}
|
|
30
|
+
{#if documentationUrl}
|
|
31
|
+
<p class="progress-documentation">
|
|
32
|
+
To see more details check
|
|
33
|
+
<a rel="noreferrer" class="progress-link" href={documentationUrl} target="_blank">
|
|
34
|
+
our documentation.
|
|
35
|
+
</a>
|
|
36
|
+
</p>
|
|
37
|
+
{/if}
|
|
38
|
+
</div>
|
|
39
|
+
|
|
40
|
+
{#if onclick}
|
|
41
|
+
<Button {onclick}>{buttonText}</Button>
|
|
42
|
+
{/if}
|
|
43
|
+
</article>
|
|
44
|
+
|
|
45
|
+
<style>
|
|
46
|
+
.progress-page {
|
|
47
|
+
display: flex;
|
|
48
|
+
flex-direction: column;
|
|
49
|
+
align-items: center;
|
|
50
|
+
padding: 24px;
|
|
51
|
+
max-width: 350px;
|
|
52
|
+
gap: 24px;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.progress-icon {
|
|
56
|
+
color: #472aff;
|
|
57
|
+
font-size: 32px;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.progress-content {
|
|
61
|
+
display: flex;
|
|
62
|
+
flex-direction: column;
|
|
63
|
+
text-align: center;
|
|
64
|
+
gap: 8px;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.progress-title {
|
|
68
|
+
font-size: 18px;
|
|
69
|
+
font-weight: 700;
|
|
70
|
+
color: #000;
|
|
71
|
+
line-height: 1.4;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.progress-description,
|
|
75
|
+
.progress-documentation {
|
|
76
|
+
font-size: 14px;
|
|
77
|
+
color: #000;
|
|
78
|
+
line-height: 1.4;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.progress-link {
|
|
82
|
+
color: #472aff;
|
|
83
|
+
text-decoration: none;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.progress-link:hover {
|
|
87
|
+
text-decoration: underline;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.progress-link:focus {
|
|
91
|
+
outline: 2px solid #472aff;
|
|
92
|
+
outline-offset: 2px;
|
|
93
|
+
border-radius: 2px;
|
|
94
|
+
}
|
|
95
|
+
</style>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
type ProgressPageProps = {
|
|
2
|
+
iconName: string;
|
|
3
|
+
title: string;
|
|
4
|
+
description?: string;
|
|
5
|
+
documentationUrl?: string;
|
|
6
|
+
onclick?: VoidFunction;
|
|
7
|
+
buttonText?: string;
|
|
8
|
+
};
|
|
9
|
+
declare const ProgressPage: import("svelte").Component<ProgressPageProps, {}, "">;
|
|
10
|
+
type ProgressPage = ReturnType<typeof ProgressPage>;
|
|
11
|
+
export default ProgressPage;
|
|
@@ -42,9 +42,7 @@
|
|
|
42
42
|
|
|
43
43
|
const stepToStart = (): number => {
|
|
44
44
|
if (readonly && allStepsDisabled) return -1;
|
|
45
|
-
|
|
46
45
|
if (readonly && !allStepsDisabled) return steps.length;
|
|
47
|
-
|
|
48
46
|
return firstActiveStep;
|
|
49
47
|
};
|
|
50
48
|
|
|
@@ -96,6 +94,7 @@
|
|
|
96
94
|
<span class="line"></span>
|
|
97
95
|
</div>
|
|
98
96
|
<button
|
|
97
|
+
type="button"
|
|
99
98
|
class="details"
|
|
100
99
|
disabled={disabled || readonly}
|
|
101
100
|
onclick={() => (currentStep = stepIndex)}
|
|
@@ -18,14 +18,15 @@
|
|
|
18
18
|
|
|
19
19
|
const hasValue = $derived(!!value);
|
|
20
20
|
|
|
21
|
-
const handleClear = () => {
|
|
21
|
+
const handleClear = (event: Event) => {
|
|
22
|
+
event.stopPropagation();
|
|
22
23
|
value = '';
|
|
23
24
|
onclear?.();
|
|
24
25
|
};
|
|
25
26
|
|
|
26
27
|
const handleKeydown = (event: KeyboardEvent) => {
|
|
27
28
|
if (event.key === 'Escape' && hasValue) {
|
|
28
|
-
handleClear();
|
|
29
|
+
handleClear(event);
|
|
29
30
|
event.preventDefault();
|
|
30
31
|
}
|
|
31
32
|
};
|
|
@@ -67,12 +68,17 @@
|
|
|
67
68
|
border-radius: 8px;
|
|
68
69
|
border: 1px solid #6b7180;
|
|
69
70
|
background: #fff;
|
|
70
|
-
transition:
|
|
71
|
+
transition:
|
|
72
|
+
border-color 0.2s ease-in-out,
|
|
73
|
+
box-shadow 0.2s ease-in-out;
|
|
71
74
|
}
|
|
72
75
|
|
|
73
76
|
.search-wrapper:hover:not(:has(.search-input:disabled)),
|
|
74
77
|
.search-wrapper:focus-within {
|
|
75
78
|
border-color: #472aff;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.search-wrapper:focus-within {
|
|
76
82
|
box-shadow: 0 0 0 3px rgba(149, 155, 255, 0.3);
|
|
77
83
|
}
|
|
78
84
|
|
|
@@ -119,7 +125,9 @@
|
|
|
119
125
|
padding: 4px;
|
|
120
126
|
cursor: pointer;
|
|
121
127
|
border-radius: 4px;
|
|
122
|
-
transition:
|
|
128
|
+
transition:
|
|
129
|
+
color 0.2s ease-in-out,
|
|
130
|
+
background-color 0.2s ease-in-out;
|
|
123
131
|
display: flex;
|
|
124
132
|
align-items: center;
|
|
125
133
|
justify-content: center;
|
|
@@ -128,7 +136,6 @@
|
|
|
128
136
|
.clear-button:hover,
|
|
129
137
|
.clear-button:focus {
|
|
130
138
|
color: #000;
|
|
131
|
-
background-color: #f3f4f6;
|
|
132
139
|
outline: none;
|
|
133
140
|
}
|
|
134
141
|
|
|
@@ -1,54 +1,43 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
interface SpinnerProps {
|
|
3
|
-
|
|
3
|
+
show: boolean;
|
|
4
|
+
size?: 'sm' | 'md' | 'lg';
|
|
4
5
|
}
|
|
5
6
|
|
|
6
|
-
let { size }: SpinnerProps = $props();
|
|
7
|
+
let { show = $bindable(false), size = 'lg' }: SpinnerProps = $props();
|
|
7
8
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
pxsize: '16px',
|
|
13
|
-
svg: `<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
|
|
14
|
-
<path d="M16 8C16 12.4183 12.4183 16 8 16C3.58172 16 0 12.4183 0 8C0 3.58172 3.58172 0 8 0C12.4183 0 16 3.58172 16 8ZM4.2005 8C4.2005 10.0984 5.90159 11.7995 8 11.7995C10.0984 11.7995 11.7995 10.0984 11.7995 8C11.7995 5.90159 10.0984 4.2005 8 4.2005C5.90159 4.2005 4.2005 5.90159 4.2005 8Z" fill="#E0E5E8"/>
|
|
15
|
-
<path d="M8 13.8998C8 15.0597 8.95609 16.027 10.0763 15.7259C11.4189 15.365 12.6567 14.657 13.6569 13.6569C15.1571 12.1566 16 10.1217 16 8C16 5.87827 15.1571 3.84344 13.6569 2.34315C12.6567 1.34297 11.4189 0.634982 10.0763 0.274108C8.95609 -0.0269669 8 0.940313 8 2.10025C8 3.26019 9.00775 4.15735 9.99495 4.76635C10.244 4.91998 10.4764 5.10307 10.6867 5.31335C11.3992 6.02589 11.7995 6.99231 11.7995 8C11.7995 9.00769 11.3992 9.97411 10.6867 10.6867C10.4764 10.8969 10.244 11.08 9.99495 11.2336C9.00775 11.8427 8 12.7398 8 13.8998Z" fill="#472AFF"/>
|
|
16
|
-
</svg>`
|
|
17
|
-
},
|
|
18
|
-
medium: {
|
|
19
|
-
pxsize: '33px',
|
|
20
|
-
svg: `<svg xmlns="http://www.w3.org/2000/svg" width="33" height="33" viewBox="0 0 33 33" fill="none">
|
|
21
|
-
<path d="M33 16.5C33 25.6127 25.6127 33 16.5 33C7.3873 33 0 25.6127 0 16.5C0 7.3873 7.3873 0 16.5 0C25.6127 0 33 7.3873 33 16.5ZM3.4924 16.5C3.4924 23.6839 9.3161 29.5076 16.5 29.5076C23.6839 29.5076 29.5076 23.6839 29.5076 16.5C29.5076 9.3161 23.6839 3.4924 16.5 3.4924C9.3161 3.4924 3.4924 9.3161 3.4924 16.5Z" fill="#E0E5E8"/>
|
|
22
|
-
<path d="M16.5 31.2538C16.5 32.2182 17.2841 33.0096 18.2431 32.9077C21.9784 32.511 25.4865 30.848 28.1673 28.1673C31.2616 25.0729 33 20.8761 33 16.5C33 12.1239 31.2616 7.92709 28.1673 4.83274C25.4865 2.15202 21.9784 0.488977 18.2431 0.0922724C17.2841 -0.00957781 16.5 0.781801 16.5 1.7462C16.5 2.7106 17.2853 3.48033 18.2411 3.6094C21.048 3.98847 23.6725 5.27693 25.6978 7.30224C28.1372 9.74164 29.5076 13.0502 29.5076 16.5C29.5076 19.9498 28.1372 23.2584 25.6978 25.6978C23.6725 27.7231 21.048 29.0115 18.2411 29.3906C17.2853 29.5197 16.5 30.2894 16.5 31.2538Z" fill="#472AFF"/>
|
|
23
|
-
</svg>`
|
|
24
|
-
},
|
|
25
|
-
large: {
|
|
26
|
-
pxsize: '40px',
|
|
27
|
-
svg: `<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none">
|
|
28
|
-
<path d="M40 20C40 31.0457 31.0457 40 20 40C8.9543 40 0 31.0457 0 20C0 8.9543 8.9543 0 20 0C31.0457 0 40 8.9543 40 20ZM6.27298 20C6.27298 27.5812 12.4188 33.727 20 33.727C27.5812 33.727 33.727 27.5812 33.727 20C33.727 12.4188 27.5812 6.27298 20 6.27298C12.4188 6.27298 6.27298 12.4188 6.27298 20Z" fill="#E0E5E8"/>
|
|
29
|
-
<path d="M20 3.13649C20 1.40425 21.4128 -0.0251732 23.1238 0.245376C27.2709 0.901143 31.1358 2.85154 34.1421 5.85786C37.8929 9.60859 40 14.6957 40 20C40 25.3043 37.8929 30.3914 34.1421 34.1421C31.1358 37.1485 27.2709 39.0989 23.1238 39.7546C21.4128 40.0252 20 38.5957 20 36.8635C20 35.1313 21.4222 33.7627 23.1094 33.3703C25.5876 32.7939 27.8783 31.5346 29.7065 29.7065C32.2808 27.1322 33.727 23.6406 33.727 20C33.727 16.3594 32.2808 12.8678 29.7065 10.2935C27.8783 8.46537 25.5876 7.20612 23.1094 6.62973C21.4222 6.23731 20 4.86873 20 3.13649Z" fill="#472AFF"/>
|
|
30
|
-
</svg>`
|
|
31
|
-
}
|
|
9
|
+
const pixelSizes: Record<string, number> = {
|
|
10
|
+
sm: 16,
|
|
11
|
+
md: 33,
|
|
12
|
+
lg: 40
|
|
32
13
|
};
|
|
33
|
-
|
|
34
|
-
let pxsize = $state(sizes[size].pxsize);
|
|
35
|
-
let svg = $state(sizes[size].svg);
|
|
36
14
|
</script>
|
|
37
15
|
|
|
16
|
+
{#if show}
|
|
38
17
|
<div class="spinner-container">
|
|
39
|
-
<div class="spinner" style="width: {
|
|
40
|
-
|
|
18
|
+
<div class="spinner" style="width: {pixelSizes[size]}px; height: {pixelSizes[size]}px;">
|
|
19
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40" fill="none">
|
|
20
|
+
<path
|
|
21
|
+
d="M40 20C40 31.0457 31.0457 40 20 40C8.9543 40 0 31.0457 0 20C0 8.9543 8.9543 0 20 0C31.0457 0 40 8.9543 40 20ZM6.27298 20C6.27298 27.5812 12.4188 33.727 20 33.727C27.5812 33.727 33.727 27.5812 33.727 20C33.727 12.4188 27.5812 6.27298 20 6.27298C12.4188 6.27298 6.27298 12.4188 6.27298 20Z"
|
|
22
|
+
fill="#E0E5E8"
|
|
23
|
+
/>
|
|
24
|
+
<path
|
|
25
|
+
d="M20 3.13649C20 1.40425 21.4128 -0.0251732 23.1238 0.245376C27.2709 0.901143 31.1358 2.85154 34.1421 5.85786C37.8929 9.60859 40 14.6957 40 20C40 25.3043 37.8929 30.3914 34.1421 34.1421C31.1358 37.1485 27.2709 39.0989 23.1238 39.7546C21.4128 40.0252 20 38.5957 20 36.8635C20 35.1313 21.4222 33.7627 23.1094 33.3703C25.5876 32.7939 27.8783 31.5346 29.7065 29.7065C32.2808 27.1322 33.727 23.6406 33.727 20C33.727 16.3594 32.2808 12.8678 29.7065 10.2935C27.8783 8.46537 25.5876 7.20612 23.1094 6.62973C21.4222 6.23731 20 4.86873 20 3.13649Z"
|
|
26
|
+
fill="#472AFF"
|
|
27
|
+
/>
|
|
28
|
+
</svg>
|
|
41
29
|
</div>
|
|
42
30
|
</div>
|
|
31
|
+
{/if}
|
|
43
32
|
|
|
44
33
|
<style>
|
|
45
34
|
.spinner-container {
|
|
46
35
|
display: flex;
|
|
47
36
|
justify-content: center;
|
|
48
37
|
align-items: center;
|
|
49
|
-
width:
|
|
50
|
-
height:
|
|
51
|
-
position:
|
|
38
|
+
width: 100%;
|
|
39
|
+
height: 100%;
|
|
40
|
+
position: absolute;
|
|
52
41
|
top: 0;
|
|
53
42
|
left: 0;
|
|
54
43
|
background-color: rgba(255, 255, 255, 0.8);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
interface SpinnerProps {
|
|
2
|
-
|
|
2
|
+
show: boolean;
|
|
3
|
+
size?: 'sm' | 'md' | 'lg';
|
|
3
4
|
}
|
|
4
|
-
declare const Spinner: import("svelte").Component<SpinnerProps, {}, "">;
|
|
5
|
+
declare const Spinner: import("svelte").Component<SpinnerProps, {}, "show">;
|
|
5
6
|
type Spinner = ReturnType<typeof Spinner>;
|
|
6
7
|
export default Spinner;
|
package/dist/Toast/Toast.svelte
CHANGED
|
@@ -97,9 +97,7 @@
|
|
|
97
97
|
flex-direction: var(--toast-flex-direction);
|
|
98
98
|
gap: var(--toast-gap);
|
|
99
99
|
padding: 8px 0px;
|
|
100
|
-
color: #000;
|
|
101
100
|
font-size: 14px;
|
|
102
|
-
font-style: normal;
|
|
103
101
|
font-weight: 400;
|
|
104
102
|
line-height: 20px;
|
|
105
103
|
}
|
|
@@ -123,9 +121,6 @@
|
|
|
123
121
|
display: flex;
|
|
124
122
|
align-items: center;
|
|
125
123
|
color: #2b1999;
|
|
126
|
-
font-size: 14px;
|
|
127
|
-
font-weight: 400;
|
|
128
|
-
line-height: 20px;
|
|
129
124
|
}
|
|
130
125
|
|
|
131
126
|
.toast-content-link:hover {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import Accordion from './Accordion/Accordion.svelte';
|
|
1
2
|
import Avatar from './Avatar/Avatar.svelte';
|
|
2
3
|
import Breadcrumbs from './Breadcrumbs/Breadcrumbs.svelte';
|
|
3
4
|
import { addBreadcrumbsNameMap, type BreadcrumbsNameMap } from './Breadcrumbs/breadcrumbsState.svelte.js';
|
|
@@ -8,6 +9,8 @@ import { ChipType } from './Chips/chipsState.svelte.js';
|
|
|
8
9
|
import ErrorPage from './ErrorPage/ErrorPage.svelte';
|
|
9
10
|
import Footer from './Footer/Footer.svelte';
|
|
10
11
|
import Input from './Form/Input/Input.svelte';
|
|
12
|
+
import Select from './Form/Select/Select.svelte';
|
|
13
|
+
import type { SelectOption } from './Form/Select/selectState.svelte.js';
|
|
11
14
|
import TextArea from './Form/TextArea/TextArea.svelte';
|
|
12
15
|
import Toggle from './Form/Toggle/Toggle.svelte';
|
|
13
16
|
import Header from './Header/Header.svelte';
|
|
@@ -21,6 +24,8 @@ import Sidebar from './Menu/Sidebar.svelte';
|
|
|
21
24
|
import type { MenuItem } from './Menu/SidebarState.svelte';
|
|
22
25
|
import Modal from './Modal/Modal.svelte';
|
|
23
26
|
import type { ModalProps } from './Modal/modalState.svelte.js';
|
|
27
|
+
import Notification from './Notification/Notification.svelte';
|
|
28
|
+
import ProgressPage from './ProgressPage/ProgressPage.svelte';
|
|
24
29
|
import ProgressWizard from './ProgressWizard/ProgressWizard.svelte';
|
|
25
30
|
import type { ProgressWizardStep } from './ProgressWizard/progressWizardState.svelte.js';
|
|
26
31
|
import Search from './Search/Search.svelte';
|
|
@@ -30,4 +35,4 @@ import type { Tab } from './Tabs/tabsState.svelte.js';
|
|
|
30
35
|
import Toaster from './Toast/Toast.svelte';
|
|
31
36
|
import { addToast, type Toast } from './Toast/toastState.svelte';
|
|
32
37
|
import Tooltip from './Tooltip/Tooltip.svelte';
|
|
33
|
-
export { addBreadcrumbsNameMap, addToast, Avatar, Breadcrumbs, Button, Card, Chips, ChipType, ColumnType, ErrorPage, Footer, Header, HeaderAccount, HeaderLoader, HeaderLogo, HighlightPanel, ImageType, Input, Menu, Modal, ProgressWizard, Search, Sidebar, Spinner, Tabs, TextArea, Toaster, Toggle, Tooltip, type BreadcrumbsNameMap, type HighlightPanelColumn, type MenuItem, type ModalProps, type ProgressWizardStep, type Tab, type Toast };
|
|
38
|
+
export { Accordion, addBreadcrumbsNameMap, addToast, Avatar, Breadcrumbs, Button, Card, Chips, ChipType, ColumnType, ErrorPage, Footer, Header, HeaderAccount, HeaderLoader, HeaderLogo, HighlightPanel, ImageType, Input, Menu, Modal, Notification, ProgressPage, ProgressWizard, Search, Select, Sidebar, Spinner, Tabs, TextArea, Toaster, Toggle, Tooltip, type BreadcrumbsNameMap, type HighlightPanelColumn, type MenuItem, type ModalProps, type ProgressWizardStep, type SelectOption, type Tab, type Toast };
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import Accordion from './Accordion/Accordion.svelte';
|
|
1
2
|
import Avatar from './Avatar/Avatar.svelte';
|
|
2
3
|
import Breadcrumbs from './Breadcrumbs/Breadcrumbs.svelte';
|
|
3
4
|
import { addBreadcrumbsNameMap } from './Breadcrumbs/breadcrumbsState.svelte.js';
|
|
@@ -8,6 +9,7 @@ import { ChipType } from './Chips/chipsState.svelte.js';
|
|
|
8
9
|
import ErrorPage from './ErrorPage/ErrorPage.svelte';
|
|
9
10
|
import Footer from './Footer/Footer.svelte';
|
|
10
11
|
import Input from './Form/Input/Input.svelte';
|
|
12
|
+
import Select from './Form/Select/Select.svelte';
|
|
11
13
|
import TextArea from './Form/TextArea/TextArea.svelte';
|
|
12
14
|
import Toggle from './Form/Toggle/Toggle.svelte';
|
|
13
15
|
import Header from './Header/Header.svelte';
|
|
@@ -19,6 +21,8 @@ import { ColumnType, ImageType } from './HighlightPanel/highlightPanelState.svel
|
|
|
19
21
|
import Menu from './Menu/Menu.svelte';
|
|
20
22
|
import Sidebar from './Menu/Sidebar.svelte';
|
|
21
23
|
import Modal from './Modal/Modal.svelte';
|
|
24
|
+
import Notification from './Notification/Notification.svelte';
|
|
25
|
+
import ProgressPage from './ProgressPage/ProgressPage.svelte';
|
|
22
26
|
import ProgressWizard from './ProgressWizard/ProgressWizard.svelte';
|
|
23
27
|
import Search from './Search/Search.svelte';
|
|
24
28
|
import Spinner from './Spinner/Spinner.svelte';
|
|
@@ -26,4 +30,4 @@ import Tabs from './Tabs/Tabs.svelte';
|
|
|
26
30
|
import Toaster from './Toast/Toast.svelte';
|
|
27
31
|
import { addToast } from './Toast/toastState.svelte';
|
|
28
32
|
import Tooltip from './Tooltip/Tooltip.svelte';
|
|
29
|
-
export { addBreadcrumbsNameMap, addToast, Avatar, Breadcrumbs, Button, Card, Chips, ChipType, ColumnType, ErrorPage, Footer, Header, HeaderAccount, HeaderLoader, HeaderLogo, HighlightPanel, ImageType, Input, Menu, Modal, ProgressWizard, Search, Sidebar, Spinner, Tabs, TextArea, Toaster, Toggle, Tooltip };
|
|
33
|
+
export { Accordion, addBreadcrumbsNameMap, addToast, Avatar, Breadcrumbs, Button, Card, Chips, ChipType, ColumnType, ErrorPage, Footer, Header, HeaderAccount, HeaderLoader, HeaderLogo, HighlightPanel, ImageType, Input, Menu, Modal, Notification, ProgressPage, ProgressWizard, Search, Select, Sidebar, Spinner, Tabs, TextArea, Toaster, Toggle, Tooltip };
|