@konstructio/ui 0.0.10 → 0.0.12-alpha.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/components/Button/Button.variants.d.ts +2 -2
- package/dist/components/Button/Button.variants.js +142 -8
- package/dist/components/Sidebar/Sidebar.d.ts +5 -0
- package/dist/components/Sidebar/Sidebar.js +27 -0
- package/dist/components/Sidebar/Sidebar.types.d.ts +18 -0
- package/dist/components/Sidebar/Sidebar.types.js +1 -0
- package/dist/components/Sidebar/Sidebar.variants.d.ts +6 -0
- package/dist/components/Sidebar/Sidebar.variants.js +57 -0
- package/dist/components/Sidebar/components/Footer/Footer.d.ts +3 -0
- package/dist/components/Sidebar/components/Footer/Footer.js +22 -0
- package/dist/components/Sidebar/components/Footer/Footer.types.d.ts +6 -0
- package/dist/components/Sidebar/components/Footer/Footer.types.js +1 -0
- package/dist/components/Sidebar/components/Footer/Footer.variants.d.ts +3 -0
- package/dist/components/Sidebar/components/Footer/Footer.variants.js +19 -0
- package/dist/components/Sidebar/components/Logo/Logo.d.ts +3 -0
- package/dist/components/Sidebar/components/Logo/Logo.js +20 -0
- package/dist/components/Sidebar/components/Logo/Logo.types.d.ts +6 -0
- package/dist/components/Sidebar/components/Logo/Logo.types.js +1 -0
- package/dist/components/Sidebar/components/Logo/Logo.variants.d.ts +3 -0
- package/dist/components/Sidebar/components/Logo/Logo.variants.js +45 -0
- package/dist/components/Sidebar/components/Navigation/Navigation.d.ts +4 -0
- package/dist/components/Sidebar/components/Navigation/Navigation.js +34 -0
- package/dist/components/Sidebar/components/Navigation/Navigation.types.d.ts +16 -0
- package/dist/components/Sidebar/components/Navigation/Navigation.types.js +1 -0
- package/dist/components/Sidebar/components/Navigation/Navigation.variants.d.ts +3 -0
- package/dist/components/Sidebar/components/Navigation/Navigation.variants.js +19 -0
- package/dist/components/Sidebar/components/NavigationGroup/NavigationGroup.d.ts +3 -0
- package/dist/components/Sidebar/components/NavigationGroup/NavigationGroup.js +41 -0
- package/dist/components/Sidebar/components/NavigationGroup/NavigationGroup.types.d.ts +8 -0
- package/dist/components/Sidebar/components/NavigationGroup/NavigationGroup.types.js +1 -0
- package/dist/components/Sidebar/components/NavigationGroup/NavigationGroup.variants.d.ts +3 -0
- package/dist/components/Sidebar/components/NavigationGroup/NavigationGroup.variants.js +16 -0
- package/dist/components/Sidebar/components/NavigationOption/NavigationOption.d.ts +3 -0
- package/dist/components/Sidebar/components/NavigationOption/NavigationOption.js +35 -0
- package/dist/components/Sidebar/components/NavigationOption/NavigationOption.types.d.ts +17 -0
- package/dist/components/Sidebar/components/NavigationOption/NavigationOption.types.js +1 -0
- package/dist/components/Sidebar/components/NavigationOption/NavigationOption.variants.d.ts +4 -0
- package/dist/components/Sidebar/components/NavigationOption/NavigationOption.variants.js +52 -0
- package/dist/components/Sidebar/components/NavigationSeparator/NavigationSeparator.d.ts +3 -0
- package/dist/components/Sidebar/components/NavigationSeparator/NavigationSeparator.js +24 -0
- package/dist/components/Sidebar/components/NavigationSeparator/NavigationSeparator.types.d.ts +5 -0
- package/dist/components/Sidebar/components/NavigationSeparator/NavigationSeparator.types.js +1 -0
- package/dist/components/Sidebar/components/NavigationSeparator/NavigationSeparator.variants.d.ts +3 -0
- package/dist/components/Sidebar/components/NavigationSeparator/NavigationSeparator.variants.js +19 -0
- package/dist/components/Sidebar/components/NavigationTitle/NavigationTitle.d.ts +3 -0
- package/dist/components/Sidebar/components/NavigationTitle/NavigationTitle.js +27 -0
- package/dist/components/Sidebar/components/NavigationTitle/NavigationTitle.types.d.ts +8 -0
- package/dist/components/Sidebar/components/NavigationTitle/NavigationTitle.types.js +1 -0
- package/dist/components/Sidebar/components/NavigationTitle/NavigationTitle.variants.d.ts +3 -0
- package/dist/components/Sidebar/components/NavigationTitle/NavigationTitle.variants.js +23 -0
- package/dist/components/Sidebar/components/Wrapper/Wrapper.d.ts +3 -0
- package/dist/components/Sidebar/components/Wrapper/Wrapper.js +85 -0
- package/dist/components/Sidebar/components/index.d.ts +15 -0
- package/dist/components/Sidebar/components/index.js +18 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +44 -30
- package/dist/index.js +46 -32
- package/dist/package.json +31 -16
- package/dist/plugins/utils/colors.d.ts +5 -0
- package/dist/plugins/utils/colors.js +6 -1
- package/dist/styles.css +1 -1
- package/dist/utils/index.js +747 -530
- package/package.json +31 -16
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@konstructio/ui",
|
|
3
3
|
"description": "A set of reusable and customizable React components built for konstruct.io",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "0.0.
|
|
5
|
+
"version": "0.0.12-alpha.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "dist/index.js",
|
|
@@ -69,16 +69,26 @@
|
|
|
69
69
|
"react-feather": "^2.0.10",
|
|
70
70
|
"react-focus-lock": "^2.13.5",
|
|
71
71
|
"react-remove-scroll": "^2.6.3",
|
|
72
|
-
"tailwind-merge": "^
|
|
72
|
+
"tailwind-merge": "^3.0.1"
|
|
73
73
|
},
|
|
74
74
|
"peerDependencies": {
|
|
75
75
|
"@types/react": "*",
|
|
76
76
|
"@types/react-dom": "*",
|
|
77
77
|
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0",
|
|
78
78
|
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0",
|
|
79
|
-
"react-router-dom": "^7"
|
|
79
|
+
"react-router-dom": "^7",
|
|
80
|
+
"tailwindcss": "^3"
|
|
80
81
|
},
|
|
81
82
|
"peerDependenciesMeta": {
|
|
83
|
+
"react": {
|
|
84
|
+
"optional": false
|
|
85
|
+
},
|
|
86
|
+
"react-dom": {
|
|
87
|
+
"optional": false
|
|
88
|
+
},
|
|
89
|
+
"tailwindcss": {
|
|
90
|
+
"optional": false
|
|
91
|
+
},
|
|
82
92
|
"@types/react": {
|
|
83
93
|
"optional": true
|
|
84
94
|
},
|
|
@@ -90,26 +100,28 @@
|
|
|
90
100
|
}
|
|
91
101
|
},
|
|
92
102
|
"devDependencies": {
|
|
93
|
-
"@
|
|
94
|
-
"@storybook/addon-
|
|
95
|
-
"@storybook/addon-
|
|
96
|
-
"@storybook/addon-
|
|
103
|
+
"@rollup/plugin-alias": "^5.1.1",
|
|
104
|
+
"@storybook/addon-docs": "^8.5.3",
|
|
105
|
+
"@storybook/addon-essentials": "^8.5.3",
|
|
106
|
+
"@storybook/addon-interactions": "^8.5.3",
|
|
107
|
+
"@storybook/addon-links": "^8.5.3",
|
|
97
108
|
"@storybook/addon-styling-webpack": "^1.0.1",
|
|
98
|
-
"@storybook/blocks": "^8.5.
|
|
99
|
-
"@storybook/react": "^8.5.
|
|
100
|
-
"@storybook/react-vite": "^8.5.
|
|
101
|
-
"@storybook/test": "^8.5.
|
|
109
|
+
"@storybook/blocks": "^8.5.3",
|
|
110
|
+
"@storybook/react": "^8.5.3",
|
|
111
|
+
"@storybook/react-vite": "^8.5.3",
|
|
112
|
+
"@storybook/test": "^8.5.3",
|
|
102
113
|
"@testing-library/jest-dom": "^6.6.3",
|
|
103
114
|
"@testing-library/react": "^16.2.0",
|
|
104
115
|
"@testing-library/user-event": "^14.6.1",
|
|
105
116
|
"@types/jest-axe": "^3.5.9",
|
|
106
117
|
"@types/js-cookie": "^3.0.6",
|
|
118
|
+
"@types/lodash": "^4.17.15",
|
|
107
119
|
"@types/react": "^19.0.8",
|
|
108
120
|
"@types/react-dom": "^19.0.3",
|
|
109
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
110
|
-
"@typescript-eslint/parser": "^8.
|
|
121
|
+
"@typescript-eslint/eslint-plugin": "^8.23.0",
|
|
122
|
+
"@typescript-eslint/parser": "^8.23.0",
|
|
111
123
|
"@vitejs/plugin-react": "^4.3.4",
|
|
112
|
-
"@vitest/coverage-v8": "^3.0.
|
|
124
|
+
"@vitest/coverage-v8": "^3.0.5",
|
|
113
125
|
"autoprefixer": "^10.4.20",
|
|
114
126
|
"eslint": "^8.57.0",
|
|
115
127
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
@@ -120,16 +132,19 @@
|
|
|
120
132
|
"jest": "^29.7.0",
|
|
121
133
|
"jest-axe": "^9.0.0",
|
|
122
134
|
"jsdom": "^26.0.0",
|
|
135
|
+
"lodash": "^4.17.21",
|
|
123
136
|
"postcss": "^8.5.1",
|
|
124
137
|
"prettier": "^3.4.2",
|
|
125
138
|
"rimraf": "^6.0.1",
|
|
126
|
-
"storybook": "^8.5.
|
|
139
|
+
"storybook": "^8.5.3",
|
|
127
140
|
"tailwindcss": "^3.4.17",
|
|
128
141
|
"ts-node": "^10.9.2",
|
|
129
142
|
"typescript": "^5.7.3",
|
|
130
143
|
"vite": "^6.0.11",
|
|
131
144
|
"vite-plugin-dts": "^4.5.0",
|
|
132
145
|
"vite-plugin-lib-inject-css": "^2.2.1",
|
|
133
|
-
"
|
|
146
|
+
"vite-plugin-svgr": "^4.3.0",
|
|
147
|
+
"vite-tsconfig-paths": "^5.1.4",
|
|
148
|
+
"vitest": "^3.0.5"
|
|
134
149
|
}
|
|
135
150
|
}
|