@opengeoweb/theme 10.1.0 → 11.0.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/index.esm.js +46 -2
- package/package.json +1 -1
- package/src/lib/types.d.ts +6 -0
package/index.esm.js
CHANGED
|
@@ -2695,6 +2695,28 @@ var colors$2 = {
|
|
|
2695
2695
|
fill: '#7BACFF',
|
|
2696
2696
|
opacity: 0.2
|
|
2697
2697
|
}
|
|
2698
|
+
},
|
|
2699
|
+
chip: {
|
|
2700
|
+
highlightDefault: {
|
|
2701
|
+
fill: '#FFA800',
|
|
2702
|
+
opacity: 0.15,
|
|
2703
|
+
borderColor: '#374061'
|
|
2704
|
+
},
|
|
2705
|
+
highlightDefaultMouseOver: {
|
|
2706
|
+
fill: '#DEDBD4',
|
|
2707
|
+
opacity: 1,
|
|
2708
|
+
borderColor: '#374061'
|
|
2709
|
+
},
|
|
2710
|
+
highlightActiveDefault: {
|
|
2711
|
+
fill: '#566F94',
|
|
2712
|
+
opacity: 1,
|
|
2713
|
+
borderColor: 'transparent'
|
|
2714
|
+
},
|
|
2715
|
+
highlightActiveMouseOver: {
|
|
2716
|
+
fill: '#345596',
|
|
2717
|
+
opacity: 1,
|
|
2718
|
+
borderColor: 'transparent'
|
|
2719
|
+
}
|
|
2698
2720
|
}
|
|
2699
2721
|
};
|
|
2700
2722
|
// https://app.zeplin.io/project/5ecf84a3c6ae1047a368f393/screen/609bb6a5287bd1abe0de39a7
|
|
@@ -4005,6 +4027,28 @@ var colors$1 = {
|
|
|
4005
4027
|
fill: '#7BACFF',
|
|
4006
4028
|
opacity: 0.2
|
|
4007
4029
|
}
|
|
4030
|
+
},
|
|
4031
|
+
chip: {
|
|
4032
|
+
highlightDefault: {
|
|
4033
|
+
fill: '#FFA800',
|
|
4034
|
+
opacity: 0.15,
|
|
4035
|
+
borderColor: '#F8F9F9'
|
|
4036
|
+
},
|
|
4037
|
+
highlightDefaultMouseOver: {
|
|
4038
|
+
fill: '#DEDBD4',
|
|
4039
|
+
opacity: 1,
|
|
4040
|
+
borderColor: '#F8F9F9'
|
|
4041
|
+
},
|
|
4042
|
+
highlightActiveDefault: {
|
|
4043
|
+
fill: '#566F94',
|
|
4044
|
+
opacity: 1,
|
|
4045
|
+
borderColor: 'transparent'
|
|
4046
|
+
},
|
|
4047
|
+
highlightActiveMouseOver: {
|
|
4048
|
+
fill: '#345596',
|
|
4049
|
+
opacity: 1,
|
|
4050
|
+
borderColor: 'transparent'
|
|
4051
|
+
}
|
|
4008
4052
|
}
|
|
4009
4053
|
};
|
|
4010
4054
|
// https://app.zeplin.io/project/5ecf84a3c6ae1047a368f393/screen/6093e694124ecf3886de76d4
|
|
@@ -4042,7 +4086,7 @@ var focusButtonStyle = {
|
|
|
4042
4086
|
outline: 'solid 2px #FFFFFF'
|
|
4043
4087
|
};
|
|
4044
4088
|
// https://app.zeplin.io/project/5ecf84a3c6ae1047a368f393/screen/6093e5dc12278e35d433aa2d
|
|
4045
|
-
var colors = {
|
|
4089
|
+
var colors = Object.assign({}, colors$2, {
|
|
4046
4090
|
background: {
|
|
4047
4091
|
surface: '#9e1f1e',
|
|
4048
4092
|
surfaceApp: '#740c16',
|
|
@@ -4712,7 +4756,7 @@ var colors = {
|
|
|
4712
4756
|
backgroundColor: 'rgba(0, 35, 65, 0.95)',
|
|
4713
4757
|
backgroundRepeat: 'no-repeat'
|
|
4714
4758
|
}
|
|
4715
|
-
};
|
|
4759
|
+
});
|
|
4716
4760
|
// https://app.zeplin.io/project/5ecf84a3c6ae1047a368f393/screen/6093e694124ecf3886de76d4
|
|
4717
4761
|
var elevations = {
|
|
4718
4762
|
elevation_01: '0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.14)',
|
package/package.json
CHANGED
package/src/lib/types.d.ts
CHANGED
|
@@ -211,6 +211,12 @@ export interface GeowebColorPalette {
|
|
|
211
211
|
festoonOverlay?: CSSProperties;
|
|
212
212
|
festoonContainer?: CSSProperties;
|
|
213
213
|
festoonBackdrop?: CSSProperties;
|
|
214
|
+
chip: {
|
|
215
|
+
highlightDefault: CSSProperties;
|
|
216
|
+
highlightDefaultMouseOver: CSSProperties;
|
|
217
|
+
highlightActiveDefault: CSSProperties;
|
|
218
|
+
highlightActiveMouseOver: CSSProperties;
|
|
219
|
+
};
|
|
214
220
|
}
|
|
215
221
|
export type Elevations = Record<string, string>;
|
|
216
222
|
declare module '@mui/material/styles' {
|