@lblod/ember-rdfa-editor-lblod-plugins 28.2.1 → 29.0.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.
@@ -120,6 +120,7 @@ declare module 'ember-leaflet' {
120
120
  },
121
121
  ];
122
122
  };
123
+ Element: HTMLDivElement;
123
124
  }
124
125
  export class LeafletMap extends Component<LeafletMapSig> {}
125
126
 
@@ -1 +0,0 @@
1
- export { default } from '@lblod/ember-rdfa-editor-lblod-plugins/components/location-plugin/insert-variable';
@@ -1 +0,0 @@
1
- export { default } from '@lblod/ember-rdfa-editor-lblod-plugins/components/variable-plugin/autofilled/nodeview';
@@ -1 +0,0 @@
1
- export { default } from '@lblod/ember-rdfa-editor-lblod-plugins/components/variable-plugin/location/nodeview';
@@ -1 +0,0 @@
1
- export { default } from '@lblod/ember-rdfa-editor-lblod-plugins/models/instruction';
@@ -1 +0,0 @@
1
- export { default } from '@lblod/ember-rdfa-editor-lblod-plugins/models/measure';
@@ -1 +0,0 @@
1
- export { default } from '@lblod/ember-rdfa-editor-lblod-plugins/models/sign';
@@ -1 +0,0 @@
1
- export { default } from '@lblod/ember-rdfa-editor-lblod-plugins/services/roadsign-registry';
package/webpack-config.js DELETED
@@ -1,22 +0,0 @@
1
- // eslint-disable-next-line node/no-unpublished-require
2
- const webpack = require('webpack');
3
-
4
- module.exports = {
5
- node: {
6
- global: true,
7
- __filename: true,
8
- __dirname: true,
9
- },
10
- resolve: {
11
- fallback: {
12
- stream: require.resolve('stream-browserify'),
13
- crypto: require.resolve('crypto-browserify'),
14
- },
15
- },
16
- plugins: [
17
- new webpack.ProvidePlugin({
18
- process: 'process/browser.js',
19
- Buffer: ['buffer', 'Buffer'],
20
- }),
21
- ],
22
- };