@opens/ui 1.0.10 → 1.0.12
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/dropdowns/app-dropdown.vue.d.ts +9 -0
- package/dist/src/components/table/app-pagination.vue.d.ts +43 -0
- package/dist/src/components/table/app-table.vue.d.ts +2 -2
- package/dist/src/components/typography/subtitle.vue.d.ts +5 -1
- package/dist/src/components/typography/text.vue.d.ts +5 -1
- package/dist/src/components/typography/title.vue.d.ts +5 -1
- package/dist/src/components/ui/app-modal.vue.d.ts +4 -0
- package/dist/src/components/ui/app-popup.vue.d.ts +4 -0
- package/dist/src/main.d.ts +8 -5
- package/dist/table/app-pagination.vue.d.ts +4 -0
- package/dist/table/app-pagination.vue.d.ts.map +1 -0
- package/dist/table/{table-header.vue.d.ts → app-table-cell.vue.d.ts} +1 -1
- package/dist/table/app-table-cell.vue.d.ts.map +1 -0
- package/dist/table/app-table-header-cell.vue.d.ts +3 -0
- package/dist/table/app-table-header-cell.vue.d.ts.map +1 -0
- package/dist/table/{table-row.vue.d.ts → app-table-header.vue.d.ts} +1 -1
- package/dist/table/app-table-header.vue.d.ts.map +1 -0
- package/dist/table/{table-cell.vue.d.ts → app-table-row.vue.d.ts} +1 -1
- package/dist/table/app-table-row.vue.d.ts.map +1 -0
- package/dist/table/app-table.vue.d.ts +2 -3
- package/dist/table/app-table.vue.d.ts.map +1 -1
- package/dist/typography/subtitle.vue.d.ts +1 -1
- package/dist/typography/text.vue.d.ts +1 -1
- package/dist/typography/title.vue.d.ts +1 -1
- package/dist/ui/app-modal.vue.d.ts +4 -0
- package/dist/ui/app-modal.vue.d.ts.map +1 -0
- package/dist/ui/app-popup.vue.d.ts +4 -0
- package/dist/ui/app-popup.vue.d.ts.map +1 -0
- package/dist/yunique_ui.cjs.js +1 -1
- package/dist/yunique_ui.css +1 -1
- package/dist/yunique_ui.es.js +898 -757
- package/dist/yunique_ui.umd.js +2 -2
- package/package.json +3 -3
- package/dist/table/table-cell.vue.d.ts.map +0 -1
- package/dist/table/table-header-cell.vue.d.ts +0 -3
- package/dist/table/table-header-cell.vue.d.ts.map +0 -1
- package/dist/table/table-header.vue.d.ts.map +0 -1
- package/dist/table/table-row.vue.d.ts.map +0 -1
- /package/dist/src/components/table/{table-cell.vue.d.ts → app-table-cell.vue.d.ts} +0 -0
- /package/dist/src/components/table/{table-header-cell.vue.d.ts → app-table-header-cell.vue.d.ts} +0 -0
- /package/dist/src/components/table/{table-header.vue.d.ts → app-table-header.vue.d.ts} +0 -0
- /package/dist/src/components/table/{table-row.vue.d.ts → app-table-row.vue.d.ts} +0 -0
|
@@ -27,6 +27,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
27
27
|
type: BooleanConstructor;
|
|
28
28
|
default: boolean;
|
|
29
29
|
};
|
|
30
|
+
bordered: {
|
|
31
|
+
type: BooleanConstructor;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
30
34
|
}, {
|
|
31
35
|
opened: import("vue").Ref<boolean>;
|
|
32
36
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("filter-value" | "update:allSelected" | "update:opened")[], "filter-value" | "update:allSelected" | "update:opened", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -58,6 +62,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
58
62
|
type: BooleanConstructor;
|
|
59
63
|
default: boolean;
|
|
60
64
|
};
|
|
65
|
+
bordered: {
|
|
66
|
+
type: BooleanConstructor;
|
|
67
|
+
default: boolean;
|
|
68
|
+
};
|
|
61
69
|
}>> & {
|
|
62
70
|
"onFilter-value"?: (...args: any[]) => any;
|
|
63
71
|
"onUpdate:allSelected"?: (...args: any[]) => any;
|
|
@@ -70,5 +78,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
70
78
|
allSelected: boolean;
|
|
71
79
|
showSearchInput: boolean;
|
|
72
80
|
showSelectAll: boolean;
|
|
81
|
+
bordered: boolean;
|
|
73
82
|
}>;
|
|
74
83
|
export default _sfc_main;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
totalItems: {
|
|
3
|
+
type: NumberConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
initialPage: {
|
|
7
|
+
type: NumberConstructor;
|
|
8
|
+
default: number;
|
|
9
|
+
};
|
|
10
|
+
initialPerPage: {
|
|
11
|
+
type: NumberConstructor;
|
|
12
|
+
default: number;
|
|
13
|
+
};
|
|
14
|
+
perPageOptions: {
|
|
15
|
+
type: ArrayConstructor;
|
|
16
|
+
default: () => string[];
|
|
17
|
+
};
|
|
18
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:currentPage" | "update:perPage")[], "update:currentPage" | "update:perPage", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
totalItems: {
|
|
20
|
+
type: NumberConstructor;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
initialPage: {
|
|
24
|
+
type: NumberConstructor;
|
|
25
|
+
default: number;
|
|
26
|
+
};
|
|
27
|
+
initialPerPage: {
|
|
28
|
+
type: NumberConstructor;
|
|
29
|
+
default: number;
|
|
30
|
+
};
|
|
31
|
+
perPageOptions: {
|
|
32
|
+
type: ArrayConstructor;
|
|
33
|
+
default: () => string[];
|
|
34
|
+
};
|
|
35
|
+
}>> & {
|
|
36
|
+
"onUpdate:currentPage"?: (...args: any[]) => any;
|
|
37
|
+
"onUpdate:perPage"?: (...args: any[]) => any;
|
|
38
|
+
}, {
|
|
39
|
+
initialPage: number;
|
|
40
|
+
initialPerPage: number;
|
|
41
|
+
perPageOptions: unknown[];
|
|
42
|
+
}>;
|
|
43
|
+
export default _sfc_main;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const
|
|
2
|
-
export default
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -7,6 +7,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
7
7
|
plus: {
|
|
8
8
|
type: __PropType<boolean>;
|
|
9
9
|
required: false;
|
|
10
|
+
default: boolean;
|
|
10
11
|
};
|
|
11
12
|
titillium: {
|
|
12
13
|
type: __PropType<boolean>;
|
|
@@ -84,6 +85,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
84
85
|
plus: {
|
|
85
86
|
type: __PropType<boolean>;
|
|
86
87
|
required: false;
|
|
88
|
+
default: boolean;
|
|
87
89
|
};
|
|
88
90
|
titillium: {
|
|
89
91
|
type: __PropType<boolean>;
|
|
@@ -153,5 +155,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
153
155
|
type: __PropType<boolean>;
|
|
154
156
|
required: false;
|
|
155
157
|
};
|
|
156
|
-
}>>, {
|
|
158
|
+
}>>, {
|
|
159
|
+
plus: boolean;
|
|
160
|
+
}>;
|
|
157
161
|
export default _sfc_main;
|
|
@@ -7,6 +7,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
7
7
|
plus: {
|
|
8
8
|
type: __PropType<boolean>;
|
|
9
9
|
required: false;
|
|
10
|
+
default: boolean;
|
|
10
11
|
};
|
|
11
12
|
titillium: {
|
|
12
13
|
type: __PropType<boolean>;
|
|
@@ -88,6 +89,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
88
89
|
plus: {
|
|
89
90
|
type: __PropType<boolean>;
|
|
90
91
|
required: false;
|
|
92
|
+
default: boolean;
|
|
91
93
|
};
|
|
92
94
|
titillium: {
|
|
93
95
|
type: __PropType<boolean>;
|
|
@@ -161,5 +163,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
161
163
|
type: __PropType<boolean>;
|
|
162
164
|
required: false;
|
|
163
165
|
};
|
|
164
|
-
}>>, {
|
|
166
|
+
}>>, {
|
|
167
|
+
plus: boolean;
|
|
168
|
+
}>;
|
|
165
169
|
export default _sfc_main;
|
|
@@ -7,6 +7,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
7
7
|
plus: {
|
|
8
8
|
type: __PropType<boolean>;
|
|
9
9
|
required: false;
|
|
10
|
+
default: boolean;
|
|
10
11
|
};
|
|
11
12
|
titillium: {
|
|
12
13
|
type: __PropType<boolean>;
|
|
@@ -88,6 +89,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
88
89
|
plus: {
|
|
89
90
|
type: __PropType<boolean>;
|
|
90
91
|
required: false;
|
|
92
|
+
default: boolean;
|
|
91
93
|
};
|
|
92
94
|
titillium: {
|
|
93
95
|
type: __PropType<boolean>;
|
|
@@ -161,5 +163,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
161
163
|
type: __PropType<boolean>;
|
|
162
164
|
required: false;
|
|
163
165
|
};
|
|
164
|
-
}>>, {
|
|
166
|
+
}>>, {
|
|
167
|
+
plus: boolean;
|
|
168
|
+
}>;
|
|
165
169
|
export default _sfc_main;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
|
|
2
|
+
onClose?: (...args: any[]) => any;
|
|
3
|
+
}, {}>;
|
|
4
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
|
|
2
|
+
onClose?: (...args: any[]) => any;
|
|
3
|
+
}, {}>;
|
|
4
|
+
export default _sfc_main;
|
package/dist/src/main.d.ts
CHANGED
|
@@ -13,13 +13,16 @@ import AppTitle from './components/typography/title.vue';
|
|
|
13
13
|
import AppSubtitle from './components/typography/subtitle.vue';
|
|
14
14
|
import AppText from './components/typography/text.vue';
|
|
15
15
|
import AppTable from './components/table/app-table.vue';
|
|
16
|
-
import
|
|
17
|
-
import
|
|
18
|
-
import
|
|
19
|
-
import
|
|
16
|
+
import AppTableHeader from './components/table/app-table-header.vue';
|
|
17
|
+
import AppTableRow from './components/table/app-table-row.vue';
|
|
18
|
+
import AppTableCell from './components/table/app-table-cell.vue';
|
|
19
|
+
import AppTableHeaderCell from './components/table/app-table-header-cell.vue';
|
|
20
|
+
import AppPagination from './components/table/app-pagination.vue';
|
|
21
|
+
import AppPopup from './components/ui/app-popup.vue';
|
|
20
22
|
import type { App } from 'vue';
|
|
23
|
+
import AppModal from './components/ui/app-modal.vue';
|
|
21
24
|
declare const _default: {
|
|
22
25
|
install: (app: App) => void;
|
|
23
26
|
};
|
|
24
27
|
export default _default;
|
|
25
|
-
export { TextInput, IconTextInput, SwitchCheckbox, ButtonPrimary, ButtonSecondary, SimpleDropdown, AppDropdown, SimpleDropdownItem, StatCard, AppAdvancedStatCard, ListCard, AppTitle, AppSubtitle, AppText, AppTable,
|
|
28
|
+
export { TextInput, IconTextInput, SwitchCheckbox, ButtonPrimary, ButtonSecondary, SimpleDropdown, AppDropdown, SimpleDropdownItem, StatCard, AppAdvancedStatCard, ListCard, AppTitle, AppSubtitle, AppText, AppTable, AppTableHeader, AppTableRow, AppTableCell, AppTableHeaderCell, AppPagination, AppPopup, AppModal, };
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import _sfc_main from "/opt/atlassian/pipelines/agent/build/src/components/table/app-pagination.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
+
export * from "/opt/atlassian/pipelines/agent/build/src/components/table/app-pagination.vue?vue&type=script&setup=true&lang.ts";
|
|
3
|
+
export default _sfc_main;
|
|
4
|
+
//# sourceMappingURL=app-pagination.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app-pagination.vue.d.ts","sourceRoot":"","sources":["../../src/components/table/app-pagination.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,iHAAiH,CAAC;AACxI,cAAc,iHAAiH,CAAC;AAChI,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app-table-cell.vue.d.ts","sourceRoot":"","sources":["../../src/components/table/app-table-cell.vue"],"names":[],"mappings":";AAKA,wBAA4E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app-table-header-cell.vue.d.ts","sourceRoot":"","sources":["../../src/components/table/app-table-header-cell.vue"],"names":[],"mappings":";AAKA,wBAA4E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app-table-header.vue.d.ts","sourceRoot":"","sources":["../../src/components/table/app-table-header.vue"],"names":[],"mappings":";AAKA,wBAA4E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app-table-row.vue.d.ts","sourceRoot":"","sources":["../../src/components/table/app-table-row.vue"],"names":[],"mappings":";AAKA,wBAA4E"}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
3
|
-
export default _sfc_main;
|
|
1
|
+
declare const _default: any;
|
|
2
|
+
export default _default;
|
|
4
3
|
//# sourceMappingURL=app-table.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app-table.vue.d.ts","sourceRoot":"","sources":["../../src/components/table/app-table.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"app-table.vue.d.ts","sourceRoot":"","sources":["../../src/components/table/app-table.vue"],"names":[],"mappings":";AAKA,wBAA4E"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from "/opt/atlassian/pipelines/agent/build/src/components/typography/subtitle.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
-
import "/opt/atlassian/pipelines/agent/build/src/components/typography/subtitle.vue?vue&type=style&index=0&scoped=
|
|
2
|
+
import "/opt/atlassian/pipelines/agent/build/src/components/typography/subtitle.vue?vue&type=style&index=0&scoped=11d0ee28&lang.css";
|
|
3
3
|
declare const _default: any;
|
|
4
4
|
export default _default;
|
|
5
5
|
//# sourceMappingURL=subtitle.vue.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from "/opt/atlassian/pipelines/agent/build/src/components/typography/text.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
-
import "/opt/atlassian/pipelines/agent/build/src/components/typography/text.vue?vue&type=style&index=0&scoped=
|
|
2
|
+
import "/opt/atlassian/pipelines/agent/build/src/components/typography/text.vue?vue&type=style&index=0&scoped=5c9c77c5&lang.css";
|
|
3
3
|
declare const _default: any;
|
|
4
4
|
export default _default;
|
|
5
5
|
//# sourceMappingURL=text.vue.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from "/opt/atlassian/pipelines/agent/build/src/components/typography/title.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
-
import "/opt/atlassian/pipelines/agent/build/src/components/typography/title.vue?vue&type=style&index=0&scoped=
|
|
2
|
+
import "/opt/atlassian/pipelines/agent/build/src/components/typography/title.vue?vue&type=style&index=0&scoped=c6abe2e9&lang.css";
|
|
3
3
|
declare const _default: any;
|
|
4
4
|
export default _default;
|
|
5
5
|
//# sourceMappingURL=title.vue.d.ts.map
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import _sfc_main from "/opt/atlassian/pipelines/agent/build/src/components/ui/app-modal.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
+
export * from "/opt/atlassian/pipelines/agent/build/src/components/ui/app-modal.vue?vue&type=script&setup=true&lang.ts";
|
|
3
|
+
export default _sfc_main;
|
|
4
|
+
//# sourceMappingURL=app-modal.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app-modal.vue.d.ts","sourceRoot":"","sources":["../../src/components/ui/app-modal.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,yGAAyG,CAAC;AAChI,cAAc,yGAAyG,CAAC;AACxH,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import _sfc_main from "/opt/atlassian/pipelines/agent/build/src/components/ui/app-popup.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
+
export * from "/opt/atlassian/pipelines/agent/build/src/components/ui/app-popup.vue?vue&type=script&setup=true&lang.ts";
|
|
3
|
+
export default _sfc_main;
|
|
4
|
+
//# sourceMappingURL=app-popup.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app-popup.vue.d.ts","sourceRoot":"","sources":["../../src/components/ui/app-popup.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,yGAAyG,CAAC;AAChI,cAAc,yGAAyG,CAAC;AACxH,eAAe,SAAS,CAAC"}
|