@kepler.gl/styles 3.2.5 → 3.3.0-alpha.0

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/base.d.ts CHANGED
@@ -1,14 +1,14 @@
1
- declare type InputProps = {
1
+ type InputProps = {
2
2
  active: boolean;
3
3
  disabled: boolean;
4
4
  error: string;
5
5
  size: string;
6
6
  type: string;
7
7
  };
8
- declare type SecondaryInputProps = {
8
+ type SecondaryInputProps = {
9
9
  error: string;
10
10
  };
11
- declare type SwitchableProps = {
11
+ type SwitchableProps = {
12
12
  checked: boolean;
13
13
  };
14
14
  export declare const transition = "all .4s ease";
@@ -220,8 +220,8 @@ export declare const panelBackgroundLT = "#F8F8F9";
220
220
  export declare const panelToggleMarginRight = 12;
221
221
  export declare const panelToggleBottomPadding = 6;
222
222
  export declare const panelBorderColor = "#3A414C";
223
- export declare const panelBorder: string;
224
- export declare const panelBorderLT: string;
223
+ export declare const panelBorder = "1px solid #3A414C";
224
+ export declare const panelBorderLT = "1px solid #F1F1F1";
225
225
  export declare const mapPanelBackgroundColor = "#242730";
226
226
  export declare const mapPanelHeaderBackgroundColor = "#29323C";
227
227
  export declare const tooltipBg = "#3A414C";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kepler.gl/styles",
3
3
  "author": "Shan He <shan@uber.com>",
4
- "version": "3.2.5",
4
+ "version": "3.3.0-alpha.0",
5
5
  "description": "kepler.gl constants used by kepler.gl components, actions and reducers",
6
6
  "license": "MIT",
7
7
  "main": "dist/index.js",
@@ -30,7 +30,7 @@
30
30
  "umd"
31
31
  ],
32
32
  "dependencies": {
33
- "@kepler.gl/constants": "3.2.5",
33
+ "@kepler.gl/constants": "3.3.0-alpha.0",
34
34
  "@types/styled-components": "^5.1.32",
35
35
  "styled-components": "6.1.8"
36
36
  },