@public-ui/vue 1.6.0-rc.11 → 1.6.0-rc.13
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/index.cjs +12 -0
- package/dist/index.mjs +12 -0
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -257,6 +257,7 @@ const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", v
|
|
|
257
257
|
"_required",
|
|
258
258
|
"_syncValueBySelector",
|
|
259
259
|
"_tabIndex",
|
|
260
|
+
"_tooltipAlign",
|
|
260
261
|
"_touched",
|
|
261
262
|
"_type",
|
|
262
263
|
"_value",
|
|
@@ -279,6 +280,7 @@ const KolInputColor = /* @__PURE__ */ defineContainer("kol-input-color", void 0,
|
|
|
279
280
|
"_smartButton",
|
|
280
281
|
"_syncValueBySelector",
|
|
281
282
|
"_tabIndex",
|
|
283
|
+
"_tooltipAlign",
|
|
282
284
|
"_touched",
|
|
283
285
|
"_value"
|
|
284
286
|
]);
|
|
@@ -304,6 +306,7 @@ const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
|
304
306
|
"_syncValueBySelector",
|
|
305
307
|
"_step",
|
|
306
308
|
"_tabIndex",
|
|
309
|
+
"_tooltipAlign",
|
|
307
310
|
"_touched",
|
|
308
311
|
"_type",
|
|
309
312
|
"_value"
|
|
@@ -333,6 +336,7 @@ const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0,
|
|
|
333
336
|
"_smartButton",
|
|
334
337
|
"_syncValueBySelector",
|
|
335
338
|
"_tabIndex",
|
|
339
|
+
"_tooltipAlign",
|
|
336
340
|
"_touched",
|
|
337
341
|
"_value"
|
|
338
342
|
]);
|
|
@@ -354,6 +358,7 @@ const KolInputFile = /* @__PURE__ */ defineContainer("kol-input-file", void 0, [
|
|
|
354
358
|
"_smartButton",
|
|
355
359
|
"_syncValueBySelector",
|
|
356
360
|
"_tabIndex",
|
|
361
|
+
"_tooltipAlign",
|
|
357
362
|
"_touched",
|
|
358
363
|
"_value"
|
|
359
364
|
]);
|
|
@@ -380,6 +385,7 @@ const KolInputNumber = /* @__PURE__ */ defineContainer("kol-input-number", void
|
|
|
380
385
|
"_step",
|
|
381
386
|
"_syncValueBySelector",
|
|
382
387
|
"_tabIndex",
|
|
388
|
+
"_tooltipAlign",
|
|
383
389
|
"_touched",
|
|
384
390
|
"_type",
|
|
385
391
|
"_value"
|
|
@@ -407,6 +413,7 @@ const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", v
|
|
|
407
413
|
"_smartButton",
|
|
408
414
|
"_syncValueBySelector",
|
|
409
415
|
"_tabIndex",
|
|
416
|
+
"_tooltipAlign",
|
|
410
417
|
"_touched",
|
|
411
418
|
"_value"
|
|
412
419
|
]);
|
|
@@ -426,6 +433,7 @@ const KolInputRadio = /* @__PURE__ */ defineContainer("kol-input-radio", void 0,
|
|
|
426
433
|
"_required",
|
|
427
434
|
"_syncValueBySelector",
|
|
428
435
|
"_tabIndex",
|
|
436
|
+
"_tooltipAlign",
|
|
429
437
|
"_touched",
|
|
430
438
|
"_value"
|
|
431
439
|
]);
|
|
@@ -448,6 +456,7 @@ const KolInputRange = /* @__PURE__ */ defineContainer("kol-input-range", void 0,
|
|
|
448
456
|
"_step",
|
|
449
457
|
"_syncValueBySelector",
|
|
450
458
|
"_tabIndex",
|
|
459
|
+
"_tooltipAlign",
|
|
451
460
|
"_touched",
|
|
452
461
|
"_value"
|
|
453
462
|
]);
|
|
@@ -475,6 +484,7 @@ const KolInputText = /* @__PURE__ */ defineContainer("kol-input-text", void 0, [
|
|
|
475
484
|
"_smartButton",
|
|
476
485
|
"_syncValueBySelector",
|
|
477
486
|
"_tabIndex",
|
|
487
|
+
"_tooltipAlign",
|
|
478
488
|
"_touched",
|
|
479
489
|
"_type",
|
|
480
490
|
"_value"
|
|
@@ -612,6 +622,7 @@ const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
|
612
622
|
"_size",
|
|
613
623
|
"_syncValueBySelector",
|
|
614
624
|
"_tabIndex",
|
|
625
|
+
"_tooltipAlign",
|
|
615
626
|
"_touched",
|
|
616
627
|
"_value"
|
|
617
628
|
]);
|
|
@@ -694,6 +705,7 @@ const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
|
694
705
|
"_rows",
|
|
695
706
|
"_syncValueBySelector",
|
|
696
707
|
"_tabIndex",
|
|
708
|
+
"_tooltipAlign",
|
|
697
709
|
"_touched",
|
|
698
710
|
"_value"
|
|
699
711
|
]);
|
package/dist/index.mjs
CHANGED
|
@@ -255,6 +255,7 @@ const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", v
|
|
|
255
255
|
"_required",
|
|
256
256
|
"_syncValueBySelector",
|
|
257
257
|
"_tabIndex",
|
|
258
|
+
"_tooltipAlign",
|
|
258
259
|
"_touched",
|
|
259
260
|
"_type",
|
|
260
261
|
"_value",
|
|
@@ -277,6 +278,7 @@ const KolInputColor = /* @__PURE__ */ defineContainer("kol-input-color", void 0,
|
|
|
277
278
|
"_smartButton",
|
|
278
279
|
"_syncValueBySelector",
|
|
279
280
|
"_tabIndex",
|
|
281
|
+
"_tooltipAlign",
|
|
280
282
|
"_touched",
|
|
281
283
|
"_value"
|
|
282
284
|
]);
|
|
@@ -302,6 +304,7 @@ const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
|
302
304
|
"_syncValueBySelector",
|
|
303
305
|
"_step",
|
|
304
306
|
"_tabIndex",
|
|
307
|
+
"_tooltipAlign",
|
|
305
308
|
"_touched",
|
|
306
309
|
"_type",
|
|
307
310
|
"_value"
|
|
@@ -331,6 +334,7 @@ const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0,
|
|
|
331
334
|
"_smartButton",
|
|
332
335
|
"_syncValueBySelector",
|
|
333
336
|
"_tabIndex",
|
|
337
|
+
"_tooltipAlign",
|
|
334
338
|
"_touched",
|
|
335
339
|
"_value"
|
|
336
340
|
]);
|
|
@@ -352,6 +356,7 @@ const KolInputFile = /* @__PURE__ */ defineContainer("kol-input-file", void 0, [
|
|
|
352
356
|
"_smartButton",
|
|
353
357
|
"_syncValueBySelector",
|
|
354
358
|
"_tabIndex",
|
|
359
|
+
"_tooltipAlign",
|
|
355
360
|
"_touched",
|
|
356
361
|
"_value"
|
|
357
362
|
]);
|
|
@@ -378,6 +383,7 @@ const KolInputNumber = /* @__PURE__ */ defineContainer("kol-input-number", void
|
|
|
378
383
|
"_step",
|
|
379
384
|
"_syncValueBySelector",
|
|
380
385
|
"_tabIndex",
|
|
386
|
+
"_tooltipAlign",
|
|
381
387
|
"_touched",
|
|
382
388
|
"_type",
|
|
383
389
|
"_value"
|
|
@@ -405,6 +411,7 @@ const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", v
|
|
|
405
411
|
"_smartButton",
|
|
406
412
|
"_syncValueBySelector",
|
|
407
413
|
"_tabIndex",
|
|
414
|
+
"_tooltipAlign",
|
|
408
415
|
"_touched",
|
|
409
416
|
"_value"
|
|
410
417
|
]);
|
|
@@ -424,6 +431,7 @@ const KolInputRadio = /* @__PURE__ */ defineContainer("kol-input-radio", void 0,
|
|
|
424
431
|
"_required",
|
|
425
432
|
"_syncValueBySelector",
|
|
426
433
|
"_tabIndex",
|
|
434
|
+
"_tooltipAlign",
|
|
427
435
|
"_touched",
|
|
428
436
|
"_value"
|
|
429
437
|
]);
|
|
@@ -446,6 +454,7 @@ const KolInputRange = /* @__PURE__ */ defineContainer("kol-input-range", void 0,
|
|
|
446
454
|
"_step",
|
|
447
455
|
"_syncValueBySelector",
|
|
448
456
|
"_tabIndex",
|
|
457
|
+
"_tooltipAlign",
|
|
449
458
|
"_touched",
|
|
450
459
|
"_value"
|
|
451
460
|
]);
|
|
@@ -473,6 +482,7 @@ const KolInputText = /* @__PURE__ */ defineContainer("kol-input-text", void 0, [
|
|
|
473
482
|
"_smartButton",
|
|
474
483
|
"_syncValueBySelector",
|
|
475
484
|
"_tabIndex",
|
|
485
|
+
"_tooltipAlign",
|
|
476
486
|
"_touched",
|
|
477
487
|
"_type",
|
|
478
488
|
"_value"
|
|
@@ -610,6 +620,7 @@ const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
|
610
620
|
"_size",
|
|
611
621
|
"_syncValueBySelector",
|
|
612
622
|
"_tabIndex",
|
|
623
|
+
"_tooltipAlign",
|
|
613
624
|
"_touched",
|
|
614
625
|
"_value"
|
|
615
626
|
]);
|
|
@@ -692,6 +703,7 @@ const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
|
692
703
|
"_rows",
|
|
693
704
|
"_syncValueBySelector",
|
|
694
705
|
"_tabIndex",
|
|
706
|
+
"_tooltipAlign",
|
|
695
707
|
"_touched",
|
|
696
708
|
"_value"
|
|
697
709
|
]);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/vue",
|
|
3
|
-
"version": "1.6.0-rc.
|
|
3
|
+
"version": "1.6.0-rc.13",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": "https://github.com/public-ui/kolibri",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@babel/types": "7.22.5",
|
|
50
|
-
"@public-ui/components": "1.6.0-rc.
|
|
50
|
+
"@public-ui/components": "1.6.0-rc.13",
|
|
51
51
|
"@types/minimatch": "5.1.2",
|
|
52
52
|
"@types/minimist": "1.2.2",
|
|
53
53
|
"@types/node": "ts4.9",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"unbuild": "1.2.1"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
|
-
"@public-ui/components": "1.6.0-rc.
|
|
60
|
+
"@public-ui/components": "1.6.0-rc.13",
|
|
61
61
|
"vue": ">=3"
|
|
62
62
|
},
|
|
63
63
|
"sideEffects": false,
|