cax-design-system 2.2.0 → 2.3.0

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.
Files changed (36) hide show
  1. package/README.md +1 -1
  2. package/api/public_api.d.ts +1 -0
  3. package/api/themegeneratorservice.d.ts +12 -0
  4. package/esm2022/accordion/accordion.mjs +3 -3
  5. package/esm2022/api/public_api.mjs +2 -1
  6. package/esm2022/api/themegeneratorservice.mjs +109 -0
  7. package/esm2022/autocomplete/autocomplete.mjs +3 -3
  8. package/esm2022/inputnumber/inputnumber.mjs +11 -5
  9. package/esm2022/paginator/paginator.mjs +1 -1
  10. package/esm2022/splitbutton/splitbutton.mjs +2 -2
  11. package/esm2022/table/components/column-filter-form-element/column-filter-form-element.mjs +2 -2
  12. package/esm2022/toggleswitch/toggleswitch.mjs +3 -3
  13. package/fesm2022/cax-design-system-accordion.mjs +2 -2
  14. package/fesm2022/cax-design-system-accordion.mjs.map +1 -1
  15. package/fesm2022/cax-design-system-api.mjs +108 -1
  16. package/fesm2022/cax-design-system-api.mjs.map +1 -1
  17. package/fesm2022/cax-design-system-autocomplete.mjs +2 -2
  18. package/fesm2022/cax-design-system-autocomplete.mjs.map +1 -1
  19. package/fesm2022/cax-design-system-inputnumber.mjs +10 -4
  20. package/fesm2022/cax-design-system-inputnumber.mjs.map +1 -1
  21. package/fesm2022/cax-design-system-paginator.mjs +1 -1
  22. package/fesm2022/cax-design-system-paginator.mjs.map +1 -1
  23. package/fesm2022/cax-design-system-splitbutton.mjs +2 -2
  24. package/fesm2022/cax-design-system-splitbutton.mjs.map +1 -1
  25. package/fesm2022/cax-design-system-table.mjs +1 -1
  26. package/fesm2022/cax-design-system-table.mjs.map +1 -1
  27. package/fesm2022/cax-design-system-toggleswitch.mjs +2 -2
  28. package/fesm2022/cax-design-system-toggleswitch.mjs.map +1 -1
  29. package/inputnumber/inputnumber.d.ts +6 -1
  30. package/package.json +219 -219
  31. package/resources/cax.min.scss +1 -1
  32. package/resources/cax.scss +733 -339
  33. package/resources/components/accordion/accordion.scss +2 -0
  34. package/resources/components/autocomplete/autocomplete.scss +3 -7
  35. package/resources/components/inputnumber/inputnumber.scss +2 -9
  36. package/resources/components/splitbutton/splitbutton.scss +4 -2
@@ -12,6 +12,8 @@
12
12
  margin-right: 8px; /* Adjust spacing between icon and text */
13
13
  display: flex;
14
14
  align-items: center;
15
+ width: 18px;
16
+ height: 18px;
15
17
  }
16
18
 
17
19
  .cax-accordion-header-link:focus {
@@ -5,16 +5,16 @@
5
5
  }
6
6
 
7
7
  .cax-autocomplete-loader {
8
- position: relative;
9
- position: relative;
8
+ position: absolute;
10
9
  top: 50%;
11
10
  margin-top: -0.5rem;
12
- right: 20px;
11
+ right: 7px;
13
12
  }
14
13
 
15
14
  .cax-autocomplete-dd .cax-autocomplete-input {
16
15
  flex: 1 1 auto;
17
16
  width: 1%;
17
+ padding-left: 3rem;
18
18
  }
19
19
 
20
20
  .cax-autocomplete-dd .cax-autocomplete-input,
@@ -111,9 +111,5 @@
111
111
  margin-top: -0.5rem;
112
112
  cursor: pointer;
113
113
  margin-left: 9px;
114
- }
115
- .cax-autoComplete-clear{
116
- position: relative;
117
- right: 20px;
118
114
  }
119
115
  }
@@ -17,9 +17,7 @@
17
17
  }
18
18
 
19
19
  .cax-inputnumber-buttons-stacked .cax-button.cax-inputnumber-button-up {
20
- border-top-left-radius: 0;
21
- border-bottom-left-radius: 0;
22
- border-bottom-right-radius: 0;
20
+ border-radius: 0px 8px 0px 0px;
23
21
  padding: 0;
24
22
  }
25
23
 
@@ -29,9 +27,7 @@
29
27
  }
30
28
 
31
29
  .cax-inputnumber-buttons-stacked .cax-button.cax-inputnumber-button-down {
32
- border-top-left-radius: 0;
33
- border-top-right-radius: 0;
34
- border-bottom-left-radius: 0;
30
+ border-radius: 0px 0px 8px 0px;
35
31
  padding: 0;
36
32
  }
37
33
 
@@ -87,7 +83,6 @@
87
83
 
88
84
  .cax-inputnumber-input {
89
85
  flex: 1 1 auto;
90
-
91
86
  }
92
87
 
93
88
  .cax-fluid cax-inputnumber,
@@ -105,8 +100,6 @@
105
100
 
106
101
  .cax-inputnumber-clear-icon {
107
102
  position: absolute;
108
- top: 50%;
109
- margin-top: -0.5rem;
110
103
  cursor: pointer;
111
104
  }
112
105
 
@@ -22,8 +22,10 @@
22
22
  display: flex;
23
23
  align-items: center;
24
24
  justify-content: center;
25
- border-top-left-radius: 0;
26
- border-bottom-left-radius: 0;
25
+ border-top-left-radius: 0 !important;
26
+ border-top-right-radius: var(--radius-100) !important;
27
+ border-bottom-right-radius: var(--radius-100) !important;
28
+ border-bottom-left-radius: 0 !important;
27
29
  }
28
30
 
29
31
  .cax-splitbutton .cax-menu {