barbican-reset 3.39.0 → 3.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/BrAlert.vue +2 -2
- package/components/BrButton.vue +1 -1
- package/components/BrCard.vue +1 -1
- package/components/BrCardTearoff.vue +1 -1
- package/components/BrCollapse/Button.vue +1 -1
- package/components/BrConfirmDone.vue +5 -5
- package/components/BrConfirmEmail.vue +5 -5
- package/components/BrFormCheckbox.vue +3 -3
- package/components/BrFormCheckboxGroup.vue +1 -1
- package/components/BrFormDate.vue +1 -1
- package/components/BrFormEdit.vue +2 -2
- package/components/BrFormEmail.vue +1 -1
- package/components/BrFormInput.vue +1 -1
- package/components/BrFormPassword.vue +2 -2
- package/components/BrFormRadio.vue +3 -3
- package/components/BrFormRadioGroup.vue +2 -2
- package/components/BrFormRow.vue +2 -2
- package/components/BrFormSelect.vue +2 -2
- package/components/BrFormTel.vue +1 -1
- package/components/BrFormTextarea.vue +1 -1
- package/components/BrFormToggle.vue +1 -1
- package/components/BrFormUpdate.vue +1 -1
- package/components/BrFormVisible.vue +3 -3
- package/components/BrLink.vue +1 -1
- package/components/BrLoader.vue +1 -1
- package/components/BrOverlay.vue +3 -3
- package/components/BrQrCode.vue +1 -1
- package/icons/CityOfLondonLockup.vue +1 -1
- package/icons/index.js +16 -16
- package/package.json +1 -1
- /package/icons/{barbican.vue → Barbican.vue} +0 -0
- /package/icons/{cart.vue → Cart.vue} +0 -0
- /package/icons/{close.vue → Close.vue} +0 -0
- /package/icons/{dots.vue → Dots.vue} +0 -0
- /package/icons/confirm/{done.vue → Done.vue} +0 -0
- /package/icons/confirm/{email.vue → Email.vue} +0 -0
- /package/icons/password/{hide.vue → Hide.vue} +0 -0
- /package/icons/password/{show.vue → Show.vue} +0 -0
package/components/BrAlert.vue
CHANGED
package/components/BrButton.vue
CHANGED
package/components/BrCard.vue
CHANGED
|
@@ -10,12 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
<script setup>
|
|
12
12
|
import { onMounted } from 'vue'
|
|
13
|
-
import { animateDone } from '
|
|
13
|
+
import { animateDone } from '../animations/confirm'
|
|
14
14
|
|
|
15
|
-
import BrCard from '
|
|
16
|
-
import BrCardTitle from '
|
|
17
|
-
import BrCardText from '
|
|
18
|
-
import BrDoneIcon from '
|
|
15
|
+
import BrCard from './BrCard.vue'
|
|
16
|
+
import BrCardTitle from './BrCardTitle.vue'
|
|
17
|
+
import BrCardText from './BrCardText.vue'
|
|
18
|
+
import BrDoneIcon from '../icons/Confirm/Done.vue'
|
|
19
19
|
|
|
20
20
|
onMounted(() => animateDone())
|
|
21
21
|
</script>
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
|
|
13
13
|
<script setup>
|
|
14
14
|
import { onMounted } from 'vue'
|
|
15
|
-
import { animateEmail } from '
|
|
15
|
+
import { animateEmail } from '../animations/confirm'
|
|
16
16
|
|
|
17
|
-
import BrCard from '
|
|
18
|
-
import BrCardTitle from '
|
|
19
|
-
import BrCardText from '
|
|
20
|
-
import BrEmailIcon from '
|
|
17
|
+
import BrCard from './BrCard.vue'
|
|
18
|
+
import BrCardTitle from './BrCardTitle.vue'
|
|
19
|
+
import BrCardText from './BrCardText.vue'
|
|
20
|
+
import BrEmailIcon from '../icons/Confirm/Email.vue'
|
|
21
21
|
|
|
22
22
|
onMounted(() => animateEmail())
|
|
23
23
|
</script>
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
|
|
29
29
|
<script setup>
|
|
30
30
|
import { computed, useAttrs } from 'vue'
|
|
31
|
-
import formatKebabCase from '
|
|
32
|
-
import BrFormLabel from '
|
|
33
|
-
import BrFormInput from '
|
|
31
|
+
import formatKebabCase from '../utils/formatKebabCase'
|
|
32
|
+
import BrFormLabel from './BrFormLabel.vue'
|
|
33
|
+
import BrFormInput from './BrFormInput.vue'
|
|
34
34
|
|
|
35
35
|
/** All fallthrough attributes from the parent. */
|
|
36
36
|
const attrs = useAttrs()
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
</template>
|
|
13
13
|
|
|
14
14
|
<script>
|
|
15
|
-
import BrButton from '
|
|
16
|
-
import EditIcon from '
|
|
15
|
+
import BrButton from './BrButton.vue'
|
|
16
|
+
import EditIcon from '../icons/AccountEdit.vue'
|
|
17
17
|
|
|
18
18
|
export default {
|
|
19
19
|
props: {
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
|
|
13
13
|
<script setup>
|
|
14
14
|
import { ref, computed } from 'vue'
|
|
15
|
-
import BrFormInput from '
|
|
16
|
-
import BrFormVisible from '
|
|
15
|
+
import BrFormInput from './BrFormInput.vue'
|
|
16
|
+
import BrFormVisible from './BrFormVisible.vue'
|
|
17
17
|
|
|
18
18
|
const props = defineProps({
|
|
19
19
|
toggle: Boolean,
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
|
|
21
21
|
<script setup>
|
|
22
22
|
import { computed } from 'vue'
|
|
23
|
-
import formatKebabCase from '
|
|
23
|
+
import formatKebabCase from '../utils/formatKebabCase'
|
|
24
24
|
|
|
25
|
-
import BrFormLabel from '
|
|
26
|
-
import BrFormInput from '
|
|
25
|
+
import BrFormLabel from './BrFormLabel.vue'
|
|
26
|
+
import BrFormInput from './BrFormInput.vue'
|
|
27
27
|
|
|
28
28
|
const generateClassnames = computed(() => {
|
|
29
29
|
let classnames = ['br-form-radio']
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
</template>
|
|
18
18
|
|
|
19
19
|
<script setup>
|
|
20
|
-
import BrFormRadio from '
|
|
21
|
-
import BrWrap from '
|
|
20
|
+
import BrFormRadio from './BrFormRadio.vue'
|
|
21
|
+
import BrWrap from './BrWrap.vue'
|
|
22
22
|
|
|
23
23
|
const model = defineModel()
|
|
24
24
|
|
package/components/BrFormRow.vue
CHANGED
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
|
|
17
17
|
<script setup>
|
|
18
18
|
import { computed } from 'vue'
|
|
19
|
-
import formatKebabCase from '
|
|
20
|
-
import BrFormLabel from '
|
|
19
|
+
import formatKebabCase from '../utils/formatKebabCase'
|
|
20
|
+
import BrFormLabel from './BrFormLabel.vue'
|
|
21
21
|
|
|
22
22
|
const props = defineProps({
|
|
23
23
|
label: String,
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
</template>
|
|
20
20
|
|
|
21
21
|
<script setup>
|
|
22
|
-
import BrDropdownIcon from '
|
|
23
|
-
import constrainTabbing from '
|
|
22
|
+
import BrDropdownIcon from '../icons/Dropdown.vue'
|
|
23
|
+
import constrainTabbing from '../utils/constrainTabbing'
|
|
24
24
|
|
|
25
25
|
let listenConstrainTabbing = null
|
|
26
26
|
|
package/components/BrFormTel.vue
CHANGED
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
</template>
|
|
14
14
|
|
|
15
15
|
<script setup>
|
|
16
|
-
import BrButton from '
|
|
17
|
-
import HidePasswordIcon from '
|
|
18
|
-
import ShowPasswordIcon from '
|
|
16
|
+
import BrButton from './BrButton.vue'
|
|
17
|
+
import HidePasswordIcon from '../icons/Password/Hide.vue'
|
|
18
|
+
import ShowPasswordIcon from '../icons/Password/Show.vue'
|
|
19
19
|
|
|
20
20
|
const props = defineProps({
|
|
21
21
|
visible: Boolean,
|
package/components/BrLink.vue
CHANGED
package/components/BrLoader.vue
CHANGED
package/components/BrOverlay.vue
CHANGED
|
@@ -36,9 +36,9 @@ const props = defineProps({
|
|
|
36
36
|
/** Controls overlay visibility. */
|
|
37
37
|
show: Boolean
|
|
38
38
|
})
|
|
39
|
-
import constrainTabbing from '
|
|
40
|
-
import BrButton from '
|
|
41
|
-
import CloseIcon from '
|
|
39
|
+
import constrainTabbing from '../utils/constrainTabbing'
|
|
40
|
+
import BrButton from './BrButton.vue'
|
|
41
|
+
import CloseIcon from '../icons/Close.vue'
|
|
42
42
|
|
|
43
43
|
const emit = defineEmits(['closeOverlay'])
|
|
44
44
|
|
package/components/BrQrCode.vue
CHANGED
package/icons/index.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import BrBackArrow from '
|
|
2
|
-
import BrBarbicanLogo from '
|
|
3
|
-
import BrCartIcon from '
|
|
4
|
-
import BrCityOfLondonLockup from '
|
|
5
|
-
import BrCloseIcon from '
|
|
6
|
-
import BrInfoIcon from '
|
|
7
|
-
import BrRenewIcon from '
|
|
8
|
-
import BrDropdownIcon from '
|
|
1
|
+
import BrBackArrow from './BackArrow.vue'
|
|
2
|
+
import BrBarbicanLogo from './Barbican.vue'
|
|
3
|
+
import BrCartIcon from './Cart.vue'
|
|
4
|
+
import BrCityOfLondonLockup from './CityOfLondonLockup.vue'
|
|
5
|
+
import BrCloseIcon from './Close.vue'
|
|
6
|
+
import BrInfoIcon from './Info.vue'
|
|
7
|
+
import BrRenewIcon from './Renew.vue'
|
|
8
|
+
import BrDropdownIcon from './Dropdown.vue'
|
|
9
9
|
|
|
10
|
-
import BrAccountContactIcon from '
|
|
11
|
-
import BrAccountDetailsIcon from '
|
|
12
|
-
import BrAccountEditIcon from '
|
|
13
|
-
import BrAccountMembershipIcon from '
|
|
14
|
-
import BrAccountOrdersIcon from '
|
|
15
|
-
import BrAccountPaymentIcon from '
|
|
16
|
-
import BrAccountTicketIcon from '
|
|
17
|
-
import BrAccountPersonalIcon from '
|
|
10
|
+
import BrAccountContactIcon from './AccountContact.vue'
|
|
11
|
+
import BrAccountDetailsIcon from './AccountPerson.vue'
|
|
12
|
+
import BrAccountEditIcon from './AccountEdit.vue'
|
|
13
|
+
import BrAccountMembershipIcon from './AccountMembership.vue'
|
|
14
|
+
import BrAccountOrdersIcon from './AccountOrders.vue'
|
|
15
|
+
import BrAccountPaymentIcon from './AccountPayment.vue'
|
|
16
|
+
import BrAccountTicketIcon from './AccountTicket.vue'
|
|
17
|
+
import BrAccountPersonalIcon from './AccountPersonal.vue'
|
|
18
18
|
|
|
19
19
|
export { BrAccountContactIcon, BrAccountDetailsIcon, BrAccountEditIcon, BrAccountMembershipIcon, BrAccountOrdersIcon, BrAccountPaymentIcon, BrAccountTicketIcon, BrAccountPersonalIcon, BrBackArrow, BrBarbicanLogo, BrCartIcon, BrCityOfLondonLockup, BrCloseIcon, BrDropdownIcon, BrInfoIcon, BrRenewIcon }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "barbican-reset",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.41.0",
|
|
4
4
|
"description": "Shared design system for Barbican projects, providing SCSS utilities, animations, icons, Vue components, and JS helpers for consistent styling and behaviour.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"exports": {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|