prizm-ui-vue 2.2.45 → 2.2.47

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 (30) hide show
  1. package/dist/components/PrizmButton.vue.d.ts +4 -0
  2. package/dist/components/PrizmCheckbox/PrizmCheckbox.vue.d.ts +4 -0
  3. package/dist/components/PrizmCheckbox/PrizmCheckboxGroup.vue.d.ts +4 -0
  4. package/dist/components/PrizmCollapse/PrizmCollapse.vue.d.ts +4 -0
  5. package/dist/components/PrizmCollapse/PrizmCollapseItem.vue.d.ts +4 -0
  6. package/dist/components/PrizmDatePicker.vue.d.ts +5 -1
  7. package/dist/components/PrizmDialog.vue.d.ts +4 -0
  8. package/dist/components/PrizmDrawer.vue.d.ts +4 -0
  9. package/dist/components/PrizmDropdown/PrizmDropdown.vue.d.ts +4 -0
  10. package/dist/components/PrizmDropdown/PrizmDropdownItem.vue.d.ts +4 -0
  11. package/dist/components/PrizmForm/PrizmForm.vue.d.ts +4 -0
  12. package/dist/components/PrizmForm/PrizmFormItem.vue.d.ts +4 -0
  13. package/dist/components/PrizmIcon.vue.d.ts +4 -0
  14. package/dist/components/PrizmInput.vue.d.ts +4 -0
  15. package/dist/components/PrizmMessageBox/PrizmMessageBox.d.ts +4 -0
  16. package/dist/components/PrizmNotification/PrizmNotification.d.ts +2 -3
  17. package/dist/components/PrizmRadio/PrizmRadio.vue.d.ts +4 -0
  18. package/dist/components/PrizmRadio/PrizmRadioButton.vue.d.ts +4 -0
  19. package/dist/components/PrizmRadio/PrizmRadioGroup.vue.d.ts +4 -0
  20. package/dist/components/PrizmSelect/PrizmOption.vue.d.ts +138 -14
  21. package/dist/components/PrizmSelect/PrizmSelect.vue.d.ts +4 -0
  22. package/dist/components/PrizmTable/PrizmTable.vue.d.ts +4 -0
  23. package/dist/components/PrizmTable/PrizmTableColumn.vue.d.ts +4 -0
  24. package/dist/components/PrizmTabs/PrizmTabPane.vue.d.ts +4 -0
  25. package/dist/components/PrizmTabs/PrizmTabs.vue.d.ts +4 -0
  26. package/dist/components/PrizmTag.vue.d.ts +4 -0
  27. package/dist/components/PrizmTimePicker.vue.d.ts +318 -0
  28. package/dist/prizm-ui.es.js +2 -2
  29. package/dist/prizm-ui.umd.js +1 -1
  30. package/package.json +1 -1
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElButton
4
+ */
1
5
  import { ElButton } from 'element-plus';
2
6
  import 'element-plus/es/components/button/style/css';
3
7
  type ElementProps = InstanceType<typeof ElButton>['$props'];
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElCheckbox
4
+ */
1
5
  import { ElCheckbox } from 'element-plus';
2
6
  import 'element-plus/es/components/checkbox/style/css';
