@opens/ui 1.0.26 → 1.0.27
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-select.vue.d.ts +6 -1
- package/dist/src/components/ui/app-observer.vue.d.ts +16 -0
- package/dist/src/components/ui/app-skeleton.vue.d.ts +14 -0
- package/dist/src/composables/useButtonStyle.d.ts +1 -1
- package/dist/src/composables/useDropdownStyle.d.ts +1 -1
- package/dist/src/composables/useInputStyle.d.ts +1 -1
- package/dist/src/composables/useItemStyle.d.ts +1 -1
- package/dist/src/main.d.ts +2 -1
- package/dist/ui/app-observer.vue.d.ts +4 -0
- package/dist/ui/app-observer.vue.d.ts.map +1 -0
- package/dist/ui/app-skeleton.vue.d.ts +4 -0
- package/dist/ui/app-skeleton.vue.d.ts.map +1 -0
- package/dist/yunique_ui.cjs.js +4 -4
- package/dist/yunique_ui.css +1 -1
- package/dist/yunique_ui.es.js +2335 -2286
- package/dist/yunique_ui.umd.js +6 -6
- package/package.json +1 -1
|
@@ -42,7 +42,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
42
42
|
type: BooleanConstructor;
|
|
43
43
|
default: boolean;
|
|
44
44
|
};
|
|
45
|
-
|
|
45
|
+
remote: BooleanConstructor;
|
|
46
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "search" | "intersect")[], "update:modelValue" | "search" | "intersect", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
46
47
|
small: BooleanConstructor;
|
|
47
48
|
round: BooleanConstructor;
|
|
48
49
|
fluid: BooleanConstructor;
|
|
@@ -86,8 +87,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
86
87
|
type: BooleanConstructor;
|
|
87
88
|
default: boolean;
|
|
88
89
|
};
|
|
90
|
+
remote: BooleanConstructor;
|
|
89
91
|
}>> & {
|
|
90
92
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
93
|
+
onSearch?: (...args: any[]) => any;
|
|
94
|
+
onIntersect?: (...args: any[]) => any;
|
|
91
95
|
}, {
|
|
92
96
|
disabled: boolean;
|
|
93
97
|
small: boolean;
|
|
@@ -97,5 +101,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
97
101
|
multiple: boolean;
|
|
98
102
|
filterable: boolean;
|
|
99
103
|
autoSize: boolean;
|
|
104
|
+
remote: boolean;
|
|
100
105
|
}, {}>;
|
|
101
106
|
export default _sfc_main;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
options: {
|
|
3
|
+
type: ObjectConstructor;
|
|
4
|
+
default: {};
|
|
5
|
+
};
|
|
6
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "intersect"[], "intersect", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
options: {
|
|
8
|
+
type: ObjectConstructor;
|
|
9
|
+
default: {};
|
|
10
|
+
};
|
|
11
|
+
}>> & {
|
|
12
|
+
onIntersect?: (...args: any[]) => any;
|
|
13
|
+
}, {
|
|
14
|
+
options: Record<string, any>;
|
|
15
|
+
}, {}>;
|
|
16
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
round: BooleanConstructor;
|
|
3
|
+
fluid: BooleanConstructor;
|
|
4
|
+
block: BooleanConstructor;
|
|
5
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6
|
+
round: BooleanConstructor;
|
|
7
|
+
fluid: BooleanConstructor;
|
|
8
|
+
block: BooleanConstructor;
|
|
9
|
+
}>>, {
|
|
10
|
+
round: boolean;
|
|
11
|
+
fluid: boolean;
|
|
12
|
+
block: boolean;
|
|
13
|
+
}, {}>;
|
|
14
|
+
export default _sfc_main;
|
|
@@ -3,7 +3,7 @@ interface StyleProps {
|
|
|
3
3
|
small?: boolean;
|
|
4
4
|
}
|
|
5
5
|
export declare function useButtonStyle(props: StyleProps): {
|
|
6
|
-
height: import("vue").ComputedRef<"!yu-h-8" | "!yu-h-10">;
|
|
6
|
+
height: import("vue").ComputedRef<"!yu-h-8 !yu-min-h-[2rem]" | "!yu-h-10 !yu-min-h-[2.5rem]">;
|
|
7
7
|
textSize: import("vue").ComputedRef<"!yu-text-xs" | "!yu-text-sm">;
|
|
8
8
|
width: import("vue").ComputedRef<"!yu-w-full" | "yu-w-fit">;
|
|
9
9
|
};
|
|
@@ -3,7 +3,7 @@ interface StyleProps {
|
|
|
3
3
|
small?: boolean;
|
|
4
4
|
}
|
|
5
5
|
export declare function useDropdownStyle(props: StyleProps): {
|
|
6
|
-
height: import("vue").ComputedRef<"!yu-h-10" | "!yu-h-12">;
|
|
6
|
+
height: import("vue").ComputedRef<"!yu-h-10 !yu-min-h-[2.5rem]" | "!yu-h-12 !yu-min-h-[3rem]">;
|
|
7
7
|
textSize: import("vue").ComputedRef<"!yu-text-xs" | "!yu-text-sm">;
|
|
8
8
|
width: import("vue").ComputedRef<"!yu-w-full" | "yu-w-fit">;
|
|
9
9
|
};
|
|
@@ -3,7 +3,7 @@ interface StyleProps {
|
|
|
3
3
|
small?: boolean;
|
|
4
4
|
}
|
|
5
5
|
export declare function useInputStyle(props: StyleProps): {
|
|
6
|
-
height: import("vue").ComputedRef<"!yu-h-10" | "!yu-h-12">;
|
|
6
|
+
height: import("vue").ComputedRef<"!yu-h-10 !yu-min-h-[2.5rem]" | "!yu-h-12 !yu-min-h-[3rem]">;
|
|
7
7
|
textSize: import("vue").ComputedRef<"!yu-text-xs" | "!yu-text-sm">;
|
|
8
8
|
width: import("vue").ComputedRef<"!yu-w-full" | "yu-w-fit">;
|
|
9
9
|
};
|
|
@@ -3,7 +3,7 @@ interface StyleProps {
|
|
|
3
3
|
small?: boolean;
|
|
4
4
|
}
|
|
5
5
|
export declare function useItemStyle(props: StyleProps): {
|
|
6
|
-
height: import("vue").ComputedRef<"!yu-h-8" | "!yu-h-10">;
|
|
6
|
+
height: import("vue").ComputedRef<"!yu-h-8 !yu-min-h-[2rem]" | "!yu-h-10 !yu-min-h-[2.5rem]">;
|
|
7
7
|
textSize: import("vue").ComputedRef<"!yu-text-xs" | "!yu-text-sm">;
|
|
8
8
|
width: import("vue").ComputedRef<"!yu-w-full" | "yu-w-fit">;
|
|
9
9
|
};
|
package/dist/src/main.d.ts
CHANGED
|
@@ -35,9 +35,10 @@ import AppTextInput from './components/inputs/app-text-input.vue';
|
|
|
35
35
|
import AppDropview from './components/dropdowns/app-dropview.vue';
|
|
36
36
|
import AppDropviewItem from './components/dropdowns/app-dropview-item.vue';
|
|
37
37
|
import AppDatePicker from './components/inputs/app-date-picker.vue';
|
|
38
|
+
import AppSkeleton from './components/ui/app-skeleton.vue';
|
|
38
39
|
import type { App } from 'vue';
|
|
39
40
|
declare const _default: {
|
|
40
41
|
install: (app: App) => void;
|
|
41
42
|
};
|
|
42
43
|
export default _default;
|
|
43
|
-
export { TextInput, IconTextInput, SwitchCheckbox, ButtonPrimary, ButtonSecondary, SimpleDropdown, AppDropdown, AppSelect, 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, };
|
|
44
|
+
export { TextInput, IconTextInput, SwitchCheckbox, ButtonPrimary, ButtonSecondary, SimpleDropdown, AppDropdown, AppSelect, 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, };
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import _sfc_main from "/opt/atlassian/pipelines/agent/build/src/components/ui/app-observer.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
+
export * from "/opt/atlassian/pipelines/agent/build/src/components/ui/app-observer.vue?vue&type=script&setup=true&lang.ts";
|
|
3
|
+
export default _sfc_main;
|
|
4
|
+
//# sourceMappingURL=app-observer.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app-observer.vue.d.ts","sourceRoot":"","sources":["../../src/components/ui/app-observer.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,4GAA4G,CAAC;AACnI,cAAc,4GAA4G,CAAC;AAC3H,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import _sfc_main from "/opt/atlassian/pipelines/agent/build/src/components/ui/app-skeleton.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
+
export * from "/opt/atlassian/pipelines/agent/build/src/components/ui/app-skeleton.vue?vue&type=script&setup=true&lang.ts";
|
|
3
|
+
export default _sfc_main;
|
|
4
|
+
//# sourceMappingURL=app-skeleton.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app-skeleton.vue.d.ts","sourceRoot":"","sources":["../../src/components/ui/app-skeleton.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,4GAA4G,CAAC;AACnI,cAAc,4GAA4G,CAAC;AAC3H,eAAe,SAAS,CAAC"}
|