jekyll-theme-amethyst 0.4.2 → 0.5.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.
data/.meilisearch.json DELETED
@@ -1,20 +0,0 @@
1
- {
2
- "index_uid": "jekyll-theme-amethyst",
3
- "start_urls": ["https://qunitjs.github.io/jekyll-theme-amethyst/"],
4
- "stop_urls": [],
5
- "selectors": {
6
- "default": {
7
- "lvl0": {
8
- "selector": ".sidebar-title-open",
9
- "global": true,
10
- "default_value": "Documentation"
11
- },
12
- "lvl1": "h1",
13
- "lvl2": "h2",
14
- "lvl3": "h3",
15
- "lvl4": "h4",
16
- "lvl5": "h5",
17
- "content": "p,li,tr,pre"
18
- }
19
- }
20
- }
@@ -1,113 +0,0 @@
1
- {%- comment -%}
2
-
3
- For releases and integrity hashes (SRI), see:
4
- * https://www.jsdelivr.com/package/npm/algoliasearch
5
- * https://www.jsdelivr.com/package/npm/autocomplete.js
6
-
7
- We use type="module" as a natural way to cut the mustard,
8
- executing the script only on modern browsers with ES6 support,
9
- and causing no errors on older browsers.
10
-
11
- <https://responsivenews.tumblr.com/post/18948466399/cutting-the-mustard>
12
- <http://web.archive.org/web/20150305005331/http://responsivenews.co.uk/post/18948466399/cutting-the-mustard>
13
-
14
- {%- endcomment -%}
15
- <script type="module">
16
- const loadSearch = () => Promise.all([
17
- new Promise((resolve) => document.body.append(Object.assign(document.createElement('script'), {
18
- crossOrigin: 'anonymous',
19
- integrity: 'sha256-YuyfhK9VEyfW6ejFiPbfOX2SELbFrgFU/8tU3MHuh60=',
20
- src: 'https://cdn.jsdelivr.net/npm/algoliasearch@4.3.1/dist/algoliasearch-lite.umd.js',
21
- onload: resolve
22
- }))),
23
- new Promise((resolve) => document.body.append(Object.assign(document.createElement('script'), {
24
- crossOrigin: 'anonymous',
25
- integrity: 'sha256-YVWQosorZnr6fALvOW9VALYuInld27RkSPkElGBdCaU=',
26
- src: 'https://cdn.jsdelivr.net/npm/autocomplete.js@0.37.1/dist/autocomplete.min.js',
27
- onload: resolve
28
- })))
29
- ]);
30
- const input = document.querySelector('#aa-search-input');
31
- const form = document.querySelector('#site-search-form');
32
- let restoreFocus = false;
33
- async function setupSearch(e) {
34
- {% comment -%}
35
- // Whether to restore focus after autocomplete.js replaces the input element.
36
- // This is before the setup check to account for input before load ends.
37
- {%- endcomment -%}
38
- restoreFocus = restoreFocus || (e && (e.type === 'click' || e.type === 'focus'));
39
- if (setupSearch.setup) return;
40
- setupSearch.setup = true;
41
- await loadSearch();
42
-
43
- const client = algoliasearch('{{ site.amethyst.algolia.application_id | default: site.algolia.application_id }}', '{{ site.amethyst.algolia.search_only_api_key }}');
44
- {% if site.amethyst.algolia.sources -%}
45
- const indexSources = {{ site.amethyst.algolia.sources | jsonify }};
46
- {%- elsif site.algolia.index_name -%}
47
- const indexSources = [{ index: {{ site.algolia.index_name | jsonify }}, base: {{ '' | relative_url | jsonify }} }];
48
- {%- else -%}
49
- const indexSources = [];
50
- {%- endif %}
51
- const escapeString = autocomplete.escapeHighlightedString;
52
- const autocompleteOptions = {
53
- // Debug allows inspecting the suggestions
54
- debug: true,
55
- // (Re)open suggestions on (re)focus when input is non-empty
56
- openOnFocus: true,
57
- hint: false,
58
- ariaLabel: 'search input',
59
- templates: {
60
- // https://github.com/algolia/autocomplete.js/issues/248
61
- empty(query) {
62
- return `No results for "${escapeString(query.query)}".`;
63
- }
64
- {%- if site.amethyst.algolia.branding != "none" %},
65
- footer: '<div class="aa-footer">Search by <a class="aa-logo" href="https://algolia.com" target="_blank">Algolia</a></div>'{% endif %}
66
- }
67
- };
68
- function formatURL(suggestion) {
69
- return (suggestion.anchor && !suggestion.url.includes('#')) ? suggestion.url + '#' + suggestion.anchor : suggestion.url;
70
- }
71
- function newHitsSource(index, params) {
72
- return function(query, cb) {
73
- index.search(query, params).then(
74
- res => { cb(res.hits, res); },
75
- err => { cb([]); console.error(err); }
76
- );
77
- };
78
- }
79
- const autocompleteSources = indexSources.map(source => ({
80
- source: newHitsSource(client.initIndex(source.index), { hitsPerPage: 5 }),
81
- displayKey: '',
82
- templates: {
83
- suggestion(suggestion) {
84
- const title = [ suggestion.title ].concat(suggestion.headings || []).join(' › ');
85
- const content = suggestion._highlightResult.content && suggestion._highlightResult.content.value || '';
86
- suggestion._href = (source.base || '') + formatURL(suggestion);
87
- return `<a href="${suggestion._href}" tabindex="-1">
88
- <p class="aa-suggestion_title">${title}</p>
89
- <p class="aa-suggestion_content">${content}</p>
90
- </a>`;
91
- }
92
- }
93
- }));
94
- const $input = autocomplete('#aa-search-input', autocompleteOptions, autocompleteSources)
95
- .on('autocomplete:selected', (e, suggestion) => location.href = suggestion._href || suggestion.url);
96
-
97
- if (restoreFocus) $input.focus();
98
-
99
- // Disable fallback form
100
- form.addEventListener('submit', (e) => {
101
- e.preventDefault();
102
- });
103
- }
104
- document.addEventListener('keydown', (e) => {
105
- if (e.key === '/' && !(document.activeElement && /^(INPUT|TEXTAREA)$/.test(document.activeElement.tagName))) {
106
- input.focus();
107
- e.preventDefault();
108
- }
109
- });
110
- input.addEventListener('focus', setupSearch, { once: true });
111
- form.addEventListener('click', setupSearch, { once: true });
112
- form.classList.add('site-search--bound');
113
- </script>
@@ -1 +0,0 @@
1
- <svg viewBox="0 0 485 120" xmlns="http://www.w3.org/2000/svg"><g fill="none"><path d="m16.8-1.001h88.4c8.7 0 15.8 7.065 15.8 15.8v88.405c0 8.7-7.065 15.795-15.8 15.795h-88.4c-8.7 0-15.8-7.06-15.8-15.795v-88.445c0-8.695 7.06-15.76 15.8-15.76" fill="#5468ff"/><path d="m73.505 25.788v-4.115a5.209 5.209 0 0 0 -5.21-5.205h-12.145a5.209 5.209 0 0 0 -5.21 5.205v4.225c0 .47.435.8.91.69a37.966 37.966 0 0 1 10.57-1.49c3.465 0 6.895.47 10.21 1.38.44.11.875-.215.875-.69m-33.285 5.385-2.075-2.075a5.206 5.206 0 0 0 -7.365 0l-2.48 2.475a5.185 5.185 0 0 0 0 7.355l2.04 2.04c.33.325.805.25 1.095-.075a39.876 39.876 0 0 1 3.975-4.66 37.68 37.68 0 0 1 4.7-4c.364-.22.4-.73.11-1.06m22.164 13.065v17.8c0 .51.55.875 1.02.62l15.825-8.19c.36-.18.47-.62.29-.98-3.28-5.755-9.37-9.685-16.405-9.94-.365 0-.73.29-.73.69m0 42.88c-13.195 0-23.915-10.705-23.915-23.88s10.72-23.875 23.915-23.875c13.2 0 23.916 10.7 23.916 23.875s-10.68 23.88-23.916 23.88m0-57.8c-18.74 0-33.94 15.18-33.94 33.92 0 18.745 15.2 33.89 33.94 33.89s33.94-15.18 33.94-33.925-15.165-33.885-33.94-33.885" fill="#fff"/><path d="m240.214 94.177c-23.365.11-23.365-18.855-23.365-21.875l-.04-71.045 14.254-2.26v70.61c0 1.715 0 12.56 9.15 12.595v11.975zm-57.78-11.61c4.374 0 7.62-.255 9.88-.69v-14.485a29.196 29.196 0 0 0 -3.43-.695 33.742 33.742 0 0 0 -4.956-.365c-1.57 0-3.175.11-4.775.365-1.605.22-3.065.655-4.34 1.275s-2.335 1.495-3.1 2.62c-.8 1.13-1.165 1.785-1.165 3.495 0 3.345 1.165 5.28 3.28 6.55 2.115 1.275 4.995 1.93 8.606 1.93zm-1.24-51.685c4.7 0 8.674.585 11.884 1.75 3.206 1.165 5.796 2.8 7.69 4.875 1.935 2.11 3.245 4.915 4.046 7.9.84 2.985 1.24 6.26 1.24 9.86v36.62c-2.185.47-5.506 1.015-9.95 1.67-4.446.655-9.44.985-14.986.985-3.68 0-7.07-.365-10.095-1.055-3.065-.69-5.65-1.82-7.84-3.385-2.15-1.565-3.825-3.57-5.065-6.04-1.205-2.48-1.825-5.97-1.825-9.61 0-3.495.69-5.715 2.045-8.12 1.38-2.4 3.24-4.365 5.575-5.895 2.37-1.53 5.065-2.62 8.165-3.275s6.345-.985 9.695-.985c1.57 0 3.21.11 4.96.29 1.715.185 3.575.515 5.545.985v-2.33c0-1.635-.185-3.2-.585-4.655a10.012 10.012 0 0 0 -2.045-3.895c-.985-1.13-2.255-2.005-3.86-2.62-1.605-.62-3.65-1.095-6.09-1.095-3.28 0-6.27.4-9.005.875-2.735.47-4.995 1.02-6.71 1.635l-1.71-11.68c1.785-.62 4.445-1.24 7.875-1.855 3.425-.66 7.11-.95 11.045-.95h.001zm281.51 51.285c4.375 0 7.615-.255 9.875-.695v-14.48c-.8-.22-1.93-.475-3.425-.695a33.813 33.813 0 0 0 -4.96-.365c-1.565 0-3.17.11-4.775.365-1.6.22-3.06.655-4.335 1.275-1.28.62-2.335 1.495-3.1 2.62-.805 1.13-1.165 1.785-1.165 3.495 0 3.345 1.165 5.28 3.28 6.55 2.15 1.31 4.995 1.93 8.605 1.93zm-1.205-51.645c4.7 0 8.674.58 11.884 1.745 3.205 1.165 5.795 2.8 7.69 4.875s3.245 4.915 4.045 7.9c.84 2.985 1.24 6.26 1.24 9.865v36.615c-2.185.47-5.505 1.015-9.95 1.675-4.445.655-9.44.98-14.985.98-3.68 0-7.07-.365-10.094-1.055-3.065-.69-5.65-1.82-7.84-3.385-2.15-1.565-3.825-3.57-5.065-6.04-1.205-2.475-1.825-5.97-1.825-9.61 0-3.495.695-5.715 2.045-8.12 1.38-2.4 3.24-4.365 5.575-5.895 2.37-1.525 5.065-2.62 8.165-3.275s6.345-.98 9.7-.98c1.565 0 3.205.11 4.955.29s3.575.51 5.54.985v-2.33c0-1.64-.18-3.205-.58-4.66a9.977 9.977 0 0 0 -2.045-3.895c-.985-1.13-2.255-2.005-3.86-2.62-1.606-.62-3.65-1.09-6.09-1.09-3.28 0-6.27.4-9.005.87-2.735.475-4.995 1.02-6.71 1.64l-1.71-11.685c1.785-.62 4.445-1.235 7.875-1.855 3.425-.62 7.105-.945 11.045-.945zm-42.8-6.77c4.774 0 8.68-3.86 8.68-8.63 0-4.765-3.866-8.625-8.68-8.625-4.81 0-8.675 3.86-8.675 8.625 0 4.77 3.9 8.63 8.675 8.63zm7.18 70.425h-14.326v-61.44l14.325-2.255v63.695zm-25.116 0c-23.365.11-23.365-18.855-23.365-21.875l-.04-71.045 14.255-2.26v70.61c0 1.715 0 12.56 9.15 12.595zm-46.335-31.445c0-6.155-1.35-11.285-3.974-14.85-2.625-3.605-6.305-5.385-11.01-5.385-4.7 0-8.386 1.78-11.006 5.385-2.625 3.6-3.904 8.695-3.904 14.85 0 6.225 1.315 10.405 3.94 14.01 2.625 3.64 6.305 5.425 11.01 5.425 4.7 0 8.385-1.82 11.01-5.425 2.624-3.64 3.934-7.785 3.934-14.01zm14.58-.035c0 4.805-.69 8.44-2.114 12.41-1.42 3.965-3.425 7.35-6.01 10.155-2.59 2.8-5.69 4.985-9.336 6.515-3.644 1.525-9.26 2.4-12.065 2.4-2.81-.035-8.385-.835-11.995-2.4s-6.71-3.715-9.295-6.515c-2.59-2.805-4.594-6.19-6.054-10.155-1.456-3.97-2.185-7.605-2.185-12.41s.654-9.43 2.114-13.36 3.5-7.28 6.125-10.08c2.625-2.805 5.76-4.955 9.33-6.48 3.61-1.53 7.585-2.255 11.885-2.255 4.305 0 8.275.76 11.92 2.255 3.65 1.525 6.786 3.675 9.336 6.48 2.584 2.8 4.59 6.15 6.05 10.08 1.53 3.93 2.295 8.555 2.295 13.36zm-107.284 0c0 5.965 1.31 12.59 3.935 15.355 2.625 2.77 6.014 4.15 10.175 4.15 2.26 0 4.41-.325 6.414-.945 2.005-.62 3.606-1.35 4.886-2.22v-35.34c-1.02-.22-5.286-1.095-9.41-1.2-5.175-.15-9.11 1.965-11.88 5.345-2.736 3.39-4.12 9.32-4.12 14.855zm39.625 28.095c0 9.72-2.48 16.815-7.476 21.33-4.99 4.51-12.61 6.77-22.89 6.77-3.755 0-11.555-.73-17.79-2.11l2.295-11.285c5.215 1.09 12.105 1.385 15.715 1.385 5.72 0 9.805-1.165 12.245-3.495 2.445-2.33 3.645-5.785 3.645-10.375v-2.33c-1.42.69-3.28 1.385-5.575 2.115-2.295.69-4.955 1.055-7.95 1.055-3.935 0-7.51-.62-10.75-1.86-3.245-1.235-6.055-3.055-8.35-5.46-2.295-2.4-4.12-5.42-5.395-9.025s-1.935-10.045-1.935-14.775c0-4.44.695-10.01 2.046-13.725 1.384-3.71 3.35-6.915 6.014-9.57 2.626-2.655 5.835-4.695 9.59-6.19 3.755-1.49 8.16-2.435 12.935-2.435 4.635 0 8.9.58 13.055 1.275 4.155.69 7.69 1.415 10.57 2.215v56.49z" fill="#5468ff"/></g></svg>