cec-nuxt-lib 0.7.1 → 0.7.2
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/module.json
CHANGED
|
@@ -5,6 +5,10 @@ import { useState } from '#app';
|
|
|
5
5
|
const searchTerm = useState('searchTerm', () => 'Enter keywords:');
|
|
6
6
|
const showSiteSearch = useState('showSiteSearch');
|
|
7
7
|
|
|
8
|
+
const baseUrl = useState('baseUrl');
|
|
9
|
+
const path = useState('path');
|
|
10
|
+
const title = useState('title');
|
|
11
|
+
|
|
8
12
|
const regex =
|
|
9
13
|
/^https:\/\/digital-core\.cheshireeast\.gov\.uk(?!.*(?:&pagePath|&pageTitle|login)).*$/;
|
|
10
14
|
|
package/package.json
CHANGED