@factoringplus/pl-components-pack-v3 1.13.0 → 1.13.4
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 +48 -48
- package/dist/CNAME +1 -1
- package/dist/Close40-4bcbc3bd.cjs +1 -0
- package/dist/{Close40-33b3f990.js → Close40-d450a063.js} +2 -2
- package/dist/{crypto-pro-actual-cades-plugin-7f197d8a.js → crypto-pro-actual-cades-plugin-21690d4e.js} +1 -1
- package/dist/{crypto-pro-actual-cades-plugin-54e213c4.cjs → crypto-pro-actual-cades-plugin-b763ca04.cjs} +1 -1
- package/dist/{entry-e7802dab.js → entry-a2ad1f2f.js} +8836 -8821
- package/dist/entry-c4b485d2.cjs +115 -0
- package/dist/favicon.svg +4 -4
- package/dist/icon/cube20.svg +6 -6
- package/dist/icon/cube24.svg +6 -6
- package/dist/pl-components-pack-v3.cjs.js +1 -1
- package/dist/pl-components-pack-v3.es.js +1 -1
- package/dist/src/assets/calendar.json.d.ts +134 -134
- package/dist/src/components/data/pl-multitab/components/pl-tab-card.vue.d.ts +1 -1
- package/dist/src/components/data/pl-multitab/types/index.d.ts +1 -1
- package/dist/src/components/form/pl-autocomplete/components/pl-default.vue.d.ts +9 -0
- package/dist/src/components/form/pl-autocomplete/index.d.ts +19 -0
- package/dist/src/components/form/pl-autocomplete/pl-autocompete.vue.d.ts +9 -0
- package/dist/src/components/form/pl-autocomplete/types/index.d.ts +2 -0
- package/dist/src/directives/vTap.d.ts +1 -1
- package/dist/style.css +1 -1
- package/package.json +127 -125
- package/dist/Close40-49678fc0.cjs +0 -1
- package/dist/entry-dff9093b.cjs +0 -115
package/README.md
CHANGED
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
# Библиотека компонентов Vue 3
|
|
2
|
-
|
|
3
|
-
## Установка
|
|
4
|
-
|
|
5
|
-
```bash
|
|
6
|
-
npm i @
|
|
7
|
-
```
|
|
8
|
-
|
|
9
|
-
### Добавление компонентов в проект
|
|
10
|
-
|
|
11
|
-
```bash
|
|
12
|
-
// src/main.js
|
|
13
|
-
import * as components from '@
|
|
14
|
-
import '@
|
|
15
|
-
|
|
16
|
-
app.use(components)
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
### Автоматизированное тестирование
|
|
20
|
-
|
|
21
|
-
#### Запуск компонентных тестов
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
npm run test:components
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
#### Построение отчёта покрытия компонентов
|
|
28
|
-
|
|
29
|
-
1. Выполнить в терминале:
|
|
30
|
-
|
|
31
|
-
```bash
|
|
32
|
-
npm run test:components-coverage
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
2. В выводе получить адрес http://localhost:port
|
|
36
|
-
1. Перейти по адресу http://localhost:port/coverage/index.html
|
|
37
|
-
|
|
38
|
-
#### Построение Allure отчёта
|
|
39
|
-
|
|
40
|
-
```bash
|
|
41
|
-
npm run test:allure
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
#### Обновление скриншотов
|
|
45
|
-
|
|
46
|
-
```bash
|
|
47
|
-
npx playwright test -c playwright.config.ts название_файла(например, pl-input.spec.ts) --update-snapshots
|
|
48
|
-
```
|
|
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 * as components from '@factoringplus/pl-components-pack-v3';
|
|
14
|
+
import '@factoringplus/pl-components-pack-v3/dist/style.css';
|
|
15
|
+
|
|
16
|
+
app.use(components)
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### Автоматизированное тестирование
|
|
20
|
+
|
|
21
|
+
#### Запуск компонентных тестов
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
npm run test:components
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
#### Построение отчёта покрытия компонентов
|
|
28
|
+
|
|
29
|
+
1. Выполнить в терминале:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npm run test:components-coverage
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
2. В выводе получить адрес http://localhost:port
|
|
36
|
+
1. Перейти по адресу http://localhost:port/coverage/index.html
|
|
37
|
+
|
|
38
|
+
#### Построение Allure отчёта
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
npm run test:allure
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
#### Обновление скриншотов
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
npx playwright test -c playwright.config.ts название_файла(например, pl-input.spec.ts) --update-snapshots
|
|
48
|
+
```
|
package/dist/CNAME
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
vite-starter.element-plus.org
|
|
1
|
+
vite-starter.element-plus.org
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),t={width:"40",height:"40",viewBox:"0 0 40 40",fill:"none",xmlns:"http://www.w3.org/2000/svg"};function r(o,l){return e.openBlock(),e.createElementBlock("svg",t,[...l[0]||(l[0]=[e.createElementVNode("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M30.0859 9.91409C30.5936 10.4218 30.5936 11.2449 30.0859 11.7526L11.7526 30.0859C11.2449 30.5936 10.4218 30.5936 9.91409 30.0859C9.4064 29.5782 9.4064 28.7551 9.91409 28.2474L28.2474 9.91409C28.7551 9.4064 29.5782 9.4064 30.0859 9.91409Z",fill:"currentColor"},null,-1),e.createElementVNode("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M9.91409 9.91409C10.4218 9.4064 11.2449 9.4064 11.7526 9.91409L30.0859 28.2474C30.5936 28.7551 30.5936 29.5782 30.0859 30.0859C29.5782 30.5936 28.7551 30.5936 28.2474 30.0859L9.91409 11.7526C9.4064 11.2449 9.4064 10.4218 9.91409 9.91409Z",fill:"currentColor"},null,-1)])])}const n={render:r};exports.default=n;exports.render=r;
|
|
@@ -11,13 +11,13 @@ function t(d, e) {
|
|
|
11
11
|
l("path", {
|
|
12
12
|
"fill-rule": "evenodd",
|
|
13
13
|
"clip-rule": "evenodd",
|
|
14
|
-
d: "
|
|
14
|
+
d: "M30.0859 9.91409C30.5936 10.4218 30.5936 11.2449 30.0859 11.7526L11.7526 30.0859C11.2449 30.5936 10.4218 30.5936 9.91409 30.0859C9.4064 29.5782 9.4064 28.7551 9.91409 28.2474L28.2474 9.91409C28.7551 9.4064 29.5782 9.4064 30.0859 9.91409Z",
|
|
15
15
|
fill: "currentColor"
|
|
16
16
|
}, null, -1),
|
|
17
17
|
l("path", {
|
|
18
18
|
"fill-rule": "evenodd",
|
|
19
19
|
"clip-rule": "evenodd",
|
|
20
|
-
d: "
|
|
20
|
+
d: "M9.91409 9.91409C10.4218 9.4064 11.2449 9.4064 11.7526 9.91409L30.0859 28.2474C30.5936 28.7551 30.5936 29.5782 30.0859 30.0859C29.5782 30.5936 28.7551 30.5936 28.2474 30.0859L9.91409 11.7526C9.4064 11.2449 9.4064 10.4218 9.91409 9.91409Z",
|
|
21
21
|
fill: "currentColor"
|
|
22
22
|
}, null, -1)
|
|
23
23
|
])]);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";const entry=require("./entry-
|
|
1
|
+
"use strict";const entry=require("./entry-c4b485d2.cjs");function _mergeNamespaces(R,n){for(var s=0;s<n.length;s++){const o=n[s];if(typeof o!="string"&&!Array.isArray(o)){for(const C in o)if(C!=="default"&&!(C in R)){const c=Object.getOwnPropertyDescriptor(o,C);c&&Object.defineProperty(R,C,c.get?c:{enumerable:!0,get:()=>o[C]})}}}return Object.freeze(Object.defineProperty(R,Symbol.toStringTag,{value:"Module"}))}var cryptoProActualCadesPlugin$2={exports:{}};(function(module,exports){(function(n,s){module.exports=s()})(window,function(){return function(R){var n={};function s(o){if(n[o])return n[o].exports;var C=n[o]={i:o,l:!1,exports:{}};return R[o].call(C.exports,C,C.exports,s),C.l=!0,C.exports}return s.m=R,s.c=n,s.d=function(o,C,c){s.o(o,C)||Object.defineProperty(o,C,{enumerable:!0,get:c})},s.r=function(o){typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(o,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(o,"__esModule",{value:!0})},s.t=function(o,C){if(C&1&&(o=s(o)),C&8||C&4&&typeof o=="object"&&o&&o.__esModule)return o;var c=Object.create(null);if(s.r(c),Object.defineProperty(c,"default",{enumerable:!0,value:o}),C&2&&typeof o!="string")for(var A in o)s.d(c,A,(function(f){return o[f]}).bind(null,A));return c},s.n=function(o){var C=o&&o.__esModule?function(){return o.default}:function(){return o};return s.d(C,"a",C),C},s.o=function(o,C){return Object.prototype.hasOwnProperty.call(o,C)},s.p="",s(s.s="./crypto-pro-actual-cades-plugin.ts")}({"../node_modules/base64-js/index.js":function(R,n,s){n.byteLength=i,n.toByteArray=p,n.fromByteArray=S;for(var o=[],C=[],c=typeof Uint8Array<"u"?Uint8Array:Array,A="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",f=0,l=A.length;f<l;++f)o[f]=A[f],C[A.charCodeAt(f)]=f;C["-".charCodeAt(0)]=62,C["_".charCodeAt(0)]=63;function d(O){var M=O.length;if(M%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var P=O.indexOf("=");P===-1&&(P=M);var w=P===M?0:4-P%4;return[P,w]}function i(O){var M=d(O),P=M[0],w=M[1];return(P+w)*3/4-w}function I(O,M,P){return(M+P)*3/4-P}function p(O){var M,P=d(O),w=P[0],U=P[1],v=new c(I(O,w,U)),Y=0,k=U>0?w-4:w,G;for(G=0;G<k;G+=4)M=C[O.charCodeAt(G)]<<18|C[O.charCodeAt(G+1)]<<12|C[O.charCodeAt(G+2)]<<6|C[O.charCodeAt(G+3)],v[Y++]=M>>16&255,v[Y++]=M>>8&255,v[Y++]=M&255;return U===2&&(M=C[O.charCodeAt(G)]<<2|C[O.charCodeAt(G+1)]>>4,v[Y++]=M&255),U===1&&(M=C[O.charCodeAt(G)]<<10|C[O.charCodeAt(G+1)]<<4|C[O.charCodeAt(G+2)]>>2,v[Y++]=M>>8&255,v[Y++]=M&255),v}function t(O){return o[O>>18&63]+o[O>>12&63]+o[O>>6&63]+o[O&63]}function N(O,M,P){for(var w,U=[],v=M;v<P;v+=3)w=(O[v]<<16&16711680)+(O[v+1]<<8&65280)+(O[v+2]&255),U.push(t(w));return U.join("")}function S(O){for(var M,P=O.length,w=P%3,U=[],v=16383,Y=0,k=P-w;Y<k;Y+=v)U.push(N(O,Y,Y+v>k?k:Y+v));return w===1?(M=O[P-1],U.push(o[M>>2]+o[M<<4&63]+"==")):w===2&&(M=(O[P-2]<<8)+O[P-1],U.push(o[M>>10]+o[M>>4&63]+o[M<<2&63]+"=")),U.join("")}},"../node_modules/buffer/index.js":function(R,n,s){(function(o){/*!
|
|
2
2
|
* The buffer module from node.js, for the browser.
|
|
3
3
|
*
|
|
4
4
|
* @author Feross Aboukhadijeh <http://feross.org>
|