barbican-reset 3.1.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.
Files changed (42) hide show
  1. package/animations/index.js +1 -1
  2. package/components/AccountTitle.vue +1 -1
  3. package/components/BrAlert.vue +2 -2
  4. package/components/BrAnchor.vue +1 -1
  5. package/components/BrButton.vue +2 -1
  6. package/components/BrCard.vue +1 -1
  7. package/components/BrCollapse/Button.vue +1 -1
  8. package/components/BrConfirmDone.vue +5 -5
  9. package/components/BrConfirmEmail.vue +5 -5
  10. package/components/BrContainer.vue +1 -1
  11. package/components/BrFormBlock.vue +1 -1
  12. package/components/BrFormCheckbox/Component.vue +1 -1
  13. package/components/BrFormCheckboxGroup/Component.vue +1 -1
  14. package/components/BrFormGroup/Component.vue +1 -1
  15. package/components/BrFormInput/Component.vue +1 -1
  16. package/components/BrFormPassword.vue +3 -3
  17. package/components/BrFormRow.vue +2 -2
  18. package/components/BrFormUpdate.vue +1 -1
  19. package/components/BrLoader.vue +1 -1
  20. package/components/EventSummary.vue +2 -2
  21. package/components/FluidIframe.vue +1 -1
  22. package/components/SeeInside.vue +3 -3
  23. package/components/VideoContent.vue +3 -3
  24. package/css/index.css +29 -29
  25. package/icons/account/index.js +7 -7
  26. package/icons/city_of_london_lockup.vue +1 -1
  27. package/icons/confirm/index.js +3 -6
  28. package/icons/index.js +9 -9
  29. package/icons/password/index.js +3 -3
  30. package/icons/power/index.js +4 -8
  31. package/icons/snippets/index.js +5 -10
  32. package/icons/stream/index.js +7 -7
  33. package/index.js +34 -34
  34. package/package.json +20 -3
  35. package/patterns/scss/styles.scss +1 -1
  36. package/patterns/static/styles.css +1 -1
  37. package/scss/_helpers.scss +4 -0
  38. package/scss/helpers/mixins/_br-alert.scss +1 -1
  39. package/scss/helpers/mixins/_breakpoints.scss +0 -21
  40. package/scss/index.scss +1 -1
  41. package/components/BrButton/components.js +0 -4
  42. package/scss/helpers/index.scss +0 -4
@@ -1,4 +1,4 @@
1
- import { animateEmail, animateDone } from './confirm'
1
+ import { animateEmail, animateDone } from "#animations/confirm.js";
2
2
 
