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.
- package/README.md +1 -1
- package/esm2022/dropdown/dropdown.mjs +3 -3
- package/esm2022/menu/menu.mjs +3 -3
- package/esm2022/navigation/navigation.mjs +3 -3
- package/esm2022/tableconfiguration/tableconfiguration.mjs +19 -11
- package/esm2022/toggleswitch/toggleswitch.mjs +2 -2
- package/esm2022/upload/upload.component.mjs +12 -7
- package/fesm2022/cax-design-system-dropdown.mjs +2 -2
- package/fesm2022/cax-design-system-dropdown.mjs.map +1 -1
- package/fesm2022/cax-design-system-menu.mjs +2 -2
- package/fesm2022/cax-design-system-menu.mjs.map +1 -1
- package/fesm2022/cax-design-system-navigation.mjs +2 -2
- package/fesm2022/cax-design-system-navigation.mjs.map +1 -1
- package/fesm2022/cax-design-system-tableconfiguration.mjs +18 -10
- package/fesm2022/cax-design-system-tableconfiguration.mjs.map +1 -1
- package/fesm2022/cax-design-system-toggleswitch.mjs +2 -2
- package/fesm2022/cax-design-system-toggleswitch.mjs.map +1 -1
- package/fesm2022/cax-design-system-upload.mjs +11 -6
- package/fesm2022/cax-design-system-upload.mjs.map +1 -1
- package/package.json +184 -184
- package/resources/cax.min.scss +1 -1
- package/resources/cax.scss +1 -0
- package/resources/components/colorpicker/images/color.png +0 -0
- package/resources/components/colorpicker/images/hue.png +0 -0
- package/resources/components/menu/menu.scss +1 -0
- package/resources/components/navigation/navigation.scss +1 -0
- package/resources/components/password/images/password-meter.png +0 -0
- package/resources/components/tableconfiguration/tableconfiguration.scss +10 -0
- package/resources/components/toggleswitch/toggleswitch.scss +1 -1
- package/resources/components/tree/images/line.gif +0 -0
- package/resources/images/color.png +0 -0
- package/resources/images/hue.png +0 -0
- package/resources/images/line.gif +0 -0
- package/resources/images/password-meter.png +0 -0
- package/tableconfiguration/tableconfiguration.d.ts +3 -2
package/resources/cax.scss
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -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
|
}
|
|
Binary file
|
|
Binary file
|
package/resources/images/hue.png
CHANGED
|
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
|
-
|
|
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
|
}
|