From aa31443ede06d3f9972a3b4e82104b3b33e6b33f Mon Sep 17 00:00:00 2001 From: "Carl M. Lane" Date: Thu, 6 Nov 2025 23:17:50 -0800 Subject: [PATCH 1/3] =?UTF-8?q?=F0=9F=A4=96=20Merge=20PR=20#73976=20fix(@m?= =?UTF-8?q?ailchimp/mailchimp=5Fmarketing):=20correct=20typo=20of=20'longi?= =?UTF-8?q?tude'=20in=20MemberLocation=20interface=20by=20@carlmlane?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- types/mailchimp__mailchimp_marketing/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/mailchimp__mailchimp_marketing/index.d.ts b/types/mailchimp__mailchimp_marketing/index.d.ts index ae911d347f4669..8aa6265c347829 100644 --- a/types/mailchimp__mailchimp_marketing/index.d.ts +++ b/types/mailchimp__mailchimp_marketing/index.d.ts @@ -1455,7 +1455,7 @@ export namespace lists { interface MemberLocation { latitude: number; - logitude: number; + longitude: number; } interface FullMemberLocation extends MemberLocation { From 7feecad08eb2b0fdf1f156dc1e61f80256e97f80 Mon Sep 17 00:00:00 2001 From: Rolf Lifvergren Date: Fri, 7 Nov 2025 14:37:01 +0100 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=A4=96=20Merge=20PR=20#73931=20[dygra?= =?UTF-8?q?phs]=20Add=20missing=20fields=20in=20config=20and=20annotation?= =?UTF-8?q?=20types=20by=20@rolflifvergren-smhi?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- types/dygraphs/dygraphs-tests.ts | 5 +++++ types/dygraphs/index.d.ts | 17 +++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/types/dygraphs/dygraphs-tests.ts b/types/dygraphs/dygraphs-tests.ts index 21a0504da32460..51ccfd7b1aac26 100644 --- a/types/dygraphs/dygraphs-tests.ts +++ b/types/dygraphs/dygraphs-tests.ts @@ -69,6 +69,7 @@ const d = new Dygraph(new HTMLDivElement(), "data", { labelsSeparateLines: true, legend: "always", rangeSelectorForegroundStrokeColor: "white", + resizable: "both", rollPeriod: 14, series: { y: { @@ -233,6 +234,10 @@ d.setAnnotations([ event; }, }, + { + series: "sine wave", + xval: 20700, + }, ]); // $ExpectType Annotation[] diff --git a/types/dygraphs/index.d.ts b/types/dygraphs/index.d.ts index 39283c1d043d84..9e98a9704cb099 100644 --- a/types/dygraphs/index.d.ts +++ b/types/dygraphs/index.d.ts @@ -777,6 +777,17 @@ export namespace dygraphs { */ rangeSelectorPlotStrokeColor?: string | null | undefined; + /** + * Whether to add a ResizeObserver to the container div ("passive") and additionally + * make it resizable ("horizontal", "vertical", "both"). In any case, if the container + * div has CSS "overflow:visible;" it will be changed to "overflow:hidden;" to make CSS + * resizing possible. Note that this is distinct from resizing the graph when the window + * size changes, which is always active; this feature adds user-resizable “handles” to + * the container div. + * @default no + */ + resizable?: "passive" | "horizontal" | "vertical" | "both" | "no" | undefined; + /** * Number of pixels to leave blank at the right edge of the Dygraph. This makes it easier to * highlight the right-most data point. @@ -1100,6 +1111,12 @@ export namespace dygraphs { */ x?: number | string | undefined; + /** + * The numeric x value of the point, milliseconds since the epoch for a Date x axis. + * You must set either x or xval. + */ + xval?: number | undefined; + /** Text that will appear on the annotation's flag. */ shortText?: string | undefined; From 831153d6046c4a9ae60e8ce249fa0b13f9e24879 Mon Sep 17 00:00:00 2001 From: Alex Jerabek <38896772+AlexJerabek@users.noreply.github.com> Date: Fri, 7 Nov 2025 08:55:07 -0800 Subject: [PATCH 3/3] [office-js, office-js-preview] Add note that Office.isSetSupported doesn't work (#73990) --- types/office-js-preview/index.d.ts | 2 ++ types/office-js/index.d.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/types/office-js-preview/index.d.ts b/types/office-js-preview/index.d.ts index 5e33bab6d01da6..b80be3202ed379 100644 --- a/types/office-js-preview/index.d.ts +++ b/types/office-js-preview/index.d.ts @@ -288,6 +288,8 @@ declare namespace Office { */ function initialize(reason: InitializationReason): void; /** + * **WARNING**: This API returns inaccurate values when used on desktop applications. Use `Office.context.requirements.isSetSupported` instead. + * * Checks if the specified requirement set is supported by the Office application. * @param name - Set name; e.g., "MatrixBindings". * @param minVersion - The minimum required version; e.g., "1.4". diff --git a/types/office-js/index.d.ts b/types/office-js/index.d.ts index 5960cf2159e315..453bd0d13b9813 100644 --- a/types/office-js/index.d.ts +++ b/types/office-js/index.d.ts @@ -288,6 +288,8 @@ declare namespace Office { */ function initialize(reason: InitializationReason): void; /** + * **WARNING**: This API returns inaccurate values when used on desktop applications. Use `Office.context.requirements.isSetSupported` instead. + * * Checks if the specified requirement set is supported by the Office application. * @param name - Set name; e.g., "MatrixBindings". * @param minVersion - The minimum required version; e.g., "1.4".