@innovaccer/design-system 4.9.0 → 4.10.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.
- package/CHANGELOG.md +41 -0
- package/css/dist/index.css +17 -4
- package/css/dist/index.css.map +1 -1
- package/css/src/components/grid.module.css +13 -4
- package/css/src/utils/utility.css +4 -0
- package/dist/brotli/index.js +1 -1
- package/dist/brotli/index.js.br +0 -0
- package/dist/cjs/index.js +1 -1
- package/dist/core/components/atoms/statusHint/StatusHint.d.ts +1 -1
- package/dist/core/components/organisms/grid/Grid.d.ts +3 -0
- package/dist/core/components/organisms/grid/GridCell.d.ts +2 -0
- package/dist/core/components/organisms/table/Table.d.ts +1 -0
- package/dist/esm/index.js +419 -293
- package/dist/gzip/index.js +1 -1
- package/dist/gzip/index.js.gz +0 -0
- package/dist/index.js +335 -211
- package/dist/index.js.map +1 -1
- package/dist/index.umd.css +17 -4
- package/dist/index.umd.js +1 -1
- package/dist/types/tsconfig.type.tsbuildinfo +15 -13
- package/package.json +1 -1
package/dist/index.umd.css
CHANGED
|
@@ -2700,6 +2700,10 @@ body {
|
|
|
2700
2700
|
white-space: nowrap;
|
|
2701
2701
|
}
|
|
2702
2702
|
|
|
2703
|
+
.white-space-pre {
|
|
2704
|
+
white-space: pre;
|
|
2705
|
+
}
|
|
2706
|
+
|
|
2703
2707
|
.bottom-0 {
|
|
2704
2708
|
bottom: 0;
|
|
2705
2709
|
}
|
|
@@ -5092,7 +5096,7 @@ body {
|
|
|
5092
5096
|
align-items: center;
|
|
5093
5097
|
}
|
|
5094
5098
|
|
|
5095
|
-
.GridCell-
|
|
5099
|
+
.GridCell-metaSeparator {
|
|
5096
5100
|
content: '';
|
|
5097
5101
|
display: inline-flex;
|
|
5098
5102
|
align-items: center;
|
|
@@ -5100,12 +5104,21 @@ body {
|
|
|
5100
5104
|
width: var(--spacing-10);
|
|
5101
5105
|
height: var(--spacing-10);
|
|
5102
5106
|
border-radius: var(--border-radius-full);
|
|
5103
|
-
background: var(--
|
|
5107
|
+
background: var(--inverse-lightest);
|
|
5104
5108
|
margin: 0 var(--spacing-20);
|
|
5105
5109
|
}
|
|
5106
5110
|
|
|
5107
|
-
.GridCell-
|
|
5108
|
-
|
|
5111
|
+
.GridCell-mark--default {
|
|
5112
|
+
background: var(--warning-light);
|
|
5113
|
+
border-radius: var(--border-radius-05);
|
|
5114
|
+
}
|
|
5115
|
+
|
|
5116
|
+
.GridCell-mark--metaList {
|
|
5117
|
+
font-size: var(--font-size-s);
|
|
5118
|
+
line-height: var(--font-height-normal);
|
|
5119
|
+
color: var(--text-subtle);
|
|
5120
|
+
background: var(--warning-light);
|
|
5121
|
+
border-radius: var(--border-radius-05);
|
|
5109
5122
|
}
|
|
5110
5123
|
|
|
5111
5124
|
.GridCell--metaList ul li:first-child {
|