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,10 +1,10 @@
1
- import PersonalIcon from "./personal.vue";
2
- import MembershipIcon from "./membership.vue";
3
- import VideoIcon from "./video.vue";
4
- import PaymentIcon from "./payment.vue";
5
- import OrdersIcon from "./orders.vue";
6
- import SupportIcon from "./support.vue";
7
- import EditIcon from "./edit.vue";
1
+ import PersonalIcon from "#icons/account/personal.vue";
2
+ import MembershipIcon from "#icons/account/membership.vue";
3
+ import VideoIcon from "#icons/account/video.vue";
4
+ import PaymentIcon from "#icons/account/payment.vue";
5
+ import OrdersIcon from "#icons/account/orders.vue";
6
+ import SupportIcon from "#icons/account/support.vue";
7
+ import EditIcon from "#icons/account/edit.vue";
8
8
 
9
9
  export {
10
10
  PersonalIcon,
@@ -13,7 +13,7 @@
13
13
  </template>
14
14
 
15
15
  <script>
16
- import CityOfLondonLogo from "./city_of_london.vue";
16
+ import CityOfLondonLogo from "#icons/city_of_london.vue";
17
17
 
18
18
  export default {
19
19
  components: {
@@ -1,7 +1,4 @@
1
- import EmailIcon from './email.vue'
2
- import DoneIcon from './done.vue'
1
+ import EmailIcon from "#icons/confirm/email.vue";
2
+ import DoneIcon from "#icons/confirm/done.vue";
3
3
 
4
- export {
5
- EmailIcon,
6
- DoneIcon
7
- }
4
+ export { EmailIcon, DoneIcon };
package/icons/index.js CHANGED
@@ -1,12 +1,12 @@
1
- import ArrowBack from "./arrow_back.vue";
2
- import ArrowIcon from "./arrow.vue";
3
- import ArrowForward from "./arrow_forward.vue";
4
- import BackArrow from "./back_arrow.vue";
5
- import BarbicanLogo from "./barbican.vue";
6
- import CartIcon from "./cart.vue";
7
- import CityOfLondonLogo from "./city_of_london.vue";
8
- import CityOfLondonLockup from "./city_of_london_lockup.vue";
9
- import InformationIcon from "./information.vue";
1
+ import ArrowBack from "#icons/arrow_back.vue";
2
+ import ArrowIcon from "#icons/arrow.vue";
3
+ import ArrowForward from "#icons/arrow_forward.vue";
4
+ import BackArrow from "#icons/back_arrow.vue";
5
+ import BarbicanLogo from "#icons/barbican.vue";
6
+ import CartIcon from "#icons/cart.vue";
7
+ import CityOfLondonLogo from "#icons/city_of_london.vue";
8
+ import CityOfLondonLockup from "#icons/city_of_london_lockup.vue";
9
+ import InformationIcon from "#icons/information.vue";
10
10
 
11
11
  export {
12
12
  ArrowBack,
@@ -1,4 +1,4 @@
1
- import HidePasswordIcon from './hide'
2
- import ShowPasswordIcon from './show'
1
+ import HidePasswordIcon from "#icons/password/hide.vue";
2
+ import ShowPasswordIcon from "#icons/password/show.vue";
3
3
 
4
- export { HidePasswordIcon, ShowPasswordIcon }
4
+ export { HidePasswordIcon, ShowPasswordIcon };
@@ -1,9 +1,5 @@
1
- import AlleyneIcon from './alleyne'
2
- import BanffIcon from './banff'
3
- import CouncilIcon from './council'
1
+ import AlleyneIcon from "#icons/power/alleyne.vue";
2
+ import BanffIcon from "#icons/power/banff.vue";
3
+ import CouncilIcon from "#icons/power/council.vue";
4
4
 
5
- export {
6
- AlleyneIcon,
7
- BanffIcon,
8
- CouncilIcon
9
- }
5
+ export { AlleyneIcon, BanffIcon, CouncilIcon };
@@ -1,11 +1,6 @@
1
- import BarbicanIcon from './barbican'
2
- import ContributorIcon from './contributor'
3
- import OtherIcon from './other'
4
- import PinIcon from './pin'
1
+ import BarbicanIcon from "#icons/snippets/barbican.vue";
2
+ import ContributorIcon from "#icons/snippets/contributor.vue";
3
+ import OtherIcon from "#icons/snippets/other.vue";
4
+ import PinIcon from "#icons/snippets/pin.vue";
5
5
 
6
- export {
7
- BarbicanIcon,
8
- ContributorIcon,
9
- OtherIcon,
10
- PinIcon
11
- }
6
+ export { BarbicanIcon, ContributorIcon, OtherIcon, PinIcon };
@@ -1,10 +1,10 @@
1
- import AirplayIcon from "./airplay.vue";
2
- import CastIcon from "./cast.vue";
3
- import ChatIcon from "./chat.vue";
4
- import CogIcon from "./cog.vue";
5
- import VolumeIcon from "./volume.vue";
6
- import LiveIcon from "./live.vue";
7
- import CloseIcon from "./close.vue";
1
+ import AirplayIcon from "#icons/stream/airplay.vue";
2
+ import CastIcon from "#icons/stream/cast.vue";
3
+ import ChatIcon from "#icons/stream/chat.vue";
4
+ import CogIcon from "#icons/stream/cog.vue";
5
+ import VolumeIcon from "#icons/stream/volume.vue";
6
+ import LiveIcon from "#icons/stream/live.vue";
7
+ import CloseIcon from "#icons/stream/close.vue";
8
8
 
9
9
  export {
10
10
  AirplayIcon,
package/index.js CHANGED
@@ -1,45 +1,45 @@
1
- import BrAlert from "./components/BrAlert.vue";
2
- import BrAnchor from "./components/BrAnchor.vue";
3
- import BrButton from "./components/BrButton.vue";
1
+ import BrAlert from "#components/BrAlert.vue";
2
+ import BrAnchor from "#components/BrAnchor.vue";
3
+ import BrButton from "#components/BrButton.vue";
4
4
 
5
- import BrCard from "./components/BrCard.vue";
6
- import BrCardBody from "./components/BrCardBody.vue";
7
- import BrCardText from "./components/BrCardText.vue";
8
- import BrCardTitle from "./components/BrCardTitle.vue";
9
- import BrCardSubTitle from "./components/BrCardSubTitle.vue";
5
+ import BrCard from "#components/BrCard.vue";
6
+ import BrCardBody from "#components/BrCardBody.vue";
7
+ import BrCardText from "#components/BrCardText.vue";
8
+ import BrCardTitle from "#components/BrCardTitle.vue";
9
+ import BrCardSubTitle from "#components/BrCardSubTitle.vue";
10
10
 
11
- import BrCollapseButton from "./components/BrCollapse/Button.vue";
12
- import BrCollapseContent from "./components/BrCollapse/Content.vue";
11
+ import BrCollapseButton from "#components/BrCollapse/Button.vue";
12
+ import BrCollapseContent from "#components/BrCollapse/Content.vue";
13
13
 
14
- import BrConfirmDone from "./components/BrConfirmDone.vue";
15
- import BrConfirmEmail from "./components/BrConfirmEmail.vue";
14
+ import BrConfirmDone from "#components/BrConfirmDone.vue";
15
+ import BrConfirmEmail from "#components/BrConfirmEmail.vue";
16
16
 
17
- import BrContainer from "./components/BrContainer.vue";
17
+ import BrContainer from "#components/BrContainer.vue";
18
18
 
19
- import BrFooterLower from "./components/BrFooterLower.vue";
20
- import BrFooterUpper from "./components/BrFooterUpper.vue";
19
+ import BrFooterLower from "#components/BrFooterLower.vue";
20
+ import BrFooterUpper from "#components/BrFooterUpper.vue";
21
21
 
22
- import BrFormBlock from "./components/BrFormBlock.vue";
23
- import BrFormCheckbox from "./components/BrFormCheckbox/Component.vue";
24
- import BrFormCheckboxGroup from "./components/BrFormCheckboxGroup/Component.vue";
25
- import BrFormGroup from "./components/BrFormGroup/Component.vue";
26
- import BrFormInput from "./components/BrFormInput/Component.vue";
27
- import BrFormPassword from "./components/BrFormPassword.vue";
28
- import BrFormRadio from "./components/BrFormRadio/Component.vue";
29
- import BrFormRadioGroup from "./components/BrFormRadioGroup/Component.vue";
30
- import BrFormRow from "./components/BrFormRow.vue";
31
- import BrFormTextarea from "./components/BrFormTextarea/Component.vue";
32
- import BrFormUpdate from "./components/BrFormUpdate.vue";
22
+ import BrFormBlock from "#components/BrFormBlock.vue";
23
+ import BrFormCheckbox from "#components/BrFormCheckbox/Component.vue";
24
+ import BrFormCheckboxGroup from "#components/BrFormCheckboxGroup/Component.vue";
25
+ import BrFormGroup from "#components/BrFormGroup/Component.vue";
26
+ import BrFormInput from "#components/BrFormInput/Component.vue";
27
+ import BrFormPassword from "#components/BrFormPassword.vue";
28
+ import BrFormRadio from "#components/BrFormRadio/Component.vue";
29
+ import BrFormRadioGroup from "#components/BrFormRadioGroup/Component.vue";
30
+ import BrFormRow from "#components/BrFormRow.vue";
31
+ import BrFormTextarea from "#components/BrFormTextarea/Component.vue";
32
+ import BrFormUpdate from "#components/BrFormUpdate.vue";
33
33
 
34
- import BrLoader from "./components/BrLoader.vue";
35
- import BrSkiplink from "./components/BrSkiplink.vue";
36
- import BrWrap from "./components/BrWrap.vue";
34
+ import BrLoader from "#components/BrLoader.vue";
35
+ import BrSkiplink from "#components/BrSkiplink.vue";
36
+ import BrWrap from "#components/BrWrap.vue";
37
37
 
38
- import AccountTitle from "./components/AccountTitle.vue";
39
- import EventSummary from "./components/EventSummary.vue";
40
- import FluidIframe from "./components/FluidIframe.vue";
41
- import SeeInside from "./components/SeeInside.vue";
42
- import VideoContent from "./components/VideoContent.vue";
38
+ import AccountTitle from "#components/AccountTitle.vue";
39
+ import EventSummary from "#components/EventSummary.vue";
40
+ import FluidIframe from "#components/FluidIframe.vue";
41
+ import SeeInside from "#components/SeeInside.vue";
42
+ import VideoContent from "#components/VideoContent.vue";
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/*"
92
+ ],
93
+ "#components/*": [
94
+ "./components/*"
95
+ ],
96
+ "#icons/*": [
97
+ "./icons/*"
98
+ ],
99
+ "#mixins/*": [
100
+ "./mixins/*"
101
+ ],
102
+ "#styles/*": [
103
+ "./scss/*"
104
+ ]
105
+ },
89
106
  "exports": {
90
107
  ".": "./index.js",
91
108
  "./animations": "./animations/index.js",
@@ -96,9 +113,9 @@
96
113
  "./icons/confirm": "./icons/confirm/index.js",
97
114
  "./icons/stream": "./icons/stream/index.js",
98
115
  "./scss": "./scss/index.scss",
99
- "./scss/helpers": "./scss/helpers/index.scss"
116
+ "./scss/helpers": "./scss/_helpers.scss"
100
117
  },
101
- "main": "./index.js",
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.1.0"
132
+ "version": "3.3.0"
116
133
  }
@@ -1,4 +1,4 @@
1
- @import "../../scss/helpers/index";
1
+ @import "../../scss/helpers";
2
2
 
3
3
  @import "../../scss/br-alert";
4
4
  @import "../../scss/br-button";
@@ -1,4 +1,4 @@
1
- @media only screen and (max-width: 99px) {
1
+ @media only screen and (max-width: 575px) {
2
2
  .br-alert {
3
3
  font-size: 0.875rem;
4
4
  }
@@ -0,0 +1,4 @@
1
+ // paths more explicit for gulp-sass
2
+ @import "helpers/functions/index.scss";
3
+ @import "helpers/variables/index.scss";
4
+ @import "helpers/mixins/index.scss";
@@ -82,7 +82,7 @@
82
82
  }
83
83
 
84
84
  @mixin br-alert--setup {
85
- @include x-small-down {
85
+ @include small-down {
86
86
  font-size: $font-size-sm;
87
87
  }
88
88
 
@@ -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
package/scss/index.scss CHANGED
@@ -1,4 +1,4 @@
1
- @import "helpers/index";
1
+ @import "helpers";
2
2
 
3
3
  @import "app";
4
4
  @import "city-of-london";
@@ -1,4 +0,0 @@
1
- import RemoveTicket from "./remove_ticket.vue";
2
- import DotTyping from "./dot_typing.vue";
3
-
4
- export { RemoveTicket, DotTyping };
@@ -1,4 +0,0 @@
1
- // paths more explicit for gulp-sass
2
- @import "functions/index";
3
- @import "variables/index";
4
- @import "mixins/index";