@steroidsjs/core 3.0.88 → 3.0.90
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/components/ClientStorageComponent.d.ts +7 -1
- package/components/ClientStorageComponent.js +13 -7
- package/docs-autogen-result.json +241 -33
- package/en.json +85 -89
- package/hooks/useAddressBar.d.ts +0 -6
- package/hooks/useAddressBar.js +33 -15
- package/hooks/useDataProvider.js +6 -4
- package/hooks/useDataSelect.d.ts +2 -2
- package/hooks/useSaveCursorPosition.d.ts +16 -3
- package/hooks/useSaveCursorPosition.js +50 -15
- package/package.json +2 -3
- package/ui/content/Alert/Alert.d.ts +1 -1
- package/ui/content/Icon/Icon.d.ts +1 -1
- package/ui/content/Menu/Menu.d.ts +1 -1
- package/ui/form/DateField/DateField.d.ts +1 -1
- package/ui/form/DateRangeField/DateRangeField.d.ts +1 -1
- package/ui/form/DateTimeField/DateTimeField.d.ts +1 -1
- package/ui/form/DateTimeRangeField/DateTimeRangeField.d.ts +1 -1
- package/ui/form/EmailField/EmailField.js +3 -1
- package/ui/form/InputField/InputField.d.ts +5 -0
- package/ui/form/InputField/InputField.js +8 -6
- package/ui/form/NumberField/NumberField.d.ts +5 -0
- package/ui/form/NumberField/NumberField.js +8 -6
- package/ui/form/PasswordField/PasswordField.js +1 -1
- package/ui/form/TextField/TextField.d.ts +7 -1
- package/ui/form/TextField/TextField.js +6 -3
- package/ui/form/TimeField/TimeField.d.ts +1 -1
- package/ui/form/TimeRangeField/TimeRangeField.d.ts +1 -1
- package/ui/list/Grid/Grid.d.ts +1 -1
- package/ui/list/List/List.js +4 -3
- package/ui/modal/Modal/Modal.d.ts +4 -0
- package/ui/modal/Modal/Modal.js +3 -3
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
export interface IClientStorageComponentConfig {
|
|
2
2
|
/**
|
|
3
|
-
* Кастомный домен
|
|
3
|
+
* Кастомный домен для куки
|
|
4
4
|
*/
|
|
5
5
|
domain?: string;
|
|
6
|
+
/**
|
|
7
|
+
* Автоматически устанавливает куку для всех поддоменов текущего домена,
|
|
8
|
+
* но только если параметр domain не указан явно
|
|
9
|
+
*/
|
|
10
|
+
shareBetweenSubdomains?: boolean;
|
|
6
11
|
/**
|
|
7
12
|
* Куки для режима ssr
|
|
8
13
|
*/
|
|
@@ -45,6 +50,7 @@ export default class ClientStorageComponent implements IClientStorageComponent {
|
|
|
45
50
|
localStorageAvailable: boolean;
|
|
46
51
|
sessionStorageAvailable: boolean;
|
|
47
52
|
domain?: string;
|
|
53
|
+
shareBetweenSubdomains?: boolean;
|
|
48
54
|
private _ssrCookie;
|
|
49
55
|
constructor(components: any, config: any);
|
|
50
56
|
get(name: any, storageName: any): any;
|
|
@@ -36,6 +36,7 @@ var dayjs_1 = __importDefault(require("dayjs"));
|
|
|
36
36
|
*/
|
|
37
37
|
var ClientStorageComponent = /** @class */ (function () {
|
|
38
38
|
function ClientStorageComponent(components, config) {
|
|
39
|
+
var _a;
|
|
39
40
|
this.localStorageAvailable = !process.env.IS_SSR;
|
|
40
41
|
this.sessionStorageAvailable = !process.env.IS_SSR;
|
|
41
42
|
this.STORAGE_SESSION = 'session';
|
|
@@ -62,6 +63,7 @@ var ClientStorageComponent = /** @class */ (function () {
|
|
|
62
63
|
}
|
|
63
64
|
}
|
|
64
65
|
this.domain = (config === null || config === void 0 ? void 0 : config.domain) || null;
|
|
66
|
+
this.shareBetweenSubdomains = (_a = config === null || config === void 0 ? void 0 : config.shareBetweenSubdomains) !== null && _a !== void 0 ? _a : false;
|
|
65
67
|
this._ssrCookie = config === null || config === void 0 ? void 0 : config.ssrCookie;
|
|
66
68
|
}
|
|
67
69
|
ClientStorageComponent.prototype.get = function (name, storageName) {
|
|
@@ -116,13 +118,17 @@ var ClientStorageComponent = /** @class */ (function () {
|
|
|
116
118
|
if (this.domain) {
|
|
117
119
|
return this.domain;
|
|
118
120
|
}
|
|
119
|
-
var host =
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
121
|
+
var host = typeof window !== 'undefined' ? window.location.hostname : '';
|
|
122
|
+
if (this.shareBetweenSubdomains) {
|
|
123
|
+
var isIp = /^\d{1,3}(\.\d{1,3}){3}$/.test(host);
|
|
124
|
+
if (!isIp) {
|
|
125
|
+
return host
|
|
126
|
+
.split('.')
|
|
127
|
+
.slice(-2)
|
|
128
|
+
.join('.');
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
return host;
|
|
126
132
|
};
|
|
127
133
|
return ClientStorageComponent;
|
|
128
134
|
}());
|
package/docs-autogen-result.json
CHANGED
|
@@ -301,11 +301,19 @@
|
|
|
301
301
|
{
|
|
302
302
|
"name": "domain",
|
|
303
303
|
"decorators": [],
|
|
304
|
-
"description": "Кастомный домен",
|
|
304
|
+
"description": "Кастомный домен для куки",
|
|
305
305
|
"required": false,
|
|
306
306
|
"type": "string",
|
|
307
307
|
"example": null
|
|
308
308
|
},
|
|
309
|
+
{
|
|
310
|
+
"name": "shareBetweenSubdomains",
|
|
311
|
+
"decorators": [],
|
|
312
|
+
"description": " Автоматически устанавливает куку для всех поддоменов текущего домена,\n но только если параметр domain не указан явно",
|
|
313
|
+
"required": false,
|
|
314
|
+
"type": "boolean",
|
|
315
|
+
"example": null
|
|
316
|
+
},
|
|
309
317
|
{
|
|
310
318
|
"name": "ssrCookie",
|
|
311
319
|
"decorators": [],
|
|
@@ -424,11 +432,19 @@
|
|
|
424
432
|
{
|
|
425
433
|
"name": "domain",
|
|
426
434
|
"decorators": [],
|
|
427
|
-
"description": "Кастомный домен",
|
|
435
|
+
"description": "Кастомный домен для куки",
|
|
428
436
|
"required": false,
|
|
429
437
|
"type": "string",
|
|
430
438
|
"example": null
|
|
431
439
|
},
|
|
440
|
+
{
|
|
441
|
+
"name": "shareBetweenSubdomains",
|
|
442
|
+
"decorators": [],
|
|
443
|
+
"description": " Автоматически устанавливает куку для всех поддоменов текущего домена,\n но только если параметр domain не указан явно",
|
|
444
|
+
"required": false,
|
|
445
|
+
"type": "boolean",
|
|
446
|
+
"example": null
|
|
447
|
+
},
|
|
432
448
|
{
|
|
433
449
|
"name": "ssrCookie",
|
|
434
450
|
"decorators": [],
|
|
@@ -3281,7 +3297,7 @@
|
|
|
3281
3297
|
{
|
|
3282
3298
|
"name": "autoCompleteInputRef",
|
|
3283
3299
|
"decorators": [],
|
|
3284
|
-
"description": "
|
|
3300
|
+
"description": "Ref autocomplete поиска",
|
|
3285
3301
|
"required": false,
|
|
3286
3302
|
"type": "MutableRefObject",
|
|
3287
3303
|
"example": null
|
|
@@ -3353,7 +3369,7 @@
|
|
|
3353
3369
|
{
|
|
3354
3370
|
"name": "sourceItems",
|
|
3355
3371
|
"decorators": [],
|
|
3356
|
-
"description": "
|
|
3372
|
+
"description": "Список со всеми элементами",
|
|
3357
3373
|
"required": false,
|
|
3358
3374
|
"type": "IDataSelectItem[]",
|
|
3359
3375
|
"example": null
|
|
@@ -4349,6 +4365,81 @@
|
|
|
4349
4365
|
],
|
|
4350
4366
|
"methods": []
|
|
4351
4367
|
},
|
|
4368
|
+
"ISaveCursorPositionConfig": {
|
|
4369
|
+
"name": "ISaveCursorPositionConfig",
|
|
4370
|
+
"moduleName": "hooks/useSaveCursorPosition",
|
|
4371
|
+
"title": "",
|
|
4372
|
+
"description": "",
|
|
4373
|
+
"tags": {},
|
|
4374
|
+
"defaultProps": null,
|
|
4375
|
+
"extends": [],
|
|
4376
|
+
"properties": [
|
|
4377
|
+
{
|
|
4378
|
+
"name": "debounce",
|
|
4379
|
+
"decorators": [],
|
|
4380
|
+
"description": "",
|
|
4381
|
+
"required": false,
|
|
4382
|
+
"type": "ISaveCursorPositionDebounceConfig",
|
|
4383
|
+
"example": null
|
|
4384
|
+
},
|
|
4385
|
+
{
|
|
4386
|
+
"name": "inputParams",
|
|
4387
|
+
"decorators": [],
|
|
4388
|
+
"description": "",
|
|
4389
|
+
"required": true,
|
|
4390
|
+
"type": "IInputParams",
|
|
4391
|
+
"example": null
|
|
4392
|
+
}
|
|
4393
|
+
],
|
|
4394
|
+
"methods": [
|
|
4395
|
+
{
|
|
4396
|
+
"name": "onChangeCallback",
|
|
4397
|
+
"decorators": [],
|
|
4398
|
+
"description": "",
|
|
4399
|
+
"required": false,
|
|
4400
|
+
"type": "void",
|
|
4401
|
+
"example": null,
|
|
4402
|
+
"parameters": [
|
|
4403
|
+
{
|
|
4404
|
+
"name": "value",
|
|
4405
|
+
"decorators": [],
|
|
4406
|
+
"description": "",
|
|
4407
|
+
"required": true,
|
|
4408
|
+
"type": "any",
|
|
4409
|
+
"example": null
|
|
4410
|
+
}
|
|
4411
|
+
]
|
|
4412
|
+
}
|
|
4413
|
+
]
|
|
4414
|
+
},
|
|
4415
|
+
"ISaveCursorPositionDebounceConfig": {
|
|
4416
|
+
"name": "ISaveCursorPositionDebounceConfig",
|
|
4417
|
+
"moduleName": "hooks/useSaveCursorPosition",
|
|
4418
|
+
"title": "",
|
|
4419
|
+
"description": "",
|
|
4420
|
+
"tags": {},
|
|
4421
|
+
"defaultProps": null,
|
|
4422
|
+
"extends": [],
|
|
4423
|
+
"properties": [
|
|
4424
|
+
{
|
|
4425
|
+
"name": "delayMs",
|
|
4426
|
+
"decorators": [],
|
|
4427
|
+
"description": "Задержка в мс",
|
|
4428
|
+
"required": false,
|
|
4429
|
+
"type": "number",
|
|
4430
|
+
"example": null
|
|
4431
|
+
},
|
|
4432
|
+
{
|
|
4433
|
+
"name": "enabled",
|
|
4434
|
+
"decorators": [],
|
|
4435
|
+
"description": "",
|
|
4436
|
+
"required": true,
|
|
4437
|
+
"type": "boolean",
|
|
4438
|
+
"example": null
|
|
4439
|
+
}
|
|
4440
|
+
],
|
|
4441
|
+
"methods": []
|
|
4442
|
+
},
|
|
4352
4443
|
"IPreparedTreeItem": {
|
|
4353
4444
|
"name": "IPreparedTreeItem",
|
|
4354
4445
|
"moduleName": "hooks/useTree",
|
|
@@ -6168,7 +6259,7 @@
|
|
|
6168
6259
|
{
|
|
6169
6260
|
"name": "showClose",
|
|
6170
6261
|
"decorators": [],
|
|
6171
|
-
"description": "
|
|
6262
|
+
"description": "Нужно ли отображать кнопку, чтобы закрыть Оповещение",
|
|
6172
6263
|
"required": false,
|
|
6173
6264
|
"type": "boolean",
|
|
6174
6265
|
"example": null,
|
|
@@ -6301,7 +6392,7 @@
|
|
|
6301
6392
|
{
|
|
6302
6393
|
"name": "showClose",
|
|
6303
6394
|
"decorators": [],
|
|
6304
|
-
"description": "
|
|
6395
|
+
"description": "Нужно ли отображать кнопку, чтобы закрыть Оповещение",
|
|
6305
6396
|
"required": false,
|
|
6306
6397
|
"type": "boolean",
|
|
6307
6398
|
"example": null
|
|
@@ -7480,6 +7571,14 @@
|
|
|
7480
7571
|
"required": false,
|
|
7481
7572
|
"type": "React.ReactNode | {}",
|
|
7482
7573
|
"example": "MyCustomView"
|
|
7574
|
+
},
|
|
7575
|
+
{
|
|
7576
|
+
"name": "viewProps",
|
|
7577
|
+
"decorators": [],
|
|
7578
|
+
"description": "Свойства для view компонента",
|
|
7579
|
+
"required": false,
|
|
7580
|
+
"type": "any",
|
|
7581
|
+
"example": null
|
|
7483
7582
|
}
|
|
7484
7583
|
],
|
|
7485
7584
|
"methods": [
|
|
@@ -7693,6 +7792,14 @@
|
|
|
7693
7792
|
"required": false,
|
|
7694
7793
|
"type": "React.ReactNode | {}",
|
|
7695
7794
|
"example": "MyCustomView"
|
|
7795
|
+
},
|
|
7796
|
+
{
|
|
7797
|
+
"name": "viewProps",
|
|
7798
|
+
"decorators": [],
|
|
7799
|
+
"description": "Свойства для view компонента",
|
|
7800
|
+
"required": false,
|
|
7801
|
+
"type": "any",
|
|
7802
|
+
"example": null
|
|
7696
7803
|
}
|
|
7697
7804
|
],
|
|
7698
7805
|
"methods": [
|
|
@@ -10702,7 +10809,7 @@
|
|
|
10702
10809
|
{
|
|
10703
10810
|
"name": "tabIndex",
|
|
10704
10811
|
"decorators": [],
|
|
10705
|
-
"description": "
|
|
10812
|
+
"description": "Должен ли данный элемент участвовать в последовательной навигации",
|
|
10706
10813
|
"required": false,
|
|
10707
10814
|
"type": "number",
|
|
10708
10815
|
"example": null,
|
|
@@ -10775,7 +10882,7 @@
|
|
|
10775
10882
|
{
|
|
10776
10883
|
"name": "tabIndex",
|
|
10777
10884
|
"decorators": [],
|
|
10778
|
-
"description": "
|
|
10885
|
+
"description": "Должен ли данный элемент участвовать в последовательной навигации",
|
|
10779
10886
|
"required": false,
|
|
10780
10887
|
"type": "number",
|
|
10781
10888
|
"example": null
|
|
@@ -11227,6 +11334,14 @@
|
|
|
11227
11334
|
"required": false,
|
|
11228
11335
|
"type": "React.ReactNode | {}",
|
|
11229
11336
|
"example": "MyCustomView"
|
|
11337
|
+
},
|
|
11338
|
+
{
|
|
11339
|
+
"name": "viewProps",
|
|
11340
|
+
"decorators": [],
|
|
11341
|
+
"description": "Свойства для view компонента",
|
|
11342
|
+
"required": false,
|
|
11343
|
+
"type": "any",
|
|
11344
|
+
"example": null
|
|
11230
11345
|
}
|
|
11231
11346
|
],
|
|
11232
11347
|
"methods": [
|
|
@@ -11727,6 +11842,14 @@
|
|
|
11727
11842
|
"required": false,
|
|
11728
11843
|
"type": "React.ReactNode | {}",
|
|
11729
11844
|
"example": "MyCustomView"
|
|
11845
|
+
},
|
|
11846
|
+
{
|
|
11847
|
+
"name": "viewProps",
|
|
11848
|
+
"decorators": [],
|
|
11849
|
+
"description": "Свойства для view компонента",
|
|
11850
|
+
"required": false,
|
|
11851
|
+
"type": "any",
|
|
11852
|
+
"example": null
|
|
11730
11853
|
}
|
|
11731
11854
|
],
|
|
11732
11855
|
"methods": [
|
|
@@ -12188,7 +12311,7 @@
|
|
|
12188
12311
|
{
|
|
12189
12312
|
"name": "items",
|
|
12190
12313
|
"decorators": [],
|
|
12191
|
-
"description": "
|
|
12314
|
+
"description": "Элементы меню",
|
|
12192
12315
|
"required": true,
|
|
12193
12316
|
"type": "IMenuItem[]",
|
|
12194
12317
|
"example": null,
|
|
@@ -13782,7 +13905,7 @@
|
|
|
13782
13905
|
{
|
|
13783
13906
|
"name": "autoCompleteInputRef",
|
|
13784
13907
|
"decorators": [],
|
|
13785
|
-
"description": "
|
|
13908
|
+
"description": "Ref autocomplete поиска",
|
|
13786
13909
|
"required": false,
|
|
13787
13910
|
"type": "MutableRefObject",
|
|
13788
13911
|
"example": null,
|
|
@@ -14079,7 +14202,7 @@
|
|
|
14079
14202
|
{
|
|
14080
14203
|
"name": "sourceItems",
|
|
14081
14204
|
"decorators": [],
|
|
14082
|
-
"description": "
|
|
14205
|
+
"description": "Список со всеми элементами",
|
|
14083
14206
|
"required": false,
|
|
14084
14207
|
"type": "IDataSelectItem[]",
|
|
14085
14208
|
"example": null,
|
|
@@ -15649,7 +15772,7 @@
|
|
|
15649
15772
|
{
|
|
15650
15773
|
"name": "autoCompleteInputRef",
|
|
15651
15774
|
"decorators": [],
|
|
15652
|
-
"description": "
|
|
15775
|
+
"description": "Ref autocomplete поиска",
|
|
15653
15776
|
"required": false,
|
|
15654
15777
|
"type": "MutableRefObject",
|
|
15655
15778
|
"example": null,
|
|
@@ -15937,7 +16060,7 @@
|
|
|
15937
16060
|
{
|
|
15938
16061
|
"name": "sourceItems",
|
|
15939
16062
|
"decorators": [],
|
|
15940
|
-
"description": "
|
|
16063
|
+
"description": "Список со всеми элементами",
|
|
15941
16064
|
"required": false,
|
|
15942
16065
|
"type": "IDataSelectItem[]",
|
|
15943
16066
|
"example": null,
|
|
@@ -16205,7 +16328,7 @@
|
|
|
16205
16328
|
{
|
|
16206
16329
|
"name": "autoCompleteInputRef",
|
|
16207
16330
|
"decorators": [],
|
|
16208
|
-
"description": "
|
|
16331
|
+
"description": "Ref autocomplete поиска",
|
|
16209
16332
|
"required": false,
|
|
16210
16333
|
"type": "MutableRefObject",
|
|
16211
16334
|
"example": null,
|
|
@@ -16529,7 +16652,7 @@
|
|
|
16529
16652
|
{
|
|
16530
16653
|
"name": "sourceItems",
|
|
16531
16654
|
"decorators": [],
|
|
16532
|
-
"description": "
|
|
16655
|
+
"description": "Список со всеми элементами",
|
|
16533
16656
|
"required": false,
|
|
16534
16657
|
"type": "IDataSelectItem[]",
|
|
16535
16658
|
"example": null,
|
|
@@ -16821,7 +16944,7 @@
|
|
|
16821
16944
|
{
|
|
16822
16945
|
"name": "disabledDays",
|
|
16823
16946
|
"decorators": [],
|
|
16824
|
-
"description": "
|
|
16947
|
+
"description": "Ограничение доступных дат.",
|
|
16825
16948
|
"required": false,
|
|
16826
16949
|
"type": "{after: Date, before: Date}",
|
|
16827
16950
|
"example": null,
|
|
@@ -17597,7 +17720,7 @@
|
|
|
17597
17720
|
{
|
|
17598
17721
|
"name": "disabledDays",
|
|
17599
17722
|
"decorators": [],
|
|
17600
|
-
"description": "
|
|
17723
|
+
"description": "Ограничение доступных дат.",
|
|
17601
17724
|
"required": false,
|
|
17602
17725
|
"type": "{after: Date, before: Date}",
|
|
17603
17726
|
"example": null,
|
|
@@ -18204,7 +18327,7 @@
|
|
|
18204
18327
|
{
|
|
18205
18328
|
"name": "disabledDays",
|
|
18206
18329
|
"decorators": [],
|
|
18207
|
-
"description": "
|
|
18330
|
+
"description": "Ограничение доступных дат.",
|
|
18208
18331
|
"required": false,
|
|
18209
18332
|
"type": "{after: Date, before: Date}",
|
|
18210
18333
|
"example": null,
|
|
@@ -18636,7 +18759,7 @@
|
|
|
18636
18759
|
{
|
|
18637
18760
|
"name": "disabledDays",
|
|
18638
18761
|
"decorators": [],
|
|
18639
|
-
"description": "
|
|
18762
|
+
"description": "Ограничение доступных дат.",
|
|
18640
18763
|
"required": false,
|
|
18641
18764
|
"type": "{after: Date, before: Date}",
|
|
18642
18765
|
"example": null,
|
|
@@ -19319,7 +19442,7 @@
|
|
|
19319
19442
|
{
|
|
19320
19443
|
"name": "autoCompleteInputRef",
|
|
19321
19444
|
"decorators": [],
|
|
19322
|
-
"description": "
|
|
19445
|
+
"description": "Ref autocomplete поиска",
|
|
19323
19446
|
"required": false,
|
|
19324
19447
|
"type": "MutableRefObject",
|
|
19325
19448
|
"example": null,
|
|
@@ -19670,7 +19793,7 @@
|
|
|
19670
19793
|
{
|
|
19671
19794
|
"name": "sourceItems",
|
|
19672
19795
|
"decorators": [],
|
|
19673
|
-
"description": "
|
|
19796
|
+
"description": "Список со всеми элементами",
|
|
19674
19797
|
"required": false,
|
|
19675
19798
|
"type": "IDataSelectItem[]",
|
|
19676
19799
|
"example": null,
|
|
@@ -19826,7 +19949,7 @@
|
|
|
19826
19949
|
{
|
|
19827
19950
|
"name": "autoCompleteInputRef",
|
|
19828
19951
|
"decorators": [],
|
|
19829
|
-
"description": "
|
|
19952
|
+
"description": "Ref autocomplete поиска",
|
|
19830
19953
|
"required": false,
|
|
19831
19954
|
"type": "MutableRefObject",
|
|
19832
19955
|
"example": null
|
|
@@ -20202,7 +20325,7 @@
|
|
|
20202
20325
|
{
|
|
20203
20326
|
"name": "sourceItems",
|
|
20204
20327
|
"decorators": [],
|
|
20205
|
-
"description": "
|
|
20328
|
+
"description": "Список со всеми элементами",
|
|
20206
20329
|
"required": false,
|
|
20207
20330
|
"type": "IDataSelectItem[]",
|
|
20208
20331
|
"example": null
|
|
@@ -24528,6 +24651,14 @@
|
|
|
24528
24651
|
"required": false,
|
|
24529
24652
|
"type": "React.ReactNode | {}",
|
|
24530
24653
|
"example": "MyCustomView"
|
|
24654
|
+
},
|
|
24655
|
+
{
|
|
24656
|
+
"name": "viewProps",
|
|
24657
|
+
"decorators": [],
|
|
24658
|
+
"description": "Свойства для view компонента",
|
|
24659
|
+
"required": false,
|
|
24660
|
+
"type": "any",
|
|
24661
|
+
"example": null
|
|
24531
24662
|
}
|
|
24532
24663
|
],
|
|
24533
24664
|
"methods": [
|
|
@@ -25496,6 +25627,15 @@
|
|
|
25496
25627
|
"example": null,
|
|
25497
25628
|
"defaultValue": null
|
|
25498
25629
|
},
|
|
25630
|
+
{
|
|
25631
|
+
"name": "debounce",
|
|
25632
|
+
"decorators": [],
|
|
25633
|
+
"description": "Задержка применения введённого значения",
|
|
25634
|
+
"required": false,
|
|
25635
|
+
"type": "boolean | ISaveCursorPositionDebounceConfig",
|
|
25636
|
+
"example": null,
|
|
25637
|
+
"defaultValue": null
|
|
25638
|
+
},
|
|
25499
25639
|
{
|
|
25500
25640
|
"name": "disabled",
|
|
25501
25641
|
"decorators": [],
|
|
@@ -25803,6 +25943,14 @@
|
|
|
25803
25943
|
"type": "any",
|
|
25804
25944
|
"example": null
|
|
25805
25945
|
},
|
|
25946
|
+
{
|
|
25947
|
+
"name": "debounce",
|
|
25948
|
+
"decorators": [],
|
|
25949
|
+
"description": "Задержка применения введённого значения",
|
|
25950
|
+
"required": false,
|
|
25951
|
+
"type": "boolean | ISaveCursorPositionDebounceConfig",
|
|
25952
|
+
"example": null
|
|
25953
|
+
},
|
|
25806
25954
|
{
|
|
25807
25955
|
"name": "defaultValue",
|
|
25808
25956
|
"decorators": [],
|
|
@@ -26152,6 +26300,15 @@
|
|
|
26152
26300
|
"example": null,
|
|
26153
26301
|
"defaultValue": null
|
|
26154
26302
|
},
|
|
26303
|
+
{
|
|
26304
|
+
"name": "debounce",
|
|
26305
|
+
"decorators": [],
|
|
26306
|
+
"description": "Задержка применения введённого значения",
|
|
26307
|
+
"required": false,
|
|
26308
|
+
"type": "boolean | ISaveCursorPositionDebounceConfig",
|
|
26309
|
+
"example": null,
|
|
26310
|
+
"defaultValue": null
|
|
26311
|
+
},
|
|
26155
26312
|
{
|
|
26156
26313
|
"name": "disabled",
|
|
26157
26314
|
"decorators": [],
|
|
@@ -26735,6 +26892,15 @@
|
|
|
26735
26892
|
"example": null,
|
|
26736
26893
|
"defaultValue": null
|
|
26737
26894
|
},
|
|
26895
|
+
{
|
|
26896
|
+
"name": "debounce",
|
|
26897
|
+
"decorators": [],
|
|
26898
|
+
"description": "Задержка применения введённого значения",
|
|
26899
|
+
"required": false,
|
|
26900
|
+
"type": "boolean | ISaveCursorPositionDebounceConfig",
|
|
26901
|
+
"example": null,
|
|
26902
|
+
"defaultValue": null
|
|
26903
|
+
},
|
|
26738
26904
|
{
|
|
26739
26905
|
"name": "decimal",
|
|
26740
26906
|
"decorators": [],
|
|
@@ -27026,6 +27192,14 @@
|
|
|
27026
27192
|
"type": "any",
|
|
27027
27193
|
"example": null
|
|
27028
27194
|
},
|
|
27195
|
+
{
|
|
27196
|
+
"name": "debounce",
|
|
27197
|
+
"decorators": [],
|
|
27198
|
+
"description": "Задержка применения введённого значения",
|
|
27199
|
+
"required": false,
|
|
27200
|
+
"type": "boolean | ISaveCursorPositionDebounceConfig",
|
|
27201
|
+
"example": null
|
|
27202
|
+
},
|
|
27029
27203
|
{
|
|
27030
27204
|
"name": "decimal",
|
|
27031
27205
|
"decorators": [],
|
|
@@ -29568,6 +29742,15 @@
|
|
|
29568
29742
|
"example": "'isVisible'",
|
|
29569
29743
|
"defaultValue": null
|
|
29570
29744
|
},
|
|
29745
|
+
{
|
|
29746
|
+
"name": "autoHeight",
|
|
29747
|
+
"decorators": [],
|
|
29748
|
+
"description": "Флаг, который указывает, что высота поля должна быть равна высоте контента",
|
|
29749
|
+
"required": false,
|
|
29750
|
+
"type": "boolean",
|
|
29751
|
+
"example": "false",
|
|
29752
|
+
"defaultValue": null
|
|
29753
|
+
},
|
|
29571
29754
|
{
|
|
29572
29755
|
"name": "className",
|
|
29573
29756
|
"decorators": [],
|
|
@@ -29817,6 +30000,14 @@
|
|
|
29817
30000
|
"type": "string",
|
|
29818
30001
|
"example": "'isVisible'"
|
|
29819
30002
|
},
|
|
30003
|
+
{
|
|
30004
|
+
"name": "autoHeight",
|
|
30005
|
+
"decorators": [],
|
|
30006
|
+
"description": "Флаг, который указывает, что высота поля должна быть равна высоте контента",
|
|
30007
|
+
"required": false,
|
|
30008
|
+
"type": "boolean",
|
|
30009
|
+
"example": "false"
|
|
30010
|
+
},
|
|
29820
30011
|
{
|
|
29821
30012
|
"name": "className",
|
|
29822
30013
|
"decorators": [],
|
|
@@ -29902,7 +30093,7 @@
|
|
|
29902
30093
|
"decorators": [],
|
|
29903
30094
|
"description": "Свойства для элемента input",
|
|
29904
30095
|
"required": true,
|
|
29905
|
-
"type": "{disabled: boolean, name: string, onKeyUp: KeyboardEventHandler, placeholder: string, required: boolean, value: string | number, onChange: null}",
|
|
30096
|
+
"type": "{disabled: boolean, name: string, onKeyUp: KeyboardEventHandler, placeholder: string, ref: MutableRefObject, required: boolean, value: string | number, onChange: null}",
|
|
29906
30097
|
"example": null
|
|
29907
30098
|
},
|
|
29908
30099
|
{
|
|
@@ -30063,7 +30254,7 @@
|
|
|
30063
30254
|
{
|
|
30064
30255
|
"name": "availableTime",
|
|
30065
30256
|
"decorators": [],
|
|
30066
|
-
"description": "
|
|
30257
|
+
"description": "Ограничение доступного времени.",
|
|
30067
30258
|
"required": false,
|
|
30068
30259
|
"type": "{from: string, to: string}",
|
|
30069
30260
|
"example": null,
|
|
@@ -30377,7 +30568,7 @@
|
|
|
30377
30568
|
{
|
|
30378
30569
|
"name": "availableTime",
|
|
30379
30570
|
"decorators": [],
|
|
30380
|
-
"description": "
|
|
30571
|
+
"description": "Ограничение доступного времени.",
|
|
30381
30572
|
"required": false,
|
|
30382
30573
|
"type": "{from: string, to: string}",
|
|
30383
30574
|
"example": null
|
|
@@ -30508,7 +30699,7 @@
|
|
|
30508
30699
|
{
|
|
30509
30700
|
"name": "availableTime",
|
|
30510
30701
|
"decorators": [],
|
|
30511
|
-
"description": "
|
|
30702
|
+
"description": "Ограничение доступного времени.",
|
|
30512
30703
|
"required": false,
|
|
30513
30704
|
"type": "{from: string, to: string}",
|
|
30514
30705
|
"example": null
|
|
@@ -30611,7 +30802,7 @@
|
|
|
30611
30802
|
{
|
|
30612
30803
|
"name": "availableTime",
|
|
30613
30804
|
"decorators": [],
|
|
30614
|
-
"description": "
|
|
30805
|
+
"description": "Ограничение доступного времени.",
|
|
30615
30806
|
"required": false,
|
|
30616
30807
|
"type": "{from: string, to: string}",
|
|
30617
30808
|
"example": null,
|
|
@@ -33742,7 +33933,7 @@
|
|
|
33742
33933
|
{
|
|
33743
33934
|
"name": "picture",
|
|
33744
33935
|
"decorators": [],
|
|
33745
|
-
"description": "
|
|
33936
|
+
"description": "Параметры для картинки в колонке",
|
|
33746
33937
|
"required": false,
|
|
33747
33938
|
"type": "{attribute: string, isLeft: boolean}",
|
|
33748
33939
|
"example": "{\n attribute: 'icon',\n isLeft: true\n}"
|
|
@@ -34642,7 +34833,7 @@
|
|
|
34642
34833
|
{
|
|
34643
34834
|
"name": "picture",
|
|
34644
34835
|
"decorators": [],
|
|
34645
|
-
"description": "
|
|
34836
|
+
"description": "Параметры для картинки в колонке",
|
|
34646
34837
|
"required": false,
|
|
34647
34838
|
"type": "{attribute: string, isLeft: boolean}",
|
|
34648
34839
|
"example": "{\n attribute: 'icon',\n isLeft: true\n}"
|
|
@@ -34806,7 +34997,7 @@
|
|
|
34806
34997
|
{
|
|
34807
34998
|
"name": "picture",
|
|
34808
34999
|
"decorators": [],
|
|
34809
|
-
"description": "
|
|
35000
|
+
"description": "Параметры для картинки в колонке",
|
|
34810
35001
|
"required": false,
|
|
34811
35002
|
"type": "{attribute: string, isLeft: boolean}",
|
|
34812
35003
|
"example": "{\n attribute: 'icon',\n isLeft: true\n}"
|
|
@@ -37637,7 +37828,7 @@
|
|
|
37637
37828
|
{
|
|
37638
37829
|
"name": "picture",
|
|
37639
37830
|
"decorators": [],
|
|
37640
|
-
"description": "
|
|
37831
|
+
"description": "Параметры для картинки в колонке",
|
|
37641
37832
|
"required": false,
|
|
37642
37833
|
"type": "{attribute: string, isLeft: boolean}",
|
|
37643
37834
|
"example": "{\n attribute: 'icon',\n isLeft: true\n}"
|
|
@@ -37924,6 +38115,15 @@
|
|
|
37924
38115
|
"type": "React.ReactNode | {}",
|
|
37925
38116
|
"example": "MyCustomView",
|
|
37926
38117
|
"defaultValue": null
|
|
38118
|
+
},
|
|
38119
|
+
{
|
|
38120
|
+
"name": "viewProps",
|
|
38121
|
+
"decorators": [],
|
|
38122
|
+
"description": "Свойства для view компонента",
|
|
38123
|
+
"required": false,
|
|
38124
|
+
"type": "any",
|
|
38125
|
+
"example": null,
|
|
38126
|
+
"defaultValue": null
|
|
37927
38127
|
}
|
|
37928
38128
|
],
|
|
37929
38129
|
"methods": [
|
|
@@ -41151,10 +41351,18 @@
|
|
|
41151
41351
|
{
|
|
41152
41352
|
"name": "domain",
|
|
41153
41353
|
"decorators": [],
|
|
41154
|
-
"description": "Кастомный домен",
|
|
41354
|
+
"description": "Кастомный домен для куки",
|
|
41155
41355
|
"required": false,
|
|
41156
41356
|
"type": "string",
|
|
41157
41357
|
"example": null
|
|
41358
|
+
},
|
|
41359
|
+
{
|
|
41360
|
+
"name": "shareBetweenSubdomains",
|
|
41361
|
+
"decorators": [],
|
|
41362
|
+
"description": " Автоматически устанавливает куку для всех поддоменов текущего домена,\n но только если параметр domain не указан явно",
|
|
41363
|
+
"required": false,
|
|
41364
|
+
"type": "boolean",
|
|
41365
|
+
"example": null
|
|
41158
41366
|
}
|
|
41159
41367
|
],
|
|
41160
41368
|
"methods": [
|