@onemrvapublic/design-system 21.0.0-develop.5 → 21.0.0-develop.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/README.md CHANGED
@@ -33,12 +33,17 @@ If you need access to our design system board, send us a message.
33
33
  @Bram Decuypere (NL / EN)
34
34
  ## Changelog
35
35
 
36
- ### 21.0.0-develop.5
36
+ ### 21.0.0-develop.6
37
37
 
38
- # [21.0.0-develop.5](https://rvaonem.ghe.com/AS-DESIGN-SYSTEM/core/compare/v21.0.0-develop.4...v21.0.0-develop.5) (2026-01-30)
38
+ # [21.0.0-develop.6](https://rvaonem.ghe.com/AS-DESIGN-SYSTEM/core/compare/v21.0.0-develop.5...v21.0.0-develop.6) (2026-01-30)
39
39
 
40
40
 
41
41
  ### Bug Fixes
42
42
 
43
- * **typography:** remove the default headers so people use the material styles ([0e5567b](https://rvaonem.ghe.com/AS-DESIGN-SYSTEM/core/commit/0e5567b0b87e025e3491146f332084be5debd19b))
43
+ * **ds-versioning:** attempt to version the DS during semantic release ([16453c9](https://rvaonem.ghe.com/AS-DESIGN-SYSTEM/core/commit/16453c937d7e136b0fd8ff27b398aad314f4cf6c))
44
+
45
+
46
+ ### Features
47
+
48
+ * **ds-versioning:** attempt to version the DS ([4e89959](https://rvaonem.ghe.com/AS-DESIGN-SYSTEM/core/commit/4e899592b70cd2a5bebb54672398fe3c5846fddf))
44
49
 
@@ -1,8 +1,10 @@
1
+ const DS_VERSION = '1.0.0';
2
+
1
3
  const ɵɵtsModuleIndicatorApiExtractorWorkaround = true;
2
4
 
3
5
  /**
4
6
  * Generated bundle index. Do not edit.
5
7
  */
6
8
 
7
- export { ɵɵtsModuleIndicatorApiExtractorWorkaround };
9
+ export { DS_VERSION, ɵɵtsModuleIndicatorApiExtractorWorkaround };
8
10
  //# sourceMappingURL=onemrvapublic-design-system.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"onemrvapublic-design-system.mjs","sources":["../../../../projects/onemrva/design-system/index.ts","../../../../projects/onemrva/design-system/onemrvapublic-design-system.ts"],"sourcesContent":["export const ɵɵtsModuleIndicatorApiExtractorWorkaround = true;\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"AAAO,MAAM,yCAAyC,GAAG;;ACAzD;;AAEG;;;;"}
1
+ {"version":3,"file":"onemrvapublic-design-system.mjs","sources":["../../../../projects/onemrva/design-system/version.ts","../../../../projects/onemrva/design-system/index.ts","../../../../projects/onemrva/design-system/onemrvapublic-design-system.ts"],"sourcesContent":["export const DS_VERSION = '__VERSION__';\n","export { DS_VERSION } from './version';\n\nexport const ɵɵtsModuleIndicatorApiExtractorWorkaround = true;\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"AAAO,MAAM,UAAU,GAAG;;ACEnB,MAAM,yCAAyC,GAAG;;ACFzD;;AAEG;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onemrvapublic/design-system",
3
- "version": "21.0.0-develop.5",
3
+ "version": "21.0.0-develop.6",
4
4
  "description": "Design System Onem/Rva without theme included",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -1,3 +1,5 @@
1
+ declare const DS_VERSION = "__VERSION__";
2
+
1
3
  declare const ɵɵtsModuleIndicatorApiExtractorWorkaround = true;
2
4
 
3
- export { ɵɵtsModuleIndicatorApiExtractorWorkaround };
5
+ export { DS_VERSION, ɵɵtsModuleIndicatorApiExtractorWorkaround };