@fkui/vue 6.1.0 → 6.3.0
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/cjs/{cypress.js → cypress.cjs.js} +2 -56
- package/dist/cjs/{cypress.js.map → cypress.cjs.js.map} +1 -1
- package/dist/cjs/index.cjs.js +1162 -389
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/esm/cypress.esm.js +1516 -0
- package/dist/esm/cypress.esm.js.map +7 -0
- package/dist/esm/index.esm.js +1163 -390
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/index.d.ts +202 -63
- package/dist/types/tsdoc-metadata.json +1 -1
- package/htmlvalidate/elements/components.js +29 -0
- package/htmlvalidate/elements/internal-components.js +1 -0
- package/package.json +9 -8
- package/tsconfig-consumer.json +1 -3
|
@@ -430,12 +430,41 @@ module.exports = defineMetadata({
|
|
|
430
430
|
inherit: "f-label#description",
|
|
431
431
|
},
|
|
432
432
|
|
|
433
|
+
"f-page-layout": {
|
|
434
|
+
flow: true,
|
|
435
|
+
attributes: {
|
|
436
|
+
layout: {
|
|
437
|
+
required: true,
|
|
438
|
+
},
|
|
439
|
+
},
|
|
440
|
+
},
|
|
441
|
+
|
|
433
442
|
"f-progressbar": {
|
|
434
443
|
flow: true,
|
|
435
444
|
requiredAttributes: ["aria-label"],
|
|
436
445
|
permittedContent: [],
|
|
437
446
|
},
|
|
438
447
|
|
|
448
|
+
"f-resize-pane": {
|
|
449
|
+
flow: true,
|
|
450
|
+
attributes: {
|
|
451
|
+
min: {
|
|
452
|
+
enum: ["/\\d+px/", "/\\d+%/"],
|
|
453
|
+
list: true,
|
|
454
|
+
},
|
|
455
|
+
max: {
|
|
456
|
+
enum: ["/\\d+px/", "/\\d+%/"],
|
|
457
|
+
list: true,
|
|
458
|
+
},
|
|
459
|
+
initial: {
|
|
460
|
+
enum: ["/\\d+px/", "/\\d+%/"],
|
|
461
|
+
},
|
|
462
|
+
disabled: {
|
|
463
|
+
boolean: true,
|
|
464
|
+
},
|
|
465
|
+
},
|
|
466
|
+
},
|
|
467
|
+
|
|
439
468
|
"f-sort-filter-dataset": {
|
|
440
469
|
flow: true,
|
|
441
470
|
interactive: true,
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fkui/vue",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.3.0",
|
|
4
4
|
"description": "Vue implementation of FKUI components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fkui",
|
|
7
7
|
"designsystem",
|
|
8
8
|
"vue"
|
|
9
9
|
],
|
|
10
|
-
"homepage": "https://forsakringskassan.
|
|
10
|
+
"homepage": "https://designsystem.forsakringskassan.se/",
|
|
11
11
|
"bugs": "https://github.com/Forsakringskassan/designsystem/issues",
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
@@ -24,7 +24,8 @@
|
|
|
24
24
|
},
|
|
25
25
|
"./cypress": {
|
|
26
26
|
"types": "./dist/types/cypress.d.ts",
|
|
27
|
-
"
|
|
27
|
+
"require": "./dist/cjs/cypress.cjs.js",
|
|
28
|
+
"import": "./dist/esm/cypress.esm.js"
|
|
28
29
|
},
|
|
29
30
|
"./htmlvalidate": "./htmlvalidate/index.cjs",
|
|
30
31
|
"./htmlvalidate/cypress": "./htmlvalidate/cypress.js",
|
|
@@ -48,7 +49,7 @@
|
|
|
48
49
|
"build:api": "fk-api-extractor --patch-augmentations api-extractor.*.json",
|
|
49
50
|
"build:dts": "vue-tsc -b",
|
|
50
51
|
"build:lib": "fk-build-vue-lib",
|
|
51
|
-
"build:pageobjects": "
|
|
52
|
+
"build:pageobjects": "node build-pageobjects.mjs",
|
|
52
53
|
"clean": "rimraf -g .jest-cache *.tsbuildinfo coverage dist public temp test-results",
|
|
53
54
|
"prepack": "release-prepack --bundle --retain-scripts",
|
|
54
55
|
"postpack": "release-postpack",
|
|
@@ -59,9 +60,9 @@
|
|
|
59
60
|
"unit:watch": "jest --watch"
|
|
60
61
|
},
|
|
61
62
|
"peerDependencies": {
|
|
62
|
-
"@fkui/date": "^6.
|
|
63
|
-
"@fkui/design": "^6.
|
|
64
|
-
"@fkui/logic": "^6.
|
|
63
|
+
"@fkui/date": "^6.3.0",
|
|
64
|
+
"@fkui/design": "^6.3.0",
|
|
65
|
+
"@fkui/logic": "^6.3.0",
|
|
65
66
|
"fk-icons": "^4.30.1",
|
|
66
67
|
"html-validate": ">= 7.9.0",
|
|
67
68
|
"vue": "^3.5.0"
|
|
@@ -78,5 +79,5 @@
|
|
|
78
79
|
"node": ">= 20",
|
|
79
80
|
"npm": ">= 7"
|
|
80
81
|
},
|
|
81
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "b971dc60326c5eb1c73318733f36c5f1776504b2"
|
|
82
83
|
}
|