diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0a18fc93..6b531147 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# 18.0.4(2024-11-11)
+
+### Fix
+
+- Fix ([#1449](https://github.com/JsDaddy/ngx-mask/issues/1449))
+
+
# 18.0.3(2024-11-05)
### Fix
diff --git a/package.json b/package.json
index 8a20bd64..ebfea910 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "ngx-mask",
- "version": "18.0.3",
+ "version": "18.0.4",
"description": "Awesome ngx mask",
"license": "MIT",
"engines": {
diff --git a/projects/ngx-mask-lib/package.json b/projects/ngx-mask-lib/package.json
index fcdab315..15381d26 100644
--- a/projects/ngx-mask-lib/package.json
+++ b/projects/ngx-mask-lib/package.json
@@ -1,6 +1,6 @@
{
"name": "ngx-mask",
- "version": "18.0.3",
+ "version": "18.0.4",
"description": "awesome ngx mask",
"keywords": [
"ng2-mask",
diff --git a/src/app/options/options.component.html b/src/app/options/options.component.html
index 8a920f66..3b2442bd 100644
--- a/src/app/options/options.component.html
+++ b/src/app/options/options.component.html
@@ -1,135 +1,103 @@
-
-
-
{{ input }}
+@for (tile of cardDocs(); track tile.id; let i = $index) {
+
+
+ {{ tile.header }}
+
-
+
+
+}
-
-
+
+
+
+
+
+
-
-
-
+
+
+
+
+
+
+
+
+
+ @if (ex._validation) {
+
+ }
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
diff --git a/src/app/options/options.component.scss b/src/app/options/options.component.scss
index 21412270..5c149a1a 100644
--- a/src/app/options/options.component.scss
+++ b/src/app/options/options.component.scss
@@ -1,10 +1,3 @@
:host {
@apply flex flex-col gap-4 p-4 bg-full-white box-border border-t border-t-black/10 py-5 pl-[22px] pr-4;
- input {
- @apply w-full h-[51px] placeholder:text-white/25 text-full-white py-3 px-5 outline-none bg-black border-b-2px border-b-white rounded-10px focus:border-b-yellow hover:border-b-yellow hover:bg-full-white/25 focus:bg-full-white/25;
- }
- span,
- button {
- @apply text-full-white;
- }
}
diff --git a/src/app/options/options.component.ts b/src/app/options/options.component.ts
index 05c8f58b..16d8b5b8 100644
--- a/src/app/options/options.component.ts
+++ b/src/app/options/options.component.ts
@@ -59,20 +59,4 @@ export class OptionsComponent {
this.accordionService.onChangeAccordion(this.cards());
});
}
-
- public hiddenInput = true;
- public value = '';
- public value1 = '12.10';
- public value2 = '-50.40';
-
- public changeHiddenInput() {
- this.hiddenInput = !this.hiddenInput;
- }
-
- public fill() {
- this.thousand = '.';
- }
-
- public input = '12033.30';
- public thousand = ',';
}