ropav 0.0.13 → 0.1.2
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/LICENSE +21 -0
- package/README.md +80 -1
- package/dist/accordion.js +1 -4
- package/dist/button-link.js +2 -2
- package/dist/button.js +2 -2
- package/dist/card.css +26 -26
- package/dist/card.js +6 -16
- package/dist/collapse.js +1 -4
- package/dist/components/card/types.d.ts +0 -3
- package/dist/components/dialog/types.d.ts +1 -0
- package/dist/components/dropdown-menu/types.d.ts +2 -6
- package/dist/components/modal/types.d.ts +1 -0
- package/dist/components/overlay/index.d.ts +3 -0
- package/dist/components/overlay/index.js +3 -2
- package/dist/components/overlay/overlay-layer-provider.d.ts +21 -0
- package/dist/components/overlay/types.d.ts +10 -1
- package/dist/components/overlay/useOverlayZIndex.d.ts +4 -0
- package/dist/components/popover/types.d.ts +1 -0
- package/dist/components/slider/index.d.ts +1 -1
- package/dist/components/slider/range-slider.d.ts +7 -11
- package/dist/components/slider/slider.d.ts +7 -14
- package/dist/components/slider/sliderCore.d.ts +7 -4
- package/dist/components/slider/types.d.ts +46 -4
- package/dist/components/slider/useRangeSlider.d.ts +2 -1
- package/dist/components/slider/useSlider.d.ts +13 -3
- package/dist/components/toast/types.d.ts +1 -0
- package/dist/components/tooltip/types.d.ts +1 -0
- package/dist/composables/useOverlayLayer.d.ts +1 -1
- package/dist/dialog.js +7 -2
- package/dist/dropdown-menu.js +18 -21
- package/dist/field.js +1 -1
- package/dist/index.js +3 -2
- package/dist/input.js +1 -1
- package/dist/modal.css +28 -28
- package/dist/modal.js +6 -7
- package/dist/overlay2.js +16 -1
- package/dist/popover.js +8 -6
- package/dist/progress.js +1 -1
- package/dist/select.js +1 -1
- package/dist/slider.css +256 -166
- package/dist/slider.js +334 -140
- package/dist/switch.css +17 -17
- package/dist/switch.js +10 -5
- package/dist/toast.css +21 -21
- package/dist/toast.js +10 -2
- package/dist/tooltip.js +9 -5
- package/dist/unplugin-icons.d.ts +5 -0
- package/dist/unplugin-icons.js +40 -0
- package/dist/{useOverlayLayer.js → useOverlayZIndex.js} +29 -4
- package/docs/public-overlay-layer-api.md +65 -0
- package/docs/public-styles-api.md +5 -6
- package/package.json +25 -12
- package/dist/legacy-unlayered.css +0 -5382
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ropav",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"license": "MIT",
|
|
4
5
|
"type": "module",
|
|
5
|
-
"packageManager": "pnpm@11.
|
|
6
|
+
"packageManager": "pnpm@11.13.1",
|
|
6
7
|
"engines": {
|
|
7
8
|
"node": "^20.19.0 || ^22.13.0 || >=24.0.0"
|
|
8
9
|
},
|
|
@@ -163,8 +164,11 @@
|
|
|
163
164
|
"types": "./dist/components/tooltip/index.d.ts",
|
|
164
165
|
"import": "./dist/components/tooltip/index.js"
|
|
165
166
|
},
|
|
167
|
+
"./unplugin-icons": {
|
|
168
|
+
"types": "./dist/unplugin-icons.d.ts",
|
|
169
|
+
"import": "./dist/unplugin-icons.js"
|
|
170
|
+
},
|
|
166
171
|
"./base.css": "./dist/base.css",
|
|
167
|
-
"./legacy-unlayered.css": "./dist/legacy-unlayered.css",
|
|
168
172
|
"./styles-manifest": "./src/styles/styles-manifest.json",
|
|
169
173
|
"./styles-manifest.json": "./src/styles/styles-manifest.json",
|
|
170
174
|
"./scss/*.scss": "./src/styles/*.scss"
|
|
@@ -201,7 +205,17 @@
|
|
|
201
205
|
"release": "pnpm run test:package && bumpp --git-check --all --commit \"chore(release): v%s\" --tag \"v%s\" --execute \"pnpm run changelog\""
|
|
202
206
|
},
|
|
203
207
|
"peerDependencies": {
|
|
204
|
-
"vue": "
|
|
208
|
+
"@vue/compiler-vapor": "3.6.0-rc.1",
|
|
209
|
+
"unplugin-icons": "^23.0.1",
|
|
210
|
+
"vue": "^3.6.0-rc.1"
|
|
211
|
+
},
|
|
212
|
+
"peerDependenciesMeta": {
|
|
213
|
+
"@vue/compiler-vapor": {
|
|
214
|
+
"optional": true
|
|
215
|
+
},
|
|
216
|
+
"unplugin-icons": {
|
|
217
|
+
"optional": true
|
|
218
|
+
}
|
|
205
219
|
},
|
|
206
220
|
"dependencies": {
|
|
207
221
|
"@floating-ui/dom": "^1.8.0",
|
|
@@ -209,13 +223,13 @@
|
|
|
209
223
|
},
|
|
210
224
|
"devDependencies": {
|
|
211
225
|
"@iconify-json/lucide": "^1.2.117",
|
|
212
|
-
"@storybook/addon-themes": "^10.5.
|
|
213
|
-
"@storybook/addon-vitest": "^10.5.
|
|
214
|
-
"@storybook/vue3-vite": "^10.5.
|
|
226
|
+
"@storybook/addon-themes": "^10.5.2",
|
|
227
|
+
"@storybook/addon-vitest": "^10.5.2",
|
|
228
|
+
"@storybook/vue3-vite": "^10.5.2",
|
|
215
229
|
"@types/node": "^26.1.1",
|
|
216
230
|
"@vitejs/plugin-vue": "^6.0.8",
|
|
217
231
|
"@vitest/browser-playwright": "^4.1.10",
|
|
218
|
-
"@vue/compiler-vapor": "3.6.0-
|
|
232
|
+
"@vue/compiler-vapor": "3.6.0-rc.1",
|
|
219
233
|
"@vue/tsconfig": "^0.9.1",
|
|
220
234
|
"bumpp": "^11.1.0",
|
|
221
235
|
"conventional-changelog": "^8.1.0",
|
|
@@ -224,16 +238,15 @@
|
|
|
224
238
|
"oxfmt": "^0.59.0",
|
|
225
239
|
"oxlint": "^1.74.0",
|
|
226
240
|
"playwright": "^1.61.1",
|
|
227
|
-
"postcss": "^8.5.19",
|
|
228
241
|
"sass-embedded": "^1.100.0",
|
|
229
|
-
"storybook": "^10.5.
|
|
242
|
+
"storybook": "^10.5.2",
|
|
230
243
|
"style-dictionary": "5.5.0",
|
|
231
244
|
"typescript": "~6.0.3",
|
|
232
245
|
"unplugin-icons": "^23.0.1",
|
|
233
|
-
"vite": "^8.1.
|
|
246
|
+
"vite": "^8.1.5",
|
|
234
247
|
"vite-plugin-dts": "^5.0.3",
|
|
235
248
|
"vitest": "^4.1.10",
|
|
236
|
-
"vue": "3.6.0-
|
|
249
|
+
"vue": "3.6.0-rc.1",
|
|
237
250
|
"vue-tsc": "^3.3.7"
|
|
238
251
|
},
|
|
239
252
|
"repository": {
|