@h3ravel/support 0.16.2 → 0.16.4
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/dist/index.d.ts +1 -1
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -696,7 +696,7 @@ declare class Arr {
|
|
|
696
696
|
* Arr.divide(['a','b']) -> [[0,1], ['a','b']]
|
|
697
697
|
* Arr.divide({x:1,y:2}) -> [['x','y'], [1,2]]
|
|
698
698
|
*/
|
|
699
|
-
static divide<A$1>(input: A$1[] | Record<string, A$1>): (number[] | A$1[])[] | (
|
|
699
|
+
static divide<A$1>(input: A$1[] | Record<string, A$1>): (number[] | A$1[])[] | (string[] | A$1[])[];
|
|
700
700
|
/**
|
|
701
701
|
* Flatten a nested array/object structure into a single-level object
|
|
702
702
|
* with dot-notated keys.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h3ravel/support",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.4",
|
|
4
4
|
"description": "Shared helpers, facades and utilities for H3ravel.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -44,15 +44,15 @@
|
|
|
44
44
|
"laravel"
|
|
45
45
|
],
|
|
46
46
|
"devDependencies": {
|
|
47
|
+
"@h3ravel/shared": "^0.30.3",
|
|
47
48
|
"@types/luxon": "^3.7.1",
|
|
48
|
-
"typescript": "^5.4.0"
|
|
49
|
-
"@h3ravel/shared": "^0.29.0-alpha.8"
|
|
49
|
+
"typescript": "^5.4.0"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@h3ravel/collect.js": "^5.3.3",
|
|
53
|
+
"@h3ravel/contracts": "^0.28.2",
|
|
53
54
|
"dayjs": "^1.11.18",
|
|
54
|
-
"luxon": "^3.7.2"
|
|
55
|
-
"@h3ravel/contracts": "^0.29.0-alpha.8"
|
|
55
|
+
"luxon": "^3.7.2"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"build": "tsdown --config-loader unconfig",
|