aefis-core-ui 4.0.0-rc8 → 4.0.0
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/dist/index.d.ts +13 -1
- package/dist/index.modern.css +163 -163
- package/dist/index.modern.css.map +1 -1
- package/dist/index.modern.js +12521 -11256
- package/dist/index.modern.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import AutoCompleteAddable from "./components/AutoCompleteAddable/AutoCompleteAddable";
|
|
1
2
|
import EditableDatatable from "./components/UnstableEditableTable/EditableDataTable";
|
|
2
3
|
import UnstableDataTable from "./components/UnstableDataTable/DataTable";
|
|
3
4
|
import UnstableRichDataTable from "./components/UnstableRichDataTable/RichDataTable";
|
|
@@ -9,6 +10,7 @@ import AppToolbar from "./components/AppToolbar/AppToolbar";
|
|
|
9
10
|
import AssessmentPerformanceChart from "./components/AssessmentPerformanceChart/AssessmentPerformanceChart";
|
|
10
11
|
import AvatarBox from "./components/AvatarBox/AvatarBox";
|
|
11
12
|
import AvatarTitle from "./components/AvatarTitle/AvatarTitle";
|
|
13
|
+
import Box from "./components/MUI/Box/Box";
|
|
12
14
|
import Breadcrumbs from "./components/Breadcrumbs/Breadcrumbs";
|
|
13
15
|
import BusinessObjectHeader from "./components/BusinessObjectHeader/BusinessObjectHeader";
|
|
14
16
|
import BusinessObject from "./components/BusinessObject/BusinessObject";
|
|
@@ -48,6 +50,7 @@ import createEvent from "./services/createEvent";
|
|
|
48
50
|
import createStore from "./services/createStore";
|
|
49
51
|
import CurriculumChart from "./components/CurriculumChart/CurriculumChart";
|
|
50
52
|
import * as dataSourceManager from "./services/dataSourceManager";
|
|
53
|
+
import Divider from "./components/MUI/Divider/Divider";
|
|
51
54
|
import { getConfiguration } from "./services/dataSourceManager";
|
|
52
55
|
import { setDataSourceConfiguration } from "./services/dataSourceManager";
|
|
53
56
|
import { registerDataSource } from "./services/dataSourceManager";
|
|
@@ -70,10 +73,12 @@ import FilterPanel from "./components/FilterPanel/FilterPanel";
|
|
|
70
73
|
import FilterPanelFilterChips from "./components/FilterPanel/components/FilterChips/FilterChips";
|
|
71
74
|
import FilterPanelMapFilters from "./components/FilterPanel/utils/mapFilters";
|
|
72
75
|
import FullPageViewer from "./components/FullPageViewer/FullPageViewer";
|
|
76
|
+
import Grid from "./components/MUI/Grid/Grid";
|
|
73
77
|
import http from "./services/http";
|
|
74
78
|
import Icon from "./Icon";
|
|
75
79
|
import Image from "./components/Image/Image";
|
|
76
80
|
import IsometricImage from "./components/IsometricImage/IsometricImage";
|
|
81
|
+
import Link from "./components/MUI/Link/Link";
|
|
77
82
|
import List from "./components/List/List";
|
|
78
83
|
import ListItem from "./components/ListItem/ListItem";
|
|
79
84
|
import ListItemGroup from "./components/ListItemGroup/ListItemGroup";
|
|
@@ -85,6 +90,7 @@ import Notification from "./components/Notification/Notification";
|
|
|
85
90
|
import OutcomeSpace from "./components/OutcomeSpace/OutcomeSpace";
|
|
86
91
|
import { outcomeSpaceColor } from "./components/OutcomeSpace/OutcomeSpace";
|
|
87
92
|
import { outcomeSpaceTypeFromSource } from "./components/OutcomeSpace/OutcomeSpace";
|
|
93
|
+
import Paper from "./components/MUI/Paper/Paper";
|
|
88
94
|
import PanelDrawer from "./components/PanelDrawer/PanelDrawer";
|
|
89
95
|
import ProgressChart from "./components/ProgressChart/ProgressChart";
|
|
90
96
|
import RichDataTable from "./components/RichDataTable/RichDataTable";
|
|
@@ -96,6 +102,7 @@ import ScrollToTopButton from "./components/ScrollToTopButton/ScrollToTopButton"
|
|
|
96
102
|
import ScrollingContainer from "./components/ScrollingContainer/ScrollingContainer";
|
|
97
103
|
import SentimentScale from "./components/SentimentScale/SentimentScale";
|
|
98
104
|
import SkeletonContent from "./components/SkeletonContent/SkeletonContent";
|
|
105
|
+
import Stack from "./components/MUI/Stack/Stack";
|
|
99
106
|
import StatBoxes from "./components/StatBoxes/StatBoxes";
|
|
100
107
|
import StatRow from "./components/StatRow/StatRow";
|
|
101
108
|
import StatusMessage from "./components/StatusMessage/StatusMessage";
|
|
@@ -106,10 +113,12 @@ import TabPanels from "./components/TabPanels/TabPanels";
|
|
|
106
113
|
import template from "./utils/template";
|
|
107
114
|
import TextBuilder from "./components/TextBuilder/TextBuilder";
|
|
108
115
|
import * as TextBuilderStore from "./components/TextBuilder/store/store";
|
|
116
|
+
import TextField from "./components/MUI/TextField/TextField";
|
|
109
117
|
import Timeline from "./components/Timeline/Timeline";
|
|
110
118
|
import TitleAndActionHeader from "./components/TitleAndActionHeader/TitleAndActionHeader";
|
|
111
119
|
import { FilterButton as TitleAndActionHeaderFilterButton } from "./components/TitleAndActionHeader/components/FilterButton/FilterButton";
|
|
112
120
|
import TitleAndDescription from "./components/TitleAndDescription/TitleAndDescription";
|
|
121
|
+
import Tooltip from "./components/MUI/Tooltip/Tooltip";
|
|
113
122
|
import useComponentWillMount from "./hooks/useComponentWillMount/useComponentWillMount";
|
|
114
123
|
import useDataSourceUrl from "./hooks/useDataSourceUrl/useDataSourceUrl";
|
|
115
124
|
import useDebounceCallback from "./hooks/useDebounceCallback/useDebounceCallback";
|
|
@@ -129,10 +138,13 @@ import UnstableScrollingContainer from "./components/UnstableScrollingContainer/
|
|
|
129
138
|
import UnstableAvatarTitle from "./components/AvatarTitle/UnstableAvatarTitle";
|
|
130
139
|
import Widget from "./components/Widget/Widget";
|
|
131
140
|
import TextTransition from "./components/TextTransition/TextTransition";
|
|
141
|
+
import Typography from "./components/MUI/Typography/Typography";
|
|
132
142
|
import SurveyComments from "./components/SurveyComments/SurveyComments";
|
|
133
143
|
import IconButton from "./components/IconButton/IconButton";
|
|
134
144
|
import FilterPanelWithTextSearch from "./components/FilterPanelWithTextSearch/FilterPanelWithTextSearch";
|
|
145
|
+
import FocusWrapper from "./components/FocusWrapper/FocusWrapper";
|
|
146
|
+
import useZoomLevel from "./hooks/useZoomLevel/useZoomLevel";
|
|
135
147
|
import { useSelectFormState } from "./components/DynamicForm/store";
|
|
136
148
|
import { useSetFormState } from "./components/DynamicForm/store";
|
|
137
149
|
import useReadOnly from "./components/DynamicForm/hooks/useReadOnly/useReadOnly";
|
|
138
|
-
export { EditableDatatable, UnstableDataTable, UnstableRichDataTable, Actions, ActionButtons, ActionMenuButton, Alert, AppToolbar, AssessmentPerformanceChart, AvatarBox, AvatarTitle, Breadcrumbs, BusinessObjectHeader, BusinessObject, businessObjectColor, businessObjectConfiguration, businessObjectIcon, businessObjectIconName, BusinessObjectCard, BusinessObjectCardSectionTitle, BusinessObjectCardEmptySection, BusinessObjectCardSection, BusinessObjectPanel, BusinessObjectPanelHeader, BusinessObjectPanelSection, BusinessObjectPanelSectionTitle, BusinessObjectPicker, BusinessObjectStatus, BusinessObjectStatusButton, Collapsible, CollapsibleProvider, useCollapsibleState, CollapsibleContent, CollapsibleContentContainer, CollapsibleContentButton, CollapsibleContentButtonContainer, withStatusButtonDataSource, BusinessObjectTable, Button, Footer, Chip, ChipList, ContactForm, ContentBox, ContentBoxHeader, CoreProvider, createEvent, createStore, CurriculumChart, dataSourceManager, getConfiguration, setDataSourceConfiguration, registerDataSource, registerDataSources, useDataSourceQuery, useDataSourceInfiniteQuery, useDataSourceMutation, filterSortData, getBaseUrl, getDataSourceUrl, DataTable, DateTitle, DynamicForm, DatePicker, DisplayInFrame, DocViewer, Drawer, EditableText, FilterPanel, FilterPanelFilterChips, FilterPanelMapFilters, FullPageViewer, http, Icon, Image, IsometricImage, List, ListItem, ListItemGroup, MenuButton, ModalDialog, Navigation, NavigationDrawer, Notification, OutcomeSpace, outcomeSpaceColor, outcomeSpaceTypeFromSource, PanelDrawer, ProgressChart, RichDataTable, RubricDistributionChart, RubricScoreSlider, RubricLegend, SaveModal, ScrollToTopButton, ScrollingContainer, SentimentScale, SkeletonContent, StatBoxes, StatRow, StatusMessage, SvgImage, SwipeableTabPanel, SwipeableTabPanelContent, TabPanels, template, TextBuilder, TextBuilderStore, Timeline, TitleAndActionHeader, TitleAndActionHeaderFilterButton, TitleAndDescription, useComponentWillMount, useDataSourceUrl, useDebounceCallback, useNotify, UserAvatar, WizardPanel, WizardCompletedItemList, useRefDimensions, createComponentEvent, DynamicFormBusinessObjectPickerField, UnstableScrollingContainer, UnstableAvatarTitle, Widget, TextTransition, SurveyComments, IconButton, FilterPanelWithTextSearch };
|
|
150
|
+
export { AutoCompleteAddable, EditableDatatable, UnstableDataTable, UnstableRichDataTable, Actions, ActionButtons, ActionMenuButton, Alert, AppToolbar, AssessmentPerformanceChart, AvatarBox, AvatarTitle, Box, Breadcrumbs, BusinessObjectHeader, BusinessObject, businessObjectColor, businessObjectConfiguration, businessObjectIcon, businessObjectIconName, BusinessObjectCard, BusinessObjectCardSectionTitle, BusinessObjectCardEmptySection, BusinessObjectCardSection, BusinessObjectPanel, BusinessObjectPanelHeader, BusinessObjectPanelSection, BusinessObjectPanelSectionTitle, BusinessObjectPicker, BusinessObjectStatus, BusinessObjectStatusButton, Collapsible, CollapsibleProvider, useCollapsibleState, CollapsibleContent, CollapsibleContentContainer, CollapsibleContentButton, CollapsibleContentButtonContainer, withStatusButtonDataSource, BusinessObjectTable, Button, Footer, Chip, ChipList, ContactForm, ContentBox, ContentBoxHeader, CoreProvider, createEvent, createStore, CurriculumChart, dataSourceManager, Divider, getConfiguration, setDataSourceConfiguration, registerDataSource, registerDataSources, useDataSourceQuery, useDataSourceInfiniteQuery, useDataSourceMutation, filterSortData, getBaseUrl, getDataSourceUrl, DataTable, DateTitle, DynamicForm, DatePicker, DisplayInFrame, DocViewer, Drawer, EditableText, FilterPanel, FilterPanelFilterChips, FilterPanelMapFilters, FullPageViewer, Grid, http, Icon, Image, IsometricImage, Link, List, ListItem, ListItemGroup, MenuButton, ModalDialog, Navigation, NavigationDrawer, Notification, OutcomeSpace, outcomeSpaceColor, outcomeSpaceTypeFromSource, Paper, PanelDrawer, ProgressChart, RichDataTable, RubricDistributionChart, RubricScoreSlider, RubricLegend, SaveModal, ScrollToTopButton, ScrollingContainer, SentimentScale, SkeletonContent, Stack, StatBoxes, StatRow, StatusMessage, SvgImage, SwipeableTabPanel, SwipeableTabPanelContent, TabPanels, template, TextBuilder, TextBuilderStore, TextField, Timeline, TitleAndActionHeader, TitleAndActionHeaderFilterButton, TitleAndDescription, Tooltip, useComponentWillMount, useDataSourceUrl, useDebounceCallback, useNotify, UserAvatar, WizardPanel, WizardCompletedItemList, useRefDimensions, createComponentEvent, DynamicFormBusinessObjectPickerField, UnstableScrollingContainer, UnstableAvatarTitle, Widget, TextTransition, Typography, SurveyComments, IconButton, FilterPanelWithTextSearch, FocusWrapper, useZoomLevel };
|
package/dist/index.modern.css
CHANGED
|
@@ -1,169 +1,6 @@
|
|
|
1
1
|
.apexcharts-svg {
|
|
2
2
|
overflow: visible;
|
|
3
3
|
}
|
|
4
|
-
/*
|
|
5
|
-
* Container style
|
|
6
|
-
*/
|
|
7
|
-
.ps {
|
|
8
|
-
overflow: hidden !important;
|
|
9
|
-
overflow-anchor: none;
|
|
10
|
-
-ms-overflow-style: none;
|
|
11
|
-
touch-action: auto;
|
|
12
|
-
-ms-touch-action: auto;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.ps__thumb-x {
|
|
16
|
-
display: none !important;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
/*
|
|
20
|
-
* Scrollbar rail styles
|
|
21
|
-
*/
|
|
22
|
-
.ps__rail-x {
|
|
23
|
-
display: none;
|
|
24
|
-
opacity: 0;
|
|
25
|
-
transition: background-color 0.2s linear, opacity 0.2s linear;
|
|
26
|
-
-webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
|
|
27
|
-
height: 15px;
|
|
28
|
-
/* there must be 'bottom' or 'top' for ps__rail-x */
|
|
29
|
-
bottom: 0px;
|
|
30
|
-
/* please don't change 'position' */
|
|
31
|
-
position: absolute;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.ps__rail-x:hover {
|
|
35
|
-
background-color: unset !important;
|
|
36
|
-
opacity: unset !important;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.ps__rail-y {
|
|
40
|
-
display: none;
|
|
41
|
-
opacity: 0;
|
|
42
|
-
transition: background-color 0.2s linear, opacity 0.2s linear;
|
|
43
|
-
-webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
|
|
44
|
-
width: 15px;
|
|
45
|
-
/* there must be 'right' or 'left' for ps__rail-y */
|
|
46
|
-
right: 0;
|
|
47
|
-
/* please don't change 'position' */
|
|
48
|
-
position: absolute;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.ps--active-x > .ps__rail-x,
|
|
52
|
-
.ps--active-y > .ps__rail-y {
|
|
53
|
-
display: block;
|
|
54
|
-
background-color: transparent;
|
|
55
|
-
z-index: 1001;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.ps:hover > .ps__rail-x,
|
|
59
|
-
.ps:hover > .ps__rail-y,
|
|
60
|
-
.ps--focus > .ps__rail-x,
|
|
61
|
-
.ps--focus > .ps__rail-y,
|
|
62
|
-
.ps--scrolling-x > .ps__rail-x,
|
|
63
|
-
.ps--scrolling-y > .ps__rail-y {
|
|
64
|
-
opacity: 0.6;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.ps .ps__rail-x:hover,
|
|
68
|
-
.ps .ps__rail-y:hover,
|
|
69
|
-
.ps .ps__rail-x:focus,
|
|
70
|
-
.ps .ps__rail-y:focus,
|
|
71
|
-
.ps .ps__rail-x.ps--clicking,
|
|
72
|
-
.ps .ps__rail-y.ps--clicking {
|
|
73
|
-
background-color: #eee;
|
|
74
|
-
opacity: 0.9;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
/*
|
|
78
|
-
* Scrollbar thumb styles
|
|
79
|
-
*/
|
|
80
|
-
.ps__thumb-x {
|
|
81
|
-
background-color: #aaa;
|
|
82
|
-
border-radius: 6px;
|
|
83
|
-
transition: background-color 0.2s linear, height 0.2s ease-in-out;
|
|
84
|
-
-webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
|
|
85
|
-
height: 6px;
|
|
86
|
-
/* there must be 'bottom' for ps__thumb-x */
|
|
87
|
-
bottom: 2px;
|
|
88
|
-
/* please don't change 'position' */
|
|
89
|
-
position: absolute;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.ps__thumb-y {
|
|
93
|
-
background-color: #aaa;
|
|
94
|
-
border-radius: 6px;
|
|
95
|
-
transition: background-color 0.2s linear, width 0.2s ease-in-out;
|
|
96
|
-
-webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
|
|
97
|
-
width: 6px;
|
|
98
|
-
/* there must be 'right' for ps__thumb-y */
|
|
99
|
-
right: 2px;
|
|
100
|
-
/* please don't change 'position' */
|
|
101
|
-
position: absolute;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.ps__rail-x:hover > .ps__thumb-x,
|
|
105
|
-
.ps__rail-x:focus > .ps__thumb-x,
|
|
106
|
-
.ps__rail-x.ps--clicking .ps__thumb-x {
|
|
107
|
-
background-color: #999;
|
|
108
|
-
height: 11px;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
.ps__rail-y:hover > .ps__thumb-y,
|
|
112
|
-
.ps__rail-y:focus > .ps__thumb-y,
|
|
113
|
-
.ps__rail-y.ps--clicking .ps__thumb-y {
|
|
114
|
-
background-color: #999;
|
|
115
|
-
width: 11px;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
/* MS supports */
|
|
119
|
-
@supports (-ms-overflow-style: none) {
|
|
120
|
-
.ps {
|
|
121
|
-
overflow: auto !important;
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
|
126
|
-
.ps {
|
|
127
|
-
overflow: auto !important;
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
.scrollbar-container {
|
|
131
|
-
position: relative;
|
|
132
|
-
height: 100%;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
/*# sourceMappingURL=styles.css.map*/
|
|
136
|
-
|
|
137
|
-
.ps .ps__rail-x:hover,
|
|
138
|
-
.ps .ps__rail-y:hover,
|
|
139
|
-
.ps .ps__rail-x:focus,
|
|
140
|
-
.ps .ps__rail-y:focus,
|
|
141
|
-
.ps .ps__rail-x.ps--clicking,
|
|
142
|
-
.ps .ps__rail-y.ps--clicking {
|
|
143
|
-
background-color: #eee;
|
|
144
|
-
opacity: 0.9;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
.ps__thumb-x {
|
|
148
|
-
background-color: #aaa;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
.ps__thumb-y {
|
|
152
|
-
background-color: #aaa;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
.ps__rail-x:hover > .ps__thumb-x,
|
|
156
|
-
.ps__rail-x:focus > .ps__thumb-x,
|
|
157
|
-
.ps__rail-x.ps--clicking .ps__thumb-x {
|
|
158
|
-
background-color: #999;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
.ps__rail-y:hover > .ps__thumb-y,
|
|
162
|
-
.ps__rail-y:focus > .ps__thumb-y,
|
|
163
|
-
.ps__rail-y.ps--clicking .ps__thumb-y {
|
|
164
|
-
background-color: #999;
|
|
165
|
-
}
|
|
166
|
-
|
|
167
4
|
.vertical-timeline * {
|
|
168
5
|
box-sizing: border-box;
|
|
169
6
|
}
|
|
@@ -528,6 +365,169 @@
|
|
|
528
365
|
}
|
|
529
366
|
}
|
|
530
367
|
|
|
368
|
+
/*
|
|
369
|
+
* Container style
|
|
370
|
+
*/
|
|
371
|
+
.ps {
|
|
372
|
+
overflow: hidden !important;
|
|
373
|
+
overflow-anchor: none;
|
|
374
|
+
-ms-overflow-style: none;
|
|
375
|
+
touch-action: auto;
|
|
376
|
+
-ms-touch-action: auto;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.ps__thumb-x {
|
|
380
|
+
display: none !important;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
/*
|
|
384
|
+
* Scrollbar rail styles
|
|
385
|
+
*/
|
|
386
|
+
.ps__rail-x {
|
|
387
|
+
display: none;
|
|
388
|
+
opacity: 0;
|
|
389
|
+
transition: background-color 0.2s linear, opacity 0.2s linear;
|
|
390
|
+
-webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
|
|
391
|
+
height: 15px;
|
|
392
|
+
/* there must be 'bottom' or 'top' for ps__rail-x */
|
|
393
|
+
bottom: 0px;
|
|
394
|
+
/* please don't change 'position' */
|
|
395
|
+
position: absolute;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
.ps__rail-x:hover {
|
|
399
|
+
background-color: unset !important;
|
|
400
|
+
opacity: unset !important;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.ps__rail-y {
|
|
404
|
+
display: none;
|
|
405
|
+
opacity: 0;
|
|
406
|
+
transition: background-color 0.2s linear, opacity 0.2s linear;
|
|
407
|
+
-webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
|
|
408
|
+
width: 15px;
|
|
409
|
+
/* there must be 'right' or 'left' for ps__rail-y */
|
|
410
|
+
right: 0;
|
|
411
|
+
/* please don't change 'position' */
|
|
412
|
+
position: absolute;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.ps--active-x > .ps__rail-x,
|
|
416
|
+
.ps--active-y > .ps__rail-y {
|
|
417
|
+
display: block;
|
|
418
|
+
background-color: transparent;
|
|
419
|
+
z-index: 1001;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.ps:hover > .ps__rail-x,
|
|
423
|
+
.ps:hover > .ps__rail-y,
|
|
424
|
+
.ps--focus > .ps__rail-x,
|
|
425
|
+
.ps--focus > .ps__rail-y,
|
|
426
|
+
.ps--scrolling-x > .ps__rail-x,
|
|
427
|
+
.ps--scrolling-y > .ps__rail-y {
|
|
428
|
+
opacity: 0.6;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
.ps .ps__rail-x:hover,
|
|
432
|
+
.ps .ps__rail-y:hover,
|
|
433
|
+
.ps .ps__rail-x:focus,
|
|
434
|
+
.ps .ps__rail-y:focus,
|
|
435
|
+
.ps .ps__rail-x.ps--clicking,
|
|
436
|
+
.ps .ps__rail-y.ps--clicking {
|
|
437
|
+
background-color: #eee;
|
|
438
|
+
opacity: 0.9;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
/*
|
|
442
|
+
* Scrollbar thumb styles
|
|
443
|
+
*/
|
|
444
|
+
.ps__thumb-x {
|
|
445
|
+
background-color: #aaa;
|
|
446
|
+
border-radius: 6px;
|
|
447
|
+
transition: background-color 0.2s linear, height 0.2s ease-in-out;
|
|
448
|
+
-webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
|
|
449
|
+
height: 6px;
|
|
450
|
+
/* there must be 'bottom' for ps__thumb-x */
|
|
451
|
+
bottom: 2px;
|
|
452
|
+
/* please don't change 'position' */
|
|
453
|
+
position: absolute;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
.ps__thumb-y {
|
|
457
|
+
background-color: #aaa;
|
|
458
|
+
border-radius: 6px;
|
|
459
|
+
transition: background-color 0.2s linear, width 0.2s ease-in-out;
|
|
460
|
+
-webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
|
|
461
|
+
width: 6px;
|
|
462
|
+
/* there must be 'right' for ps__thumb-y */
|
|
463
|
+
right: 2px;
|
|
464
|
+
/* please don't change 'position' */
|
|
465
|
+
position: absolute;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.ps__rail-x:hover > .ps__thumb-x,
|
|
469
|
+
.ps__rail-x:focus > .ps__thumb-x,
|
|
470
|
+
.ps__rail-x.ps--clicking .ps__thumb-x {
|
|
471
|
+
background-color: #999;
|
|
472
|
+
height: 11px;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
.ps__rail-y:hover > .ps__thumb-y,
|
|
476
|
+
.ps__rail-y:focus > .ps__thumb-y,
|
|
477
|
+
.ps__rail-y.ps--clicking .ps__thumb-y {
|
|
478
|
+
background-color: #999;
|
|
479
|
+
width: 11px;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
/* MS supports */
|
|
483
|
+
@supports (-ms-overflow-style: none) {
|
|
484
|
+
.ps {
|
|
485
|
+
overflow: auto !important;
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
|
490
|
+
.ps {
|
|
491
|
+
overflow: auto !important;
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
.scrollbar-container {
|
|
495
|
+
position: relative;
|
|
496
|
+
height: 100%;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
/*# sourceMappingURL=styles.css.map*/
|
|
500
|
+
|
|
501
|
+
.ps .ps__rail-x:hover,
|
|
502
|
+
.ps .ps__rail-y:hover,
|
|
503
|
+
.ps .ps__rail-x:focus,
|
|
504
|
+
.ps .ps__rail-y:focus,
|
|
505
|
+
.ps .ps__rail-x.ps--clicking,
|
|
506
|
+
.ps .ps__rail-y.ps--clicking {
|
|
507
|
+
background-color: #eee;
|
|
508
|
+
opacity: 0.9;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
.ps__thumb-x {
|
|
512
|
+
background-color: #aaa;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
.ps__thumb-y {
|
|
516
|
+
background-color: #aaa;
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
.ps__rail-x:hover > .ps__thumb-x,
|
|
520
|
+
.ps__rail-x:focus > .ps__thumb-x,
|
|
521
|
+
.ps__rail-x.ps--clicking .ps__thumb-x {
|
|
522
|
+
background-color: #999;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.ps__rail-y:hover > .ps__thumb-y,
|
|
526
|
+
.ps__rail-y:focus > .ps__thumb-y,
|
|
527
|
+
.ps__rail-y.ps--clicking .ps__thumb-y {
|
|
528
|
+
background-color: #999;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
531
|
.curriculum .react-flow {
|
|
532
532
|
width: 100%;
|
|
533
533
|
height: 100vh;
|