neo.mjs 6.17.2 → 6.18.1
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/apps/ServiceWorker.mjs +3 -5
- package/apps/colors/README.md +8 -0
- package/apps/colors/app.mjs +6 -0
- package/apps/colors/childapps/widget/app.mjs +7 -0
- package/apps/colors/childapps/widget/index.html +11 -0
- package/apps/colors/childapps/widget/neo-config.json +10 -0
- package/apps/colors/childapps/widget/view/Viewport.mjs +19 -0
- package/apps/colors/index.html +11 -0
- package/apps/colors/model/Color.mjs +43 -0
- package/apps/colors/neo-config.json +10 -0
- package/apps/colors/remotes-api.json +13 -0
- package/apps/colors/store/Colors.mjs +24 -0
- package/apps/colors/view/BarChartComponent.mjs +64 -0
- package/apps/colors/view/HeaderToolbar.mjs +95 -0
- package/apps/colors/view/PieChartComponent.mjs +58 -0
- package/apps/colors/view/TableContainer.mjs +91 -0
- package/apps/colors/view/Viewport.mjs +57 -0
- package/apps/colors/view/ViewportController.mjs +277 -0
- package/apps/colors/view/ViewportModel.mjs +53 -0
- package/apps/portal/Util.mjs +11 -0
- package/apps/portal/childapps/preview/neo-config.json +2 -2
- package/apps/portal/neo-config.json +2 -1
- package/apps/portal/remotes-api.json +13 -0
- package/apps/portal/view/HeaderToolbar.mjs +1 -1
- package/apps/portal/view/ViewportController.mjs +89 -1
- package/apps/portal/view/home/MainContainer.mjs +34 -6
- package/apps/portal/view/home/parts/AfterMath.mjs +1 -1
- package/apps/portal/view/home/parts/Colors.mjs +98 -0
- package/apps/portal/view/home/parts/Helix.mjs +114 -0
- package/apps/portal/view/home/parts/HelloWorld.mjs +6 -3
- package/apps/portal/view/home/parts/How.mjs +66 -0
- package/apps/portal/view/home/parts/MainNeo.mjs +4 -3
- package/apps/portal/view/learn/LivePreview.mjs +56 -15
- package/apps/portal/view/learn/MainContainerController.mjs +10 -90
- package/apps/realworld/api/Article.mjs +1 -3
- package/apps/realworld/api/Favorite.mjs +1 -3
- package/apps/realworld/api/Profile.mjs +1 -3
- package/apps/realworld/api/Tag.mjs +1 -3
- package/apps/realworld/api/User.mjs +1 -3
- package/apps/realworld2/api/Article.mjs +1 -3
- package/apps/realworld2/api/Favorite.mjs +1 -3
- package/apps/realworld2/api/Profile.mjs +1 -3
- package/apps/realworld2/api/Tag.mjs +1 -3
- package/apps/realworld2/api/User.mjs +1 -3
- package/apps/realworld2/view/article/HelixContainer.mjs +5 -5
- package/buildScripts/webpack/json/myApps.template.json +1 -0
- package/docs/app/view/MainContainer.mjs +5 -0
- package/docs/app/view/classdetails/MembersList.mjs +1 -1
- package/examples/ServiceWorker.mjs +3 -5
- package/examples/component/helix/Viewport.mjs +309 -0
- package/examples/component/helix/ViewportController.mjs +122 -0
- package/examples/component/helix/app.mjs +2 -2
- package/examples/component/helix/neo-config.json +0 -1
- package/examples/component/multiWindowHelix/Viewport.mjs +11 -3
- package/examples/component/multiWindowHelix/ViewportController.mjs +21 -9
- package/examples/component/multiWindowHelix/neo-config.json +0 -1
- package/examples/fieldWithPrefix/MainContainer.mjs +1 -6
- package/examples/list/animate/MainContainerController.mjs +1 -1
- package/examples/worker/task/MyTasks.mjs +1 -3
- package/package.json +2 -2
- package/resources/data/deck/learnneo/pages/Events.md +15 -9
- package/resources/data/deck/learnneo/pages/GuideEvents.md +254 -0
- package/resources/data/deck/learnneo/pages/WhyNeo-Speed.md +1 -1
- package/resources/images/logo/neo_logo_primary.svg +6 -0
- package/resources/images/logo/neo_logo_text_primary.svg +5 -0
- package/resources/scss/src/apps/colors/BarChartComponent.scss +3 -0
- package/resources/scss/src/apps/colors/HeaderToolbar.scss +11 -0
- package/resources/scss/src/apps/colors/PieChartComponent.scss +3 -0
- package/resources/scss/src/apps/colors/TableContainer.scss +64 -0
- package/resources/scss/src/apps/colors/Viewport.scss +9 -0
- package/resources/scss/src/apps/portal/HeaderToolbar.scss +142 -124
- package/resources/scss/src/apps/portal/home/MainContainer.scss +9 -22
- package/resources/scss/src/apps/portal/home/parts/MainNeo.scss +22 -0
- package/resources/scss/src/apps/portal/home/preview/PageCodeContainer.scss +1 -1
- package/resources/scss/src/examples/component/multiWindowHelix/Viewport.scss +3 -0
- package/resources/scss/src/form/field/CheckBox.scss +1 -0
- package/resources/scss/src/tab/header/Button.scss +2 -1
- package/resources/scss/theme-dark/Global.scss +8 -0
- package/resources/scss/theme-dark/button/Base.scss +1 -1
- package/resources/scss/theme-dark/tab/header/Button.scss +1 -0
- package/resources/scss/theme-light/Global.scss +8 -0
- package/resources/scss/theme-light/button/Base.scss +1 -1
- package/resources/scss/theme-light/tab/header/Button.scss +1 -0
- package/resources/scss/theme-neo-light/Global.scss +53 -53
- package/resources/scss/theme-neo-light/button/Base.scss +3 -4
- package/resources/scss/theme-neo-light/tab/header/Button.scss +6 -8
- package/src/DefaultConfig.mjs +2 -2
- package/src/Fetch.mjs +1 -3
- package/src/Main.mjs +13 -11
- package/src/MicroLoader.mjs +2 -2
- package/src/Neo.mjs +27 -26
- package/src/Xhr.mjs +1 -3
- package/src/button/Base.mjs +6 -4
- package/src/button/Split.mjs +10 -9
- package/src/calendar/view/EditEventContainer.mjs +13 -12
- package/src/calendar/view/MainContainer.mjs +40 -40
- package/src/calendar/view/MainContainerModel.mjs +5 -5
- package/src/calendar/view/SettingsContainer.mjs +11 -11
- package/src/calendar/view/YearComponent.mjs +73 -75
- package/src/calendar/view/calendars/ColorsList.mjs +2 -2
- package/src/calendar/view/calendars/EditContainer.mjs +2 -2
- package/src/calendar/view/calendars/List.mjs +12 -13
- package/src/calendar/view/month/Component.mjs +72 -73
- package/src/calendar/view/settings/GeneralContainer.mjs +5 -5
- package/src/calendar/view/settings/MonthContainer.mjs +5 -5
- package/src/calendar/view/settings/WeekContainer.mjs +6 -6
- package/src/calendar/view/settings/YearContainer.mjs +4 -4
- package/src/calendar/view/week/Component.mjs +47 -57
- package/src/calendar/view/week/EventDragZone.mjs +43 -50
- package/src/calendar/view/week/TimeAxisComponent.mjs +21 -21
- package/src/calendar/view/week/plugin/DragDrop.mjs +53 -45
- package/src/calendar/view/week/plugin/EventResizable.mjs +8 -3
- package/src/collection/Base.mjs +15 -22
- package/src/collection/Filter.mjs +4 -9
- package/src/collection/Sorter.mjs +6 -7
- package/src/component/Base.mjs +73 -41
- package/src/component/Canvas.mjs +9 -9
- package/src/component/Carousel.mjs +31 -33
- package/src/component/Chip.mjs +9 -9
- package/src/component/Circle.mjs +84 -91
- package/src/component/Clock.mjs +8 -8
- package/src/component/DateSelector.mjs +14 -15
- package/src/component/Gallery.mjs +82 -80
- package/src/component/Helix.mjs +131 -126
- package/src/component/Iframe.mjs +1 -1
- package/src/component/Label.mjs +1 -1
- package/src/component/Legend.mjs +3 -3
- package/src/component/Process.mjs +39 -37
- package/src/component/Splitter.mjs +9 -11
- package/src/component/StatusBadge.mjs +2 -3
- package/src/component/Timer.mjs +62 -68
- package/src/component/Toast.mjs +11 -11
- package/src/component/Video.mjs +7 -8
- package/src/component/mwc/Button.mjs +10 -10
- package/src/component/mwc/TextField.mjs +17 -17
- package/src/component/wrapper/AmChart.mjs +5 -5
- package/src/component/wrapper/CesiumJS.mjs +11 -17
- package/src/component/wrapper/GoogleMaps.mjs +58 -35
- package/src/component/wrapper/MapboxGL.mjs +112 -79
- package/src/container/Accordion.mjs +18 -20
- package/src/container/AccordionItem.mjs +12 -11
- package/src/container/Base.mjs +24 -23
- package/src/container/Panel.mjs +9 -9
- package/src/controller/Base.mjs +12 -14
- package/src/controller/Component.mjs +60 -66
- package/src/core/Base.mjs +5 -8
- package/src/core/IdGenerator.mjs +1 -3
- package/src/core/Observable.mjs +40 -24
- package/src/core/Util.mjs +5 -5
- package/src/data/Model.mjs +3 -3
- package/src/data/RecordFactory.mjs +3 -6
- package/src/data/Store.mjs +34 -34
- package/src/data/connection/Fetch.mjs +3 -3
- package/src/data/connection/WebSocket.mjs +21 -25
- package/src/data/connection/Xhr.mjs +31 -28
- package/src/date/DayViewComponent.mjs +1 -1
- package/src/date/SelectorContainer.mjs +2 -2
- package/src/dialog/Base.mjs +27 -25
- package/src/dialog/header/Toolbar.mjs +5 -4
- package/src/draggable/DragProxyComponent.mjs +7 -4
- package/src/draggable/DragZone.mjs +30 -30
- package/src/draggable/DropZone.mjs +7 -7
- package/src/draggable/list/DragZone.mjs +18 -18
- package/src/draggable/tab/header/toolbar/SortZone.mjs +7 -7
- package/src/draggable/toolbar/DragZone.mjs +15 -15
- package/src/draggable/toolbar/SortZone.mjs +30 -31
- package/src/draggable/tree/DragZone.mjs +9 -9
- package/src/filter/BooleanContainer.mjs +3 -3
- package/src/filter/NumberContainer.mjs +5 -5
- package/src/filter/ToggleOperatorsButton.mjs +5 -5
- package/src/form/Fieldset.mjs +26 -26
- package/src/form/field/Base.mjs +1 -1
- package/src/form/field/CheckBox.mjs +15 -16
- package/src/form/field/Color.mjs +13 -15
- package/src/form/field/ComboBox.mjs +16 -24
- package/src/form/field/Country.mjs +1 -1
- package/src/form/field/Date.mjs +3 -4
- package/src/form/field/Display.mjs +1 -1
- package/src/form/field/Email.mjs +2 -2
- package/src/form/field/Number.mjs +51 -56
- package/src/form/field/Picker.mjs +2 -2
- package/src/form/field/Radio.mjs +1 -1
- package/src/form/field/Range.mjs +7 -6
- package/src/form/field/Text.mjs +29 -36
- package/src/form/field/TextArea.mjs +9 -9
- package/src/form/field/Time.mjs +30 -30
- package/src/form/field/trigger/Base.mjs +19 -13
- package/src/form/field/trigger/Clear.mjs +13 -13
- package/src/form/field/trigger/CopyToClipboard.mjs +7 -7
- package/src/form/field/trigger/Picker.mjs +2 -2
- package/src/form/field/trigger/SpinDown.mjs +1 -1
- package/src/form/field/trigger/SpinUp.mjs +1 -1
- package/src/form/field/trigger/SpinUpDown.mjs +3 -3
- package/src/form/field/trigger/Time.mjs +3 -3
- package/src/grid/Container.mjs +33 -33
- package/src/grid/View.mjs +20 -22
- package/src/grid/header/Button.mjs +12 -12
- package/src/grid/header/Toolbar.mjs +4 -4
- package/src/layout/Base.mjs +5 -4
- package/src/layout/Card.mjs +15 -16
- package/src/layout/Fit.mjs +22 -8
- package/src/layout/Flexbox.mjs +30 -29
- package/src/layout/Form.mjs +15 -15
- package/src/layout/Grid.mjs +2 -2
- package/src/layout/HBox.mjs +3 -2
- package/src/layout/VBox.mjs +3 -2
- package/src/list/Base.mjs +45 -47
- package/src/list/Chip.mjs +4 -4
- package/src/list/Circle.mjs +3 -3
- package/src/list/Color.mjs +4 -4
- package/src/list/Component.mjs +10 -10
- package/src/list/plugin/Animate.mjs +18 -13
- package/src/main/DomAccess.mjs +92 -56
- package/src/main/DomEvents.mjs +38 -39
- package/src/main/addon/AmCharts.mjs +37 -37
- package/src/main/addon/AnalyticsByGoogle.mjs +4 -4
- package/src/main/addon/CesiumJS.mjs +8 -8
- package/src/main/addon/CloneNode.mjs +5 -5
- package/src/main/addon/Cookie.mjs +4 -4
- package/src/main/addon/DragDrop.mjs +35 -34
- package/src/main/addon/GoogleMaps.mjs +19 -19
- package/src/main/addon/IntersectionObserver.mjs +20 -1
- package/src/main/addon/LocalStorage.mjs +3 -3
- package/src/main/addon/MapboxGL.mjs +40 -41
- package/src/main/addon/MonacoEditor.mjs +5 -5
- package/src/main/addon/Mwc.mjs +6 -6
- package/src/main/addon/Navigator.mjs +35 -39
- package/src/main/addon/Popover.mjs +5 -6
- package/src/main/addon/PrefixField.mjs +1 -2
- package/src/main/addon/ServiceWorker.mjs +9 -9
- package/src/main/addon/Siesta.mjs +3 -2
- package/src/main/addon/Stylesheet.mjs +37 -37
- package/src/main/addon/WebComponent.mjs +2 -3
- package/src/main/addon/WindowPosition.mjs +18 -18
- package/src/main/draggable/sensor/Base.mjs +2 -2
- package/src/main/draggable/sensor/Mouse.mjs +15 -15
- package/src/main/draggable/sensor/Touch.mjs +24 -23
- package/src/main/mixin/DeltaUpdates.mjs +10 -12
- package/src/main/mixin/TouchDomEvents.mjs +6 -6
- package/src/manager/Base.mjs +4 -4
- package/src/manager/Component.mjs +41 -41
- package/src/manager/DomEvent.mjs +41 -44
- package/src/manager/Focus.mjs +14 -16
- package/src/manager/Instance.mjs +2 -4
- package/src/manager/Store.mjs +4 -8
- package/src/manager/Task.mjs +20 -22
- package/src/manager/Toast.mjs +14 -16
- package/src/manager/rpc/Api.mjs +1 -3
- package/src/manager/rpc/Message.mjs +16 -18
- package/src/menu/List.mjs +16 -16
- package/src/menu/Panel.mjs +4 -4
- package/src/model/Component.mjs +16 -14
- package/src/plugin/Base.mjs +2 -0
- package/src/plugin/Popover.mjs +1 -1
- package/src/plugin/PrefixField.mjs +35 -45
- package/src/plugin/Resizable.mjs +86 -101
- package/src/plugin/Responsive.mjs +1 -1
- package/src/remotes/Api.mjs +4 -6
- package/src/selection/CircleModel.mjs +12 -16
- package/src/selection/DateSelectorModel.mjs +21 -23
- package/src/selection/GalleryModel.mjs +49 -63
- package/src/selection/HelixModel.mjs +35 -41
- package/src/selection/ListModel.mjs +9 -14
- package/src/selection/Model.mjs +31 -31
- package/src/selection/TreeAccordionModel.mjs +74 -80
- package/src/selection/grid/CellColumnModel.mjs +10 -10
- package/src/selection/grid/CellColumnRowModel.mjs +10 -10
- package/src/selection/grid/CellModel.mjs +26 -28
- package/src/selection/grid/CellRowModel.mjs +24 -24
- package/src/selection/grid/ColumnModel.mjs +16 -20
- package/src/selection/grid/RowModel.mjs +27 -29
- package/src/selection/menu/ListModel.mjs +2 -2
- package/src/selection/table/CellColumnModel.mjs +12 -12
- package/src/selection/table/CellColumnRowModel.mjs +12 -12
- package/src/selection/table/CellModel.mjs +26 -29
- package/src/selection/table/CellRowModel.mjs +19 -19
- package/src/selection/table/ColumnModel.mjs +18 -22
- package/src/selection/table/RowModel.mjs +27 -29
- package/src/sitemap/Component.mjs +20 -20
- package/src/sitemap/Store.mjs +1 -1
- package/src/tab/Container.mjs +15 -15
- package/src/tab/Strip.mjs +1 -1
- package/src/tab/header/Toolbar.mjs +4 -4
- package/src/table/Container.mjs +8 -10
- package/src/table/View.mjs +29 -34
- package/src/table/header/Button.mjs +18 -18
- package/src/table/header/Toolbar.mjs +2 -2
- package/src/toolbar/Base.mjs +14 -14
- package/src/toolbar/Breadcrumb.mjs +11 -11
- package/src/toolbar/Paging.mjs +18 -18
- package/src/tooltip/Base.mjs +20 -22
- package/src/tree/Accordion.mjs +69 -75
- package/src/tree/List.mjs +22 -25
- package/src/util/Array.mjs +19 -18
- package/src/util/ClassSystem.mjs +9 -9
- package/src/util/Css.mjs +2 -2
- package/src/util/Date.mjs +9 -9
- package/src/util/Function.mjs +2 -2
- package/src/util/HashHistory.mjs +3 -5
- package/src/util/KeyNavigation.mjs +17 -17
- package/src/util/Logger.mjs +9 -9
- package/src/util/Matrix.mjs +19 -19
- package/src/util/String.mjs +9 -9
- package/src/util/Style.mjs +11 -11
- package/src/util/VDom.mjs +12 -14
- package/src/util/VNode.mjs +29 -29
- package/src/vdom/Helper.mjs +84 -93
- package/src/vdom/VNode.mjs +1 -1
- package/src/worker/App.mjs +19 -16
- package/src/worker/Base.mjs +14 -15
- package/src/worker/Canvas.mjs +1 -3
- package/src/worker/Data.mjs +4 -8
- package/src/worker/Manager.mjs +27 -32
- package/src/worker/Message.mjs +1 -1
- package/src/worker/ServiceBase.mjs +38 -42
- package/src/worker/Task.mjs +1 -3
- package/src/worker/VDom.mjs +2 -4
- package/src/worker/mixin/RemoteMethodAccess.mjs +5 -6
- package/apps/portal/view/home/parts/CoolStuff.mjs +0 -82
- package/examples/component/helix/MainContainer.mjs +0 -340
- /package/resources/images/{Neo_Logo_Blue.svg → logo/neo_logo_secondary.svg} +0 -0
- /package/resources/images/{Neo_Logo_Text.svg → logo/neo_logo_text_secondary.svg} +0 -0
- /package/resources/images/{Neo_Logo_White.svg → logo/neo_logo_white.svg} +0 -0
@@ -1,55 +1,54 @@
|
|
1
1
|
.learnneo-header-toolbar {
|
2
|
-
|
2
|
+
border-bottom: 1px solid #f2f2f2;
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
}
|
7
|
-
|
8
|
-
.neo-button {
|
9
|
-
margin-left: 10px;
|
10
|
-
|
11
|
-
&.no-text {
|
12
|
-
margin-left: 0;
|
13
|
-
width: 1.2em;
|
14
|
-
|
15
|
-
&.github-button {
|
16
|
-
margin-left: 5em;
|
17
|
-
}
|
18
|
-
|
19
|
-
.neo-button-glyph {
|
20
|
-
font-size: 24px;
|
21
|
-
}
|
4
|
+
.logo {
|
5
|
+
margin-left: 1em;
|
22
6
|
}
|
23
7
|
|
24
|
-
.neo-button
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
8
|
+
.neo-button {
|
9
|
+
margin-left: 10px;
|
10
|
+
|
11
|
+
&.no-text {
|
12
|
+
margin-left: 0;
|
13
|
+
width : 1.2em;
|
14
|
+
|
15
|
+
&.github-button {
|
16
|
+
margin-left: 5em;
|
17
|
+
}
|
18
|
+
|
19
|
+
.neo-button-glyph {
|
20
|
+
font-size: 24px;
|
21
|
+
}
|
22
|
+
}
|
23
|
+
|
24
|
+
.neo-button-glyph {
|
25
|
+
&.neo-logo-blue {
|
26
|
+
background-image: url("../../../../../../resources/images/logo/neo_logo_primary.svg");
|
27
|
+
height : 24px;
|
28
|
+
width : 24px;
|
29
|
+
}
|
30
|
+
}
|
30
31
|
}
|
31
|
-
}
|
32
32
|
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
}
|
33
|
+
.separate-bar {
|
34
|
+
animation: fade-in-animation 200ms linear;
|
35
|
+
position: absolute;
|
36
|
+
right : 20px;
|
37
|
+
top : 60px;
|
38
|
+
transform: rotate(0);
|
39
|
+
width : 40px;
|
40
|
+
z-index : 9;
|
41
|
+
}
|
43
42
|
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
43
|
+
// find parallel class hide-sidebar
|
44
|
+
&:has(+div .hide-sidebar) .separate-bar {
|
45
|
+
animation: fade-animation 200ms linear forwards;
|
46
|
+
}
|
48
47
|
}
|
49
48
|
|
50
49
|
.vector {
|
51
|
-
|
52
|
-
|
50
|
+
animation: fade-and-scale-animation auto linear;
|
51
|
+
animation-timeline: --page-scroll;
|
53
52
|
}
|
54
53
|
|
55
54
|
//@scroll-timeline --page-scroll {
|
@@ -61,70 +60,71 @@
|
|
61
60
|
|
62
61
|
/* Style and position the progress bar */
|
63
62
|
#progress {
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
63
|
+
position: fixed;
|
64
|
+
z-index: 1000;
|
65
|
+
top: 0;
|
66
|
+
height: 2px;
|
67
|
+
width: 100%;
|
68
|
+
background: var(--button-background-color);
|
69
|
+
background: var(--sem-color-surface-primary-background);
|
71
70
|
|
72
|
-
|
73
|
-
|
71
|
+
scale: 0 1;
|
72
|
+
transform-origin: left;
|
74
73
|
|
75
|
-
|
76
|
-
|
77
|
-
|
74
|
+
/* Attach the animation using an anonymous Scroll Progress Timeline */
|
75
|
+
animation: grow-progress linear;
|
76
|
+
animation-timeline: --page-scroll;
|
78
77
|
}
|
79
78
|
|
80
79
|
@keyframes grow-progress {
|
81
|
-
|
80
|
+
to {
|
81
|
+
scale: 1 1;
|
82
|
+
}
|
82
83
|
}
|
83
84
|
|
84
85
|
.hello-world {
|
85
|
-
|
86
|
+
animation-timeline: view(block 100% -500%);
|
86
87
|
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
88
|
+
animation-name: appear-animation;
|
89
|
+
animation-fill-mode: both;
|
90
|
+
animation-duration: 1ms; /* Firefox requires this to apply the animation */
|
91
|
+
animation-timing-function: linear;
|
91
92
|
}
|
92
93
|
|
93
94
|
@keyframes appear-animation {
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
95
|
+
0% {
|
96
|
+
transform: translateX(-400%);
|
97
|
+
opacity : 0;
|
98
|
+
}
|
99
|
+
90% {
|
100
|
+
opacity: .3;
|
101
|
+
}
|
102
|
+
100% {
|
103
|
+
transform: translateX(0);
|
104
|
+
opacity : 1;
|
105
|
+
}
|
105
106
|
}
|
106
107
|
|
107
108
|
.cool-stuff {
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
animation-timing-function: linear;
|
109
|
+
animation-timeline : view(block 100% -500%);
|
110
|
+
animation-name : appear-cool-stuff;
|
111
|
+
animation-fill-mode : both;
|
112
|
+
animation-duration : 1ms; /* Firefox requires this to apply the animation */
|
113
|
+
animation-timing-function: linear;
|
114
114
|
}
|
115
115
|
|
116
116
|
@keyframes appear-cool-stuff {
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
117
|
+
0% {
|
118
|
+
transform: translateX(400%);
|
119
|
+
opacity : 0;
|
120
|
+
}
|
121
|
+
90% {
|
122
|
+
opacity: .3;
|
123
|
+
}
|
124
|
+
100% {
|
125
|
+
transform: translateX(0);
|
126
|
+
opacity : 1;
|
127
|
+
}
|
128
128
|
}
|
129
129
|
|
130
130
|
|
@@ -133,65 +133,83 @@
|
|
133
133
|
//}
|
134
134
|
|
135
135
|
.portal-home-maincontainer {
|
136
|
-
|
136
|
+
scroll-timeline: --page-scroll block;
|
137
137
|
}
|
138
138
|
|
139
139
|
@keyframes rotateAnimation {
|
140
|
-
|
141
|
-
|
140
|
+
from {
|
141
|
+
transform: rotate(0deg);
|
142
|
+
}
|
143
|
+
to {
|
144
|
+
transform: rotate(360deg);
|
145
|
+
}
|
142
146
|
}
|
143
147
|
|
144
148
|
@keyframes fade-and-scale-animation {
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
149
|
+
0% {
|
150
|
+
opacity : 1;
|
151
|
+
transform: scale(1);
|
152
|
+
}
|
153
|
+
12%, 100% {
|
154
|
+
opacity : 0;
|
155
|
+
transform: scale(1.5);
|
156
|
+
}
|
153
157
|
}
|
154
158
|
|
155
159
|
@keyframes fade-in-animation {
|
156
|
-
|
157
|
-
|
160
|
+
from {
|
161
|
+
opacity: 0;
|
162
|
+
right : -10px
|
163
|
+
}
|
164
|
+
to {
|
165
|
+
opacity: 1;
|
166
|
+
right : 20px;
|
167
|
+
}
|
158
168
|
}
|
169
|
+
|
159
170
|
@keyframes fade-animation {
|
160
|
-
|
161
|
-
|
171
|
+
from {
|
172
|
+
opacity: 1;
|
173
|
+
right : 20px;
|
174
|
+
}
|
175
|
+
to {
|
176
|
+
opacity: 0;
|
177
|
+
right : -10px
|
178
|
+
}
|
162
179
|
}
|
163
180
|
|
164
181
|
.button-group {
|
165
|
-
|
182
|
+
overflow: visible;
|
166
183
|
}
|
167
184
|
|
168
185
|
.get-started-button {
|
169
|
-
|
170
|
-
|
186
|
+
opacity : 0;
|
187
|
+
animation: show-get-started-button 400ms 1300ms linear forwards;
|
171
188
|
}
|
172
189
|
|
173
190
|
.neo-github {
|
174
|
-
|
175
|
-
|
191
|
+
opacity : 0;
|
192
|
+
animation: show-github-button 600ms 1150ms linear forwards;
|
176
193
|
}
|
177
194
|
|
178
195
|
@keyframes show-get-started-button {
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
196
|
+
from {
|
197
|
+
opacity : 0;
|
198
|
+
transform: translate(70px, 30px);
|
199
|
+
}
|
200
|
+
to {
|
201
|
+
opacity : 1;
|
202
|
+
transform: translate(0, 0);
|
203
|
+
}
|
187
204
|
}
|
205
|
+
|
188
206
|
@keyframes show-github-button {
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
207
|
+
from {
|
208
|
+
opacity : 0;
|
209
|
+
transform: translate(-70px, 50px);
|
210
|
+
}
|
211
|
+
to {
|
212
|
+
opacity : 1;
|
213
|
+
transform: translate(0, 0);
|
214
|
+
}
|
197
215
|
}
|
@@ -9,11 +9,17 @@
|
|
9
9
|
|
10
10
|
.neo-h1 {
|
11
11
|
font-size: min(max(5.5vw, 30px), 64px);
|
12
|
+
text-align : center;
|
13
|
+
margin : 0;
|
14
|
+
line-height : 1em;
|
12
15
|
}
|
13
16
|
|
14
17
|
.neo-h2 {
|
15
18
|
font-size: min(max(3.5vw, 24px), 44px);
|
16
|
-
|
19
|
+
text-align : center;
|
20
|
+
margin : 0;
|
21
|
+
line-height : 1em;
|
22
|
+
}
|
17
23
|
|
18
24
|
.neo-content {
|
19
25
|
font-size: min(max(2.3vw, 16px), 30px);
|
@@ -24,27 +30,8 @@
|
|
24
30
|
}
|
25
31
|
}
|
26
32
|
|
27
|
-
.button-group {
|
28
|
-
display : flex !important;
|
29
|
-
flex-direction: row-reverse !important;
|
30
|
-
gap : 8px !important;
|
31
|
-
}
|
32
|
-
|
33
33
|
.neo-h1 {
|
34
|
-
font-size
|
35
|
-
font-weight
|
36
|
-
text-align : center;
|
37
|
-
margin-bottom: 1.25em;
|
38
|
-
}
|
39
|
-
|
40
|
-
.vector {
|
41
|
-
background-image : url("../../../../../../../resources/images/Neo_Logo_Text.svg");
|
42
|
-
background-position: center center;
|
43
|
-
background-repeat : no-repeat;
|
44
|
-
background-size : contain;
|
45
|
-
height : 10vW;
|
46
|
-
margin : 0 0 3rem 0;
|
47
|
-
max-height : 130px;
|
48
|
-
width : 100%;
|
34
|
+
font-size : 32px;
|
35
|
+
font-weight: 600;
|
49
36
|
}
|
50
37
|
}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
.portal-home-main-neo.page {
|
2
|
+
.button-group {
|
3
|
+
display : flex !important;
|
4
|
+
flex-direction: row-reverse !important;
|
5
|
+
gap : 8px !important;
|
6
|
+
}
|
7
|
+
|
8
|
+
.neo-h1 {
|
9
|
+
margin-bottom: 1.25em;
|
10
|
+
}
|
11
|
+
|
12
|
+
.vector {
|
13
|
+
background-image : url("../../../../../../../../resources/images/logo/neo_logo_text_primary.svg");
|
14
|
+
background-position: center center;
|
15
|
+
background-repeat : no-repeat;
|
16
|
+
background-size : contain;
|
17
|
+
height : 10vW;
|
18
|
+
margin : 0 0 3rem 0;
|
19
|
+
max-height : 130px;
|
20
|
+
width : 100%;
|
21
|
+
}
|
22
|
+
}
|
@@ -8,7 +8,7 @@
|
|
8
8
|
opacity: .4;
|
9
9
|
content: "";
|
10
10
|
background: {
|
11
|
-
image : url("../../../../../../../../resources/images/
|
11
|
+
image : url("../../../../../../../../resources/images/logo/neo_logo_secondary.svg");
|
12
12
|
size: auto 90%;
|
13
13
|
repeat: no-repeat;
|
14
14
|
position: center;
|
@@ -4,4 +4,12 @@
|
|
4
4
|
--neo-disabled-opacity: 0.5;
|
5
5
|
--neo-font-family : "Helvetica Neue", "Helvetica", "Arial", "Lucida Grande", sans-serif;
|
6
6
|
--neo-font-smoothing : antialiased;
|
7
|
+
|
8
|
+
p {
|
9
|
+
color : inherit;
|
10
|
+
font-family: inherit;
|
11
|
+
font-size : inherit;
|
12
|
+
font-weight: inherit;
|
13
|
+
line-height: inherit;
|
14
|
+
}
|
7
15
|
}
|
@@ -27,7 +27,7 @@ $text-color : #bbb;
|
|
27
27
|
--button-glyph-color-active : #{$text-color};
|
28
28
|
--button-glyph-color-disabled : #{$text-color};
|
29
29
|
--button-glyph-color-hover : #{$text-color};
|
30
|
-
--button-height :
|
30
|
+
--button-height : initial;
|
31
31
|
--button-margin : 2px;
|
32
32
|
--button-opacity-disabled : var(--neo-disabled-opacity);
|
33
33
|
--button-outline-active : none;
|
@@ -4,4 +4,12 @@
|
|
4
4
|
--neo-disabled-opacity: 0.5;
|
5
5
|
--neo-font-family : "Helvetica Neue", "Helvetica", "Arial", "Lucida Grande", sans-serif;
|
6
6
|
--neo-font-smoothing : antialiased;
|
7
|
+
|
8
|
+
p {
|
9
|
+
color : inherit;
|
10
|
+
font-family: inherit;
|
11
|
+
font-size : inherit;
|
12
|
+
font-weight: inherit;
|
13
|
+
line-height: inherit;
|
14
|
+
}
|
7
15
|
}
|
@@ -26,7 +26,7 @@ $text-color : #1c60a0;
|
|
26
26
|
--button-glyph-color-active : #{$text-color};
|
27
27
|
--button-glyph-color-disabled : #{$text-color};
|
28
28
|
--button-glyph-color-hover : #{$text-color};
|
29
|
-
--button-height :
|
29
|
+
--button-height : initial;
|
30
30
|
--button-margin : 2px;
|
31
31
|
--button-opacity-disabled : var(--neo-disabled-opacity);
|
32
32
|
--button-outline-active : none;
|
@@ -1,67 +1,67 @@
|
|
1
|
+
@import "../../../resources/scss/theme-neo-light/design-tokens/_all.scss";
|
2
|
+
|
1
3
|
:root .neo-theme-neo-light {
|
2
4
|
--neo-background-color: #fafafa;
|
3
5
|
--neo-color : #000;
|
4
6
|
--neo-disabled-opacity: 0.5;
|
5
7
|
--neo-font-family : 'Source Sans 3', sans-serif;
|
6
8
|
--neo-font-smoothing : antialiased;
|
7
|
-
}
|
8
9
|
|
9
|
-
|
10
|
+
h1 {
|
11
|
+
color : var(--sem-color-fg-neutral-contrast);
|
12
|
+
font-family : var(--core-fontfamily-sans);
|
13
|
+
font-size : var(--core-fontsize-h1);
|
14
|
+
font-weight : var(--core-fontweight-semibold);
|
15
|
+
letter-spacing : -0.02em;
|
16
|
+
line-height : var(--core-lineheight-headline);
|
17
|
+
}
|
10
18
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
}
|
19
|
+
h2 {
|
20
|
+
color : var(--sem-color-fg-neutral-contrast);
|
21
|
+
font-family : var(--core-fontfamily-sans);
|
22
|
+
font-size : var(--core-fontsize-h2);
|
23
|
+
font-weight : var(--core-fontweight-semibold);
|
24
|
+
letter-spacing : -0.02em;
|
25
|
+
line-height : var(--core-lineheight-headline);
|
26
|
+
}
|
19
27
|
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
}
|
28
|
+
h3 {
|
29
|
+
color : var(--sem-color-fg-neutral-contrast);
|
30
|
+
font-family : var(--core-fontfamily-sans);
|
31
|
+
font-size : var(--core-fontsize-h3);
|
32
|
+
font-weight : var(--core-fontweight-semibold);
|
33
|
+
letter-spacing : -0.02em;
|
34
|
+
line-height : var(--core-lineheight-headline);
|
35
|
+
}
|
28
36
|
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
}
|
37
|
+
p {
|
38
|
+
color : var(--sem-color-fg-neutral-contrast);
|
39
|
+
font-family : var(--core-fontfamily-sans);
|
40
|
+
font-size : var(--core-fontsize-body);
|
41
|
+
font-weight : var(--core-fontweight-regular);
|
42
|
+
line-height : var(--core-lineheight-paragraph);
|
43
|
+
}
|
37
44
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
font-size : var(--core-fontsize-body);
|
42
|
-
font-weight : var(--core-fontweight-regular);
|
43
|
-
line-height : var(--core-lineheight-paragraph);
|
44
|
-
}
|
45
|
+
i, em {
|
46
|
+
font-style: italic;
|
47
|
+
}
|
45
48
|
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
line-height : var(--core-lineheight-headline);
|
59
|
-
padding : 2px 0.3em;
|
60
|
-
font-size : 16px;
|
61
|
-
}
|
49
|
+
code &:not(.hljs) {
|
50
|
+
background-color: #F0F2F0;
|
51
|
+
border : 1px solid var(--sem-color-border-subtle);
|
52
|
+
border-radius : 4px;
|
53
|
+
color : var(--sem-color-fg-neutral-contrast);
|
54
|
+
font-family : var(--core-fontfamily-mono);
|
55
|
+
font-size : var(--core-fontsize-body);
|
56
|
+
font-weight : var(--core-fontweight-regular);
|
57
|
+
line-height : var(--core-lineheight-headline);
|
58
|
+
padding : 2px 0.3em;
|
59
|
+
font-size : 16px;
|
60
|
+
}
|
62
61
|
|
63
|
-
mark {
|
64
|
-
|
65
|
-
|
66
|
-
|
62
|
+
mark {
|
63
|
+
background-color: var(--green-50);
|
64
|
+
color : black;
|
65
|
+
padding : 0.1em 0.2em;
|
66
|
+
}
|
67
67
|
}
|
@@ -1,6 +1,4 @@
|
|
1
|
-
|
2
1
|
:root .neo-theme-neo-light {
|
3
|
-
|
4
2
|
// .neo-button – Styles that will be inherited by ALL button styles
|
5
3
|
--button-height : var(--cmp-button-height);
|
6
4
|
--button-margin : var(--cmp-button-gap);
|
@@ -152,10 +150,11 @@
|
|
152
150
|
// custom overrides
|
153
151
|
.neo-button {
|
154
152
|
min-width: var(--cmp-button-height);
|
153
|
+
|
155
154
|
&.neo-button-tertiary {
|
156
|
-
text-decoration: underline;
|
157
|
-
text-underline-offset: 3px;
|
155
|
+
text-decoration : underline;
|
158
156
|
text-decoration-color: var(--sem-color-text-primary-default);
|
157
|
+
text-underline-offset: 3px;
|
159
158
|
}
|
160
159
|
}
|
161
160
|
}
|
@@ -26,17 +26,15 @@
|
|
26
26
|
--tab-button-margin-bottom : 0;
|
27
27
|
--tab-button-padding : 7px var(--cmp-tab-spacinghorizontal) 6px;
|
28
28
|
--tab-button-text-color : var(--sem-color-fg-neutral-subdued);
|
29
|
+
--tab-button-text-font-size : var(--sem-typo-label-regular-fontSize);
|
29
30
|
--tab-button-text-transform : uppercase;
|
30
31
|
|
31
32
|
// custom overrides
|
32
|
-
.neo-button-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
.neo-button-glyph, .neo-button-text {
|
38
|
-
color: var(--sem-color-fg-neutral-contrast) !important;
|
33
|
+
.neo-tab-header-button.neo-button {
|
34
|
+
.pressed {
|
35
|
+
.neo-button-glyph, .neo-button-text {
|
36
|
+
color: var(--sem-color-fg-neutral-contrast);
|
37
|
+
}
|
39
38
|
}
|
40
39
|
}
|
41
40
|
}
|
42
|
-
|