@stndrds/constants 0.1.0-alpha.17 → 0.1.0-alpha.19

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.js CHANGED
@@ -111,7 +111,9 @@ var DEFAULT_ATTRIBUTE_ICONS = {
111
111
  file: "file",
112
112
  user: "user",
113
113
  relation: "link",
114
- rating: "star"
114
+ rating: "star",
115
+ formula: "math",
116
+ rollup: "chart-bar-stacked"
115
117
  };
116
118
  function getDefaultAttributeIcon(type) {
117
119
  return DEFAULT_ATTRIBUTE_ICONS[type] ?? "circle";
package/dist/index.mjs CHANGED
@@ -15,7 +15,9 @@ var DEFAULT_ATTRIBUTE_ICONS = {
15
15
  file: "file",
16
16
  user: "user",
17
17
  relation: "link",
18
- rating: "star"
18
+ rating: "star",
19
+ formula: "math",
20
+ rollup: "chart-bar-stacked"
19
21
  };
20
22
  function getDefaultAttributeIcon(type) {
21
23
  return DEFAULT_ATTRIBUTE_ICONS[type] ?? "circle";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stndrds/constants",
3
- "version": "0.1.0-alpha.17",
3
+ "version": "0.1.0-alpha.19",
4
4
  "description": "Currency and country data with ISO codes",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -41,7 +41,7 @@
41
41
  "build": "tsup src/index.ts --format cjs,esm --dts",
42
42
  "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
43
43
  "lint": "biome check .",
44
- "test": "vitest",
44
+ "test": "vitest run",
45
45
  "test:ui": "vitest --ui",
46
46
  "test:coverage": "vitest --coverage",
47
47
  "clean": "rm -rf dist"