@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.
Files changed (42) hide show
  1. package/dist/src/components/dropdowns/app-dropdown.vue.d.ts +9 -0
  2. package/dist/src/components/table/app-pagination.vue.d.ts +43 -0
  3. package/dist/src/components/table/app-table.vue.d.ts +2 -2
  4. package/dist/src/components/typography/subtitle.vue.d.ts +5 -1
  5. package/dist/src/components/typography/text.vue.d.ts +5 -1
  6. package/dist/src/components/typography/title.vue.d.ts +5 -1
  7. package/dist/src/components/ui/app-modal.vue.d.ts +4 -0
  8. package/dist/src/components/ui/app-popup.vue.d.ts +4 -0
  9. package/dist/src/main.d.ts +8 -5
  10. package/dist/table/app-pagination.vue.d.ts +4 -0
  11. package/dist/table/app-pagination.vue.d.ts.map +1 -0
  12. package/dist/table/{table-header.vue.d.ts → app-table-cell.vue.d.ts} +1 -1
  13. package/dist/table/app-table-cell.vue.d.ts.map +1 -0
  14. package/dist/table/app-table-header-cell.vue.d.ts +3 -0
  15. package/dist/table/app-table-header-cell.vue.d.ts.map +1 -0
  16. package/dist/table/{table-row.vue.d.ts → app-table-header.vue.d.ts} +1 -1
  17. package/dist/table/app-table-header.vue.d.ts.map +1 -0
  18. package/dist/table/{table-cell.vue.d.ts → app-table-row.vue.d.ts} +1 -1
  19. package/dist/table/app-table-row.vue.d.ts.map +1 -0
  20. package/dist/table/app-table.vue.d.ts +2 -3
  21. package/dist/table/app-table.vue.d.ts.map +1 -1
  22. package/dist/typography/subtitle.vue.d.ts +1 -1
  23. package/dist/typography/text.vue.d.ts +1 -1
  24. package/dist/typography/title.vue.d.ts +1 -1
  25. package/dist/ui/app-modal.vue.d.ts +4 -0
  26. package/dist/ui/app-modal.vue.d.ts.map +1 -0
  27. package/dist/ui/app-popup.vue.d.ts +4 -0
  28. package/dist/ui/app-popup.vue.d.ts.map +1 -0
  29. package/dist/yunique_ui.cjs.js +1 -1
  30. package/dist/yunique_ui.css +1 -1
  31. package/dist/yunique_ui.es.js +898 -757
  32. package/dist/yunique_ui.umd.js +2 -2
  33. package/package.json +3 -3
  34. package/dist/table/table-cell.vue.d.ts.map +0 -1
  35. package/dist/table/table-header-cell.vue.d.ts +0 -3
  36. package/dist/table/table-header-cell.vue.d.ts.map +0 -1
  37. package/dist/table/table-header.vue.d.ts.map +0 -1
  38. package/dist/table/table-row.vue.d.ts.map +0 -1
  39. /package/dist/src/components/table/{table-cell.vue.d.ts → app-table-cell.vue.d.ts} +0 -0
  40. /package/dist/src/components/table/{table-header-cell.vue.d.ts → app-table-header-cell.vue.d.ts} +0 -0
  41. /package/dist/src/components/table/{table-header.vue.d.ts → app-table-header.vue.d.ts} +0 -0
  42. /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 _sfc_main: 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 _sfc_main;
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;
@@ -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 TableHeader from './components/table/table-header.vue';
17
- import TableRow from './components/table/table-row.vue';
18
- import TableCell from './components/table/table-cell.vue';
19
- import TableHeaderCell from './components/table/table-header-cell.vue';
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, TableHeader, TableRow, TableCell, TableHeaderCell, };
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"}
@@ -1,3 +1,3 @@
1
1
  declare const _default: any;
2
2
  export default _default;
3
- //# sourceMappingURL=table-header.vue.d.ts.map
3
+ //# sourceMappingURL=app-table-cell.vue.d.ts.map
@@ -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,3 @@
1
+ declare const _default: any;
2
+ export default _default;
3
+ //# sourceMappingURL=app-table-header-cell.vue.d.ts.map
@@ -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"}
@@ -1,3 +1,3 @@
1
1
  declare const _default: any;
2
2
  export default _default;
3
- //# sourceMappingURL=table-row.vue.d.ts.map
3
+ //# sourceMappingURL=app-table-header.vue.d.ts.map
@@ -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"}
@@ -1,3 +1,3 @@
1
1
  declare const _default: any;
2
2
  export default _default;
3
- //# sourceMappingURL=table-cell.vue.d.ts.map
3
+ //# sourceMappingURL=app-table-row.vue.d.ts.map
@@ -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
- import _sfc_main from "/opt/atlassian/pipelines/agent/build/src/components/table/app-table.vue?vue&type=script&setup=true&lang.ts";
2
- export * from "/opt/atlassian/pipelines/agent/build/src/components/table/app-table.vue?vue&type=script&setup=true&lang.ts";
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":"AAAA,OAAO,SAAS,MAAM,4GAA4G,CAAC;AACnI,cAAc,4GAA4G,CAAC;AAC3H,eAAe,SAAS,CAAC"}
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=cd3f9071&lang.css";
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=747f1999&lang.css";
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=e5bd72b2&lang.css";
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"}