Skip to content

Commit 4f801df

Browse files
fix: update examples and minimize URLs (#799) b5c0f1f
1 parent e082511 commit 4f801df

File tree

14 files changed

+455
-405
lines changed

14 files changed

+455
-405
lines changed

assets/highlight.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
--dark-hl-12: #B5CEA8;
2828
--light-hl-13: #008000;
2929
--dark-hl-13: #6A9955;
30+
--light-hl-14: #267F99;
31+
--dark-hl-14: #4EC9B0;
3032
--light-code-background: #F5F5F5;
3133
--dark-code-background: #1E1E1E;
3234
}
@@ -46,6 +48,7 @@
4648
--hl-11: var(--light-hl-11);
4749
--hl-12: var(--light-hl-12);
4850
--hl-13: var(--light-hl-13);
51+
--hl-14: var(--light-hl-14);
4952
--code-background: var(--light-code-background);
5053
} }
5154

@@ -64,6 +67,7 @@
6467
--hl-11: var(--dark-hl-11);
6568
--hl-12: var(--dark-hl-12);
6669
--hl-13: var(--dark-hl-13);
70+
--hl-14: var(--dark-hl-14);
6771
--code-background: var(--dark-code-background);
6872
} }
6973

@@ -82,6 +86,7 @@ body.light {
8286
--hl-11: var(--light-hl-11);
8387
--hl-12: var(--light-hl-12);
8488
--hl-13: var(--light-hl-13);
89+
--hl-14: var(--light-hl-14);
8590
--code-background: var(--light-code-background);
8691
}
8792

@@ -100,6 +105,7 @@ body.dark {
100105
--hl-11: var(--dark-hl-11);
101106
--hl-12: var(--dark-hl-12);
102107
--hl-13: var(--dark-hl-13);
108+
--hl-14: var(--dark-hl-14);
103109
--code-background: var(--dark-code-background);
104110
}
105111

@@ -117,4 +123,5 @@ body.dark {
117123
.hl-11 { color: var(--hl-11); }
118124
.hl-12 { color: var(--hl-12); }
119125
.hl-13 { color: var(--hl-13); }
126+
.hl-14 { color: var(--hl-14); }
120127
pre, code { background: var(--code-background); }

classes/Loader.html

Lines changed: 17 additions & 17 deletions
Large diffs are not rendered by default.

dist/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
*/
1616
/// <reference types="google.maps" />
1717
export declare const DEFAULT_ID = "__googleMapsScriptId";
18-
export type Library = "core" | "maps" | "places" | "geocoding" | "routes" | "marker" | "geometry" | "elevation" | "streetView" | "journeySharing" | "drawing" | "visualization";
19-
export type Libraries = Library[];
18+
export declare type Library = "core" | "maps" | "places" | "geocoding" | "routes" | "marker" | "geometry" | "elevation" | "streetView" | "journeySharing" | "drawing" | "visualization";
19+
export declare type Libraries = Library[];
2020
/**
2121
* The Google Maps JavaScript API
2222
* [documentation](https://developers.google.com/maps/documentation/javascript/tutorial)

0 commit comments

Comments
 (0)