@fkui/vue 6.3.0 → 6.4.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.cjs.js +43 -8
- package/dist/cjs/cypress.cjs.js.map +2 -2
- package/dist/cjs/index.cjs.js +1119 -356
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/esm/cypress.esm.js +43 -8
- package/dist/esm/cypress.esm.js.map +2 -2
- package/dist/esm/index.esm.js +1121 -358
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/cypress.d.ts +17 -6
- package/dist/types/index.d.ts +406 -270
- package/dist/types/tsdoc-metadata.json +1 -1
- package/htmlvalidate/elements/components.js +4 -4
- package/package.json +5 -5
|
@@ -125,7 +125,7 @@ module.exports = defineMetadata({
|
|
|
125
125
|
"key-attribute": ["/.+/"],
|
|
126
126
|
scroll: ["horizontal", "vertical", "both", "none"],
|
|
127
127
|
},
|
|
128
|
-
requiredAttributes: ["
|
|
128
|
+
requiredAttributes: ["rows"],
|
|
129
129
|
slots: ["default", "caption", "empty"],
|
|
130
130
|
requiredSlots: ["default", "caption"],
|
|
131
131
|
},
|
|
@@ -321,7 +321,7 @@ module.exports = defineMetadata({
|
|
|
321
321
|
inherit: "ul",
|
|
322
322
|
flow: true,
|
|
323
323
|
phrasing: true,
|
|
324
|
-
requiredAttributes: ["items"
|
|
324
|
+
requiredAttributes: ["items"],
|
|
325
325
|
attributes: {
|
|
326
326
|
selectable: ["/^[a-zA-Z][\\w\\d-_.:]+$/", "", "false", "true"],
|
|
327
327
|
value: ["/.*/"],
|
|
@@ -376,7 +376,7 @@ module.exports = defineMetadata({
|
|
|
376
376
|
"expandable-describedby": ["/.+/"],
|
|
377
377
|
scroll: ["horizontal", "vertical", "both", "none"],
|
|
378
378
|
},
|
|
379
|
-
requiredAttributes: ["
|
|
379
|
+
requiredAttributes: ["rows"],
|
|
380
380
|
slots: [
|
|
381
381
|
"default",
|
|
382
382
|
"caption",
|
|
@@ -930,7 +930,7 @@ module.exports = defineMetadata({
|
|
|
930
930
|
"f-crud-dataset": {
|
|
931
931
|
flow: true,
|
|
932
932
|
interactive: true,
|
|
933
|
-
slots: ["default", "add", "delete", "modify", "add-button"],
|
|
933
|
+
slots: ["default", "add", "delete", "modify", "add-button", "buttons"],
|
|
934
934
|
requiredSlots: ["default"],
|
|
935
935
|
attributes: {
|
|
936
936
|
value: ["/.*/"],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fkui/vue",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.4.0",
|
|
4
4
|
"description": "Vue implementation of FKUI components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fkui",
|
|
@@ -60,9 +60,9 @@
|
|
|
60
60
|
"unit:watch": "jest --watch"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
|
-
"@fkui/date": "^6.
|
|
64
|
-
"@fkui/design": "^6.
|
|
65
|
-
"@fkui/logic": "^6.
|
|
63
|
+
"@fkui/date": "^6.4.0",
|
|
64
|
+
"@fkui/design": "^6.4.0",
|
|
65
|
+
"@fkui/logic": "^6.4.0",
|
|
66
66
|
"fk-icons": "^4.30.1",
|
|
67
67
|
"html-validate": ">= 7.9.0",
|
|
68
68
|
"vue": "^3.5.0"
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"node": ">= 20",
|
|
80
80
|
"npm": ">= 7"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "a5c516be9b76d94394962a524abaf3e6efe0a7be"
|
|
83
83
|
}
|