react-bootstrap-table-ng-example 4.19.0 → 4.19.2
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/.storybook/main.ts +24 -5
- package/.storybook/preview.ts +1 -1
- package/README.md +1 -1
- package/package.json +14 -14
- package/src/components/common/code-block.tsx +2 -4
- package/src/stories/BasicTable.stories.tsx +1 -1
- package/src/stories/Bootstrap4.stories.tsx +1 -1
- package/src/stories/CellEditing.stories.tsx +11 -11
- package/src/stories/ColumnFilter.stories.tsx +19 -23
- package/src/stories/ColumnToggle.stories.tsx +1 -1
- package/src/stories/Data.stories.tsx +1 -1
- package/src/stories/ExportCSV.stories.tsx +1 -1
- package/src/stories/Footer.stories.tsx +1 -1
- package/src/stories/Pagination.stories.tsx +1 -1
- package/src/stories/Remote.stories.tsx +9 -1
- package/src/stories/Remote.tsx +519 -48
- package/src/stories/RowExpand.stories.tsx +1 -1
- package/src/stories/RowSelection.stories.tsx +1 -1
- package/src/stories/SortTable.stories.tsx +1 -1
- package/src/stories/TableOverlay.stories.tsx +1 -1
- package/src/stories/TableOverlay.tsx +28 -26
- package/src/stories/TableSearch.stories.tsx +1 -1
- package/src/stories/Welcome.stories.ts +1 -1
- package/src/stories/WorkOnColumns.stories.tsx +1 -1
- package/src/stories/WorkOnHeaderColumns.stories.tsx +1 -1
- package/src/stories/WorkOnRows.stories.tsx +1 -1
- package/src/stories/bootstrap-style.tsx +2 -5
- package/tsconfig.json +1 -1
- package/sb_output.txt +0 -382
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* eslint-disable import/no-anonymous-default-export */
|
|
2
|
-
|
|
2
|
+
|
|
3
3
|
import React from "react";
|
|
4
4
|
|
|
5
5
|
import BootstrapTable from "../../../react-bootstrap-table-ng";
|
|
@@ -93,13 +93,21 @@ class EmptyTableOverlay extends React.Component {
|
|
|
93
93
|
}
|
|
94
94
|
`;
|
|
95
95
|
|
|
96
|
+
interface TableProps {
|
|
97
|
+
data: any[];
|
|
98
|
+
page: number;
|
|
99
|
+
totalSize: number;
|
|
100
|
+
sizePerPage: number;
|
|
101
|
+
onTableChange: (type: any, context: any) => void;
|
|
102
|
+
}
|
|
103
|
+
|
|
96
104
|
const Table = ({
|
|
97
105
|
data,
|
|
98
106
|
page,
|
|
99
107
|
sizePerPage,
|
|
100
108
|
onTableChange,
|
|
101
109
|
totalSize,
|
|
102
|
-
}:
|
|
110
|
+
}: TableProps) => (
|
|
103
111
|
<div>
|
|
104
112
|
<BootstrapTable
|
|
105
113
|
remote
|
|
@@ -127,13 +135,6 @@ const Table = ({
|
|
|
127
135
|
</div>
|
|
128
136
|
);
|
|
129
137
|
|
|
130
|
-
Table.propTypes = {
|
|
131
|
-
data: PropTypes.array.isRequired,
|
|
132
|
-
page: PropTypes.number.isRequired,
|
|
133
|
-
totalSize: PropTypes.number.isRequired,
|
|
134
|
-
sizePerPage: PropTypes.number.isRequired,
|
|
135
|
-
onTableChange: PropTypes.func.isRequired,
|
|
136
|
-
};
|
|
137
138
|
|
|
138
139
|
interface EmptyTableOverlayState {
|
|
139
140
|
data: any;
|
|
@@ -201,14 +202,14 @@ const RemotePagination = ({ loading, data, page, sizePerPage, onTableChange, tot
|
|
|
201
202
|
</div>
|
|
202
203
|
);
|
|
203
204
|
|
|
204
|
-
|
|
205
|
-
data:
|
|
206
|
-
page:
|
|
207
|
-
loading:
|
|
208
|
-
totalSize:
|
|
209
|
-
sizePerPage:
|
|
210
|
-
onTableChange:
|
|
211
|
-
}
|
|
205
|
+
interface RemotePaginationProps {
|
|
206
|
+
data: any[];
|
|
207
|
+
page: number;
|
|
208
|
+
loading: boolean;
|
|
209
|
+
totalSize: number;
|
|
210
|
+
sizePerPage: number;
|
|
211
|
+
onTableChange: (type: any, context: any) => void;
|
|
212
|
+
}
|
|
212
213
|
|
|
213
214
|
class Container extends React.Component {
|
|
214
215
|
constructor(props) {
|
|
@@ -250,6 +251,15 @@ class Container extends React.Component {
|
|
|
250
251
|
}
|
|
251
252
|
`;
|
|
252
253
|
|
|
254
|
+
interface RemotePaginationProps {
|
|
255
|
+
data: any[];
|
|
256
|
+
page: number;
|
|
257
|
+
loading: boolean;
|
|
258
|
+
totalSize: number;
|
|
259
|
+
sizePerPage: number;
|
|
260
|
+
onTableChange: (type: any, context: any) => void;
|
|
261
|
+
}
|
|
262
|
+
|
|
253
263
|
const RemotePagination = ({
|
|
254
264
|
loading,
|
|
255
265
|
data,
|
|
@@ -257,7 +267,7 @@ const RemotePagination = ({
|
|
|
257
267
|
sizePerPage,
|
|
258
268
|
onTableChange,
|
|
259
269
|
totalSize,
|
|
260
|
-
}:
|
|
270
|
+
}: RemotePaginationProps) => (
|
|
261
271
|
<div>
|
|
262
272
|
<BootstrapTable
|
|
263
273
|
remote
|
|
@@ -294,14 +304,6 @@ const RemotePagination = ({
|
|
|
294
304
|
</div>
|
|
295
305
|
);
|
|
296
306
|
|
|
297
|
-
RemotePagination.propTypes = {
|
|
298
|
-
data: PropTypes.array.isRequired,
|
|
299
|
-
page: PropTypes.number.isRequired,
|
|
300
|
-
loading: PropTypes.bool.isRequired,
|
|
301
|
-
totalSize: PropTypes.number.isRequired,
|
|
302
|
-
sizePerPage: PropTypes.number.isRequired,
|
|
303
|
-
onTableChange: PropTypes.func.isRequired,
|
|
304
|
-
};
|
|
305
307
|
|
|
306
308
|
interface TableOverlayState {
|
|
307
309
|
data: any;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* eslint no-return-assign: 0 */
|
|
2
|
-
|
|
2
|
+
|
|
3
3
|
import React, { Fragment, PureComponent } from "react";
|
|
4
4
|
|
|
5
5
|
interface WithBootstrapStyleProps {
|
|
@@ -17,10 +17,7 @@ export const BOOTSTRAP_VERSION = {
|
|
|
17
17
|
};
|
|
18
18
|
|
|
19
19
|
class WithBootstrapStyle extends PureComponent<WithBootstrapStyleProps, WithBootstrapStyleState> {
|
|
20
|
-
|
|
21
|
-
version: PropTypes.string.isRequired,
|
|
22
|
-
render: PropTypes.func.isRequired,
|
|
23
|
-
};
|
|
20
|
+
|
|
24
21
|
|
|
25
22
|
style: HTMLLinkElement | null = null;
|
|
26
23
|
|
package/tsconfig.json
CHANGED
package/sb_output.txt
DELETED
|
@@ -1,382 +0,0 @@
|
|
|
1
|
-
yarn run v1.22.22
|
|
2
|
-
(node:5114) [DEP0169] DeprecationWarning: `url.parse()` behavior is not standardized and prone to errors that have security implications. Use the WHATWG URL API instead. CVEs are not issued for `url.parse()` vulnerabilities.
|
|
3
|
-
(Use `node --trace-deprecation ...` to show where the warning was created)
|
|
4
|
-
$ storybook dev -p 6006
|
|
5
|
-
@storybook/core v8.6.15
|
|
6
|
-
|
|
7
|
-
(node:5116) [DEP0190] DeprecationWarning: Passing args to a child process with shell option true can lead to security vulnerabilities, as the arguments are not escaped, only concatenated.
|
|
8
|
-
(Use `node --trace-deprecation ...` to show where the warning was created)
|
|
9
|
-
info Found existing addon "@storybook/addon-docs", skipping.
|
|
10
|
-
info Found existing addon "@storybook/addon-docs", skipping.
|
|
11
|
-
info => Serving static files from ././public at /
|
|
12
|
-
info => Starting manager..
|
|
13
|
-
info => Starting preview..
|
|
14
|
-
info => Loading Webpack configuration from `node_modules/react-scripts`
|
|
15
|
-
info => Removing existing JavaScript and TypeScript rules.
|
|
16
|
-
info => Modifying Create React App rules.
|
|
17
|
-
info Addon-docs: using MDX3
|
|
18
|
-
info => Using default Webpack5 setup
|
|
19
|
-
<i> [webpack-dev-middleware] wait until bundle finished
|
|
20
|
-
<s> [webpack.Progress] 3% setup watch run
|
|
21
|
-
<s> [webpack.Progress] 3% setup watch run VirtualModulesPlugin
|
|
22
|
-
<s> [webpack.Progress] 3% setup watch run ForkTsCheckerWebpackPlugin
|
|
23
|
-
<s> [webpack.Progress] 3% setup watch run ESLintWebpackPlugin_1
|
|
24
|
-
<s> [webpack.Progress] 3% setup watch run webpack-dev-middleware
|
|
25
|
-
<s> [webpack.Progress] 3% setup watch run
|
|
26
|
-
<s> [webpack.Progress] 4% setup normal module factory
|
|
27
|
-
<s> [webpack.Progress] 4% setup normal module factory CaseSensitivePathsPlugin
|
|
28
|
-
<s> [webpack.Progress] 4% setup normal module factory ModuleNotFoundPlugin
|
|
29
|
-
<s> [webpack.Progress] 4% setup normal module factory IgnorePlugin
|
|
30
|
-
<s> [webpack.Progress] 4% setup normal module factory
|
|
31
|
-
<s> [webpack.Progress] 5% setup context module factory
|
|
32
|
-
<s> [webpack.Progress] 5% setup context module factory IgnorePlugin
|
|
33
|
-
<s> [webpack.Progress] 5% setup context module factory
|
|
34
|
-
<s> [webpack.Progress] 6% setup before compile
|
|
35
|
-
<s> [webpack.Progress] 6% setup before compile ProgressPlugin
|
|
36
|
-
<s> [webpack.Progress] 6% setup before compile ProgressPlugin
|
|
37
|
-
<s> [webpack.Progress] 6% setup before compile
|
|
38
|
-
<s> [webpack.Progress] 7% setup compile
|
|
39
|
-
<s> [webpack.Progress] 7% setup compile ExternalsPlugin
|
|
40
|
-
<s> [webpack.Progress] 7% setup compile ExternalsPlugin
|
|
41
|
-
<s> [webpack.Progress] 7% setup compile
|
|
42
|
-
<s> [webpack.Progress] 8% setup compilation
|
|
43
|
-
<s> [webpack.Progress] 8% setup compilation HtmlWebpackPlugin
|
|
44
|
-
<s> [webpack.Progress] 8% setup compilation unplugin-csf
|
|
45
|
-
<s> [webpack.Progress] 8% setup compilation ArrayPushCallbackChunkFormatPlugin
|
|
46
|
-
<s> [webpack.Progress] 8% setup compilation JsonpChunkLoadingPlugin
|
|
47
|
-
<s> [webpack.Progress] 8% setup compilation StartupChunkDependenciesPlugin
|
|
48
|
-
<s> [webpack.Progress] 8% setup compilation ImportScriptsChunkLoadingPlugin
|
|
49
|
-
<s> [webpack.Progress] 8% setup compilation WorkerPlugin
|
|
50
|
-
<s> [webpack.Progress] 8% setup compilation SplitChunksPlugin
|
|
51
|
-
<s> [webpack.Progress] 8% setup compilation RuntimeChunkPlugin
|
|
52
|
-
<s> [webpack.Progress] 8% setup compilation ResolverCachePlugin
|
|
53
|
-
<s> [webpack.Progress] 8% setup compilation
|
|
54
|
-
<s> [webpack.Progress] 9% setup compilation
|
|
55
|
-
<s> [webpack.Progress] 9% setup compilation DefinePlugin
|
|
56
|
-
<s> [webpack.Progress] 9% setup compilation ProvidePlugin
|
|
57
|
-
<s> [webpack.Progress] 9% setup compilation HotModuleReplacementPlugin
|
|
58
|
-
<s> [webpack.Progress] 9% setup compilation ProgressPlugin
|
|
59
|
-
<s> [webpack.Progress] 9% setup compilation InterpolateHtmlPlugin
|
|
60
|
-
<s> [webpack.Progress] 9% setup compilation EntryPlugin
|
|
61
|
-
<s> [webpack.Progress] 9% setup compilation DefinePlugin
|
|
62
|
-
<s> [webpack.Progress] 9% setup compilation ProvidePlugin
|
|
63
|
-
<s> [webpack.Progress] 9% setup compilation ReactRefreshPlugin
|
|
64
|
-
<s> [webpack.Progress] 9% setup compilation ForkTsCheckerWebpackPlugin
|
|
65
|
-
<s> [webpack.Progress] 9% setup compilation ExternalsPlugin
|
|
66
|
-
<s> [webpack.Progress] 9% setup compilation ExternalsPlugin
|
|
67
|
-
<s> [webpack.Progress] 9% setup compilation ChunkPrefetchPreloadPlugin
|
|
68
|
-
<s> [webpack.Progress] 9% setup compilation ModuleInfoHeaderPlugin
|
|
69
|
-
<s> [webpack.Progress] 9% setup compilation SourceMapDevToolPlugin
|
|
70
|
-
<s> [webpack.Progress] 9% setup compilation JavascriptModulesPlugin
|
|
71
|
-
<s> [webpack.Progress] 9% setup compilation JsonModulesPlugin
|
|
72
|
-
<s> [webpack.Progress] 9% setup compilation AssetModulesPlugin
|
|
73
|
-
<s> [webpack.Progress] 9% setup compilation EntryPlugin
|
|
74
|
-
<s> [webpack.Progress] 9% setup compilation EntryPlugin
|
|
75
|
-
<s> [webpack.Progress] 9% setup compilation RuntimePlugin
|
|
76
|
-
<s> [webpack.Progress] 9% setup compilation InferAsyncModulesPlugin
|
|
77
|
-
<s> [webpack.Progress] 9% setup compilation DataUriPlugin
|
|
78
|
-
<s> [webpack.Progress] 9% setup compilation FileUriPlugin
|
|
79
|
-
<s> [webpack.Progress] 9% setup compilation CompatibilityPlugin
|
|
80
|
-
<s> [webpack.Progress] 9% setup compilation HarmonyModulesPlugin
|
|
81
|
-
<s> [webpack.Progress] 9% setup compilation AMDPlugin
|
|
82
|
-
<s> [webpack.Progress] 9% setup compilation RequireJsStuffPlugin
|
|
83
|
-
<s> [webpack.Progress] 9% setup compilation CommonJsPlugin
|
|
84
|
-
<s> [webpack.Progress] 9% setup compilation LoaderPlugin
|
|
85
|
-
<s> [webpack.Progress] 9% setup compilation LoaderPlugin
|
|
86
|
-
<s> [webpack.Progress] 9% setup compilation NodeStuffPlugin
|
|
87
|
-
<s> [webpack.Progress] 9% setup compilation APIPlugin
|
|
88
|
-
<s> [webpack.Progress] 9% setup compilation ExportsInfoApiPlugin
|
|
89
|
-
<s> [webpack.Progress] 9% setup compilation WebpackIsIncludedPlugin
|
|
90
|
-
<s> [webpack.Progress] 9% setup compilation ConstPlugin
|
|
91
|
-
<s> [webpack.Progress] 9% setup compilation UseStrictPlugin
|
|
92
|
-
<s> [webpack.Progress] 9% setup compilation RequireIncludePlugin
|
|
93
|
-
<s> [webpack.Progress] 9% setup compilation RequireEnsurePlugin
|
|
94
|
-
<s> [webpack.Progress] 9% setup compilation RequireContextPlugin
|
|
95
|
-
<s> [webpack.Progress] 9% setup compilation ImportPlugin
|
|
96
|
-
<s> [webpack.Progress] 9% setup compilation ImportMetaContextPlugin
|
|
97
|
-
<s> [webpack.Progress] 9% setup compilation SystemPlugin
|
|
98
|
-
<s> [webpack.Progress] 9% setup compilation ImportMetaPlugin
|
|
99
|
-
<s> [webpack.Progress] 9% setup compilation URLPlugin
|
|
100
|
-
<s> [webpack.Progress] 9% setup compilation DefaultStatsFactoryPlugin
|
|
101
|
-
<s> [webpack.Progress] 9% setup compilation DefaultStatsPresetPlugin
|
|
102
|
-
<s> [webpack.Progress] 9% setup compilation DefaultStatsPrinterPlugin
|
|
103
|
-
<s> [webpack.Progress] 9% setup compilation JavascriptMetaInfoPlugin
|
|
104
|
-
<s> [webpack.Progress] 9% setup compilation EnsureChunkConditionsPlugin
|
|
105
|
-
<s> [webpack.Progress] 9% setup compilation RemoveEmptyChunksPlugin
|
|
106
|
-
<s> [webpack.Progress] 9% setup compilation MergeDuplicateChunksPlugin
|
|
107
|
-
<s> [webpack.Progress] 9% setup compilation SideEffectsFlagPlugin
|
|
108
|
-
<s> [webpack.Progress] 9% setup compilation FlagDependencyExportsPlugin
|
|
109
|
-
<s> [webpack.Progress] 9% setup compilation NamedModuleIdsPlugin
|
|
110
|
-
<s> [webpack.Progress] 9% setup compilation NamedChunkIdsPlugin
|
|
111
|
-
<s> [webpack.Progress] 9% setup compilation DefinePlugin
|
|
112
|
-
<s> [webpack.Progress] 9% setup compilation TemplatedPathPlugin
|
|
113
|
-
<s> [webpack.Progress] 9% setup compilation RecordIdsPlugin
|
|
114
|
-
<s> [webpack.Progress] 9% setup compilation WarnCaseSensitiveModulesPlugin
|
|
115
|
-
<s> [webpack.Progress] 9% setup compilation IgnoreWarningsPlugin
|
|
116
|
-
<s> [webpack.Progress] 9% setup compilation ProgressPlugin
|
|
117
|
-
<s> [webpack.Progress] 9% setup compilation ESLintWebpackPlugin_1
|
|
118
|
-
<s> [webpack.Progress] 9% setup compilation
|
|
119
|
-
<s> [webpack.Progress] 10% building
|
|
120
|
-
<s> [webpack.Progress] 10% building 0/1 entries 0/0 dependencies 0/0 modules
|
|
121
|
-
<s> [webpack.Progress] 10% building import loader ./node_modules/@pmmmwh/react-refresh-webpack-plugin/loader/index.js
|
|
122
|
-
<s> [webpack.Progress] 10% building import loader ./node_modules/@storybook/preset-react-webpack/dist/loaders/react-docgen-loader.js
|
|
123
|
-
<s> [webpack.Progress] 10% building 0/3 entries 3/7 dependencies 0/2 modules
|
|
124
|
-
info Using tsconfig paths for react-docgen
|
|
125
|
-
<s> [webpack.Progress] 10% building import loader ./node_modules/babel-loader/lib/index.js
|
|
126
|
-
<s> [webpack.Progress] 10% building import loader ./node_modules/source-map-loader/dist/cjs.js
|
|
127
|
-
<s> [webpack.Progress] 10% building 0/3 entries 45/70 dependencies 7/27 modules
|
|
128
|
-
<s> [webpack.Progress] 10% building import loader ./node_modules/@storybook/addon-docs/dist/mdx-loader.js
|
|
129
|
-
<s> [webpack.Progress] 10% building 0/3 entries 154/213 dependencies 32/73 modules
|
|
130
|
-
<s> [webpack.Progress] 28% building 1/3 entries 155/214 dependencies 35/73 modules
|
|
131
|
-
<s> [webpack.Progress] 28% building import loader ./node_modules/@storybook/csf-plugin/dist/webpack-loader.js
|
|
132
|
-
<s> [webpack.Progress] 28% building import loader ./node_modules/@storybook/builder-webpack5/dist/loaders/export-order-loader.js
|
|
133
|
-
<s> [webpack.Progress] 28% building 1/3 entries 205/233 dependencies 35/99 modules
|
|
134
|
-
<s> [webpack.Progress] 28% building import loader ./node_modules/@svgr/webpack/lib/index.js
|
|
135
|
-
<s> [webpack.Progress] 28% building import loader ./node_modules/file-loader/dist/cjs.js
|
|
136
|
-
<s> [webpack.Progress] 28% building 1/3 entries 269/303 dependencies 57/131 modules
|
|
137
|
-
<s> [webpack.Progress] 28% building 1/3 entries 473/600 dependencies 83/181 modules
|
|
138
|
-
<s> [webpack.Progress] 28% building import loader ./node_modules/style-loader/dist/cjs.js
|
|
139
|
-
<s> [webpack.Progress] 28% building import loader ./node_modules/css-loader/dist/cjs.js
|
|
140
|
-
<s> [webpack.Progress] 28% building import loader ./node_modules/postcss-loader/dist/cjs.js
|
|
141
|
-
<s> [webpack.Progress] 28% building 1/3 entries 794/845 dependencies 85/210 modules
|
|
142
|
-
<s> [webpack.Progress] 28% building import loader ./node_modules/resolve-url-loader/index.js
|
|
143
|
-
<s> [webpack.Progress] 28% building import loader ./node_modules/sass-loader/dist/cjs.js
|
|
144
|
-
<s> [webpack.Progress] 28% building 1/3 entries 794/845 dependencies 85/210 modules
|
|
145
|
-
<s> [webpack.Progress] 46% building 2/3 entries 1263/1301 dependencies 226/307 modules
|
|
146
|
-
<s> [webpack.Progress] 46% building 2/3 entries 2000/2053 dependencies 331/410 modules
|
|
147
|
-
<s> [webpack.Progress] 65% building 3/3 entries 2592/2592 dependencies 607/607 modules
|
|
148
|
-
<s> [webpack.Progress] 65% building
|
|
149
|
-
<s> [webpack.Progress] 69% building finish
|
|
150
|
-
<s> [webpack.Progress] 69% building finish ReactRefreshPlugin
|
|
151
|
-
<s> [webpack.Progress] 65% building 4/4 entries 2926/2926 dependencies 686/686 modules
|
|
152
|
-
<s> [webpack.Progress] 69% building finish
|
|
153
|
-
<s> [webpack.Progress] 70% sealing finish module graph
|
|
154
|
-
<s> [webpack.Progress] 70% sealing finish module graph ResolverCachePlugin
|
|
155
|
-
<s> [webpack.Progress] 70% sealing finish module graph InferAsyncModulesPlugin
|
|
156
|
-
<s> [webpack.Progress] 70% sealing finish module graph FlagDependencyExportsPlugin
|
|
157
|
-
<s> [webpack.Progress] 70% sealing finish module graph ESLintWebpackPlugin_1
|
|
158
|
-
<s> [webpack.Progress] 70% sealing finish module graph
|
|
159
|
-
<s> [webpack.Progress] 70% sealing plugins
|
|
160
|
-
<s> [webpack.Progress] 70% sealing plugins WarnCaseSensitiveModulesPlugin
|
|
161
|
-
<s> [webpack.Progress] 70% sealing plugins
|
|
162
|
-
<s> [webpack.Progress] 71% sealing dependencies optimization
|
|
163
|
-
<s> [webpack.Progress] 71% sealing dependencies optimization SideEffectsFlagPlugin
|
|
164
|
-
<s> [webpack.Progress] 71% sealing dependencies optimization
|
|
165
|
-
<s> [webpack.Progress] 71% sealing after dependencies optimization
|
|
166
|
-
<s> [webpack.Progress] 71% sealing after dependencies optimization
|
|
167
|
-
<s> [webpack.Progress] 72% sealing chunk graph
|
|
168
|
-
<s> [webpack.Progress] 72% sealing chunk graph
|
|
169
|
-
<s> [webpack.Progress] 73% sealing after chunk graph
|
|
170
|
-
<s> [webpack.Progress] 73% sealing after chunk graph
|
|
171
|
-
<s> [webpack.Progress] 73% sealing optimizing
|
|
172
|
-
<s> [webpack.Progress] 73% sealing optimizing
|
|
173
|
-
<s> [webpack.Progress] 74% sealing module optimization
|
|
174
|
-
<s> [webpack.Progress] 74% sealing module optimization
|
|
175
|
-
<s> [webpack.Progress] 75% sealing after module optimization
|
|
176
|
-
<s> [webpack.Progress] 75% sealing after module optimization
|
|
177
|
-
<s> [webpack.Progress] 75% sealing chunk optimization
|
|
178
|
-
<s> [webpack.Progress] 75% sealing chunk optimization EnsureChunkConditionsPlugin
|
|
179
|
-
<s> [webpack.Progress] 75% sealing chunk optimization RemoveEmptyChunksPlugin
|
|
180
|
-
<s> [webpack.Progress] 75% sealing chunk optimization MergeDuplicateChunksPlugin
|
|
181
|
-
<s> [webpack.Progress] 75% sealing chunk optimization SplitChunksPlugin
|
|
182
|
-
<s> [webpack.Progress] 75% sealing chunk optimization RemoveEmptyChunksPlugin
|
|
183
|
-
<s> [webpack.Progress] 75% sealing chunk optimization
|
|
184
|
-
<s> [webpack.Progress] 76% sealing after chunk optimization
|
|
185
|
-
<s> [webpack.Progress] 76% sealing after chunk optimization
|
|
186
|
-
<s> [webpack.Progress] 77% sealing module and chunk tree optimization
|
|
187
|
-
<s> [webpack.Progress] 77% sealing module and chunk tree optimization PersistentChildCompilerSingletonPlugin
|
|
188
|
-
<s> [webpack.Progress] 77% sealing module and chunk tree optimization
|
|
189
|
-
<s> [webpack.Progress] 77% sealing after module and chunk tree optimization
|
|
190
|
-
<s> [webpack.Progress] 77% sealing after module and chunk tree optimization
|
|
191
|
-
<s> [webpack.Progress] 78% sealing chunk modules optimization
|
|
192
|
-
<s> [webpack.Progress] 78% sealing chunk modules optimization
|
|
193
|
-
<s> [webpack.Progress] 78% sealing after chunk modules optimization
|
|
194
|
-
<s> [webpack.Progress] 78% sealing after chunk modules optimization
|
|
195
|
-
<s> [webpack.Progress] 79% sealing module reviving
|
|
196
|
-
<s> [webpack.Progress] 79% sealing module reviving RecordIdsPlugin
|
|
197
|
-
<s> [webpack.Progress] 79% sealing module reviving
|
|
198
|
-
<s> [webpack.Progress] 80% sealing before module ids
|
|
199
|
-
<s> [webpack.Progress] 80% sealing before module ids
|
|
200
|
-
<s> [webpack.Progress] 80% sealing module ids
|
|
201
|
-
<s> [webpack.Progress] 80% sealing module ids NamedModuleIdsPlugin
|
|
202
|
-
<s> [webpack.Progress] 80% sealing module ids
|
|
203
|
-
<s> [webpack.Progress] 81% sealing module id optimization
|
|
204
|
-
<s> [webpack.Progress] 81% sealing module id optimization
|
|
205
|
-
<s> [webpack.Progress] 82% sealing module id optimization
|
|
206
|
-
<s> [webpack.Progress] 82% sealing module id optimization
|
|
207
|
-
<s> [webpack.Progress] 82% sealing chunk reviving
|
|
208
|
-
<s> [webpack.Progress] 82% sealing chunk reviving RecordIdsPlugin
|
|
209
|
-
<s> [webpack.Progress] 82% sealing chunk reviving
|
|
210
|
-
<s> [webpack.Progress] 83% sealing before chunk ids
|
|
211
|
-
<s> [webpack.Progress] 83% sealing before chunk ids
|
|
212
|
-
<s> [webpack.Progress] 84% sealing chunk ids
|
|
213
|
-
<s> [webpack.Progress] 84% sealing chunk ids NamedChunkIdsPlugin
|
|
214
|
-
<s> [webpack.Progress] 84% sealing chunk ids
|
|
215
|
-
<s> [webpack.Progress] 84% sealing chunk id optimization
|
|
216
|
-
<s> [webpack.Progress] 84% sealing chunk id optimization
|
|
217
|
-
<s> [webpack.Progress] 85% sealing after chunk id optimization
|
|
218
|
-
<s> [webpack.Progress] 85% sealing after chunk id optimization
|
|
219
|
-
<s> [webpack.Progress] 86% sealing record modules
|
|
220
|
-
<s> [webpack.Progress] 86% sealing record modules RecordIdsPlugin
|
|
221
|
-
<s> [webpack.Progress] 86% sealing record modules
|
|
222
|
-
<s> [webpack.Progress] 86% sealing record chunks
|
|
223
|
-
<s> [webpack.Progress] 86% sealing record chunks RecordIdsPlugin
|
|
224
|
-
<s> [webpack.Progress] 86% sealing record chunks
|
|
225
|
-
<s> [webpack.Progress] 87% sealing module hashing
|
|
226
|
-
<s> [webpack.Progress] 87% sealing module hashing
|
|
227
|
-
<s> [webpack.Progress] 87% sealing code generation
|
|
228
|
-
<s> [webpack.Progress] 87% sealing code generation
|
|
229
|
-
<s> [webpack.Progress] 88% sealing runtime requirements
|
|
230
|
-
<s> [webpack.Progress] 88% sealing runtime requirements
|
|
231
|
-
<s> [webpack.Progress] 89% sealing hashing
|
|
232
|
-
<s> [webpack.Progress] 89% sealing hashing
|
|
233
|
-
<s> [webpack.Progress] 89% sealing after hashing
|
|
234
|
-
<s> [webpack.Progress] 89% sealing after hashing
|
|
235
|
-
<s> [webpack.Progress] 90% sealing record hash
|
|
236
|
-
<s> [webpack.Progress] 90% sealing record hash
|
|
237
|
-
<s> [webpack.Progress] 91% sealing module assets processing
|
|
238
|
-
<s> [webpack.Progress] 91% sealing module assets processing
|
|
239
|
-
<s> [webpack.Progress] 91% sealing chunk assets processing
|
|
240
|
-
<s> [webpack.Progress] 91% sealing chunk assets processing
|
|
241
|
-
<s> [webpack.Progress] 92% sealing asset processing
|
|
242
|
-
<s> [webpack.Progress] 92% sealing asset processing HotModuleReplacementPlugin
|
|
243
|
-
<s> [webpack.Progress] 92% sealing asset processing ESLintWebpackPlugin_1
|
|
244
|
-
<s> [webpack.Progress] 92% sealing asset processing PersistentChildCompilerSingletonPlugin
|
|
245
|
-
<s> [webpack.Progress] 92% sealing asset processing SourceMapDevToolPlugin
|
|
246
|
-
<s> [webpack.Progress] 92% sealing asset processing HtmlWebpackPlugin
|
|
247
|
-
<s> [webpack.Progress] 92% sealing asset processing
|
|
248
|
-
<s> [webpack.Progress] 93% sealing after asset optimization
|
|
249
|
-
<s> [webpack.Progress] 93% sealing after asset optimization
|
|
250
|
-
<s> [webpack.Progress] 93% sealing recording
|
|
251
|
-
<s> [webpack.Progress] 93% sealing recording HotModuleReplacementPlugin
|
|
252
|
-
<s> [webpack.Progress] 93% sealing recording
|
|
253
|
-
<s> [webpack.Progress] 94% sealing after seal
|
|
254
|
-
<s> [webpack.Progress] 94% sealing after seal
|
|
255
|
-
<s> [webpack.Progress] 95% emitting emit
|
|
256
|
-
<s> [webpack.Progress] 95% emitting emit DevMiddleware
|
|
257
|
-
<s> [webpack.Progress] 95% emitting emit
|
|
258
|
-
<s> [webpack.Progress] 98% emitting after emit
|
|
259
|
-
<s> [webpack.Progress] 98% emitting after emit SizeLimitsPlugin
|
|
260
|
-
<s> [webpack.Progress] 98% emitting after emit
|
|
261
|
-
<s> [webpack.Progress] 99% done plugins
|
|
262
|
-
<s> [webpack.Progress] 99% done plugins CaseSensitivePathsPlugin
|
|
263
|
-
<s> [webpack.Progress] 99% done plugins ForkTsCheckerWebpackPlugin
|
|
264
|
-
<s> [webpack.Progress] 99% done plugins webpack-dev-middleware
|
|
265
|
-
<s> [webpack.Progress] 99% done plugins webpack-hot-middleware
|
|
266
|
-
<s> [webpack.Progress] 99% done plugins ForkTsCheckerWebpackPlugin
|
|
267
|
-
<s> [webpack.Progress] 99% done plugins
|
|
268
|
-
<s> [webpack.Progress] 99%
|
|
269
|
-
|
|
270
|
-
<s> [webpack.Progress] 99% cache store build dependencies
|
|
271
|
-
<s> [webpack.Progress] 99% cache store build dependencies
|
|
272
|
-
<s> [webpack.Progress] 99% cache begin idle
|
|
273
|
-
<s> [webpack.Progress] 99% cache begin idle
|
|
274
|
-
<s> [webpack.Progress] 100%
|
|
275
|
-
|
|
276
|
-
ERROR in ./src/stories/stylesheet/storybook.scss (./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[7].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[4].oneOf[7].use[3]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[7].use[4]!./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[10].use[2]!./src/stories/stylesheet/storybook.scss)
|
|
277
|
-
Module build failed (from ./node_modules/sass-loader/dist/cjs.js):
|
|
278
|
-
SassError: expected "{".
|
|
279
|
-
╷
|
|
280
|
-
2 │ import API from "!../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js";
|
|
281
|
-
│ ^
|
|
282
|
-
╵
|
|
283
|
-
src/stories/stylesheet/storybook.scss 2:101 root stylesheet
|
|
284
|
-
@ ./src/stories/stylesheet/storybook.scss 8:6-570 22:17-24 26:7-21 52:25-39 53:36-47 53:50-64 58:54-65 58:68-82 64:42-53 64:56-70 66:21-28 78:22-29 78:33-47 78:50-64 77:0-540 77:0-540 57:6-67:7 55:4-68:5
|
|
285
|
-
@ ./src/stories/WorkOnHeaderColumns.tsx 13:0-37
|
|
286
|
-
@ ./src/stories/WorkOnHeaderColumns.stories.tsx 7:0-51 14:13-27
|
|
287
|
-
@ ./src/ lazy ^\.\/.*$ include: (?%21.*node_modules)(?:\/src(?:\/(?%21\.)(?:(?:(?%21(?:^%7C\/)\.).)*?)\/%7C\/%7C$)(?%21\.)(?=.)[^/]*?\.stories\.(js%7Cjsx%7Cmjs%7Cts%7Ctsx))$ chunkName: [request] namespace object ./stories/WorkOnHeaderColumns.stories.tsx ./stories/WorkOnHeaderColumns.stories
|
|
288
|
-
@ ./storybook-stories.js 25:11-29:5
|
|
289
|
-
@ ./storybook-config-entry.js 9:0-50 30:31-39 37:2-40:4 39:31-39 37:58-40:3
|
|
290
|
-
|
|
291
|
-
ERROR in ../react-bootstrap-table-ng-filter/style/react-bootstrap-table-ng-filter.scss (./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[7].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[4].oneOf[7].use[3]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[7].use[4]!./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[10].use[2]!../react-bootstrap-table-ng-filter/style/react-bootstrap-table-ng-filter.scss)
|
|
292
|
-
Module build failed (from ./node_modules/sass-loader/dist/cjs.js):
|
|
293
|
-
SassError: expected "{".
|
|
294
|
-
╷
|
|
295
|
-
2 │ import API from "!../../react-bootstrap-table-ng-example/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js";
|
|
296
|
-
│ ^
|
|
297
|
-
╵
|
|
298
|
-
../react-bootstrap-table-ng-filter/style/react-bootstrap-table-ng-filter.scss 2:131 root stylesheet
|
|
299
|
-
@ ../react-bootstrap-table-ng-filter/style/react-bootstrap-table-ng-filter.scss 8:6-802 22:17-24 26:7-21 52:25-39 53:36-47 53:50-64 58:54-65 58:68-82 64:42-53 64:56-70 66:21-28 78:22-29 78:33-47 78:50-64 77:0-772 77:0-772 57:6-67:7 55:4-68:5
|
|
300
|
-
@ ./src/stories/WorkOnHeaderColumns.tsx 9:0-93
|
|
301
|
-
@ ./src/stories/WorkOnHeaderColumns.stories.tsx 7:0-51 14:13-27
|
|
302
|
-
@ ./src/ lazy ^\.\/.*$ include: (?%21.*node_modules)(?:\/src(?:\/(?%21\.)(?:(?:(?%21(?:^%7C\/)\.).)*?)\/%7C\/%7C$)(?%21\.)(?=.)[^/]*?\.stories\.(js%7Cjsx%7Cmjs%7Cts%7Ctsx))$ chunkName: [request] namespace object ./stories/WorkOnHeaderColumns.stories.tsx ./stories/WorkOnHeaderColumns.stories
|
|
303
|
-
@ ./storybook-stories.js 25:11-29:5
|
|
304
|
-
@ ./storybook-config-entry.js 9:0-50 30:31-39 37:2-40:4 39:31-39 37:58-40:3
|
|
305
|
-
|
|
306
|
-
ERROR in ../react-bootstrap-table-ng-paginator/style/react-bootstrap-table-ng-paginator.scss (./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[7].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[4].oneOf[7].use[3]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[7].use[4]!./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[10].use[2]!../react-bootstrap-table-ng-paginator/style/react-bootstrap-table-ng-paginator.scss)
|
|
307
|
-
Module build failed (from ./node_modules/sass-loader/dist/cjs.js):
|
|
308
|
-
SassError: expected "{".
|
|
309
|
-
╷
|
|
310
|
-
2 │ import API from "!../../react-bootstrap-table-ng-example/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js";
|
|
311
|
-
│ ^
|
|
312
|
-
╵
|
|
313
|
-
../react-bootstrap-table-ng-paginator/style/react-bootstrap-table-ng-paginator.scss 2:131 root stylesheet
|
|
314
|
-
@ ../react-bootstrap-table-ng-paginator/style/react-bootstrap-table-ng-paginator.scss 8:6-805 22:17-24 26:7-21 52:25-39 53:36-47 53:50-64 58:54-65 58:68-82 64:42-53 64:56-70 66:21-28 78:22-29 78:33-47 78:50-64 77:0-775 77:0-775 57:6-67:7 55:4-68:5
|
|
315
|
-
@ ./src/stories/WorkOnHeaderColumns.tsx 10:0-99
|
|
316
|
-
@ ./src/stories/WorkOnHeaderColumns.stories.tsx 7:0-51 14:13-27
|
|
317
|
-
@ ./src/ lazy ^\.\/.*$ include: (?%21.*node_modules)(?:\/src(?:\/(?%21\.)(?:(?:(?%21(?:^%7C\/)\.).)*?)\/%7C\/%7C$)(?%21\.)(?=.)[^/]*?\.stories\.(js%7Cjsx%7Cmjs%7Cts%7Ctsx))$ chunkName: [request] namespace object ./stories/WorkOnHeaderColumns.stories.tsx ./stories/WorkOnHeaderColumns.stories
|
|
318
|
-
@ ./storybook-stories.js 25:11-29:5
|
|
319
|
-
@ ./storybook-config-entry.js 9:0-50 30:31-39 37:2-40:4 39:31-39 37:58-40:3
|
|
320
|
-
|
|
321
|
-
ERROR in ../react-bootstrap-table-ng-toolkit/style/react-bootstrap-table-ng-toolkit.scss (./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[7].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[4].oneOf[7].use[3]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[7].use[4]!./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[10].use[2]!../react-bootstrap-table-ng-toolkit/style/react-bootstrap-table-ng-toolkit.scss)
|
|
322
|
-
Module build failed (from ./node_modules/sass-loader/dist/cjs.js):
|
|
323
|
-
SassError: expected "{".
|
|
324
|
-
╷
|
|
325
|
-
2 │ import API from "!../../react-bootstrap-table-ng-example/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js";
|
|
326
|
-
│ ^
|
|
327
|
-
╵
|
|
328
|
-
../react-bootstrap-table-ng-toolkit/style/react-bootstrap-table-ng-toolkit.scss 2:131 root stylesheet
|
|
329
|
-
@ ../react-bootstrap-table-ng-toolkit/style/react-bootstrap-table-ng-toolkit.scss 8:6-803 22:17-24 26:7-21 52:25-39 53:36-47 53:50-64 58:54-65 58:68-82 64:42-53 64:56-70 66:21-28 78:22-29 78:33-47 78:50-64 77:0-773 77:0-773 57:6-67:7 55:4-68:5
|
|
330
|
-
@ ./src/stories/WorkOnHeaderColumns.tsx 11:0-95
|
|
331
|
-
@ ./src/stories/WorkOnHeaderColumns.stories.tsx 7:0-51 14:13-27
|
|
332
|
-
@ ./src/ lazy ^\.\/.*$ include: (?%21.*node_modules)(?:\/src(?:\/(?%21\.)(?:(?:(?%21(?:^%7C\/)\.).)*?)\/%7C\/%7C$)(?%21\.)(?=.)[^/]*?\.stories\.(js%7Cjsx%7Cmjs%7Cts%7Ctsx))$ chunkName: [request] namespace object ./stories/WorkOnHeaderColumns.stories.tsx ./stories/WorkOnHeaderColumns.stories
|
|
333
|
-
@ ./storybook-stories.js 25:11-29:5
|
|
334
|
-
@ ./storybook-config-entry.js 9:0-50 30:31-39 37:2-40:4 39:31-39 37:58-40:3
|
|
335
|
-
|
|
336
|
-
ERROR in ../react-bootstrap-table-ng/style/react-bootstrap-table-ng.scss (./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[7].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[4].oneOf[7].use[3]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[7].use[4]!./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[10].use[2]!../react-bootstrap-table-ng/style/react-bootstrap-table-ng.scss)
|
|
337
|
-
Module build failed (from ./node_modules/sass-loader/dist/cjs.js):
|
|
338
|
-
SassError: expected "{".
|
|
339
|
-
╷
|
|
340
|
-
2 │ import API from "!../../react-bootstrap-table-ng-example/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js";
|
|
341
|
-
│ ^
|
|
342
|
-
╵
|
|
343
|
-
../react-bootstrap-table-ng/style/react-bootstrap-table-ng.scss 2:131 root stylesheet
|
|
344
|
-
@ ../react-bootstrap-table-ng/style/react-bootstrap-table-ng.scss 8:6-795 22:17-24 26:7-21 52:25-39 53:36-47 53:50-64 58:54-65 58:68-82 64:42-53 64:56-70 66:21-28 78:22-29 78:33-47 78:50-64 77:0-765 77:0-765 57:6-67:7 55:4-68:5
|
|
345
|
-
@ ./src/stories/WorkOnHeaderColumns.tsx 12:0-79
|
|
346
|
-
@ ./src/stories/WorkOnHeaderColumns.stories.tsx 7:0-51 14:13-27
|
|
347
|
-
@ ./src/ lazy ^\.\/.*$ include: (?%21.*node_modules)(?:\/src(?:\/(?%21\.)(?:(?:(?%21(?:^%7C\/)\.).)*?)\/%7C\/%7C$)(?%21\.)(?=.)[^/]*?\.stories\.(js%7Cjsx%7Cmjs%7Cts%7Ctsx))$ chunkName: [request] namespace object ./stories/WorkOnHeaderColumns.stories.tsx ./stories/WorkOnHeaderColumns.stories
|
|
348
|
-
@ ./storybook-stories.js 25:11-29:5
|
|
349
|
-
@ ./storybook-config-entry.js 9:0-50 30:31-39 37:2-40:4 39:31-39 37:58-40:3
|
|
350
|
-
|
|
351
|
-
preview compiled with 5 errors
|
|
352
|
-
[38;2;241;97;97m=> Failed to build the preview[39m
|
|
353
|
-
<s> [webpack.Progress] 99% end closing watch compilation
|
|
354
|
-
<s> [webpack.Progress] 99% end closing watch compilation ForkTsCheckerWebpackPlugin
|
|
355
|
-
<s> [webpack.Progress] 99% end closing watch compilation
|
|
356
|
-
WARN Force closed preview build
|
|
357
|
-
[38;2;241;97;97mSB_BUILDER-WEBPACK5_0003 (WebpackCompilationError): There were problems when compiling your code with Webpack.
|
|
358
|
-
Run Storybook with --debug-webpack for more information.[39m
|
|
359
|
-
at starter (./node_modules/@storybook/builder-webpack5/dist/index.js:1:24163)
|
|
360
|
-
at starter.next (<anonymous>)
|
|
361
|
-
at Module.start (./node_modules/@storybook/builder-webpack5/dist/index.js:1:26142)
|
|
362
|
-
at process.processTicksAndRejections (node:internal/process/task_queues:103:5)
|
|
363
|
-
at async storybookDevServer (./node_modules/@storybook/core/dist/core-server/index.cjs:36423:79)
|
|
364
|
-
at async buildOrThrow (./node_modules/@storybook/core/dist/core-server/index.cjs:35049:12)
|
|
365
|
-
at async buildDevStandalone (./node_modules/@storybook/core/dist/core-server/index.cjs:37628:78)
|
|
366
|
-
at async withTelemetry (./node_modules/@storybook/core/dist/core-server/index.cjs:35788:12)
|
|
367
|
-
at async dev (./node_modules/@storybook/core/dist/cli/bin/index.cjs:5874:3)
|
|
368
|
-
at async s.<anonymous> (./node_modules/@storybook/core/dist/cli/bin/index.cjs:6052:74)
|
|
369
|
-
|
|
370
|
-
WARN Broken build, fix the error above.
|
|
371
|
-
WARN You may need to refresh the browser.
|
|
372
|
-
|
|
373
|
-
info Found existing addon "@storybook/addon-docs", skipping.
|
|
374
|
-
ERROR in ../react-bootstrap-table-ng-toolkit/src/csv/exporter.ts:2:23
|
|
375
|
-
TS2307: Cannot find module 'file-saver' or its corresponding type declarations.
|
|
376
|
-
1 | /* eslint no-unneeded-ternary: 0 */
|
|
377
|
-
> 2 | import FileSaver from "file-saver";
|
|
378
|
-
| ^^^^^^^^^^^^
|
|
379
|
-
3 |
|
|
380
|
-
4 | export const getMetaInfo = (columns: any) =>
|
|
381
|
-
5 | columns
|
|
382
|
-
|