@base-framework/base 3.0.504 → 3.0.506

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.
@@ -55,6 +55,14 @@ export class Data extends BasicData {
55
55
  * @returns {object} this
56
56
  */
57
57
  push(attr: string, value: any): object;
58
+ /**
59
+ * This will concatenate values to an array and set the result.
60
+ *
61
+ * @param {string} attr
62
+ * @param {array} values
63
+ * @returns {object} this
64
+ */
65
+ concat(attr: string, values: any[]): object;
58
66
  /**
59
67
  * This will add a value to an array and set the result.
60
68
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base-framework/base",
3
- "version": "3.0.504",
3
+ "version": "3.0.506",
4
4
  "description": "This is a javascript framework.",
5
5
  "main": "./dist/base.js",
6
6
  "type": "module",