@citizenplane/pimp 18.19.3 → 18.19.4
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/dist/components/CpAncillaryCategory.vue.d.ts.map +1 -1
- package/dist/components/CpAncillaryItem.vue.d.ts +1 -0
- package/dist/components/CpAncillaryItem.vue.d.ts.map +1 -1
- package/dist/constants/CpAncillaryCategoryTypes.d.ts +1 -0
- package/dist/constants/CpAncillaryCategoryTypes.d.ts.map +1 -1
- package/dist/pimp.es.js +1613 -1606
- package/dist/pimp.umd.js +40 -40
- package/package.json +1 -1
- package/src/assets/images/ancillary-categories/name-change.png +0 -0
- package/src/components/CpAncillaryCategory.vue +2 -0
- package/src/components/CpAncillaryItem.vue +2 -0
- package/src/constants/CpAncillaryCategoryTypes.ts +1 -0
package/package.json
CHANGED
|
Binary file
|
|
@@ -66,6 +66,7 @@ import CpTransitionExpand from '@/components/CpTransitionExpand.vue'
|
|
|
66
66
|
import BaggagesVisual from '@/assets/images/ancillary-categories/baggages.png'
|
|
67
67
|
import CarbonOffsetVisual from '@/assets/images/ancillary-categories/carbon-offset.png'
|
|
68
68
|
import InsuranceVisual from '@/assets/images/ancillary-categories/insurance.png'
|
|
69
|
+
import NameChangeVisual from '@/assets/images/ancillary-categories/name-change.png'
|
|
69
70
|
import PetsVisual from '@/assets/images/ancillary-categories/pets.png'
|
|
70
71
|
import RestrictedVisual from '@/assets/images/ancillary-categories/restricted.png'
|
|
71
72
|
import SportEquipmentsVisual from '@/assets/images/ancillary-categories/sport-equipments.png'
|
|
@@ -111,6 +112,7 @@ const categoryVisuals: Partial<Record<CpAncillaryCategoryTypes, string>> = {
|
|
|
111
112
|
[CpAncillaryCategoryTypes.BAGGAGES]: BaggagesVisual,
|
|
112
113
|
[CpAncillaryCategoryTypes.CARBON_OFFSET]: CarbonOffsetVisual,
|
|
113
114
|
[CpAncillaryCategoryTypes.INSURANCE]: InsuranceVisual,
|
|
115
|
+
[CpAncillaryCategoryTypes.NAME_CHANGE]: NameChangeVisual,
|
|
114
116
|
[CpAncillaryCategoryTypes.PETS]: PetsVisual,
|
|
115
117
|
[CpAncillaryCategoryTypes.RESTRICTED]: RestrictedVisual,
|
|
116
118
|
[CpAncillaryCategoryTypes.SPORT_EQUIPMENTS]: SportEquipmentsVisual,
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
v-model="quantity"
|
|
17
17
|
class="cpAncillaryItem__counter"
|
|
18
18
|
:decrease-label="decreaseLabel"
|
|
19
|
+
:disable-animation="disableAnimation"
|
|
19
20
|
:increase-label="increaseLabel"
|
|
20
21
|
:max="maxQuantity"
|
|
21
22
|
/>
|
|
@@ -63,6 +64,7 @@ import { CpAncillaryItemTypes } from '@/constants/CpAncillaryItemTypes'
|
|
|
63
64
|
interface Props {
|
|
64
65
|
currency?: string
|
|
65
66
|
description: string
|
|
67
|
+
disableAnimation?: boolean
|
|
66
68
|
locale?: string
|
|
67
69
|
maxQuantity?: number | null
|
|
68
70
|
maxQuantityLabel?: string
|