barbican-reset 3.1.0 → 3.2.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/animations/index.js +1 -1
- package/components/AccountTitle.vue +1 -1
- package/components/BrAlert.vue +2 -2
- package/components/BrAnchor.vue +1 -1
- package/components/BrButton.vue +2 -1
- package/components/BrCard.vue +1 -1
- package/components/BrCollapse/Button.vue +1 -1
- package/components/BrConfirmDone.vue +5 -5
- package/components/BrConfirmEmail.vue +5 -5
- package/components/BrContainer.vue +1 -1
- package/components/BrFormBlock.vue +1 -1
- package/components/BrFormCheckbox/Component.vue +1 -1
- package/components/BrFormCheckboxGroup/Component.vue +1 -1
- package/components/BrFormGroup/Component.vue +1 -1
- package/components/BrFormInput/Component.vue +1 -1
- package/components/BrFormPassword.vue +3 -3
- package/components/BrFormRow.vue +2 -2
- package/components/BrFormUpdate.vue +1 -1
- package/components/BrLoader.vue +1 -1
- package/components/EventSummary.vue +2 -2
- package/components/FluidIframe.vue +1 -1
- package/components/SeeInside.vue +3 -3
- package/components/VideoContent.vue +3 -3
- package/icons/account/index.js +7 -7
- package/icons/city_of_london_lockup.vue +1 -1
- package/icons/confirm/index.js +3 -6
- package/icons/index.js +9 -9
- package/icons/password/index.js +3 -3
- package/icons/power/index.js +4 -8
- package/icons/snippets/index.js +5 -10
- package/icons/stream/index.js +7 -7
- package/index.js +34 -34
- package/package.json +19 -2
- package/patterns/static/styles.css +1 -1
- package/scss/helpers/mixins/_br-alert.scss +1 -1
- package/scss/helpers/mixins/_breakpoints.scss +0 -21
- package/components/BrButton/components.js +0 -4
package/animations/index.js
CHANGED
package/components/BrAlert.vue
CHANGED
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
</template>
|
|
19
19
|
|
|
20
20
|
<script>
|
|
21
|
-
import CloseIcon from "
|
|
22
|
-
import BrButton from "
|
|
21
|
+
import CloseIcon from "#icons/stream/close";
|
|
22
|
+
import BrButton from "#components/BrButton";
|
|
23
23
|
|
|
24
24
|
export default {
|
|
25
25
|
components: {
|
package/components/BrAnchor.vue
CHANGED
package/components/BrButton.vue
CHANGED
|
@@ -53,7 +53,8 @@
|
|
|
53
53
|
</template>
|
|
54
54
|
|
|
55
55
|
<script>
|
|
56
|
-
import
|
|
56
|
+
import RemoveTicket from "#components/BrButton/remove_ticket";
|
|
57
|
+
import DotTyping from "#components/BrButton/dot_typing";
|
|
57
58
|
|
|
58
59
|
export default {
|
|
59
60
|
emits: ["click"],
|
package/components/BrCard.vue
CHANGED
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
</template>
|
|
10
10
|
|
|
11
11
|
<script>
|
|
12
|
-
import BrCard from "
|
|
13
|
-
import BrCardTitle from "
|
|
14
|
-
import BrCardText from "
|
|
12
|
+
import BrCard from "#components/BrCard";
|
|
13
|
+
import BrCardTitle from "#components/BrCardTitle";
|
|
14
|
+
import BrCardText from "#components/BrCardText";
|
|
15
15
|
|
|
16
|
-
import Animations from "
|
|
17
|
-
import DoneIcon from "
|
|
16
|
+
import Animations from "#animations/index";
|
|
17
|
+
import DoneIcon from "#icons/confirm/done";
|
|
18
18
|
|
|
19
19
|
export default {
|
|
20
20
|
mixins: [Animations],
|
|
@@ -11,12 +11,12 @@
|
|
|
11
11
|
</template>
|
|
12
12
|
|
|
13
13
|
<script>
|
|
14
|
-
import BrCard from "
|
|
15
|
-
import BrCardTitle from "
|
|
16
|
-
import BrCardText from "
|
|
14
|
+
import BrCard from "#components/BrCard";
|
|
15
|
+
import BrCardTitle from "#components/BrCardTitle";
|
|
16
|
+
import BrCardText from "#components/BrCardText";
|
|
17
17
|
|
|
18
|
-
import Animations from "
|
|
19
|
-
import EmailIcon from "
|
|
18
|
+
import Animations from "#animations/index";
|
|
19
|
+
import EmailIcon from "#icons/confirm/email";
|
|
20
20
|
|
|
21
21
|
export default {
|
|
22
22
|
mixins: [Animations],
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
</template>
|
|
27
27
|
|
|
28
28
|
<script>
|
|
29
|
-
import BrButton from "
|
|
30
|
-
import HidePasswordIcon from "
|
|
31
|
-
import ShowPasswordIcon from "
|
|
29
|
+
import BrButton from "#components/BrButton";
|
|
30
|
+
import HidePasswordIcon from "#icons/password/hide";
|
|
31
|
+
import ShowPasswordIcon from "#icons/password/show";
|
|
32
32
|
|
|
33
33
|
export default {
|
|
34
34
|
inheritAttrs: false, // Allow us to put attributes on the input.
|
package/components/BrFormRow.vue
CHANGED
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
</template>
|
|
16
16
|
|
|
17
17
|
<script>
|
|
18
|
-
import BrButton from "
|
|
19
|
-
import EditIcon from "
|
|
18
|
+
import BrButton from "#components/BrButton";
|
|
19
|
+
import EditIcon from "#icons/account/edit";
|
|
20
20
|
|
|
21
21
|
export default {
|
|
22
22
|
components: {
|
package/components/BrLoader.vue
CHANGED
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
</template>
|
|
28
28
|
|
|
29
29
|
<script>
|
|
30
|
-
import SeeInside from "
|
|
30
|
+
import SeeInside from "#components/SeeInside";
|
|
31
31
|
|
|
32
32
|
export default {
|
|
33
33
|
components: { SeeInside },
|
|
@@ -61,7 +61,7 @@ export default {
|
|
|
61
61
|
</script>
|
|
62
62
|
|
|
63
63
|
<style lang="scss" module>
|
|
64
|
-
@use "
|
|
64
|
+
@use "#styles/helpers/index" as *;
|
|
65
65
|
|
|
66
66
|
@mixin title {
|
|
67
67
|
letter-spacing: $headings-letter-spacing;
|
package/components/SeeInside.vue
CHANGED
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
</template>
|
|
47
47
|
|
|
48
48
|
<script>
|
|
49
|
-
import BrButton from "
|
|
50
|
-
import CloseIcon from "
|
|
49
|
+
import BrButton from "#components/BrButton";
|
|
50
|
+
import CloseIcon from "#icons/stream/close";
|
|
51
51
|
|
|
52
52
|
export default {
|
|
53
53
|
components: {
|
|
@@ -74,7 +74,7 @@ export default {
|
|
|
74
74
|
</script>
|
|
75
75
|
|
|
76
76
|
<style lang="scss" module>
|
|
77
|
-
@use "
|
|
77
|
+
@use "#styles/helpers/index" as *;
|
|
78
78
|
|
|
79
79
|
.SeeInside_content {
|
|
80
80
|
padding: 1rem;
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
</template>
|
|
33
33
|
|
|
34
34
|
<script>
|
|
35
|
-
import FluidIframe from "
|
|
36
|
-
import BrAlert from "
|
|
35
|
+
import FluidIframe from "#components/FluidIframe";
|
|
36
|
+
import BrAlert from "#components/BrAlert";
|
|
37
37
|
import { DateTime } from "luxon";
|
|
38
38
|
|
|
39
39
|
export default {
|
|
@@ -64,7 +64,7 @@ export default {
|
|
|
64
64
|
</script>
|
|
65
65
|
|
|
66
66
|
<style lang="scss" module>
|
|
67
|
-
@use "
|
|
67
|
+
@use "#styles/helpers/index" as *;
|
|
68
68
|
|
|
69
69
|
.brightcove {
|
|
70
70
|
border-radius: $br-border-radius-lg;
|
package/icons/account/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import PersonalIcon from "
|
|
2
|
-
import MembershipIcon from "
|
|
3
|
-
import VideoIcon from "
|
|
4
|
-
import PaymentIcon from "
|
|
5
|
-
import OrdersIcon from "
|
|
6
|
-
import SupportIcon from "
|
|
7
|
-
import EditIcon from "
|
|
1
|
+
import PersonalIcon from "#icons/account/personal";
|
|
2
|
+
import MembershipIcon from "#icons/account/membership";
|
|
3
|
+
import VideoIcon from "#icons/account/video";
|
|
4
|
+
import PaymentIcon from "#icons/account/payment";
|
|
5
|
+
import OrdersIcon from "#icons/account/orders";
|
|
6
|
+
import SupportIcon from "#icons/account/support";
|
|
7
|
+
import EditIcon from "#icons/account/edit";
|
|
8
8
|
|
|
9
9
|
export {
|
|
10
10
|
PersonalIcon,
|
package/icons/confirm/index.js
CHANGED
package/icons/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import ArrowBack from "
|
|
2
|
-
import ArrowIcon from "
|
|
3
|
-
import ArrowForward from "
|
|
4
|
-
import BackArrow from "
|
|
5
|
-
import BarbicanLogo from "
|
|
6
|
-
import CartIcon from "
|
|
7
|
-
import CityOfLondonLogo from "
|
|
8
|
-
import CityOfLondonLockup from "
|
|
9
|
-
import InformationIcon from "
|
|
1
|
+
import ArrowBack from "#icons/arrow_back";
|
|
2
|
+
import ArrowIcon from "#icons/arrow";
|
|
3
|
+
import ArrowForward from "#icons/arrow_forward";
|
|
4
|
+
import BackArrow from "#icons/back_arrow";
|
|
5
|
+
import BarbicanLogo from "#icons/barbican";
|
|
6
|
+
import CartIcon from "#icons/cart";
|
|
7
|
+
import CityOfLondonLogo from "#icons/city_of_london";
|
|
8
|
+
import CityOfLondonLockup from "#icons/city_of_london_lockup";
|
|
9
|
+
import InformationIcon from "#icons/information";
|
|
10
10
|
|
|
11
11
|
export {
|
|
12
12
|
ArrowBack,
|
package/icons/password/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import HidePasswordIcon from
|
|
2
|
-
import ShowPasswordIcon from
|
|
1
|
+
import HidePasswordIcon from "#icons/password/hide";
|
|
2
|
+
import ShowPasswordIcon from "#icons/password/show";
|
|
3
3
|
|
|
4
|
-
export { HidePasswordIcon, ShowPasswordIcon }
|
|
4
|
+
export { HidePasswordIcon, ShowPasswordIcon };
|
package/icons/power/index.js
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
import AlleyneIcon from
|
|
2
|
-
import BanffIcon from
|
|
3
|
-
import CouncilIcon from
|
|
1
|
+
import AlleyneIcon from "#icons/power/alleyne";
|
|
2
|
+
import BanffIcon from "#icons/power/banff";
|
|
3
|
+
import CouncilIcon from "#icons/power/council";
|
|
4
4
|
|
|
5
|
-
export {
|
|
6
|
-
AlleyneIcon,
|
|
7
|
-
BanffIcon,
|
|
8
|
-
CouncilIcon
|
|
9
|
-
}
|
|
5
|
+
export { AlleyneIcon, BanffIcon, CouncilIcon };
|
package/icons/snippets/index.js
CHANGED
|
@@ -1,11 +1,6 @@
|
|
|
1
|
-
import BarbicanIcon from
|
|
2
|
-
import ContributorIcon from
|
|
3
|
-
import OtherIcon from
|
|
4
|
-
import PinIcon from
|
|
1
|
+
import BarbicanIcon from "#icons/snippets/barbican";
|
|
2
|
+
import ContributorIcon from "#icons/snippets/contributor";
|
|
3
|
+
import OtherIcon from "#icons/snippets/other";
|
|
4
|
+
import PinIcon from "#icons/snippets/pin";
|
|
5
5
|
|
|
6
|
-
export {
|
|
7
|
-
BarbicanIcon,
|
|
8
|
-
ContributorIcon,
|
|
9
|
-
OtherIcon,
|
|
10
|
-
PinIcon
|
|
11
|
-
}
|
|
6
|
+
export { BarbicanIcon, ContributorIcon, OtherIcon, PinIcon };
|
package/icons/stream/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import AirplayIcon from "
|
|
2
|
-
import CastIcon from "
|
|
3
|
-
import ChatIcon from "
|
|
4
|
-
import CogIcon from "
|
|
5
|
-
import VolumeIcon from "
|
|
6
|
-
import LiveIcon from "
|
|
7
|
-
import CloseIcon from "
|
|
1
|
+
import AirplayIcon from "#icons/stream/airplay";
|
|
2
|
+
import CastIcon from "#icons/stream/cast";
|
|
3
|
+
import ChatIcon from "#icons/stream/chat";
|
|
4
|
+
import CogIcon from "#icons/stream/cog";
|
|
5
|
+
import VolumeIcon from "#icons/stream/volume";
|
|
6
|
+
import LiveIcon from "#icons/stream/live";
|
|
7
|
+
import CloseIcon from "#icons/stream/close";
|
|
8
8
|
|
|
9
9
|
export {
|
|
10
10
|
AirplayIcon,
|
package/index.js
CHANGED
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
import BrAlert from "
|
|
2
|
-
import BrAnchor from "
|
|
3
|
-
import BrButton from "
|
|
1
|
+
import BrAlert from "#components/BrAlert";
|
|
2
|
+
import BrAnchor from "#components/BrAnchor";
|
|
3
|
+
import BrButton from "#components/BrButton";
|
|
4
4
|
|
|
5
|
-
import BrCard from "
|
|
6
|
-
import BrCardBody from "
|
|
7
|
-
import BrCardText from "
|
|
8
|
-
import BrCardTitle from "
|
|
9
|
-
import BrCardSubTitle from "
|
|
5
|
+
import BrCard from "#components/BrCard";
|
|
6
|
+
import BrCardBody from "#components/BrCardBody";
|
|
7
|
+
import BrCardText from "#components/BrCardText";
|
|
8
|
+
import BrCardTitle from "#components/BrCardTitle";
|
|
9
|
+
import BrCardSubTitle from "#components/BrCardSubTitle";
|
|
10
10
|
|
|
11
|
-
import BrCollapseButton from "
|
|
12
|
-
import BrCollapseContent from "
|
|
11
|
+
import BrCollapseButton from "#components/BrCollapse/Button";
|
|
12
|
+
import BrCollapseContent from "#components/BrCollapse/Content";
|
|
13
13
|
|
|
14
|
-
import BrConfirmDone from "
|
|
15
|
-
import BrConfirmEmail from "
|
|
14
|
+
import BrConfirmDone from "#components/BrConfirmDone";
|
|
15
|
+
import BrConfirmEmail from "#components/BrConfirmEmail";
|
|
16
16
|
|
|
17
|
-
import BrContainer from "
|
|
17
|
+
import BrContainer from "#components/BrContainer";
|
|
18
18
|
|
|
19
|
-
import BrFooterLower from "
|
|
20
|
-
import BrFooterUpper from "
|
|
19
|
+
import BrFooterLower from "#components/BrFooterLower";
|
|
20
|
+
import BrFooterUpper from "#components/BrFooterUpper";
|
|
21
21
|
|
|
22
|
-
import BrFormBlock from "
|
|
23
|
-
import BrFormCheckbox from "
|
|
24
|
-
import BrFormCheckboxGroup from "
|
|
25
|
-
import BrFormGroup from "
|
|
26
|
-
import BrFormInput from "
|
|
27
|
-
import BrFormPassword from "
|
|
28
|
-
import BrFormRadio from "
|
|
29
|
-
import BrFormRadioGroup from "
|
|
30
|
-
import BrFormRow from "
|
|
31
|
-
import BrFormTextarea from "
|
|
32
|
-
import BrFormUpdate from "
|
|
22
|
+
import BrFormBlock from "#components/BrFormBlock";
|
|
23
|
+
import BrFormCheckbox from "#components/BrFormCheckbox/Component";
|
|
24
|
+
import BrFormCheckboxGroup from "#components/BrFormCheckboxGroup/Component";
|
|
25
|
+
import BrFormGroup from "#components/BrFormGroup/Component";
|
|
26
|
+
import BrFormInput from "#components/BrFormInput/Component";
|
|
27
|
+
import BrFormPassword from "#components/BrFormPassword";
|
|
28
|
+
import BrFormRadio from "#components/BrFormRadio/Component";
|
|
29
|
+
import BrFormRadioGroup from "#components/BrFormRadioGroup/Component";
|
|
30
|
+
import BrFormRow from "#components/BrFormRow";
|
|
31
|
+
import BrFormTextarea from "#components/BrFormTextarea/Component";
|
|
32
|
+
import BrFormUpdate from "#components/BrFormUpdate";
|
|
33
33
|
|
|
34
|
-
import BrLoader from "
|
|
35
|
-
import BrSkiplink from "
|
|
36
|
-
import BrWrap from "
|
|
34
|
+
import BrLoader from "#components/BrLoader";
|
|
35
|
+
import BrSkiplink from "#components/BrSkiplink";
|
|
36
|
+
import BrWrap from "#components/BrWrap";
|
|
37
37
|
|
|
38
|
-
import AccountTitle from "
|
|
39
|
-
import EventSummary from "
|
|
40
|
-
import FluidIframe from "
|
|
41
|
-
import SeeInside from "
|
|
42
|
-
import VideoContent from "
|
|
38
|
+
import AccountTitle from "#components/AccountTitle";
|
|
39
|
+
import EventSummary from "#components/EventSummary";
|
|
40
|
+
import FluidIframe from "#components/FluidIframe";
|
|
41
|
+
import SeeInside from "#components/SeeInside";
|
|
42
|
+
import VideoContent from "#components/VideoContent";
|
|
43
43
|
|
|
44
44
|
export {
|
|
45
45
|
BrAlert,
|
package/package.json
CHANGED
|
@@ -86,6 +86,23 @@
|
|
|
86
86
|
"focus-visible.min.js",
|
|
87
87
|
"index.js"
|
|
88
88
|
],
|
|
89
|
+
"imports": {
|
|
90
|
+
"#animations/*": [
|
|
91
|
+
"./animations/*.js"
|
|
92
|
+
],
|
|
93
|
+
"#components/*": [
|
|
94
|
+
"./components/*.vue"
|
|
95
|
+
],
|
|
96
|
+
"#icons/*": [
|
|
97
|
+
"./icons/*.vue"
|
|
98
|
+
],
|
|
99
|
+
"#mixins/*": [
|
|
100
|
+
"./mixins/*.js"
|
|
101
|
+
],
|
|
102
|
+
"#styles/*": [
|
|
103
|
+
"./scss/*.scss"
|
|
104
|
+
]
|
|
105
|
+
},
|
|
89
106
|
"exports": {
|
|
90
107
|
".": "./index.js",
|
|
91
108
|
"./animations": "./animations/index.js",
|
|
@@ -98,7 +115,7 @@
|
|
|
98
115
|
"./scss": "./scss/index.scss",
|
|
99
116
|
"./scss/helpers": "./scss/helpers/index.scss"
|
|
100
117
|
},
|
|
101
|
-
"main": "
|
|
118
|
+
"main": "index.js",
|
|
102
119
|
"homepage": "https://bitbucket.org/barbicandev/barbican-reset#readme",
|
|
103
120
|
"license": "MIT",
|
|
104
121
|
"name": "barbican-reset",
|
|
@@ -112,5 +129,5 @@
|
|
|
112
129
|
"style:patterns": "cd patterns && gulp build:css",
|
|
113
130
|
"build:patterns": "cd patterns && rm -rf html && pug views --out html"
|
|
114
131
|
},
|
|
115
|
-
"version": "3.
|
|
132
|
+
"version": "3.2.0"
|
|
116
133
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
$xsmall: 100;
|
|
2
1
|
$small: 576;
|
|
3
2
|
$medium: 768;
|
|
4
3
|
$large: 992;
|
|
@@ -17,18 +16,6 @@ $xxlarge: 1600;
|
|
|
17
16
|
}
|
|
18
17
|
}
|
|
19
18
|
|
|
20
|
-
@mixin x-small-up {
|
|
21
|
-
@include min-width($xsmall) {
|
|
22
|
-
@content
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
@mixin x-small-down {
|
|
27
|
-
@include max-width($xsmall) {
|
|
28
|
-
@content
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
19
|
@mixin small-down {
|
|
33
20
|
@include max-width($small) {
|
|
34
21
|
@content
|
|
@@ -41,14 +28,6 @@ $xxlarge: 1600;
|
|
|
41
28
|
}
|
|
42
29
|
}
|
|
43
30
|
|
|
44
|
-
@mixin small-only {
|
|
45
|
-
@include x-small-up {
|
|
46
|
-
@include small-down {
|
|
47
|
-
@content;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
31
|
@mixin medium-up {
|
|
53
32
|
@include min-width($medium) {
|
|
54
33
|
@content
|