@d-zero/scaffold 5.0.0-alpha.23 → 5.0.0-alpha.24
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/.stylelintrc +2 -2
- package/CHANGELOG.md +10 -0
- package/__assets/htdocs/__tmpl/000_home.pug +4 -4
- package/__assets/htdocs/__tmpl/100_sub.pug +6 -6
- package/__assets/htdocs/__tmpl/200_blog_index.pug +8 -8
- package/__assets/htdocs/__tmpl/210_blog_index.pug +8 -8
- package/__assets/htdocs/__tmpl/300_form_input.pug +6 -6
- package/__assets/htdocs/__tmpl/301_form_confirm.pug +6 -6
- package/__assets/htdocs/__tmpl/302_form_complete.pug +6 -6
- package/__assets/htdocs/css/style.scss +20 -20
- package/__assets/htdocs/sub-folder.test/css/style.scss +4 -4
- package/package.json +9 -9
- /package/__assets/_libs/component/{_c-card-list.scss → c-card-list.scss} +0 -0
- /package/__assets/_libs/component/{_c-card.pug → c-card.pug} +0 -0
- /package/__assets/_libs/component/{_c-card.scss → c-card.scss} +0 -0
- /package/__assets/_libs/component/{_c-content-index.scss → c-content-index.scss} +0 -0
- /package/__assets/_libs/component/{_c-content-main.scss → c-content-main.scss} +0 -0
- /package/__assets/_libs/component/{_c-footer.pug → c-footer.pug} +0 -0
- /package/__assets/_libs/component/{_c-footer.scss → c-footer.scss} +0 -0
- /package/__assets/_libs/component/{_c-header.pug → c-header.pug} +0 -0
- /package/__assets/_libs/component/{_c-header.scss → c-header.scss} +0 -0
- /package/__assets/_libs/component/{_c-media-list.scss → c-media-list.scss} +0 -0
- /package/__assets/_libs/component/{_c-media.pug → c-media.pug} +0 -0
- /package/__assets/_libs/component/{_c-media.scss → c-media.scss} +0 -0
- /package/__assets/_libs/component/{_c-nav-breadcrumb.pug → c-nav-breadcrumb.pug} +0 -0
- /package/__assets/_libs/component/{_c-nav-breadcrumb.scss → c-nav-breadcrumb.scss} +0 -0
- /package/__assets/_libs/component/{_c-nav-global.pug → c-nav-global.pug} +0 -0
- /package/__assets/_libs/component/{_c-nav-global.scss → c-nav-global.scss} +0 -0
- /package/__assets/_libs/component/{_c-nav-sitemap.pug → c-nav-sitemap.pug} +0 -0
- /package/__assets/_libs/component/{_c-nav-sitemap.scss → c-nav-sitemap.scss} +0 -0
- /package/__assets/_libs/component/{_c-page-home.scss → c-page-home.scss} +0 -0
- /package/__assets/_libs/component/{_c-page-sub.scss → c-page-sub.scss} +0 -0
- /package/__assets/_libs/component/{_c-pagination.pug → c-pagination.pug} +0 -0
- /package/__assets/_libs/component/{_c-pagination.scss → c-pagination.scss} +0 -0
- /package/__assets/_libs/component/{_c-title-page.pug → c-title-page.pug} +0 -0
- /package/__assets/_libs/component/{_c-title-page.scss → c-title-page.scss} +0 -0
- /package/__assets/_libs/style/base/{_root.scss → root.scss} +0 -0
- /package/__assets/_libs/style/general/{_all.scss → all.scss} +0 -0
- /package/__assets/_libs/style/general/{_body.scss → body.scss} +0 -0
- /package/__assets/_libs/style/general/{_button.scss → button.scss} +0 -0
- /package/__assets/_libs/style/general/{_img.scss → img.scss} +0 -0
- /package/__assets/_libs/style/theme/{_color.scss → color.scss} +0 -0
- /package/__assets/_libs/style/theme/{_dimension.scss → dimension.scss} +0 -0
- /package/__assets/_libs/style/theme/{_font.scss → font.scss} +0 -0
- /package/__assets/_libs/style/theme/{_index.scss → index.scss} +0 -0
package/.stylelintrc
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"extends": ["@d-zero/stylelint-config"],
|
|
3
3
|
"overrides": [
|
|
4
4
|
{
|
|
5
|
-
"files": ["
|
|
5
|
+
"files": ["c-*.scss"],
|
|
6
6
|
"rules": {
|
|
7
7
|
"@d-zero/component": {
|
|
8
8
|
"allowMultipleSelectors": true
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
}
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
|
-
"files": ["
|
|
13
|
+
"files": ["c-content-main.scss"],
|
|
14
14
|
"rules": {
|
|
15
15
|
"selector-class-pattern": null,
|
|
16
16
|
"selector-nested-pattern": "^(?!\\.c-).*"
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [5.0.0-alpha.24](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.23...v5.0.0-alpha.24) (2024-10-24)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **scaffold:** コンポーネントファイル名を`_c-*`から`c-*`に変更 ([ae6d450](https://github.com/d-zero-dev/frontend-env/commit/ae6d4507f37f7f674c8f70026910bf260fc53334))
|
|
11
|
+
|
|
12
|
+
### BREAKING CHANGES
|
|
13
|
+
|
|
14
|
+
- **scaffold:** コンポーネントファイル名を`_c-*`から`c-*`に変更
|
|
15
|
+
|
|
6
16
|
# [5.0.0-alpha.23](https://github.com/d-zero-dev/frontend-env/compare/v5.0.0-alpha.22...v5.0.0-alpha.23) (2024-10-15)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @d-zero/scaffold
|
|
@@ -6,15 +6,15 @@ html(lang="ja")
|
|
|
6
6
|
.c-page-home__base
|
|
7
7
|
.c-page-home__header
|
|
8
8
|
- const isHome = true;
|
|
9
|
-
include /component/
|
|
9
|
+
include /component/c-header.pug
|
|
10
10
|
.c-page-home__nav-global
|
|
11
|
-
include /component/
|
|
11
|
+
include /component/c-nav-global.pug
|
|
12
12
|
|
|
13
13
|
.c-page-home__main
|
|
14
14
|
main
|
|
15
15
|
h2 メイン
|
|
16
16
|
|
|
17
17
|
.c-page-home__nav-sitemap
|
|
18
|
-
include /component/
|
|
18
|
+
include /component/c-nav-sitemap.pug
|
|
19
19
|
.c-page-home__footer
|
|
20
|
-
include /component/
|
|
20
|
+
include /component/c-footer.pug
|
|
@@ -5,19 +5,19 @@ html(lang="ja")
|
|
|
5
5
|
body.c-page-sub
|
|
6
6
|
.c-page-sub__base
|
|
7
7
|
.c-page-sub__header
|
|
8
|
-
include /component/
|
|
8
|
+
include /component/c-header.pug
|
|
9
9
|
.c-page-sub__nav-global
|
|
10
|
-
include /component/
|
|
10
|
+
include /component/c-nav-global.pug
|
|
11
11
|
.c-page-sub__main
|
|
12
12
|
main
|
|
13
13
|
article.c-page-sub__content
|
|
14
14
|
.c-page-sub__title-page
|
|
15
|
-
include /component/
|
|
15
|
+
include /component/c-title-page.pug
|
|
16
16
|
.c-page-sub__nav-breadcrumb
|
|
17
|
-
include /component/
|
|
17
|
+
include /component/c-nav-breadcrumb.pug
|
|
18
18
|
.c-page-sub__content-main
|
|
19
19
|
.c-content-main !{ blocks }
|
|
20
20
|
.c-page-sub__nav-sitemap
|
|
21
|
-
include /component/
|
|
21
|
+
include /component/c-nav-sitemap.pug
|
|
22
22
|
.c-page-sub__footer
|
|
23
|
-
include /component/
|
|
23
|
+
include /component/c-footer.pug
|
|
@@ -5,17 +5,17 @@ html(lang="ja")
|
|
|
5
5
|
body.c-page-sub
|
|
6
6
|
.c-page-sub__base
|
|
7
7
|
.c-page-sub__header
|
|
8
|
-
include /component/
|
|
8
|
+
include /component/c-header.pug
|
|
9
9
|
.c-page-sub__nav-global
|
|
10
|
-
include /component/
|
|
10
|
+
include /component/c-nav-global.pug
|
|
11
11
|
|
|
12
12
|
.c-page-sub__main
|
|
13
13
|
main
|
|
14
14
|
article.c-page-sub__content
|
|
15
15
|
.c-page-sub__title-page
|
|
16
|
-
include /component/
|
|
16
|
+
include /component/c-title-page.pug
|
|
17
17
|
.c-page-sub__nav-breadcrumb
|
|
18
|
-
include /component/
|
|
18
|
+
include /component/c-nav-breadcrumb.pug
|
|
19
19
|
.c-page-sub__content-index
|
|
20
20
|
.c-content-index
|
|
21
21
|
.c-content-index__categories
|
|
@@ -30,11 +30,11 @@ html(lang="ja")
|
|
|
30
30
|
.c-content-index__body
|
|
31
31
|
.c-media-list
|
|
32
32
|
each article in data.articles
|
|
33
|
-
include /component/
|
|
33
|
+
include /component/c-media.pug
|
|
34
34
|
.c-page-sub__pagination
|
|
35
|
-
include /component/
|
|
35
|
+
include /component/c-pagination.pug
|
|
36
36
|
|
|
37
37
|
.c-page-sub__nav-sitemap
|
|
38
|
-
include /component/
|
|
38
|
+
include /component/c-nav-sitemap.pug
|
|
39
39
|
.c-page-sub__footer
|
|
40
|
-
include /component/
|
|
40
|
+
include /component/c-footer.pug
|
|
@@ -5,17 +5,17 @@ html(lang="ja")
|
|
|
5
5
|
body.c-page-sub
|
|
6
6
|
.c-page-sub__base
|
|
7
7
|
.c-page-sub__header
|
|
8
|
-
include /component/
|
|
8
|
+
include /component/c-header.pug
|
|
9
9
|
.c-page-sub__nav-global
|
|
10
|
-
include /component/
|
|
10
|
+
include /component/c-nav-global.pug
|
|
11
11
|
|
|
12
12
|
.c-page-sub__main
|
|
13
13
|
main
|
|
14
14
|
article.c-page-sub__content
|
|
15
15
|
.c-page-sub__title-page
|
|
16
|
-
include /component/
|
|
16
|
+
include /component/c-title-page.pug
|
|
17
17
|
.c-page-sub__nav-breadcrumb
|
|
18
|
-
include /component/
|
|
18
|
+
include /component/c-nav-breadcrumb.pug
|
|
19
19
|
.c-page-sub__content-index
|
|
20
20
|
.c-content-index
|
|
21
21
|
.c-content-index__categories
|
|
@@ -30,11 +30,11 @@ html(lang="ja")
|
|
|
30
30
|
.c-content-index__body
|
|
31
31
|
.c-card-list
|
|
32
32
|
each article in data.articles
|
|
33
|
-
include /component/
|
|
33
|
+
include /component/c-card.pug
|
|
34
34
|
.c-page-sub__pagination
|
|
35
|
-
include /component/
|
|
35
|
+
include /component/c-pagination.pug
|
|
36
36
|
|
|
37
37
|
.c-page-sub__nav-sitemap
|
|
38
|
-
include /component/
|
|
38
|
+
include /component/c-nav-sitemap.pug
|
|
39
39
|
.c-page-sub__footer
|
|
40
|
-
include /component/
|
|
40
|
+
include /component/c-footer.pug
|
|
@@ -5,17 +5,17 @@ html(lang="ja")
|
|
|
5
5
|
body.c-page-sub
|
|
6
6
|
.c-page-sub__base
|
|
7
7
|
.c-page-sub__header
|
|
8
|
-
include /component/
|
|
8
|
+
include /component/c-header.pug
|
|
9
9
|
.c-page-sub__nav-global
|
|
10
|
-
include /component/
|
|
10
|
+
include /component/c-nav-global.pug
|
|
11
11
|
|
|
12
12
|
.c-page-sub__main
|
|
13
13
|
main
|
|
14
14
|
.c-page-sub__content
|
|
15
15
|
.c-page-sub__title-page
|
|
16
|
-
include /component/
|
|
16
|
+
include /component/c-title-page.pug
|
|
17
17
|
.c-page-sub__nav-breadcrumb
|
|
18
|
-
include /component/
|
|
18
|
+
include /component/c-nav-breadcrumb.pug
|
|
19
19
|
.c-page-sub__content-main
|
|
20
20
|
.c-content-main
|
|
21
21
|
// CMS要件: メールフォーム概要
|
|
@@ -564,6 +564,6 @@ html(lang="ja")
|
|
|
564
564
|
value="__TOKEN__")
|
|
565
565
|
|
|
566
566
|
.c-page-sub__nav-sitemap
|
|
567
|
-
include /component/
|
|
567
|
+
include /component/c-nav-sitemap.pug
|
|
568
568
|
.c-page-sub__footer
|
|
569
|
-
include /component/
|
|
569
|
+
include /component/c-footer.pug
|
|
@@ -5,17 +5,17 @@ html(lang="ja")
|
|
|
5
5
|
body.c-page-sub
|
|
6
6
|
.c-page-sub__base
|
|
7
7
|
.c-page-sub__header
|
|
8
|
-
include /component/
|
|
8
|
+
include /component/c-header.pug
|
|
9
9
|
.c-page-sub__nav-global
|
|
10
|
-
include /component/
|
|
10
|
+
include /component/c-nav-global.pug
|
|
11
11
|
|
|
12
12
|
.c-page-sub__main
|
|
13
13
|
main
|
|
14
14
|
.c-page-sub__content
|
|
15
15
|
.c-page-sub__title-page
|
|
16
|
-
include /component/
|
|
16
|
+
include /component/c-title-page.pug
|
|
17
17
|
.c-page-sub__nav-breadcrumb
|
|
18
|
-
include /component/
|
|
18
|
+
include /component/c-nav-breadcrumb.pug
|
|
19
19
|
.c-page-sub__content-main
|
|
20
20
|
.c-content-main
|
|
21
21
|
.cc-form-description
|
|
@@ -207,6 +207,6 @@ html(lang="ja")
|
|
|
207
207
|
button(type="submit"): span 送信する
|
|
208
208
|
|
|
209
209
|
.c-page-sub__nav-sitemap
|
|
210
|
-
include /component/
|
|
210
|
+
include /component/c-nav-sitemap.pug
|
|
211
211
|
.c-page-sub__footer
|
|
212
|
-
include /component/
|
|
212
|
+
include /component/c-footer.pug
|
|
@@ -5,23 +5,23 @@ html(lang="ja")
|
|
|
5
5
|
body.c-page-sub
|
|
6
6
|
.c-page-sub__base
|
|
7
7
|
.c-page-sub__header
|
|
8
|
-
include /component/
|
|
8
|
+
include /component/c-header.pug
|
|
9
9
|
.c-page-sub__nav-global
|
|
10
|
-
include /component/
|
|
10
|
+
include /component/c-nav-global.pug
|
|
11
11
|
|
|
12
12
|
.c-page-sub__main
|
|
13
13
|
main
|
|
14
14
|
.c-page-sub__content
|
|
15
15
|
.c-page-sub__title-page
|
|
16
|
-
include /component/
|
|
16
|
+
include /component/c-title-page.pug
|
|
17
17
|
.c-page-sub__nav-breadcrumb
|
|
18
|
-
include /component/
|
|
18
|
+
include /component/c-nav-breadcrumb.pug
|
|
19
19
|
.c-page-sub__content-main
|
|
20
20
|
.c-content-main
|
|
21
21
|
.cc-form-description
|
|
22
22
|
p 送信ありがとうございました。
|
|
23
23
|
|
|
24
24
|
.c-page-sub__nav-sitemap
|
|
25
|
-
include /component/
|
|
25
|
+
include /component/c-nav-sitemap.pug
|
|
26
26
|
.c-page-sub__footer
|
|
27
|
-
include /component/
|
|
27
|
+
include /component/c-footer.pug
|
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
@import 'destyle.css' layer(reset);
|
|
2
2
|
|
|
3
3
|
@layer base {
|
|
4
|
-
@import '@/style/base/
|
|
4
|
+
@import '@/style/base/root.scss';
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
@layer general {
|
|
8
|
-
@import '@/style/general/
|
|
9
|
-
@import '@/style/general/
|
|
10
|
-
@import '@/style/general/
|
|
11
|
-
@import '@/style/general/
|
|
8
|
+
@import '@/style/general/all.scss';
|
|
9
|
+
@import '@/style/general/body.scss';
|
|
10
|
+
@import '@/style/general/button.scss';
|
|
11
|
+
@import '@/style/general/img.scss';
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
@layer components {
|
|
15
|
-
@import '@/component/
|
|
16
|
-
@import '@/component/
|
|
17
|
-
@import '@/component/
|
|
18
|
-
@import '@/component/
|
|
19
|
-
@import '@/component/
|
|
20
|
-
@import '@/component/
|
|
21
|
-
@import '@/component/
|
|
22
|
-
@import '@/component/
|
|
23
|
-
@import '@/component/
|
|
24
|
-
@import '@/component/
|
|
25
|
-
@import '@/component/
|
|
26
|
-
@import '@/component/
|
|
27
|
-
@import '@/component/
|
|
28
|
-
@import '@/component/
|
|
29
|
-
@import '@/component/
|
|
15
|
+
@import '@/component/c-page-home.scss';
|
|
16
|
+
@import '@/component/c-page-sub.scss';
|
|
17
|
+
@import '@/component/c-header.scss';
|
|
18
|
+
@import '@/component/c-footer.scss';
|
|
19
|
+
@import '@/component/c-nav-global.scss';
|
|
20
|
+
@import '@/component/c-nav-sitemap.scss';
|
|
21
|
+
@import '@/component/c-nav-breadcrumb.scss';
|
|
22
|
+
@import '@/component/c-title-page.scss';
|
|
23
|
+
@import '@/component/c-pagination.scss';
|
|
24
|
+
@import '@/component/c-card-list.scss';
|
|
25
|
+
@import '@/component/c-card.scss';
|
|
26
|
+
@import '@/component/c-media-list.scss';
|
|
27
|
+
@import '@/component/c-media.scss';
|
|
28
|
+
@import '@/component/c-content-index.scss';
|
|
29
|
+
@import '@/component/c-content-main.scss';
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
@layer reset, base, general, components;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
@import 'destyle.css' layer(reset);
|
|
2
|
-
@import '@/style/base/
|
|
3
|
-
@import '@/style/general/
|
|
4
|
-
@import '@/style/general/
|
|
5
|
-
@import '@/style/general/
|
|
2
|
+
@import '@/style/base/root.scss';
|
|
3
|
+
@import '@/style/general/all.scss';
|
|
4
|
+
@import '@/style/general/body.scss';
|
|
5
|
+
@import '@/style/general/button.scss';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@d-zero/scaffold",
|
|
3
|
-
"version": "5.0.0-alpha.
|
|
3
|
+
"version": "5.0.0-alpha.24",
|
|
4
4
|
"description": "Frontend scaffold files of D-ZERO Co., Ltd.",
|
|
5
5
|
"repository": "https://github.com/d-zero-dev/frontend-env.git",
|
|
6
6
|
"author": "D-ZERO Co., Ltd.",
|
|
@@ -37,25 +37,25 @@
|
|
|
37
37
|
"last 2 ios_saf version"
|
|
38
38
|
],
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@d-zero/builder": "5.0.0-alpha.
|
|
40
|
+
"@d-zero/builder": "5.0.0-alpha.24",
|
|
41
41
|
"@d-zero/linters": "5.0.0-alpha.46",
|
|
42
|
-
"@d-zero/postcss-config": "5.0.0-alpha.
|
|
42
|
+
"@d-zero/postcss-config": "5.0.0-alpha.24",
|
|
43
43
|
"@d-zero/tsconfig": "0.3.2",
|
|
44
|
-
"@types/node": "22.7.
|
|
44
|
+
"@types/node": "22.7.9",
|
|
45
45
|
"cross-env": "7.0.3",
|
|
46
46
|
"husky": "9.1.6",
|
|
47
|
-
"npm-run-all2": "
|
|
48
|
-
"sass": "1.
|
|
47
|
+
"npm-run-all2": "7.0.1",
|
|
48
|
+
"sass": "1.80.4",
|
|
49
49
|
"typescript": "5.6.3",
|
|
50
50
|
"vitest": "2.1.3"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"destyle.css": "4.0.1",
|
|
54
|
-
"tslib": "2.
|
|
54
|
+
"tslib": "2.8.0"
|
|
55
55
|
},
|
|
56
56
|
"volta": {
|
|
57
|
-
"node": "22.
|
|
57
|
+
"node": "22.10.0",
|
|
58
58
|
"yarn": "1.22.22"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "133d378cb3485e1008f5637d12a2288a01e3b3ab"
|
|
61
61
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|