@rio-cloud/rio-uikit 0.16.0-beta-3 → 0.16.0-beta-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/lib/components/filepicker/FilePicker.js +1 -1
- package/lib/components/table/TableViewToggles.js +98 -104
- package/lib/style/css/components/TableToolbar.less +1 -1
- package/lib/style/fonts/rioglyph/rioglyph.svg +102 -96
- package/lib/style/fonts/rioglyph/rioglyph.ttf +0 -0
- package/lib/types.ts +10 -6
- package/lib/version.json +1 -1
- package/package.json +1 -1
|
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