mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-21 22:24:59 +00:00
Compare commits
3 Commits
2.16.0
...
fix-compil
Author | SHA1 | Date | |
---|---|---|---|
88c6e0e0d3
|
|||
f02c5bca13
|
|||
0d56828ebd
|
3
.changes/v2.16.1.md
Normal file
3
.changes/v2.16.1.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
## v2.16.1 - 2024-02-09
|
||||||
|
### Fixed
|
||||||
|
* Force bootstrap version to avoid error in builds with newer version
|
@@ -6,6 +6,10 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
|||||||
and is generated by [Changie](https://github.com/miniscruff/changie).
|
and is generated by [Changie](https://github.com/miniscruff/changie).
|
||||||
|
|
||||||
|
|
||||||
|
## v2.16.1 - 2024-02-09
|
||||||
|
### Fixed
|
||||||
|
* Force bootstrap version to avoid error in builds with newer version
|
||||||
|
|
||||||
## v2.16.0 - 2024-02-08
|
## v2.16.0 - 2024-02-08
|
||||||
### Feature
|
### Feature
|
||||||
* ([#231](https://gitlab.com/Chill-Projet/chill-bundles/-/issues/231)) Create new filter for persons having a participation in an accompanying period during a certain time span
|
* ([#231](https://gitlab.com/Chill-Projet/chill-bundles/-/issues/231)) Create new filter for persons having a participation in an accompanying period during a certain time span
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
"@symfony/webpack-encore": "^4.1.0",
|
"@symfony/webpack-encore": "^4.1.0",
|
||||||
"@tsconfig/node14": "^1.0.1",
|
"@tsconfig/node14": "^1.0.1",
|
||||||
"bindings": "^1.5.0",
|
"bindings": "^1.5.0",
|
||||||
"bootstrap": "^5.0.1",
|
"bootstrap": "5.2.3",
|
||||||
"chokidar": "^3.5.1",
|
"chokidar": "^3.5.1",
|
||||||
"fork-awesome": "^1.1.7",
|
"fork-awesome": "^1.1.7",
|
||||||
"jquery": "^3.6.0",
|
"jquery": "^3.6.0",
|
||||||
|
@@ -2,14 +2,14 @@ import AddressDetailsButton from "../../vuejs/_components/AddressDetails/Address
|
|||||||
import {createApp} from "vue";
|
import {createApp} from "vue";
|
||||||
import {createI18n} from "vue-i18n";
|
import {createI18n} from "vue-i18n";
|
||||||
import {_createI18n} from "../../vuejs/_js/i18n";
|
import {_createI18n} from "../../vuejs/_js/i18n";
|
||||||
import {Address} from "../../types";
|
import {Address, AddressRefStatus} from "../../types";
|
||||||
|
|
||||||
const i18n = _createI18n({});
|
const i18n = _createI18n({});
|
||||||
|
|
||||||
document.querySelectorAll<HTMLSpanElement>('span[data-address-details]').forEach((el) => {
|
document.querySelectorAll<HTMLSpanElement>('span[data-address-details]').forEach((el) => {
|
||||||
const dataset = el.dataset as {
|
const dataset = el.dataset as {
|
||||||
addressId: string,
|
addressId: string,
|
||||||
addressRefStatus: string,
|
addressRefStatus: AddressRefStatus,
|
||||||
};
|
};
|
||||||
|
|
||||||
const app = createApp({
|
const app = createApp({
|
||||||
|
@@ -15,7 +15,7 @@ import AddressModal from "./AddressModal.vue";
|
|||||||
|
|
||||||
export interface AddressModalContentProps {
|
export interface AddressModalContentProps {
|
||||||
address_id: number;
|
address_id: number;
|
||||||
address_ref_status: AddressRefStatus | null;
|
address_ref_status: AddressRefStatus;
|
||||||
}
|
}
|
||||||
|
|
||||||
const data = reactive<{
|
const data = reactive<{
|
||||||
|
Reference in New Issue
Block a user