diff --git a/package.json b/package.json index 443e1fc..09a94e7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pojazdownik", - "version": "1.0.6", + "version": "1.0.7", "private": true, "scripts": { "serve": "vue-cli-service serve", diff --git a/src/assets/EIC.png b/src/assets/EIC.png new file mode 100644 index 0000000..22131f6 Binary files /dev/null and b/src/assets/EIC.png differ diff --git a/src/assets/IC.svg b/src/assets/IC.svg new file mode 100644 index 0000000..f5297f9 --- /dev/null +++ b/src/assets/IC.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + diff --git a/src/assets/TLK.png b/src/assets/TLK.png new file mode 100644 index 0000000..97262d3 Binary files /dev/null and b/src/assets/TLK.png differ diff --git a/src/components/InputsSection.vue b/src/components/InputsSection.vue index 7adbb54..9266619 100644 --- a/src/components/InputsSection.vue +++ b/src/components/InputsSection.vue @@ -1,4 +1,6 @@ + + @@ -40,6 +42,10 @@ --> + + REALNE ZESTAWIENIA + + Pokaż tylko pojazdy dla supporterów @@ -117,14 +123,24 @@ + + diff --git a/src/main.ts b/src/main.ts index dc9035b..3def9cb 100644 --- a/src/main.ts +++ b/src/main.ts @@ -14,6 +14,7 @@ const clickOutsideDirective: Directive = { document.addEventListener("click", el.clickOutsideEvent); }, + } diff --git a/src/store.ts b/src/store.ts index ea7bd51..e30cfed 100644 --- a/src/store.ts +++ b/src/store.ts @@ -24,6 +24,7 @@ export const Store: IStore = reactive({ swapVehicles: false, chosenStockListIndex: -1, + chosenRealStockName: null, // locoOptions: [] as ILocomotive[], // carOptions: [] as ICarWagon[], diff --git a/src/types.ts b/src/types.ts index 25c92a3..1a8f679 100644 --- a/src/types.ts +++ b/src/types.ts @@ -13,6 +13,7 @@ export interface IStore { cargoOptions: any[][]; chosenStockListIndex: number; + chosenRealStockName: string | null; swapVehicles: boolean; vehiclePreviewSrc: string;