@opens/ui 1.0.32 → 1.0.34

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.
@@ -11,6 +11,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
11
11
  scroll: BooleanConstructor;
12
12
  block: BooleanConstructor;
13
13
  ghost: BooleanConstructor;
14
+ icon: BooleanConstructor;
14
15
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
15
16
  small: BooleanConstructor;
16
17
  round: BooleanConstructor;
@@ -24,8 +25,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
24
25
  scroll: BooleanConstructor;
25
26
  block: BooleanConstructor;
26
27
  ghost: BooleanConstructor;
28
+ icon: BooleanConstructor;
27
29
  }>>, {
28
30
  disabled: boolean;
31
+ icon: boolean;
29
32
  small: boolean;
30
33
  round: boolean;
31
34
  fluid: boolean;
@@ -49,6 +49,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
49
49
  };
50
50
  block: BooleanConstructor;
51
51
  ghost: BooleanConstructor;
52
+ icon: BooleanConstructor;
52
53
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "search" | "intersect")[], "update:modelValue" | "search" | "intersect", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
53
54
  small: BooleanConstructor;
54
55
  round: BooleanConstructor;
@@ -100,6 +101,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
100
101
  };
101
102
  block: BooleanConstructor;
102
103
  ghost: BooleanConstructor;
104
+ icon: BooleanConstructor;
103
105
  }>> & {
104
106
  "onUpdate:modelValue"?: (...args: any[]) => any;
105
107
  onSearch?: (...args: any[]) => any;
@@ -107,6 +109,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
107
109
  }, {
108
110
  modelValue: Record<string, any> | unknown[];
109
111
  disabled: boolean;
112
+ icon: boolean;
110
113
  small: boolean;
111
114
  round: boolean;
112
115
  fluid: boolean;
@@ -11,13 +11,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
11
11
  success: BooleanConstructor;
12
12
  warning: BooleanConstructor;
13
13
  error: BooleanConstructor;
14
- white: BooleanConstructor;
14
+ ghost: BooleanConstructor;
15
15
  info: BooleanConstructor;
16
16
  round: {
17
17
  type: BooleanConstructor;
18
18
  default: boolean;
19
19
  };
20
20
  ping: BooleanConstructor;
21
+ icon: BooleanConstructor;
21
22
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
22
23
  show: {
23
24
  type: BooleanConstructor;
@@ -31,18 +32,20 @@ declare const _sfc_main: import("vue").DefineComponent<{
31
32
  success: BooleanConstructor;
32
33
  warning: BooleanConstructor;
33
34
  error: BooleanConstructor;
34
- white: BooleanConstructor;
35
+ ghost: BooleanConstructor;
35
36
  info: BooleanConstructor;
36
37
  round: {
37
38
  type: BooleanConstructor;
38
39
  default: boolean;
39
40
  };
40
41
  ping: BooleanConstructor;
42
+ icon: BooleanConstructor;
41
43
  }>>, {
44
+ icon: boolean;
42
45
  warning: boolean;
43
46
  success: boolean;
44
47
  round: boolean;
45
- white: boolean;
48
+ ghost: boolean;
46
49
  error: boolean;
47
50
  info: boolean;
48
51
  ping: boolean;
@@ -6,6 +6,7 @@ import ButtonSecondary from './components/buttons/button-secondary.vue';
6
6
  import SimpleDropdown from './components/dropdowns/simple-dropdown.vue';
7
7
  import AppDropdown from './components/dropdowns/app-dropdown.vue';
8
8
  import AppSelect from './components/dropdowns/app-select.vue';
9
+ import AppSelectItem from './components/dropdowns/app-select-item.vue';
9
10
  import SimpleDropdownItem from './components/dropdowns/simple-dropdown-item.vue';
10
11
  import StatCard from './components/cards/stat-card.vue';
11
12
  import AppAdvancedStatCard from './components/cards/app-advanced-stat-card.vue';
@@ -42,4 +43,4 @@ declare const _default: {
42
43
  install: (app: App) => void;
43
44
  };
44
45
  export default _default;
45
- 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, AppTextArea, };
46
+ 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, };