@rotki/ui-library 1.12.0 → 1.12.2
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 +1 -1
- package/dist/components/accordions/accordion/RuiAccordion.vue.d.ts +1 -1
- package/dist/components/alerts/RuiAlert.vue.d.ts +1 -1
- package/dist/components/buttons/button/RuiButton.vue.d.ts +1 -3
- package/dist/components/buttons/button-group/RuiButtonGroup.vue.d.ts +1 -3
- package/dist/components/chips/RuiChip.vue.d.ts +1 -1
- package/dist/components/forms/auto-complete/RuiAutoComplete.vue.d.ts +18 -20
- package/dist/components/forms/checkbox/RuiCheckbox.vue.d.ts +1 -1
- package/dist/components/forms/radio-button/radio/RuiRadio.vue.d.ts +1 -3
- package/dist/components/forms/radio-button/radio-group/RuiRadioGroup.vue.d.ts +1 -3
- package/dist/components/forms/revealable-text-field/RuiRevealableTextField.vue.d.ts +5 -5
- package/dist/components/forms/select/RuiMenuSelect.vue.d.ts +2 -4
- package/dist/components/forms/text-area/RuiTextArea.vue.d.ts +4 -4
- package/dist/components/forms/text-field/RuiTextField.vue.d.ts +5 -5
- package/dist/components/icons/RuiIcon.vue.d.ts +1 -1
- package/dist/components/index.d.ts +30 -30
- package/dist/components/index.es.js +5454 -5454
- package/dist/components/overlays/badge/RuiBadge.vue.d.ts +1 -1
- package/dist/components/overlays/dialog/RuiDialog.vue.d.ts +2 -2
- package/dist/components/overlays/menu/RuiMenu.vue.d.ts +2 -2
- package/dist/components/overlays/navigation-drawer/RuiNavigationDrawer.vue.d.ts +2 -2
- package/dist/components/overlays/tooltip/RuiTooltip.vue.d.ts +2 -2
- package/dist/components/progress/RuiProgress.vue.d.ts +1 -1
- package/dist/components/steppers/RuiStepper.vue.d.ts +1 -1
- package/dist/components/tables/RuiDataTable.vue.d.ts +2 -4
- package/dist/components/tables/RuiTableHead.vue.d.ts +4 -6
- package/dist/components/tabs/tab/RuiTab.vue.d.ts +4 -4
- package/dist/components/tabs/tab-items/RuiTabItems.vue.d.ts +1 -3
- package/dist/composables/defaults/table.d.ts +1 -1
- package/dist/composables/{index-BWYjmHnW.js → index-DKotjeCA.js} +94 -95
- package/dist/composables/index.d.ts +1 -1
- package/dist/composables/index.es.js +1 -1
- package/dist/composables/popper.d.ts +2 -2
- package/dist/consts/forms/auto-complete/index.d.ts +1 -1
- package/dist/index.d.ts +6 -6
- package/dist/index.es.js +52 -52
- package/dist/style.css +1 -1
- package/dist/types/{index-DSBIGM2a.js → index-CN6Ip1GL.js} +1 -2
- package/dist/types/theme.d.ts +1 -1
- package/dist/utils/{index-Cps3W0wA.js → index-Bi6PqW7j.js} +38 -38
- package/dist/{vendor-BRFX1hnB.js → vendor-ClNuDbHx.js} +1385 -1387
- package/dist/web-types.json +4 -4
- package/package.json +40 -40
package/dist/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "http://json.schemastore.org/web-types",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "@rotki/ui-library",
|
|
5
|
-
"version": "1.12.
|
|
5
|
+
"version": "1.12.2",
|
|
6
6
|
"js-types-syntax": "typescript",
|
|
7
7
|
"description-markup": "markdown",
|
|
8
8
|
"contributions": {
|
|
@@ -1718,7 +1718,7 @@
|
|
|
1718
1718
|
"default": "undefined",
|
|
1719
1719
|
"value": {
|
|
1720
1720
|
"kind": "expression",
|
|
1721
|
-
"type": "TableColumn<object>[]"
|
|
1721
|
+
"type": "TableColumn<object>[] | undefined"
|
|
1722
1722
|
}
|
|
1723
1723
|
},
|
|
1724
1724
|
{
|
|
@@ -1768,7 +1768,7 @@
|
|
|
1768
1768
|
"default": "{}",
|
|
1769
1769
|
"value": {
|
|
1770
1770
|
"kind": "expression",
|
|
1771
|
-
"type": "Partial<Record<never, SortColumn<object>>>"
|
|
1771
|
+
"type": "Partial<Record<never, SortColumn<object>>> | undefined"
|
|
1772
1772
|
}
|
|
1773
1773
|
},
|
|
1774
1774
|
{
|
|
@@ -1788,7 +1788,7 @@
|
|
|
1788
1788
|
"default": "'label'",
|
|
1789
1789
|
"value": {
|
|
1790
1790
|
"kind": "expression",
|
|
1791
|
-
"type": "string | number"
|
|
1791
|
+
"type": "string | number | undefined"
|
|
1792
1792
|
}
|
|
1793
1793
|
},
|
|
1794
1794
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rotki/ui-library",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.2",
|
|
4
4
|
"description": "A vue design system and component library for rotki",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -69,62 +69,62 @@
|
|
|
69
69
|
},
|
|
70
70
|
"web-types": "dist/web-types.json",
|
|
71
71
|
"devDependencies": {
|
|
72
|
-
"@babel/core": "7.26.
|
|
73
|
-
"@babel/types": "7.26.
|
|
74
|
-
"@commitlint/cli": "19.
|
|
75
|
-
"@commitlint/config-conventional": "19.
|
|
76
|
-
"@fontsource/roboto": "5.
|
|
72
|
+
"@babel/core": "7.26.9",
|
|
73
|
+
"@babel/types": "7.26.9",
|
|
74
|
+
"@commitlint/cli": "19.8.0",
|
|
75
|
+
"@commitlint/config-conventional": "19.8.0",
|
|
76
|
+
"@fontsource/roboto": "5.2.5",
|
|
77
77
|
"@popperjs/core": "2.11.8",
|
|
78
|
-
"@rotki/eslint-config": "
|
|
79
|
-
"@storybook/addon-docs": "8.
|
|
80
|
-
"@storybook/addon-essentials": "8.
|
|
81
|
-
"@storybook/addon-interactions": "8.
|
|
82
|
-
"@storybook/addon-links": "8.
|
|
83
|
-
"@storybook/addon-themes": "8.
|
|
84
|
-
"@storybook/blocks": "8.
|
|
85
|
-
"@storybook/preview-api": "8.
|
|
86
|
-
"@storybook/test": "8.
|
|
87
|
-
"@storybook/vue3": "8.
|
|
88
|
-
"@storybook/vue3-vite": "8.
|
|
89
|
-
"@types/node": "20.17.
|
|
78
|
+
"@rotki/eslint-config": "4.0.1",
|
|
79
|
+
"@storybook/addon-docs": "8.6.4",
|
|
80
|
+
"@storybook/addon-essentials": "8.6.4",
|
|
81
|
+
"@storybook/addon-interactions": "8.6.4",
|
|
82
|
+
"@storybook/addon-links": "8.6.4",
|
|
83
|
+
"@storybook/addon-themes": "8.6.4",
|
|
84
|
+
"@storybook/blocks": "8.6.4",
|
|
85
|
+
"@storybook/preview-api": "8.6.4",
|
|
86
|
+
"@storybook/test": "8.6.4",
|
|
87
|
+
"@storybook/vue3": "8.6.4",
|
|
88
|
+
"@storybook/vue3-vite": "8.6.4",
|
|
89
|
+
"@types/node": "20.17.24",
|
|
90
90
|
"@types/tinycolor2": "1.4.6",
|
|
91
91
|
"@vitejs/plugin-vue": "5.2.1",
|
|
92
|
-
"@vitest/coverage-v8": "3.0.
|
|
93
|
-
"@vitest/ui": "3.0.
|
|
92
|
+
"@vitest/coverage-v8": "3.0.8",
|
|
93
|
+
"@vitest/ui": "3.0.8",
|
|
94
94
|
"@vue/test-utils": "2.4.6",
|
|
95
95
|
"@vue/tsconfig": "0.7.0",
|
|
96
|
-
"@vueuse/core": "12.
|
|
97
|
-
"@vueuse/math": "12.
|
|
98
|
-
"@vueuse/shared": "12.
|
|
96
|
+
"@vueuse/core": "12.8.2",
|
|
97
|
+
"@vueuse/math": "12.8.2",
|
|
98
|
+
"@vueuse/shared": "12.8.2",
|
|
99
99
|
"argparse": "2.0.1",
|
|
100
|
-
"autoprefixer": "10.4.
|
|
100
|
+
"autoprefixer": "10.4.21",
|
|
101
101
|
"babel-loader": "9.2.1",
|
|
102
|
-
"bumpp": "
|
|
102
|
+
"bumpp": "10.0.3",
|
|
103
103
|
"consola": "3.4.0",
|
|
104
104
|
"css-loader": "7.1.2",
|
|
105
|
-
"eslint": "9.
|
|
106
|
-
"eslint-plugin-cypress": "4.
|
|
107
|
-
"eslint-plugin-storybook": "0.11.
|
|
105
|
+
"eslint": "9.22.0",
|
|
106
|
+
"eslint-plugin-cypress": "4.2.0",
|
|
107
|
+
"eslint-plugin-storybook": "0.11.4",
|
|
108
108
|
"fast-glob": "3.3.3",
|
|
109
|
-
"fast-xml-parser": "
|
|
109
|
+
"fast-xml-parser": "5.0.8",
|
|
110
110
|
"fs-extra": "11.3.0",
|
|
111
111
|
"husky": "9.1.7",
|
|
112
112
|
"jsdom": "26.0.0",
|
|
113
|
-
"lint-staged": "15.4.
|
|
113
|
+
"lint-staged": "15.4.3",
|
|
114
114
|
"lucide": "0.473.0",
|
|
115
|
-
"postcss": "8.5.
|
|
115
|
+
"postcss": "8.5.3",
|
|
116
116
|
"remixicon": "4.6.0",
|
|
117
|
-
"sass": "1.
|
|
117
|
+
"sass": "1.85.1",
|
|
118
118
|
"scule": "1.3.0",
|
|
119
|
-
"storybook": "8.
|
|
119
|
+
"storybook": "8.6.4",
|
|
120
120
|
"tailwindcss": "3.4.17",
|
|
121
121
|
"tinycolor2": "1.6.0",
|
|
122
|
-
"tsc-alias": "1.8.
|
|
123
|
-
"tsx": "4.19.
|
|
124
|
-
"typescript": "5.
|
|
125
|
-
"unplugin-auto-import": "19.
|
|
126
|
-
"vite": "6.
|
|
127
|
-
"vitest": "3.0.
|
|
122
|
+
"tsc-alias": "1.8.11",
|
|
123
|
+
"tsx": "4.19.3",
|
|
124
|
+
"typescript": "5.8.2",
|
|
125
|
+
"unplugin-auto-import": "19.1.1",
|
|
126
|
+
"vite": "6.2.1",
|
|
127
|
+
"vitest": "3.0.8",
|
|
128
128
|
"vue": "3.5.13",
|
|
129
129
|
"vue-component-meta": "2.1.10",
|
|
130
130
|
"vue-loader": "17.4.2",
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
},
|
|
134
134
|
"engines": {
|
|
135
135
|
"node": ">=20 <21",
|
|
136
|
-
"pnpm": ">=
|
|
136
|
+
"pnpm": ">=10 <11"
|
|
137
137
|
},
|
|
138
138
|
"lint-staged": {
|
|
139
139
|
"*.{js,cjs,ts,vue,yml,json,md}": "eslint"
|