agroptima-design-system 1.2.0-beta.2 → 1.2.0-beta.4
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.
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[08:27:33.154] [INFO] storybook v10.1.11
|
|
2
|
+
[08:27:33.766] [DEBUG] Getting package.json info for /Users/verochan/wineries/design-system/package.json...
|
|
3
|
+
[08:27:34.402] [DEBUG] Serving static files from [36mpublic[39m at [36m/[39m
|
|
4
|
+
[08:27:34.407] [INFO] Starting...
|
|
5
|
+
[08:27:34.825] [DEBUG] Starting preview..
|
|
6
|
+
[08:27:34.844] [INFO] Addon-docs: using MDX3
|
|
7
|
+
[08:27:34.865] [INFO] Using implicit CSS loaders
|
|
8
|
+
[08:27:35.233] [INFO] Using SWC as compiler
|
|
9
|
+
[08:27:35.245] [INFO] Using default Webpack5 setup
|
|
10
|
+
[08:27:35.616] [DEBUG] Using tsconfig paths for react-docgen
|
|
11
|
+
[08:27:45.882] [ERROR] Failed to build the preview
|
|
12
|
+
[08:27:45.887] [WARN] Force closed preview build
|
|
13
|
+
[08:27:45.888] [ERROR] [38;2;241;97;97mSB_BUILDER-WEBPACK5_0003 (WebpackCompilationError): There were problems when compiling your code with Webpack.
|
|
14
|
+
Run Storybook with --debug-webpack for more information.[39m
|
|
15
|
+
at starter (file://./node_modules/@storybook/builder-webpack5/dist/index.js:799:11)
|
|
16
|
+
at starter.next (<anonymous>)
|
|
17
|
+
at Module.start (file://./node_modules/@storybook/builder-webpack5/dist/index.js:857:34)
|
|
18
|
+
at process.processTicksAndRejections (node:internal/process/task_queues:103:5)
|
|
19
|
+
at async storybookDevServer (file://./node_modules/storybook/dist/core-server/index.js:6806:82)
|
|
20
|
+
at async buildOrThrow (file://./node_modules/storybook/dist/core-server/index.js:5555:12)
|
|
21
|
+
at async buildDevStandalone (file://./node_modules/storybook/dist/core-server/index.js:7208:66)
|
|
22
|
+
at async withTelemetry (file://./node_modules/storybook/dist/_node-chunks/chunk-2372JZ52.js:209:12)
|
|
23
|
+
at async dev (file://./node_modules/storybook/dist/bin/core.js:2734:3)
|
|
24
|
+
at async _Command.<anonymous> (file://./node_modules/storybook/dist/bin/core.js:2801:92)
|
|
25
|
+
[08:27:45.889] [WARN] Broken build, fix the error above.
|
|
26
|
+
You may need to refresh the browser.
|
package/package.json
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
@use '../../settings/breakpoints';
|
|
5
5
|
@use '../../settings/mixins';
|
|
6
6
|
|
|
7
|
+
$header-height: 50px;
|
|
8
|
+
|
|
7
9
|
.notification-center-container {
|
|
8
10
|
.notification-center {
|
|
9
11
|
display: flex;
|
|
@@ -144,7 +146,7 @@
|
|
|
144
146
|
|
|
145
147
|
.notification-center {
|
|
146
148
|
width: 100%;
|
|
147
|
-
height:
|
|
149
|
+
height: calc(100vh - $header-height);
|
|
148
150
|
|
|
149
151
|
.notification-header {
|
|
150
152
|
.notification-header-title {
|
|
@@ -159,7 +161,7 @@
|
|
|
159
161
|
}
|
|
160
162
|
|
|
161
163
|
.notification-line {
|
|
162
|
-
&.empty-state {
|
|
164
|
+
&.notification-empty-state {
|
|
163
165
|
height: 100%;
|
|
164
166
|
}
|
|
165
167
|
}
|
|
@@ -16,7 +16,13 @@ function NotificationEmptyState({
|
|
|
16
16
|
className,
|
|
17
17
|
}: NotificationEmptyStateProps) {
|
|
18
18
|
return (
|
|
19
|
-
<div
|
|
19
|
+
<div
|
|
20
|
+
className={classNames(
|
|
21
|
+
'notification-line',
|
|
22
|
+
'notification-empty-state',
|
|
23
|
+
className,
|
|
24
|
+
)}
|
|
25
|
+
>
|
|
20
26
|
<div className="notification-line-head">
|
|
21
27
|
<span className="notification-line-title">
|
|
22
28
|
<Icon variant="success" name="Check" />
|