@steroidsjs/core 3.0.15 → 3.0.16
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/docs-autogen-result.json +434 -36
- package/en.json +6 -0
- package/package.json +4 -4
- package/ui/content/CalendarSystem/CalendarSystem.d.ts +46 -15
- package/ui/content/CalendarSystem/CalendarSystem.js +32 -68
- package/ui/content/CalendarSystem/enums/CalendarType.d.ts +1 -0
- package/ui/content/CalendarSystem/enums/CalendarType.js +2 -0
- package/ui/content/CalendarSystem/enums/DisplayDateFormatType.d.ts +6 -0
- package/ui/content/CalendarSystem/enums/DisplayDateFormatType.js +38 -0
- package/ui/content/CalendarSystem/hooks/useCalendarControls.d.ts +4 -4
- package/ui/content/CalendarSystem/hooks/useCalendarControls.js +125 -21
- package/ui/content/CalendarSystem/hooks/useCalendarSystem.d.ts +29 -0
- package/ui/content/CalendarSystem/hooks/useCalendarSystem.js +96 -0
- package/ui/content/CalendarSystem/hooks/useCalendarSystemModals.d.ts +2 -2
- package/ui/content/CalendarSystem/hooks/useCalendarSystemModals.js +29 -10
- package/ui/content/CalendarSystem/hooks/useCustomViews.d.ts +24 -0
- package/ui/content/CalendarSystem/hooks/useCustomViews.js +45 -0
- package/ui/content/CalendarSystem/hooks/useDayGrid.d.ts +5 -0
- package/ui/content/CalendarSystem/hooks/useDayGrid.js +9 -0
- package/ui/content/CalendarSystem/hooks/useDisplayDate.d.ts +4 -3
- package/ui/content/CalendarSystem/hooks/useDisplayDate.js +10 -14
- package/ui/content/CalendarSystem/hooks/useEventsFromDate.js +9 -1
- package/ui/content/CalendarSystem/hooks/useMonthGrid.d.ts +1 -10
- package/ui/content/CalendarSystem/hooks/useMonthGrid.js +28 -44
- package/ui/content/CalendarSystem/hooks/useWeekGrid.d.ts +3 -7
- package/ui/content/CalendarSystem/hooks/useWeekGrid.js +8 -65
- package/ui/content/CalendarSystem/utils/utils.d.ts +7 -0
- package/ui/content/CalendarSystem/utils/utils.js +57 -3
- package/ui/content/Icon/Icon.d.ts +4 -0
- package/ui/content/Icon/Icon.js +3 -2
- package/ui/form/DateField/useDateInputState.js +1 -1
- package/ui/form/DateTimeField/DateTimeField.js +2 -1
- package/ui/form/PasswordField/PasswordField.js +14 -7
- package/ui/form/RadioListField/RadioListField.js +1 -1
- package/ui/form/SliderField/SliderField.d.ts +8 -0
- package/ui/form/SliderField/SliderField.js +17 -7
package/docs-autogen-result.json
CHANGED
|
@@ -7439,6 +7439,14 @@
|
|
|
7439
7439
|
"type": "string",
|
|
7440
7440
|
"example": "'Заявка отправлена на модерацию'"
|
|
7441
7441
|
},
|
|
7442
|
+
{
|
|
7443
|
+
"name": "users",
|
|
7444
|
+
"decorators": [],
|
|
7445
|
+
"description": "",
|
|
7446
|
+
"required": true,
|
|
7447
|
+
"type": "ICalendarUser[]",
|
|
7448
|
+
"example": null
|
|
7449
|
+
},
|
|
7442
7450
|
{
|
|
7443
7451
|
"name": "view",
|
|
7444
7452
|
"decorators": [],
|
|
@@ -7551,6 +7559,15 @@
|
|
|
7551
7559
|
"example": null,
|
|
7552
7560
|
"defaultValue": null
|
|
7553
7561
|
},
|
|
7562
|
+
{
|
|
7563
|
+
"name": "dayGrid",
|
|
7564
|
+
"decorators": [],
|
|
7565
|
+
"description": "Свойства для сетки дня",
|
|
7566
|
+
"required": false,
|
|
7567
|
+
"type": "IGridViews",
|
|
7568
|
+
"example": null,
|
|
7569
|
+
"defaultValue": null
|
|
7570
|
+
},
|
|
7554
7571
|
{
|
|
7555
7572
|
"name": "eventBlock",
|
|
7556
7573
|
"decorators": [],
|
|
@@ -7569,6 +7586,15 @@
|
|
|
7569
7586
|
"example": null,
|
|
7570
7587
|
"defaultValue": null
|
|
7571
7588
|
},
|
|
7589
|
+
{
|
|
7590
|
+
"name": "monthGrid",
|
|
7591
|
+
"decorators": [],
|
|
7592
|
+
"description": "Свойства для сетки месяца",
|
|
7593
|
+
"required": false,
|
|
7594
|
+
"type": "IGridViews",
|
|
7595
|
+
"example": null,
|
|
7596
|
+
"defaultValue": null
|
|
7597
|
+
},
|
|
7572
7598
|
{
|
|
7573
7599
|
"name": "style",
|
|
7574
7600
|
"decorators": [],
|
|
@@ -7578,6 +7604,15 @@
|
|
|
7578
7604
|
"example": "{width: '45%'}",
|
|
7579
7605
|
"defaultValue": null
|
|
7580
7606
|
},
|
|
7607
|
+
{
|
|
7608
|
+
"name": "users",
|
|
7609
|
+
"decorators": [],
|
|
7610
|
+
"description": "",
|
|
7611
|
+
"required": true,
|
|
7612
|
+
"type": "ICalendarUser[]",
|
|
7613
|
+
"example": null,
|
|
7614
|
+
"defaultValue": null
|
|
7615
|
+
},
|
|
7581
7616
|
{
|
|
7582
7617
|
"name": "view",
|
|
7583
7618
|
"decorators": [],
|
|
@@ -7586,6 +7621,15 @@
|
|
|
7586
7621
|
"type": "React.ReactNode | {}",
|
|
7587
7622
|
"example": "MyCustomView",
|
|
7588
7623
|
"defaultValue": null
|
|
7624
|
+
},
|
|
7625
|
+
{
|
|
7626
|
+
"name": "weekGrid",
|
|
7627
|
+
"decorators": [],
|
|
7628
|
+
"description": "Свойства для сетки недели",
|
|
7629
|
+
"required": false,
|
|
7630
|
+
"type": "IGridViews",
|
|
7631
|
+
"example": null,
|
|
7632
|
+
"defaultValue": null
|
|
7589
7633
|
}
|
|
7590
7634
|
],
|
|
7591
7635
|
"methods": [
|
|
@@ -7618,7 +7662,7 @@
|
|
|
7618
7662
|
"defaultProps": null,
|
|
7619
7663
|
"extends": [
|
|
7620
7664
|
"Pick<ICalendarSystemProps",
|
|
7621
|
-
"'className' | 'style' | 'additionalViewProps'>"
|
|
7665
|
+
"'className' | 'style' | 'additionalViewProps' | 'users'>"
|
|
7622
7666
|
],
|
|
7623
7667
|
"properties": [
|
|
7624
7668
|
{
|
|
@@ -7653,6 +7697,14 @@
|
|
|
7653
7697
|
"type": "string",
|
|
7654
7698
|
"example": null
|
|
7655
7699
|
},
|
|
7700
|
+
{
|
|
7701
|
+
"name": "dayGridProps",
|
|
7702
|
+
"decorators": [],
|
|
7703
|
+
"description": "",
|
|
7704
|
+
"required": true,
|
|
7705
|
+
"type": "{dayGridCurrentDay: IDay, dayGridTwentyFourHoursArray: string[]} & ICustomViews",
|
|
7706
|
+
"example": null
|
|
7707
|
+
},
|
|
7656
7708
|
{
|
|
7657
7709
|
"name": "eventGroups",
|
|
7658
7710
|
"decorators": [],
|
|
@@ -7674,7 +7726,7 @@
|
|
|
7674
7726
|
"decorators": [],
|
|
7675
7727
|
"description": "",
|
|
7676
7728
|
"required": true,
|
|
7677
|
-
"type": "{monthGridCalendarDays: IDay[], monthGridWeekDays: string[]
|
|
7729
|
+
"type": "{monthGridCalendarDays: IDay[], monthGridWeekDays: string[]} & ICustomViews",
|
|
7678
7730
|
"example": null
|
|
7679
7731
|
},
|
|
7680
7732
|
{
|
|
@@ -7693,16 +7745,50 @@
|
|
|
7693
7745
|
"type": "CSSProperties",
|
|
7694
7746
|
"example": "{width: '45%'}"
|
|
7695
7747
|
},
|
|
7748
|
+
{
|
|
7749
|
+
"name": "users",
|
|
7750
|
+
"decorators": [],
|
|
7751
|
+
"description": "",
|
|
7752
|
+
"required": true,
|
|
7753
|
+
"type": "ICalendarUser[]",
|
|
7754
|
+
"example": null
|
|
7755
|
+
},
|
|
7696
7756
|
{
|
|
7697
7757
|
"name": "weekGridProps",
|
|
7698
7758
|
"decorators": [],
|
|
7699
7759
|
"description": "",
|
|
7700
7760
|
"required": true,
|
|
7701
|
-
"type": "{weekGridCurrentWeekDays: IDay[], weekGridTwentyFourHoursArray: string[]
|
|
7761
|
+
"type": "{weekGridCurrentWeekDays: IDay[], weekGridTwentyFourHoursArray: string[]} & ICustomViews",
|
|
7702
7762
|
"example": null
|
|
7703
7763
|
}
|
|
7704
7764
|
],
|
|
7705
7765
|
"methods": [
|
|
7766
|
+
{
|
|
7767
|
+
"name": "getEventsFromDate",
|
|
7768
|
+
"decorators": [],
|
|
7769
|
+
"description": "",
|
|
7770
|
+
"required": false,
|
|
7771
|
+
"type": "IEvent[]",
|
|
7772
|
+
"example": null,
|
|
7773
|
+
"parameters": [
|
|
7774
|
+
{
|
|
7775
|
+
"name": "dateFromDay",
|
|
7776
|
+
"decorators": [],
|
|
7777
|
+
"description": "",
|
|
7778
|
+
"required": true,
|
|
7779
|
+
"type": "Date",
|
|
7780
|
+
"example": null
|
|
7781
|
+
},
|
|
7782
|
+
{
|
|
7783
|
+
"name": "currentCalendarType",
|
|
7784
|
+
"decorators": [],
|
|
7785
|
+
"description": "",
|
|
7786
|
+
"required": true,
|
|
7787
|
+
"type": "default",
|
|
7788
|
+
"example": null
|
|
7789
|
+
}
|
|
7790
|
+
]
|
|
7791
|
+
},
|
|
7706
7792
|
{
|
|
7707
7793
|
"name": "handleCalendarTypeChange",
|
|
7708
7794
|
"decorators": [],
|
|
@@ -7722,7 +7808,7 @@
|
|
|
7722
7808
|
]
|
|
7723
7809
|
},
|
|
7724
7810
|
{
|
|
7725
|
-
"name": "
|
|
7811
|
+
"name": "onCalendarChangedMonth",
|
|
7726
7812
|
"decorators": [],
|
|
7727
7813
|
"description": "",
|
|
7728
7814
|
"required": false,
|
|
@@ -7730,11 +7816,11 @@
|
|
|
7730
7816
|
"example": null,
|
|
7731
7817
|
"parameters": [
|
|
7732
7818
|
{
|
|
7733
|
-
"name": "
|
|
7819
|
+
"name": "newDate",
|
|
7734
7820
|
"decorators": [],
|
|
7735
7821
|
"description": "",
|
|
7736
7822
|
"required": true,
|
|
7737
|
-
"type": "
|
|
7823
|
+
"type": "Date",
|
|
7738
7824
|
"example": null
|
|
7739
7825
|
}
|
|
7740
7826
|
]
|
|
@@ -7758,7 +7844,7 @@
|
|
|
7758
7844
|
]
|
|
7759
7845
|
},
|
|
7760
7846
|
{
|
|
7761
|
-
"name": "
|
|
7847
|
+
"name": "onClickControl",
|
|
7762
7848
|
"decorators": [],
|
|
7763
7849
|
"description": "",
|
|
7764
7850
|
"required": false,
|
|
@@ -7766,11 +7852,11 @@
|
|
|
7766
7852
|
"example": null,
|
|
7767
7853
|
"parameters": [
|
|
7768
7854
|
{
|
|
7769
|
-
"name": "
|
|
7855
|
+
"name": "event",
|
|
7770
7856
|
"decorators": [],
|
|
7771
7857
|
"description": "",
|
|
7772
7858
|
"required": true,
|
|
7773
|
-
"type": "
|
|
7859
|
+
"type": "MouseEvent",
|
|
7774
7860
|
"example": null
|
|
7775
7861
|
}
|
|
7776
7862
|
]
|
|
@@ -7792,9 +7878,71 @@
|
|
|
7792
7878
|
"example": null
|
|
7793
7879
|
}
|
|
7794
7880
|
]
|
|
7881
|
+
},
|
|
7882
|
+
{
|
|
7883
|
+
"name": "openEditModal",
|
|
7884
|
+
"decorators": [],
|
|
7885
|
+
"description": "",
|
|
7886
|
+
"required": false,
|
|
7887
|
+
"type": "void",
|
|
7888
|
+
"example": null,
|
|
7889
|
+
"parameters": [
|
|
7890
|
+
{
|
|
7891
|
+
"name": "event",
|
|
7892
|
+
"decorators": [],
|
|
7893
|
+
"description": "",
|
|
7894
|
+
"required": true,
|
|
7895
|
+
"type": "IEvent",
|
|
7896
|
+
"example": null
|
|
7897
|
+
}
|
|
7898
|
+
]
|
|
7795
7899
|
}
|
|
7796
7900
|
]
|
|
7797
7901
|
},
|
|
7902
|
+
"ICalendarUser": {
|
|
7903
|
+
"name": "ICalendarUser",
|
|
7904
|
+
"moduleName": "ui/content/CalendarSystem/CalendarSystem",
|
|
7905
|
+
"title": "",
|
|
7906
|
+
"description": "",
|
|
7907
|
+
"tags": {},
|
|
7908
|
+
"defaultProps": null,
|
|
7909
|
+
"extends": [],
|
|
7910
|
+
"properties": [
|
|
7911
|
+
{
|
|
7912
|
+
"name": "caption",
|
|
7913
|
+
"decorators": [],
|
|
7914
|
+
"description": "",
|
|
7915
|
+
"required": true,
|
|
7916
|
+
"type": "string",
|
|
7917
|
+
"example": null
|
|
7918
|
+
},
|
|
7919
|
+
{
|
|
7920
|
+
"name": "eventsIds",
|
|
7921
|
+
"decorators": [],
|
|
7922
|
+
"description": "",
|
|
7923
|
+
"required": true,
|
|
7924
|
+
"type": "number[]",
|
|
7925
|
+
"example": null
|
|
7926
|
+
},
|
|
7927
|
+
{
|
|
7928
|
+
"name": "id",
|
|
7929
|
+
"decorators": [],
|
|
7930
|
+
"description": "",
|
|
7931
|
+
"required": true,
|
|
7932
|
+
"type": "number",
|
|
7933
|
+
"example": null
|
|
7934
|
+
},
|
|
7935
|
+
{
|
|
7936
|
+
"name": "name",
|
|
7937
|
+
"decorators": [],
|
|
7938
|
+
"description": "",
|
|
7939
|
+
"required": true,
|
|
7940
|
+
"type": "string",
|
|
7941
|
+
"example": null
|
|
7942
|
+
}
|
|
7943
|
+
],
|
|
7944
|
+
"methods": []
|
|
7945
|
+
},
|
|
7798
7946
|
"IDay": {
|
|
7799
7947
|
"name": "IDay",
|
|
7800
7948
|
"moduleName": "ui/content/CalendarSystem/CalendarSystem",
|
|
@@ -7864,14 +8012,6 @@
|
|
|
7864
8012
|
"type": "string",
|
|
7865
8013
|
"example": null
|
|
7866
8014
|
},
|
|
7867
|
-
{
|
|
7868
|
-
"name": "date",
|
|
7869
|
-
"decorators": [],
|
|
7870
|
-
"description": "Дата",
|
|
7871
|
-
"required": true,
|
|
7872
|
-
"type": "Date",
|
|
7873
|
-
"example": null
|
|
7874
|
-
},
|
|
7875
8015
|
{
|
|
7876
8016
|
"name": "description",
|
|
7877
8017
|
"decorators": [],
|
|
@@ -7880,6 +8020,14 @@
|
|
|
7880
8020
|
"type": "string",
|
|
7881
8021
|
"example": null
|
|
7882
8022
|
},
|
|
8023
|
+
{
|
|
8024
|
+
"name": "endDate",
|
|
8025
|
+
"decorators": [],
|
|
8026
|
+
"description": "Конечная дата",
|
|
8027
|
+
"required": true,
|
|
8028
|
+
"type": "Date",
|
|
8029
|
+
"example": null
|
|
8030
|
+
},
|
|
7883
8031
|
{
|
|
7884
8032
|
"name": "id",
|
|
7885
8033
|
"decorators": [],
|
|
@@ -7888,6 +8036,14 @@
|
|
|
7888
8036
|
"type": "number",
|
|
7889
8037
|
"example": null
|
|
7890
8038
|
},
|
|
8039
|
+
{
|
|
8040
|
+
"name": "startDate",
|
|
8041
|
+
"decorators": [],
|
|
8042
|
+
"description": "Начальная дата",
|
|
8043
|
+
"required": true,
|
|
8044
|
+
"type": "Date",
|
|
8045
|
+
"example": null
|
|
8046
|
+
},
|
|
7891
8047
|
{
|
|
7892
8048
|
"name": "title",
|
|
7893
8049
|
"decorators": [],
|
|
@@ -7962,14 +8118,6 @@
|
|
|
7962
8118
|
"type": "string",
|
|
7963
8119
|
"example": null
|
|
7964
8120
|
},
|
|
7965
|
-
{
|
|
7966
|
-
"name": "date",
|
|
7967
|
-
"decorators": [],
|
|
7968
|
-
"description": "Дата",
|
|
7969
|
-
"required": true,
|
|
7970
|
-
"type": "Date",
|
|
7971
|
-
"example": null
|
|
7972
|
-
},
|
|
7973
8121
|
{
|
|
7974
8122
|
"name": "description",
|
|
7975
8123
|
"decorators": [],
|
|
@@ -7978,6 +8126,14 @@
|
|
|
7978
8126
|
"type": "string",
|
|
7979
8127
|
"example": null
|
|
7980
8128
|
},
|
|
8129
|
+
{
|
|
8130
|
+
"name": "endDate",
|
|
8131
|
+
"decorators": [],
|
|
8132
|
+
"description": "Конечная дата",
|
|
8133
|
+
"required": true,
|
|
8134
|
+
"type": "Date",
|
|
8135
|
+
"example": null
|
|
8136
|
+
},
|
|
7981
8137
|
{
|
|
7982
8138
|
"name": "eventGroupId",
|
|
7983
8139
|
"decorators": [],
|
|
@@ -7994,6 +8150,14 @@
|
|
|
7994
8150
|
"type": "number",
|
|
7995
8151
|
"example": null
|
|
7996
8152
|
},
|
|
8153
|
+
{
|
|
8154
|
+
"name": "startDate",
|
|
8155
|
+
"decorators": [],
|
|
8156
|
+
"description": "Начальная дата",
|
|
8157
|
+
"required": true,
|
|
8158
|
+
"type": "Date",
|
|
8159
|
+
"example": null
|
|
8160
|
+
},
|
|
7997
8161
|
{
|
|
7998
8162
|
"name": "title",
|
|
7999
8163
|
"decorators": [],
|
|
@@ -8001,6 +8165,50 @@
|
|
|
8001
8165
|
"required": true,
|
|
8002
8166
|
"type": "string",
|
|
8003
8167
|
"example": null
|
|
8168
|
+
},
|
|
8169
|
+
{
|
|
8170
|
+
"name": "usersIds",
|
|
8171
|
+
"decorators": [],
|
|
8172
|
+
"description": "",
|
|
8173
|
+
"required": true,
|
|
8174
|
+
"type": "number[]",
|
|
8175
|
+
"example": null
|
|
8176
|
+
}
|
|
8177
|
+
],
|
|
8178
|
+
"methods": []
|
|
8179
|
+
},
|
|
8180
|
+
"IGridViews": {
|
|
8181
|
+
"name": "IGridViews",
|
|
8182
|
+
"moduleName": "ui/content/CalendarSystem/CalendarSystem",
|
|
8183
|
+
"title": "",
|
|
8184
|
+
"description": "",
|
|
8185
|
+
"tags": {},
|
|
8186
|
+
"defaultProps": null,
|
|
8187
|
+
"extends": [],
|
|
8188
|
+
"properties": [
|
|
8189
|
+
{
|
|
8190
|
+
"name": "eventView",
|
|
8191
|
+
"decorators": [],
|
|
8192
|
+
"description": "",
|
|
8193
|
+
"required": false,
|
|
8194
|
+
"type": "React.ReactNode | {}",
|
|
8195
|
+
"example": null
|
|
8196
|
+
},
|
|
8197
|
+
{
|
|
8198
|
+
"name": "gridView",
|
|
8199
|
+
"decorators": [],
|
|
8200
|
+
"description": "",
|
|
8201
|
+
"required": false,
|
|
8202
|
+
"type": "React.ReactNode | {}",
|
|
8203
|
+
"example": null
|
|
8204
|
+
},
|
|
8205
|
+
{
|
|
8206
|
+
"name": "hourView",
|
|
8207
|
+
"decorators": [],
|
|
8208
|
+
"description": "",
|
|
8209
|
+
"required": false,
|
|
8210
|
+
"type": "React.ReactNode | {}",
|
|
8211
|
+
"example": null
|
|
8004
8212
|
}
|
|
8005
8213
|
],
|
|
8006
8214
|
"methods": []
|
|
@@ -8041,6 +8249,72 @@
|
|
|
8041
8249
|
],
|
|
8042
8250
|
"methods": []
|
|
8043
8251
|
},
|
|
8252
|
+
"ICustomViews": {
|
|
8253
|
+
"name": "ICustomViews",
|
|
8254
|
+
"moduleName": "ui/content/CalendarSystem/hooks/useCustomViews",
|
|
8255
|
+
"title": "",
|
|
8256
|
+
"description": "",
|
|
8257
|
+
"tags": {},
|
|
8258
|
+
"defaultProps": null,
|
|
8259
|
+
"extends": [],
|
|
8260
|
+
"properties": [],
|
|
8261
|
+
"methods": [
|
|
8262
|
+
{
|
|
8263
|
+
"name": "renderEventView",
|
|
8264
|
+
"decorators": [],
|
|
8265
|
+
"description": "",
|
|
8266
|
+
"required": false,
|
|
8267
|
+
"type": "Element",
|
|
8268
|
+
"example": null,
|
|
8269
|
+
"parameters": [
|
|
8270
|
+
{
|
|
8271
|
+
"name": "componentProps",
|
|
8272
|
+
"decorators": [],
|
|
8273
|
+
"description": "",
|
|
8274
|
+
"required": true,
|
|
8275
|
+
"type": "any",
|
|
8276
|
+
"example": null
|
|
8277
|
+
}
|
|
8278
|
+
]
|
|
8279
|
+
},
|
|
8280
|
+
{
|
|
8281
|
+
"name": "renderGridView",
|
|
8282
|
+
"decorators": [],
|
|
8283
|
+
"description": "",
|
|
8284
|
+
"required": false,
|
|
8285
|
+
"type": "Element",
|
|
8286
|
+
"example": null,
|
|
8287
|
+
"parameters": [
|
|
8288
|
+
{
|
|
8289
|
+
"name": "componentProps",
|
|
8290
|
+
"decorators": [],
|
|
8291
|
+
"description": "",
|
|
8292
|
+
"required": true,
|
|
8293
|
+
"type": "any",
|
|
8294
|
+
"example": null
|
|
8295
|
+
}
|
|
8296
|
+
]
|
|
8297
|
+
},
|
|
8298
|
+
{
|
|
8299
|
+
"name": "renderHourView",
|
|
8300
|
+
"decorators": [],
|
|
8301
|
+
"description": "",
|
|
8302
|
+
"required": false,
|
|
8303
|
+
"type": "Element",
|
|
8304
|
+
"example": null,
|
|
8305
|
+
"parameters": [
|
|
8306
|
+
{
|
|
8307
|
+
"name": "componentProps",
|
|
8308
|
+
"decorators": [],
|
|
8309
|
+
"description": "",
|
|
8310
|
+
"required": true,
|
|
8311
|
+
"type": "any",
|
|
8312
|
+
"example": null
|
|
8313
|
+
}
|
|
8314
|
+
]
|
|
8315
|
+
}
|
|
8316
|
+
]
|
|
8317
|
+
},
|
|
8044
8318
|
"ICardHeader": {
|
|
8045
8319
|
"name": "ICardHeader",
|
|
8046
8320
|
"moduleName": "ui/content/Card/Card",
|
|
@@ -10073,6 +10347,15 @@
|
|
|
10073
10347
|
"Partial<HTMLElement>"
|
|
10074
10348
|
],
|
|
10075
10349
|
"properties": [
|
|
10350
|
+
{
|
|
10351
|
+
"name": "dataIcon",
|
|
10352
|
+
"decorators": [],
|
|
10353
|
+
"description": "Дополнительные данные которые попадут в дата аттрибут data-icon",
|
|
10354
|
+
"required": false,
|
|
10355
|
+
"type": "any",
|
|
10356
|
+
"example": null,
|
|
10357
|
+
"defaultValue": null
|
|
10358
|
+
},
|
|
10076
10359
|
{
|
|
10077
10360
|
"name": "name",
|
|
10078
10361
|
"decorators": [],
|
|
@@ -10132,6 +10415,14 @@
|
|
|
10132
10415
|
"IIconProps"
|
|
10133
10416
|
],
|
|
10134
10417
|
"properties": [
|
|
10418
|
+
{
|
|
10419
|
+
"name": "dataIcon",
|
|
10420
|
+
"decorators": [],
|
|
10421
|
+
"description": "Дополнительные данные которые попадут в дата аттрибут data-icon",
|
|
10422
|
+
"required": false,
|
|
10423
|
+
"type": "any",
|
|
10424
|
+
"example": null
|
|
10425
|
+
},
|
|
10135
10426
|
{
|
|
10136
10427
|
"name": "icon",
|
|
10137
10428
|
"decorators": [],
|
|
@@ -28271,17 +28562,17 @@
|
|
|
28271
28562
|
{
|
|
28272
28563
|
"name": "onChange",
|
|
28273
28564
|
"decorators": [],
|
|
28274
|
-
"description": "
|
|
28565
|
+
"description": "Функция, вызываемая в момент перетаскивания tip'а у слайдера",
|
|
28275
28566
|
"required": false,
|
|
28276
|
-
"type": "
|
|
28277
|
-
"example":
|
|
28567
|
+
"type": "void",
|
|
28568
|
+
"example": "{\n () => console.log('Slider is moving')\n}",
|
|
28278
28569
|
"parameters": [
|
|
28279
28570
|
{
|
|
28280
|
-
"name": "
|
|
28571
|
+
"name": "value",
|
|
28281
28572
|
"decorators": [],
|
|
28282
28573
|
"description": "",
|
|
28283
28574
|
"required": true,
|
|
28284
|
-
"type": "any
|
|
28575
|
+
"type": "any",
|
|
28285
28576
|
"example": null
|
|
28286
28577
|
}
|
|
28287
28578
|
]
|
|
@@ -28571,17 +28862,17 @@
|
|
|
28571
28862
|
{
|
|
28572
28863
|
"name": "onChange",
|
|
28573
28864
|
"decorators": [],
|
|
28574
|
-
"description": "
|
|
28865
|
+
"description": "Функция, вызываемая в момент перетаскивания tip'а у слайдера",
|
|
28575
28866
|
"required": false,
|
|
28576
|
-
"type": "
|
|
28577
|
-
"example":
|
|
28867
|
+
"type": "void",
|
|
28868
|
+
"example": "{\n () => console.log('Slider is moving')\n}",
|
|
28578
28869
|
"parameters": [
|
|
28579
28870
|
{
|
|
28580
|
-
"name": "
|
|
28871
|
+
"name": "value",
|
|
28581
28872
|
"decorators": [],
|
|
28582
28873
|
"description": "",
|
|
28583
28874
|
"required": true,
|
|
28584
|
-
"type": "any
|
|
28875
|
+
"type": "any",
|
|
28585
28876
|
"example": null
|
|
28586
28877
|
}
|
|
28587
28878
|
]
|
|
@@ -40061,7 +40352,7 @@
|
|
|
40061
40352
|
"decorators": [],
|
|
40062
40353
|
"description": "",
|
|
40063
40354
|
"required": true,
|
|
40064
|
-
"type": "\"title\" | \"eventGroupId\" | \"
|
|
40355
|
+
"type": "\"title\" | \"eventGroupId\" | \"description\" | \"startDate\" | \"endDate\" | \"id\" | \"usersIds\"",
|
|
40065
40356
|
"example": null
|
|
40066
40357
|
},
|
|
40067
40358
|
"ICardViewProps": {
|
|
@@ -42514,6 +42805,14 @@
|
|
|
42514
42805
|
"description": "",
|
|
42515
42806
|
"tags": {},
|
|
42516
42807
|
"properties": [
|
|
42808
|
+
{
|
|
42809
|
+
"name": "DAY",
|
|
42810
|
+
"decorators": [],
|
|
42811
|
+
"description": "",
|
|
42812
|
+
"required": true,
|
|
42813
|
+
"type": "string",
|
|
42814
|
+
"example": null
|
|
42815
|
+
},
|
|
42517
42816
|
{
|
|
42518
42817
|
"name": "MONTH",
|
|
42519
42818
|
"decorators": [],
|
|
@@ -42730,6 +43029,105 @@
|
|
|
42730
43029
|
}
|
|
42731
43030
|
]
|
|
42732
43031
|
},
|
|
43032
|
+
"ui/content/CalendarSystem/enums/DisplayDateFormatType": {
|
|
43033
|
+
"name": "default",
|
|
43034
|
+
"moduleName": "ui/content/CalendarSystem/enums/DisplayDateFormatType",
|
|
43035
|
+
"title": "",
|
|
43036
|
+
"description": "",
|
|
43037
|
+
"tags": {},
|
|
43038
|
+
"properties": [
|
|
43039
|
+
{
|
|
43040
|
+
"name": "DAY",
|
|
43041
|
+
"decorators": [],
|
|
43042
|
+
"description": "",
|
|
43043
|
+
"required": true,
|
|
43044
|
+
"type": "string",
|
|
43045
|
+
"example": null
|
|
43046
|
+
},
|
|
43047
|
+
{
|
|
43048
|
+
"name": "DEFAULT",
|
|
43049
|
+
"decorators": [],
|
|
43050
|
+
"description": "",
|
|
43051
|
+
"required": true,
|
|
43052
|
+
"type": "string",
|
|
43053
|
+
"example": null
|
|
43054
|
+
}
|
|
43055
|
+
],
|
|
43056
|
+
"methods": [
|
|
43057
|
+
{
|
|
43058
|
+
"name": "getCssClass",
|
|
43059
|
+
"decorators": [],
|
|
43060
|
+
"description": "",
|
|
43061
|
+
"required": false,
|
|
43062
|
+
"type": "any",
|
|
43063
|
+
"example": null,
|
|
43064
|
+
"parameters": [
|
|
43065
|
+
{
|
|
43066
|
+
"name": "id",
|
|
43067
|
+
"decorators": [],
|
|
43068
|
+
"description": "",
|
|
43069
|
+
"required": true,
|
|
43070
|
+
"type": "any",
|
|
43071
|
+
"example": null
|
|
43072
|
+
}
|
|
43073
|
+
]
|
|
43074
|
+
},
|
|
43075
|
+
{
|
|
43076
|
+
"name": "getCssClasses",
|
|
43077
|
+
"decorators": [],
|
|
43078
|
+
"description": "",
|
|
43079
|
+
"required": false,
|
|
43080
|
+
"type": "{}",
|
|
43081
|
+
"example": null,
|
|
43082
|
+
"parameters": []
|
|
43083
|
+
},
|
|
43084
|
+
{
|
|
43085
|
+
"name": "getDropdownItems",
|
|
43086
|
+
"decorators": [],
|
|
43087
|
+
"description": "",
|
|
43088
|
+
"required": false,
|
|
43089
|
+
"type": "{id: string, label: string}[]",
|
|
43090
|
+
"example": null,
|
|
43091
|
+
"parameters": []
|
|
43092
|
+
},
|
|
43093
|
+
{
|
|
43094
|
+
"name": "getKeys",
|
|
43095
|
+
"decorators": [],
|
|
43096
|
+
"description": "",
|
|
43097
|
+
"required": false,
|
|
43098
|
+
"type": "string[]",
|
|
43099
|
+
"example": null,
|
|
43100
|
+
"parameters": []
|
|
43101
|
+
},
|
|
43102
|
+
{
|
|
43103
|
+
"name": "getLabel",
|
|
43104
|
+
"decorators": [],
|
|
43105
|
+
"description": "",
|
|
43106
|
+
"required": false,
|
|
43107
|
+
"type": "string",
|
|
43108
|
+
"example": null,
|
|
43109
|
+
"parameters": [
|
|
43110
|
+
{
|
|
43111
|
+
"name": "id",
|
|
43112
|
+
"decorators": [],
|
|
43113
|
+
"description": "",
|
|
43114
|
+
"required": true,
|
|
43115
|
+
"type": "any",
|
|
43116
|
+
"example": null
|
|
43117
|
+
}
|
|
43118
|
+
]
|
|
43119
|
+
},
|
|
43120
|
+
{
|
|
43121
|
+
"name": "getLabels",
|
|
43122
|
+
"decorators": [],
|
|
43123
|
+
"description": "",
|
|
43124
|
+
"required": false,
|
|
43125
|
+
"type": "Record",
|
|
43126
|
+
"example": null,
|
|
43127
|
+
"parameters": []
|
|
43128
|
+
}
|
|
43129
|
+
]
|
|
43130
|
+
},
|
|
42733
43131
|
"ui/content/Chart/Chart": {
|
|
42734
43132
|
"name": "default",
|
|
42735
43133
|
"moduleName": "ui/content/Chart/Chart",
|