@galaxy-io/dls 1.1.0 → 1.1.2
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/assets/components/onboarding/TenantSetupDark.js +2 -2
- package/dist/assets/components/onboarding/TenantSetupLight.js +2 -2
- package/dist/badge/Badge.js +1 -1
- package/dist/buttons/Button.js +2 -2
- package/dist/theme/variants/dark.js +10 -10
- package/dist/theme/variants/light.js +10 -10
- package/package.json +1 -1
|
@@ -166,12 +166,12 @@ var SvgTenantSetupDark = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
|
166
166
|
height: 24.887,
|
|
167
167
|
x: 103.925,
|
|
168
168
|
y: 429.907,
|
|
169
|
-
stroke: "#
|
|
169
|
+
stroke: "#005EFF",
|
|
170
170
|
strokeWidth: .553,
|
|
171
171
|
rx: 4.148
|
|
172
172
|
}),
|
|
173
173
|
/* @__PURE__ */ jsx("path", {
|
|
174
|
-
stroke: "#
|
|
174
|
+
stroke: "#005EFF",
|
|
175
175
|
strokeLinecap: "round",
|
|
176
176
|
strokeLinejoin: "round",
|
|
177
177
|
strokeWidth: 1.106,
|
|
@@ -166,12 +166,12 @@ var SvgTenantSetupLight = (props) => /* @__PURE__ */ jsxs("svg", {
|
|
|
166
166
|
height: 24.887,
|
|
167
167
|
x: 103.925,
|
|
168
168
|
y: 429.907,
|
|
169
|
-
stroke: "#
|
|
169
|
+
stroke: "#005EFF",
|
|
170
170
|
strokeWidth: .553,
|
|
171
171
|
rx: 4.148
|
|
172
172
|
}),
|
|
173
173
|
/* @__PURE__ */ jsx("path", {
|
|
174
|
-
stroke: "#
|
|
174
|
+
stroke: "#005EFF",
|
|
175
175
|
strokeLinecap: "round",
|
|
176
176
|
strokeLinejoin: "round",
|
|
177
177
|
strokeWidth: 1.106,
|
package/dist/badge/Badge.js
CHANGED
|
@@ -60,7 +60,7 @@ var _exp4 = () => ({ theme, $variant }) => {
|
|
|
60
60
|
return match($variant).with("PRIMARY", () => theme.color.background.primary).with("PRIMARY_ALT", () => theme.color.background.primaryAlt).with("SECONDARY", () => theme.color.background.secondary).with("TERTIARY", () => theme.color.background.tertiary).with("SUCCESS", () => theme.color.background.success).with("WARNING", () => theme.color.background.warning).with("ERROR", () => theme.color.background.error).with("PINK", () => theme.color.background.pink).with("ORANGE", () => theme.color.background.orange).with("YELLOW", () => theme.color.background.yellow).with("LIME", () => theme.color.background.lime).with("BLUE", () => theme.color.background.blue).with("PURPLE", () => theme.color.background.purple).with("TEAL", () => theme.color.background.teal).exhaustive();
|
|
61
61
|
};
|
|
62
62
|
var _exp5 = () => ({ theme, $variant }) => {
|
|
63
|
-
return match($variant).with("ERROR", () => theme.color.border.error).with("WARNING", () => theme.color.border.warning).with("SUCCESS", () => theme.color.border.success).otherwise(() => theme.color.border.primary);
|
|
63
|
+
return match($variant).with("PRIMARY", () => theme.color.border.primary).with("SECONDARY", () => theme.color.border.secondary).with("TERTIARY", () => theme.color.border.tertiary).with("ERROR", () => theme.color.border.error).with("WARNING", () => theme.color.border.warning).with("SUCCESS", () => theme.color.border.success).with("PINK", () => theme.color.border.pink).with("ORANGE", () => theme.color.border.orange).with("YELLOW", () => theme.color.border.yellow).with("LIME", () => theme.color.border.lime).with("BLUE", () => theme.color.border.blue).with("PURPLE", () => theme.color.border.purple).with("TEAL", () => theme.color.border.teal).otherwise(() => theme.color.border.primary);
|
|
64
64
|
};
|
|
65
65
|
var StyledBadge = withTheme(/*#__PURE__*/ styled("div")({
|
|
66
66
|
name: "StyledBadge",
|
package/dist/buttons/Button.js
CHANGED
|
@@ -82,10 +82,10 @@ var LabelWrapper = /*#__PURE__*/ styled("span")({
|
|
|
82
82
|
}
|
|
83
83
|
});
|
|
84
84
|
function getTextVariant(variant, activeTheme) {
|
|
85
|
-
return match(variant).with("PRIMARY", () => activeTheme === GalaxyTheme.DARK ? TextVariant.PRIMARY : TextVariant.PRIMARY_ALT).with("SECONDARY", () => TextVariant.PRIMARY).with("TERTIARY", () => TextVariant.PRIMARY).with("SUCCESS", () => TextVariant.
|
|
85
|
+
return match(variant).with("PRIMARY", () => activeTheme === GalaxyTheme.DARK ? TextVariant.PRIMARY : TextVariant.PRIMARY_ALT).with("SECONDARY", () => TextVariant.PRIMARY).with("TERTIARY", () => TextVariant.PRIMARY).with("SUCCESS", () => TextVariant.PRIMARY).with("ERROR", () => TextVariant.PRIMARY).exhaustive();
|
|
86
86
|
}
|
|
87
87
|
function getIconVariant(variant, activeTheme) {
|
|
88
|
-
return match(variant).with("PRIMARY", () => activeTheme === GalaxyTheme.DARK ? IconVariant.PRIMARY : IconVariant.PRIMARY_ALT).with("SECONDARY", () => IconVariant.PRIMARY).with("TERTIARY", () => IconVariant.PRIMARY).with("SUCCESS", () => IconVariant.
|
|
88
|
+
return match(variant).with("PRIMARY", () => activeTheme === GalaxyTheme.DARK ? IconVariant.PRIMARY : IconVariant.PRIMARY_ALT).with("SECONDARY", () => IconVariant.PRIMARY).with("TERTIARY", () => IconVariant.PRIMARY).with("SUCCESS", () => IconVariant.PRIMARY).with("ERROR", () => IconVariant.PRIMARY).exhaustive();
|
|
89
89
|
}
|
|
90
90
|
var BUTTON_SIZE_TO_TEXT_SIZE_MAP = {
|
|
91
91
|
["SMALL"]: TextSize.BODY_SM,
|
|
@@ -19,8 +19,8 @@ var GALAXY_DARK_COLOR = {
|
|
|
19
19
|
teal: "#bde8ee",
|
|
20
20
|
purple: "#b7b1f1",
|
|
21
21
|
disabled: "#4d4d4d",
|
|
22
|
-
galaxy: "#
|
|
23
|
-
galaxyAlt: "#
|
|
22
|
+
galaxy: "#005EFF",
|
|
23
|
+
galaxyAlt: "#3075FF"
|
|
24
24
|
},
|
|
25
25
|
background: {
|
|
26
26
|
base: "#131313",
|
|
@@ -53,8 +53,8 @@ var GALAXY_DARK_COLOR = {
|
|
|
53
53
|
purpleAlt: "#f2f0ff",
|
|
54
54
|
disabled: "#1e1e1e",
|
|
55
55
|
disabledAlt: "#ffffff",
|
|
56
|
-
galaxy: "#
|
|
57
|
-
galaxyAlt: "#
|
|
56
|
+
galaxy: "#005EFF",
|
|
57
|
+
galaxyAlt: "#3075FF"
|
|
58
58
|
},
|
|
59
59
|
border: {
|
|
60
60
|
primary: "#2c2c2c",
|
|
@@ -72,8 +72,8 @@ var GALAXY_DARK_COLOR = {
|
|
|
72
72
|
blue: "#3f6ea5",
|
|
73
73
|
teal: "#3a8a8f",
|
|
74
74
|
purple: "#b7b1f1",
|
|
75
|
-
galaxy: "#
|
|
76
|
-
galaxyAlt: "#
|
|
75
|
+
galaxy: "#005EFF",
|
|
76
|
+
galaxyAlt: "#3075FF"
|
|
77
77
|
},
|
|
78
78
|
icon: {
|
|
79
79
|
primary: "#ffffff",
|
|
@@ -82,9 +82,9 @@ var GALAXY_DARK_COLOR = {
|
|
|
82
82
|
secondaryAlt: "#000000",
|
|
83
83
|
tertiary: "#868686",
|
|
84
84
|
tertiaryAlt: "#000000",
|
|
85
|
-
success: "#
|
|
85
|
+
success: "#4cb782",
|
|
86
86
|
warning: "#ffb265",
|
|
87
|
-
error: "#
|
|
87
|
+
error: "#e53f4f",
|
|
88
88
|
pink: "#f3a8ef",
|
|
89
89
|
orange: "#ffd2a8",
|
|
90
90
|
yellow: "#fff7aa",
|
|
@@ -93,8 +93,8 @@ var GALAXY_DARK_COLOR = {
|
|
|
93
93
|
teal: "#bde8ee",
|
|
94
94
|
purple: "#b7b1f1",
|
|
95
95
|
disabled: "#4d4d4d",
|
|
96
|
-
galaxy: "#
|
|
97
|
-
galaxyAlt: "#
|
|
96
|
+
galaxy: "#005EFF",
|
|
97
|
+
galaxyAlt: "#3075FF"
|
|
98
98
|
},
|
|
99
99
|
opacity: {
|
|
100
100
|
bw100: "rgba(0, 0, 0, 1)",
|
|
@@ -19,8 +19,8 @@ var GALAXY_LIGHT_COLOR = {
|
|
|
19
19
|
teal: "#20b2a5",
|
|
20
20
|
purple: "#b080f3",
|
|
21
21
|
disabled: "#b8b8b8",
|
|
22
|
-
galaxy: "#
|
|
23
|
-
galaxyAlt: "#
|
|
22
|
+
galaxy: "#3075FF",
|
|
23
|
+
galaxyAlt: "#005EFF"
|
|
24
24
|
},
|
|
25
25
|
background: {
|
|
26
26
|
base: "#ffffff",
|
|
@@ -53,8 +53,8 @@ var GALAXY_LIGHT_COLOR = {
|
|
|
53
53
|
purpleAlt: "#272442",
|
|
54
54
|
disabled: "#ffffff",
|
|
55
55
|
disabledAlt: "#1e1e1e",
|
|
56
|
-
galaxy: "#
|
|
57
|
-
galaxyAlt: "#
|
|
56
|
+
galaxy: "#3075FF",
|
|
57
|
+
galaxyAlt: "#005EFF"
|
|
58
58
|
},
|
|
59
59
|
border: {
|
|
60
60
|
primary: "#cdcecd",
|
|
@@ -72,8 +72,8 @@ var GALAXY_LIGHT_COLOR = {
|
|
|
72
72
|
blue: "#7aa7f8",
|
|
73
73
|
teal: "#4cc2b7",
|
|
74
74
|
purple: "#b080f3",
|
|
75
|
-
galaxy: "#
|
|
76
|
-
galaxyAlt: "#
|
|
75
|
+
galaxy: "#3075FF",
|
|
76
|
+
galaxyAlt: "#005EFF"
|
|
77
77
|
},
|
|
78
78
|
icon: {
|
|
79
79
|
primary: "#101010",
|
|
@@ -82,9 +82,9 @@ var GALAXY_LIGHT_COLOR = {
|
|
|
82
82
|
secondaryAlt: "#acacac",
|
|
83
83
|
tertiary: "#9e9e9e",
|
|
84
84
|
tertiaryAlt: "#868686",
|
|
85
|
-
success: "#
|
|
85
|
+
success: "#55c393",
|
|
86
86
|
warning: "#ff6b24",
|
|
87
|
-
error: "#
|
|
87
|
+
error: "#f3506b",
|
|
88
88
|
pink: "#ff4595",
|
|
89
89
|
orange: "#e99243",
|
|
90
90
|
yellow: "#cbc24d",
|
|
@@ -93,8 +93,8 @@ var GALAXY_LIGHT_COLOR = {
|
|
|
93
93
|
teal: "#20b2a5",
|
|
94
94
|
purple: "#b080f3",
|
|
95
95
|
disabled: "#b8b8b8",
|
|
96
|
-
galaxy: "#
|
|
97
|
-
galaxyAlt: "#
|
|
96
|
+
galaxy: "#3075FF",
|
|
97
|
+
galaxyAlt: "#005EFF"
|
|
98
98
|
},
|
|
99
99
|
opacity: {
|
|
100
100
|
bw100: "rgba(255, 255, 255, 1)",
|