@dxtmisha/functional-basic 1.3.8 → 1.3.10
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/CHANGELOG.md +11 -0
- package/ai-description.txt +15 -11
- package/ai-types.txt +122 -938
- package/dist/library.js +302 -302
- package/dist/src/classes/Geo.d.ts +1 -1
- package/dist/src/classes/GeoInstance.d.ts +1 -1
- package/package.json +1 -1
|
@@ -154,5 +154,5 @@ export declare class Geo {
|
|
|
154
154
|
* Устанавливает значение по умолчанию для кода страны.
|
|
155
155
|
* @param code default code value / значение кода по умолчанию
|
|
156
156
|
*/
|
|
157
|
-
static setValueDefault(code?: string): void;
|
|
157
|
+
static setValueDefault(code?: string | (() => string)): void;
|
|
158
158
|
}
|
|
@@ -189,7 +189,7 @@ export declare class GeoInstance {
|
|
|
189
189
|
* Устанавливает значение по умолчанию для кода страны.
|
|
190
190
|
* @param code default code value / значение кода по умолчанию
|
|
191
191
|
*/
|
|
192
|
-
setValueDefault(code?: string): void;
|
|
192
|
+
setValueDefault(code?: string | (() => string)): void;
|
|
193
193
|
/**
|
|
194
194
|
* Internal method to get the geo cookie instance.
|
|
195
195
|
*
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dxtmisha/functional-basic",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.10",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Foundational utility library for modern web development — HTTP client, geolocation, i18n, SEO meta tags, caching, storage, DOM utilities, and more. Framework-agnostic, zero dependencies, TypeScript-first.",
|
|
7
7
|
"keywords": [
|