datastake-daf 0.6.374 → 0.6.375
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/components/index.js
CHANGED
|
@@ -51156,7 +51156,11 @@ const Style$f = dt.div`
|
|
|
51156
51156
|
background: white;
|
|
51157
51157
|
border-radius: 8px;
|
|
51158
51158
|
overflow: hidden;
|
|
51159
|
-
|
|
51159
|
+
${props => props.$isPdf ? `
|
|
51160
|
+
box-shadow: 0px 3.76px 10.03px 0px #00000014, 0px 1.88px 3.76px -2.51px #0000001f, 0px 5.64px 17.56px 5.02px #0000000d;
|
|
51161
|
+
` : `
|
|
51162
|
+
box-shadow: 0px 3.76px 10.03px 0px #00000014, 0px 1.88px 3.76px -2.51px #0000001f, 0px 5.64px 17.56px 5.02px #0000000d;
|
|
51163
|
+
`}
|
|
51160
51164
|
-webkit-print-color-adjust: exact;
|
|
51161
51165
|
print-color-adjust: exact;
|
|
51162
51166
|
|
|
@@ -51497,7 +51501,11 @@ const Style$d = dt.div`
|
|
|
51497
51501
|
background: white;
|
|
51498
51502
|
border-radius: 8px;
|
|
51499
51503
|
overflow: hidden;
|
|
51500
|
-
|
|
51504
|
+
${props => props.$isPdf ? `
|
|
51505
|
+
box-shadow: 0px 3.76px 10.03px 0px #00000014, 0px 1.88px 3.76px -2.51px #0000001f, 0px 5.64px 17.56px 5.02px #0000000d;
|
|
51506
|
+
` : `
|
|
51507
|
+
box-shadow: 0px 3.76px 10.03px 0px #00000014, 0px 1.88px 3.76px -2.51px #0000001f, 0px 5.64px 17.56px 5.02px #0000000d;
|
|
51508
|
+
`}
|
|
51501
51509
|
-webkit-print-color-adjust: exact;
|
|
51502
51510
|
print-color-adjust: exact;
|
|
51503
51511
|
|
package/package.json
CHANGED
|
@@ -141,7 +141,14 @@ const Style = styled.div`
|
|
|
141
141
|
background: white;
|
|
142
142
|
border-radius: 8px;
|
|
143
143
|
overflow: hidden;
|
|
144
|
-
|
|
144
|
+
${(props) =>
|
|
145
|
+
props.$isPdf
|
|
146
|
+
? `
|
|
147
|
+
box-shadow: 0px 3.76px 10.03px 0px #00000014, 0px 1.88px 3.76px -2.51px #0000001f, 0px 5.64px 17.56px 5.02px #0000000d;
|
|
148
|
+
`
|
|
149
|
+
: `
|
|
150
|
+
box-shadow: 0px 3.76px 10.03px 0px #00000014, 0px 1.88px 3.76px -2.51px #0000001f, 0px 5.64px 17.56px 5.02px #0000000d;
|
|
151
|
+
`}
|
|
145
152
|
-webkit-print-color-adjust: exact;
|
|
146
153
|
print-color-adjust: exact;
|
|
147
154
|
|
|
@@ -140,7 +140,14 @@ const Style = styled.div`
|
|
|
140
140
|
background: white;
|
|
141
141
|
border-radius: 8px;
|
|
142
142
|
overflow: hidden;
|
|
143
|
-
|
|
143
|
+
${(props) =>
|
|
144
|
+
props.$isPdf
|
|
145
|
+
? `
|
|
146
|
+
box-shadow: 0px 3.76px 10.03px 0px #00000014, 0px 1.88px 3.76px -2.51px #0000001f, 0px 5.64px 17.56px 5.02px #0000000d;
|
|
147
|
+
`
|
|
148
|
+
: `
|
|
149
|
+
box-shadow: 0px 3.76px 10.03px 0px #00000014, 0px 1.88px 3.76px -2.51px #0000001f, 0px 5.64px 17.56px 5.02px #0000000d;
|
|
150
|
+
`}
|
|
144
151
|
-webkit-print-color-adjust: exact;
|
|
145
152
|
print-color-adjust: exact;
|
|
146
153
|
|