barbican-reset 2.39.0 → 2.41.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/components/account_title.vue +1 -1
- package/components/br_alert.vue +5 -4
- package/components/br_button.vue +24 -22
- package/components/br_card.vue +102 -0
- package/components/br_card_sub_title.vue +12 -0
- package/components/br_card_text.vue +3 -0
- package/components/br_card_title.vue +3 -0
- package/components/br_confirm_done.vue +13 -9
- package/components/br_confirm_email.vue +18 -10
- package/components/br_container.vue +3 -3
- package/components/br_form_row.vue +37 -35
- package/components/br_loader.vue +8 -4
- package/components/event_summary.vue +7 -5
- package/components/fluid_iframe.vue +1 -1
- package/components/see_inside.vue +9 -5
- package/components/video_content.vue +1 -1
- package/index.js +8 -16
- package/package.json +1 -6
- package/scss/_atomic.scss +2 -2
- package/scss/_br-loader.scss +3 -3
- package/scss/_card-deck.scss +1 -1
- package/scss/_close-icon.scss +2 -2
- package/scss/_footer.scss +1 -1
- package/scss/_input.scss +1 -1
- package/scss/_klaro.scss +12 -12
- package/scss/_main.scss +1 -1
- package/scss/card/_membership.scss +1 -1
- package/scss/card/_related.scss +2 -2
- package/scss/helpers/mixins/_br-alert.scss +1 -1
- package/scss/helpers/mixins/_br-card.scss +1 -1
- package/scss/helpers/mixins/_br-skiplink.scss +2 -2
- package/scss/helpers/mixins/_breakpoints.scss +3 -3
- package/scss/helpers/mixins/_content.scss +2 -2
- package/scss/helpers/mixins/_festival.scss +2 -2
- package/scss/helpers/mixins/_focus.scss +6 -6
- package/scss/helpers/mixins/_loading.scss +2 -2
- package/scss/helpers/mixins/_table.scss +1 -1
- package/scss/helpers/mixins/buttons/_setup.scss +1 -1
- package/scss/helpers/mixins/input/_generic.scss +2 -2
- package/scss/helpers/mixins/input/_select.scss +1 -1
- package/scss/helpers/mixins/input/_text.scss +1 -1
- package/scss/helpers/mixins/table/_details.scss +1 -1
- package/scss/helpers/mixins/table/_etickets.scss +1 -1
- package/scss/helpers/mixins/table/_gifts.scss +1 -1
- package/scss/helpers/mixins/table/_orders.scss +1 -1
- package/scss/helpers/mixins/table/_preferences.scss +2 -2
- package/scss/helpers/mixins/table/_tickets.scss +1 -1
- package/scss/helpers/variables/_layout.scss +1 -1
- package/scss/helpers/variables/index.scss +16 -1
- package/scss/index.scss +1 -1
- package/components/card_display.vue +0 -123
- package/components/help_row.vue +0 -33
- package/components/payment_logo.vue +0 -37
- package/components/placeholder.vue +0 -45
- package/components/related_card.vue +0 -39
- package/components/related_row.vue +0 -34
- package/components/related_title.vue +0 -93
- package/components/type_text.vue +0 -56
package/components/br_alert.vue
CHANGED
|
@@ -5,25 +5,26 @@
|
|
|
5
5
|
<div class="title" v-if="title.length > 0 && !toggle">{{ title }}</div>
|
|
6
6
|
<slot />
|
|
7
7
|
</span>
|
|
8
|
-
<
|
|
8
|
+
<br-button
|
|
9
9
|
v-if="toggle"
|
|
10
10
|
variant="exit"
|
|
11
11
|
:class="getStatus"
|
|
12
12
|
@click="$emit('close')"
|
|
13
13
|
>
|
|
14
14
|
<close-icon :status="getStatus" />
|
|
15
|
-
</
|
|
15
|
+
</br-button>
|
|
16
16
|
</div>
|
|
17
17
|
</div>
|
|
18
18
|
</template>
|
|
19
19
|
|
|
20
20
|
<script>
|
|
21
|
-
import { BButton } from "bootstrap-vue";
|
|
22
21
|
import { CloseIcon } from "barbican-reset/icons/stream";
|
|
22
|
+
import BrButton from "./br_button";
|
|
23
|
+
|
|
23
24
|
export default {
|
|
24
25
|
name: "BrAlert",
|
|
25
26
|
components: {
|
|
26
|
-
|
|
27
|
+
BrButton,
|
|
27
28
|
CloseIcon,
|
|
28
29
|
},
|
|
29
30
|
computed: {
|
package/components/br_button.vue
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
|
|
3
2
|
<!-- https://dockyard.com/blog/2020/03/02/accessible-loading-indicatorswith-no-extra-elements -->
|
|
4
3
|
|
|
5
|
-
<
|
|
6
|
-
|
|
4
|
+
<button
|
|
5
|
+
@click="$emit('click')"
|
|
6
|
+
:aria-busy="loading"
|
|
7
|
+
aria-live="polite"
|
|
8
|
+
:variant="variant"
|
|
9
|
+
:type="type"
|
|
10
|
+
>
|
|
7
11
|
<remove-ticket v-if="variant === 'remove-ticket'" :state="state">
|
|
8
12
|
<template v-for="(index, name) in $slots" v-slot:[name]>
|
|
9
13
|
<slot :name="name" />
|
|
@@ -11,7 +15,6 @@
|
|
|
11
15
|
</remove-ticket>
|
|
12
16
|
|
|
13
17
|
<template v-else>
|
|
14
|
-
|
|
15
18
|
<template v-if="state === 'default'">
|
|
16
19
|
<template v-if="$slots.default">
|
|
17
20
|
<slot name="default" />
|
|
@@ -45,45 +48,44 @@
|
|
|
45
48
|
{{ titleCase(state) }}
|
|
46
49
|
</template>
|
|
47
50
|
</template>
|
|
48
|
-
|
|
49
51
|
</template>
|
|
50
|
-
|
|
51
|
-
</b-button>
|
|
52
|
+
</button>
|
|
52
53
|
</template>
|
|
53
54
|
|
|
54
55
|
<script>
|
|
55
|
-
import {
|
|
56
|
-
import { RemoveTicket, DotTyping } from './br_button/components'
|
|
56
|
+
import { RemoveTicket, DotTyping } from "./br_button/components";
|
|
57
57
|
|
|
58
58
|
export default {
|
|
59
|
-
name: "BrButton",
|
|
60
59
|
props: {
|
|
61
60
|
state: {
|
|
62
61
|
type: String,
|
|
63
|
-
default: "default"
|
|
62
|
+
default: "default",
|
|
64
63
|
},
|
|
65
64
|
variant: {
|
|
66
|
-
type: String
|
|
65
|
+
type: String,
|
|
67
66
|
},
|
|
68
67
|
type: {
|
|
69
68
|
type: String,
|
|
70
|
-
default: "button"
|
|
71
|
-
}
|
|
69
|
+
default: "button",
|
|
70
|
+
},
|
|
72
71
|
},
|
|
73
72
|
methods: {
|
|
74
73
|
titleCase(str) {
|
|
75
|
-
return str
|
|
76
|
-
|
|
74
|
+
return str
|
|
75
|
+
.toLowerCase()
|
|
76
|
+
.split(" ")
|
|
77
|
+
.map((word) => word.charAt(0).toUpperCase() + word.slice(1))
|
|
78
|
+
.join(" ");
|
|
79
|
+
},
|
|
77
80
|
},
|
|
78
81
|
computed: {
|
|
79
82
|
loading() {
|
|
80
83
|
return this.state === "loading" ? "true" : "false";
|
|
81
|
-
}
|
|
84
|
+
},
|
|
82
85
|
},
|
|
83
86
|
components: {
|
|
84
|
-
BButton,
|
|
85
87
|
RemoveTicket,
|
|
86
|
-
DotTyping
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
</script>
|
|
88
|
+
DotTyping,
|
|
89
|
+
},
|
|
90
|
+
};
|
|
91
|
+
</script>
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="card">
|
|
3
|
+
<div v-if="$slots.header" class="card-header">
|
|
4
|
+
<slot name="header"></slot>
|
|
5
|
+
</div>
|
|
6
|
+
<div v-if="$slots.default" class="card-body"><slot></slot></div>
|
|
7
|
+
</div>
|
|
8
|
+
</template>
|
|
9
|
+
|
|
10
|
+
<style lang="scss" scoped>
|
|
11
|
+
.card {
|
|
12
|
+
border: 1px solid hsl(0deg, 0%, 85%);
|
|
13
|
+
background-color: white;
|
|
14
|
+
background-clip: border-box;
|
|
15
|
+
border-radius: 0.375rem;
|
|
16
|
+
flex-direction: column;
|
|
17
|
+
word-wrap: break-word;
|
|
18
|
+
position: relative;
|
|
19
|
+
display: flex;
|
|
20
|
+
min-width: 0;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.card[login] .card-header {
|
|
24
|
+
border-bottom: 1px solid hsl(0deg, 0%, 85%);
|
|
25
|
+
padding: 1.5rem 1.75rem 1.25rem;
|
|
26
|
+
justify-content: space-between;
|
|
27
|
+
background-color: transparent;
|
|
28
|
+
align-items: center;
|
|
29
|
+
display: flex;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.card[login] .card-body {
|
|
33
|
+
color: rgb(51, 51, 51);
|
|
34
|
+
padding: 1.75rem;
|
|
35
|
+
flex: 1 1 auto;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.card[confirm] {
|
|
39
|
+
margin-right: auto;
|
|
40
|
+
text-align: center;
|
|
41
|
+
margin-left: auto;
|
|
42
|
+
max-width: 20rem;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.card[confirm] .card-body {
|
|
46
|
+
padding: 1.75rem;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.card[block] {
|
|
50
|
+
box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
|
|
51
|
+
border: none;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.card[slim] .card-body {
|
|
55
|
+
padding: 1.25rem;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.card[membership] {
|
|
59
|
+
box-shadow: 0 0 0.375rem rgba(89, 89, 89, 0.5);
|
|
60
|
+
background: hsl(0deg, 0%, 20%);
|
|
61
|
+
width: calc(100% - 1rem);
|
|
62
|
+
display: inline-block;
|
|
63
|
+
margin: 0.5rem;
|
|
64
|
+
color: #fff;
|
|
65
|
+
border: none;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.card[membership] > .card-body {
|
|
69
|
+
align-items: flex-start;
|
|
70
|
+
row-gap: 0.75rem;
|
|
71
|
+
display: grid;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
@media only screen and (min-width: 520px) {
|
|
75
|
+
.card[membership] {
|
|
76
|
+
width: 23rem;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.card[membership] > .card-body {
|
|
80
|
+
row-gap: 2rem;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.card[password] .card-header {
|
|
85
|
+
border-bottom: 1px solid hsl(0deg, 0%, 85%);
|
|
86
|
+
padding: 1.5rem 1.75rem 1.25rem;
|
|
87
|
+
background-color: transparent;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.card[password] .card-body {
|
|
91
|
+
padding: 1.75rem;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.card[account] {
|
|
95
|
+
margin-top: 2rem;
|
|
96
|
+
margin-bottom: 0;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.card[account] > .card-body {
|
|
100
|
+
padding: 2rem;
|
|
101
|
+
}
|
|
102
|
+
</style>
|
|
@@ -1,22 +1,26 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
2
|
+
<br-card confirm done>
|
|
3
3
|
<done-icon />
|
|
4
|
-
<
|
|
5
|
-
<
|
|
4
|
+
<br-card-title>Done</br-card-title>
|
|
5
|
+
<br-card-text v-if="$slots.default">
|
|
6
6
|
<slot />
|
|
7
|
-
</
|
|
8
|
-
</
|
|
7
|
+
</br-card-text>
|
|
8
|
+
</br-card>
|
|
9
9
|
</template>
|
|
10
10
|
|
|
11
11
|
<script>
|
|
12
|
-
import
|
|
13
|
-
import
|
|
12
|
+
import BrCard from "./br_card";
|
|
13
|
+
import BrCardTitle from "./br_card_title";
|
|
14
|
+
import BrCardText from "./br_card_text";
|
|
15
|
+
|
|
16
|
+
import Animations from "barbican-reset/animations";
|
|
17
|
+
import { DoneIcon } from "barbican-reset/icons/confirm";
|
|
14
18
|
|
|
15
19
|
export default {
|
|
16
20
|
mixins: [Animations],
|
|
17
|
-
components: { DoneIcon },
|
|
21
|
+
components: { BrCard, BrCardTitle, BrCardText, DoneIcon },
|
|
18
22
|
mounted() {
|
|
19
23
|
this.animateDone();
|
|
20
24
|
},
|
|
21
25
|
};
|
|
22
|
-
</script>
|
|
26
|
+
</script>
|
|
@@ -1,25 +1,33 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
2
|
+
<br-card confirm email>
|
|
3
3
|
<email-icon />
|
|
4
|
-
<
|
|
4
|
+
<br-card-title v-if="$slots.title">
|
|
5
5
|
<slot name="title" />
|
|
6
|
-
</
|
|
7
|
-
<
|
|
6
|
+
</br-card-title>
|
|
7
|
+
<br-card-text v-if="$slots.default">
|
|
8
8
|
<slot />
|
|
9
|
-
</
|
|
10
|
-
</
|
|
9
|
+
</br-card-text>
|
|
10
|
+
</br-card>
|
|
11
11
|
</template>
|
|
12
12
|
|
|
13
13
|
<script>
|
|
14
|
-
import
|
|
15
|
-
import
|
|
14
|
+
import BrCard from "./br_card";
|
|
15
|
+
import BrCardTitle from "./br_card_title";
|
|
16
|
+
import BrCardText from "./br_card_text";
|
|
17
|
+
|
|
18
|
+
import Animations from "barbican-reset/animations";
|
|
19
|
+
import { EmailIcon } from "barbican-reset/icons/confirm";
|
|
20
|
+
|
|
16
21
|
export default {
|
|
17
22
|
mixins: [Animations],
|
|
18
23
|
components: {
|
|
19
|
-
|
|
24
|
+
BrCard,
|
|
25
|
+
BrCardTitle,
|
|
26
|
+
BrCardText,
|
|
27
|
+
EmailIcon,
|
|
20
28
|
},
|
|
21
29
|
mounted() {
|
|
22
30
|
this.animateEmail();
|
|
23
31
|
},
|
|
24
32
|
};
|
|
25
|
-
</script>
|
|
33
|
+
</script>
|
|
@@ -65,7 +65,7 @@ export default {
|
|
|
65
65
|
|
|
66
66
|
&.masthead {
|
|
67
67
|
box-shadow: 0 0.375rem 0.375rem rgba($black, 0.1);
|
|
68
|
-
background-color: $white;
|
|
68
|
+
background-color: $br-white;
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
|
|
@@ -77,7 +77,7 @@ export default {
|
|
|
77
77
|
padding-bottom: 1.5rem;
|
|
78
78
|
padding-top: 1.5rem;
|
|
79
79
|
|
|
80
|
-
@include
|
|
80
|
+
@include small-up {
|
|
81
81
|
padding-bottom: 2.5rem;
|
|
82
82
|
padding-top: 2.5rem;
|
|
83
83
|
}
|
|
@@ -93,7 +93,7 @@ export default {
|
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
&.masthead {
|
|
96
|
-
@include
|
|
96
|
+
@include small-up {
|
|
97
97
|
padding-bottom: 3rem;
|
|
98
98
|
padding-top: 3rem;
|
|
99
99
|
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="br-form-row">
|
|
3
3
|
<label v-if="label" :for="id">
|
|
4
|
-
<strong>{{ label }}</strong>
|
|
4
|
+
<strong>{{ label }}</strong>
|
|
5
|
+
<span v-if="label && required">(required)</span
|
|
6
|
+
><span v-if="label && optional">(optional)</span>
|
|
5
7
|
</label>
|
|
6
|
-
<div :class="[`content`,{ editable },{ label },{ submit },{ radios }]">
|
|
8
|
+
<div :class="[`content`, { editable }, { label }, { submit }, { radios }]">
|
|
7
9
|
<b-button v-if="editable" variant="input-edit" @click="$emit('edit')">
|
|
8
10
|
<edit-icon />
|
|
9
11
|
</b-button>
|
|
@@ -13,38 +15,38 @@
|
|
|
13
15
|
</template>
|
|
14
16
|
|
|
15
17
|
<script type="text/javascript">
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
18
|
+
import BrButton from "./br_button";
|
|
19
|
+
import { EditIcon } from "../icons/account";
|
|
20
|
+
|
|
21
|
+
export default {
|
|
22
|
+
components: {
|
|
23
|
+
BrButton,
|
|
24
|
+
EditIcon,
|
|
25
|
+
},
|
|
26
|
+
props: {
|
|
27
|
+
label: {
|
|
28
|
+
type: String,
|
|
29
|
+
},
|
|
30
|
+
required: {
|
|
31
|
+
type: Boolean,
|
|
32
|
+
},
|
|
33
|
+
optional: {
|
|
34
|
+
type: Boolean,
|
|
35
|
+
},
|
|
36
|
+
submit: {
|
|
37
|
+
type: Boolean,
|
|
38
|
+
},
|
|
39
|
+
editable: {
|
|
40
|
+
type: Boolean,
|
|
41
|
+
},
|
|
42
|
+
radios: {
|
|
43
|
+
type: Boolean,
|
|
23
44
|
},
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
required: {
|
|
29
|
-
type: Boolean
|
|
30
|
-
},
|
|
31
|
-
optional: {
|
|
32
|
-
type: Boolean
|
|
33
|
-
},
|
|
34
|
-
submit: {
|
|
35
|
-
type: Boolean
|
|
36
|
-
},
|
|
37
|
-
editable: {
|
|
38
|
-
type: Boolean
|
|
39
|
-
},
|
|
40
|
-
radios: {
|
|
41
|
-
type: Boolean
|
|
42
|
-
}
|
|
45
|
+
},
|
|
46
|
+
computed: {
|
|
47
|
+
id() {
|
|
48
|
+
return this.label.toLowerCase().split(" ").join("_");
|
|
43
49
|
},
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
</script>
|
|
50
|
+
},
|
|
51
|
+
};
|
|
52
|
+
</script>
|
package/components/br_loader.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
2
|
+
<br-card class="br-loader" no-body>
|
|
3
3
|
<div class="wrap br-loader">
|
|
4
4
|
<div class="icon br-loader"></div>
|
|
5
5
|
<div class="icon br-loader"></div>
|
|
@@ -8,11 +8,15 @@
|
|
|
8
8
|
<div class="icon br-loader"></div>
|
|
9
9
|
<div class="icon br-loader"></div>
|
|
10
10
|
</div>
|
|
11
|
-
</
|
|
11
|
+
</br-card>
|
|
12
12
|
</template>
|
|
13
13
|
|
|
14
14
|
<script>
|
|
15
|
+
import BrCard from "./br_card";
|
|
16
|
+
|
|
15
17
|
export default {
|
|
16
|
-
|
|
18
|
+
components: {
|
|
19
|
+
BrCard,
|
|
20
|
+
},
|
|
17
21
|
};
|
|
18
|
-
</script>
|
|
22
|
+
</script>
|
|
@@ -63,7 +63,7 @@ export default {
|
|
|
63
63
|
color: $c-grey-l44;
|
|
64
64
|
font-weight: 400;
|
|
65
65
|
|
|
66
|
-
@include
|
|
66
|
+
@include medium-up {
|
|
67
67
|
font-size: $h4-font-size;
|
|
68
68
|
}
|
|
69
69
|
}
|
|
@@ -89,7 +89,7 @@ export default {
|
|
|
89
89
|
}
|
|
90
90
|
|
|
91
91
|
.event_summary {
|
|
92
|
-
@include
|
|
92
|
+
@include medium-up {
|
|
93
93
|
display: grid;
|
|
94
94
|
grid-template-columns: 20rem auto;
|
|
95
95
|
grid-template-rows: auto auto auto;
|
|
@@ -105,11 +105,12 @@ export default {
|
|
|
105
105
|
grid-row-start: 1;
|
|
106
106
|
grid-row-end: 4;
|
|
107
107
|
border: 1px solid $c-grey-l87;
|
|
108
|
-
border-radius: $border-radius-lg;
|
|
108
|
+
border-radius: $br-border-radius-lg;
|
|
109
109
|
max-width: 100%;
|
|
110
110
|
width: 100%;
|
|
111
111
|
margin-bottom: $gap-instance;
|
|
112
|
-
|
|
112
|
+
|
|
113
|
+
@include medium-up {
|
|
113
114
|
margin-bottom: 0;
|
|
114
115
|
}
|
|
115
116
|
}
|
|
@@ -122,7 +123,8 @@ export default {
|
|
|
122
123
|
grid-column-start: 1;
|
|
123
124
|
grid-column-end: 3;
|
|
124
125
|
margin-top: 1rem;
|
|
125
|
-
|
|
126
|
+
|
|
127
|
+
@include large-up {
|
|
126
128
|
margin-top: 0;
|
|
127
129
|
grid-column-start: 2;
|
|
128
130
|
|
|
@@ -62,7 +62,7 @@ export default {
|
|
|
62
62
|
.see_inside_content {
|
|
63
63
|
padding: 1rem;
|
|
64
64
|
border: 1px solid $c-grey-l87;;
|
|
65
|
-
border-radius: $border-radius;
|
|
65
|
+
border-radius: $br-border-radius;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
.sections_title {
|
|
@@ -70,13 +70,15 @@ export default {
|
|
|
70
70
|
span {
|
|
71
71
|
padding-top: 2px; // To line up with the button text
|
|
72
72
|
width: 100%;
|
|
73
|
-
|
|
73
|
+
|
|
74
|
+
@include small-up {
|
|
74
75
|
width: auto;
|
|
75
76
|
}
|
|
76
77
|
}
|
|
77
78
|
.close_mobile {
|
|
78
79
|
margin-left: auto;
|
|
79
|
-
|
|
80
|
+
|
|
81
|
+
@include small-up {
|
|
80
82
|
display: none;
|
|
81
83
|
}
|
|
82
84
|
}
|
|
@@ -87,7 +89,8 @@ export default {
|
|
|
87
89
|
gap: 1rem;
|
|
88
90
|
min-height: 28px; // Due to 28 px close icon, to prevent height change when icon shown.
|
|
89
91
|
flex-direction: column;
|
|
90
|
-
|
|
92
|
+
|
|
93
|
+
@include small-up {
|
|
91
94
|
flex-direction: row;
|
|
92
95
|
}
|
|
93
96
|
|
|
@@ -101,7 +104,8 @@ export default {
|
|
|
101
104
|
|
|
102
105
|
.close_desktop {
|
|
103
106
|
margin-left: auto;
|
|
104
|
-
|
|
107
|
+
|
|
108
|
+
@include small-down {
|
|
105
109
|
display: none;
|
|
106
110
|
}
|
|
107
111
|
}
|
package/index.js
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import BrAlert from "./components/br_alert";
|
|
2
2
|
import BrAnchor from "./components/br_anchor";
|
|
3
3
|
import BrButton from "./components/br_button";
|
|
4
|
+
import BrCard from "./components/br_card";
|
|
5
|
+
import BrCardText from "./components/br_card_text";
|
|
6
|
+
import BrCardTitle from "./components/br_card_title";
|
|
7
|
+
import BrCardSubTitle from "./components/br_card_sub_title";
|
|
4
8
|
import BrConfirmDone from "./components/br_confirm_done";
|
|
5
9
|
import BrConfirmEmail from "./components/br_confirm_email";
|
|
6
10
|
import BrContainer from "./components/br_container";
|
|
@@ -15,23 +19,19 @@ import BrSkiplink from "./components/br_skiplink";
|
|
|
15
19
|
import BrWrap from "./components/br_wrap";
|
|
16
20
|
|
|
17
21
|
import AccountTitle from "./components/account_title";
|
|
18
|
-
import CardDisplay from "./components/card_display";
|
|
19
22
|
import EventSummary from "./components/event_summary";
|
|
20
23
|
import FluidIframe from "./components/fluid_iframe";
|
|
21
|
-
import HelpRow from "./components/help_row";
|
|
22
|
-
import Placeholder from "./components/placeholder";
|
|
23
|
-
import PaymentLogo from "./components/payment_logo";
|
|
24
|
-
import RelatedCard from "./components/related_card";
|
|
25
|
-
import RelatedTitle from "./components/related_title";
|
|
26
|
-
import RelatedRow from "./components/related_row";
|
|
27
24
|
import SeeInside from './components/see_inside'
|
|
28
|
-
import TypeText from "./components/type_text";
|
|
29
25
|
import VideoContent from "./components/video_content";
|
|
30
26
|
|
|
31
27
|
export {
|
|
32
28
|
BrAlert,
|
|
33
29
|
BrAnchor,
|
|
34
30
|
BrButton,
|
|
31
|
+
BrCard,
|
|
32
|
+
BrCardSubTitle,
|
|
33
|
+
BrCardText,
|
|
34
|
+
BrCardTitle,
|
|
35
35
|
BrConfirmDone,
|
|
36
36
|
BrConfirmEmail,
|
|
37
37
|
BrContainer,
|
|
@@ -45,16 +45,8 @@ export {
|
|
|
45
45
|
BrSkiplink,
|
|
46
46
|
BrWrap,
|
|
47
47
|
AccountTitle,
|
|
48
|
-
CardDisplay,
|
|
49
48
|
EventSummary,
|
|
50
49
|
FluidIframe,
|
|
51
|
-
HelpRow,
|
|
52
|
-
Placeholder,
|
|
53
|
-
PaymentLogo,
|
|
54
|
-
RelatedCard,
|
|
55
|
-
RelatedTitle,
|
|
56
|
-
RelatedRow,
|
|
57
50
|
SeeInside,
|
|
58
|
-
TypeText,
|
|
59
51
|
VideoContent,
|
|
60
52
|
};
|
package/package.json
CHANGED
|
@@ -52,7 +52,6 @@
|
|
|
52
52
|
"name": "Paul Heading"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"bootstrap-vue": "^2.21.2",
|
|
56
55
|
"express": "^4.19.2",
|
|
57
56
|
"focus-visible": "^5.2.0",
|
|
58
57
|
"gsap": "^3.7.1",
|
|
@@ -73,9 +72,6 @@
|
|
|
73
72
|
"sassdoc": "^2.7.4",
|
|
74
73
|
"serve-favicon": "^2.5.0"
|
|
75
74
|
},
|
|
76
|
-
"devDependencies": {
|
|
77
|
-
"bootstrap": "^5.1.3"
|
|
78
|
-
},
|
|
79
75
|
"description": "A collection of useful scss imports and js scripts, that provide consistent styling and functionality across barbican projects.",
|
|
80
76
|
"files": [
|
|
81
77
|
"animations/**/*",
|
|
@@ -96,7 +92,6 @@
|
|
|
96
92
|
"type": "git",
|
|
97
93
|
"url": "git+https://bitbucket.org/barbicandev/barbican-reset.git"
|
|
98
94
|
},
|
|
99
|
-
"sass": "scss/index.scss",
|
|
100
95
|
"scripts": {
|
|
101
96
|
"serve:patterns": "cd patterns && node index",
|
|
102
97
|
"watch:patterns": "cd patterns && gulp watch",
|
|
@@ -104,5 +99,5 @@
|
|
|
104
99
|
"build:patterns": "cd patterns && rm -rf html && pug views --out html"
|
|
105
100
|
},
|
|
106
101
|
"style": "dist/css/barbican-reset.css",
|
|
107
|
-
"version": "2.
|
|
102
|
+
"version": "2.41.0"
|
|
108
103
|
}
|