@factoringplus/pl-components-pack-v3 0.8.15 → 0.8.17
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 +17 -17
- package/dist/pl-components-pack-v3.es.js +6 -2
- package/dist/pl-components-pack-v3.umd.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
# Библиотека компонентов Vue 3
|
|
2
|
-
|
|
3
|
-
## Установка
|
|
4
|
-
|
|
5
|
-
```bash
|
|
6
|
-
npm i @factoringplus/pl-components-pack-v3
|
|
7
|
-
```
|
|
8
|
-
|
|
9
|
-
### Добавление компонентов в проект
|
|
10
|
-
|
|
11
|
-
```bash
|
|
12
|
-
// src/main.js
|
|
13
|
-
import components from '@factoringplus/pl-components-pack-v3';
|
|
14
|
-
import '@factoringplus/pl-components-pack-v3/dist/style.css';
|
|
15
|
-
|
|
16
|
-
app.use(components)
|
|
17
|
-
```
|
|
1
|
+
# Библиотека компонентов Vue 3
|
|
2
|
+
|
|
3
|
+
## Установка
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npm i @factoringplus/pl-components-pack-v3
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
### Добавление компонентов в проект
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
// src/main.js
|
|
13
|
+
import components from '@factoringplus/pl-components-pack-v3';
|
|
14
|
+
import '@factoringplus/pl-components-pack-v3/dist/style.css';
|
|
15
|
+
|
|
16
|
+
app.use(components)
|
|
17
|
+
```
|
|
@@ -34942,6 +34942,10 @@ const objectSupport = /* @__PURE__ */ getDefaultExportFromCjs(objectSupportExpor
|
|
|
34942
34942
|
disabled: {
|
|
34943
34943
|
type: Boolean,
|
|
34944
34944
|
default: !1
|
|
34945
|
+
},
|
|
34946
|
+
id: {
|
|
34947
|
+
type: String,
|
|
34948
|
+
default: null
|
|
34945
34949
|
}
|
|
34946
34950
|
},
|
|
34947
34951
|
emits: ["update:modelValue"],
|
|
@@ -34954,7 +34958,7 @@ const objectSupport = /* @__PURE__ */ getDefaultExportFromCjs(objectSupportExpor
|
|
|
34954
34958
|
}), { label: L } = toRefs(j), V = computed$1(() => L.value || "no-label"), re = computed$1(() => V.value === "no-label" ? uniqid() : V.value);
|
|
34955
34959
|
return (ae, le) => (openBlock(), createElementBlock("div", _hoisted_1$2, [
|
|
34956
34960
|
withDirectives(createElementVNode("input", {
|
|
34957
|
-
id:
|
|
34961
|
+
id: g.id,
|
|
34958
34962
|
"onUpdate:modelValue": le[0] || (le[0] = (ue) => z.value = ue),
|
|
34959
34963
|
type: "checkbox",
|
|
34960
34964
|
class: "custom-checkbox",
|
|
@@ -34964,7 +34968,7 @@ const objectSupport = /* @__PURE__ */ getDefaultExportFromCjs(objectSupportExpor
|
|
|
34964
34968
|
[vModelCheckbox, z.value]
|
|
34965
34969
|
]),
|
|
34966
34970
|
createElementVNode("label", {
|
|
34967
|
-
for:
|
|
34971
|
+
for: g.id,
|
|
34968
34972
|
onClick: le[1] || (le[1] = withModifiers(() => {
|
|
34969
34973
|
}, ["stop"]))
|
|
34970
34974
|
}, toDisplayString(V.value !== "no-label" ? V.value : null), 9, _hoisted_3$1)
|