@plaidev/karte-action-sdk 1.1.102-27901644.c5acc0e8 → 1.1.102-27903378.680d283c
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/hydrate/index.es.d.ts +18 -4
- package/dist/index.es.d.ts +18 -4
- package/package.json +1 -1
@@ -188,9 +188,16 @@ declare const BackgroundSizes: readonly [
|
|
188
188
|
"auto"
|
189
189
|
];
|
190
190
|
type BackgroundSize = typeof BackgroundSizes[number];
|
191
|
-
declare const Cursors:
|
191
|
+
declare const Cursors: readonly [
|
192
|
+
"default",
|
193
|
+
"pointer"
|
194
|
+
];
|
192
195
|
type Cursor = typeof Cursors[number];
|
193
|
-
declare const Overflows:
|
196
|
+
declare const Overflows: readonly [
|
197
|
+
"visible",
|
198
|
+
"auto",
|
199
|
+
"hidden"
|
200
|
+
];
|
194
201
|
type Overflow = typeof Overflows[number];
|
195
202
|
type Border = string;
|
196
203
|
type BorderStyle = string;
|
@@ -1120,9 +1127,16 @@ declare namespace widget {
|
|
1120
1127
|
"auto"
|
1121
1128
|
];
|
1122
1129
|
type BackgroundSize = typeof BackgroundSizes[number];
|
1123
|
-
const Cursors:
|
1130
|
+
const Cursors: readonly [
|
1131
|
+
"default",
|
1132
|
+
"pointer"
|
1133
|
+
];
|
1124
1134
|
type Cursor = typeof Cursors[number];
|
1125
|
-
const Overflows:
|
1135
|
+
const Overflows: readonly [
|
1136
|
+
"visible",
|
1137
|
+
"auto",
|
1138
|
+
"hidden"
|
1139
|
+
];
|
1126
1140
|
type Overflow = typeof Overflows[number];
|
1127
1141
|
type Border = string;
|
1128
1142
|
type BorderStyle = string;
|
package/dist/index.es.d.ts
CHANGED
@@ -188,9 +188,16 @@ declare const BackgroundSizes: readonly [
|
|
188
188
|
"auto"
|
189
189
|
];
|
190
190
|
type BackgroundSize = typeof BackgroundSizes[number];
|
191
|
-
declare const Cursors:
|
191
|
+
declare const Cursors: readonly [
|
192
|
+
"default",
|
193
|
+
"pointer"
|
194
|
+
];
|
192
195
|
type Cursor = typeof Cursors[number];
|
193
|
-
declare const Overflows:
|
196
|
+
declare const Overflows: readonly [
|
197
|
+
"visible",
|
198
|
+
"auto",
|
199
|
+
"hidden"
|
200
|
+
];
|
194
201
|
type Overflow = typeof Overflows[number];
|
195
202
|
type Border = string;
|
196
203
|
type BorderStyle = string;
|
@@ -1120,9 +1127,16 @@ declare namespace widget {
|
|
1120
1127
|
"auto"
|
1121
1128
|
];
|
1122
1129
|
type BackgroundSize = typeof BackgroundSizes[number];
|
1123
|
-
const Cursors:
|
1130
|
+
const Cursors: readonly [
|
1131
|
+
"default",
|
1132
|
+
"pointer"
|
1133
|
+
];
|
1124
1134
|
type Cursor = typeof Cursors[number];
|
1125
|
-
const Overflows:
|
1135
|
+
const Overflows: readonly [
|
1136
|
+
"visible",
|
1137
|
+
"auto",
|
1138
|
+
"hidden"
|
1139
|
+
];
|
1126
1140
|
type Overflow = typeof Overflows[number];
|
1127
1141
|
type Border = string;
|
1128
1142
|
type BorderStyle = string;
|