@opens/ui 1.0.40 → 1.0.41
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/src/components/icons/app-icon.vue.d.ts +6 -0
- package/dist/src/components/table/app-data-table.vue.d.ts +118 -0
- package/dist/src/main.d.ts +2 -1
- package/dist/table/app-data-table.vue.d.ts +4 -0
- package/dist/table/app-data-table.vue.d.ts.map +1 -0
- package/dist/yunique_ui.cjs.js +5 -5
- package/dist/yunique_ui.css +1 -1
- package/dist/yunique_ui.es.js +4555 -4271
- package/dist/yunique_ui.umd.js +6 -6
- package/package.json +1 -1
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
2
|
small: BooleanConstructor;
|
|
3
3
|
large: BooleanConstructor;
|
|
4
|
+
extraLarge: BooleanConstructor;
|
|
5
|
+
gray: BooleanConstructor;
|
|
4
6
|
base: BooleanConstructor;
|
|
5
7
|
light: BooleanConstructor;
|
|
6
8
|
dark: BooleanConstructor;
|
|
@@ -8,6 +10,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
8
10
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
9
11
|
small: BooleanConstructor;
|
|
10
12
|
large: BooleanConstructor;
|
|
13
|
+
extraLarge: BooleanConstructor;
|
|
14
|
+
gray: BooleanConstructor;
|
|
11
15
|
base: BooleanConstructor;
|
|
12
16
|
light: BooleanConstructor;
|
|
13
17
|
dark: BooleanConstructor;
|
|
@@ -17,6 +21,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
17
21
|
small: boolean;
|
|
18
22
|
base: boolean;
|
|
19
23
|
light: boolean;
|
|
24
|
+
gray: boolean;
|
|
25
|
+
extraLarge: boolean;
|
|
20
26
|
dark: boolean;
|
|
21
27
|
outlined: boolean;
|
|
22
28
|
}, {}>;
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import type { PropType as __PropType } from 'vue';
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
+
loading: {
|
|
4
|
+
type: __PropType<boolean>;
|
|
5
|
+
required: false;
|
|
6
|
+
default: boolean;
|
|
7
|
+
};
|
|
8
|
+
columns: {
|
|
9
|
+
type: __PropType<{
|
|
10
|
+
label: string;
|
|
11
|
+
value: string;
|
|
12
|
+
}[]>;
|
|
13
|
+
required: true;
|
|
14
|
+
};
|
|
15
|
+
data: {
|
|
16
|
+
type: __PropType<any[]>;
|
|
17
|
+
required: true;
|
|
18
|
+
};
|
|
19
|
+
itemsPerPage: {
|
|
20
|
+
type: __PropType<number>;
|
|
21
|
+
required: false;
|
|
22
|
+
default: number;
|
|
23
|
+
};
|
|
24
|
+
round: {
|
|
25
|
+
type: __PropType<boolean>;
|
|
26
|
+
required: false;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
border: {
|
|
30
|
+
type: __PropType<boolean>;
|
|
31
|
+
required: false;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
34
|
+
error: {
|
|
35
|
+
type: __PropType<boolean>;
|
|
36
|
+
required: false;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
divisor: {
|
|
40
|
+
type: __PropType<boolean>;
|
|
41
|
+
required: false;
|
|
42
|
+
default: boolean;
|
|
43
|
+
};
|
|
44
|
+
striped: {
|
|
45
|
+
type: __PropType<boolean>;
|
|
46
|
+
required: false;
|
|
47
|
+
default: boolean;
|
|
48
|
+
};
|
|
49
|
+
hover: {
|
|
50
|
+
type: __PropType<boolean>;
|
|
51
|
+
required: false;
|
|
52
|
+
default: boolean;
|
|
53
|
+
};
|
|
54
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "reload"[], "reload", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
55
|
+
loading: {
|
|
56
|
+
type: __PropType<boolean>;
|
|
57
|
+
required: false;
|
|
58
|
+
default: boolean;
|
|
59
|
+
};
|
|
60
|
+
columns: {
|
|
61
|
+
type: __PropType<{
|
|
62
|
+
label: string;
|
|
63
|
+
value: string;
|
|
64
|
+
}[]>;
|
|
65
|
+
required: true;
|
|
66
|
+
};
|
|
67
|
+
data: {
|
|
68
|
+
type: __PropType<any[]>;
|
|
69
|
+
required: true;
|
|
70
|
+
};
|
|
71
|
+
itemsPerPage: {
|
|
72
|
+
type: __PropType<number>;
|
|
73
|
+
required: false;
|
|
74
|
+
default: number;
|
|
75
|
+
};
|
|
76
|
+
round: {
|
|
77
|
+
type: __PropType<boolean>;
|
|
78
|
+
required: false;
|
|
79
|
+
default: boolean;
|
|
80
|
+
};
|
|
81
|
+
border: {
|
|
82
|
+
type: __PropType<boolean>;
|
|
83
|
+
required: false;
|
|
84
|
+
default: boolean;
|
|
85
|
+
};
|
|
86
|
+
error: {
|
|
87
|
+
type: __PropType<boolean>;
|
|
88
|
+
required: false;
|
|
89
|
+
default: boolean;
|
|
90
|
+
};
|
|
91
|
+
divisor: {
|
|
92
|
+
type: __PropType<boolean>;
|
|
93
|
+
required: false;
|
|
94
|
+
default: boolean;
|
|
95
|
+
};
|
|
96
|
+
striped: {
|
|
97
|
+
type: __PropType<boolean>;
|
|
98
|
+
required: false;
|
|
99
|
+
default: boolean;
|
|
100
|
+
};
|
|
101
|
+
hover: {
|
|
102
|
+
type: __PropType<boolean>;
|
|
103
|
+
required: false;
|
|
104
|
+
default: boolean;
|
|
105
|
+
};
|
|
106
|
+
}>> & {
|
|
107
|
+
onReload?: (...args: any[]) => any;
|
|
108
|
+
}, {
|
|
109
|
+
round: boolean;
|
|
110
|
+
loading: boolean;
|
|
111
|
+
error: boolean;
|
|
112
|
+
border: boolean;
|
|
113
|
+
itemsPerPage: number;
|
|
114
|
+
divisor: boolean;
|
|
115
|
+
striped: boolean;
|
|
116
|
+
hover: boolean;
|
|
117
|
+
}, {}>;
|
|
118
|
+
export default _sfc_main;
|
package/dist/src/main.d.ts
CHANGED
|
@@ -40,9 +40,10 @@ import AppSkeleton from './components/ui/app-skeleton.vue';
|
|
|
40
40
|
import AppTextArea from './components/inputs/app-text-area.vue';
|
|
41
41
|
import AppTypingIndicator from './components/ui/app-typing-indicator.vue';
|
|
42
42
|
import AppTabs from './components/ui/app-tabs.vue';
|
|
43
|
+
import AppDataTable from './components/table/app-data-table.vue';
|
|
43
44
|
import type { App } from 'vue';
|
|
44
45
|
declare const _default: {
|
|
45
46
|
install: (app: App) => void;
|
|
46
47
|
};
|
|
47
48
|
export default _default;
|
|
48
|
-
export { TextInput, IconTextInput, SwitchCheckbox, ButtonPrimary, ButtonSecondary, SimpleDropdown, AppDropdown, AppSelect, AppSelectItem, SimpleDropdownItem, StatCard, AppAdvancedStatCard, ListCard, AppTitle, AppSubtitle, AppText, AppTooltipIcon, AppTable, AppTableHeader, AppTableRow, AppTableCell, AppTableHeaderCell, AppPagination, AppPopup, AppContainer, AppGroup, AppAccordion, AppLoadingRing, AppJoin, AppIcon, AppButton, AppAvatar, AppBadge, AppSwitch, AppTextInput, AppDropview, AppDropviewItem, AppDatePicker, AppSkeleton, AppTextArea, AppTypingIndicator, AppTabs, };
|
|
49
|
+
export { TextInput, IconTextInput, SwitchCheckbox, ButtonPrimary, ButtonSecondary, SimpleDropdown, AppDropdown, AppSelect, AppSelectItem, SimpleDropdownItem, StatCard, AppAdvancedStatCard, ListCard, AppTitle, AppSubtitle, AppText, AppTooltipIcon, AppTable, AppTableHeader, AppTableRow, AppTableCell, AppTableHeaderCell, AppPagination, AppPopup, AppContainer, AppGroup, AppAccordion, AppLoadingRing, AppJoin, AppIcon, AppButton, AppAvatar, AppBadge, AppSwitch, AppTextInput, AppDropview, AppDropviewItem, AppDatePicker, AppSkeleton, AppTextArea, AppTypingIndicator, AppTabs, AppDataTable, };
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import _sfc_main from "/opt/atlassian/pipelines/agent/build/src/components/table/app-data-table.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
+
export * from "/opt/atlassian/pipelines/agent/build/src/components/table/app-data-table.vue?vue&type=script&setup=true&lang.ts";
|
|
3
|
+
export default _sfc_main;
|
|
4
|
+
//# sourceMappingURL=app-data-table.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app-data-table.vue.d.ts","sourceRoot":"","sources":["../../src/components/table/app-data-table.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,iHAAiH,CAAC;AACxI,cAAc,iHAAiH,CAAC;AAChI,eAAe,SAAS,CAAC"}
|