3
3
  export default {
4
4
  methods: {
@@ -21,7 +21,7 @@ export default {
21
21
  </script>
22
22
 
23
23
  <style lang="scss" module>
24
- @use "../scss/helpers/index.scss" as *;
24
+ @use "#styles/helpers" as *;
25
25
 
26
26
  @mixin title {
27
27
  margin-bottom: 1.25rem;
@@ -18,8 +18,8 @@
18
18
  </template>
19
19
 
20
20
  <script>
21
- import CloseIcon from "../icons/stream/close.vue";
22
- import BrButton from "./BrButton.vue";
21
+ import CloseIcon from "#icons/stream/close.vue";
22
+ import BrButton from "#components/BrButton.vue";
23
23
 
24
24
  export default {
25
25
  components: {
@@ -11,7 +11,7 @@
11
11
  </template>
12
12
 
13
13
  <script>
14
- import { DotTyping } from "./BrButton/components";
14
+ import DotTyping from "#components/BrButton/dot_typing.vue";
15
15
 
16
16
  export default {
17
17
  data() {
@@ -53,7 +53,8 @@
53
53
  </template>
54
54
 
55
55
  <script>
56
- import { RemoveTicket, DotTyping } from "./BrButton/components";
56
+ import RemoveTicket from "#components/BrButton/remove_ticket.vue";
57
+ import DotTyping from "#components/BrButton/dot_typing.vue";
57
58
 
58
59
  export default {
59
60
  emits: ["click"],
@@ -15,7 +15,7 @@
15
15
  </template>
16
16
 
17
17
  <script>
18
- import BrCardBody from "./BrCardBody.vue";
18
+ import BrCardBody from "#components/BrCardBody.vue";
19
19
 
20
20
  export default {
21
21
  components: { BrCardBody },
@@ -10,7 +10,7 @@
10
10
  </template>
11
11
 
12
12
  <script>
13
- import BrButton from "../BrButton.vue";
13
+ import BrButton from "#components/BrButton.vue";
14
14
 
15
15
  export default {
16
16
  components: {
@@ -9,12 +9,12 @@
9
9
  </template>
10
10
 
11
11
  <script>
12
- import BrCard from "./BrCard.vue";
13
- import BrCardTitle from "./BrCardTitle.vue";
14
- import BrCardText from "./BrCardText.vue";
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 "barbican-reset/animations";
17
- import DoneIcon from "../icons/confirm/done.vue";
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 "./BrCard.vue";
15
- import BrCardTitle from "./BrCardTitle.vue";
16
- import BrCardText from "./BrCardText.vue";
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 "barbican-reset/animations";
19
- import EmailIcon from "../icons/confirm/email.vue";
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],
@@ -64,7 +64,7 @@ export default {
64
64
  </script>
65
65
 
66
66
  <style lang="scss" module>
67
- @use "../scss/helpers/index.scss" as *;
67
+ @use "#styles/helpers" as *;
68
68
 
69
69
  .outer {
70
70
  padding-right: 5%;
@@ -5,7 +5,7 @@
5
5
  </template>
6
6
 
7
7
  <style lang="scss" module>
8
- @use "../scss/helpers/index.scss" as *;
8
+ @use "#styles/helpers" as *;
9
9
 
10
10
  .container {
11
11
  padding: 0.875rem 0.75rem 0.625rem 0.75rem;
@@ -18,7 +18,7 @@
18
18
  </template>
19
19
 
20
20
  <script>
21
- import mixins from "../../mixins/inputs";
21
+ import mixins from "#mixins/inputs.js";
22
22
 
23
23
  export default {
24
24
  inheritAttrs: false, // Allow us to put attributes on the input.
@@ -18,7 +18,7 @@
18
18
  </template>
19
19
 
20
20
  <script>
21
- import BrFormCheckbox from "../BrFormCheckbox/Component.vue";
21
+ import BrFormCheckbox from "#components/BrFormCheckbox/Component.vue";
22
22
 
23
23
  export default {
24
24
  props: ["modelValue", "options", "name", "id"],
@@ -6,7 +6,7 @@
6
6
  </template>
7
7
 
8
8
  <script>
9
- import mixins from "../../mixins/inputs";
9
+ import mixins from "#mixins/inputs.js";
10
10
 
11
11
  export default {
12
12
  props: ["label", "id"],
@@ -16,7 +16,7 @@
16
16
  </template>
17
17
 
18
18
  <script>
19
- import mixins from "../../mixins/inputs";
19
+ import mixins from "#mixins/inputs.js";
20
20
 
21
21
  export default {
22
22
  inheritAttrs: false, // Allow us to put attributes on the input.
@@ -26,9 +26,9 @@
26
26
  </template>
27
27
 
28
28
  <script>
29
- import BrButton from "./BrButton.vue";
30
- import HidePasswordIcon from "../icons/password/hide.vue";
31
- import ShowPasswordIcon from "../icons/password/show.vue";
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.
@@ -15,8 +15,8 @@
15
15
  </template>
16
16
 
17
17
  <script>
18
- import BrButton from "./BrButton.vue";
19
- import EditIcon from "../icons/account/edit.vue";
18
+ import BrButton from "#components/BrButton.vue";
19
+ import EditIcon from "#icons/account/edit.vue";
20
20
 
21
21
  export default {
22
22
  components: {
@@ -8,7 +8,7 @@
8
8
  </template>
9
9
 
10
10
  <script>
11
- import BrButton from "./BrButton.vue";
11
+ import BrButton from "#components/BrButton.vue";
12
12
 
13
13
  export default {
14
14
  components: {
@@ -12,7 +12,7 @@
12
12
  </template>
13
13
 
14
14
  <script>
15
- import BrCard from "./BrCard.vue";
15
+ import BrCard from "#components/BrCard.vue";
16
16
 
17
17
  export default {
18
18
  components: {
@@ -27,7 +27,7 @@
27
27
  </template>
28
28
 
29
29
  <script>
30
- import SeeInside from "./SeeInside.vue";
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 "../scss/helpers/index.scss" as *;
64
+ @use "#styles/helpers" as *;
65
65
 
66
66
  @mixin title {
67
67
  letter-spacing: $headings-letter-spacing;
@@ -23,7 +23,7 @@ export default {
23
23
  </script>
24
24
 
25
25
  <style lang="scss" module>
26
- @import "../scss/helpers";
26
+ @use "#styles/helpers" as *;
27
27
 
28
28
  .component {
29
29
  border-radius: $br-border-radius-lg;
@@ -46,8 +46,8 @@
46
46
  </template>
47
47
 
48
48
  <script>
49
- import BrButton from "./BrButton.vue";
50
- import CloseIcon from "../icons/stream/close.vue";
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 "../scss/helpers/index.scss" as *;
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 "./FluidIframe.vue";
36
- import BrAlert from "./BrAlert.vue";
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 "../scss/helpers/index.scss" as *;
67
+ @use "#styles/helpers" as *;
68
68
 
69
69
  .brightcove {
70
70
  border-radius: $br-border-radius-lg;