@pingux/astro 1.28.0 → 1.28.2-alpha.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 +12 -0
- package/lib/cjs/components/DataTable/DataTable.js +30 -26
- package/lib/cjs/index.js +1 -1
- package/lib/cjs/recipes/Slider.stories.js +73 -70
- package/lib/cjs/styles/forms/index.js +1 -1
- package/lib/cjs/styles/forms/label.js +1 -1
- package/lib/cjs/styles/forms/select.js +1 -1
- package/lib/components/DataTable/DataTable.js +30 -25
- package/lib/index.js +1 -1
- package/lib/recipes/Slider.stories.js +72 -68
- package/lib/styles/forms/index.js +1 -1
- package/lib/styles/forms/label.js +1 -1
- package/lib/styles/forms/select.js +1 -1
- package/package.json +1 -9
- package/NOTICE.html +0 -5016
@@ -59,7 +59,7 @@ label.radio = _objectSpread(_objectSpread({}, text.base), {}, {
|
|
59
59
|
cursor: 'pointer',
|
60
60
|
alignItems: 'center',
|
61
61
|
mb: 'xs'
|
62
|
-
}); // NOTE:
|
62
|
+
}); // NOTE: ThemeUI label adds 'flex' after other styles, so we have to use !important to override it
|
63
63
|
|
64
64
|
label.checkbox = _objectSpread(_objectSpread({}, text.base), {}, {
|
65
65
|
display: 'inline-flex !important',
|
@@ -37,7 +37,7 @@ select.currentValue = {
|
|
37
37
|
overflow: 'hidden',
|
38
38
|
whiteSpace: 'nowrap',
|
39
39
|
textOverflow: 'ellipsis',
|
40
|
-
//
|
40
|
+
// ThemeUI adds display: flex after other styles and ellipsis goes away
|
41
41
|
display: 'inline !important'
|
42
42
|
};
|
43
43
|
select.listBoxPopup = _objectSpread(_objectSpread({}, input), {}, {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@pingux/astro",
|
3
|
-
"version": "1.28.0",
|
3
|
+
"version": "1.28.2-alpha.0",
|
4
4
|
"description": "PingUX themeable React component library",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -66,10 +66,6 @@
|
|
66
66
|
"@react-aria/utils": "^3.12.0",
|
67
67
|
"@react-aria/virtualizer": "^3.3.2",
|
68
68
|
"@react-aria/visually-hidden": "3.2.1",
|
69
|
-
"@react-spectrum/provider": "^3.2.1",
|
70
|
-
"@react-spectrum/table": "^3.3.0",
|
71
|
-
"@react-spectrum/tooltip": "^3.2.1",
|
72
|
-
"@react-spectrum/utils": "3.6.1",
|
73
69
|
"@react-stately/collections": "~3.3.8",
|
74
70
|
"@react-stately/color": "^3.0.0-beta.2",
|
75
71
|
"@react-stately/combobox": "^3.0.0",
|
@@ -92,11 +88,9 @@
|
|
92
88
|
"@react-stately/tree": "^3.1.2",
|
93
89
|
"@react-stately/utils": "~3.4.1",
|
94
90
|
"@react-stately/virtualizer": "^3.2.1",
|
95
|
-
"@rebass/forms": "^4.0.6",
|
96
91
|
"@styled-system/prop-types": "^5.1.5",
|
97
92
|
"@styled-system/props": "^5.1.5",
|
98
93
|
"@styled-system/theme-get": "^5.1.2",
|
99
|
-
"@tippyjs/react": "4.2.0",
|
100
94
|
"chroma-js": "^2.1.0",
|
101
95
|
"classnames": "^2.2.6",
|
102
96
|
"emotion-normalize": "^11.0.1",
|
@@ -109,12 +103,10 @@
|
|
109
103
|
"react-calendar": "^3.4.0",
|
110
104
|
"react-color": "^2.19.3",
|
111
105
|
"react-dropzone": "^11.4.2",
|
112
|
-
"rebass": "^4.0.7",
|
113
106
|
"recharts": "^2.1.4",
|
114
107
|
"regenerator-runtime": "^0.13.7",
|
115
108
|
"styled-system": "^5.1.5",
|
116
109
|
"theme-ui": "^0.10.0",
|
117
|
-
"tippy.js": "6.2.7",
|
118
110
|
"uuid": "^8.3.2"
|
119
111
|
},
|
120
112
|
"devDependencies": {
|