@nordcode/ui 1.0.5 → 1.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/CHANGELOG.md CHANGED
@@ -13,7 +13,7 @@
13
13
 
14
14
  ## v1.0.5 (2024-11-28)
15
15
 
16
- ### Fixes
16
+ ### Features
17
17
 
18
18
  Make fieldset-based inputs more accessible by adding legends. This affects:
19
19
  - `nc-tag-select`
@@ -22,3 +22,9 @@ Make fieldset-based inputs more accessible by adding legends. This affects:
22
22
  - `nc-checkbox-field`
23
23
 
24
24
  Be sure to checkout the updated markup for these components in the documentation.
25
+
26
+ ## v1.0.5 (2024-11-28)
27
+
28
+ ### Fixes
29
+
30
+ - Fix fields not compiling
package/out/complete.css CHANGED
@@ -1885,7 +1885,7 @@
1885
1885
  margin-block-start: var(--nc-legend-spacing, .75lh);
1886
1886
  }
1887
1887
 
1888
- :where(:is(fieldset:not([class]), .nc-fieldset):has(:is(.nc-legend + .nc-hint, legend:not([class]) + .nc-hint)) > :is(legend:not([class]), .nc-legend)) + .nc-hint {
1888
+ :where(:is(fieldset:not([class]), .nc-fieldset):has(:is(.nc-legend + .nc-hint, legend:not([class]) + .nc-hint)) > :is(legend:not([class]), .nc-legend) + .nc-hint) {
1889
1889
  --nc-legend-spacing: 0;
1890
1890
  margin-block-end: .6lh;
1891
1891
  }
@@ -1635,7 +1635,7 @@
1635
1635
  margin-block-start: var(--nc-legend-spacing, .75lh);
1636
1636
  }
1637
1637
 
1638
- :where(:is(fieldset:not([class]), .nc-fieldset):has(:is(.nc-legend + .nc-hint, legend:not([class]) + .nc-hint)) > :is(legend:not([class]), .nc-legend)) + .nc-hint {
1638
+ :where(:is(fieldset:not([class]), .nc-fieldset):has(:is(.nc-legend + .nc-hint, legend:not([class]) + .nc-hint)) > :is(legend:not([class]), .nc-legend) + .nc-hint) {
1639
1639
  --nc-legend-spacing: 0;
1640
1640
  margin-block-end: .6lh;
1641
1641
  }
package/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "type": "git",
13
13
  "url": "https://github.com/nordcode-agency/nordcode/tree/main/packages/ui"
14
14
  },
15
- "version": "1.0.5",
15
+ "version": "1.0.6",
16
16
  "publishConfig": {
17
17
  "access": "public"
18
18
  },
@@ -34,10 +34,8 @@
34
34
  }
35
35
  }
36
36
 
37
- :where( :is(fieldset:not([class]), .nc-fieldset):has( :is(.nc-legend + .nc-hint, legend:not([class]) + .nc-hint)) > :is(legend:not([class]), .nc-legend)) {
38
- &+.nc-hint {
39
- --nc-legend-spacing: 0;
40
- margin-block-end: 0.6lh;
41
- }
37
+ :where(:is(fieldset:not([class]), .nc-fieldset):has( :is(.nc-legend + .nc-hint, legend:not([class]) + .nc-hint)) > :is(legend:not([class]), .nc-legend) + .nc-hint) {
38
+ --nc-legend-spacing: 0;
39
+ margin-block-end: 0.6lh;
42
40
  }
43
41
  }
@@ -74,3 +74,4 @@
74
74
  margin-block-start: 0.6lh;
75
75
  }
76
76
  }
77
+ }