azion-theme 1.14.4 → 1.14.5

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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [1.14.5](https://github.com/aziontech/azion-theme/compare/v1.14.4...v1.14.5) (2025-09-15)
2
+
3
+ ### Bug Fixes
4
+
5
+ * jsonform checkbox style and flex-end warning compilation ([#57](https://github.com/aziontech/azion-theme/issues/57)) ([9e335b0](https://github.com/aziontech/azion-theme/commit/9e335b0f353272a3af37ecff2983279f84b55068))
6
+
1
7
  ## [1.14.4](https://github.com/aziontech/azion-theme/compare/v1.14.3...v1.14.4) (2025-09-12)
2
8
 
3
9
  ### Bug Fixes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "azion-theme",
3
3
  "type": "module",
4
- "version": "1.14.4",
4
+ "version": "1.14.5",
5
5
  "author": "aziontech",
6
6
  "contributors": [
7
7
  {
@@ -32,5 +32,6 @@
32
32
  @import './extended-components/treeselect';
33
33
  @import './extended-components/jsonform/_select';
34
34
  @import './extended-components/jsonform/_inputtext';
35
+ @import './extended-components/jsonform/_inputcheckbox';
35
36
  @import './extended-components/jsonform/_label';
36
37
  }
@@ -0,0 +1,41 @@
1
+ .azion-json-form {
2
+ .wrapper {
3
+ input.input[type="checkbox"] {
4
+ min-width: 20px !important;
5
+ max-width: 20px !important;
6
+ font-family: var(--font-family);
7
+ font-feature-settings: var(--font-feature-settings, normal);
8
+ font-size: $inputTextFontSize;
9
+ color: $inputTextColor;
10
+ background: $inputBg;
11
+ padding: 9px;
12
+ border: $inputBorder;
13
+ transition: $formElementTransition;
14
+ appearance: none;
15
+ border-radius: $borderRadius;
16
+ position: relative !important;
17
+
18
+ &:enabled:hover {
19
+ border-color: $inputHoverBorderColor;
20
+ }
21
+
22
+ &:enabled:focus {
23
+ @include focused-input();
24
+ }
25
+
26
+ &:checked {
27
+ background-color: $inputHoverBorderColor;
28
+
29
+ &::before {
30
+ font-family: "primeicons";
31
+ content: "\e909";
32
+ display: block;
33
+ position: absolute;
34
+ top: -1px;
35
+ left: 2px;
36
+ }
37
+ }
38
+
39
+ }
40
+ }
41
+ }
@@ -15,7 +15,7 @@
15
15
  line-height: 1.25 !important;
16
16
  font-weight: 400 !important;
17
17
  color: var(--error-color) !important;
18
- min-height: 15px !important;
18
+ min-height: 20px !important;
19
19
 
20
20
  &::first-letter {
21
21
  text-transform: uppercase;
@@ -54,7 +54,7 @@
54
54
  }
55
55
 
56
56
  .description {
57
- min-height: 15px !important;
57
+ min-height: 20px !important;
58
58
  line-height: 1.25rem !important;
59
59
  font-size: 0.75rem !important;
60
60
  font-weight: 400 !important;
@@ -126,7 +126,7 @@
126
126
  display: flex;
127
127
  gap: 0.5rem;
128
128
  align-items: center;
129
- justify-content: end;
129
+ justify-content: flex-end;
130
130
  max-width: 320px;
131
131
  line-height: 1.25rem !important;
132
132
  font-size: 0.75rem !important;
@@ -1,22 +1,4 @@
1
1
  .azion-json-form {
2
- // .wrapper:has(.select) {
3
- // min-width: 320px;
4
- // position: relative !important;
5
-
6
- // &::before {
7
- // z-index: 10;
8
- // display: block;
9
- // content: "\e930";
10
- // position: absolute;
11
- // right: 1px;
12
- // top: 1px;
13
- // color: $inputIconColor;
14
- // width: 32px;
15
- // height: 32px;
16
- // font-family: "primeicons";
17
- // }
18
- // }
19
-
20
2
  .wrapper {
21
3
  .select::picker(select) {
22
4
  background-color: #fff;
@@ -37,7 +19,6 @@
37
19
  padding: $inputPadding;
38
20
  border: $inputBorder;
39
21
  transition: $formElementTransition;
40
- // appearance: none;
41
22
  border-radius: $borderRadius;
42
23
  position: relative !important;
43
24