claritas-web-framework 8.0.5 → 8.0.6

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/index.html CHANGED
@@ -1 +1 @@
1
- <!doctype html><html lang="en"><head><meta charset="UTF-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="viewport" content="width=device-width,initial-scale=1"/><title>Claritas Web Framework</title><script defer="defer" src="index.js"></script><link href="./index.css" rel="stylesheet"></head><body><div class="container"><div class="form--field"><label for="foo" class="form--label" data-i18n="foo">Foo</label><div class="form--control"><input type="test" id="foo" name="foo"/></div></div></div></body></html>
1
+ <!doctype html><html lang="en"><head><meta charset="UTF-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="viewport" content="width=device-width,initial-scale=1"/><title>Claritas Web Framework</title><script defer="defer" src="index.js"></script><link href="./index.css" rel="stylesheet"></head><body><div class="container"></div></body></html>
package/index.html CHANGED
@@ -8,13 +8,6 @@
8
8
  </head>
9
9
 
10
10
  <body>
11
- <div class="container">
12
- <div class="form--field">
13
- <label for="foo" class="form--label" data-i18n="foo"> Foo </label>
14
- <div class="form--control">
15
- <input type="test" id="foo" name="foo" />
16
- </div>
17
- </div>
18
- </div>
11
+ <div class="container"></div>
19
12
  </body>
20
13
  </html>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claritas-web-framework",
3
- "version": "8.0.5",
3
+ "version": "8.0.6",
4
4
  "updated": "31/07/2023",
5
5
  "description": "The CSS framework built for Claritas front end.",
6
6
  "main": "index.js",
@@ -2,7 +2,8 @@
2
2
  @use "./../variables" as *;
3
3
  @use "./../mixins/list" as *;
4
4
 
5
- .nav {
5
+ .nav,
6
+ .nav > ul {
6
7
  --nav-item-border-width: 1px;
7
8
  --nav-item-border-style: solid;
8
9
  --nav-item-border-color: transparent;
@@ -125,7 +126,8 @@
125
126
  }
126
127
  }
127
128
 
128
- &.nav--column {
129
+ &.nav--column,
130
+ &.nav--column > ul {
129
131
  flex-flow: column nowrap;
130
132
  align-items: stretch;
131
133