barbican-reset 3.2.0 → 3.3.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 -2
- 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/css/index.css +29 -29
- package/icons/account/index.js +7 -7
- package/icons/city_of_london_lockup.vue +1 -1
- package/icons/confirm/index.js +2 -2
- package/icons/index.js +9 -9
- package/icons/password/index.js +2 -2
- package/icons/power/index.js +3 -3
- package/icons/snippets/index.js +4 -4
- package/icons/stream/index.js +7 -7
- package/index.js +34 -34
- package/package.json +7 -7
- package/patterns/scss/styles.scss +1 -1
- package/scss/_helpers.scss +4 -0
- package/scss/index.scss +1 -1
- package/scss/helpers/index.scss +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 "#icons/stream/close";
|
|
22
|
-
import BrButton from "#components/BrButton";
|
|
21
|
+
import CloseIcon from "#icons/stream/close.vue";
|
|
22
|
+
import BrButton from "#components/BrButton.vue";
|
|
23
23
|
|
|
24
24
|
export default {
|
|
25
25
|
components: {
|
package/components/BrAnchor.vue
CHANGED
package/components/BrButton.vue
CHANGED
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
</template>
|
|
54
54
|
|
|
55
55
|
<script>
|
|
56
|
-
import RemoveTicket from "#components/BrButton/remove_ticket";
|
|
57
|
-
import DotTyping from "#components/BrButton/dot_typing";
|
|
56
|
+
import RemoveTicket from "#components/BrButton/remove_ticket.vue";
|
|
57
|
+
import DotTyping from "#components/BrButton/dot_typing.vue";
|
|
58
58
|
|
|
59
59
|
export default {
|
|
60
60
|
emits: ["click"],
|
package/components/BrCard.vue
CHANGED
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
</template>
|
|
10
10
|
|
|
11
11
|
<script>
|
|
12
|
-
import BrCard from "#components/BrCard";
|
|
13
|
-
import BrCardTitle from "#components/BrCardTitle";
|
|
14
|
-
import BrCardText from "#components/BrCardText";
|
|
12
|
+
import BrCard from "#components/BrCard.vue";
|
|
13
|
+
import BrCardTitle from "#components/BrCardTitle.vue";
|
|
14
|
+
import BrCardText from "#components/BrCardText.vue";
|
|
15
15
|
|
|
16
|
-
import Animations from "#animations/index";
|
|
17
|
-
import DoneIcon from "#icons/confirm/done";
|
|
16
|
+
import Animations from "#animations/index.js";
|
|
17
|
+
import DoneIcon from "#icons/confirm/done.vue";
|
|
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 "#components/BrCard";
|
|
15
|
-
import BrCardTitle from "#components/BrCardTitle";
|
|
16
|
-
import BrCardText from "#components/BrCardText";
|
|
14
|
+
import BrCard from "#components/BrCard.vue";
|
|
15
|
+
import BrCardTitle from "#components/BrCardTitle.vue";
|
|
16
|
+
import BrCardText from "#components/BrCardText.vue";
|
|
17
17
|
|
|
18
|
-
import Animations from "#animations/index";
|
|
19
|
-
import EmailIcon from "#icons/confirm/email";
|
|
18
|
+
import Animations from "#animations/index.js";
|
|
19
|
+
import EmailIcon from "#icons/confirm/email.vue";
|
|
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 "#components/BrButton";
|
|
30
|
-
import HidePasswordIcon from "#icons/password/hide";
|
|
31
|
-
import ShowPasswordIcon from "#icons/password/show";
|
|
29
|
+
import BrButton from "#components/BrButton.vue";
|
|
30
|
+
import HidePasswordIcon from "#icons/password/hide.vue";
|
|
31
|
+
import ShowPasswordIcon from "#icons/password/show.vue";
|
|
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 "#components/BrButton";
|
|
19
|
-
import EditIcon from "#icons/account/edit";
|
|
18
|
+
import BrButton from "#components/BrButton.vue";
|
|
19
|
+
import EditIcon from "#icons/account/edit.vue";
|
|
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 "#components/SeeInside";
|
|
30
|
+
import SeeInside from "#components/SeeInside.vue";
|
|
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 "#styles/helpers
|
|
64
|
+
@use "#styles/helpers" 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 "#components/BrButton";
|
|
50
|
-
import CloseIcon from "#icons/stream/close";
|
|
49
|
+
import BrButton from "#components/BrButton.vue";
|
|
50
|
+
import CloseIcon from "#icons/stream/close.vue";
|
|
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 "#styles/helpers
|
|
77
|
+
@use "#styles/helpers" 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 "#components/FluidIframe";
|
|
36
|
-
import BrAlert from "#components/BrAlert";
|
|
35
|
+
import FluidIframe from "#components/FluidIframe.vue";
|
|
36
|
+
import BrAlert from "#components/BrAlert.vue";
|
|
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 "#styles/helpers
|
|
67
|
+
@use "#styles/helpers" as *;
|
|
68
68
|
|
|
69
69
|
.brightcove {
|
|
70
70
|
border-radius: $br-border-radius-lg;
|