@farris/ui-vue 1.7.7 → 1.7.9
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@farris/ui-vue",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.9",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Farris Vue, a Farris Design based Vue3 component library.",
|
|
6
6
|
"keywords": [
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"@vue/shared": "^3.2.0",
|
|
28
28
|
"@vueuse/core": "^9.2.0",
|
|
29
29
|
"async-validator": "^4.2.0",
|
|
30
|
+
"axios": "^1.7.7",
|
|
30
31
|
"bignumber.js": "^9.1.2",
|
|
31
32
|
"date-fns": "^3.6.0",
|
|
32
33
|
"echarts": "^5.5.1-rc.1",
|
|
@@ -35,8 +36,7 @@
|
|
|
35
36
|
"lodash-es": "^4.17.21",
|
|
36
37
|
"rxjs": "^7.4.0",
|
|
37
38
|
"vite-plugin-dts": "^2.1.0",
|
|
38
|
-
"vue-i18n": "11"
|
|
39
|
-
"axios": "^1.7.7"
|
|
39
|
+
"vue-i18n": "11"
|
|
40
40
|
},
|
|
41
41
|
"types": "./types/index.d.ts"
|
|
42
42
|
}
|
package/types/components.d.ts
CHANGED
|
@@ -70,7 +70,7 @@ export { default as FPopover } from './popover';
|
|
|
70
70
|
export type { PopoverProps } from './popover';
|
|
71
71
|
export { default as FProgress } from './progress';
|
|
72
72
|
export type { ProgressProps } from './progress';
|
|
73
|
-
export {
|
|
73
|
+
export { FQuerySolution, useSolutionValidation } from './query-solution';
|
|
74
74
|
export type { QuerySolutionProps } from './query-solution';
|
|
75
75
|
export { default as FRate } from './rate';
|
|
76
76
|
export type { RateProps } from './rate';
|
|
@@ -126,4 +126,4 @@ export { FieldSelectorRepositoryToken } from './field-selector';
|
|
|
126
126
|
export { FLanguageTextbox } from './language-textbox';
|
|
127
127
|
export { FilterConditionEditor, ConditionActions, FilterConditionGrid, SortConditionGrid, useConditionData } from './filter-condition-editor';
|
|
128
128
|
export { ExpressionEditor, FExpressionTextbox } from './expression-editor';
|
|
129
|
-
export {
|
|
129
|
+
export { ContentContainer as FContentContainer } from './content-container';
|