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.
Files changed (323) hide show
  1. package/apps/ServiceWorker.mjs +3 -5
  2. package/apps/colors/README.md +8 -0
  3. package/apps/colors/app.mjs +6 -0
  4. package/apps/colors/childapps/widget/app.mjs +7 -0
  5. package/apps/colors/childapps/widget/index.html +11 -0
  6. package/apps/colors/childapps/widget/neo-config.json +10 -0
  7. package/apps/colors/childapps/widget/view/Viewport.mjs +19 -0
  8. package/apps/colors/index.html +11 -0
  9. package/apps/colors/model/Color.mjs +43 -0
  10. package/apps/colors/neo-config.json +10 -0
  11. package/apps/colors/remotes-api.json +13 -0
  12. package/apps/colors/store/Colors.mjs +24 -0
  13. package/apps/colors/view/BarChartComponent.mjs +64 -0
  14. package/apps/colors/view/HeaderToolbar.mjs +95 -0
  15. package/apps/colors/view/PieChartComponent.mjs +58 -0
  16. package/apps/colors/view/TableContainer.mjs +91 -0
  17. package/apps/colors/view/Viewport.mjs +57 -0
  18. package/apps/colors/view/ViewportController.mjs +277 -0
  19. package/apps/colors/view/ViewportModel.mjs +53 -0
  20. package/apps/portal/Util.mjs +11 -0
  21. package/apps/portal/childapps/preview/neo-config.json +2 -2
  22. package/apps/portal/neo-config.json +2 -1
  23. package/apps/portal/remotes-api.json +13 -0
  24. package/apps/portal/view/HeaderToolbar.mjs +1 -1
  25. package/apps/portal/view/ViewportController.mjs +89 -1
  26. package/apps/portal/view/home/MainContainer.mjs +34 -6
  27. package/apps/portal/view/home/parts/AfterMath.mjs +1 -1
  28. package/apps/portal/view/home/parts/Colors.mjs +98 -0
  29. package/apps/portal/view/home/parts/Helix.mjs +114 -0
  30. package/apps/portal/view/home/parts/HelloWorld.mjs +6 -3
  31. package/apps/portal/view/home/parts/How.mjs +66 -0
  32. package/apps/portal/view/home/parts/MainNeo.mjs +4 -3
  33. package/apps/portal/view/learn/LivePreview.mjs +56 -15
  34. package/apps/portal/view/learn/MainContainerController.mjs +10 -90
  35. package/apps/realworld/api/Article.mjs +1 -3
  36. package/apps/realworld/api/Favorite.mjs +1 -3
  37. package/apps/realworld/api/Profile.mjs +1 -3
  38. package/apps/realworld/api/Tag.mjs +1 -3
  39. package/apps/realworld/api/User.mjs +1 -3
  40. package/apps/realworld2/api/Article.mjs +1 -3
  41. package/apps/realworld2/api/Favorite.mjs +1 -3
  42. package/apps/realworld2/api/Profile.mjs +1 -3
  43. package/apps/realworld2/api/Tag.mjs +1 -3
  44. package/apps/realworld2/api/User.mjs +1 -3
  45. package/apps/realworld2/view/article/HelixContainer.mjs +5 -5
  46. package/buildScripts/webpack/json/myApps.template.json +1 -0
  47. package/docs/app/view/MainContainer.mjs +5 -0
  48. package/docs/app/view/classdetails/MembersList.mjs +1 -1
  49. package/examples/ServiceWorker.mjs +3 -5
  50. package/examples/component/helix/Viewport.mjs +309 -0
  51. package/examples/component/helix/ViewportController.mjs +122 -0
  52. package/examples/component/helix/app.mjs +2 -2
  53. package/examples/component/helix/neo-config.json +0 -1
  54. package/examples/component/multiWindowHelix/Viewport.mjs +11 -3
  55. package/examples/component/multiWindowHelix/ViewportController.mjs +21 -9
  56. package/examples/component/multiWindowHelix/neo-config.json +0 -1
  57. package/examples/fieldWithPrefix/MainContainer.mjs +1 -6
  58. package/examples/list/animate/MainContainerController.mjs +1 -1
  59. package/examples/worker/task/MyTasks.mjs +1 -3
  60. package/package.json +2 -2
  61. package/resources/data/deck/learnneo/pages/Events.md +15 -9
  62. package/resources/data/deck/learnneo/pages/GuideEvents.md +254 -0
  63. package/resources/data/deck/learnneo/pages/WhyNeo-Speed.md +1 -1
  64. package/resources/images/logo/neo_logo_primary.svg +6 -0
  65. package/resources/images/logo/neo_logo_text_primary.svg +5 -0
  66. package/resources/scss/src/apps/colors/BarChartComponent.scss +3 -0
  67. package/resources/scss/src/apps/colors/HeaderToolbar.scss +11 -0
  68. package/resources/scss/src/apps/colors/PieChartComponent.scss +3 -0
  69. package/resources/scss/src/apps/colors/TableContainer.scss +64 -0
  70. package/resources/scss/src/apps/colors/Viewport.scss +9 -0
  71. package/resources/scss/src/apps/portal/HeaderToolbar.scss +142 -124
  72. package/resources/scss/src/apps/portal/home/MainContainer.scss +9 -22
  73. package/resources/scss/src/apps/portal/home/parts/MainNeo.scss +22 -0
  74. package/resources/scss/src/apps/portal/home/preview/PageCodeContainer.scss +1 -1
  75. package/resources/scss/src/examples/component/multiWindowHelix/Viewport.scss +3 -0
  76. package/resources/scss/src/form/field/CheckBox.scss +1 -0
  77. package/resources/scss/src/tab/header/Button.scss +2 -1
  78. package/resources/scss/theme-dark/Global.scss +8 -0
  79. package/resources/scss/theme-dark/button/Base.scss +1 -1
  80. package/resources/scss/theme-dark/tab/header/Button.scss +1 -0
  81. package/resources/scss/theme-light/Global.scss +8 -0
  82. package/resources/scss/theme-light/button/Base.scss +1 -1
  83. package/resources/scss/theme-light/tab/header/Button.scss +1 -0
  84. package/resources/scss/theme-neo-light/Global.scss +53 -53
  85. package/resources/scss/theme-neo-light/button/Base.scss +3 -4
  86. package/resources/scss/theme-neo-light/tab/header/Button.scss +6 -8
  87. package/src/DefaultConfig.mjs +2 -2
  88. package/src/Fetch.mjs +1 -3
  89. package/src/Main.mjs +13 -11
  90. package/src/MicroLoader.mjs +2 -2
  91. package/src/Neo.mjs +27 -26
  92. package/src/Xhr.mjs +1 -3
  93. package/src/button/Base.mjs +6 -4
  94. package/src/button/Split.mjs +10 -9
  95. package/src/calendar/view/EditEventContainer.mjs +13 -12
  96. package/src/calendar/view/MainContainer.mjs +40 -40
  97. package/src/calendar/view/MainContainerModel.mjs +5 -5
  98. package/src/calendar/view/SettingsContainer.mjs +11 -11
  99. package/src/calendar/view/YearComponent.mjs +73 -75
  100. package/src/calendar/view/calendars/ColorsList.mjs +2 -2
  101. package/src/calendar/view/calendars/EditContainer.mjs +2 -2
  102. package/src/calendar/view/calendars/List.mjs +12 -13
  103. package/src/calendar/view/month/Component.mjs +72 -73
  104. package/src/calendar/view/settings/GeneralContainer.mjs +5 -5
  105. package/src/calendar/view/settings/MonthContainer.mjs +5 -5
  106. package/src/calendar/view/settings/WeekContainer.mjs +6 -6
  107. package/src/calendar/view/settings/YearContainer.mjs +4 -4
  108. package/src/calendar/view/week/Component.mjs +47 -57
  109. package/src/calendar/view/week/EventDragZone.mjs +43 -50
  110. package/src/calendar/view/week/TimeAxisComponent.mjs +21 -21
  111. package/src/calendar/view/week/plugin/DragDrop.mjs +53 -45
  112. package/src/calendar/view/week/plugin/EventResizable.mjs +8 -3
  113. package/src/collection/Base.mjs +15 -22
  114. package/src/collection/Filter.mjs +4 -9
  115. package/src/collection/Sorter.mjs +6 -7
  116. package/src/component/Base.mjs +73 -41
  117. package/src/component/Canvas.mjs +9 -9
  118. package/src/component/Carousel.mjs +31 -33
  119. package/src/component/Chip.mjs +9 -9
  120. package/src/component/Circle.mjs +84 -91
  121. package/src/component/Clock.mjs +8 -8
  122. package/src/component/DateSelector.mjs +14 -15
  123. package/src/component/Gallery.mjs +82 -80
  124. package/src/component/Helix.mjs +131 -126
  125. package/src/component/Iframe.mjs +1 -1
  126. package/src/component/Label.mjs +1 -1
  127. package/src/component/Legend.mjs +3 -3
  128. package/src/component/Process.mjs +39 -37
  129. package/src/component/Splitter.mjs +9 -11
  130. package/src/component/StatusBadge.mjs +2 -3
  131. package/src/component/Timer.mjs +62 -68
  132. package/src/component/Toast.mjs +11 -11
  133. package/src/component/Video.mjs +7 -8
  134. package/src/component/mwc/Button.mjs +10 -10
  135. package/src/component/mwc/TextField.mjs +17 -17
  136. package/src/component/wrapper/AmChart.mjs +5 -5
  137. package/src/component/wrapper/CesiumJS.mjs +11 -17
  138. package/src/component/wrapper/GoogleMaps.mjs +58 -35
  139. package/src/component/wrapper/MapboxGL.mjs +112 -79
  140. package/src/container/Accordion.mjs +18 -20
  141. package/src/container/AccordionItem.mjs +12 -11
  142. package/src/container/Base.mjs +24 -23
  143. package/src/container/Panel.mjs +9 -9
  144. package/src/controller/Base.mjs +12 -14
  145. package/src/controller/Component.mjs +60 -66
  146. package/src/core/Base.mjs +5 -8
  147. package/src/core/IdGenerator.mjs +1 -3
  148. package/src/core/Observable.mjs +40 -24
  149. package/src/core/Util.mjs +5 -5
  150. package/src/data/Model.mjs +3 -3
  151. package/src/data/RecordFactory.mjs +3 -6
  152. package/src/data/Store.mjs +34 -34
  153. package/src/data/connection/Fetch.mjs +3 -3
  154. package/src/data/connection/WebSocket.mjs +21 -25
  155. package/src/data/connection/Xhr.mjs +31 -28
  156. package/src/date/DayViewComponent.mjs +1 -1
  157. package/src/date/SelectorContainer.mjs +2 -2
  158. package/src/dialog/Base.mjs +27 -25
  159. package/src/dialog/header/Toolbar.mjs +5 -4
  160. package/src/draggable/DragProxyComponent.mjs +7 -4
  161. package/src/draggable/DragZone.mjs +30 -30
  162. package/src/draggable/DropZone.mjs +7 -7
  163. package/src/draggable/list/DragZone.mjs +18 -18
  164. package/src/draggable/tab/header/toolbar/SortZone.mjs +7 -7
  165. package/src/draggable/toolbar/DragZone.mjs +15 -15
  166. package/src/draggable/toolbar/SortZone.mjs +30 -31
  167. package/src/draggable/tree/DragZone.mjs +9 -9
  168. package/src/filter/BooleanContainer.mjs +3 -3
  169. package/src/filter/NumberContainer.mjs +5 -5
  170. package/src/filter/ToggleOperatorsButton.mjs +5 -5
  171. package/src/form/Fieldset.mjs +26 -26
  172. package/src/form/field/Base.mjs +1 -1
  173. package/src/form/field/CheckBox.mjs +15 -16
  174. package/src/form/field/Color.mjs +13 -15
  175. package/src/form/field/ComboBox.mjs +16 -24
  176. package/src/form/field/Country.mjs +1 -1
  177. package/src/form/field/Date.mjs +3 -4
  178. package/src/form/field/Display.mjs +1 -1
  179. package/src/form/field/Email.mjs +2 -2
  180. package/src/form/field/Number.mjs +51 -56
  181. package/src/form/field/Picker.mjs +2 -2
  182. package/src/form/field/Radio.mjs +1 -1
  183. package/src/form/field/Range.mjs +7 -6
  184. package/src/form/field/Text.mjs +29 -36
  185. package/src/form/field/TextArea.mjs +9 -9
  186. package/src/form/field/Time.mjs +30 -30
  187. package/src/form/field/trigger/Base.mjs +19 -13
  188. package/src/form/field/trigger/Clear.mjs +13 -13
  189. package/src/form/field/trigger/CopyToClipboard.mjs +7 -7
  190. package/src/form/field/trigger/Picker.mjs +2 -2
  191. package/src/form/field/trigger/SpinDown.mjs +1 -1
  192. package/src/form/field/trigger/SpinUp.mjs +1 -1
  193. package/src/form/field/trigger/SpinUpDown.mjs +3 -3
  194. package/src/form/field/trigger/Time.mjs +3 -3
  195. package/src/grid/Container.mjs +33 -33
  196. package/src/grid/View.mjs +20 -22
  197. package/src/grid/header/Button.mjs +12 -12
  198. package/src/grid/header/Toolbar.mjs +4 -4
  199. package/src/layout/Base.mjs +5 -4
  200. package/src/layout/Card.mjs +15 -16
  201. package/src/layout/Fit.mjs +22 -8
  202. package/src/layout/Flexbox.mjs +30 -29
  203. package/src/layout/Form.mjs +15 -15
  204. package/src/layout/Grid.mjs +2 -2
  205. package/src/layout/HBox.mjs +3 -2
  206. package/src/layout/VBox.mjs +3 -2
  207. package/src/list/Base.mjs +45 -47
  208. package/src/list/Chip.mjs +4 -4
  209. package/src/list/Circle.mjs +3 -3
  210. package/src/list/Color.mjs +4 -4
  211. package/src/list/Component.mjs +10 -10
  212. package/src/list/plugin/Animate.mjs +18 -13
  213. package/src/main/DomAccess.mjs +92 -56
  214. package/src/main/DomEvents.mjs +38 -39
  215. package/src/main/addon/AmCharts.mjs +37 -37
  216. package/src/main/addon/AnalyticsByGoogle.mjs +4 -4
  217. package/src/main/addon/CesiumJS.mjs +8 -8
  218. package/src/main/addon/CloneNode.mjs +5 -5
  219. package/src/main/addon/Cookie.mjs +4 -4
  220. package/src/main/addon/DragDrop.mjs +35 -34
  221. package/src/main/addon/GoogleMaps.mjs +19 -19
  222. package/src/main/addon/IntersectionObserver.mjs +20 -1
  223. package/src/main/addon/LocalStorage.mjs +3 -3
  224. package/src/main/addon/MapboxGL.mjs +40 -41
  225. package/src/main/addon/MonacoEditor.mjs +5 -5
  226. package/src/main/addon/Mwc.mjs +6 -6
  227. package/src/main/addon/Navigator.mjs +35 -39
  228. package/src/main/addon/Popover.mjs +5 -6
  229. package/src/main/addon/PrefixField.mjs +1 -2
  230. package/src/main/addon/ServiceWorker.mjs +9 -9
  231. package/src/main/addon/Siesta.mjs +3 -2
  232. package/src/main/addon/Stylesheet.mjs +37 -37
  233. package/src/main/addon/WebComponent.mjs +2 -3
  234. package/src/main/addon/WindowPosition.mjs +18 -18
  235. package/src/main/draggable/sensor/Base.mjs +2 -2
  236. package/src/main/draggable/sensor/Mouse.mjs +15 -15
  237. package/src/main/draggable/sensor/Touch.mjs +24 -23
  238. package/src/main/mixin/DeltaUpdates.mjs +10 -12
  239. package/src/main/mixin/TouchDomEvents.mjs +6 -6
  240. package/src/manager/Base.mjs +4 -4
  241. package/src/manager/Component.mjs +41 -41
  242. package/src/manager/DomEvent.mjs +41 -44
  243. package/src/manager/Focus.mjs +14 -16
  244. package/src/manager/Instance.mjs +2 -4
  245. package/src/manager/Store.mjs +4 -8
  246. package/src/manager/Task.mjs +20 -22
  247. package/src/manager/Toast.mjs +14 -16
  248. package/src/manager/rpc/Api.mjs +1 -3
  249. package/src/manager/rpc/Message.mjs +16 -18
  250. package/src/menu/List.mjs +16 -16
  251. package/src/menu/Panel.mjs +4 -4
  252. package/src/model/Component.mjs +16 -14
  253. package/src/plugin/Base.mjs +2 -0
  254. package/src/plugin/Popover.mjs +1 -1
  255. package/src/plugin/PrefixField.mjs +35 -45
  256. package/src/plugin/Resizable.mjs +86 -101
  257. package/src/plugin/Responsive.mjs +1 -1
  258. package/src/remotes/Api.mjs +4 -6
  259. package/src/selection/CircleModel.mjs +12 -16
  260. package/src/selection/DateSelectorModel.mjs +21 -23
  261. package/src/selection/GalleryModel.mjs +49 -63
  262. package/src/selection/HelixModel.mjs +35 -41
  263. package/src/selection/ListModel.mjs +9 -14
  264. package/src/selection/Model.mjs +31 -31
  265. package/src/selection/TreeAccordionModel.mjs +74 -80
  266. package/src/selection/grid/CellColumnModel.mjs +10 -10
  267. package/src/selection/grid/CellColumnRowModel.mjs +10 -10
  268. package/src/selection/grid/CellModel.mjs +26 -28
  269. package/src/selection/grid/CellRowModel.mjs +24 -24
  270. package/src/selection/grid/ColumnModel.mjs +16 -20
  271. package/src/selection/grid/RowModel.mjs +27 -29
  272. package/src/selection/menu/ListModel.mjs +2 -2
  273. package/src/selection/table/CellColumnModel.mjs +12 -12
  274. package/src/selection/table/CellColumnRowModel.mjs +12 -12
  275. package/src/selection/table/CellModel.mjs +26 -29
  276. package/src/selection/table/CellRowModel.mjs +19 -19
  277. package/src/selection/table/ColumnModel.mjs +18 -22
  278. package/src/selection/table/RowModel.mjs +27 -29
  279. package/src/sitemap/Component.mjs +20 -20
  280. package/src/sitemap/Store.mjs +1 -1
  281. package/src/tab/Container.mjs +15 -15
  282. package/src/tab/Strip.mjs +1 -1
  283. package/src/tab/header/Toolbar.mjs +4 -4
  284. package/src/table/Container.mjs +8 -10
  285. package/src/table/View.mjs +29 -34
  286. package/src/table/header/Button.mjs +18 -18
  287. package/src/table/header/Toolbar.mjs +2 -2
  288. package/src/toolbar/Base.mjs +14 -14
  289. package/src/toolbar/Breadcrumb.mjs +11 -11
  290. package/src/toolbar/Paging.mjs +18 -18
  291. package/src/tooltip/Base.mjs +20 -22
  292. package/src/tree/Accordion.mjs +69 -75
  293. package/src/tree/List.mjs +22 -25
  294. package/src/util/Array.mjs +19 -18
  295. package/src/util/ClassSystem.mjs +9 -9
  296. package/src/util/Css.mjs +2 -2
  297. package/src/util/Date.mjs +9 -9
  298. package/src/util/Function.mjs +2 -2
  299. package/src/util/HashHistory.mjs +3 -5
  300. package/src/util/KeyNavigation.mjs +17 -17
  301. package/src/util/Logger.mjs +9 -9
  302. package/src/util/Matrix.mjs +19 -19
  303. package/src/util/String.mjs +9 -9
  304. package/src/util/Style.mjs +11 -11
  305. package/src/util/VDom.mjs +12 -14
  306. package/src/util/VNode.mjs +29 -29
  307. package/src/vdom/Helper.mjs +84 -93
  308. package/src/vdom/VNode.mjs +1 -1
  309. package/src/worker/App.mjs +19 -16
  310. package/src/worker/Base.mjs +14 -15
  311. package/src/worker/Canvas.mjs +1 -3
  312. package/src/worker/Data.mjs +4 -8
  313. package/src/worker/Manager.mjs +27 -32
  314. package/src/worker/Message.mjs +1 -1
  315. package/src/worker/ServiceBase.mjs +38 -42
  316. package/src/worker/Task.mjs +1 -3
  317. package/src/worker/VDom.mjs +2 -4
  318. package/src/worker/mixin/RemoteMethodAccess.mjs +5 -6
  319. package/apps/portal/view/home/parts/CoolStuff.mjs +0 -82
  320. package/examples/component/helix/MainContainer.mjs +0 -340
  321. /package/resources/images/{Neo_Logo_Blue.svg → logo/neo_logo_secondary.svg} +0 -0
  322. /package/resources/images/{Neo_Logo_Text.svg → logo/neo_logo_text_secondary.svg} +0 -0
  323. /package/resources/images/{Neo_Logo_White.svg → logo/neo_logo_white.svg} +0 -0
