@testgorilla/tgo-ui 1.0.6 → 1.0.7
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/components/confirm-dialog/confirm-dialog.component.d.ts +14 -0
- package/components/confirm-dialog/confirm-dialog.component.module.d.ts +11 -0
- package/components/confirm-dialog/confirm-dialog.constants.d.ts +5 -0
- package/components/confirm-dialog/confirm-dialog.model.d.ts +7 -0
- package/components/dialog/dialog.component.d.ts +14 -1
- package/components/snackbar/snackbar.component.d.ts +4 -1
- package/components/snackbar/snackbar.service.d.ts +11 -0
- package/esm2020/components/alert-banner/alert-banner.component.mjs +3 -3
- package/esm2020/components/confirm-dialog/confirm-dialog.component.mjs +26 -0
- package/esm2020/components/confirm-dialog/confirm-dialog.component.module.mjs +28 -0
- package/esm2020/components/confirm-dialog/confirm-dialog.constants.mjs +6 -0
- package/esm2020/components/confirm-dialog/confirm-dialog.model.mjs +2 -0
- package/esm2020/components/dialog/dialog.component.mjs +19 -3
- package/esm2020/components/snackbar/snackbar.component.mjs +20 -10
- package/esm2020/components/snackbar/snackbar.component.module.mjs +4 -3
- package/esm2020/components/snackbar/snackbar.service.mjs +31 -0
- package/esm2020/public-api.mjs +5 -1
- package/fesm2015/testgorilla-tgo-ui.mjs +119 -13
- package/fesm2015/testgorilla-tgo-ui.mjs.map +1 -1
- package/fesm2020/testgorilla-tgo-ui.mjs +113 -13
- package/fesm2020/testgorilla-tgo-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +3 -0
- package/src/theme/_alert-bars.scss +9 -8
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -57,6 +57,7 @@ export * from './components/radio-button/radio-button.component.module';
|
|
|
57
57
|
export * from './components/snackbar/snackbar.component';
|
|
58
58
|
export * from './components/snackbar/snackbar.component.module';
|
|
59
59
|
export * from './components/snackbar/snackbar.model';
|
|
60
|
+
export * from './components/snackbar/snackbar.service';
|
|
60
61
|
export * from './components/table/pipes/data-property-getter';
|
|
61
62
|
export * from './components/table/table.component';
|
|
62
63
|
export * from './components/table/table.component.module';
|
|
@@ -72,3 +73,5 @@ export * from './components/dropdown/dropdown.component.module';
|
|
|
72
73
|
export * from './components/dropdown/dropdown.model';
|
|
73
74
|
export * from './components/spinner/spinner.component';
|
|
74
75
|
export * from './components/spinner/spinner.module';
|
|
76
|
+
export * from './components/confirm-dialog/confirm-dialog.component';
|
|
77
|
+
export * from './components/confirm-dialog/confirm-dialog.component.module';
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
@use
|
|
2
|
-
@use
|
|
1
|
+
@use 'variables' as *;
|
|
2
|
+
@use 'breakpoints-mixin' as *;
|
|
3
3
|
|
|
4
4
|
:host {
|
|
5
5
|
display: flex;
|
|
6
6
|
width: 100%;
|
|
7
7
|
justify-content: center;
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
.snackbar-container {
|
|
10
10
|
max-width: 600px;
|
|
11
|
-
|
|
11
|
+
}
|
|
12
12
|
|
|
13
13
|
.alert-container,
|
|
14
|
-
.snackbar-container
|
|
14
|
+
.snackbar-container {
|
|
15
15
|
margin: 0 auto;
|
|
16
16
|
display: flex;
|
|
17
17
|
padding: 0 14px;
|
|
@@ -46,7 +46,8 @@
|
|
|
46
46
|
.snackbar-text {
|
|
47
47
|
display: flex;
|
|
48
48
|
align-items: center;
|
|
49
|
-
|
|
49
|
+
color: black;
|
|
50
|
+
|
|
50
51
|
a {
|
|
51
52
|
color: $tgo-black;
|
|
52
53
|
text-decoration: underline;
|
|
@@ -59,7 +60,7 @@
|
|
|
59
60
|
}
|
|
60
61
|
}
|
|
61
62
|
}
|
|
62
|
-
|
|
63
|
+
|
|
63
64
|
&.success {
|
|
64
65
|
background-color: $tgo-teal-secondary;
|
|
65
66
|
}
|
|
@@ -85,4 +86,4 @@
|
|
|
85
86
|
padding: 8px 14px;
|
|
86
87
|
}
|
|
87
88
|
}
|
|
88
|
-
}
|
|
89
|
+
}
|