@v1nt1248/3nclient-lib 0.2.39 → 0.2.41
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/README.md +1 -0
- package/dist/components/index.d.ts +3 -1
- package/dist/components/ui3n-slider/types.d.ts +20 -0
- package/dist/components/ui3n-slider/ui3n-slider.vue.d.ts +22 -0
- package/dist/index.d.ts +2 -0
- package/dist/style.css +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/utils.types.d.ts +5 -0
- package/dist/ui3n-components.d.ts +2 -0
- package/dist/ui3n-components.js +7368 -7176
- package/dist/utils/processes/task-runner.d.ts +1 -5
- package/package.json +1 -1
- package/src/components/index.ts +5 -0
- package/src/components/ui3n-slider/types.ts +21 -0
- package/src/components/ui3n-slider/ui3n-slider.vue +432 -0
package/dist/types/index.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ import { default as Ui3nRadio } from './components/ui3n-radio-group/ui3n-radio.v
|
|
|
26
26
|
import { default as Ui3nRadioGroup } from './components/ui3n-radio-group/ui3n-radio-group.vue';
|
|
27
27
|
import { default as Ui3nEditable } from './components/ui3n-editable/ui3n-editable.vue';
|
|
28
28
|
import { default as Ui3nAutocomplete } from './components/ui3n-autocomplete/ui3n-autocomplete.vue';
|
|
29
|
+
import { default as Ui3nSlider } from './components/ui3n-slider/ui3n-slider.vue';
|
|
29
30
|
import { default as Ui3nHtml } from './directives/ui3n-html';
|
|
30
31
|
import { default as Ui3nClickOutside } from './directives/ui3n-click-outside';
|
|
31
32
|
import { default as Ui3nResize } from './directives/ui3n-resize';
|
|
@@ -60,6 +61,7 @@ declare module 'vue' {
|
|
|
60
61
|
Ui3nProgressCircular: typeof Ui3nProgressCircular;
|
|
61
62
|
Ui3nRadio: typeof Ui3nRadio;
|
|
62
63
|
Ui3nRadioGroup: typeof Ui3nRadioGroup;
|
|
64
|
+
Ui3nSlider: typeof Ui3nSlider;
|
|
63
65
|
Ui3nTableSortIcon: typeof Ui3nTableSortIcon;
|
|
64
66
|
Ui3nTable: typeof Ui3nTable;
|
|
65
67
|
Ui3nTabs: typeof Ui3nTabs;
|