@sumaris-net/ngx-components 18.6.49 → 18.6.51
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/doc/changelog.md +5 -1
- package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.mjs +2 -2
- package/esm2022/src/app/shared/material/chips/material.chips.mjs +2 -2
- package/esm2022/src/app/shared/toast/toast.testing.mjs +8 -9
- package/esm2022/src/app/shared/toast/toast.testing.module.mjs +5 -4
- package/fesm2022/sumaris-net.ngx-components.mjs +11 -13
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/shared/toast/toast.testing.module.d.ts +2 -1
- package/src/assets/manifest.json +1 -1
- package/src/theme/_ngx-components.scss +1 -4
|
@@ -8703,7 +8703,7 @@ class MatAutocompleteField {
|
|
|
8703
8703
|
/* -- private method -- */
|
|
8704
8704
|
async suggest(value, filter) {
|
|
8705
8705
|
// Compute a new execution id
|
|
8706
|
-
const id = this._suggestExecutionId
|
|
8706
|
+
const id = ++this._suggestExecutionId;
|
|
8707
8707
|
// Split string value, if allow (.e.g 'AAA - Item AAA' => 'AAA')
|
|
8708
8708
|
if (!this.mobile && typeof value === 'string') {
|
|
8709
8709
|
// Split search text (and keep only the first part)
|
|
@@ -11730,7 +11730,7 @@ class MatChipsField {
|
|
|
11730
11730
|
/* -- private method -- */
|
|
11731
11731
|
async suggest(value, filter) {
|
|
11732
11732
|
// Compute a new execution id
|
|
11733
|
-
const id = this._suggestExecutionId
|
|
11733
|
+
const id = ++this._suggestExecutionId;
|
|
11734
11734
|
// Trim string value before searching
|
|
11735
11735
|
if (this.trimSearchText && typeof value === 'string') {
|
|
11736
11736
|
value = value.trim();
|
|
@@ -45256,7 +45256,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
45256
45256
|
class ToastTestingPage {
|
|
45257
45257
|
injector;
|
|
45258
45258
|
defaultOptions = {
|
|
45259
|
-
showCloseButton:
|
|
45259
|
+
showCloseButton: true,
|
|
45260
|
+
duration: 5000, // 5s
|
|
45261
|
+
message: 'This is a message text !',
|
|
45262
|
+
positionAnchor: 'header',
|
|
45260
45263
|
};
|
|
45261
45264
|
constructor(injector) {
|
|
45262
45265
|
this.injector = injector;
|
|
@@ -45264,29 +45267,24 @@ class ToastTestingPage {
|
|
|
45264
45267
|
showToast(opts) {
|
|
45265
45268
|
return Toasts.showSimple(this.injector, {
|
|
45266
45269
|
...this.defaultOptions,
|
|
45267
|
-
duration: 5000, // 5s
|
|
45268
|
-
message: 'This is a message',
|
|
45269
45270
|
...opts,
|
|
45270
45271
|
});
|
|
45271
45272
|
}
|
|
45272
45273
|
showInfo(opts) {
|
|
45273
45274
|
return this.showToast({
|
|
45274
45275
|
type: 'info',
|
|
45275
|
-
message: 'This is a info text !',
|
|
45276
45276
|
...opts,
|
|
45277
45277
|
});
|
|
45278
45278
|
}
|
|
45279
45279
|
showWarning(opts) {
|
|
45280
45280
|
return this.showToast({
|
|
45281
45281
|
type: 'warning',
|
|
45282
|
-
message: 'This is a warning text !',
|
|
45283
45282
|
...opts,
|
|
45284
45283
|
});
|
|
45285
45284
|
}
|
|
45286
45285
|
showError(opts) {
|
|
45287
45286
|
return this.showToast({
|
|
45288
45287
|
type: 'error',
|
|
45289
|
-
message: 'This is a error text !',
|
|
45290
45288
|
...opts,
|
|
45291
45289
|
});
|
|
45292
45290
|
}
|
|
@@ -45294,11 +45292,11 @@ class ToastTestingPage {
|
|
|
45294
45292
|
this.defaultOptions.showCloseButton = !this.defaultOptions.showCloseButton;
|
|
45295
45293
|
}
|
|
45296
45294
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ToastTestingPage, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
45297
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: ToastTestingPage, selector: "toast-testing", ngImport: i0, template: "<ion-toolbar color=\"primary\">\n <ion-title>Toasts</ion-title>\n</ion-toolbar>\n\n<ion-content class=\"ion-padding\">\n <p>Toast examples:</p>\n\n <ion-button (click)=\"showToast()\" color=\"dark\">default</ion-button>\n\n <ion-button (click)=\"showInfo()\" color=\"secondary\">info</ion-button>\n\n <ion-button (click)=\"showWarning()\" color=\"accent\">warning</ion-button>\n\n <ion-button (click)=\"showError()\" color=\"danger\">error</ion-button>\n\n <ion-button (click)=\"showInfo({ message: 'This is <b>HTML</b> text' })\" color=\"danger\">message with HTML</ion-button>\n <br />\n\n <ion-list>\n <ion-item>\n <ion-
|
|
45295
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: ToastTestingPage, selector: "toast-testing", ngImport: i0, template: "<ion-toolbar color=\"primary\" id=\"header\">\n <ion-title>Toasts</ion-title>\n</ion-toolbar>\n\n<ion-content class=\"ion-padding\">\n <p>Toast examples:</p>\n\n <ion-button (click)=\"showToast()\" color=\"dark\">default</ion-button>\n\n <ion-button (click)=\"showInfo()\" color=\"secondary\">info</ion-button>\n\n <ion-button (click)=\"showWarning()\" color=\"accent\">warning</ion-button>\n\n <ion-button (click)=\"showError()\" color=\"danger\">error</ion-button>\n\n <ion-button (click)=\"showInfo({ message: 'This is <b>HTML</b> text' })\" color=\"danger\">message with HTML</ion-button>\n <br />\n\n <ion-list>\n <ion-item>\n <ion-label>Message</ion-label>\n <ion-input [(ngModel)]=\"defaultOptions.message\"></ion-input>\n </ion-item>\n\n <ion-item>\n <ion-checkbox [(ngModel)]=\"defaultOptions.showCloseButton\">\n <ion-label>Close button ?</ion-label>\n </ion-checkbox>\n </ion-item>\n\n <ion-item>\n <ion-label>Duration</ion-label>\n <ion-input [(ngModel)]=\"defaultOptions.duration\"></ion-input>\n </ion-item>\n </ion-list>\n</ion-content>\n", dependencies: [{ kind: "component", type: i2$1.IonButton, selector: "ion-button", inputs: ["buttonType", "color", "disabled", "download", "expand", "fill", "form", "href", "mode", "rel", "routerAnimation", "routerDirection", "shape", "size", "strong", "target", "type"] }, { kind: "component", type: i2$1.IonCheckbox, selector: "ion-checkbox", inputs: ["alignment", "checked", "color", "disabled", "indeterminate", "justify", "labelPlacement", "legacy", "mode", "name", "value"] }, { kind: "component", type: i2$1.IonContent, selector: "ion-content", inputs: ["color", "forceOverscroll", "fullscreen", "scrollEvents", "scrollX", "scrollY"] }, { kind: "component", type: i2$1.IonInput, selector: "ion-input", inputs: ["accept", "autocapitalize", "autocomplete", "autocorrect", "autofocus", "clearInput", "clearOnEdit", "color", "counter", "counterFormatter", "debounce", "disabled", "enterkeyhint", "errorText", "fill", "helperText", "inputmode", "label", "labelPlacement", "legacy", "max", "maxlength", "min", "minlength", "mode", "multiple", "name", "pattern", "placeholder", "readonly", "required", "shape", "size", "spellcheck", "step", "type", "value"] }, { kind: "component", type: i2$1.IonItem, selector: "ion-item", inputs: ["button", "color", "counter", "counterFormatter", "detail", "detailIcon", "disabled", "download", "fill", "href", "lines", "mode", "rel", "routerAnimation", "routerDirection", "shape", "target", "type"] }, { kind: "component", type: i2$1.IonLabel, selector: "ion-label", inputs: ["color", "mode", "position"] }, { kind: "component", type: i2$1.IonList, selector: "ion-list", inputs: ["inset", "lines", "mode"] }, { kind: "component", type: i2$1.IonTitle, selector: "ion-title", inputs: ["color", "size"] }, { kind: "component", type: i2$1.IonToolbar, selector: "ion-toolbar", inputs: ["color", "mode"] }, { kind: "directive", type: i2$1.BooleanValueAccessor, selector: "ion-checkbox,ion-toggle" }, { kind: "directive", type: i2$1.TextValueAccessor, selector: "ion-input:not([type=number]),ion-textarea,ion-searchbar,ion-range" }, { kind: "directive", type: i1$3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
|
|
45298
45296
|
}
|
|
45299
45297
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ToastTestingPage, decorators: [{
|
|
45300
45298
|
type: Component,
|
|
45301
|
-
args: [{ selector: 'toast-testing', template: "<ion-toolbar color=\"primary\">\n <ion-title>Toasts</ion-title>\n</ion-toolbar>\n\n<ion-content class=\"ion-padding\">\n <p>Toast examples:</p>\n\n <ion-button (click)=\"showToast()\" color=\"dark\">default</ion-button>\n\n <ion-button (click)=\"showInfo()\" color=\"secondary\">info</ion-button>\n\n <ion-button (click)=\"showWarning()\" color=\"accent\">warning</ion-button>\n\n <ion-button (click)=\"showError()\" color=\"danger\">error</ion-button>\n\n <ion-button (click)=\"showInfo({ message: 'This is <b>HTML</b> text' })\" color=\"danger\">message with HTML</ion-button>\n <br />\n\n <ion-list>\n <ion-item>\n <ion-
|
|
45299
|
+
args: [{ selector: 'toast-testing', template: "<ion-toolbar color=\"primary\" id=\"header\">\n <ion-title>Toasts</ion-title>\n</ion-toolbar>\n\n<ion-content class=\"ion-padding\">\n <p>Toast examples:</p>\n\n <ion-button (click)=\"showToast()\" color=\"dark\">default</ion-button>\n\n <ion-button (click)=\"showInfo()\" color=\"secondary\">info</ion-button>\n\n <ion-button (click)=\"showWarning()\" color=\"accent\">warning</ion-button>\n\n <ion-button (click)=\"showError()\" color=\"danger\">error</ion-button>\n\n <ion-button (click)=\"showInfo({ message: 'This is <b>HTML</b> text' })\" color=\"danger\">message with HTML</ion-button>\n <br />\n\n <ion-list>\n <ion-item>\n <ion-label>Message</ion-label>\n <ion-input [(ngModel)]=\"defaultOptions.message\"></ion-input>\n </ion-item>\n\n <ion-item>\n <ion-checkbox [(ngModel)]=\"defaultOptions.showCloseButton\">\n <ion-label>Close button ?</ion-label>\n </ion-checkbox>\n </ion-item>\n\n <ion-item>\n <ion-label>Duration</ion-label>\n <ion-input [(ngModel)]=\"defaultOptions.duration\"></ion-input>\n </ion-item>\n </ion-list>\n</ion-content>\n" }]
|
|
45302
45300
|
}], ctorParameters: () => [{ type: i0.Injector }] });
|
|
45303
45301
|
|
|
45304
45302
|
const routes$b = [
|
|
@@ -45310,13 +45308,13 @@ const routes$b = [
|
|
|
45310
45308
|
];
|
|
45311
45309
|
class ToastTestingModule {
|
|
45312
45310
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ToastTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
45313
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: ToastTestingModule, declarations: [ToastTestingPage], imports: [CommonModule, IonicModule, i1$1.TranslateModule, i1$6.RouterModule], exports: [RouterModule, ToastTestingPage] });
|
|
45314
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ToastTestingModule, imports: [CommonModule, IonicModule, TranslateModule.forChild(), RouterModule.forChild(routes$b), RouterModule] });
|
|
45311
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: ToastTestingModule, declarations: [ToastTestingPage], imports: [CommonModule, IonicModule, i1$1.TranslateModule, i1$6.RouterModule, FormsModule], exports: [RouterModule, ToastTestingPage] });
|
|
45312
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ToastTestingModule, imports: [CommonModule, IonicModule, TranslateModule.forChild(), RouterModule.forChild(routes$b), FormsModule, RouterModule] });
|
|
45315
45313
|
}
|
|
45316
45314
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ToastTestingModule, decorators: [{
|
|
45317
45315
|
type: NgModule,
|
|
45318
45316
|
args: [{
|
|
45319
|
-
imports: [CommonModule, IonicModule, TranslateModule.forChild(), RouterModule.forChild(routes$b)],
|
|
45317
|
+
imports: [CommonModule, IonicModule, TranslateModule.forChild(), RouterModule.forChild(routes$b), FormsModule],
|
|
45320
45318
|
declarations: [ToastTestingPage],
|
|
45321
45319
|
exports: [RouterModule, ToastTestingPage],
|
|
45322
45320
|
}]
|