@rio-cloud/rio-uikit 0.16.1-beta-3 → 0.16.1-beta-7
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/lib/components/applicationLayout/ApplicationLayout.js +5 -8
- package/lib/components/assetTree/AssetTree.js +7 -4
- package/lib/components/assetTree/Tree.js +153 -29
- package/lib/components/assetTree/TreeSelectAll.js +1 -1
- package/lib/components/assetTree/TreeSidebar.js +22 -10
- package/lib/components/assetTree/TreeSummary.js +11 -6
- package/lib/components/assetTree/TypeCounter.js +45 -8
- package/lib/components/datepicker/DatePicker.js +1 -2
- package/lib/components/navigation/AppNavigationBar.js +64 -0
- package/lib/components/selects/BaseDropdownMenu.js +29 -23
- package/lib/components/selects/Select.js +11 -5
- package/lib/es/AppNavigationBar.d.ts +5 -0
- package/lib/es/AppNavigationBar.js +15 -0
- package/lib/es/DeviceUtils.d.ts +2 -0
- package/lib/es/deviceUtils.js +12 -0
- package/lib/es/useResizeObserver.d.ts +4 -0
- package/lib/es/useResizeObserver.js +15 -0
- package/lib/hooks/useResizeObserver.js +54 -0
- package/lib/hooks/useWindowResize.js +8 -5
- package/lib/style/css/_exports/rio-website.less +70 -7
- package/lib/style/css/animations/_imports.less +1 -0
- package/lib/style/css/animations/pulsing.less +5 -0
- package/lib/style/css/components/ApplicationLayout.less +3 -1
- package/lib/style/css/components/AssetTree.less +1 -5
- package/lib/style/css/design/buttons.less +4 -1
- package/lib/style/css/design/rioglyph.less +1 -12
- package/lib/types.ts +17 -0
- package/lib/utils/deviceUtils.js +11 -2
- package/lib/version.json +1 -1
- package/package.json +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rio-cloud/rio-uikit",
|
|
3
|
-
"version": "0.16.1-beta-
|
|
3
|
+
"version": "0.16.1-beta-7",
|
|
4
4
|
"description": "The RIO UIKIT component library",
|
|
5
5
|
"repository": "https://collaboration.msi.audi.com/stash/projects/RIOFRONT/repos/uikit-web/browse",
|
|
6
6
|
"scripts": {
|
|
@@ -127,10 +127,11 @@
|
|
|
127
127
|
"@dnd-kit/modifiers": "5.0.0",
|
|
128
128
|
"@dnd-kit/sortable": "6.0.1",
|
|
129
129
|
"@popperjs/core": "2.11.5",
|
|
130
|
+
"@types/resize-observer-browser": "^0.1.7",
|
|
130
131
|
"classlist-polyfill": "1.2.0",
|
|
131
132
|
"classnames": "2.3.1",
|
|
132
133
|
"cssuseragent": "2.1.31",
|
|
133
|
-
"framer-motion": "
|
|
134
|
+
"framer-motion": "4.1.17",
|
|
134
135
|
"lodash": "4.17.21",
|
|
135
136
|
"moment": "2.29.3",
|
|
136
137
|
"natural-orderby": "2.0.3",
|
|
@@ -144,6 +145,7 @@
|
|
|
144
145
|
"react-notifications": "1.7.3",
|
|
145
146
|
"react-onclickoutside": "6.12.1",
|
|
146
147
|
"react-popper": "2.3.0",
|
|
148
|
+
"react-responsive": "^9.0.0-beta.8",
|
|
147
149
|
"react-transition-group": "4.4.2",
|
|
148
150
|
"recharts": "2.1.9",
|
|
149
151
|
"regenerator-runtime": "0.13.9",
|