cax-design-system 2.8.1 → 2.8.3

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 (35) hide show
  1. package/README.md +1 -1
  2. package/esm2022/dropdown/dropdown.mjs +3 -3
  3. package/esm2022/menu/menu.mjs +3 -3
  4. package/esm2022/navigation/navigation.mjs +3 -3
  5. package/esm2022/tableconfiguration/tableconfiguration.mjs +19 -11
  6. package/esm2022/toggleswitch/toggleswitch.mjs +2 -2
  7. package/esm2022/upload/upload.component.mjs +12 -7
  8. package/fesm2022/cax-design-system-dropdown.mjs +2 -2
  9. package/fesm2022/cax-design-system-dropdown.mjs.map +1 -1
  10. package/fesm2022/cax-design-system-menu.mjs +2 -2
  11. package/fesm2022/cax-design-system-menu.mjs.map +1 -1
  12. package/fesm2022/cax-design-system-navigation.mjs +2 -2
  13. package/fesm2022/cax-design-system-navigation.mjs.map +1 -1
  14. package/fesm2022/cax-design-system-tableconfiguration.mjs +18 -10
  15. package/fesm2022/cax-design-system-tableconfiguration.mjs.map +1 -1
  16. package/fesm2022/cax-design-system-toggleswitch.mjs +2 -2
  17. package/fesm2022/cax-design-system-toggleswitch.mjs.map +1 -1
  18. package/fesm2022/cax-design-system-upload.mjs +11 -6
  19. package/fesm2022/cax-design-system-upload.mjs.map +1 -1
  20. package/package.json +184 -184
  21. package/resources/cax.min.scss +1 -1
  22. package/resources/cax.scss +1 -0
  23. package/resources/components/colorpicker/images/color.png +0 -0
  24. package/resources/components/colorpicker/images/hue.png +0 -0
  25. package/resources/components/menu/menu.scss +1 -0
  26. package/resources/components/navigation/navigation.scss +1 -0
  27. package/resources/components/password/images/password-meter.png +0 -0
  28. package/resources/components/tableconfiguration/tableconfiguration.scss +10 -0
  29. package/resources/components/toggleswitch/toggleswitch.scss +1 -1
  30. package/resources/components/tree/images/line.gif +0 -0
  31. package/resources/images/color.png +0 -0
  32. package/resources/images/hue.png +0 -0
  33. package/resources/images/line.gif +0 -0
  34. package/resources/images/password-meter.png +0 -0
  35. package/tableconfiguration/tableconfiguration.d.ts +3 -2
@@ -6523,6 +6523,7 @@ cax-radiobutton.ng-dirty.ng-invalid > .cax-radiobutton > .cax-radiobutton-box {
6523
6523
  font-weight: 600;
6524
6524
  color: var(--neutral-900);
6525
6525
  margin-left: 8px;
6526
+ white-space: nowrap;
6526
6527
  }
6527
6528
 
6528
6529
  .cax-nav-account-details {
@@ -22,6 +22,7 @@
22
22
  text-decoration: none;
23
23
  overflow: hidden;
24
24
  position: relative;
25
+ gap: 4px;
25
26
  }
26
27
 
27
28
  .cax-menu .cax-menuitem-text {
@@ -46,6 +46,7 @@
46
46
  span {
47
47
  font-weight: 700;
48
48
  font-size: 12px;
49
+ white-space: nowrap;
49
50
  }
50
51
  }
51
52
 
@@ -10,6 +10,12 @@
10
10
  align-items: center;
11
11
  justify-content: space-between;
12
12
  font-weight: 500;
13
+ .cax-button:focus {
14
+ outline: none !important;
15
+ }
16
+ .cax-button:hover {
17
+ background: none !important;
18
+ }
13
19
  }
14
20
  .font-configuration {
15
21
  border: 1px solid var(--neutral-100);
@@ -109,6 +115,10 @@
109
115
  color: var(--primary-color);
110
116
  background: var(--primary-25);
111
117
  }
118
+ &.disabled {
119
+ cursor: not-allowed;
120
+ opacity: 0.5;
121
+ }
112
122
  }
113
123
  }
114
124
  }
@@ -2,7 +2,7 @@
2
2
  .cax-toggleswitch-container {
3
3
  display: flex;
4
4
  align-items: center;
5
- gap: 0.5rem;
5
+ justify-content: space-between;
6
6
  }
7
7
 
8
8
  .cax-toggleswitch-container-disabled {
Binary file
Binary file
Binary file
Binary file
@@ -7,9 +7,10 @@ export declare class Tableconfiguration {
7
7
  fontValue: number;
8
8
  rowHeightChange: EventEmitter<'sm' | 'md' | 'lg' | 'xl'>;
9
9
  fontSizeChange: EventEmitter<'sm' | 'md' | 'lg' | 'xl'>;
10
+ saveDefault: EventEmitter<any>;
10
11
  updateRowHeight(size: 'sm' | 'md' | 'lg' | 'xl'): void;
11
- resetTableConfiguration(): void;
12
+ emitTableConfiguration(): void;
12
13
  onSliderChange(event: Event): void;
13
14
  static ɵfac: i0.ɵɵFactoryDeclaration<Tableconfiguration, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<Tableconfiguration, "cax-tableconfiguration", never, {}, { "rowHeightChange": "rowHeightChange"; "fontSizeChange": "fontSizeChange"; }, never, never, true, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<Tableconfiguration, "cax-tableconfiguration", never, {}, { "rowHeightChange": "rowHeightChange"; "fontSizeChange": "fontSizeChange"; "saveDefault": "saveDefault"; }, never, never, true, never>;
15
16
  }