modern-idoc 0.2.8 → 0.2.10
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.d.cts +4 -0
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -105,6 +105,10 @@ interface ShadowDeclaration {
|
|
|
105
105
|
type ShadowProp = Noneable | string | ShadowDeclaration;
|
|
106
106
|
interface ShadowStyleDeclaration {
|
|
107
107
|
boxShadow: Noneable | string;
|
|
108
|
+
shadowColor?: string;
|
|
109
|
+
shadowOffsetX?: number;
|
|
110
|
+
shadowOffsetY?: number;
|
|
111
|
+
shadowBlur?: number;
|
|
108
112
|
}
|
|
109
113
|
|
|
110
114
|
type Overflow = 'hidden' | 'visible';
|
package/dist/index.d.mts
CHANGED
|
@@ -105,6 +105,10 @@ interface ShadowDeclaration {
|
|
|
105
105
|
type ShadowProp = Noneable | string | ShadowDeclaration;
|
|
106
106
|
interface ShadowStyleDeclaration {
|
|
107
107
|
boxShadow: Noneable | string;
|
|
108
|
+
shadowColor?: string;
|
|
109
|
+
shadowOffsetX?: number;
|
|
110
|
+
shadowOffsetY?: number;
|
|
111
|
+
shadowBlur?: number;
|
|
108
112
|
}
|
|
109
113
|
|
|
110
114
|
type Overflow = 'hidden' | 'visible';
|
package/dist/index.d.ts
CHANGED
|
@@ -105,6 +105,10 @@ interface ShadowDeclaration {
|
|
|
105
105
|
type ShadowProp = Noneable | string | ShadowDeclaration;
|
|
106
106
|
interface ShadowStyleDeclaration {
|
|
107
107
|
boxShadow: Noneable | string;
|
|
108
|
+
shadowColor?: string;
|
|
109
|
+
shadowOffsetX?: number;
|
|
110
|
+
shadowOffsetY?: number;
|
|
111
|
+
shadowBlur?: number;
|
|
108
112
|
}
|
|
109
113
|
|
|
110
114
|
type Overflow = 'hidden' | 'visible';
|