slippers-ui 3.0.0-alpha.2 → 3.0.0-alpha.4

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.
@@ -0,0 +1,3 @@
1
+ {
2
+ "recommendations": ["Vue.volar"]
3
+ }
package/README.md CHANGED
@@ -1,75 +1,42 @@
1
- # Nuxt Minimal Starter
1
+ # Slippers UI - GitLab's Marketing Design System
2
2
 
3
- Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
3
+ Slippers is the open-source GitLab Marketing Web Design System. It was created in the spirit of ["everyone can contribute"](https://about.gitlab.com/company/mission/#everyone-can-contribute).
4
4
 
5
- ## Setup
5
+ ## Resources:
6
6
 
7
- Make sure to install dependencies:
7
+ - Storybook: https://gitlab-com.gitlab.io/marketing/digital-experience/slippers-ui/.
8
+ - Figma: https://www.figma.com/file/nWIOpmuMp7RZXmfTj6ujAF/Slippers_foundations.
9
+ - GitLab project: https://gitlab.com/gitlab-com/marketing/digital-experience/slippers-ui.
10
+ - Further documentation: https://about.gitlab.com/handbook/marketing/digital-experience/slippers-design-system/.
8
11
 
9
- ```bash
10
- # npm
11
- npm install
12
+ ## Gettings started with Slippers:
12
13
 
13
- # pnpm
14
- pnpm install
14
+ ### Local development
15
15
 
16
- # yarn
17
- yarn install
16
+ Slippers uses [Storybook](https://storybook.js.org/) to enable component exploration.
18
17
 
19
- # bun
20
- bun install
21
- ```
18
+ [Yarn](https://yarnpkg.com/) is the preferred package manager.
22
19
 
23
- ## Development Server
20
+ **Running Storybook locally:**
24
21
 
25
- Start the development server on `http://localhost:3000`:
22
+ 1. Clone the [Slippers project](https://gitlab.com/gitlab-com/marketing/digital-experience/slippers-ui).
23
+ 2. Install the dependecies using the version of node specified in [.npmrc](https://gitlab.com/gitlab-com/marketing/digital-experience/slippers-ui/-/blob/main/.npmrc) - `npm install`.
24
+ 3. Run Storybook - `yarn storybook`.
25
+ 4. Storybook should now be running at: http://localhost:6009/.
26
26
 
27
- ```bash
28
- # npm
29
- npm run dev
27
+ **Updating the slippers-ui NPM package**
30
28
 
31
- # pnpm
32
- pnpm dev
29
+ 1. Make changes to slippers-ui.
30
+ 2. If needed, create/update .stories so Storybook is upto date.
31
+ 3. Increment the version number in package.json.
32
+ 4. If needed, add component into install.js (this adds components into the build).
33
+ 5. Build /dist folder - `yarn build-library`.
34
+ 6. Publish to NPM - `yarn publish`.
35
+ 7. You can optionally publish using `sh scripts/publish.sh`. Note that you must have `jq` installed. This attempts to run Step 5 and 6 and validate all of this process for you.
36
+ 8. Merge changes into origin/main.
37
+ 9. Once the package has been published it's now ready to be updated in the consuming repositories (Example: Buyer Experience, be-navigation, etc.).
33
38
 
34
- # yarn
35
- yarn dev
39
+ **Importing slippers-ui into your project:**
36
40
 
37
- # bun
38
- bun run dev
39
- ```
40
-
41
- ## Production
42
-
43
- Build the application for production:
44
-
45
- ```bash
46
- # npm
47
- npm run build
48
-
49
- # pnpm
50
- pnpm build
51
-
52
- # yarn
53
- yarn build
54
-
55
- # bun
56
- bun run build
57
- ```
58
-
59
- Locally preview production build:
60
-
61
- ```bash
62
- # npm
63
- npm run preview
64
-
65
- # pnpm
66
- pnpm preview
67
-
68
- # yarn
69
- yarn preview
70
-
71
- # bun
72
- bun run preview
73
- ```
74
-
75
- Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
41
+ - With NPM `npm install slippers-ui` OR with YARN `yarn add slippers-ui`
42
+ - Slippers main entry point is /dist/slippers-core.umd.min.js, [example usage](https://gitlab.com/gitlab-com/marketing/digital-experience/buyer-experience/-/blob/main/plugins/slippers-ui.ts). To import the styling for the above components, the compiled css file can be found at: /dist/slippers-core.css.
@@ -1,262 +1,34 @@
1
- import { defineComponent as u, computed as f, openBlock as s, createElementBlock as a, mergeProps as v, renderSlot as t, normalizeClass as l, createElementVNode as n, createBlock as $, resolveDynamicComponent as h, withCtx as m, createCommentVNode as y } from "vue";
2
- const g = u({
3
- name: "SlpButton",
1
+ import { defineComponent as c, computed as u, openBlock as r, createElementBlock as a, mergeProps as l, renderSlot as p } from "vue";
2
+ const d = ["href"], f = /* @__PURE__ */ c({
3
+ __name: "SlpButton",
4
4
  props: {
5
- disabled: {
6
- type: Boolean,
7
- required: !1,
8
- default: !1
9
- },
10
- variant: {
11
- type: String,
12
- required: !1,
13
- default: "primary"
14
- },
15
- href: {
16
- type: String,
17
- required: !1,
18
- default: ""
19
- }
5
+ disabled: { type: Boolean },
6
+ variant: {},
7
+ href: {}
20
8
  },
21
- setup(e) {
22
- return {
23
- className: f(() => {
24
- let r = [`slp-btn-${e.variant}`];
25
- return e.disabled && r.push("slp-btn-disabled"), r.join(" ");
26
- })
27
- };
9
+ setup(o) {
10
+ const e = o, s = u(() => {
11
+ let t = [`slp-btn-${e.variant}`];
12
+ return e.disabled && t.push("slp-btn-disabled"), t.join(" ");
13
+ });
14
+ return (t, n) => e.href ? (r(), a("a", l({ key: 0 }, t.$attrs, {
15
+ class: ["slp-btn", s.value],
16
+ href: e.href
17
+ }), [
18
+ p(t.$slots, "default", {}, void 0, !0)
19
+ ], 16, d)) : (r(), a("button", l({ key: 1 }, t.$attrs, {
20
+ class: ["slp-btn", s.value],
21
+ type: "button"
22
+ }), [
23
+ p(t.$slots, "default", {}, void 0, !0)
24
+ ], 16));
28
25
  }
29
- }), c = (e, o) => {
30
- const r = e.__vccOpts || e;
31
- for (const [d, i] of o)
32
- r[d] = i;
33
- return r;
34
- }, b = ["href"];
35
- function _(e, o, r, d, i, p) {
36
- return e.href ? (s(), a("a", v({ key: 0 }, e.$attrs, {
37
- class: ["slp-btn", e.className],
38
- href: e.href
39
- }), [
40
- t(e.$slots, "default", {}, void 0, !0)
41
- ], 16, b)) : (s(), a("button", v({ key: 1 }, e.$attrs, {
42
- class: ["slp-btn", e.className],
43
- type: "button"
44
- }), [
45
- t(e.$slots, "default", {}, void 0, !0)
46
- ], 16));
47
- }
48
- const H = /* @__PURE__ */ c(g, [["render", _], ["__scopeId", "data-v-92377259"]]), k = u({
49
- name: "SlpColumn",
50
- props: {
51
- cols: {
52
- type: Number,
53
- required: !1,
54
- default: null
55
- },
56
- size: {
57
- type: String,
58
- required: !1,
59
- default: "md"
60
- }
61
- },
62
- setup(e) {
63
- return {
64
- className: f(() => e.cols ? `slp-col-${e.size}-${e.cols}` : `slp-col-${e.size}`)
65
- };
66
- }
67
- });
68
- function N(e, o, r, d, i, p) {
69
- return s(), a("div", {
70
- class: l(e.className)
71
- }, [
72
- t(e.$slots, "default", {}, void 0, !0)
73
- ], 2);
74
- }
75
- const J = /* @__PURE__ */ c(k, [["render", N], ["__scopeId", "data-v-6de89156"]]), S = u({
76
- name: "SlpContainer",
77
- props: {
78
- fluid: {
79
- type: Boolean,
80
- required: !1,
81
- default: !1
82
- },
83
- variant: {
84
- type: String,
85
- required: !1,
86
- default: "white"
87
- }
88
- },
89
- setup(e) {
90
- return {
91
- className: f(() => e.fluid ? "fluid" : "")
92
- };
93
- }
94
- }), q = {
95
- key: 0,
96
- class: "slp-full-light-purple-background"
97
- }, w = {
98
- key: 1,
99
- class: "slp-charcoal-grey-background"
100
- }, C = {
101
- key: 2,
102
- class: "slp-gradient-background"
103
- }, B = {
104
- key: 3,
105
- class: "slp-full-gradient-background"
106
- }, I = {
107
- key: 4,
108
- class: "slp-full-charcoal-background"
109
- }, z = {
110
- key: 5,
111
- class: "slp-partial-charcoal-background"
112
- }, E = {
113
- key: 6,
114
- class: "slp-half-grey-background"
115
- }, R = {
116
- key: 7,
117
- class: "slp-partial-white-background"
118
- }, T = {
119
- key: 8,
120
- class: "slp-partial-grey-background"
121
- };
122
- function V(e, o, r, d, i, p) {
123
- return e.variant === "light-purple-100" ? (s(), a("div", q, [
124
- n("div", {
125
- class: l(["slp-container", e.className])
126
- }, [
127
- t(e.$slots, "default", {}, void 0, !0)
128
- ], 2)
129
- ])) : e.variant === "grey-100" ? (s(), a("div", w, [
130
- n("div", {
131
- class: l(["slp-container", e.className])
132
- }, [
133
- t(e.$slots, "default", {}, void 0, !0)
134
- ], 2)
135
- ])) : e.variant === "gradient" ? (s(), a("div", C, [
136
- n("div", {
137
- class: l(["slp-container", e.className])
138
- }, [
139
- t(e.$slots, "default", {}, void 0, !0)
140
- ], 2)
141
- ])) : e.variant === "gradient-full" ? (s(), a("div", B, [
142
- n("div", {
143
- class: l(["slp-container", e.className])
144
- }, [
145
- t(e.$slots, "default", {}, void 0, !0)
146
- ], 2)
147
- ])) : e.variant === "charcoal-100" ? (s(), a("div", I, [
148
- n("div", {
149
- class: l(["slp-container", e.className])
150
- }, [
151
- t(e.$slots, "default", {}, void 0, !0)
152
- ], 2)
153
- ])) : e.variant === "charcoal-75" ? (s(), a("div", z, [
154
- n("div", {
155
- class: l(["slp-container", e.className])
156
- }, [
157
- t(e.$slots, "default", {}, void 0, !0)
158
- ], 2)
159
- ])) : e.variant === "grey-50" ? (s(), a("div", E, [
160
- n("div", {
161
- class: l(["slp-container", e.className])
162
- }, [
163
- t(e.$slots, "default", {}, void 0, !0)
164
- ], 2)
165
- ])) : e.variant === "white-75" ? (s(), a("div", R, [
166
- n("div", {
167
- class: l(["slp-container", e.className])
168
- }, [
169
- t(e.$slots, "default", {}, void 0, !0)
170
- ], 2)
171
- ])) : e.variant === "grey-75" ? (s(), a("div", T, [
172
- n("div", {
173
- class: l(["slp-container", e.className])
174
- }, [
175
- t(e.$slots, "default", {}, void 0, !0)
176
- ], 2)
177
- ])) : (s(), a("div", {
178
- key: 9,
179
- class: l(["slp-container", e.className])
180
- }, [
181
- t(e.$slots, "default", {}, void 0, !0)
182
- ], 2));
183
- }
184
- const K = /* @__PURE__ */ c(S, [["render", V], ["__scopeId", "data-v-6286b621"]]), W = {};
185
- function j(e, o) {
186
- return s(), a("h1", null, " Welcome Nuxt to Storybook ");
187
- }
188
- const L = /* @__PURE__ */ c(W, [["render", j]]), D = u({
189
- name: "SlpRow"
190
- }), M = { class: "slp-row" };
191
- function O(e, o, r, d, i, p) {
192
- return s(), a("div", M, [
193
- t(e.$slots, "default", {}, void 0, !0)
194
- ]);
195
- }
196
- const Q = /* @__PURE__ */ c(D, [["render", O], ["__scopeId", "data-v-0fbd2157"]]), P = u({
197
- name: "SlpTypography",
198
- props: {
199
- variant: {
200
- type: String,
201
- required: !1,
202
- default: "body1",
203
- validator: (e) => [
204
- "display1",
205
- "heading1",
206
- "heading2",
207
- "heading3",
208
- "heading4",
209
- "heading5",
210
- "heading1-bold",
211
- "heading2-bold",
212
- "heading3-bold",
213
- "heading4-bold",
214
- "heading5-bold",
215
- "body1",
216
- "body2",
217
- "body3",
218
- "body1-bold",
219
- "body2-bold",
220
- "body3-bold",
221
- "all-caps",
222
- "arrow",
223
- "quotes",
224
- "emphasis"
225
- ].includes(e)
226
- },
227
- tag: {
228
- type: String,
229
- required: !1,
230
- default: "span",
231
- validator: (e) => ["span", "h1", "h2", "h3", "h4", "p", "div"].includes(e)
232
- }
233
- },
234
- setup(e) {
235
- return {
236
- className: f(() => `slp-text-${e.variant}`)
237
- };
238
- }
239
- }), A = {
240
- key: 0,
241
- class: "arrow-symbol"
242
- };
243
- function F(e, o, r, d, i, p) {
244
- return s(), $(h(e.tag), {
245
- class: l(e.className)
246
- }, {
247
- default: m(() => [
248
- t(e.$slots, "default", {}, void 0, !0),
249
- e.variant === "arrow" ? (s(), a("span", A, "→")) : y("", !0)
250
- ]),
251
- _: 3
252
- }, 8, ["class"]);
253
- }
254
- const U = /* @__PURE__ */ c(P, [["render", F], ["__scopeId", "data-v-5f7bd974"]]);
26
+ }), i = (o, e) => {
27
+ const s = o.__vccOpts || o;
28
+ for (const [t, n] of e)
29
+ s[t] = n;
30
+ return s;
31
+ }, b = /* @__PURE__ */ i(f, [["__scopeId", "data-v-6f224ce6"]]);
255
32
  export {
256
- H as Button,
257
- J as Column,
258
- K as Container,
259
- L as MyWelcome,
260
- Q as Row,
261
- U as Typography
33
+ b as SlpButton
262
34
  };
package/dist/style.css CHANGED
@@ -1 +1 @@
1
- .slp-btn[data-v-92377259]{box-sizing:border-box;font-family:Inter,"sans-serif";min-width:68px;display:inline-flex;align-items:center;text-align:center;vertical-align:middle;padding:11px 16px;text-decoration:none;border-radius:4px;font-weight:600;font-size:18px;line-height:20px;transition:.3s cubic-bezier(.7,0,.3,1) background-color}.slp-btn[data-v-92377259]:hover{cursor:pointer}.slp-btn-primary[data-v-92377259]{background-color:#171321;color:#fff;border:1px solid #171321}.slp-btn-primary[data-v-92377259]:hover{background-color:#fff;color:#171321;border:1px solid #171321}.slp-btn-primary.slp-btn-disabled[data-v-92377259]{background-color:#d1d0d3;border:1px solid #D1D0D3;color:#74717a}.slp-btn-primary.slp-btn-disabled[data-v-92377259]:hover{background-color:#d1d0d3;cursor:default}.slp-btn-secondary[data-v-92377259]{background-color:#fff;color:#171321;border:none}.slp-btn-secondary[data-v-92377259]:hover{border:none;outline:none;background-color:#e8e7eb;color:#171321}.slp-btn-secondary.slp-btn-disabled[data-v-92377259]{color:#d1d0d3}.slp-btn-secondary.slp-btn-disabled[data-v-92377259]:hover{background-color:#fff;cursor:default}.slp-btn-tertiary[data-v-92377259]{color:#171321;border:none;padding-left:0;text-decoration:underline;text-underline-offset:2px;text-decoration-color:transparent;-webkit-text-decoration:none;transition:all .2s ease-in-out}.slp-btn-tertiary[data-v-92377259]:hover{text-decoration-color:#171321;-webkit-text-decoration:underline}.slp-btn-tertiary:hover .slp-icon[data-v-92377259]{transform:translate(8px)}.slp-btn-tertiary .slp-icon[data-v-92377259]{margin-left:4px;transition:transform .2s ease-in-out}.slp-btn-tertiary.slp-btn-disabled[data-v-92377259]{color:#d1d0d3;text-decoration:none}.slp-btn-tertiary.slp-btn-disabled[data-v-92377259]:hover{background-color:#fff;cursor:default}.slp-btn-tertiary.slp-btn-disabled:hover .slp-icon[data-v-92377259]{transform:none}.slp-btn-icon[data-v-92377259]{min-width:unset;font-size:0px;line-height:unset;border:none;background-color:transparent;padding:8px}.slp-btn-icon.slp-btn-disabled[data-v-92377259]{pointer-events:none;opacity:.5}.slp-btn-ghost[data-v-92377259]{border:none;background-color:transparent;padding:8px;font-size:inherit;font-weight:inherit;line-height:inherit}.slp-btn-ghost.slp-btn-disabled[data-v-92377259]{pointer-events:none;opacity:.5}@media (max-width: 0px){.slp-col-xs[data-v-6de89156],.slp-col-xs-1[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 0px){.slp-col-xs-1[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 8.3333333333%;max-width:8.3333333333%}.slp-col-xs[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 576px){.slp-col-sm[data-v-6de89156],.slp-col-sm-1[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 576px){.slp-col-sm-1[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 8.3333333333%;max-width:8.3333333333%}.slp-col-sm[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 768px){.slp-col-md[data-v-6de89156],.slp-col-md-1[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 768px){.slp-col-md-1[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 8.3333333333%;max-width:8.3333333333%}.slp-col-md[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1025px){.slp-col-lg[data-v-6de89156],.slp-col-lg-1[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1025px){.slp-col-lg-1[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 8.3333333333%;max-width:8.3333333333%}.slp-col-lg[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1200px){.slp-col-xl[data-v-6de89156],.slp-col-xl-1[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1200px){.slp-col-xl-1[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 8.3333333333%;max-width:8.3333333333%}.slp-col-xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1400px){.slp-col-2xl[data-v-6de89156],.slp-col-2xl-1[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1400px){.slp-col-2xl-1[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 8.3333333333%;max-width:8.3333333333%}.slp-col-2xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 0px){.slp-col-xs[data-v-6de89156],.slp-col-xs-2[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 0px){.slp-col-xs-2[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 16.6666666667%;max-width:16.6666666667%}.slp-col-xs[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 576px){.slp-col-sm[data-v-6de89156],.slp-col-sm-2[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 576px){.slp-col-sm-2[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 16.6666666667%;max-width:16.6666666667%}.slp-col-sm[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 768px){.slp-col-md[data-v-6de89156],.slp-col-md-2[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 768px){.slp-col-md-2[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 16.6666666667%;max-width:16.6666666667%}.slp-col-md[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1025px){.slp-col-lg[data-v-6de89156],.slp-col-lg-2[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1025px){.slp-col-lg-2[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 16.6666666667%;max-width:16.6666666667%}.slp-col-lg[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1200px){.slp-col-xl[data-v-6de89156],.slp-col-xl-2[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1200px){.slp-col-xl-2[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 16.6666666667%;max-width:16.6666666667%}.slp-col-xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1400px){.slp-col-2xl[data-v-6de89156],.slp-col-2xl-2[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1400px){.slp-col-2xl-2[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 16.6666666667%;max-width:16.6666666667%}.slp-col-2xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 0px){.slp-col-xs[data-v-6de89156],.slp-col-xs-3[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 0px){.slp-col-xs-3[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 25%;max-width:25%}.slp-col-xs[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 576px){.slp-col-sm[data-v-6de89156],.slp-col-sm-3[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 576px){.slp-col-sm-3[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 25%;max-width:25%}.slp-col-sm[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 768px){.slp-col-md[data-v-6de89156],.slp-col-md-3[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 768px){.slp-col-md-3[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 25%;max-width:25%}.slp-col-md[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1025px){.slp-col-lg[data-v-6de89156],.slp-col-lg-3[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1025px){.slp-col-lg-3[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 25%;max-width:25%}.slp-col-lg[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1200px){.slp-col-xl[data-v-6de89156],.slp-col-xl-3[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1200px){.slp-col-xl-3[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 25%;max-width:25%}.slp-col-xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1400px){.slp-col-2xl[data-v-6de89156],.slp-col-2xl-3[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1400px){.slp-col-2xl-3[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 25%;max-width:25%}.slp-col-2xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 0px){.slp-col-xs[data-v-6de89156],.slp-col-xs-4[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 0px){.slp-col-xs-4[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 33.3333333333%;max-width:33.3333333333%}.slp-col-xs[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 576px){.slp-col-sm[data-v-6de89156],.slp-col-sm-4[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 576px){.slp-col-sm-4[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 33.3333333333%;max-width:33.3333333333%}.slp-col-sm[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 768px){.slp-col-md[data-v-6de89156],.slp-col-md-4[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 768px){.slp-col-md-4[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 33.3333333333%;max-width:33.3333333333%}.slp-col-md[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1025px){.slp-col-lg[data-v-6de89156],.slp-col-lg-4[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1025px){.slp-col-lg-4[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 33.3333333333%;max-width:33.3333333333%}.slp-col-lg[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1200px){.slp-col-xl[data-v-6de89156],.slp-col-xl-4[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1200px){.slp-col-xl-4[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 33.3333333333%;max-width:33.3333333333%}.slp-col-xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1400px){.slp-col-2xl[data-v-6de89156],.slp-col-2xl-4[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1400px){.slp-col-2xl-4[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 33.3333333333%;max-width:33.3333333333%}.slp-col-2xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 0px){.slp-col-xs[data-v-6de89156],.slp-col-xs-5[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 0px){.slp-col-xs-5[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 41.6666666667%;max-width:41.6666666667%}.slp-col-xs[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 576px){.slp-col-sm[data-v-6de89156],.slp-col-sm-5[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 576px){.slp-col-sm-5[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 41.6666666667%;max-width:41.6666666667%}.slp-col-sm[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 768px){.slp-col-md[data-v-6de89156],.slp-col-md-5[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 768px){.slp-col-md-5[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 41.6666666667%;max-width:41.6666666667%}.slp-col-md[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1025px){.slp-col-lg[data-v-6de89156],.slp-col-lg-5[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1025px){.slp-col-lg-5[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 41.6666666667%;max-width:41.6666666667%}.slp-col-lg[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1200px){.slp-col-xl[data-v-6de89156],.slp-col-xl-5[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1200px){.slp-col-xl-5[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 41.6666666667%;max-width:41.6666666667%}.slp-col-xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1400px){.slp-col-2xl[data-v-6de89156],.slp-col-2xl-5[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1400px){.slp-col-2xl-5[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 41.6666666667%;max-width:41.6666666667%}.slp-col-2xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 0px){.slp-col-xs[data-v-6de89156],.slp-col-xs-6[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 0px){.slp-col-xs-6[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 50%;max-width:50%}.slp-col-xs[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 576px){.slp-col-sm[data-v-6de89156],.slp-col-sm-6[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 576px){.slp-col-sm-6[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 50%;max-width:50%}.slp-col-sm[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 768px){.slp-col-md[data-v-6de89156],.slp-col-md-6[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 768px){.slp-col-md-6[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 50%;max-width:50%}.slp-col-md[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1025px){.slp-col-lg[data-v-6de89156],.slp-col-lg-6[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1025px){.slp-col-lg-6[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 50%;max-width:50%}.slp-col-lg[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1200px){.slp-col-xl[data-v-6de89156],.slp-col-xl-6[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1200px){.slp-col-xl-6[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 50%;max-width:50%}.slp-col-xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1400px){.slp-col-2xl[data-v-6de89156],.slp-col-2xl-6[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1400px){.slp-col-2xl-6[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 50%;max-width:50%}.slp-col-2xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 0px){.slp-col-xs[data-v-6de89156],.slp-col-xs-7[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 0px){.slp-col-xs-7[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 58.3333333333%;max-width:58.3333333333%}.slp-col-xs[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 576px){.slp-col-sm[data-v-6de89156],.slp-col-sm-7[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 576px){.slp-col-sm-7[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 58.3333333333%;max-width:58.3333333333%}.slp-col-sm[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 768px){.slp-col-md[data-v-6de89156],.slp-col-md-7[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 768px){.slp-col-md-7[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 58.3333333333%;max-width:58.3333333333%}.slp-col-md[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1025px){.slp-col-lg[data-v-6de89156],.slp-col-lg-7[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1025px){.slp-col-lg-7[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 58.3333333333%;max-width:58.3333333333%}.slp-col-lg[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1200px){.slp-col-xl[data-v-6de89156],.slp-col-xl-7[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1200px){.slp-col-xl-7[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 58.3333333333%;max-width:58.3333333333%}.slp-col-xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1400px){.slp-col-2xl[data-v-6de89156],.slp-col-2xl-7[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1400px){.slp-col-2xl-7[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 58.3333333333%;max-width:58.3333333333%}.slp-col-2xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 0px){.slp-col-xs[data-v-6de89156],.slp-col-xs-8[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 0px){.slp-col-xs-8[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 66.6666666667%;max-width:66.6666666667%}.slp-col-xs[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 576px){.slp-col-sm[data-v-6de89156],.slp-col-sm-8[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 576px){.slp-col-sm-8[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 66.6666666667%;max-width:66.6666666667%}.slp-col-sm[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 768px){.slp-col-md[data-v-6de89156],.slp-col-md-8[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 768px){.slp-col-md-8[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 66.6666666667%;max-width:66.6666666667%}.slp-col-md[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1025px){.slp-col-lg[data-v-6de89156],.slp-col-lg-8[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1025px){.slp-col-lg-8[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 66.6666666667%;max-width:66.6666666667%}.slp-col-lg[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1200px){.slp-col-xl[data-v-6de89156],.slp-col-xl-8[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1200px){.slp-col-xl-8[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 66.6666666667%;max-width:66.6666666667%}.slp-col-xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1400px){.slp-col-2xl[data-v-6de89156],.slp-col-2xl-8[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1400px){.slp-col-2xl-8[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 66.6666666667%;max-width:66.6666666667%}.slp-col-2xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 0px){.slp-col-xs[data-v-6de89156],.slp-col-xs-9[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 0px){.slp-col-xs-9[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 75%;max-width:75%}.slp-col-xs[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 576px){.slp-col-sm[data-v-6de89156],.slp-col-sm-9[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 576px){.slp-col-sm-9[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 75%;max-width:75%}.slp-col-sm[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 768px){.slp-col-md[data-v-6de89156],.slp-col-md-9[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 768px){.slp-col-md-9[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 75%;max-width:75%}.slp-col-md[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1025px){.slp-col-lg[data-v-6de89156],.slp-col-lg-9[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1025px){.slp-col-lg-9[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 75%;max-width:75%}.slp-col-lg[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1200px){.slp-col-xl[data-v-6de89156],.slp-col-xl-9[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1200px){.slp-col-xl-9[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 75%;max-width:75%}.slp-col-xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1400px){.slp-col-2xl[data-v-6de89156],.slp-col-2xl-9[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1400px){.slp-col-2xl-9[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 75%;max-width:75%}.slp-col-2xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 0px){.slp-col-xs[data-v-6de89156],.slp-col-xs-10[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 0px){.slp-col-xs-10[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 83.3333333333%;max-width:83.3333333333%}.slp-col-xs[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 576px){.slp-col-sm[data-v-6de89156],.slp-col-sm-10[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 576px){.slp-col-sm-10[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 83.3333333333%;max-width:83.3333333333%}.slp-col-sm[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 768px){.slp-col-md[data-v-6de89156],.slp-col-md-10[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 768px){.slp-col-md-10[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 83.3333333333%;max-width:83.3333333333%}.slp-col-md[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1025px){.slp-col-lg[data-v-6de89156],.slp-col-lg-10[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1025px){.slp-col-lg-10[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 83.3333333333%;max-width:83.3333333333%}.slp-col-lg[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1200px){.slp-col-xl[data-v-6de89156],.slp-col-xl-10[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1200px){.slp-col-xl-10[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 83.3333333333%;max-width:83.3333333333%}.slp-col-xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1400px){.slp-col-2xl[data-v-6de89156],.slp-col-2xl-10[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1400px){.slp-col-2xl-10[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 83.3333333333%;max-width:83.3333333333%}.slp-col-2xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 0px){.slp-col-xs[data-v-6de89156],.slp-col-xs-11[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 0px){.slp-col-xs-11[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 91.6666666667%;max-width:91.6666666667%}.slp-col-xs[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 576px){.slp-col-sm[data-v-6de89156],.slp-col-sm-11[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 576px){.slp-col-sm-11[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 91.6666666667%;max-width:91.6666666667%}.slp-col-sm[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 768px){.slp-col-md[data-v-6de89156],.slp-col-md-11[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 768px){.slp-col-md-11[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 91.6666666667%;max-width:91.6666666667%}.slp-col-md[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1025px){.slp-col-lg[data-v-6de89156],.slp-col-lg-11[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1025px){.slp-col-lg-11[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 91.6666666667%;max-width:91.6666666667%}.slp-col-lg[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1200px){.slp-col-xl[data-v-6de89156],.slp-col-xl-11[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1200px){.slp-col-xl-11[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 91.6666666667%;max-width:91.6666666667%}.slp-col-xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}@media (max-width: 1400px){.slp-col-2xl[data-v-6de89156],.slp-col-2xl-11[data-v-6de89156]{width:inherit;max-width:100%}}@media (min-width: 1400px){.slp-col-2xl-11[data-v-6de89156]{position:relative;width:100%;min-height:1px;flex:0 0 91.6666666667%;max-width:91.6666666667%}.slp-col-2xl[data-v-6de89156]{flex-basis:0;flex-grow:1;position:relative;width:100%;min-height:1px;max-width:100%}}.slp-container[data-v-6286b621]{width:100%;margin-left:auto;margin-right:auto;padding-left:16px;padding-right:16px;border:1px solid transparent}@media (min-width: 640px){.slp-container[data-v-6286b621]{max-width:95%}}@media (min-width: 1024px){.slp-container[data-v-6286b621]{max-width:1024px;padding:0}}@media (min-width: 1170px){.slp-container[data-v-6286b621]{max-width:1170px;padding:0}}.slp-full-grey-background[data-v-6286b621]{background:#f2f1f5}.slp-full-charcoal-background[data-v-6286b621]{background:#171321}.slp-partial-charcoal-background[data-v-6286b621]{background-image:linear-gradient(to bottom,#fff,#fff 75%,#171321 75%,#171321)}@media (max-width: 576px){.slp-partial-charcoal-background[data-v-6286b621]{background-image:linear-gradient(to bottom,#fff,#fff 30%,#171321 30%,#171321)}}.slp-gradient-background[data-v-6286b621]{background:radial-gradient(50.08% 44.51% at 100% 100%,#a989f533,#7759c200),radial-gradient(60.76% 48.01% at 0% 100%,#e2432933,#e2432900),#fff}.slp-full-gradient-background[data-v-6286b621]{background:linear-gradient(165.41deg,#fadcd7,#f8f5ff 23.65%,#fff 54.66%,#f6f3fe 80.95%,#ffd4d8 100.92%)}.slp-full-light-purple-background[data-v-6286b621]{background:#f6f3fe}.slp-half-grey-background[data-v-6286b621]{background-image:linear-gradient(to bottom,#fff,#fff 50%,#f2f1f5 50%,#f2f1f5)}.slp-partial-white-background[data-v-6286b621]{background-image:linear-gradient(to bottom,#f2f1f5,#f2f1f5 70%,#fff 70%,#fff)}.slp-partial-grey-background[data-v-6286b621]{background-image:linear-gradient(to bottom,#fff,#fff 60%,#f2f1f5 60%,#f2f1f5)}@media (max-width: 576px){.slp-partial-grey-background[data-v-6286b621]{background-image:linear-gradient(to bottom,#fff,#fff 30%,#f2f1f5 30%,#f2f1f5)}}.fluid[data-v-6286b621]{max-width:100%;margin:0;border:none;padding:0}.readmore{-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0;--tw-ring-inset: var(--tw-empty, );--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgba(14, 165, 233, .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;font-family:Nunito Sans,-apple-system,".SFNSText-Regular",San Francisco,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Helvetica,Arial,sans-serif;margin:0;-webkit-font-smoothing:antialiased;-webkit-tap-highlight-color:rgba(0,0,0,0);line-height:24px;color:#029cfd;text-decoration:none;font-size:14px}.slp-row[data-v-0fbd2157]{display:flex;flex-wrap:wrap}.slp-text-display1[data-v-5f7bd974],.slp-text-display1[data-v-5f7bd974] *{font-size:96px;line-height:100px;font-weight:600;letter-spacing:-2px}@media (max-width: 576px){.slp-text-display1[data-v-5f7bd974],.slp-text-display1[data-v-5f7bd974] *{font-size:48px;line-height:52px;font-weight:600;letter-spacing:-1.8px}}.slp-text-heading1[data-v-5f7bd974],.slp-text-heading1[data-v-5f7bd974] *{font-size:64px;line-height:72px;font-weight:400;letter-spacing:-2.77px}@media (max-width: 576px){.slp-text-heading1[data-v-5f7bd974],.slp-text-heading1[data-v-5f7bd974] *{font-size:48px;line-height:52px;font-weight:400;letter-spacing:-2.3px}}.slp-text-heading2[data-v-5f7bd974],.slp-text-heading2[data-v-5f7bd974] *{font-size:50px;line-height:60px;font-weight:400;letter-spacing:-1.9px}@media (max-width: 576px){.slp-text-heading2[data-v-5f7bd974],.slp-text-heading2[data-v-5f7bd974] *{font-size:40px;line-height:48px;font-weight:400;letter-spacing:-1.6px}}.slp-text-heading3[data-v-5f7bd974],.slp-text-heading3[data-v-5f7bd974] *{font-size:40px;line-height:48px;font-weight:400;letter-spacing:-1.4px}@media (max-width: 576px){.slp-text-heading3[data-v-5f7bd974],.slp-text-heading3[data-v-5f7bd974] *{font-size:32px;line-height:40px;font-weight:400;letter-spacing:-1.2px}}.slp-text-heading4[data-v-5f7bd974],.slp-text-heading4[data-v-5f7bd974] *{font-size:32px;line-height:40px;font-weight:400;letter-spacing:-1.1px}@media (max-width: 576px){.slp-text-heading4[data-v-5f7bd974],.slp-text-heading4[data-v-5f7bd974] *{font-size:28px;line-height:36px;font-weight:400;letter-spacing:-1px}}.slp-text-heading5[data-v-5f7bd974],.slp-text-heading5[data-v-5f7bd974] *{font-size:24px;line-height:32px;font-weight:400;letter-spacing:-.8px}@media (max-width: 576px){.slp-text-heading5[data-v-5f7bd974],.slp-text-heading5[data-v-5f7bd974] *{font-size:22px;line-height:28px;font-weight:400;letter-spacing:-.8px}}.slp-text-heading1-bold[data-v-5f7bd974],.slp-text-heading1-bold[data-v-5f7bd974] *{font-size:64px;line-height:72px;font-weight:600;letter-spacing:-2.1px}@media (max-width: 576px){.slp-text-heading1-bold[data-v-5f7bd974],.slp-text-heading1-bold[data-v-5f7bd974] *{font-size:48px;line-height:52px;font-weight:600;letter-spacing:-1.8px}}.slp-text-heading2-bold[data-v-5f7bd974],.slp-text-heading2-bold[data-v-5f7bd974] *{font-size:50px;line-height:60px;font-weight:600;letter-spacing:-1.4px}@media (max-width: 576px){.slp-text-heading2-bold[data-v-5f7bd974],.slp-text-heading2-bold[data-v-5f7bd974] *{font-size:40px;line-height:48px;font-weight:600;letter-spacing:-1.2px}}.slp-text-heading3-bold[data-v-5f7bd974],.slp-text-heading3-bold[data-v-5f7bd974] *{font-size:40px;line-height:48px;font-weight:600;letter-spacing:-1px}@media (max-width: 576px){.slp-text-heading3-bold[data-v-5f7bd974],.slp-text-heading3-bold[data-v-5f7bd974] *{font-size:32px;line-height:40px;font-weight:600;letter-spacing:-.9px}}.slp-text-heading4-bold[data-v-5f7bd974],.slp-text-heading4-bold[data-v-5f7bd974] *{font-size:32px;line-height:40px;font-weight:600;letter-spacing:-.8px}@media (max-width: 576px){.slp-text-heading4-bold[data-v-5f7bd974],.slp-text-heading4-bold[data-v-5f7bd974] *{font-size:28px;line-height:36px;font-weight:600;letter-spacing:-.7px}}.slp-text-heading5-bold[data-v-5f7bd974],.slp-text-heading5-bold[data-v-5f7bd974] *{font-size:24px;line-height:32px;font-weight:600;letter-spacing:-.6px}@media (max-width: 576px){.slp-text-heading5-bold[data-v-5f7bd974],.slp-text-heading5-bold[data-v-5f7bd974] *{font-size:22px;line-height:28px;font-weight:600;letter-spacing:-.55px}}.slp-text-body1[data-v-5f7bd974],.slp-text-body1[data-v-5f7bd974] *{font-size:18px;line-height:28px;font-weight:400}.slp-text-body2[data-v-5f7bd974],.slp-text-body2[data-v-5f7bd974] *{font-size:16px;line-height:24px;font-weight:400}.slp-text-body3[data-v-5f7bd974],.slp-text-body3[data-v-5f7bd974] *{font-size:14px;line-height:22px;font-weight:400}.slp-text-body1-bold[data-v-5f7bd974],.slp-text-body1-bold[data-v-5f7bd974] *{font-size:18px;line-height:28px;font-weight:600}.slp-text-body2-bold[data-v-5f7bd974],.slp-text-body2-bold[data-v-5f7bd974] *{font-size:16px;line-height:24px;font-weight:600}.slp-text-body3-bold[data-v-5f7bd974],.slp-text-body3-bold[data-v-5f7bd974] *{font-size:14px;line-height:22px;font-weight:600}.slp-text-all-caps[data-v-5f7bd974],.slp-text-all-caps[data-v-5f7bd974] *{font-size:12px;line-height:20px;font-weight:600;text-transform:uppercase;letter-spacing:.1em}.slp-text-quotes[data-v-5f7bd974],.slp-text-quotes[data-v-5f7bd974] *{font-size:23px;line-height:38px;font-weight:400;font-style:italic}@media (max-width: 576px){.slp-text-quotes[data-v-5f7bd974],.slp-text-quotes[data-v-5f7bd974] *{font-size:16px;line-height:24px}}.slp-text-emphasis[data-v-5f7bd974],.slp-text-emphasis[data-v-5f7bd974] *{font-size:23px;line-height:38px;font-weight:400}.slp-text-arrow[data-v-5f7bd974],.slp-text-arrow[data-v-5f7bd974] *{color:#fff;cursor:pointer;font-weight:600;font-size:16px;line-height:24px}.slp-text-arrow[data-v-5f7bd974]:hover,.slp-text-arrow[data-v-5f7bd974] *:hover{color:#171321}.slp-text-arrow:hover .slp-link-text[data-v-5f7bd974],.slp-text-arrow[data-v-5f7bd974] *:hover .slp-link-text{text-decoration:underline}.slp-text-arrow[data-v-5f7bd974]:active,.slp-text-arrow[data-v-5f7bd974] *:active{color:#fff}.slp-text-arrow:active .slp-link-text[data-v-5f7bd974],.slp-text-arrow[data-v-5f7bd974] *:active .slp-link-text{text-decoration:underline}.arrow-symbol[data-v-5f7bd974]{padding-left:4px}
1
+ .slp-btn[data-v-6f224ce6]{box-sizing:border-box;font-family:Inter,"sans-serif";min-width:68px;display:inline-flex;align-items:center;text-align:center;vertical-align:middle;padding:11px 16px;text-decoration:none;border-radius:4px;font-weight:600;font-size:18px;line-height:20px;transition:.3s cubic-bezier(.7,0,.3,1) background-color}.slp-btn[data-v-6f224ce6]:hover{cursor:pointer}.slp-btn-primary[data-v-6f224ce6]{background-color:#171321;color:#fff;border:1px solid #171321}.slp-btn-primary[data-v-6f224ce6]:hover{background-color:#fff;color:#171321;border:1px solid #171321}.slp-btn-primary.slp-btn-disabled[data-v-6f224ce6]{background-color:#d1d0d3;border:1px solid #D1D0D3;color:#74717a}.slp-btn-primary.slp-btn-disabled[data-v-6f224ce6]:hover{background-color:#d1d0d3;cursor:default}.slp-btn-secondary[data-v-6f224ce6]{background-color:#fff;color:#171321;border:none}.slp-btn-secondary[data-v-6f224ce6]:hover{border:none;outline:none;background-color:#e8e7eb;color:#171321}.slp-btn-secondary.slp-btn-disabled[data-v-6f224ce6]{color:#d1d0d3}.slp-btn-secondary.slp-btn-disabled[data-v-6f224ce6]:hover{background-color:#fff;cursor:default}.slp-btn-tertiary[data-v-6f224ce6]{color:#171321;border:none;padding-left:0;text-decoration:underline;text-underline-offset:2px;text-decoration-color:transparent;-webkit-text-decoration:none;transition:all .2s ease-in-out}.slp-btn-tertiary[data-v-6f224ce6]:hover{text-decoration-color:#171321;-webkit-text-decoration:underline}.slp-btn-tertiary:hover .slp-icon[data-v-6f224ce6]{transform:translate(8px)}.slp-btn-tertiary .slp-icon[data-v-6f224ce6]{margin-left:4px;transition:transform .2s ease-in-out}.slp-btn-tertiary.slp-btn-disabled[data-v-6f224ce6]{color:#d1d0d3;text-decoration:none}.slp-btn-tertiary.slp-btn-disabled[data-v-6f224ce6]:hover{background-color:#fff;cursor:default}.slp-btn-tertiary.slp-btn-disabled:hover .slp-icon[data-v-6f224ce6]{transform:none}.slp-btn-icon[data-v-6f224ce6]{min-width:unset;font-size:0px;line-height:unset;border:none;background-color:transparent;padding:8px}.slp-btn-icon.slp-btn-disabled[data-v-6f224ce6]{pointer-events:none;opacity:.5}.slp-btn-ghost[data-v-6f224ce6]{border:none;background-color:transparent;padding:8px;font-size:inherit;font-weight:inherit;line-height:inherit}.slp-btn-ghost.slp-btn-disabled[data-v-6f224ce6]{pointer-events:none;opacity:.5}
package/package.json CHANGED
@@ -1,46 +1,53 @@
1
1
  {
2
2
  "name": "slippers-ui",
3
- "version": "3.0.0-alpha.2",
4
- "private": false,
5
3
  "description": "GitLab Marketing Design System",
6
4
  "author": "GitLab",
5
+ "version": "3.0.0-alpha.4",
6
+ "type": "module",
7
7
  "files": [
8
8
  "dist",
9
- "assets/css/base.scss",
10
- "assets/css/_variables.scss",
11
- "package.json"
9
+ "src/fonts",
10
+ "src/styles"
12
11
  ],
13
- "module": "./slippers-ui.es.js",
14
- "type": "module",
12
+ "main": "./dist/slippers-ui.es.js",
13
+ "module": "./dist/slippers-ui.es.js",
14
+ "types": "./dist/index.d.ts",
15
+ "exports": {
16
+ ".": {
17
+ "import": "./dist/slippers-ui.es.js"
18
+ }
19
+ },
20
+ "bugs": {
21
+ "url": "https://gitlab.com/gitlab-com/marketing/digital-experience/slippers-ui-/issues"
22
+ },
23
+ "homepage": "https://gitlab-com.gitlab.io/marketing/digital-experience/slippers-ui",
24
+ "license": "MIT",
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "https://gitlab.com/gitlab-com/marketing/digital-experience/slippers-ui.git"
28
+ },
15
29
  "scripts": {
16
- "build": "nuxt build",
17
- "dev": "nuxt dev",
18
- "generate": "nuxt generate",
19
- "preview": "nuxt preview",
20
- "postinstall": "nuxt prepare",
21
- "storybook": "storybook dev --port 6006",
22
- "build-storybook": "storybook build",
23
- "build-library": "vite build --config vite.config.ts",
24
- "build-library-locally": "vite build --config vite.config.ts && cp package.json dist/"
30
+ "dev": "storybook dev",
31
+ "build-lib": "vite build"
25
32
  },
26
33
  "dependencies": {
27
- "nuxt": "^3.13.2",
28
- "vue": "latest",
29
- "vue-router": "latest"
34
+ "vue": "^3.5.12"
30
35
  },
31
- "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
32
36
  "devDependencies": {
33
- "@nuxtjs/storybook": "8.3.2",
34
- "@storybook-vue/nuxt": "^8.3.2",
37
+ "@chromatic-com/storybook": "^1.9.0",
35
38
  "@storybook/addon-essentials": "^8.3.6",
36
39
  "@storybook/addon-interactions": "^8.3.6",
37
40
  "@storybook/addon-links": "^8.3.6",
41
+ "@storybook/addon-onboarding": "^8.3.6",
38
42
  "@storybook/blocks": "^8.3.6",
39
- "@storybook/builder-vite": "^8.3.6",
40
43
  "@storybook/test": "^8.3.6",
41
44
  "@storybook/vue3": "^8.3.6",
42
- "@types/node": "^18.17.5",
45
+ "@storybook/vue3-vite": "^8.3.6",
46
+ "@types/node": "^20.17.0",
47
+ "@vitejs/plugin-vue": "^5.1.4",
43
48
  "sass-embedded": "^1.80.4",
44
- "storybook": "^8.3.6"
49
+ "storybook": "^8.3.6",
50
+ "typescript": "~5.6.2",
51
+ "vite": "^5.4.9"
45
52
  }
46
53
  }
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,31 @@
1
+ @font-face {
2
+ font-family: 'Inter';
3
+ src: url('../fonts/Inter-Light.woff2') format('woff2');
4
+ font-weight: 300;
5
+ font-style: normal;
6
+ }
7
+
8
+ @font-face {
9
+ font-family: 'Inter';
10
+ src: url('../fonts/Inter-Regular.woff2') format('woff2');
11
+ font-weight: 400;
12
+ font-style: normal;
13
+ }
14
+
15
+ @font-face {
16
+ font-family: 'Inter';
17
+ src: url('../fonts/Inter-Medium.woff2') format('woff2');
18
+ font-weight: 500;
19
+ font-style: normal;
20
+ }
21
+
22
+ @font-face {
23
+ font-family: 'Inter';
24
+ src: url('../fonts/Inter-Bold.woff2') format('woff2');
25
+ font-weight: 700;
26
+ font-style: normal;
27
+ }
28
+
29
+ body {
30
+ font-family: 'Inter', sans-serif;
31
+ }
@@ -1,4 +1,4 @@
1
- @import "variables";
1
+ @use "variables";
2
2
 
3
3
  html {
4
4
  scroll-behavior: smooth;
package/dist/favicon.ico DELETED
Binary file
package/dist/package.json DELETED
@@ -1,46 +0,0 @@
1
- {
2
- "name": "slippers-ui",
3
- "version": "3.0.0-alpha.1",
4
- "private": false,
5
- "description": "GitLab Marketing Design System",
6
- "author": "GitLab",
7
- "files": [
8
- "dist",
9
- "assets/css/base.scss",
10
- "assets/css/_variables.scss",
11
- "package.json"
12
- ],
13
- "module": "./slippers-ui.es.js",
14
- "type": "module",
15
- "scripts": {
16
- "build": "nuxt build",
17
- "dev": "nuxt dev",
18
- "generate": "nuxt generate",
19
- "preview": "nuxt preview",
20
- "postinstall": "nuxt prepare",
21
- "storybook": "storybook dev --port 6006",
22
- "build-storybook": "storybook build",
23
- "build-library": "vite build --config vite.config.ts",
24
- "build-library-locally": "vite build --config vite.config.ts && cp package.json dist/"
25
- },
26
- "dependencies": {
27
- "nuxt": "^3.13.2",
28
- "vue": "latest",
29
- "vue-router": "latest"
30
- },
31
- "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
32
- "devDependencies": {
33
- "@nuxtjs/storybook": "8.3.2",
34
- "@storybook-vue/nuxt": "^8.3.2",
35
- "@storybook/addon-essentials": "^8.3.6",
36
- "@storybook/addon-interactions": "^8.3.6",
37
- "@storybook/addon-links": "^8.3.6",
38
- "@storybook/blocks": "^8.3.6",
39
- "@storybook/builder-vite": "^8.3.6",
40
- "@storybook/test": "^8.3.6",
41
- "@storybook/vue3": "^8.3.6",
42
- "@types/node": "^18.17.5",
43
- "sass-embedded": "^1.80.4",
44
- "storybook": "^8.3.6"
45
- }
46
- }
package/dist/robots.txt DELETED
@@ -1 +0,0 @@
1
-
File without changes