@melodicdev/components 1.0.2 → 1.0.4
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 +4 -4
- package/assets/melodic-components.js +2 -0
- package/assets/melodic-components.js.map +1 -1
- package/assets/melodic-components.min.js +2 -0
- package/lib/components/data-display/data-grid/data-grid.styles.d.ts.map +1 -1
- package/lib/components/data-display/data-grid/data-grid.styles.js +2 -0
- package/package.json +5 -1
|
@@ -10956,6 +10956,7 @@ const Co = () => y`
|
|
|
10956
10956
|
display: flex;
|
|
10957
10957
|
flex-direction: column;
|
|
10958
10958
|
height: 100%;
|
|
10959
|
+
min-width: 0;
|
|
10959
10960
|
font-family: var(--ml-font-sans);
|
|
10960
10961
|
}
|
|
10961
10962
|
|
|
@@ -11008,6 +11009,7 @@ const Co = () => y`
|
|
|
11008
11009
|
overflow: auto;
|
|
11009
11010
|
position: relative;
|
|
11010
11011
|
min-height: 0;
|
|
11012
|
+
min-width: 0;
|
|
11011
11013
|
}
|
|
11012
11014
|
|
|
11013
11015
|
.ml-data-grid__viewport::-webkit-scrollbar {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"data-grid.styles.d.ts","sourceRoot":"","sources":["../../../../src/components/data-display/data-grid/data-grid.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,cAAc,
|
|
1
|
+
{"version":3,"file":"data-grid.styles.d.ts","sourceRoot":"","sources":["../../../../src/components/data-display/data-grid/data-grid.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,cAAc,iDA0e1B,CAAC"}
|
|
@@ -4,6 +4,7 @@ export const dataGridStyles = () => css `
|
|
|
4
4
|
display: flex;
|
|
5
5
|
flex-direction: column;
|
|
6
6
|
height: 100%;
|
|
7
|
+
min-width: 0;
|
|
7
8
|
font-family: var(--ml-font-sans);
|
|
8
9
|
}
|
|
9
10
|
|
|
@@ -56,6 +57,7 @@ export const dataGridStyles = () => css `
|
|
|
56
57
|
overflow: auto;
|
|
57
58
|
position: relative;
|
|
58
59
|
min-height: 0;
|
|
60
|
+
min-width: 0;
|
|
59
61
|
}
|
|
60
62
|
|
|
61
63
|
.ml-data-grid__viewport::-webkit-scrollbar {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@melodicdev/components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Themeable UI component library built on the Melodic Framework",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Melodic Development",
|
|
@@ -181,6 +181,10 @@
|
|
|
181
181
|
"types": "./lib/components/forms/radio-card-group/index.d.ts",
|
|
182
182
|
"default": "./lib/components/forms/radio-card-group/index.js"
|
|
183
183
|
},
|
|
184
|
+
"./select": {
|
|
185
|
+
"types": "./lib/components/forms/select/index.d.ts",
|
|
186
|
+
"default": "./lib/components/forms/select/index.js"
|
|
187
|
+
},
|
|
184
188
|
"./sidebar": {
|
|
185
189
|
"types": "./lib/components/navigation/sidebar/index.d.ts",
|
|
186
190
|
"default": "./lib/components/navigation/sidebar/index.js"
|