mis-crystal-design-system 18.1.10-test → 18.1.10-test-2
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/esm2022/filter/filter-panel/filter-panel.component.mjs +28 -12
- package/esm2022/table/table.component.mjs +65 -25
- package/fesm2022/mis-crystal-design-system-filter.mjs +27 -11
- package/fesm2022/mis-crystal-design-system-filter.mjs.map +1 -1
- package/fesm2022/mis-crystal-design-system-table.mjs +64 -24
- package/fesm2022/mis-crystal-design-system-table.mjs.map +1 -1
- package/filter/filter-panel/filter-panel.component.d.ts +1 -0
- package/package.json +7 -7
- package/table/table.component.d.ts +13 -0
- package/button/button.directive.scss +0 -71
- package/drawer/drawer.scss +0 -20
- package/input/mis-input.component.scss +0 -195
- package/modal/modal.scss +0 -9
- package/styles/fonts/icomoon.eot +0 -0
- package/styles/fonts/icomoon.svg +0 -315
- package/styles/fonts/icomoon.ttf +0 -0
- package/styles/fonts/icomoon.woff +0 -0
- package/styles/mis-borders-backgrounds.scss +0 -764
- package/styles/mis-color-constants.scss +0 -353
- package/styles/mis-flex.scss +0 -321
- package/styles/mis-fonts.scss +0 -124
- package/styles/mis-icons.scss +0 -1054
- package/styles/mis-mixins.scss +0 -46
- package/styles/mis-old-icon-styles.scss +0 -0
- package/styles/mis-spacing-sizing.scss +0 -2590
- package/styles/mis-typography.scss +0 -462
package/styles/mis-mixins.scss
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
@mixin text-ellipsis {
|
|
3
|
-
overflow: hidden;
|
|
4
|
-
text-overflow: ellipsis;
|
|
5
|
-
white-space: nowrap;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
@mixin flexStyle(
|
|
9
|
-
$align_items: center,
|
|
10
|
-
$justify_content: center,
|
|
11
|
-
$flex-direction: row
|
|
12
|
-
) {
|
|
13
|
-
display: flex;
|
|
14
|
-
flex-direction: $flex-direction;
|
|
15
|
-
align-items: $align_items;
|
|
16
|
-
justify-content: $justify_content;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
@mixin grid-container(
|
|
20
|
-
$columns: auto,
|
|
21
|
-
$rows: auto,
|
|
22
|
-
$gap: 0,
|
|
23
|
-
$justify-items: start,
|
|
24
|
-
$align-items: start
|
|
25
|
-
) {
|
|
26
|
-
display: grid;
|
|
27
|
-
grid-template-columns: $columns;
|
|
28
|
-
grid-template-rows: $rows;
|
|
29
|
-
gap: $gap;
|
|
30
|
-
justify-items: $justify-items;
|
|
31
|
-
align-items: $align-items;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
// Usage Example for mixins
|
|
35
|
-
|
|
36
|
-
// .container {
|
|
37
|
-
// @include grid-container(
|
|
38
|
-
// 1fr 1fr 1fr, // 3 columns of equal width
|
|
39
|
-
// auto, // Rows will adjust based on content
|
|
40
|
-
// 16px, // Gap between grid items
|
|
41
|
-
// center, // Center items horizontally
|
|
42
|
-
// center // Center items vertically
|
|
43
|
-
// );
|
|
44
|
-
// }
|
|
45
|
-
|
|
46
|
-
|
|
File without changes
|