3
7
  type Slots = {
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElCheckboxGroup
4
+ */
1
5
  import { ElCheckboxGroup } from 'element-plus';
2
6
  import 'element-plus/es/components/checkbox-group/style/css';
3
7
  type Slots = {
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElCollapse
4
+ */
1
5
  import { type CollapseProps } from 'element-plus';
2
6
  import 'element-plus/es/components/collapse/style/css';
3
7
  type Slots = {
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElCollapseItem
4
+ */
1
5
  import { type CollapseItemProps } from 'element-plus';
2
6
  import 'element-plus/es/components/collapse-item/style/css';
3
7
  type Slots = {
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElDatePicker
4
+ */
1
5
  import { ElDatePicker } from 'element-plus';
2
6
  import 'element-plus/es/components/date-picker/style/css';
3
7
  type ElDatePickerProps = InstanceType<typeof ElDatePicker>['$props'];
@@ -18,7 +22,7 @@ type Props = {
18
22
  placeholder?: PickedProps['placeholder'];
19
23
  size?: PickedProps['size'];
20
24
  onVisibility?: (visibility: boolean) => void;
21
- onCalenDarChange?: (val: [Date, null | Date]) => void;
25
+ onCalendarChange?: (val: [Date, null | Date]) => void;
22
26
  onClear?: () => void;
23
27
  onPanelChange?: (date: Date | [Date, Date], mode: 'month' | 'year', view?: string) => void;
24
28
  };
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElDialog
4
+ */
1
5
  import { type DialogEmits, type DialogProps } from 'element-plus';
2
6
  import 'element-plus/es/components/dialog/style/css';
3
7
  type Slots = {
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElDrawer
4
+ */
1
5
  import { type DrawerProps } from 'element-plus';
2
6
  import 'element-plus/es/components/drawer/style/css';
3
7
  type Slots = {
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElDropdown
4
+ */
1
5
  import { type DropdownInstance, ElDropdown } from 'element-plus';
2
6
  import 'element-plus/es/components/dropdown/style/css';
3
7
  type ElDropdownProps = InstanceType<typeof ElDropdown>['$props'];
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElDropdownItem
4
+ */
1
5
  import { ElDropdownItem } from 'element-plus';
2
6
  import 'element-plus/es/components/dropdown-item/style/css';
3
7
  type ElDropdownItemProps = InstanceType<typeof ElDropdownItem>['$props'];
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElForm
4
+ */
1
5
  import { ElForm } from 'element-plus';
2
6
  import 'element-plus/es/components/form/style/css';
3
7
  type ElFormProps = InstanceType<typeof ElForm>['$props'];
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElFormItem
4
+ */
1
5
  import { type FormItemProps } from 'element-plus';
2
6
  import 'element-plus/es/components/form-item/style/css';
3
7
  type Slots = {
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElIcon
4
+ */
1
5
  import { ElIcon } from 'element-plus';
2
6
  import 'element-plus/es/components/icon/style/css';
3
7
  type ElIconProps = InstanceType<typeof ElIcon>['$props'];
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElInput
4
+ */
1
5
  import { ElInput, type InputEmits } from 'element-plus';
2
6
  import 'element-plus/es/components/input/style/css';
3
7
  type Slots = {
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElMessageBox
4
+ */
1
5
  import { type ElMessageBoxOptions, type MessageBoxData, type MessageBoxType } from 'element-plus';
2
6
  import 'element-plus/es/components/message-box/style/css';
3
7
  export type Props = Pick<ElMessageBoxOptions, 'title' | 'message' | 'showCancelButton' | 'showConfirmButton' | 'center' | 'customClass' | 'confirmButtonClass' | 'cancelButtonClass' | 'buttonSize' | 'customStyle'> & {
@@ -1,7 +1,6 @@
1
1
  /**
2
- * @author Garaev.VM@gazprom-neft.ru
3
- * @components ElNotification
4
- * https://element-plus.org/en-US/component/notification.html
2
+ * @author Garaev.VM
3
+ * @components ElNotificaton
5
4
  */
6
5
  import { type NotificationInstance } from 'element-plus';
7
6
  import 'element-plus/es/components/notification/style/css';
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElRadio
4
+ */
1
5
  import { ElRadio } from 'element-plus';
2
6
  import 'element-plus/es/components/radio/style/css';
3
7
  type ElRadioProps = InstanceType<typeof ElRadio>['$props'];
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElRadioButton
4
+ */
1
5
  import { ElRadioButton } from 'element-plus';
2
6
  import 'element-plus/es/components/radio-button/style/css';
3
7
  type ElRadioProps = InstanceType<typeof ElRadioButton>['$props'];
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElRadioGroup
4
+ */
1
5
  import { ElRadioGroup } from 'element-plus';
2
6
  import 'element-plus/es/components/radio-group/style/css';
3
7
  type ElRadioProps = InstanceType<typeof ElRadioGroup>['$props'];
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElOption
4
+ */
1
5
  import { ElOption } from 'element-plus';
2
6
  import 'element-plus/es/components/option/style/css';
3
7
  type ElSelectProps = InstanceType<typeof ElOption>['$props'];
@@ -24,13 +28,73 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {
24
28
  }>>, {
25
29
  ns: {
26
30
  namespace: import("vue").ComputedRef<string>;
27
- b: (blockSuffix?: string) => string;
28
- e: (element?: string) => string;
29
- m: (modifier?: string) => string;
30
- be: (blockSuffix?: string, element?: string) => string;
31
- em: (element?: string, modifier?: string) => string;
32
- bm: (blockSuffix?: string, modifier?: string) => string;
33
- bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
31
+ b: (blockSuffix
32
+ /**
33
+ * @author Garaev.VM
34
+ * @components ElOption
35
+ */
36
+ ?: string) => string;
37
+ e: (element
38
+ /**
39
+ * @author Garaev.VM
40
+ * @components ElOption
41
+ */
42
+ ?: string) => string;
43
+ m: (modifier
44
+ /**
45
+ * @author Garaev.VM
46
+ * @components ElOption
47
+ */
48
+ ?: string) => string;
49
+ be: (blockSuffix
50
+ /**
51
+ * @author Garaev.VM
52
+ * @components ElOption
53
+ */
54
+ ?: string, element
55
+ /**
56
+ * @author Garaev.VM
57
+ * @components ElOption
58
+ */
59
+ ?: string) => string;
60
+ em: (element
61
+ /**
62
+ * @author Garaev.VM
63
+ * @components ElOption
64
+ */
65
+ ?: string, modifier
66
+ /**
67
+ * @author Garaev.VM
68
+ * @components ElOption
69
+ */
70
+ ?: string) => string;
71
+ bm: (blockSuffix
72
+ /**
73
+ * @author Garaev.VM
74
+ * @components ElOption
75
+ */
76
+ ?: string, modifier
77
+ /**
78
+ * @author Garaev.VM
79
+ * @components ElOption
80
+ */
81
+ ?: string) => string;
82
+ bem: (blockSuffix
83
+ /**
84
+ * @author Garaev.VM
85
+ * @components ElOption
86
+ */
87
+ ?: string, element
88
+ /**
89
+ * @author Garaev.VM
90
+ * @components ElOption
91
+ */
92
+ ?: string, modifier
93
+ /**
94
+ * @author Garaev.VM
95
+ * @components ElOption
96
+ */
97
+ ?: string) => string;
34
98
  is: {
35
99
  (name: string, state: boolean | undefined): string;
36
100
  (name: string): string;
@@ -78,13 +142,73 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {
78
142
  }>>, {
79
143
  ns: {
80
144
  namespace: import("vue").ComputedRef<string>;
81
- b: (blockSuffix?: string) => string;
82
- e: (element?: string) => string;
83
- m: (modifier?: string) => string;
84
- be: (blockSuffix?: string, element?: string) => string;
85
- em: (element?: string, modifier?: string) => string;
86
- bm: (blockSuffix?: string, modifier?: string) => string;
87
- bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
145
+ b: (blockSuffix
146
+ /**
147
+ * @author Garaev.VM
148
+ * @components ElOption
149
+ */
150
+ ?: string) => string;
151
+ e: (element
152
+ /**
153
+ * @author Garaev.VM
154
+ * @components ElOption
155
+ */
156
+ ?: string) => string;
157
+ m: (modifier
158
+ /**
159
+ * @author Garaev.VM
160
+ * @components ElOption
161
+ */
162
+ ?: string) => string;
163
+ be: (blockSuffix
164
+ /**
165
+ * @author Garaev.VM
166
+ * @components ElOption
167
+ */
168
+ ?: string, element
169
+ /**
170
+ * @author Garaev.VM
171
+ * @components ElOption
172
+ */
173
+ ?: string) => string;
174
+ em: (element
175
+ /**
176
+ * @author Garaev.VM
177
+ * @components ElOption
178
+ */
179
+ ?: string, modifier
180
+ /**
181
+ * @author Garaev.VM
182
+ * @components ElOption
183
+ */
184
+ ?: string) => string;
185
+ bm: (blockSuffix
186
+ /**
187
+ * @author Garaev.VM
188
+ * @components ElOption
189
+ */
190
+ ?: string, modifier
191
+ /**
192
+ * @author Garaev.VM
193
+ * @components ElOption
194
+ */
195
+ ?: string) => string;
196
+ bem: (blockSuffix
197
+ /**
198
+ * @author Garaev.VM
199
+ * @components ElOption
200
+ */
201
+ ?: string, element
202
+ /**
203
+ * @author Garaev.VM
204
+ * @components ElOption
205
+ */
206
+ ?: string, modifier
207
+ /**
208
+ * @author Garaev.VM
209
+ * @components ElOption
210
+ */
211
+ ?: string) => string;
88
212
  is: {
89
213
  (name: string, state: boolean | undefined): string;
90
214
  (name: string): string;
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElSelect
4
+ */
1
5
  import { ElSelect } from 'element-plus';
2
6
  import 'element-plus/es/components/select/style/css';
3
7
  import { type PropType } from 'vue';
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElTable
4
+ */
1
5
  import { ElTable } from 'element-plus';
2
6
  import 'element-plus/es/components/table/style/css';
3
7
  type ElTableProps = InstanceType<typeof ElTable>['$props'];
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElTableColumn
4
+ */
1
5
  import { ElTableColumn } from 'element-plus';
2
6
  import 'element-plus/es/components/table-column/style/css';
3
7
  type ElTableColumnProps = InstanceType<typeof ElTableColumn>['$props'];
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElTabPane
4
+ */
1
5
  import { ElTabPane } from 'element-plus';
2
6
  import 'element-plus/es/components/tab-pane/style/css';
3
7
  type ElTabPaneProps = InstanceType<typeof ElTabPane>['$props'];
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElTabs
4
+ */
1
5
  import { ElTabs } from 'element-plus';
2
6
  import 'element-plus/es/components/tabs/style/css';
3
7
  import { type PropType } from 'vue';
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @author Garaev.VM
3
+ * @components ElTag
4
+ */
1
5
  import { ElTag } from 'element-plus';
2
6
  import 'element-plus/es/components/tag/style/css';
3
7
  type Slots = {