@public-ui/vue 1.6.0-rc.3 → 1.6.0-rc.5
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
|
@@ -253,6 +253,7 @@ const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", v
|
|
|
253
253
|
"_name",
|
|
254
254
|
"_on",
|
|
255
255
|
"_required",
|
|
256
|
+
"_syncValueBySelector",
|
|
256
257
|
"_tabIndex",
|
|
257
258
|
"_touched",
|
|
258
259
|
"_type",
|
|
@@ -274,6 +275,7 @@ const KolInputColor = /* @__PURE__ */ defineContainer("kol-input-color", void 0,
|
|
|
274
275
|
"_name",
|
|
275
276
|
"_on",
|
|
276
277
|
"_smartButton",
|
|
278
|
+
"_syncValueBySelector",
|
|
277
279
|
"_tabIndex",
|
|
278
280
|
"_touched",
|
|
279
281
|
"_value"
|
|
@@ -297,6 +299,7 @@ const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
|
297
299
|
"_readOnly",
|
|
298
300
|
"_required",
|
|
299
301
|
"_smartButton",
|
|
302
|
+
"_syncValueBySelector",
|
|
300
303
|
"_step",
|
|
301
304
|
"_tabIndex",
|
|
302
305
|
"_touched",
|
|
@@ -325,6 +328,7 @@ const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0,
|
|
|
325
328
|
"_required",
|
|
326
329
|
"_size",
|
|
327
330
|
"_smartButton",
|
|
331
|
+
"_syncValueBySelector",
|
|
328
332
|
"_tabIndex",
|
|
329
333
|
"_touched",
|
|
330
334
|
"_value"
|
|
@@ -345,6 +349,7 @@ const KolInputFile = /* @__PURE__ */ defineContainer("kol-input-file", void 0, [
|
|
|
345
349
|
"_on",
|
|
346
350
|
"_required",
|
|
347
351
|
"_smartButton",
|
|
352
|
+
"_syncValueBySelector",
|
|
348
353
|
"_tabIndex",
|
|
349
354
|
"_touched",
|
|
350
355
|
"_value"
|
|
@@ -370,6 +375,7 @@ const KolInputNumber = /* @__PURE__ */ defineContainer("kol-input-number", void
|
|
|
370
375
|
"_required",
|
|
371
376
|
"_smartButton",
|
|
372
377
|
"_step",
|
|
378
|
+
"_syncValueBySelector",
|
|
373
379
|
"_tabIndex",
|
|
374
380
|
"_touched",
|
|
375
381
|
"_type",
|
|
@@ -395,6 +401,7 @@ const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", v
|
|
|
395
401
|
"_required",
|
|
396
402
|
"_size",
|
|
397
403
|
"_smartButton",
|
|
404
|
+
"_syncValueBySelector",
|
|
398
405
|
"_tabIndex",
|
|
399
406
|
"_touched",
|
|
400
407
|
"_value"
|
|
@@ -413,6 +420,7 @@ const KolInputRadio = /* @__PURE__ */ defineContainer("kol-input-radio", void 0,
|
|
|
413
420
|
"_on",
|
|
414
421
|
"_orientation",
|
|
415
422
|
"_required",
|
|
423
|
+
"_syncValueBySelector",
|
|
416
424
|
"_tabIndex",
|
|
417
425
|
"_touched",
|
|
418
426
|
"_value"
|
|
@@ -434,6 +442,7 @@ const KolInputRange = /* @__PURE__ */ defineContainer("kol-input-range", void 0,
|
|
|
434
442
|
"_name",
|
|
435
443
|
"_on",
|
|
436
444
|
"_step",
|
|
445
|
+
"_syncValueBySelector",
|
|
437
446
|
"_tabIndex",
|
|
438
447
|
"_touched",
|
|
439
448
|
"_value"
|
|
@@ -459,6 +468,7 @@ const KolInputText = /* @__PURE__ */ defineContainer("kol-input-text", void 0, [
|
|
|
459
468
|
"_required",
|
|
460
469
|
"_size",
|
|
461
470
|
"_smartButton",
|
|
471
|
+
"_syncValueBySelector",
|
|
462
472
|
"_tabIndex",
|
|
463
473
|
"_touched",
|
|
464
474
|
"_type",
|
|
@@ -592,6 +602,7 @@ const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
|
592
602
|
"_on",
|
|
593
603
|
"_required",
|
|
594
604
|
"_size",
|
|
605
|
+
"_syncValueBySelector",
|
|
595
606
|
"_tabIndex",
|
|
596
607
|
"_touched",
|
|
597
608
|
"_value"
|
|
@@ -670,6 +681,7 @@ const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
|
670
681
|
"_resize",
|
|
671
682
|
"_required",
|
|
672
683
|
"_rows",
|
|
684
|
+
"_syncValueBySelector",
|
|
673
685
|
"_tabIndex",
|
|
674
686
|
"_touched",
|
|
675
687
|
"_value"
|
package/dist/index.mjs
CHANGED
|
@@ -251,6 +251,7 @@ const KolInputCheckbox = /* @__PURE__ */ defineContainer("kol-input-checkbox", v
|
|
|
251
251
|
"_name",
|
|
252
252
|
"_on",
|
|
253
253
|
"_required",
|
|
254
|
+
"_syncValueBySelector",
|
|
254
255
|
"_tabIndex",
|
|
255
256
|
"_touched",
|
|
256
257
|
"_type",
|
|
@@ -272,6 +273,7 @@ const KolInputColor = /* @__PURE__ */ defineContainer("kol-input-color", void 0,
|
|
|
272
273
|
"_name",
|
|
273
274
|
"_on",
|
|
274
275
|
"_smartButton",
|
|
276
|
+
"_syncValueBySelector",
|
|
275
277
|
"_tabIndex",
|
|
276
278
|
"_touched",
|
|
277
279
|
"_value"
|
|
@@ -295,6 +297,7 @@ const KolInputDate = /* @__PURE__ */ defineContainer("kol-input-date", void 0, [
|
|
|
295
297
|
"_readOnly",
|
|
296
298
|
"_required",
|
|
297
299
|
"_smartButton",
|
|
300
|
+
"_syncValueBySelector",
|
|
298
301
|
"_step",
|
|
299
302
|
"_tabIndex",
|
|
300
303
|
"_touched",
|
|
@@ -323,6 +326,7 @@ const KolInputEmail = /* @__PURE__ */ defineContainer("kol-input-email", void 0,
|
|
|
323
326
|
"_required",
|
|
324
327
|
"_size",
|
|
325
328
|
"_smartButton",
|
|
329
|
+
"_syncValueBySelector",
|
|
326
330
|
"_tabIndex",
|
|
327
331
|
"_touched",
|
|
328
332
|
"_value"
|
|
@@ -343,6 +347,7 @@ const KolInputFile = /* @__PURE__ */ defineContainer("kol-input-file", void 0, [
|
|
|
343
347
|
"_on",
|
|
344
348
|
"_required",
|
|
345
349
|
"_smartButton",
|
|
350
|
+
"_syncValueBySelector",
|
|
346
351
|
"_tabIndex",
|
|
347
352
|
"_touched",
|
|
348
353
|
"_value"
|
|
@@ -368,6 +373,7 @@ const KolInputNumber = /* @__PURE__ */ defineContainer("kol-input-number", void
|
|
|
368
373
|
"_required",
|
|
369
374
|
"_smartButton",
|
|
370
375
|
"_step",
|
|
376
|
+
"_syncValueBySelector",
|
|
371
377
|
"_tabIndex",
|
|
372
378
|
"_touched",
|
|
373
379
|
"_type",
|
|
@@ -393,6 +399,7 @@ const KolInputPassword = /* @__PURE__ */ defineContainer("kol-input-password", v
|
|
|
393
399
|
"_required",
|
|
394
400
|
"_size",
|
|
395
401
|
"_smartButton",
|
|
402
|
+
"_syncValueBySelector",
|
|
396
403
|
"_tabIndex",
|
|
397
404
|
"_touched",
|
|
398
405
|
"_value"
|
|
@@ -411,6 +418,7 @@ const KolInputRadio = /* @__PURE__ */ defineContainer("kol-input-radio", void 0,
|
|
|
411
418
|
"_on",
|
|
412
419
|
"_orientation",
|
|
413
420
|
"_required",
|
|
421
|
+
"_syncValueBySelector",
|
|
414
422
|
"_tabIndex",
|
|
415
423
|
"_touched",
|
|
416
424
|
"_value"
|
|
@@ -432,6 +440,7 @@ const KolInputRange = /* @__PURE__ */ defineContainer("kol-input-range", void 0,
|
|
|
432
440
|
"_name",
|
|
433
441
|
"_on",
|
|
434
442
|
"_step",
|
|
443
|
+
"_syncValueBySelector",
|
|
435
444
|
"_tabIndex",
|
|
436
445
|
"_touched",
|
|
437
446
|
"_value"
|
|
@@ -457,6 +466,7 @@ const KolInputText = /* @__PURE__ */ defineContainer("kol-input-text", void 0, [
|
|
|
457
466
|
"_required",
|
|
458
467
|
"_size",
|
|
459
468
|
"_smartButton",
|
|
469
|
+
"_syncValueBySelector",
|
|
460
470
|
"_tabIndex",
|
|
461
471
|
"_touched",
|
|
462
472
|
"_type",
|
|
@@ -590,6 +600,7 @@ const KolSelect = /* @__PURE__ */ defineContainer("kol-select", void 0, [
|
|
|
590
600
|
"_on",
|
|
591
601
|
"_required",
|
|
592
602
|
"_size",
|
|
603
|
+
"_syncValueBySelector",
|
|
593
604
|
"_tabIndex",
|
|
594
605
|
"_touched",
|
|
595
606
|
"_value"
|
|
@@ -668,6 +679,7 @@ const KolTextarea = /* @__PURE__ */ defineContainer("kol-textarea", void 0, [
|
|
|
668
679
|
"_resize",
|
|
669
680
|
"_required",
|
|
670
681
|
"_rows",
|
|
682
|
+
"_syncValueBySelector",
|
|
671
683
|
"_tabIndex",
|
|
672
684
|
"_touched",
|
|
673
685
|
"_value"
|
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.5",
|
|
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.5",
|
|
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.5",
|
|
61
61
|
"vue": ">=3"
|
|
62
62
|
},
|
|
63
63
|
"sideEffects": false,
|