@rijkshuisstijl-community/skip-link-css 1.0.0 → 1.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +5 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @rijkshuisstijl-community/skip-link-css
2
2
 
3
+ ## 1.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 3845c86: Onderliggende CSS van community-components is nu direct meegebundeld in de `dist` om te voorkomen dat gebruikers half gestylede componenten te zien krijgen.
8
+ Voorheen exporteerden de CSS-packages alleen de Rhc-specifieke klassen. Omdat deze bouwen op community-components, functioneerden ze niet zonder de onderliggende stijlen. De meeste stijlen zijn nu vanuit de `index` naar `@mixin`-structuren verplaatst (met wat tussentijdse boyscouting). Hierdoor worden afhankelijkheden automatisch meegeleverd; zo shipt de Accordion CSS nu bijvoorbeeld ook direct de vereiste Button CSS mee.
9
+
3
10
  ## 1.0.0
4
11
 
5
12
  ### Major Changes
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.0",
2
+ "version": "1.1.0",
3
3
  "author": "Community for Rijkshuisstijl-Community Design System",
4
4
  "description": "Skip Link component",
5
5
  "license": "EUPL-1.2",
@@ -12,7 +12,6 @@
12
12
  ],
13
13
  "main": "dist/index.css",
14
14
  "devDependencies": {
15
- "@nl-design-system-candidate/skip-link-css": "1.0.5",
16
15
  "chokidar-cli": "3.0.0",
17
16
  "@rijkshuisstijl-community/build-utils-css": "0.0.4"
18
17
  },
@@ -28,9 +27,12 @@
28
27
  "url": "git@github.com:nl-design-system/rijkshuisstijl-community.git",
29
28
  "directory": "packages/components-css/skip-link-css"
30
29
  },
30
+ "dependencies": {
31
+ "@nl-design-system-candidate/skip-link-css": "1.0.5"
32
+ },
31
33
  "scripts": {
32
34
  "build": "build-css-package",
33
35
  "clean": "rimraf dist",
34
- "watch": "chokidar 'src/**/*' --follow-symlinks --command 'build-css-package'"
36
+ "watch": "build-css-package && chokidar 'src/**/*' --follow-symlinks --command 'build-css-package'"
35
37
  }
36
38
  }