@d-zero/scaffold 5.0.0-alpha.35 → 5.0.0-alpha.37
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/CHANGELOG.md +24 -0
- package/__assets/_libs/component/{bge-content.scss → bge-contents.scss} +1 -1
- package/__assets/_libs/data/bge-blocks.html +192 -270
- package/__assets/htdocs/__tmpl/301_form_confirm.pug +13 -12
- package/__assets/htdocs/css/{bge-style.scss → bge_style.scss} +2 -4
- package/__assets/htdocs/css/style.scss +16 -18
- package/markuplint.config.js +15 -3
- package/package.json +9 -9
|
@@ -32,18 +32,19 @@ html(lang="ja")
|
|
|
32
32
|
input#MailMessageMode(type="hidden" name="data[MailMessage][mode]")
|
|
33
33
|
.cc-form-field-list
|
|
34
34
|
.cc-form-fieldset
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
.
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
35
|
+
div
|
|
36
|
+
.cc-form-fieldset-heading
|
|
37
|
+
span フィールドグループ名
|
|
38
|
+
span.required 必須
|
|
39
|
+
.cc-form-fieldset-body
|
|
40
|
+
.mail-field(data-type="text")
|
|
41
|
+
span.mail-before-attachment 前見出し
|
|
42
|
+
span.mail-input __入力内容__
|
|
43
|
+
span.mail-after-attachment 後見出し
|
|
44
|
+
.mail-field(data-type="text")
|
|
45
|
+
span.mail-before-attachment
|
|
46
|
+
span.mail-input __入力内容__
|
|
47
|
+
span.mail-after-attachment 後見出し
|
|
47
48
|
.cc-form-fieldset
|
|
48
49
|
div
|
|
49
50
|
.cc-form-fieldset-heading
|
|
@@ -11,22 +11,20 @@
|
|
|
11
11
|
@import '@/style/general/img.scss';
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
@
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
@import '@/component/c-content-main.scss';
|
|
30
|
-
}
|
|
14
|
+
@import '@/component/c-page-home.scss';
|
|
15
|
+
@import '@/component/c-page-sub.scss';
|
|
16
|
+
@import '@/component/c-header.scss';
|
|
17
|
+
@import '@/component/c-footer.scss';
|
|
18
|
+
@import '@/component/c-nav-global.scss';
|
|
19
|
+
@import '@/component/c-nav-sitemap.scss';
|
|
20
|
+
@import '@/component/c-nav-breadcrumb.scss';
|
|
21
|
+
@import '@/component/c-title-page.scss';
|
|
22
|
+
@import '@/component/c-pagination.scss';
|
|
23
|
+
@import '@/component/c-card-list.scss';
|
|
24
|
+
@import '@/component/c-card.scss';
|
|
25
|
+
@import '@/component/c-media-list.scss';
|
|
26
|
+
@import '@/component/c-media.scss';
|
|
27
|
+
@import '@/component/c-content-index.scss';
|
|
28
|
+
@import '@/component/c-content-main.scss';
|
|
31
29
|
|
|
32
|
-
@layer reset, base, general
|
|
30
|
+
@layer reset, base, general;
|
package/markuplint.config.js
CHANGED
|
@@ -1,10 +1,22 @@
|
|
|
1
1
|
import { extendsConfig } from '@d-zero/markuplint-config';
|
|
2
2
|
|
|
3
|
+
const extended = extendsConfig({
|
|
4
|
+
// classNaming: ['/^splide(?:__[a-z]+)?$/'],
|
|
5
|
+
});
|
|
6
|
+
|
|
3
7
|
export default {
|
|
4
|
-
...
|
|
5
|
-
// classNaming: ['/^splide(?:__[a-z]+)?$/'],
|
|
6
|
-
}),
|
|
8
|
+
...extended,
|
|
7
9
|
nodeRules: [
|
|
10
|
+
...extended.nodeRules,
|
|
11
|
+
{
|
|
12
|
+
// Revert requiring `width` and `height` attributes from the preset config.
|
|
13
|
+
// @see https://github.com/markuplint/markuplint/blob/dev/packages/%40markuplint/config-presets/src/preset.performance.json
|
|
14
|
+
// Due to assigning them automatically by the build process.
|
|
15
|
+
selector: 'img[src]',
|
|
16
|
+
rules: {
|
|
17
|
+
'required-attr': false,
|
|
18
|
+
},
|
|
19
|
+
},
|
|
8
20
|
{
|
|
9
21
|
selector: '.c-pagination a',
|
|
10
22
|
rules: {
|
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.37",
|
|
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.",
|
|
@@ -38,24 +38,24 @@
|
|
|
38
38
|
],
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@d-zero/builder": "5.0.0-alpha.34",
|
|
41
|
-
"@d-zero/linters": "5.0.0-alpha.
|
|
42
|
-
"@d-zero/postcss-config": "5.0.0-alpha.
|
|
41
|
+
"@d-zero/linters": "5.0.0-alpha.55",
|
|
42
|
+
"@d-zero/postcss-config": "5.0.0-alpha.37",
|
|
43
43
|
"@d-zero/tsconfig": "0.4.1",
|
|
44
|
-
"@types/node": "22.
|
|
44
|
+
"@types/node": "22.13.0",
|
|
45
45
|
"cross-env": "7.0.3",
|
|
46
46
|
"husky": "9.1.7",
|
|
47
47
|
"npm-run-all2": "7.0.2",
|
|
48
|
-
"sass": "1.83.
|
|
49
|
-
"typescript": "5.7.
|
|
50
|
-
"vitest": "
|
|
48
|
+
"sass": "1.83.4",
|
|
49
|
+
"typescript": "5.7.3",
|
|
50
|
+
"vitest": "3.0.4"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"destyle.css": "4.0.1",
|
|
54
54
|
"tslib": "2.8.1"
|
|
55
55
|
},
|
|
56
56
|
"volta": {
|
|
57
|
-
"node": "22.
|
|
57
|
+
"node": "22.13.1",
|
|
58
58
|
"yarn": "1.22.22"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "1d646ac2b9f06ddf2f17f48ab6df90ba09d88dac"
|
|
61
61
|
}
|