@ons/design-system 44.1.2 → 45.0.3
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/components/access-code/uac.scss +5 -5
- package/components/autosuggest/autosuggest.ui.js +2 -2
- package/components/autosuggest/{code.list.searcher.js → fuse-config.js} +1 -3
- package/components/checkboxes/_checkbox-macro.njk +1 -1
- package/components/checkboxes/_macro.njk +1 -1
- package/components/fieldset/_macro.njk +1 -1
- package/components/header/_header.scss +3 -4
- package/components/header/_macro.njk +2 -2
- package/components/highlight/_highlight.scss +5 -0
- package/components/input/_input.scss +2 -2
- package/components/metadata/_macro.njk +1 -1
- package/components/metadata/_metadata.scss +1 -1
- package/components/radios/_macro.njk +2 -2
- package/components/table-of-contents/_macro.njk +7 -7
- package/components/textarea/_macro.njk +2 -2
- package/components/timeout-modal/_macro.njk +1 -1
- package/components/timeout-modal/timeout.dom.js +2 -1
- package/components/timeout-modal/timeout.js +6 -1
- package/css/census.css +1 -1
- package/css/main.css +1 -1
- package/js/abortable-fetch.js +55 -0
- package/js/analytics.js +70 -0
- package/js/cookies-functions.js +182 -0
- package/js/cookies-settings.dom.js +13 -0
- package/js/cookies-settings.js +105 -0
- package/{src/js → js}/domready.js +0 -0
- package/js/fetch.js +19 -0
- package/js/inpagelink.dom.js +13 -0
- package/js/inpagelink.js +31 -0
- package/js/main.js +27 -0
- package/js/polyfills.js +9 -0
- package/js/print-button.js +16 -0
- package/{page-templates → layout}/_template.njk +0 -0
- package/package.json +2 -2
- package/scripts/main.es5.js +1 -1
- package/scripts/main.js +1 -1
- package/scss/main.scss +1 -5
- package/scss/patternlib.scss +3 -0
- package/scss/vars/_vars.scss +1 -1
package/scss/main.scss
CHANGED
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
@import '../components/header/header-nav';
|
|
29
29
|
@import '../components/header/header';
|
|
30
30
|
@import '../components/hero/hero';
|
|
31
|
+
@import '../components/highlight/highlight';
|
|
31
32
|
@import '../components/icons/icons';
|
|
32
33
|
@import '../components/images/images';
|
|
33
34
|
@import '../components/input/input-type';
|
|
@@ -61,11 +62,6 @@
|
|
|
61
62
|
@import '../components/timeline/timeline';
|
|
62
63
|
@import '../components/upload/upload';
|
|
63
64
|
@import '../components/video/video';
|
|
64
|
-
@import '../patterns/help-users-to/see-important-information/src/_highlight';
|
|
65
|
-
@import '../patterns/pages/question/examples/question-anatomy/pl-question-anatomy';
|
|
66
|
-
@import '../foundations/layout/page-template/examples/block-areas/block-areas';
|
|
67
|
-
@import '../foundations/style/colours/colours';
|
|
68
|
-
@import '../foundations/style/icons/icon-swatch';
|
|
69
65
|
@import 'utilities/index';
|
|
70
66
|
|
|
71
67
|
// Right to left
|
package/scss/patternlib.scss
CHANGED
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
@import '../views/partials/sub-navigation/sub-navigation';
|
|
5
5
|
@import '../foundations/layout/page-template/examples/block-areas/block-areas';
|
|
6
6
|
@import '../patterns/pages/question/examples/question-anatomy/pl-question-anatomy';
|
|
7
|
+
@import '../foundations/layout/page-template/examples/block-areas/block-areas';
|
|
8
|
+
@import '../foundations/style/colours/colours';
|
|
9
|
+
@import '../foundations/style/icons/icon-swatch';
|
|
7
10
|
@import 'prism-tomorrow';
|
|
8
11
|
|
|
9
12
|
.ons-patternlib-page {
|
package/scss/vars/_vars.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
$static: '..';
|
|
1
|
+
$static: '..' !default;
|