@dile/crud 0.6.7 → 0.6.8

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.
@@ -1,6 +1,6 @@
1
1
  import {TranslationService as OriginalTranslationService} from '@dile/ui/mixins/i18n/TranslationService.js';
2
2
 
3
- const translations = import.meta.glob('./i18n/*.js');
3
+ const translations = import.meta.glob('./i18n/*.js', { eager: true })
4
4
 
5
5
  class TranslationService extends OriginalTranslationService {
6
6
  async importLanguage(language) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dile/crud",
3
- "version": "0.6.7",
3
+ "version": "0.6.8",
4
4
  "description": "Components to create a generic crud system based on Web Components and Lit",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -31,5 +31,5 @@
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "cf760dbcc0ec2b0037587987a26d01a3b8a42bdf"
34
+ "gitHead": "d62d281604d5206d27f5c2443e9a312443530140"
35
35
  }