@solfacil/girassol 0.3.0 → 0.3.1
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.
|
@@ -4,11 +4,11 @@ declare const _default: {
|
|
|
4
4
|
$data: {};
|
|
5
5
|
$props: Partial<{
|
|
6
6
|
label: string;
|
|
7
|
-
position: ("bottom" | "top") | ("
|
|
7
|
+
position: ("bottom" | "top") | ("left" | "right");
|
|
8
8
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
9
9
|
id: string;
|
|
10
10
|
label?: string | undefined;
|
|
11
|
-
position?: (("bottom" | "top") | ("
|
|
11
|
+
position?: (("bottom" | "top") | ("left" | "right")) | undefined;
|
|
12
12
|
}>, {
|
|
13
13
|
label: string;
|
|
14
14
|
position: string;
|
|
@@ -29,13 +29,13 @@ declare const _default: {
|
|
|
29
29
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
30
30
|
id: string;
|
|
31
31
|
label?: string | undefined;
|
|
32
|
-
position?: (("bottom" | "top") | ("
|
|
32
|
+
position?: (("bottom" | "top") | ("left" | "right")) | undefined;
|
|
33
33
|
}>, {
|
|
34
34
|
label: string;
|
|
35
35
|
position: string;
|
|
36
36
|
}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
37
37
|
label: string;
|
|
38
|
-
position: ("bottom" | "top") | ("
|
|
38
|
+
position: ("bottom" | "top") | ("left" | "right");
|
|
39
39
|
}> & {
|
|
40
40
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
41
41
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -59,7 +59,7 @@ declare const _default: {
|
|
|
59
59
|
} & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
60
60
|
id: string;
|
|
61
61
|
label?: string | undefined;
|
|
62
|
-
position?: (("bottom" | "top") | ("
|
|
62
|
+
position?: (("bottom" | "top") | ("left" | "right")) | undefined;
|
|
63
63
|
}>, {
|
|
64
64
|
label: string;
|
|
65
65
|
position: string;
|
|
@@ -70,13 +70,13 @@ declare const _default: {
|
|
|
70
70
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
71
71
|
id: string;
|
|
72
72
|
label?: string | undefined;
|
|
73
|
-
position?: (("bottom" | "top") | ("
|
|
73
|
+
position?: (("bottom" | "top") | ("left" | "right")) | undefined;
|
|
74
74
|
}>, {
|
|
75
75
|
label: string;
|
|
76
76
|
position: string;
|
|
77
77
|
}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
78
78
|
label: string;
|
|
79
|
-
position: ("bottom" | "top") | ("
|
|
79
|
+
position: ("bottom" | "top") | ("left" | "right");
|
|
80
80
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
81
81
|
$slots: {
|
|
82
82
|
label: (_: {
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1620,38 +1620,47 @@ export declare const components: {
|
|
|
1620
1620
|
new (...args: any[]): {
|
|
1621
1621
|
$: import("vue").ComponentInternalInstance;
|
|
1622
1622
|
$data: {};
|
|
1623
|
-
$props: Partial<{
|
|
1624
|
-
|
|
1623
|
+
$props: Partial<{
|
|
1624
|
+
textDirection: "left" | "right";
|
|
1625
|
+
stretchLabel: boolean;
|
|
1626
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1627
|
+
label: {
|
|
1625
1628
|
type: import("vue").PropType<string>;
|
|
1626
1629
|
required: true;
|
|
1627
1630
|
};
|
|
1628
|
-
|
|
1631
|
+
class: {
|
|
1632
|
+
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
1633
|
+
};
|
|
1634
|
+
id: {
|
|
1629
1635
|
type: import("vue").PropType<string>;
|
|
1630
1636
|
required: true;
|
|
1631
1637
|
};
|
|
1632
1638
|
value: {
|
|
1633
1639
|
type: import("vue").PropType<string>;
|
|
1634
|
-
required: true;
|
|
1635
1640
|
};
|
|
1636
|
-
|
|
1641
|
+
name: {
|
|
1637
1642
|
type: import("vue").PropType<string>;
|
|
1638
1643
|
required: true;
|
|
1639
1644
|
};
|
|
1640
1645
|
checked: {
|
|
1641
1646
|
type: import("vue").PropType<boolean>;
|
|
1642
1647
|
};
|
|
1643
|
-
|
|
1644
|
-
type: import("vue").PropType<
|
|
1648
|
+
textDirection: {
|
|
1649
|
+
type: import("vue").PropType<"left" | "right">;
|
|
1650
|
+
} & {
|
|
1651
|
+
default: string;
|
|
1645
1652
|
};
|
|
1646
1653
|
hideLabel: {
|
|
1647
1654
|
type: import("vue").PropType<boolean>;
|
|
1648
1655
|
};
|
|
1649
|
-
|
|
1656
|
+
stretchLabel: {
|
|
1650
1657
|
type: import("vue").PropType<boolean>;
|
|
1658
|
+
} & {
|
|
1659
|
+
default: boolean;
|
|
1651
1660
|
};
|
|
1652
1661
|
}>> & {
|
|
1653
|
-
onChange?: ((value: string) => any) | undefined;
|
|
1654
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps,
|
|
1662
|
+
onChange?: ((value: string | boolean) => any) | undefined;
|
|
1663
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "textDirection" | "stretchLabel">;
|
|
1655
1664
|
$attrs: {
|
|
1656
1665
|
[x: string]: unknown;
|
|
1657
1666
|
};
|
|
@@ -1663,42 +1672,51 @@ export declare const components: {
|
|
|
1663
1672
|
}>;
|
|
1664
1673
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
1665
1674
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
1666
|
-
$emit: (event: "change", value: string) => void;
|
|
1675
|
+
$emit: (event: "change", value: string | boolean) => void;
|
|
1667
1676
|
$el: any;
|
|
1668
1677
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1669
|
-
|
|
1678
|
+
label: {
|
|
1670
1679
|
type: import("vue").PropType<string>;
|
|
1671
1680
|
required: true;
|
|
1672
1681
|
};
|
|
1673
|
-
|
|
1682
|
+
class: {
|
|
1683
|
+
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
1684
|
+
};
|
|
1685
|
+
id: {
|
|
1674
1686
|
type: import("vue").PropType<string>;
|
|
1675
1687
|
required: true;
|
|
1676
1688
|
};
|
|
1677
1689
|
value: {
|
|
1678
1690
|
type: import("vue").PropType<string>;
|
|
1679
|
-
required: true;
|
|
1680
1691
|
};
|
|
1681
|
-
|
|
1692
|
+
name: {
|
|
1682
1693
|
type: import("vue").PropType<string>;
|
|
1683
1694
|
required: true;
|
|
1684
1695
|
};
|
|
1685
1696
|
checked: {
|
|
1686
1697
|
type: import("vue").PropType<boolean>;
|
|
1687
1698
|
};
|
|
1688
|
-
|
|
1689
|
-
type: import("vue").PropType<
|
|
1699
|
+
textDirection: {
|
|
1700
|
+
type: import("vue").PropType<"left" | "right">;
|
|
1701
|
+
} & {
|
|
1702
|
+
default: string;
|
|
1690
1703
|
};
|
|
1691
1704
|
hideLabel: {
|
|
1692
1705
|
type: import("vue").PropType<boolean>;
|
|
1693
1706
|
};
|
|
1694
|
-
|
|
1707
|
+
stretchLabel: {
|
|
1695
1708
|
type: import("vue").PropType<boolean>;
|
|
1709
|
+
} & {
|
|
1710
|
+
default: boolean;
|
|
1696
1711
|
};
|
|
1697
1712
|
}>> & {
|
|
1698
|
-
onChange?: ((value: string) => any) | undefined;
|
|
1713
|
+
onChange?: ((value: string | boolean) => any) | undefined;
|
|
1699
1714
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1700
|
-
change: (value: string) => void;
|
|
1701
|
-
}, string, {
|
|
1715
|
+
change: (value: string | boolean) => void;
|
|
1716
|
+
}, string, {
|
|
1717
|
+
textDirection: "left" | "right";
|
|
1718
|
+
stretchLabel: boolean;
|
|
1719
|
+
}> & {
|
|
1702
1720
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
1703
1721
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
1704
1722
|
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -1719,74 +1737,89 @@ export declare const components: {
|
|
|
1719
1737
|
$nextTick: typeof import("vue").nextTick;
|
|
1720
1738
|
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
1721
1739
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
1722
|
-
|
|
1740
|
+
label: {
|
|
1723
1741
|
type: import("vue").PropType<string>;
|
|
1724
1742
|
required: true;
|
|
1725
1743
|
};
|
|
1726
|
-
|
|
1744
|
+
class: {
|
|
1745
|
+
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
1746
|
+
};
|
|
1747
|
+
id: {
|
|
1727
1748
|
type: import("vue").PropType<string>;
|
|
1728
1749
|
required: true;
|
|
1729
1750
|
};
|
|
1730
1751
|
value: {
|
|
1731
1752
|
type: import("vue").PropType<string>;
|
|
1732
|
-
required: true;
|
|
1733
1753
|
};
|
|
1734
|
-
|
|
1754
|
+
name: {
|
|
1735
1755
|
type: import("vue").PropType<string>;
|
|
1736
1756
|
required: true;
|
|
1737
1757
|
};
|
|
1738
1758
|
checked: {
|
|
1739
1759
|
type: import("vue").PropType<boolean>;
|
|
1740
1760
|
};
|
|
1741
|
-
|
|
1742
|
-
type: import("vue").PropType<
|
|
1761
|
+
textDirection: {
|
|
1762
|
+
type: import("vue").PropType<"left" | "right">;
|
|
1763
|
+
} & {
|
|
1764
|
+
default: string;
|
|
1743
1765
|
};
|
|
1744
1766
|
hideLabel: {
|
|
1745
1767
|
type: import("vue").PropType<boolean>;
|
|
1746
1768
|
};
|
|
1747
|
-
|
|
1769
|
+
stretchLabel: {
|
|
1748
1770
|
type: import("vue").PropType<boolean>;
|
|
1771
|
+
} & {
|
|
1772
|
+
default: boolean;
|
|
1749
1773
|
};
|
|
1750
1774
|
}>> & {
|
|
1751
|
-
onChange?: ((value: string) => any) | undefined;
|
|
1775
|
+
onChange?: ((value: string | boolean) => any) | undefined;
|
|
1752
1776
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
1753
1777
|
__isFragment?: undefined;
|
|
1754
1778
|
__isTeleport?: undefined;
|
|
1755
1779
|
__isSuspense?: undefined;
|
|
1756
1780
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1757
|
-
|
|
1781
|
+
label: {
|
|
1758
1782
|
type: import("vue").PropType<string>;
|
|
1759
1783
|
required: true;
|
|
1760
1784
|
};
|
|
1761
|
-
|
|
1785
|
+
class: {
|
|
1786
|
+
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
1787
|
+
};
|
|
1788
|
+
id: {
|
|
1762
1789
|
type: import("vue").PropType<string>;
|
|
1763
1790
|
required: true;
|
|
1764
1791
|
};
|
|
1765
1792
|
value: {
|
|
1766
1793
|
type: import("vue").PropType<string>;
|
|
1767
|
-
required: true;
|
|
1768
1794
|
};
|
|
1769
|
-
|
|
1795
|
+
name: {
|
|
1770
1796
|
type: import("vue").PropType<string>;
|
|
1771
1797
|
required: true;
|
|
1772
1798
|
};
|
|
1773
1799
|
checked: {
|
|
1774
1800
|
type: import("vue").PropType<boolean>;
|
|
1775
1801
|
};
|
|
1776
|
-
|
|
1777
|
-
type: import("vue").PropType<
|
|
1802
|
+
textDirection: {
|
|
1803
|
+
type: import("vue").PropType<"left" | "right">;
|
|
1804
|
+
} & {
|
|
1805
|
+
default: string;
|
|
1778
1806
|
};
|
|
1779
1807
|
hideLabel: {
|
|
1780
1808
|
type: import("vue").PropType<boolean>;
|
|
1781
1809
|
};
|
|
1782
|
-
|
|
1810
|
+
stretchLabel: {
|
|
1783
1811
|
type: import("vue").PropType<boolean>;
|
|
1812
|
+
} & {
|
|
1813
|
+
default: boolean;
|
|
1784
1814
|
};
|
|
1785
1815
|
}>> & {
|
|
1786
|
-
onChange?: ((value: string) => any) | undefined;
|
|
1816
|
+
onChange?: ((value: string | boolean) => any) | undefined;
|
|
1787
1817
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1788
|
-
change: (value: string) => void;
|
|
1789
|
-
}, string, {
|
|
1818
|
+
change: (value: string | boolean) => void;
|
|
1819
|
+
}, string, {
|
|
1820
|
+
textDirection: "left" | "right";
|
|
1821
|
+
stretchLabel: boolean;
|
|
1822
|
+
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1790
1823
|
$slots: {};
|
|
1791
1824
|
});
|
|
1792
1825
|
SolDropdown: {
|
|
@@ -2876,7 +2909,7 @@ export declare const components: {
|
|
|
2876
2909
|
$data: {};
|
|
2877
2910
|
$props: Partial<{
|
|
2878
2911
|
label: string;
|
|
2879
|
-
position: ("bottom" | "top") | ("
|
|
2912
|
+
position: ("bottom" | "top") | ("left" | "right");
|
|
2880
2913
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
2881
2914
|
label: {
|
|
2882
2915
|
type: import("vue").PropType<string>;
|
|
@@ -2888,7 +2921,7 @@ export declare const components: {
|
|
|
2888
2921
|
required: true;
|
|
2889
2922
|
};
|
|
2890
2923
|
position: {
|
|
2891
|
-
type: import("vue").PropType<("bottom" | "top") | ("
|
|
2924
|
+
type: import("vue").PropType<("bottom" | "top") | ("left" | "right")>;
|
|
2892
2925
|
} & {
|
|
2893
2926
|
default: string;
|
|
2894
2927
|
};
|
|
@@ -2917,13 +2950,13 @@ export declare const components: {
|
|
|
2917
2950
|
required: true;
|
|
2918
2951
|
};
|
|
2919
2952
|
position: {
|
|
2920
|
-
type: import("vue").PropType<("bottom" | "top") | ("
|
|
2953
|
+
type: import("vue").PropType<("bottom" | "top") | ("left" | "right")>;
|
|
2921
2954
|
} & {
|
|
2922
2955
|
default: string;
|
|
2923
2956
|
};
|
|
2924
2957
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
2925
2958
|
label: string;
|
|
2926
|
-
position: ("bottom" | "top") | ("
|
|
2959
|
+
position: ("bottom" | "top") | ("left" | "right");
|
|
2927
2960
|
}> & {
|
|
2928
2961
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
2929
2962
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -2955,7 +2988,7 @@ export declare const components: {
|
|
|
2955
2988
|
required: true;
|
|
2956
2989
|
};
|
|
2957
2990
|
position: {
|
|
2958
|
-
type: import("vue").PropType<("bottom" | "top") | ("
|
|
2991
|
+
type: import("vue").PropType<("bottom" | "top") | ("left" | "right")>;
|
|
2959
2992
|
} & {
|
|
2960
2993
|
default: string;
|
|
2961
2994
|
};
|
|
@@ -2974,13 +3007,13 @@ export declare const components: {
|
|
|
2974
3007
|
required: true;
|
|
2975
3008
|
};
|
|
2976
3009
|
position: {
|
|
2977
|
-
type: import("vue").PropType<("bottom" | "top") | ("
|
|
3010
|
+
type: import("vue").PropType<("bottom" | "top") | ("left" | "right")>;
|
|
2978
3011
|
} & {
|
|
2979
3012
|
default: string;
|
|
2980
3013
|
};
|
|
2981
3014
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
2982
3015
|
label: string;
|
|
2983
|
-
position: ("bottom" | "top") | ("
|
|
3016
|
+
position: ("bottom" | "top") | ("left" | "right");
|
|
2984
3017
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
2985
3018
|
$slots: {
|
|
2986
3019
|
label: (_: {
|