@public-ui/vue 4.0.0-alpha.1 → 4.0.0-alpha.10
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/README.md +2 -2
- package/dist/index.cjs +8 -4
- package/dist/index.mjs +8 -4
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ First, initialize KoliBri with a [theme](https://github.com/public-ui/kolibri/tr
|
|
|
29
29
|
```ts
|
|
30
30
|
import { createApp } from 'vue';
|
|
31
31
|
import { DEFAULT } from '@public-ui/theme-default';
|
|
32
|
-
import { defineCustomElements } from '@public-ui/components/
|
|
32
|
+
import { defineCustomElements } from '@public-ui/components/loader';
|
|
33
33
|
import { register } from '@public-ui/components';
|
|
34
34
|
|
|
35
35
|
register(DEFAULT, defineCustomElements)
|
|
@@ -48,7 +48,7 @@ Then, you can import any component from `@public-ui/vue` and render it within yo
|
|
|
48
48
|
import { KolButton } from '@public-ui/vue';
|
|
49
49
|
</script>
|
|
50
50
|
<template>
|
|
51
|
-
|
|
51
|
+
<KolButton _label="Hello World" />
|
|
52
52
|
</template>
|
|
53
53
|
```
|
|
54
54
|
|
package/dist/index.cjs
CHANGED
|
@@ -107,6 +107,7 @@ const KolAlert = /* @__PURE__ */ defineContainer("kol-alert", void 0, [
|
|
|
107
107
|
"_variant"
|
|
108
108
|
]);
|
|
109
109
|
const KolAvatar = /* @__PURE__ */ defineContainer("kol-avatar", void 0, [
|
|
110
|
+
"_color",
|
|
110
111
|
"_src",
|
|
111
112
|
"_label"
|
|
112
113
|
]);
|
|
@@ -131,6 +132,7 @@ const KolButton = /* @__PURE__ */ defineContainer("kol-button", void 0, [
|
|
|
131
132
|
"_hideLabel",
|
|
132
133
|
"_icons",
|
|
133
134
|
"_id",
|
|
135
|
+
"_inline",
|
|
134
136
|
"_label",
|
|
135
137
|
"_name",
|
|
136
138
|
"_on",
|
|
@@ -152,8 +154,8 @@ const KolButtonLink = /* @__PURE__ */ defineContainer("kol-button-link", void 0,
|
|
|
152
154
|
"_hideLabel",
|
|
153
155
|
"_icons",
|
|
154
156
|
"_id",
|
|
157
|
+
"_inline",
|
|
155
158
|
"_label",
|
|
156
|
-
"_variant",
|
|
157
159
|
"_name",
|
|
158
160
|
"_on",
|
|
159
161
|
"_role",
|
|
@@ -188,6 +190,7 @@ const KolCombobox = /* @__PURE__ */ defineContainer("kol-combobox", void 0, [
|
|
|
188
190
|
"_msg",
|
|
189
191
|
"_name",
|
|
190
192
|
"_on",
|
|
193
|
+
"_hideClearButton",
|
|
191
194
|
"_suggestions",
|
|
192
195
|
"_required",
|
|
193
196
|
"_shortKey",
|
|
@@ -493,8 +496,8 @@ const KolLink = /* @__PURE__ */ defineContainer("kol-link", void 0, [
|
|
|
493
496
|
"_hideLabel",
|
|
494
497
|
"_href",
|
|
495
498
|
"_icons",
|
|
499
|
+
"_inline",
|
|
496
500
|
"_label",
|
|
497
|
-
"_variant",
|
|
498
501
|
"_on",
|
|
499
502
|
"_role",
|
|
500
503
|
"_shortKey",
|
|
@@ -532,8 +535,7 @@ const KolNav = /* @__PURE__ */ defineContainer("kol-nav", void 0, [
|
|
|
532
535
|
"_hasIconsWhenExpanded",
|
|
533
536
|
"_hideLabel",
|
|
534
537
|
"_label",
|
|
535
|
-
"_links"
|
|
536
|
-
"_orientation"
|
|
538
|
+
"_links"
|
|
537
539
|
]);
|
|
538
540
|
const KolPagination = /* @__PURE__ */ defineContainer("kol-pagination", void 0, [
|
|
539
541
|
"_boundaryCount",
|
|
@@ -570,6 +572,7 @@ const KolPopoverButton = /* @__PURE__ */ defineContainer("kol-popover-button", v
|
|
|
570
572
|
"_disabled",
|
|
571
573
|
"_hideLabel",
|
|
572
574
|
"_icons",
|
|
575
|
+
"_inline",
|
|
573
576
|
"_id",
|
|
574
577
|
"_label",
|
|
575
578
|
"_name",
|
|
@@ -594,6 +597,7 @@ const KolPopoverButtonWc = /* @__PURE__ */ defineContainer("kol-popover-button-w
|
|
|
594
597
|
"_hideLabel",
|
|
595
598
|
"_icons",
|
|
596
599
|
"_id",
|
|
600
|
+
"_inline",
|
|
597
601
|
"_label",
|
|
598
602
|
"_name",
|
|
599
603
|
"_on",
|
package/dist/index.mjs
CHANGED
|
@@ -105,6 +105,7 @@ const KolAlert = /* @__PURE__ */ defineContainer("kol-alert", void 0, [
|
|
|
105
105
|
"_variant"
|
|
106
106
|
]);
|
|
107
107
|
const KolAvatar = /* @__PURE__ */ defineContainer("kol-avatar", void 0, [
|
|
108
|
+
"_color",
|
|
108
109
|
"_src",
|
|
109
110
|
"_label"
|
|
110
111
|
]);
|
|
@@ -129,6 +130,7 @@ const KolButton = /* @__PURE__ */ defineContainer("kol-button", void 0, [
|
|
|
129
130
|
"_hideLabel",
|
|
130
131
|
"_icons",
|
|
131
132
|
"_id",
|
|
133
|
+
"_inline",
|
|
132
134
|
"_label",
|
|
133
135
|
"_name",
|
|
134
136
|
"_on",
|
|
@@ -150,8 +152,8 @@ const KolButtonLink = /* @__PURE__ */ defineContainer("kol-button-link", void 0,
|
|
|
150
152
|
"_hideLabel",
|
|
151
153
|
"_icons",
|
|
152
154
|
"_id",
|
|
155
|
+
"_inline",
|
|
153
156
|
"_label",
|
|
154
|
-
"_variant",
|
|
155
157
|
"_name",
|
|
156
158
|
"_on",
|
|
157
159
|
"_role",
|
|
@@ -186,6 +188,7 @@ const KolCombobox = /* @__PURE__ */ defineContainer("kol-combobox", void 0, [
|
|
|
186
188
|
"_msg",
|
|
187
189
|
"_name",
|
|
188
190
|
"_on",
|
|
191
|
+
"_hideClearButton",
|
|
189
192
|
"_suggestions",
|
|
190
193
|
"_required",
|
|
191
194
|
"_shortKey",
|
|
@@ -491,8 +494,8 @@ const KolLink = /* @__PURE__ */ defineContainer("kol-link", void 0, [
|
|
|
491
494
|
"_hideLabel",
|
|
492
495
|
"_href",
|
|
493
496
|
"_icons",
|
|
497
|
+
"_inline",
|
|
494
498
|
"_label",
|
|
495
|
-
"_variant",
|
|
496
499
|
"_on",
|
|
497
500
|
"_role",
|
|
498
501
|
"_shortKey",
|
|
@@ -530,8 +533,7 @@ const KolNav = /* @__PURE__ */ defineContainer("kol-nav", void 0, [
|
|
|
530
533
|
"_hasIconsWhenExpanded",
|
|
531
534
|
"_hideLabel",
|
|
532
535
|
"_label",
|
|
533
|
-
"_links"
|
|
534
|
-
"_orientation"
|
|
536
|
+
"_links"
|
|
535
537
|
]);
|
|
536
538
|
const KolPagination = /* @__PURE__ */ defineContainer("kol-pagination", void 0, [
|
|
537
539
|
"_boundaryCount",
|
|
@@ -568,6 +570,7 @@ const KolPopoverButton = /* @__PURE__ */ defineContainer("kol-popover-button", v
|
|
|
568
570
|
"_disabled",
|
|
569
571
|
"_hideLabel",
|
|
570
572
|
"_icons",
|
|
573
|
+
"_inline",
|
|
571
574
|
"_id",
|
|
572
575
|
"_label",
|
|
573
576
|
"_name",
|
|
@@ -592,6 +595,7 @@ const KolPopoverButtonWc = /* @__PURE__ */ defineContainer("kol-popover-button-w
|
|
|
592
595
|
"_hideLabel",
|
|
593
596
|
"_icons",
|
|
594
597
|
"_id",
|
|
598
|
+
"_inline",
|
|
595
599
|
"_label",
|
|
596
600
|
"_name",
|
|
597
601
|
"_on",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/vue",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.10",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -45,18 +45,18 @@
|
|
|
45
45
|
"vue"
|
|
46
46
|
],
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@babel/types": "7.28.
|
|
48
|
+
"@babel/types": "7.28.5",
|
|
49
49
|
"@types/minimatch": "6.0.0",
|
|
50
50
|
"@types/minimist": "1.2.5",
|
|
51
51
|
"@types/normalize-package-data": "2.4.4",
|
|
52
|
-
"typescript": "5.9.
|
|
52
|
+
"typescript": "5.9.3",
|
|
53
53
|
"unbuild": "3.6.1",
|
|
54
|
-
"vue": "3.5.
|
|
55
|
-
"@public-ui/components": "4.0.0-alpha.
|
|
54
|
+
"vue": "3.5.25",
|
|
55
|
+
"@public-ui/components": "4.0.0-alpha.10"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
|
-
"vue": "^3.5.
|
|
59
|
-
"@public-ui/components": "4.0.0-alpha.
|
|
58
|
+
"vue": "^3.5.25",
|
|
59
|
+
"@public-ui/components": "4.0.0-alpha.10"
|
|
60
60
|
},
|
|
61
61
|
"sideEffects": false,
|
|
62
62
|
"type": "module",
|