@webilix/ngx-form-m3 0.0.3 → 0.0.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.
@@ -0,0 +1,60 @@
1
+ /* COLUMN AND SECTION HEADER */
2
+ .ngx-form-m3-header {
3
+ font-size: 15px;
4
+ background-color: var(--mdc-filled-text-field-container-color);
5
+ border-width: 0;
6
+ border-radius: 0;
7
+ border-right: 2px solid var(--secondary-fixed);
8
+ color: var(--secondary);
9
+ padding: 1rem;
10
+ }
11
+
12
+ /* FORM BUTOTNS */
13
+ .ngx-form-m3-form-buttons {
14
+ display: flex;
15
+ align-items: center;
16
+ justify-content: flex-end;
17
+ column-gap: 1rem;
18
+
19
+ margin-top: 1rem;
20
+ }
21
+ .ngx-form-m3-form-buttons.mobile-view {
22
+ button[type='submit'] {
23
+ flex: 1;
24
+ }
25
+ }
26
+
27
+ /* ENGLISH VALUES */
28
+ .ngx-form-m3-en {
29
+ direction: ltr;
30
+ font-family: Roboto, 'Helvetica Neue', sans-serif !important;
31
+ }
32
+
33
+ /* INPUT SUFFIX */
34
+ .ngx-form-m3-input-suffix {
35
+ display: inline-flex;
36
+
37
+ mat-icon {
38
+ padding-right: 0.5rem;
39
+ }
40
+ }
41
+ .ngx-form-m3-input-suffix.click {
42
+ mat-icon {
43
+ cursor: pointer;
44
+ }
45
+ }
46
+
47
+ /* INPUT DESCRIPTION */
48
+ .ngx-form-m3-input-description {
49
+ font-size: 12px;
50
+ line-height: 18px;
51
+ color: var(--outline);
52
+ text-align: justify;
53
+ margin-top: 0.5rem;
54
+ }
55
+
56
+ /* DISABLED INPUTS */
57
+ .ngx-form-m3-disabled-input {
58
+ opacity: 0.4;
59
+ cursor: default;
60
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webilix/ngx-form-m3",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "author": "Ali Amirnezhad",
5
5
  "description": "Persian form library for Angular and Material 3",
6
6
  "repository": {
@@ -20,12 +20,12 @@
20
20
  },
21
21
  "homepage": "https://github.com/webilix/ngx-form-m3#readme",
22
22
  "peerDependencies": {
23
- "@angular/common": ">=19.0.0",
24
- "@angular/core": ">=19.0.0",
25
- "@angular/forms": ">=19.0.0",
26
- "@angular/material": ">=19.0.1",
23
+ "@angular/common": ">=19.0.4",
24
+ "@angular/core": ">=19.0.4",
25
+ "@angular/forms": ">=19.0.4",
26
+ "@angular/material": ">=19.0.3",
27
27
  "@webilix/helper-library": ">=6.0.2",
28
- "ngx-mask": ">=19.0.1"
28
+ "ngx-mask": ">=19.0.4"
29
29
  },
30
30
  "dependencies": {
31
31
  "tslib": "^2.3.0"