@htmlbricks/hb-table 0.60.47 → 0.60.49
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/main.iife.js +5 -5
- package/main.iife.js.map +1 -1
- package/manifest.json +14 -2
- package/package.json +1 -1
- package/types/webcomponent.type.d.json +3 -0
- package/types/webcomponent.type.d.ts +1 -0
package/manifest.json
CHANGED
|
@@ -349,6 +349,9 @@
|
|
|
349
349
|
},
|
|
350
350
|
"type": "array"
|
|
351
351
|
},
|
|
352
|
+
"i18nlang": {
|
|
353
|
+
"type": "string"
|
|
354
|
+
},
|
|
352
355
|
"id": {
|
|
353
356
|
"type": "string"
|
|
354
357
|
},
|
|
@@ -798,7 +801,16 @@
|
|
|
798
801
|
"name": "buttons-container"
|
|
799
802
|
}
|
|
800
803
|
],
|
|
801
|
-
"i18n": [
|
|
804
|
+
"i18n": [
|
|
805
|
+
{
|
|
806
|
+
"lang": "it",
|
|
807
|
+
"language": "italian"
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
"lang": "en",
|
|
811
|
+
"language": "english"
|
|
812
|
+
}
|
|
813
|
+
],
|
|
802
814
|
"examples": [
|
|
803
815
|
{
|
|
804
816
|
"name": "BasicTableWithClick",
|
|
@@ -2028,5 +2040,5 @@
|
|
|
2028
2040
|
"size": {},
|
|
2029
2041
|
"iifePath": "main.iife.js",
|
|
2030
2042
|
"repoName": "@htmlbricks/hb-table",
|
|
2031
|
-
"version": "0.60.
|
|
2043
|
+
"version": "0.60.49"
|
|
2032
2044
|
}
|
package/package.json
CHANGED