@rio-cloud/rio-uikit 0.16.0-beta-3 → 0.16.1-beta-1
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/filepicker/FilePicker.js +1 -1
- package/lib/components/table/TableSettingsColumnButtons.js +7 -6
- package/lib/components/table/TableSettingsColumnDetails.js +58 -103
- package/lib/components/table/TableSettingsDialog.js +26 -32
- package/lib/components/table/TableSettingsDialogFooter.js +15 -13
- package/lib/components/table/TableSettingsListContainer.js +55 -20
- package/lib/components/table/TableSettingsListItem.js +66 -27
- package/lib/components/table/TableViewToggles.js +98 -104
- package/lib/components/table/tableSettingsPropTypes.js +18 -0
- package/lib/style/css/_exports/rio-buyButton.less +1 -1
- package/lib/style/css/_exports/rio-uikit-core.less +5 -1
- package/lib/style/css/_exports/rio-website.less +1 -2
- package/lib/style/css/_exports/vw-uikit.less +1 -1
- package/lib/style/css/components/ApplicationHeader.less +1 -1
- package/lib/style/css/components/AssetTree.less +2 -2
- package/lib/style/css/components/Dialog.less +13 -11
- package/lib/style/css/components/Dropdown.less +0 -1
- package/lib/style/css/components/Select.less +1 -0
- package/lib/style/css/components/TableToolbar.less +1 -1
- package/lib/style/css/components/Tooltip.less +0 -39
- package/lib/style/css/design/list-group.less +7 -2
- package/lib/style/css/design/responsive/_imports.less +0 -1
- package/lib/style/css/design/responsive/flexgrid.less +14 -14
- package/lib/style/css/design/responsive/position.less +9 -8
- package/lib/style/css/design/responsive/sizing.less +0 -19
- package/lib/style/css/design/sizing.less +18 -0
- package/lib/style/css/design/visibility.less +186 -0
- package/lib/style/css/filter/_imports.less +1 -0
- package/lib/style/css/filter/blur.less +17 -0
- package/lib/style/fonts/rioglyph/rioglyph.less +11 -1
- package/lib/style/fonts/rioglyph/rioglyph.svg +120 -102
- package/lib/style/fonts/rioglyph/rioglyph.ttf +0 -0
- package/lib/style/fonts/rioglyph/rioglyph.woff +0 -0
- package/lib/types.ts +10 -6
- package/lib/version.json +1 -1
- package/package.json +8 -6
|
Binary file
|
|
Binary file
|
package/lib/types.ts
CHANGED
|
@@ -1778,20 +1778,24 @@ export interface TableSettingsDialogProps {
|
|
|
1778
1778
|
immediateChange?: boolean;
|
|
1779
1779
|
}
|
|
1780
1780
|
|
|
1781
|
+
export enum TableViewTogglesValues {
|
|
1782
|
+
VIEW_TYPE_SINGLE_CARD = 'SINGLE_CARD',
|
|
1783
|
+
VIEW_TYPE_MULTI_CARDS = 'MULTI_CARDS',
|
|
1784
|
+
VIEW_TYPE_TABLE = 'TABLE',
|
|
1785
|
+
}
|
|
1786
|
+
|
|
1781
1787
|
export interface TableViewTogglesProps {
|
|
1782
1788
|
viewType?: TableViewTogglesValues;
|
|
1783
1789
|
initialViewType?: TableViewTogglesValues;
|
|
1784
1790
|
disabledViewTypes?: TableViewTogglesValues[];
|
|
1785
1791
|
onViewTypeChange: (viewType: TableViewTogglesValues) => void;
|
|
1792
|
+
tableViewTooltipContent?: string | React.ReactNode;
|
|
1793
|
+
singleCardViewTooltipContent?: string | React.ReactNode;
|
|
1794
|
+
multiCardsViewTooltipContent?: string | React.ReactNode;
|
|
1795
|
+
disabled?: boolean;
|
|
1786
1796
|
className?: string;
|
|
1787
1797
|
}
|
|
1788
1798
|
|
|
1789
|
-
export enum TableViewTogglesValues {
|
|
1790
|
-
VIEW_TYPE_SINGLE_CARD = 'SINGLE_CARD',
|
|
1791
|
-
VIEW_TYPE_MULTI_CARDS = 'MULTI_CARDS',
|
|
1792
|
-
VIEW_TYPE_TABLE = 'TABLE',
|
|
1793
|
-
}
|
|
1794
|
-
|
|
1795
1799
|
export interface TagProps {
|
|
1796
1800
|
active?: boolean;
|
|
1797
1801
|
className?: string;
|
package/lib/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rio-cloud/rio-uikit",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.1-beta-1",
|
|
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": {
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"@babel/preset-react": "^7.16.7",
|
|
45
45
|
"@babel/runtime": "^7.16.7",
|
|
46
46
|
"@svgr/webpack": "^6.2.1",
|
|
47
|
-
"@testing-library/react": "
|
|
48
|
-
"@testing-library/user-event": "
|
|
47
|
+
"@testing-library/react": "12.1.2",
|
|
48
|
+
"@testing-library/user-event": "13.5.0",
|
|
49
49
|
"@types/jest": "^27.4.1",
|
|
50
50
|
"@types/lodash": "^4.14.178",
|
|
51
51
|
"@types/react": "^17.0.39",
|
|
@@ -123,6 +123,9 @@
|
|
|
123
123
|
"react-dom": ">16.8.6"
|
|
124
124
|
},
|
|
125
125
|
"dependencies": {
|
|
126
|
+
"@dnd-kit/core": "^5.0.3",
|
|
127
|
+
"@dnd-kit/modifiers": "^5.0.0",
|
|
128
|
+
"@dnd-kit/sortable": "^6.0.1",
|
|
126
129
|
"@popperjs/core": "2.11.5",
|
|
127
130
|
"classlist-polyfill": "1.2.0",
|
|
128
131
|
"classnames": "2.3.1",
|
|
@@ -132,16 +135,15 @@
|
|
|
132
135
|
"natural-orderby": "2.0.3",
|
|
133
136
|
"prop-types": "15.8.1",
|
|
134
137
|
"react-bootstrap": "1.6.4",
|
|
135
|
-
"react-content-loader": "6.
|
|
138
|
+
"react-content-loader": "6.2.0",
|
|
136
139
|
"react-datetime": "github:rio-cloud/react-datetime#v3.1.0-1-merged",
|
|
137
140
|
"react-debounce-input": "3.2.5",
|
|
138
|
-
"react-dropzone": "12.0.
|
|
141
|
+
"react-dropzone": "12.0.5",
|
|
139
142
|
"react-input-mask": "3.0.0-alpha.2",
|
|
140
143
|
"react-motion": "0.5.2",
|
|
141
144
|
"react-notifications": "1.7.3",
|
|
142
145
|
"react-onclickoutside": "6.12.1",
|
|
143
146
|
"react-popper": "2.2.5",
|
|
144
|
-
"react-sortable-hoc": "2.0.0",
|
|
145
147
|
"react-transition-group": "4.4.2",
|
|
146
148
|
"recharts": "2.1.9",
|
|
147
149
|
"regenerator-runtime": "0.13.9",
|