plugin-ui-for-kzt 0.0.32 → 0.0.33
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/components/BaseCalendar/BaseCalendar.vue.d.ts +1 -1
- package/dist/components/BaseCheckbox/BaseCheckbox.vue.d.ts +2 -2
- package/dist/components/BaseDropdown/BaseDropdown.vue.d.ts +1 -1
- package/dist/components/BaseInput/BaseInput.vue.d.ts +2 -2
- package/dist/components/BaseInputCalendar/BaseInputCalendar.vue.d.ts +4 -4
- package/dist/components/BaseInputCurrency/BaseInputCurrency.vue.d.ts +3 -3
- package/dist/components/BaseInputEmail/BaseInputEmail.vue.d.ts +2 -2
- package/dist/components/BaseInputPhone/BaseInputPhone.vue.d.ts +2 -2
- package/dist/components/BaseRadio/BaseRadio.vue.d.ts +2 -2
- package/dist/components/BaseSelect/BaseSelect.vue.d.ts +2 -2
- package/dist/components/BaseTextarea/BaseTextarea.vue.d.ts +2 -2
- package/dist/components/BaseToggle/BaseToggle.vue.d.ts +2 -2
- package/dist/components/BaseTooltip/BaseTooltip.vue.d.ts +1 -1
- package/dist/index.js +1 -1
- package/example/App.vue +7 -1
- package/package.json +1 -1
- package/src/components/BaseInputCalendar/BaseInputCalendar.vue +1 -1
package/example/App.vue
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="demo-page">
|
|
3
3
|
<h1>Plugin UI KZT - Компоненты</h1>
|
|
4
|
-
|
|
4
|
+
<div>
|
|
5
|
+
<base-icon
|
|
6
|
+
name="calendar"
|
|
7
|
+
size="small"
|
|
8
|
+
/>
|
|
9
|
+
</div>
|
|
5
10
|
<section>
|
|
6
11
|
<BaseInputCalendar
|
|
7
12
|
id="input-calendar"
|
|
@@ -30,6 +35,7 @@ import BaseInputCalendar from '../src/components/BaseInputCalendar/BaseInputCale
|
|
|
30
35
|
import BaseInputCurrency from '../src/components/BaseInputCurrency/BaseInputCurrency.vue';
|
|
31
36
|
import BaseButton from '../src/components/BaseButton/BaseButton.vue';
|
|
32
37
|
import MyCustomModal from './MyCustomModal.vue';
|
|
38
|
+
import BaseIcon from "../src/components/BaseIcon/BaseIcon.vue";
|
|
33
39
|
|
|
34
40
|
const { open } = useModal();
|
|
35
41
|
|
package/package.json
CHANGED