@steroidsjs/core 3.0.14 → 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 +464 -38
- package/en.json +7 -0
- package/hooks/useTree.d.ts +3 -2
- package/hooks/useTree.js +20 -1
- 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/ui/nav/Tree/Tree.d.ts +7 -0
- package/ui/nav/Tree/Tree.js +14 -10
package/docs-autogen-result.json
CHANGED
|
@@ -4998,7 +4998,26 @@
|
|
|
4998
4998
|
"example": null
|
|
4999
4999
|
}
|
|
5000
5000
|
],
|
|
5001
|
-
"methods": [
|
|
5001
|
+
"methods": [
|
|
5002
|
+
{
|
|
5003
|
+
"name": "onItemFocus",
|
|
5004
|
+
"decorators": [],
|
|
5005
|
+
"description": "",
|
|
5006
|
+
"required": false,
|
|
5007
|
+
"type": "void",
|
|
5008
|
+
"example": null,
|
|
5009
|
+
"parameters": [
|
|
5010
|
+
{
|
|
5011
|
+
"name": "e",
|
|
5012
|
+
"decorators": [],
|
|
5013
|
+
"description": "",
|
|
5014
|
+
"required": true,
|
|
5015
|
+
"type": "any",
|
|
5016
|
+
"example": null
|
|
5017
|
+
}
|
|
5018
|
+
]
|
|
5019
|
+
}
|
|
5020
|
+
]
|
|
5002
5021
|
},
|
|
5003
5022
|
"IUiComponent": {
|
|
5004
5023
|
"name": "IUiComponent",
|
|
@@ -7420,6 +7439,14 @@
|
|
|
7420
7439
|
"type": "string",
|
|
7421
7440
|
"example": "'Заявка отправлена на модерацию'"
|
|
7422
7441
|
},
|
|
7442
|
+
{
|
|
7443
|
+
"name": "users",
|
|
7444
|
+
"decorators": [],
|
|
7445
|
+
"description": "",
|
|
7446
|
+
"required": true,
|
|
7447
|
+
"type": "ICalendarUser[]",
|
|
7448
|
+
"example": null
|
|
7449
|
+
},
|
|
7423
7450
|
{
|
|
7424
7451
|
"name": "view",
|
|
7425
7452
|
"decorators": [],
|
|
@@ -7532,6 +7559,15 @@
|
|
|
7532
7559
|
"example": null,
|
|
7533
7560
|
"defaultValue": null
|
|
7534
7561
|
},
|
|
7562
|
+
{
|
|
7563
|
+
"name": "dayGrid",
|
|
7564
|
+
"decorators": [],
|
|
7565
|
+
"description": "Свойства для сетки дня",
|
|
7566
|
+
"required": false,
|
|
7567
|
+
"type": "IGridViews",
|
|
7568
|
+
"example": null,
|
|
7569
|
+
"defaultValue": null
|
|
7570
|
+
},
|
|
7535
7571
|
{
|
|
7536
7572
|
"name": "eventBlock",
|
|
7537
7573
|
"decorators": [],
|
|
@@ -7550,6 +7586,15 @@
|
|
|
7550
7586
|
"example": null,
|
|
7551
7587
|
"defaultValue": null
|
|
7552
7588
|
},
|
|
7589
|
+
{
|
|
7590
|
+
"name": "monthGrid",
|
|
7591
|
+
"decorators": [],
|
|
7592
|
+
"description": "Свойства для сетки месяца",
|
|
7593
|
+
"required": false,
|
|
7594
|
+
"type": "IGridViews",
|
|
7595
|
+
"example": null,
|
|
7596
|
+
"defaultValue": null
|
|
7597
|
+
},
|
|
7553
7598
|
{
|
|
7554
7599
|
"name": "style",
|
|
7555
7600
|
"decorators": [],
|
|
@@ -7559,6 +7604,15 @@
|
|
|
7559
7604
|
"example": "{width: '45%'}",
|
|
7560
7605
|
"defaultValue": null
|
|
7561
7606
|
},
|
|
7607
|
+
{
|
|
7608
|
+
"name": "users",
|
|
7609
|
+
"decorators": [],
|
|
7610
|
+
"description": "",
|
|
7611
|
+
"required": true,
|
|
7612
|
+
"type": "ICalendarUser[]",
|
|
7613
|
+
"example": null,
|
|
7614
|
+
"defaultValue": null
|
|
7615
|
+
},
|
|
7562
7616
|
{
|
|
7563
7617
|
"name": "view",
|
|
7564
7618
|
"decorators": [],
|
|
@@ -7567,6 +7621,15 @@
|
|
|
7567
7621
|
"type": "React.ReactNode | {}",
|
|
7568
7622
|
"example": "MyCustomView",
|
|
7569
7623
|
"defaultValue": null
|
|
7624
|
+
},
|
|
7625
|
+
{
|
|
7626
|
+
"name": "weekGrid",
|
|
7627
|
+
"decorators": [],
|
|
7628
|
+
"description": "Свойства для сетки недели",
|
|
7629
|
+
"required": false,
|
|
7630
|
+
"type": "IGridViews",
|
|
7631
|
+
"example": null,
|
|
7632
|
+
"defaultValue": null
|
|
7570
7633
|
}
|
|
7571
7634
|
],
|
|
7572
7635
|
"methods": [
|
|
@@ -7599,7 +7662,7 @@
|
|
|
7599
7662
|
"defaultProps": null,
|
|
7600
7663
|
"extends": [
|
|
7601
7664
|
"Pick<ICalendarSystemProps",
|
|
7602
|
-
"'className' | 'style' | 'additionalViewProps'>"
|
|
7665
|
+
"'className' | 'style' | 'additionalViewProps' | 'users'>"
|
|
7603
7666
|
],
|
|
7604
7667
|
"properties": [
|
|
7605
7668
|
{
|
|
@@ -7634,6 +7697,14 @@
|
|
|
7634
7697
|
"type": "string",
|
|
7635
7698
|
"example": null
|
|
7636
7699
|
},
|
|
7700
|
+
{
|
|
7701
|
+
"name": "dayGridProps",
|
|
7702
|
+
"decorators": [],
|
|
7703
|
+
"description": "",
|
|
7704
|
+
"required": true,
|
|
7705
|
+
"type": "{dayGridCurrentDay: IDay, dayGridTwentyFourHoursArray: string[]} & ICustomViews",
|
|
7706
|
+
"example": null
|
|
7707
|
+
},
|
|
7637
7708
|
{
|
|
7638
7709
|
"name": "eventGroups",
|
|
7639
7710
|
"decorators": [],
|
|
@@ -7655,7 +7726,7 @@
|
|
|
7655
7726
|
"decorators": [],
|
|
7656
7727
|
"description": "",
|
|
7657
7728
|
"required": true,
|
|
7658
|
-
"type": "{monthGridCalendarDays: IDay[], monthGridWeekDays: string[]
|
|
7729
|
+
"type": "{monthGridCalendarDays: IDay[], monthGridWeekDays: string[]} & ICustomViews",
|
|
7659
7730
|
"example": null
|
|
7660
7731
|
},
|
|
7661
7732
|
{
|
|
@@ -7674,16 +7745,50 @@
|
|
|
7674
7745
|
"type": "CSSProperties",
|
|
7675
7746
|
"example": "{width: '45%'}"
|
|
7676
7747
|
},
|
|
7748
|
+
{
|
|
7749
|
+
"name": "users",
|
|
7750
|
+
"decorators": [],
|
|
7751
|
+
"description": "",
|
|
7752
|
+
"required": true,
|
|
7753
|
+
"type": "ICalendarUser[]",
|
|
7754
|
+
"example": null
|
|
7755
|
+
},
|
|
7677
7756
|
{
|
|
7678
7757
|
"name": "weekGridProps",
|
|
7679
7758
|
"decorators": [],
|
|
7680
7759
|
"description": "",
|
|
7681
7760
|
"required": true,
|
|
7682
|
-
"type": "{weekGridCurrentWeekDays: IDay[], weekGridTwentyFourHoursArray: string[]
|
|
7761
|
+
"type": "{weekGridCurrentWeekDays: IDay[], weekGridTwentyFourHoursArray: string[]} & ICustomViews",
|
|
7683
7762
|
"example": null
|
|
7684
7763
|
}
|
|
7685
7764
|
],
|
|
7686
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
|
+
},
|
|
7687
7792
|
{
|
|
7688
7793
|
"name": "handleCalendarTypeChange",
|
|
7689
7794
|
"decorators": [],
|
|
@@ -7703,7 +7808,7 @@
|
|
|
7703
7808
|
]
|
|
7704
7809
|
},
|
|
7705
7810
|
{
|
|
7706
|
-
"name": "
|
|
7811
|
+
"name": "onCalendarChangedMonth",
|
|
7707
7812
|
"decorators": [],
|
|
7708
7813
|
"description": "",
|
|
7709
7814
|
"required": false,
|
|
@@ -7711,11 +7816,11 @@
|
|
|
7711
7816
|
"example": null,
|
|
7712
7817
|
"parameters": [
|
|
7713
7818
|
{
|
|
7714
|
-
"name": "
|
|
7819
|
+
"name": "newDate",
|
|
7715
7820
|
"decorators": [],
|
|
7716
7821
|
"description": "",
|
|
7717
7822
|
"required": true,
|
|
7718
|
-
"type": "
|
|
7823
|
+
"type": "Date",
|
|
7719
7824
|
"example": null
|
|
7720
7825
|
}
|
|
7721
7826
|
]
|
|
@@ -7739,7 +7844,7 @@
|
|
|
7739
7844
|
]
|
|
7740
7845
|
},
|
|
7741
7846
|
{
|
|
7742
|
-
"name": "
|
|
7847
|
+
"name": "onClickControl",
|
|
7743
7848
|
"decorators": [],
|
|
7744
7849
|
"description": "",
|
|
7745
7850
|
"required": false,
|
|
@@ -7747,11 +7852,11 @@
|
|
|
7747
7852
|
"example": null,
|
|
7748
7853
|
"parameters": [
|
|
7749
7854
|
{
|
|
7750
|
-
"name": "
|
|
7855
|
+
"name": "event",
|
|
7751
7856
|
"decorators": [],
|
|
7752
7857
|
"description": "",
|
|
7753
7858
|
"required": true,
|
|
7754
|
-
"type": "
|
|
7859
|
+
"type": "MouseEvent",
|
|
7755
7860
|
"example": null
|
|
7756
7861
|
}
|
|
7757
7862
|
]
|
|
@@ -7773,9 +7878,71 @@
|
|
|
7773
7878
|
"example": null
|
|
7774
7879
|
}
|
|
7775
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
|
+
]
|
|
7776
7899
|
}
|
|
7777
7900
|
]
|
|
7778
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
|
+
},
|
|
7779
7946
|
"IDay": {
|
|
7780
7947
|
"name": "IDay",
|
|
7781
7948
|
"moduleName": "ui/content/CalendarSystem/CalendarSystem",
|
|
@@ -7845,14 +8012,6 @@
|
|
|
7845
8012
|
"type": "string",
|
|
7846
8013
|
"example": null
|
|
7847
8014
|
},
|
|
7848
|
-
{
|
|
7849
|
-
"name": "date",
|
|
7850
|
-
"decorators": [],
|
|
7851
|
-
"description": "Дата",
|
|
7852
|
-
"required": true,
|
|
7853
|
-
"type": "Date",
|
|
7854
|
-
"example": null
|
|
7855
|
-
},
|
|
7856
8015
|
{
|
|
7857
8016
|
"name": "description",
|
|
7858
8017
|
"decorators": [],
|
|
@@ -7861,6 +8020,14 @@
|
|
|
7861
8020
|
"type": "string",
|
|
7862
8021
|
"example": null
|
|
7863
8022
|
},
|
|
8023
|
+
{
|
|
8024
|
+
"name": "endDate",
|
|
8025
|
+
"decorators": [],
|
|
8026
|
+
"description": "Конечная дата",
|
|
8027
|
+
"required": true,
|
|
8028
|
+
"type": "Date",
|
|
8029
|
+
"example": null
|
|
8030
|
+
},
|
|
7864
8031
|
{
|
|
7865
8032
|
"name": "id",
|
|
7866
8033
|
"decorators": [],
|
|
@@ -7869,6 +8036,14 @@
|
|
|
7869
8036
|
"type": "number",
|
|
7870
8037
|
"example": null
|
|
7871
8038
|
},
|
|
8039
|
+
{
|
|
8040
|
+
"name": "startDate",
|
|
8041
|
+
"decorators": [],
|
|
8042
|
+
"description": "Начальная дата",
|
|
8043
|
+
"required": true,
|
|
8044
|
+
"type": "Date",
|
|
8045
|
+
"example": null
|
|
8046
|
+
},
|
|
7872
8047
|
{
|
|
7873
8048
|
"name": "title",
|
|
7874
8049
|
"decorators": [],
|
|
@@ -7943,14 +8118,6 @@
|
|
|
7943
8118
|
"type": "string",
|
|
7944
8119
|
"example": null
|
|
7945
8120
|
},
|
|
7946
|
-
{
|
|
7947
|
-
"name": "date",
|
|
7948
|
-
"decorators": [],
|
|
7949
|
-
"description": "Дата",
|
|
7950
|
-
"required": true,
|
|
7951
|
-
"type": "Date",
|
|
7952
|
-
"example": null
|
|
7953
|
-
},
|
|
7954
8121
|
{
|
|
7955
8122
|
"name": "description",
|
|
7956
8123
|
"decorators": [],
|
|
@@ -7959,6 +8126,14 @@
|
|
|
7959
8126
|
"type": "string",
|
|
7960
8127
|
"example": null
|
|
7961
8128
|
},
|
|
8129
|
+
{
|
|
8130
|
+
"name": "endDate",
|
|
8131
|
+
"decorators": [],
|
|
8132
|
+
"description": "Конечная дата",
|
|
8133
|
+
"required": true,
|
|
8134
|
+
"type": "Date",
|
|
8135
|
+
"example": null
|
|
8136
|
+
},
|
|
7962
8137
|
{
|
|
7963
8138
|
"name": "eventGroupId",
|
|
7964
8139
|
"decorators": [],
|
|
@@ -7975,6 +8150,14 @@
|
|
|
7975
8150
|
"type": "number",
|
|
7976
8151
|
"example": null
|
|
7977
8152
|
},
|
|
8153
|
+
{
|
|
8154
|
+
"name": "startDate",
|
|
8155
|
+
"decorators": [],
|
|
8156
|
+
"description": "Начальная дата",
|
|
8157
|
+
"required": true,
|
|
8158
|
+
"type": "Date",
|
|
8159
|
+
"example": null
|
|
8160
|
+
},
|
|
7978
8161
|
{
|
|
7979
8162
|
"name": "title",
|
|
7980
8163
|
"decorators": [],
|
|
@@ -7982,6 +8165,50 @@
|
|
|
7982
8165
|
"required": true,
|
|
7983
8166
|
"type": "string",
|
|
7984
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
|
|
7985
8212
|
}
|
|
7986
8213
|
],
|
|
7987
8214
|
"methods": []
|
|
@@ -8022,6 +8249,72 @@
|
|
|
8022
8249
|
],
|
|
8023
8250
|
"methods": []
|
|
8024
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
|
+
},
|
|
8025
8318
|
"ICardHeader": {
|
|
8026
8319
|
"name": "ICardHeader",
|
|
8027
8320
|
"moduleName": "ui/content/Card/Card",
|
|
@@ -10054,6 +10347,15 @@
|
|
|
10054
10347
|
"Partial<HTMLElement>"
|
|
10055
10348
|
],
|
|
10056
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
|
+
},
|
|
10057
10359
|
{
|
|
10058
10360
|
"name": "name",
|
|
10059
10361
|
"decorators": [],
|
|
@@ -10113,6 +10415,14 @@
|
|
|
10113
10415
|
"IIconProps"
|
|
10114
10416
|
],
|
|
10115
10417
|
"properties": [
|
|
10418
|
+
{
|
|
10419
|
+
"name": "dataIcon",
|
|
10420
|
+
"decorators": [],
|
|
10421
|
+
"description": "Дополнительные данные которые попадут в дата аттрибут data-icon",
|
|
10422
|
+
"required": false,
|
|
10423
|
+
"type": "any",
|
|
10424
|
+
"example": null
|
|
10425
|
+
},
|
|
10116
10426
|
{
|
|
10117
10427
|
"name": "icon",
|
|
10118
10428
|
"decorators": [],
|
|
@@ -28252,17 +28562,17 @@
|
|
|
28252
28562
|
{
|
|
28253
28563
|
"name": "onChange",
|
|
28254
28564
|
"decorators": [],
|
|
28255
|
-
"description": "
|
|
28565
|
+
"description": "Функция, вызываемая в момент перетаскивания tip'а у слайдера",
|
|
28256
28566
|
"required": false,
|
|
28257
|
-
"type": "
|
|
28258
|
-
"example":
|
|
28567
|
+
"type": "void",
|
|
28568
|
+
"example": "{\n () => console.log('Slider is moving')\n}",
|
|
28259
28569
|
"parameters": [
|
|
28260
28570
|
{
|
|
28261
|
-
"name": "
|
|
28571
|
+
"name": "value",
|
|
28262
28572
|
"decorators": [],
|
|
28263
28573
|
"description": "",
|
|
28264
28574
|
"required": true,
|
|
28265
|
-
"type": "any
|
|
28575
|
+
"type": "any",
|
|
28266
28576
|
"example": null
|
|
28267
28577
|
}
|
|
28268
28578
|
]
|
|
@@ -28552,17 +28862,17 @@
|
|
|
28552
28862
|
{
|
|
28553
28863
|
"name": "onChange",
|
|
28554
28864
|
"decorators": [],
|
|
28555
|
-
"description": "
|
|
28865
|
+
"description": "Функция, вызываемая в момент перетаскивания tip'а у слайдера",
|
|
28556
28866
|
"required": false,
|
|
28557
|
-
"type": "
|
|
28558
|
-
"example":
|
|
28867
|
+
"type": "void",
|
|
28868
|
+
"example": "{\n () => console.log('Slider is moving')\n}",
|
|
28559
28869
|
"parameters": [
|
|
28560
28870
|
{
|
|
28561
|
-
"name": "
|
|
28871
|
+
"name": "value",
|
|
28562
28872
|
"decorators": [],
|
|
28563
28873
|
"description": "",
|
|
28564
28874
|
"required": true,
|
|
28565
|
-
"type": "any
|
|
28875
|
+
"type": "any",
|
|
28566
28876
|
"example": null
|
|
28567
28877
|
}
|
|
28568
28878
|
]
|
|
@@ -39241,7 +39551,7 @@
|
|
|
39241
39551
|
"name": "ITreeProps",
|
|
39242
39552
|
"moduleName": "ui/nav/Tree/Tree",
|
|
39243
39553
|
"title": "Tree",
|
|
39244
|
-
"description": "Компонент, который представляет в виде дерева список с иерархической структурой
|
|
39554
|
+
"description": "Компонент, который представляет в виде дерева список с иерархической структурой данных\n\nДополнительный функционал: в кастомном view компонента есть возможность реализовать кнопку, по клику на которую\nбудет вызываться функция props.onItemFocus. Данная функция \"находит\" текущий роут в дереве -\nраскрывает родительские уровни, делает элемент активным.\nДанная функция не включает скролл к активному компоненту внутри дерева, это также необходимо\nреализовать в кастомном view локально в проекте.\n",
|
|
39245
39555
|
"tags": {},
|
|
39246
39556
|
"defaultProps": {
|
|
39247
39557
|
"autoOpenLevels": "1",
|
|
@@ -39687,6 +39997,15 @@
|
|
|
39687
39997
|
"example": null
|
|
39688
39998
|
}
|
|
39689
39999
|
]
|
|
40000
|
+
},
|
|
40001
|
+
{
|
|
40002
|
+
"name": "onItemFocus",
|
|
40003
|
+
"decorators": [],
|
|
40004
|
+
"description": "",
|
|
40005
|
+
"required": false,
|
|
40006
|
+
"type": "void",
|
|
40007
|
+
"example": null,
|
|
40008
|
+
"parameters": []
|
|
39690
40009
|
}
|
|
39691
40010
|
]
|
|
39692
40011
|
},
|
|
@@ -40033,7 +40352,7 @@
|
|
|
40033
40352
|
"decorators": [],
|
|
40034
40353
|
"description": "",
|
|
40035
40354
|
"required": true,
|
|
40036
|
-
"type": "\"title\" | \"eventGroupId\" | \"
|
|
40355
|
+
"type": "\"title\" | \"eventGroupId\" | \"description\" | \"startDate\" | \"endDate\" | \"id\" | \"usersIds\"",
|
|
40037
40356
|
"example": null
|
|
40038
40357
|
},
|
|
40039
40358
|
"ICardViewProps": {
|
|
@@ -42486,6 +42805,14 @@
|
|
|
42486
42805
|
"description": "",
|
|
42487
42806
|
"tags": {},
|
|
42488
42807
|
"properties": [
|
|
42808
|
+
{
|
|
42809
|
+
"name": "DAY",
|
|
42810
|
+
"decorators": [],
|
|
42811
|
+
"description": "",
|
|
42812
|
+
"required": true,
|
|
42813
|
+
"type": "string",
|
|
42814
|
+
"example": null
|
|
42815
|
+
},
|
|
42489
42816
|
{
|
|
42490
42817
|
"name": "MONTH",
|
|
42491
42818
|
"decorators": [],
|
|
@@ -42702,6 +43029,105 @@
|
|
|
42702
43029
|
}
|
|
42703
43030
|
]
|
|
42704
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
|
+
},
|
|
42705
43131
|
"ui/content/Chart/Chart": {
|
|
42706
43132
|
"name": "default",
|
|
42707
43133
|
"moduleName": "ui/content/Chart/Chart",
|