@rotki/ui-library 0.7.0 → 0.8.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/README.md +11 -8
- package/dist/components/alerts/Alert.vue.d.ts +9 -9
- package/dist/components/chips/Chip.vue.d.ts +54 -14
- package/dist/components/index.d.ts +2 -1
- package/dist/components/index.es.js +20 -19
- package/dist/components/overlays/badge/Badge.vue.d.ts +3 -3
- package/dist/components/tables/DataTable.vue.d.ts +47 -2
- package/dist/components/tables/ExpandButton.vue.d.ts +34 -0
- package/dist/composables/defaults/table.d.ts +9 -0
- package/dist/composables/sticky-header.d.ts +9 -0
- package/dist/index-2YbRDW3N.js +6333 -0
- package/dist/index.d.ts +13 -3
- package/dist/index.es.js +2654 -2644
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/index-Q2a5R3OH.js +0 -6090
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,23 @@
|
|
|
1
1
|
import { type App } from 'vue';
|
|
2
2
|
import { StepperState } from './types/stepper';
|
|
3
|
+
import { type TableOptions } from './composables/defaults/table';
|
|
3
4
|
import type { InitThemeOptions } from './types/theme';
|
|
4
5
|
import '@/style.scss';
|
|
5
6
|
export * from './all-icons';
|
|
6
7
|
export { type InitThemeOptions, type ThemeConfig, type ThemeContent, type ThemeData, ThemeMode, } from './types/theme';
|
|
7
|
-
export { type ContextColorsType } from './consts/colors';
|
|
8
|
+
export { type ContextColorsType, contextColors } from './consts/colors';
|
|
8
9
|
export * from './composables';
|
|
9
10
|
export * from './components';
|
|
10
11
|
export { StepperState };
|
|
11
|
-
export
|
|
12
|
-
|
|
12
|
+
export interface RuiOptions {
|
|
13
|
+
theme?: InitThemeOptions;
|
|
14
|
+
defaults?: {
|
|
15
|
+
table?: TableOptions;
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
export declare function createRui(options?: RuiOptions): {
|
|
19
|
+
install: (app: App) => void;
|
|
20
|
+
defaults: Readonly<{
|
|
21
|
+
table: TableOptions;
|
|
22
|
+
}>;
|
|
13
23
|
};
|