@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/README.md
CHANGED
|
@@ -51,4 +51,6 @@ import { default as Ui3nEditable } from './ui3n-editable/ui3n-editable.vue';
|
|
|
51
51
|
import { Ui3nEditableProps, Ui3nEditableEmits } from './ui3n-editable/types';
|
|
52
52
|
import { default as Ui3nAutocomplete } from './ui3n-autocomplete/ui3n-autocomplete.vue';
|
|
53
53
|
import { Ui3nAutocompleteProps, Ui3nAutocompleteEmits, Ui3nAutocompleteSlots, Ui3nAutocompleteOptionBase } from './ui3n-autocomplete/types';
|
|
54
|
-
|
|
54
|
+
import { default as Ui3nSlider } from './ui3n-slider/ui3n-slider.vue';
|
|
55
|
+
import { UI3nSliderProps, UI3nSliderEmits } from './ui3n-slider/types';
|
|
56
|
+
export { Ui3nIcon, Ui3nIconProps, Ui3nIconEmits, Ui3nButton, Ui3nButtonProps, Ui3nButtonEmits, Ui3nChip, Ui3nChipProps, Ui3nChipEmits, Ui3nChipSlots, Ui3nDropFiles, Ui3nDropFilesProps, Ui3nDropFilesEmits, Ui3nDropFilesSlots, Ui3nEmoji, Ui3nEmojiProps, Ui3nEmojiEmits, Ui3nInput, Ui3nInputProps, Ui3nInputEmits, Ui3nInputFile, Ui3nInputFileProps, Ui3nInputFileEmits, Ui3nText, Ui3nTextProps, Ui3nTextEmits, Ui3nCheckbox, Ui3nCheckboxProps, Ui3nCheckboxEmits, Ui3nCheckboxSlots, Ui3nCheckboxValue, Ui3nNotification, Ui3nTableSortIcon, Ui3nTableSortIconProps, Ui3nTable, Ui3nTableSort, Ui3nTableConfig, Ui3nTableHeadProps, Ui3nTableBodyProps, Ui3nTableGroupActionsSlot, Ui3nTableHeaderCellSlot, Ui3nTableBodyRowSlotScope, Ui3nTableBodyRowSlot, Ui3nTableBodyRowCellSlotScope, Ui3nTableBodyRowCellSlot, Ui3nTableSlots, Ui3nTableProps, Ui3nTableEmits, Ui3nTableExpose, Ui3nDialog, Ui3nDialogComponentProps, Ui3nDialogComponentEmits, Ui3nDialogProps, Ui3nDialogEvent, Ui3nMenu, Ui3nMenuProps, Ui3nMenuEmits, Ui3nMenuSlots, Ui3nList, Ui3nListProps, Ui3nListEmits, Ui3nListSlots, Ui3nVirtualScroll, Ui3nVirtualScrollProps, Ui3nVirtualScrollSlots, Ui3nTabs, Ui3nTabsProps, Ui3nTabsEmits, Ui3nTabsSlots, Ui3nBadge, Ui3nBadgeProps, Ui3nBreadcrumb, Ui3nBreadcrumbProps, Ui3nBreadcrumbEmits, Ui3nBreadcrumbSlots, Ui3nBreadcrumbs, Ui3nBreadcrumbsProps, Ui3nSwitch, Ui3nSwitchProps, Ui3nSwitchEmits, Ui3nSwitchSlots, Ui3nStepLineBar, Ui3nStepLineBarProps, Ui3nProgressLinear, Ui3nProgressLinearProps, Ui3nProgressCircular, Ui3nProgressCircularProps, Ui3nTooltip, Ui3nTooltipEmits, Ui3nTooltipProps, Ui3nTooltipSlots, Ui3nTooltipPlacement, Ui3nRadio, Ui3nRadioGroup, Ui3nRadioValue, Ui3nRadioEmits, Ui3nRadioProps, Ui3nRadioSlots, Ui3nRadioGroupEmits, Ui3nRadioGroupProps, Ui3nRadioGroupSlots, Ui3nEditable, Ui3nEditableProps, Ui3nEditableEmits, Ui3nAutocomplete, Ui3nAutocompleteProps, Ui3nAutocompleteEmits, Ui3nAutocompleteSlots, Ui3nAutocompleteOptionBase, Ui3nSlider, UI3nSliderProps, UI3nSliderEmits, };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export interface UI3nSliderProps {
|
|
2
|
+
modelValue: number | [number, number];
|
|
3
|
+
step?: string | number;
|
|
4
|
+
range?: boolean;
|
|
5
|
+
min?: string | number;
|
|
6
|
+
max?: string | number;
|
|
7
|
+
labelVisible?: 'always' | 'normal' | 'never';
|
|
8
|
+
labelTextColor?: string;
|
|
9
|
+
labelColor?: string;
|
|
10
|
+
activeColor?: string;
|
|
11
|
+
trackColor?: string;
|
|
12
|
+
trackHeight?: string | number;
|
|
13
|
+
thumbSize?: string | number;
|
|
14
|
+
thumbColor?: string;
|
|
15
|
+
transformValueMethod?: (value: number) => string;
|
|
16
|
+
disabled?: boolean;
|
|
17
|
+
}
|
|
18
|
+
export interface UI3nSliderEmits {
|
|
19
|
+
(event: 'update:modelValue', value: number | [number, number]): void;
|
|
20
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { UI3nSliderProps } from './types';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<UI3nSliderProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
3
|
+
"update:modelValue": (value: number | [number, number]) => any;
|
|
4
|
+
}, string, import('vue').PublicProps, Readonly<UI3nSliderProps> & Readonly<{
|
|
5
|
+
"onUpdate:modelValue"?: ((value: number | [number, number]) => any) | undefined;
|
|
6
|
+
}>, {
|
|
7
|
+
activeColor: string;
|
|
8
|
+
min: string | number;
|
|
9
|
+
max: string | number;
|
|
10
|
+
labelVisible: "always" | "normal" | "never";
|
|
11
|
+
labelTextColor: string;
|
|
12
|
+
labelColor: string;
|
|
13
|
+
trackColor: string;
|
|
14
|
+
trackHeight: string | number;
|
|
15
|
+
thumbSize: string | number;
|
|
16
|
+
thumbColor: string;
|
|
17
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
18
|
+
sliderEl: HTMLDivElement;
|
|
19
|
+
pointerEl1: HTMLDivElement;
|
|
20
|
+
pointerEl2: HTMLDivElement;
|
|
21
|
+
}, HTMLDivElement>;
|
|
22
|
+
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ import { default as Ui3nRadio } from './components/ui3n-radio-group/ui3n-radio.v
|
|
|
29
29
|
import { default as Ui3nRadioGroup } from './components/ui3n-radio-group/ui3n-radio-group.vue';
|
|
30
30
|
import { default as Ui3nEditable } from './components/ui3n-editable/ui3n-editable.vue';
|
|
31
31
|
import { default as Ui3nAutocomplete } from './components/ui3n-autocomplete/ui3n-autocomplete.vue';
|
|
32
|
+
import { default as Ui3nSlider } from './components/ui3n-slider/ui3n-slider.vue';
|
|
32
33
|
import { default as Ui3nHtml } from './directives/ui3n-html';
|
|
33
34
|
import { default as Ui3nClickOutside } from './directives/ui3n-click-outside';
|
|
34
35
|
import { default as Ui3nResize } from './directives/ui3n-resize';
|
|
@@ -78,6 +79,7 @@ declare module 'vue' {
|
|
|
78
79
|
Ui3nProgressCircular: typeof Ui3nProgressCircular;
|
|
79
80
|
Ui3nRadio: typeof Ui3nRadio;
|
|
80
81
|
Ui3nRadioGroup: typeof Ui3nRadioGroup;
|
|
82
|
+
Ui3nSlider: typeof Ui3nSlider;
|
|
81
83
|
Ui3nTableSortIcon: typeof Ui3nTableSortIcon;
|
|
82
84
|
Ui3nTable: typeof Ui3nTable;
|
|
83
85
|
Ui3nTabs: typeof Ui3nTabs;
|