@swr-data-lab/components 2.14.0 → 2.15.1
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/DesignTokens/DesignTokens.svelte +2 -0
- package/dist/DesignTokens/Tokens.js +5 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/maplibre/AttributionControl/AttributionControl.svelte +1 -0
- package/dist/maplibre/GeocoderControl/GeocoderControl.svelte +20 -13
- package/dist/maplibre/Map/Map.svelte +19 -11
- package/dist/maplibre/MapStyle/SWRDataLabDark.d.ts +9 -0
- package/dist/maplibre/MapStyle/SWRDataLabDark.js +118 -0
- package/dist/maplibre/MapStyle/SWRDataLabLight.js +39 -7
- package/dist/maplibre/MapStyle/components/Admin.d.ts +1 -1
- package/dist/maplibre/MapStyle/components/Admin.js +6 -12
- package/dist/maplibre/MapStyle/components/Buildings.d.ts +1 -1
- package/dist/maplibre/MapStyle/components/Buildings.js +12 -13
- package/dist/maplibre/MapStyle/components/Landuse.d.ts +1 -1
- package/dist/maplibre/MapStyle/components/Landuse.js +5 -20
- package/dist/maplibre/MapStyle/components/PlaceLabels.d.ts +1 -1
- package/dist/maplibre/MapStyle/components/PlaceLabels.js +2 -3
- package/dist/maplibre/MapStyle/components/Roads.d.ts +1 -1
- package/dist/maplibre/MapStyle/components/Roads.js +173 -202
- package/dist/maplibre/MapStyle/components/Transit.d.ts +1 -1
- package/dist/maplibre/MapStyle/components/Transit.js +43 -44
- package/dist/maplibre/MapStyle/components/Walking.d.ts +1 -1
- package/dist/maplibre/MapStyle/components/Walking.js +61 -209
- package/dist/maplibre/MapStyle/icons/pin-14-dark.svg +10 -0
- package/dist/maplibre/MapStyle/index.d.ts +2 -1
- package/dist/maplibre/MapStyle/index.js +2 -1
- package/dist/maplibre/MapStyle/sprite/sprite.json +1 -1
- package/dist/maplibre/MapStyle/sprite/sprite.png +0 -0
- package/dist/maplibre/MapStyle/sprite/sprite@2x.json +1 -1
- package/dist/maplibre/MapStyle/sprite/sprite@2x.png +0 -0
- package/dist/maplibre/MapStyle/storyLocations.d.ts +47 -0
- package/dist/maplibre/MapStyle/storyLocations.js +21 -0
- package/dist/maplibre/NavigationControl/NavigationControl.svelte +12 -3
- package/dist/maplibre/ScaleControl/ScaleControl.svelte +1 -0
- package/dist/maplibre/Tooltip/Tooltip.svelte +3 -2
- package/package.json +1 -1
- package/dist/maplibre/Map/test.css +0 -687
- package/dist/maplibre/MapStyle/tokens.d.ts +0 -23
- package/dist/maplibre/MapStyle/tokens.js +0 -23
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
declare const tokens: {
|
|
2
|
-
sans_regular: string[];
|
|
3
|
-
sans_medium: string[];
|
|
4
|
-
sans_bold: string[];
|
|
5
|
-
background: string;
|
|
6
|
-
water: string;
|
|
7
|
-
water_light: string;
|
|
8
|
-
water_ocean: string;
|
|
9
|
-
marsh: string;
|
|
10
|
-
grass: string;
|
|
11
|
-
grass_dark: string;
|
|
12
|
-
street_primary: string;
|
|
13
|
-
street_primary_case: string;
|
|
14
|
-
street_secondary: string;
|
|
15
|
-
street_secondary_case: string;
|
|
16
|
-
street_tertiary: string;
|
|
17
|
-
street_tertiary_case: string;
|
|
18
|
-
label_primary: string;
|
|
19
|
-
label_secondary: string;
|
|
20
|
-
label_tertiary: string;
|
|
21
|
-
building: string;
|
|
22
|
-
};
|
|
23
|
-
export default tokens;
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
const tokens = {
|
|
2
|
-
sans_regular: ['SWR Sans Regular'],
|
|
3
|
-
sans_medium: ['SWR Sans Medium'],
|
|
4
|
-
sans_bold: ['SWR Sans Bold'],
|
|
5
|
-
background: 'hsl(24, 29%, 98.5%)',
|
|
6
|
-
water: 'hsl(210, 71%, 83%)',
|
|
7
|
-
water_light: 'hsl(210, 41%, 90%)',
|
|
8
|
-
water_ocean: 'hsl(209, 57%, 84%)',
|
|
9
|
-
marsh: 'hsl(200, 14%, 97%)',
|
|
10
|
-
grass: 'hsl(133, 36%, 95%)',
|
|
11
|
-
grass_dark: 'hsl(127, 49%, 93%)',
|
|
12
|
-
street_primary: 'hsl(0, 4%, 95%)',
|
|
13
|
-
street_primary_case: 'hsl(240, 1%, 84%)',
|
|
14
|
-
street_secondary: 'hsl(0, 0%, 95%)',
|
|
15
|
-
street_secondary_case: 'hsl(0, 0%, 75%)',
|
|
16
|
-
street_tertiary: 'hsl(0, 0%, 95%)',
|
|
17
|
-
street_tertiary_case: 'hsl(0, 0%, 70%)',
|
|
18
|
-
label_primary: 'hsl(240, 10%, 2%)',
|
|
19
|
-
label_secondary: 'hsl(0, 0%, 18%)',
|
|
20
|
-
label_tertiary: 'hsl(60, 1%, 50%)',
|
|
21
|
-
building: '#f3f2f1'
|
|
22
|
-
};
|
|
23
|
-
export default tokens;
|