@easydata/crud 1.4.13 → 1.4.18
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/browser/easydata.css +2184 -2181
- package/dist/browser/easydata.css.map +1 -1
- package/dist/browser/easydata.js +10890 -11626
- package/dist/browser/easydata.js.map +1 -1
- package/dist/browser/easydata.min.css +3 -1
- package/dist/browser/easydata.min.js +1 -1
- package/dist/browser/easydata.min.js.map +1 -1
- package/dist/bundles/easydata.crud.js +8442 -8439
- package/dist/bundles/easydata.crud.js.map +1 -1
- package/dist/bundles/easydata.crud.min.js +1 -1
- package/dist/bundles/easydata.crud.min.js.map +1 -1
- package/dist/lib/filter/data_filter.d.ts +6 -6
- package/dist/lib/filter/data_filter.js +1 -0
- package/dist/lib/filter/text_data_filter.d.ts +16 -16
- package/dist/lib/filter/text_data_filter.js +122 -122
- package/dist/lib/form/entity_edit_form.d.ts +20 -20
- package/dist/lib/form/entity_edit_form.js +133 -133
- package/dist/lib/form/entity_edit_form.js.map +1 -1
- package/dist/lib/form/entity_form_builder.d.ts +27 -27
- package/dist/lib/form/entity_form_builder.js +440 -440
- package/dist/lib/form/entity_form_builder.js.map +1 -1
- package/dist/lib/i18n/text_resources.d.ts +1 -1
- package/dist/lib/i18n/text_resources.js +31 -31
- package/dist/lib/main/data_context.d.ts +45 -45
- package/dist/lib/main/data_context.js +167 -167
- package/dist/lib/main/data_context.js.map +1 -1
- package/dist/lib/main/easy_data_server_loader.d.ts +11 -11
- package/dist/lib/main/easy_data_server_loader.js +43 -43
- package/dist/lib/public_api.d.ts +16 -16
- package/dist/lib/public_api.js +16 -14
- package/dist/lib/public_api.js.map +1 -1
- package/dist/lib/utils/utils.d.ts +4 -4
- package/dist/lib/utils/utils.js +24 -24
- package/dist/lib/utils/utils.js.map +1 -1
- package/dist/lib/validators/datetime_validator.d.ts +6 -6
- package/dist/lib/validators/datetime_validator.js +45 -43
- package/dist/lib/validators/datetime_validator.js.map +1 -1
- package/dist/lib/validators/required_validator.d.ts +6 -6
- package/dist/lib/validators/required_validator.js +36 -34
- package/dist/lib/validators/required_validator.js.map +1 -1
- package/dist/lib/validators/type_validator.d.ts +6 -6
- package/dist/lib/validators/type_validator.js +46 -44
- package/dist/lib/validators/type_validator.js.map +1 -1
- package/dist/lib/validators/validator.d.ts +9 -9
- package/dist/lib/validators/validator.js +6 -6
- package/dist/lib/views/easy_data_view_dispatcher.d.ts +18 -18
- package/dist/lib/views/easy_data_view_dispatcher.js +113 -113
- package/dist/lib/views/entity_data_view.d.ts +23 -23
- package/dist/lib/views/entity_data_view.js +224 -224
- package/dist/lib/views/entity_data_view.js.map +1 -1
- package/dist/lib/views/options.d.ts +14 -14
- package/dist/lib/views/options.js +1 -0
- package/dist/lib/views/root_data_view.d.ts +9 -9
- package/dist/lib/views/root_data_view.js +48 -48
- package/dist/lib/views/root_data_view.js.map +1 -1
- package/dist/lib/widgets/progress_bar.d.ts +6 -6
- package/dist/lib/widgets/progress_bar.js +15 -15
- package/dist/lib/widgets/text_filter_widget.d.ts +24 -24
- package/dist/lib/widgets/text_filter_widget.js +213 -213
- package/package.json +28 -27
- package/webpack.config.js +12 -9
package/webpack.config.js
CHANGED
|
@@ -3,7 +3,7 @@ const TerserPlugin = require('terser-webpack-plugin');
|
|
|
3
3
|
const FileManagerPlugin = require('filemanager-webpack-plugin');
|
|
4
4
|
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
|
|
5
5
|
const OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin');
|
|
6
|
-
const TypedocWebpackPlugin = require('typedoc-webpack-plugin');
|
|
6
|
+
const TypedocWebpackPlugin = require('@olton/typedoc-webpack-plugin');
|
|
7
7
|
const webpack = require('webpack');
|
|
8
8
|
const autoprefixer = require('autoprefixer');
|
|
9
9
|
|
|
@@ -35,8 +35,8 @@ const confBundles = {
|
|
|
35
35
|
optimization: {
|
|
36
36
|
minimizer: [new TerserPlugin({
|
|
37
37
|
include: /\.min\.js$/,
|
|
38
|
-
sourceMap: true,
|
|
39
38
|
terserOptions: {
|
|
39
|
+
sourceMap: true,
|
|
40
40
|
compress: {
|
|
41
41
|
pure_funcs: ['console.log', 'console.info', 'console.debug']
|
|
42
42
|
}
|
|
@@ -45,10 +45,11 @@ const confBundles = {
|
|
|
45
45
|
},
|
|
46
46
|
plugins: [
|
|
47
47
|
new TypedocWebpackPlugin({
|
|
48
|
-
mode: 'file',
|
|
49
48
|
json: '../../../../docs/easydata-crud.json',
|
|
50
|
-
|
|
51
|
-
|
|
49
|
+
out: "docs",
|
|
50
|
+
entryPoints: ["./src/**/*.ts"],
|
|
51
|
+
tsconfig: "tsconfig.json",
|
|
52
|
+
compilerOptions: {}
|
|
52
53
|
}),
|
|
53
54
|
new FileManagerPlugin({
|
|
54
55
|
events: {
|
|
@@ -96,9 +97,11 @@ const confBrowser = {
|
|
|
96
97
|
{
|
|
97
98
|
loader: 'postcss-loader',
|
|
98
99
|
options: {
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
100
|
+
postcssOptions: {
|
|
101
|
+
plugins: [
|
|
102
|
+
autoprefixer()
|
|
103
|
+
],
|
|
104
|
+
},
|
|
102
105
|
sourceMap: true
|
|
103
106
|
}
|
|
104
107
|
}
|
|
@@ -109,9 +112,9 @@ const confBrowser = {
|
|
|
109
112
|
optimization: {
|
|
110
113
|
minimizer: [new TerserPlugin({
|
|
111
114
|
include: /\.min\.js$/,
|
|
112
|
-
sourceMap: true,
|
|
113
115
|
extractComments: true,
|
|
114
116
|
terserOptions: {
|
|
117
|
+
sourceMap: true,
|
|
115
118
|
compress: {
|
|
116
119
|
pure_funcs: ['console.log', 'console.info', 'console.debug']
|
|
117
120
|
}
|