@digigov/cli-generate 1.0.0-4e7b7994 → 1.0.0-6b93ebf2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digigov/cli-generate",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-6b93ebf2",
|
|
4
4
|
"description": "Scaffolding files generator for Digigov CLI",
|
|
5
5
|
"author": "GRNET Devs <devs@lists.grnet.gr>",
|
|
6
6
|
"license": "BSD-2-Clause",
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
"publint": "0.1.8"
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@digigov/cli": "1.0.0-
|
|
15
|
+
"@digigov/cli": "1.0.0-6b93ebf2"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"eslint": "7.24.0",
|
|
19
19
|
"prettier": "2.2.1",
|
|
20
|
-
"@digigov/cli-lint": "1.0.0-
|
|
20
|
+
"@digigov/cli-lint": "1.0.0-6b93ebf2",
|
|
21
21
|
"publint": "0.1.8"
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -10,7 +10,7 @@ import BasicLayout, {
|
|
|
10
10
|
import Header, { HeaderTitle } from '@digigov/ui/app/Header';
|
|
11
11
|
import GovGRLogo from '@digigov/ui/govgr/GovGRLogo';
|
|
12
12
|
import GovGRFooter from '@digigov/ui/govgr/Footer';
|
|
13
|
-
import
|
|
13
|
+
import Section, { PageTitleHeading } from '@digigov/ui/app/PageTitle';
|
|
14
14
|
import Paragraph from '@digigov/ui/typography/Paragraph';
|
|
15
15
|
import Title from '@digigov/ui/typography/Title';
|
|
16
16
|
import { makeStyles } from '@material-ui/core/styles';
|
|
@@ -58,9 +58,9 @@ export const Page = ({ children }) => {
|
|
|
58
58
|
const {{name}} = () => {
|
|
59
59
|
return (
|
|
60
60
|
<Page>
|
|
61
|
-
<
|
|
61
|
+
<Section>
|
|
62
62
|
<PageTitleHeading></PageTitleHeading>
|
|
63
|
-
</
|
|
63
|
+
</Section>
|
|
64
64
|
<Paragraph>
|
|
65
65
|
<Title size="md">
|
|
66
66
|
</Title>
|
|
@@ -10,7 +10,7 @@ Bottom,
|
|
|
10
10
|
import Header, { HeaderTitle } from '@digigov/ui/app/Header';
|
|
11
11
|
import GovGRLogo from '@digigov/ui/govgr/GovGRLogo';
|
|
12
12
|
import GovGRFooter from '@digigov/ui/govgr/Footer';
|
|
13
|
-
import
|
|
13
|
+
import Section, { PageTitleHeading } from '@digigov/ui/app/PageTitle';
|
|
14
14
|
|
|
15
15
|
export default function {{name}} (){
|
|
16
16
|
return (
|
|
@@ -27,9 +27,9 @@ return (
|
|
|
27
27
|
</Top>
|
|
28
28
|
<Content>
|
|
29
29
|
<Main>
|
|
30
|
-
<
|
|
30
|
+
<Section>
|
|
31
31
|
<PageTitleHeading></PageTitleHeading>
|
|
32
|
-
</
|
|
32
|
+
</Section>
|
|
33
33
|
</Main>
|
|
34
34
|
<Side></Side>
|
|
35
35
|
</Content>
|