@hg2/dataview-basic 2.0.0
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/dist/componentEntries.d.ts +2 -0
- package/dist/components/Informations/Inputs/InputsDate/config.d.ts +33 -0
- package/dist/components/Informations/Inputs/InputsDate/index.d.ts +2 -0
- package/dist/components/Informations/Inputs/InputsDate/index.vue.d.ts +14 -0
- package/dist/components/Informations/Inputs/InputsDate/interact.d.ts +47 -0
- package/dist/components/Informations/Inputs/InputsInput/config.d.ts +27 -0
- package/dist/components/Informations/Inputs/InputsInput/index.d.ts +2 -0
- package/dist/components/Informations/Inputs/InputsInput/index.vue.d.ts +14 -0
- package/dist/components/Informations/Inputs/InputsInput/interact.d.ts +8 -0
- package/dist/components/Informations/Inputs/InputsPagination/config.d.ts +31 -0
- package/dist/components/Informations/Inputs/InputsPagination/index.d.ts +2 -0
- package/dist/components/Informations/Inputs/InputsPagination/index.vue.d.ts +14 -0
- package/dist/components/Informations/Inputs/InputsPagination/interact.d.ts +9 -0
- package/dist/components/Informations/Inputs/InputsSelect/config.d.ts +33 -0
- package/dist/components/Informations/Inputs/InputsSelect/index.d.ts +2 -0
- package/dist/components/Informations/Inputs/InputsSelect/index.vue.d.ts +14 -0
- package/dist/components/Informations/Inputs/InputsSelect/interact.d.ts +8 -0
- package/dist/components/Informations/Inputs/InputsTab/config.d.ts +35 -0
- package/dist/components/Informations/Inputs/InputsTab/index.d.ts +2 -0
- package/dist/components/Informations/Inputs/InputsTab/index.vue.d.ts +14 -0
- package/dist/components/Informations/Inputs/InputsTab/interact.d.ts +8 -0
- package/dist/components/Informations/Inputs/index.d.ts +2 -0
- package/dist/components/Informations/Texts/TextBarrage/config.d.ts +56 -0
- package/dist/components/Informations/Texts/TextBarrage/index.d.ts +2 -0
- package/dist/components/Informations/Texts/TextCommon/config.d.ts +56 -0
- package/dist/components/Informations/Texts/TextCommon/index.d.ts +2 -0
- package/dist/components/Informations/Texts/TextGradient/config.d.ts +24 -0
- package/dist/components/Informations/Texts/TextGradient/index.d.ts +2 -0
- package/dist/components/Informations/Texts/TextGradient/index.vue.d.ts +14 -0
- package/dist/components/Informations/Texts/index.d.ts +2 -0
- package/dist/components/Informations/index.d.ts +1 -0
- package/dist/components/Tables/Tables/TableList/config.d.ts +46 -0
- package/dist/components/Tables/Tables/TableList/data.json.d.ts +17 -0
- package/dist/components/Tables/Tables/TableList/index.d.ts +2 -0
- package/dist/components/Tables/Tables/TableList/index.vue.d.ts +14 -0
- package/dist/components/Tables/Tables/TableScrollBoard/config.d.ts +34 -0
- package/dist/components/Tables/Tables/TableScrollBoard/data.json.d.ts +15 -0
- package/dist/components/Tables/Tables/TableScrollBoard/index.d.ts +2 -0
- package/dist/components/Tables/Tables/TableScrollBoard/index.vue.d.ts +14 -0
- package/dist/components/Tables/Tables/TablesBasic/config.d.ts +81 -0
- package/dist/components/Tables/Tables/TablesBasic/data.json.d.ts +63 -0
- package/dist/components/Tables/Tables/TablesBasic/index.d.ts +2 -0
- package/dist/components/Tables/Tables/TablesBasic/index.vue.d.ts +18 -0
- package/dist/components/Tables/Tables/TablesBasic/public.d.ts +2 -0
- package/dist/components/Tables/Tables/index.d.ts +7 -0
- package/dist/components/Tables/index.d.ts +1 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +9698 -0
- package/dist/index.js.map +1 -0
- package/dist/public/components.d.ts +37 -0
- package/dist/style.css +1 -0
- package/package.json +31 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { InformationList } from '../components/Informations';
|
|
2
|
+
import { TableList as basicTableComponents } from '../components/Tables';
|
|
3
|
+
export { InformationList, basicTableComponents };
|
|
4
|
+
export declare const basicComponents: import('../index.ts').ConfigType[];
|
|
5
|
+
export { TextCommonConfig } from '../components/Informations/Texts/TextCommon';
|
|
6
|
+
export { default as HgTextCommon } from '../components/Informations/Texts/TextCommon/index.vue';
|
|
7
|
+
export { default as TextCommonConfigClass, option as textCommonDefaultOption, FontWeightEnum, FontWeightObject, WritingModeEnum, WritingModeObject } from '../components/Informations/Texts/TextCommon/config';
|
|
8
|
+
export { TextGradientConfig } from '../components/Informations/Texts/TextGradient';
|
|
9
|
+
export { default as HgTextGradient } from '../components/Informations/Texts/TextGradient/index.vue';
|
|
10
|
+
export { default as TextGradientConfigClass, option as textGradientDefaultOption } from '../components/Informations/Texts/TextGradient/config';
|
|
11
|
+
export { TextBarrageConfig } from '../components/Informations/Texts/TextBarrage';
|
|
12
|
+
export { default as HgTextBarrage } from '../components/Informations/Texts/TextBarrage/index.vue';
|
|
13
|
+
export { default as TextBarrageConfigClass, option as textBarrageDefaultOption } from '../components/Informations/Texts/TextBarrage/config';
|
|
14
|
+
export { InputsDateConfig } from '../components/Informations/Inputs/InputsDate';
|
|
15
|
+
export { default as HgInputsDate } from '../components/Informations/Inputs/InputsDate/index.vue';
|
|
16
|
+
export { default as InputsDateConfigClass, option as inputsDateDefaultOption } from '../components/Informations/Inputs/InputsDate/config';
|
|
17
|
+
export { InputsSelectConfig } from '../components/Informations/Inputs/InputsSelect';
|
|
18
|
+
export { default as HgInputsSelect } from '../components/Informations/Inputs/InputsSelect/index.vue';
|
|
19
|
+
export { default as InputsSelectConfigClass, option as inputsSelectDefaultOption } from '../components/Informations/Inputs/InputsSelect/config';
|
|
20
|
+
export { InputsTabConfig } from '../components/Informations/Inputs/InputsTab';
|
|
21
|
+
export { default as HgInputsTab } from '../components/Informations/Inputs/InputsTab/index.vue';
|
|
22
|
+
export { default as InputsTabConfigClass, option as inputsTabDefaultOption } from '../components/Informations/Inputs/InputsTab/config';
|
|
23
|
+
export { InputsPaginationConfig } from '../components/Informations/Inputs/InputsPagination';
|
|
24
|
+
export { default as HgInputsPagination } from '../components/Informations/Inputs/InputsPagination/index.vue';
|
|
25
|
+
export { default as InputsPaginationConfigClass, option as inputsPaginationDefaultOption } from '../components/Informations/Inputs/InputsPagination/config';
|
|
26
|
+
export { InputsInputConfig } from '../components/Informations/Inputs/InputsInput';
|
|
27
|
+
export { default as HgInputsInput } from '../components/Informations/Inputs/InputsInput/index.vue';
|
|
28
|
+
export { default as InputsInputConfigClass, option as inputsInputDefaultOption } from '../components/Informations/Inputs/InputsInput/config';
|
|
29
|
+
export { TableListConfig } from '../components/Tables/Tables/TableList';
|
|
30
|
+
export { default as HgTableList } from '../components/Tables/Tables/TableList/index.vue';
|
|
31
|
+
export { default as TableListConfigClass, option as tableListDefaultOption } from '../components/Tables/Tables/TableList/config';
|
|
32
|
+
export { TableScrollBoardConfig } from '../components/Tables/Tables/TableScrollBoard';
|
|
33
|
+
export { default as HgTableScrollBoard } from '../components/Tables/Tables/TableScrollBoard/index.vue';
|
|
34
|
+
export { default as TableScrollBoardConfigClass, option as tableScrollBoardDefaultOption } from '../components/Tables/Tables/TableScrollBoard/config';
|
|
35
|
+
export { TablesBasicConfig } from '../components/Tables/Tables/TablesBasic';
|
|
36
|
+
export { default as HgTablesBasic } from '../components/Tables/Tables/TablesBasic/index.vue';
|
|
37
|
+
export { default as TablesBasicConfigClass, tablesBasicDefaultOption } from '../components/Tables/Tables/TablesBasic/config';
|