@rgrmdesign/rgrm-ds-elements 0.3.0 → 0.4.1

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
@@ -18,6 +18,7 @@ Import everything (registers all elements):
18
18
 
19
19
  ```js
20
20
  import '@rgrmdesign/rgrm-ds-tokens';
21
+ import '@rgrmdesign/rgrm-ds-elements/fonts';
21
22
  import '@rgrmdesign/rgrm-ds-elements';
22
23
  ```
23
24
 
@@ -25,6 +26,7 @@ Or register a single component via its sub-path export:
25
26
 
26
27
  ```js
27
28
  import '@rgrmdesign/rgrm-ds-tokens';
29
+ import '@rgrmdesign/rgrm-ds-elements/fonts';
28
30
  import '@rgrmdesign/rgrm-ds-elements/heading';
29
31
  import '@rgrmdesign/rgrm-ds-elements/paragraph';
30
32
  ```
@@ -0,0 +1,2 @@
1
+
2
+ export { }
package/dist/fonts.js ADDED
@@ -0,0 +1,3 @@
1
+ // src/fonts.ts
2
+ import "@rgrmdesign/rgrm-ds-css/fonts";
3
+ //# sourceMappingURL=fonts.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/fonts.ts"],"sourcesContent":["import '@rgrmdesign/rgrm-ds-css/fonts';\n"],"mappings":";AAAA,OAAO;","names":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rgrmdesign/rgrm-ds-elements",
3
- "version": "0.3.0",
3
+ "version": "0.4.1",
4
4
  "description": "Web Components for the RGRM design system. Styles come from @rgrmdesign/rgrm-ds-css.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -29,6 +29,9 @@
29
29
  "./section": {
30
30
  "types": "./dist/section/index.d.ts",
31
31
  "import": "./dist/section/index.js"
32
+ },
33
+ "./fonts": {
34
+ "import": "./dist/fonts.js"
32
35
  }
33
36
  },
34
37
  "files": [
@@ -36,6 +39,7 @@
36
39
  ],
37
40
  "sideEffects": [
38
41
  "@rgrmdesign/rgrm-ds-css",
42
+ "./dist/fonts.js",
39
43
  "./dist/index.js",
40
44
  "./dist/button/index.js",
41
45
  "./dist/heading/index.js",
@@ -44,13 +48,13 @@
44
48
  ],
45
49
  "dependencies": {
46
50
  "@rgrmdesign/rgrm-ds-core": "0.3.0",
47
- "@rgrmdesign/rgrm-ds-css": "0.3.0"
51
+ "@rgrmdesign/rgrm-ds-css": "0.4.1"
48
52
  },
49
53
  "peerDependencies": {
50
- "@rgrmdesign/rgrm-ds-tokens": ">=0.7.0"
54
+ "@rgrmdesign/rgrm-ds-tokens": ">=0.8.0"
51
55
  },
52
56
  "devDependencies": {
53
- "@rgrmdesign/rgrm-ds-tokens": "^0.7.0",
57
+ "@rgrmdesign/rgrm-ds-tokens": "^0.8.0",
54
58
  "rimraf": "^6.0.1",
55
59
  "tsup": "^8.5.1",
56
60
  "typescript": "^5.9.3"