@bigbinary/neeto-commons-frontend 4.13.97 → 4.13.98
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/package.json +5 -5
- package/utils.d.ts +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-commons-frontend",
|
|
3
|
-
"version": "4.13.
|
|
3
|
+
"version": "4.13.98",
|
|
4
4
|
"description": "A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.",
|
|
5
5
|
"repository": "git@github.com:bigbinary/neeto-commons-frontend.git",
|
|
6
6
|
"author": "Amaljith K <amaljith.k@bigbinary.com>",
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"@babel/types": "^7.20.7",
|
|
86
86
|
"@bigbinary/babel-preset-neeto": "1.0.8",
|
|
87
87
|
"@bigbinary/eslint-plugin-neeto": "1.8.0",
|
|
88
|
-
"@bigbinary/neeto-audit-frontend": "
|
|
88
|
+
"@bigbinary/neeto-audit-frontend": "2.4.1",
|
|
89
89
|
"@bigbinary/neeto-cist": "1.0.11",
|
|
90
90
|
"@bigbinary/neeto-commons-frontend": "4.4.6",
|
|
91
91
|
"@bigbinary/neeto-editor": "1.38.1",
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
"antd": "5.22.0",
|
|
123
123
|
"autoprefixer": "10.4.20",
|
|
124
124
|
"avvvatars-react": "0.4.2",
|
|
125
|
-
"axios": "1.
|
|
125
|
+
"axios": "1.13.5",
|
|
126
126
|
"babel-jest": "29.7.0",
|
|
127
127
|
"babel-loader": "^8.2.5",
|
|
128
128
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
@@ -184,7 +184,7 @@
|
|
|
184
184
|
"postcss-preset-env": "7.8.2",
|
|
185
185
|
"prettier": "3",
|
|
186
186
|
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
187
|
-
"qs": "6.14.
|
|
187
|
+
"qs": "6.14.2",
|
|
188
188
|
"ramda": "0.29.1",
|
|
189
189
|
"react": "18.2.0",
|
|
190
190
|
"react-colorful": "5.6.1",
|
|
@@ -254,7 +254,7 @@
|
|
|
254
254
|
"js-logger": "1.6.1",
|
|
255
255
|
"linkify-react": "4.1.3",
|
|
256
256
|
"linkifyjs": "4.3.2",
|
|
257
|
-
"qs": "6.14.
|
|
257
|
+
"qs": "6.14.2",
|
|
258
258
|
"ramda": "0.29.1",
|
|
259
259
|
"react": "18.2.0",
|
|
260
260
|
"react-colorful": "5.6.1",
|
package/utils.d.ts
CHANGED
|
@@ -164,7 +164,9 @@ export const timeFormat: {
|
|
|
164
164
|
*
|
|
165
165
|
* a convenient way to format date and time values according to specific patterns
|
|
166
166
|
*
|
|
167
|
-
* and display them in a human-readable format.
|
|
167
|
+
* and display them in a human-readable format. Learn more about the real-world
|
|
168
|
+
*
|
|
169
|
+
* scenarios at https://youtu.be/h3L9nb0G0RI.
|
|
168
170
|
*
|
|
169
171
|
* @example
|
|
170
172
|
*
|