setmy-info-less-extended 3.1.0 → 4.0.0
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/README.md +10 -6
- package/dist/main.css +3 -3
- package/package.json +1 -1
- package/src/main/less/utility/index.less +3 -3
package/README.md
CHANGED
|
@@ -37,16 +37,20 @@ Or from CDN:
|
|
|
37
37
|
|
|
38
38
|
## What is included
|
|
39
39
|
|
|
40
|
-
| Group
|
|
41
|
-
|
|
42
|
-
| Section
|
|
43
|
-
| Modal
|
|
44
|
-
| Card
|
|
45
|
-
| Article
|
|
40
|
+
| Group | Classes |
|
|
41
|
+
|----------------------|------------------------------------------------------------------------------------------------------|
|
|
42
|
+
| Section | `.fullViewport`, `.pageSection`, `.pageSectionNarrow`, `.sectionContentCenter`, `.sectionContentRow` |
|
|
43
|
+
| Modal | `.overlay`, `.modal`, `.modalHeader`, `.modalBody`, `.modalFooter`, `.modalClose` |
|
|
44
|
+
| Card | `.card`, `.cardTitle`, `.cardBody`, `.cardGrid` |
|
|
45
|
+
| Article | `.articleBody`, `.codeInline`, `.codePre`, `.blockquote`, `.definitionTerm`, `.definitionDesc` |
|
|
46
46
|
|
|
47
47
|
These reference base design tokens but ship only as this package's own CSS (standalone/delta — base
|
|
48
48
|
CSS is not bundled). Load the base stylesheet before this one.
|
|
49
49
|
|
|
50
|
+
> Buttons, forms, key-value, and the content patterns (price list, media object, profile block,
|
|
51
|
+
> notice banner) are **not** here — they are staged in `setmy-info-less-experimental` until they pass
|
|
52
|
+
> the refactorial validation process.
|
|
53
|
+
|
|
50
54
|
## Development
|
|
51
55
|
|
|
52
56
|
```shell
|
package/dist/main.css
CHANGED
|
@@ -20,9 +20,9 @@ Stable NetBeans-style frame presets live in `setmy-info-less-ide`.
|
|
|
20
20
|
/*
|
|
21
21
|
Extended utility classes.
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
Content components moved out of the base module to keep base minimal: section, modal, card, article.
|
|
24
|
+
All reference base design tokens (imported for tokens only by this package's main.less) but live in
|
|
25
|
+
the extended layer.
|
|
26
26
|
*/
|
|
27
27
|
/* section.less */
|
|
28
28
|
/* Full viewport height — use for hero or landing sections */
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/*
|
|
2
2
|
Extended utility classes.
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
Content components moved out of the base module to keep base minimal: section, modal, card, article.
|
|
5
|
+
All reference base design tokens (imported for tokens only by this package's main.less) but live in
|
|
6
|
+
the extended layer.
|
|
7
7
|
*/
|
|
8
8
|
@import url("section.less");
|
|
9
9
|
@import url("modal.less");
|