@webstudio-is/css-data 0.75.0 → 0.76.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.
@@ -938,7 +938,7 @@ export declare const properties: import("type-fest/source/writable-deep").Writab
938
938
  readonly inherited: true;
939
939
  readonly initial: {
940
940
  readonly type: "keyword";
941
- readonly value: "inherit";
941
+ readonly value: "black";
942
942
  };
943
943
  readonly popularity: 0.90791486;
944
944
  readonly appliesTo: "allElementsAndText";
@@ -3114,7 +3114,7 @@ export declare const properties: import("type-fest/source/writable-deep").Writab
3114
3114
  readonly inherited: true;
3115
3115
  readonly initial: {
3116
3116
  readonly type: "keyword";
3117
- readonly value: "startOrNamelessValueIfLTRRightIfRTL";
3117
+ readonly value: "start";
3118
3118
  };
3119
3119
  readonly popularity: 0.89287477;
3120
3120
  readonly appliesTo: "blockContainers";
@@ -0,0 +1,3 @@
1
+ import { LayersValue } from "@webstudio-is/css-data";
2
+ import type { InvalidValue } from "@webstudio-is/css-data";
3
+ export declare const parseBoxShadow: (boxShadow: string) => LayersValue | InvalidValue;
@@ -0,0 +1 @@
1
+ export {};
@@ -1 +1,2 @@
1
1
  export * from "./background";
2
+ export * from "./box-shadow";
@@ -1 +1,2 @@
1
1
  export { parseBackgroundImage as backgroundImage } from "./background";
2
+ export { parseBoxShadow as boxShadow } from "./box-shadow";