@@ -1,55 +1,54 @@
1
1
  .learnneo-header-toolbar {
2
- border-bottom: 1px solid #f2f2f2;
2
+ border-bottom: 1px solid #f2f2f2;
3
3
 
4
- .logo {
5
- margin-left: 1em;
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-glyph {
25
- &.neo-logo-blue {
26
- background-image: url("../../../../../../../resources/images/Neo_Logo_Blue.svg");
27
- height: 24px;
28
- width: 24px;
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
- .separate-bar {
34
- position: absolute;
35
- right: 20px;
36
- top: 60px;
37
- width: 40px;
38
-
39
- z-index: 9;
40
- transform: rotate(0);
41
- animation: fade-in-animation 200ms linear;
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
- // find parallel class hide-sidebar
45
- &:has(+div .hide-sidebar) .separate-bar {
46
- animation: fade-animation 200ms linear forwards;
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
- animation: fade-and-scale-animation auto linear;
52
- animation-timeline: --page-scroll;
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
- position: fixed;
65
- z-index: 1000;
66
- top: 0;
67
- height: 2px;
68
- width: 100%;
69
- background: var(--button-background-color);
70
- background: var(--sem-color-surface-primary-background);
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
- scale: 0 1;
73
- transform-origin: left;
71
+ scale: 0 1;
72
+ transform-origin: left;
74
73
 
75
- /* Attach the animation using an anonymous Scroll Progress Timeline */
76
- animation: grow-progress linear;
77
- animation-timeline: --page-scroll;
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
- to { scale: 1 1; }
80
+ to {
81
+ scale: 1 1;
82
+ }
82
83
  }
83
84
 
84
85
  .hello-world {
85
- animation-timeline: view(block 100% -500%);
86
+ animation-timeline: view(block 100% -500%);
86
87
 
87
- animation-name: appear-animation;
88
- animation-fill-mode: both;
89
- animation-duration: 1ms; /* Firefox requires this to apply the animation */
90
- animation-timing-function: linear;
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
- 0% {
95
- transform: translateX(-400%);
96
- opacity: 0;
97
- }
98
- 90% {
99
- opacity: .3;
100
- }
101
- 100% {
102
- transform: translateX(0);
103
- opacity: 1;
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
- animation-timeline: view(block 100% -500%);
109
-
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;
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
- 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
- }
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
- scroll-timeline: --page-scroll block;
136
+ scroll-timeline: --page-scroll block;
137
137
  }
138
138
 
139
139
  @keyframes rotateAnimation {
140
- from { transform: rotate(0deg); }
141
- to { transform: rotate(360deg); }
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
- 0% {
146
- opacity: 1;
147
- transform: scale(1);
148
- }
149
- 12%, 100% {
150
- opacity: 0;
151
- transform: scale(1.5);
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
- from { opacity: 0; right: -10px}
157
- to { opacity: 1; right: 20px;}
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
- from { opacity: 1; right: 20px;}
161
- to { opacity: 0; right: -10px}
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
- overflow: visible;
182
+ overflow: visible;
166
183
  }
167
184
 
168
185
  .get-started-button {
169
- opacity: 0;
170
- animation: show-get-started-button 400ms 1300ms linear forwards;
186
+ opacity : 0;
187
+ animation: show-get-started-button 400ms 1300ms linear forwards;
171
188
  }
172
189
 
173
190
  .neo-github {
174
- opacity: 0;
175
- animation: show-github-button 600ms 1150ms linear forwards;
191
+ opacity : 0;
192
+ animation: show-github-button 600ms 1150ms linear forwards;
176
193
  }
177
194
 
178
195
  @keyframes show-get-started-button {
179
- from {
180
- opacity: 0;
181
- transform: translate(70px, 30px);
182
- }
183
- to {
184
- opacity: 1;
185
- transform: translate(0, 0);
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
- from {
190
- opacity: 0;
191
- transform: translate(-70px, 50px);
192
- }
193
- to {
194
- opacity: 1;
195
- transform: translate(0, 0);
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 : 32px;
35
- font-weight : 600;
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/Neo_Logo_Blue.svg");
11
+ image : url("../../../../../../../../resources/images/logo/neo_logo_secondary.svg");
12
12
  size: auto 90%;
13
13
  repeat: no-repeat;
14
14
  position: center;
@@ -0,0 +1,3 @@
1
+ .multi-window-helix-viewport.neo-viewport {
2
+ overflow: hidden;
3
+ }
@@ -5,6 +5,7 @@
5
5
  display : inline-block;
6
6
  font-family: var(--checkboxfield-icon-font-family);
7
7
  font-size : var(--checkboxfield-icon-font-size);
8
+ font-style: normal !important;
8
9
  margin : var(--checkboxfield-icon-margin);
9
10
  width : 20px;
10
11
  }
@@ -26,7 +26,8 @@
26
26
  }
27
27
 
28
28
  .neo-button-text {
29
- color: var(--tab-button-text-color);
29
+ color : var(--tab-button-text-color);
30
+ font-size: var(--tab-button-text-font-size);
30
31
  }
31
32
 
32
33
  .neo-tab-button-indicator {
@@ -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 : inherit;
30
+ --button-height : initial;
31
31
  --button-margin : 2px;
32
32
  --button-opacity-disabled : var(--neo-disabled-opacity);
33
33
  --button-outline-active : none;
@@ -26,5 +26,6 @@
26
26
  --tab-button-margin-bottom : 0;
27
27
  --tab-button-padding : 7px 12px 6px 12px;
28
28
  --tab-button-text-color : #bbb;
29
+ --tab-button-text-font-size : var(--button-text-font-size);
29
30
  --tab-button-text-transform : none;
30
31
  }
@@ -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 : inherit;
29
+ --button-height : initial;
30
30
  --button-margin : 2px;
31
31
  --button-opacity-disabled : var(--neo-disabled-opacity);
32
32
  --button-outline-active : none;
@@ -26,5 +26,6 @@
26
26
  --tab-button-margin-bottom : 0;
27
27
  --tab-button-padding : 7px 12px 6px 12px;
28
28
  --tab-button-text-color : #2b2b2b;
29
+ --tab-button-text-font-size : var(--button-text-font-size);
29
30
  --tab-button-text-transform : uppercase;
30
31
  }
@@ -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
- @import "../../../resources/scss/theme-neo-light/design-tokens/_all.scss";
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
- h1 {
12
- color : var(--sem-color-fg-neutral-contrast);
13
- font-family : var(--core-fontfamily-sans);
14
- font-size : var(--core-fontsize-h1);
15
- font-weight : var(--core-fontweight-semibold);
16
- letter-spacing : -0.02em;
17
- line-height : var(--core-lineheight-headline);
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
- h2 {
21
- color : var(--sem-color-fg-neutral-contrast);
22
- font-family : var(--core-fontfamily-sans);
23
- font-size : var(--core-fontsize-h2);
24
- font-weight : var(--core-fontweight-semibold);
25
- letter-spacing : -0.02em;
26
- line-height : var(--core-lineheight-headline);
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
- h3 {
30
- color : var(--sem-color-fg-neutral-contrast);
31
- font-family : var(--core-fontfamily-sans);
32
- font-size : var(--core-fontsize-h3);
33
- font-weight : var(--core-fontweight-semibold);
34
- letter-spacing : -0.02em;
35
- line-height : var(--core-lineheight-headline);
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
- p {
39
- color : var(--sem-color-fg-neutral-contrast);
40
- font-family : var(--core-fontfamily-sans);
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
- i, em {
47
- font-style: italic;
48
- }
49
-
50
- code {
51
- background-color: #F0F2F0;
52
- border : 1px solid var(--sem-color-border-subtle);
53
- border-radius : 4px;
54
- color : var(--sem-color-fg-neutral-contrast);
55
- font-family : var(--core-fontfamily-mono);
56
- font-size : var(--core-fontsize-body);
57
- font-weight : var(--core-fontweight-regular);
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
- background-color: var(--green-50);
65
- color : black;
66
- padding : 0.1em 0.2em;
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-text {
33
- font-size: var(--sem-typo-label-regular-fontSize) !important;
34
- }
35
-
36
- .pressed {
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
-