@indico-data/design-system 1.0.35 → 1.0.37
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/lib/index.d.ts +4 -0
- package/lib/index.esm.js +4 -0
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +4 -0
- package/lib/index.js.map +1 -1
- package/lib/tokens/colors.d.ts +4 -0
- package/package.json +1 -1
- package/src/components/dropdowns/BorderSelect/BorderSelect.styles.ts +4 -4
- package/src/tokens/colors.ts +4 -0
package/lib/tokens/colors.d.ts
CHANGED
|
@@ -10,11 +10,13 @@ export declare const allColors: {
|
|
|
10
10
|
readonly baliHai: "#8498b6";
|
|
11
11
|
readonly black: "#000";
|
|
12
12
|
readonly blueBayoux: "#4f5e74";
|
|
13
|
+
readonly blueDarknut: "#0070f5";
|
|
13
14
|
readonly blueMagenta: "#542f9d";
|
|
14
15
|
readonly blueRibbon: "#0b35ff";
|
|
15
16
|
readonly blueYonder: "#586fd2";
|
|
16
17
|
readonly bouqet: "#a35c9a";
|
|
17
18
|
readonly brick: "#c62828";
|
|
19
|
+
readonly brightDusk: "#efebf7";
|
|
18
20
|
readonly brown: "#785349";
|
|
19
21
|
readonly candyCorn: "#fcef4d";
|
|
20
22
|
readonly carnation: "#ff8adf";
|
|
@@ -92,12 +94,14 @@ export declare const allColors: {
|
|
|
92
94
|
readonly red: "#f95359";
|
|
93
95
|
readonly robinsEggBlue: "#00bcd4";
|
|
94
96
|
readonly romanSilver: "#7d888d";
|
|
97
|
+
readonly sagatPurple: "#6833d0";
|
|
95
98
|
readonly salem: "#03832e";
|
|
96
99
|
readonly sapGreen: "#5f7e20";
|
|
97
100
|
readonly seaGreen: "#0b8a51";
|
|
98
101
|
readonly seance: "#7f1f82";
|
|
99
102
|
readonly shiraz: "#c61021";
|
|
100
103
|
readonly sinopia: "#D14200";
|
|
104
|
+
readonly slaaneshGrey: "#dbd5e6";
|
|
101
105
|
readonly tangerine: "#ff9900";
|
|
102
106
|
readonly teal: "#008285";
|
|
103
107
|
readonly toast: "#997862";
|
package/package.json
CHANGED
|
@@ -16,19 +16,19 @@ export const StyledSelect = styled.div`
|
|
|
16
16
|
label {
|
|
17
17
|
line-height: 1.2;
|
|
18
18
|
margin-bottom: 14px;
|
|
19
|
-
color: ${COLORS.lightFontColor};
|
|
19
|
+
// color: ${COLORS.lightFontColor};
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
.select-container {
|
|
23
23
|
position: relative;
|
|
24
|
-
max-width: 300px;
|
|
24
|
+
// max-width: 300px;
|
|
25
25
|
|
|
26
26
|
select {
|
|
27
27
|
background: transparent;
|
|
28
28
|
border: 1px solid ${COLORS.baliHai};
|
|
29
29
|
width: 100%;
|
|
30
|
-
max-width: 300px;
|
|
31
|
-
color: ${COLORS.lightFontColor};
|
|
30
|
+
// max-width: 300px;
|
|
31
|
+
// color: ${COLORS.lightFontColor};
|
|
32
32
|
font-size: ${FONT_SIZE.base};
|
|
33
33
|
border-radius: 4px;
|
|
34
34
|
padding: 7px 30px 8px 15px;
|
package/src/tokens/colors.ts
CHANGED
|
@@ -10,11 +10,13 @@ export const allColors = {
|
|
|
10
10
|
baliHai: '#8498b6',
|
|
11
11
|
black: '#000',
|
|
12
12
|
blueBayoux: '#4f5e74',
|
|
13
|
+
blueDarknut: '#0070f5',
|
|
13
14
|
blueMagenta: '#542f9d',
|
|
14
15
|
blueRibbon: '#0b35ff',
|
|
15
16
|
blueYonder: '#586fd2',
|
|
16
17
|
bouqet: '#a35c9a',
|
|
17
18
|
brick: '#c62828',
|
|
19
|
+
brightDusk: '#efebf7',
|
|
18
20
|
brown: '#785349',
|
|
19
21
|
candyCorn: '#fcef4d',
|
|
20
22
|
carnation: '#ff8adf',
|
|
@@ -92,12 +94,14 @@ export const allColors = {
|
|
|
92
94
|
red: '#f95359',
|
|
93
95
|
robinsEggBlue: '#00bcd4',
|
|
94
96
|
romanSilver: '#7d888d',
|
|
97
|
+
sagatPurple: '#6833d0',
|
|
95
98
|
salem: '#03832e',
|
|
96
99
|
sapGreen: '#5f7e20',
|
|
97
100
|
seaGreen: '#0b8a51',
|
|
98
101
|
seance: '#7f1f82',
|
|
99
102
|
shiraz: '#c61021',
|
|
100
103
|
sinopia: '#D14200',
|
|
104
|
+
slaaneshGrey: '#dbd5e6',
|
|
101
105
|
tangerine: '#ff9900',
|
|
102
106
|
teal: '#008285',
|
|
103
107
|
toast: '#997862',
|