@konstructio/ui 0.1.2-alpha.46 → 0.1.2-alpha.48
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/assets/icons/index.js +7 -0
- package/dist/components/Badge/Badge.js +36 -35
- package/dist/components/Counter/Counter.js +210 -0
- package/dist/components/Counter/Counter.variants.js +70 -0
- package/dist/components/ImageUpload/ImageUpload.js +9 -9
- package/dist/components/ImageUpload/ImageUpload.variants.js +1 -1
- package/dist/components/Input/Input.js +185 -118
- package/dist/components/Input/Input.variants.js +16 -20
- package/dist/components/MultiSelectDropdown/MultiSelectDropdown.js +19 -19
- package/dist/components/MultiSelectDropdown/MultiSelectDropdown.variants.js +11 -15
- package/dist/components/MultiSelectDropdown/components/Item/Item.js +18 -26
- package/dist/components/MultiSelectDropdown/components/Item/Item.variants.js +8 -8
- package/dist/components/MultiSelectDropdown/components/List/List.js +12 -19
- package/dist/components/MultiSelectDropdown/components/List/List.variants.js +6 -4
- package/dist/components/MultiSelectDropdown/components/Wrapper/Wrapper.js +79 -65
- package/dist/components/PhoneNumberInput/components/Wrapper.js +43 -36
- package/dist/components/Radio/Radio.js +47 -44
- package/dist/components/Radio/Radio.variants.js +12 -8
- package/dist/components/RadioGroup/RadioGroup.js +9 -9
- package/dist/components/Select/components/Wrapper.js +1 -1
- package/dist/components/TimePicker/TimePicker.variants.js +11 -6
- package/dist/components/TimePicker/components/MeridianList/MeridianList.js +30 -20
- package/dist/components/TimePicker/components/Wrapper/Wrapper.js +50 -35
- package/dist/components/Typography/Typography.js +11 -13
- package/dist/components/Typography/Typography.variants.js +54 -46
- package/dist/components/VirtualizedTable/VirtualizedTable.js +14 -14
- package/dist/components/VirtualizedTable/components/Actions/Actions.js +20 -16
- package/dist/components/VirtualizedTable/components/DotPaginate/DotPaginate.js +60 -60
- package/dist/components/VirtualizedTable/components/DropdownPaginate/DropdownPaginate.js +8 -8
- package/dist/components/VirtualizedTable/components/FormPaginate/FormPaginate.js +32 -21
- package/dist/components/VirtualizedTable/components/Header/Header.js +15 -15
- package/dist/components/VirtualizedTable/components/Pagination/Pagination.js +8 -8
- package/dist/components/index.js +96 -95
- package/dist/index.d.ts +38 -30
- package/dist/index.js +110 -109
- package/dist/package.json +4 -4
- package/dist/styles.css +1 -1
- package/package.json +4 -4
- package/dist/components/NumberInput/NumberInput.js +0 -179
- package/dist/components/NumberInput/NumberInput.variants.js +0 -50
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import { c as e } from "../../index-D29mdTf5.js";
|
|
2
|
-
const r = e([
|
|
3
|
-
"[&::-webkit-inner-spin-button]:appearance-none",
|
|
4
|
-
"[&::-webkit-outer-spin-button]:appearance-none",
|
|
5
|
-
"[-moz-appearance:textfield]",
|
|
6
|
-
"appearance-none",
|
|
7
|
-
"border",
|
|
8
|
-
"border-x-0",
|
|
9
|
-
"focus-visible:outline-none",
|
|
10
|
-
"focus-visible:ring-transparent",
|
|
11
|
-
"h-9",
|
|
12
|
-
"max-w-16",
|
|
13
|
-
"text-right",
|
|
14
|
-
"px-3",
|
|
15
|
-
"border-gray-200"
|
|
16
|
-
]), n = e(
|
|
17
|
-
[
|
|
18
|
-
"h-9",
|
|
19
|
-
"w-9",
|
|
20
|
-
"flex",
|
|
21
|
-
"items-center",
|
|
22
|
-
"justify-center",
|
|
23
|
-
"border",
|
|
24
|
-
"text-slate-400",
|
|
25
|
-
"border-gray-200",
|
|
26
|
-
"cursor-pointer"
|
|
27
|
-
],
|
|
28
|
-
{
|
|
29
|
-
variants: {
|
|
30
|
-
button: {
|
|
31
|
-
left: ["rounded-e"],
|
|
32
|
-
rigth: ["rounded-s"]
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
), a = e(["cursor-pointer"], {
|
|
37
|
-
variants: {
|
|
38
|
-
variant: {
|
|
39
|
-
default: ""
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
defaultVariants: {
|
|
43
|
-
variant: "default"
|
|
44
|
-
}
|
|
45
|
-
});
|
|
46
|
-
export {
|
|
47
|
-
n as buttonVariants,
|
|
48
|
-
a as labelVariants,
|
|
49
|
-
r as numberInputVariants
|
|
50
|
-
};
|