@opengeoweb/theme 9.13.0 → 9.14.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 +16 -0
- package/package.json +1 -1
- package/src/lib/types.d.ts +2 -0
package/index.esm.js
CHANGED
|
@@ -3785,6 +3785,14 @@ const colors$1 = {
|
|
|
3785
3785
|
fill: '#4871E5',
|
|
3786
3786
|
color: '#FFFFFF'
|
|
3787
3787
|
},
|
|
3788
|
+
timelineBackgroundDisabled: {
|
|
3789
|
+
fill: '#767E93',
|
|
3790
|
+
color: '#FFFFFF'
|
|
3791
|
+
},
|
|
3792
|
+
timelineBackgroundDisabledAlternative: {
|
|
3793
|
+
fill: '#8A91A3',
|
|
3794
|
+
color: '#FFFFFF'
|
|
3795
|
+
},
|
|
3788
3796
|
timelineBackgroundObserved: {
|
|
3789
3797
|
fill: '#8A91A3',
|
|
3790
3798
|
color: '#FFFFFF'
|
|
@@ -5068,6 +5076,14 @@ const colors = {
|
|
|
5068
5076
|
fill: '#4871E5',
|
|
5069
5077
|
color: '#FFFFFF'
|
|
5070
5078
|
},
|
|
5079
|
+
timelineBackgroundDisabled: {
|
|
5080
|
+
fill: '#767E93',
|
|
5081
|
+
color: '#FFFFFF'
|
|
5082
|
+
},
|
|
5083
|
+
timelineBackgroundDisabledAlternative: {
|
|
5084
|
+
fill: '#8A91A3',
|
|
5085
|
+
color: '#FFFFFF'
|
|
5086
|
+
},
|
|
5071
5087
|
timelineBackgroundObserved: {
|
|
5072
5088
|
fill: '#8A91A3',
|
|
5073
5089
|
color: '#FFFFFF'
|
package/package.json
CHANGED
package/src/lib/types.d.ts
CHANGED
|
@@ -122,6 +122,8 @@ export interface GeowebColorPalette {
|
|
|
122
122
|
timeline: CSSProperties;
|
|
123
123
|
timelineBackground: CSSProperties;
|
|
124
124
|
timelineBackgroundAlternative: CSSProperties;
|
|
125
|
+
timelineBackgroundDisabled: CSSProperties;
|
|
126
|
+
timelineBackgroundDisabledAlternative: CSSProperties;
|
|
125
127
|
timelineBackgroundObserved: CSSProperties;
|
|
126
128
|
timelineBackgroundObservedAlternative: CSSProperties;
|
|
127
129
|
};
|