@club-employes/utopia 2.13.0 → 2.14.0
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/Package-first-DvNPcs9o.js +10 -0
- package/dist/{dark-C5DkMpox.js → dark-DHlcliOD.js} +1 -1
- package/dist/{dark-B1wYWdAc.js → dark-Dx2BoWwM.js} +1 -1
- package/dist/icons-list.json +2 -2
- package/dist/index.d.ts +8 -0
- package/dist/index.js +595 -543
- package/dist/{light-CsZRym9b.js → light-Br4Gysa0.js} +1 -1
- package/dist/{light-B_jsNQNK.js → light-Co_SWOOf.js} +1 -1
- package/dist/tokens/club-employes/dark.css +2 -2
- package/dist/tokens/club-employes/dark.js +3 -3
- package/dist/tokens/club-employes/light.css +2 -2
- package/dist/tokens/club-employes/light.js +3 -3
- package/dist/tokens/gifteo/dark.css +2 -2
- package/dist/tokens/gifteo/dark.js +3 -3
- package/dist/tokens/gifteo/light.css +2 -2
- package/dist/tokens/gifteo/light.js +3 -3
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
- package/dist/package-CoThCbfY.js +0 -4
package/dist/icons-list.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generated": "2025-08-
|
|
2
|
+
"generated": "2025-08-18T15:04:21.873Z",
|
|
3
3
|
"count": 1238,
|
|
4
4
|
"icons": [
|
|
5
5
|
"Accessibility",
|
|
@@ -813,6 +813,7 @@
|
|
|
813
813
|
"Outdent",
|
|
814
814
|
"Package-2",
|
|
815
815
|
"Package-check",
|
|
816
|
+
"Package-first",
|
|
816
817
|
"Package-minus",
|
|
817
818
|
"Package-open",
|
|
818
819
|
"Package-plus",
|
|
@@ -1236,7 +1237,6 @@
|
|
|
1236
1237
|
"Zoom-out",
|
|
1237
1238
|
"globe",
|
|
1238
1239
|
"link",
|
|
1239
|
-
"package",
|
|
1240
1240
|
"phone",
|
|
1241
1241
|
"stethoscope",
|
|
1242
1242
|
"watch"
|
package/dist/index.d.ts
CHANGED
|
@@ -58,6 +58,13 @@ export interface CheckboxProps {
|
|
|
58
58
|
size?: 'small' | 'medium' | 'large'
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
+
export interface SwitchProps {
|
|
62
|
+
modelValue?: boolean
|
|
63
|
+
disabled?: boolean
|
|
64
|
+
size?: 'small' | 'medium' | 'large'
|
|
65
|
+
label?: string
|
|
66
|
+
}
|
|
67
|
+
|
|
61
68
|
export interface DataTableProps {
|
|
62
69
|
columns: Array<{
|
|
63
70
|
key: string
|
|
@@ -99,6 +106,7 @@ export declare const Logo: DefineComponent<LogoProps>
|
|
|
99
106
|
export declare const Menu: DefineComponent<{}>
|
|
100
107
|
export declare const NavItem: DefineComponent<{}>
|
|
101
108
|
export declare const SearchBox: DefineComponent<SearchBoxProps>
|
|
109
|
+
export declare const Switch: DefineComponent<SwitchProps>
|
|
102
110
|
export declare const DataTable: DefineComponent<DataTableProps>
|
|
103
111
|
export declare const ThemeProvider: DefineComponent<ThemeProviderProps>
|
|
104
112
|
export declare const DefaultLayout: DefineComponent<{}>
|