microsoft-graph 2.18.1 → 2.18.2
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.
|
@@ -28,7 +28,7 @@ const firstColumn = "A";
|
|
|
28
28
|
const lastColumn = "XFD";
|
|
29
29
|
const firstRow = "1";
|
|
30
30
|
const lastRow = "1048576";
|
|
31
|
-
const addressPattern = /^(?<sheet>[A-Za-z0-9_]
|
|
31
|
+
const addressPattern = /^(?<sheet>(?:'[^']+'|[A-Za-z0-9_]+)!)?(?:(?<startColumn>[A-Z]+)?(?<startRow>\d+)?(?::(?<endColumn>[A-Z]+)?(?<endRow>\d+)?)?)$/;
|
|
32
32
|
/**
|
|
33
33
|
* Decomposes an address into its components (start and end columns/rows).
|
|
34
34
|
* @param address - The address to decompose.
|
|
@@ -5,7 +5,7 @@ const firstColumn = "A";
|
|
|
5
5
|
const lastColumn = "XFD";
|
|
6
6
|
const firstRow = "1";
|
|
7
7
|
const lastRow = "1048576";
|
|
8
|
-
const addressPattern = /^(?<sheet>[A-Za-z0-9_]
|
|
8
|
+
const addressPattern = /^(?<sheet>(?:'[^']+'|[A-Za-z0-9_]+)!)?(?:(?<startColumn>[A-Z]+)?(?<startRow>\d+)?(?::(?<endColumn>[A-Z]+)?(?<endRow>\d+)?)?)$/;
|
|
9
9
|
/**
|
|
10
10
|
* Decomposes an address into its components (start and end columns/rows).
|
|
11
11
|
* @param address - The address to decompose.
|