@webstudio-is/css-data 0.63.0 → 0.64.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.
package/lib/cjs/html.js CHANGED
@@ -437,7 +437,13 @@ const a = [
437
437
  {
438
438
  property: "cursor",
439
439
  value: { type: "keyword", value: "pointer" }
440
+ },
441
+ {
442
+ property: "color",
443
+ value: { type: "rgb", r: 0, g: 0, b: 238, alpha: 1 }
440
444
  }
445
+ // active and visited states are not defined as usually overriden with stateless color
446
+ // and modeling var-like defaults is too complex
441
447
  ];
442
448
  const ul = [
443
449
  displayBlock,
package/lib/html.js CHANGED
@@ -354,7 +354,13 @@ const a = [
354
354
  {
355
355
  property: "cursor",
356
356
  value: { type: "keyword", value: "pointer" }
357
+ },
358
+ {
359
+ property: "color",
360
+ value: { type: "rgb", r: 0, g: 0, b: 238, alpha: 1 }
357
361
  }
362
+ // active and visited states are not defined as usually overriden with stateless color
363
+ // and modeling var-like defaults is too complex
358
364
  ];
359
365
  const ul = [
360
366
  displayBlock,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webstudio-is/css-data",
3
- "version": "0.63.0",
3
+ "version": "0.64.0",
4
4
  "description": "CSS Data",
5
5
  "author": "Webstudio <github@webstudio.is>",
6
6
  "homepage": "https://webstudio.is",
package/src/html.ts CHANGED
@@ -447,6 +447,12 @@ export const a: Styles = [
447
447
  property: "cursor",
448
448
  value: { type: "keyword", value: "pointer" },
449
449
  },
450
+ {
451
+ property: "color",
452
+ value: { type: "rgb", r: 0, g: 0, b: 238, alpha: 1 },
453
+ },
454
+ // active and visited states are not defined as usually overriden with stateless color
455
+ // and modeling var-like defaults is too complex
450
456
  ];
451
457
 
452
458
  /* lists */