@base-framework/base 3.0.309 → 3.0.311

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.
@@ -70,6 +70,15 @@ export class Data extends BasicData {
70
70
  * @returns {*}
71
71
  */
72
72
  shift(attr: string): any;
73
+ /**
74
+ * This will get the index of the value in the array.
75
+ *
76
+ * @param {string} attr
77
+ * @param {*} key
78
+ * @param {*} value
79
+ * @returns {number}
80
+ */
81
+ getIndex(attr: string, key: any, value: any): number;
73
82
  /**
74
83
  * This will pop the last value from an array and set the result.
75
84
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base-framework/base",
3
- "version": "3.0.309",
3
+ "version": "3.0.311",
4
4
  "description": "This is a javascript framework.",
5
5
  "main": "./dist/base.js",
6
6
  "type": "module",