@fkui/vue 5.36.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/LICENSE.md +7 -0
- package/README.md +3 -0
- package/dist/cjs/index.cjs.js +896 -0
- package/dist/cjs/index.cjs.js.map +1 -0
- package/dist/cjs/package.json +3 -0
- package/dist/cjs/pageobject.js +1692 -0
- package/dist/cjs/pageobject.js.map +7 -0
- package/dist/esm/index.esm.js +896 -0
- package/dist/esm/index.esm.js.map +1 -0
- package/dist/esm/package.json +3 -0
- package/dist/types/index.d.ts +9441 -0
- package/dist/types/pageobject.d.ts +1028 -0
- package/dist/types/tsdoc-metadata.json +11 -0
- package/htmlvalidate/configs/index.js +5 -0
- package/htmlvalidate/configs/recommended.js +17 -0
- package/htmlvalidate/cypress.d.ts +2 -0
- package/htmlvalidate/cypress.js +18 -0
- package/htmlvalidate/elements/components.js +1476 -0
- package/htmlvalidate/elements/internal-components.js +240 -0
- package/htmlvalidate/elements/overrides.js +9 -0
- package/htmlvalidate/index.d.ts +4 -0
- package/htmlvalidate/index.js +10 -0
- package/htmlvalidate/rules/buttongroup.rule.js +42 -0
- package/htmlvalidate/rules/classdeprecated.rule.js +32 -0
- package/htmlvalidate/rules/common.js +15 -0
- package/htmlvalidate/rules/deprecated-validator.js +63 -0
- package/htmlvalidate/rules/ftextfieldFormatterValidation.rule.js +102 -0
- package/htmlvalidate/rules/index.js +15 -0
- package/htmlvalidate/rules/prefer-ficon.rule.js +36 -0
- package/htmlvalidate/rules/requiredmaxlength.rule.js +96 -0
- package/package.json +113 -0
- package/pageobject.d.ts +1 -0
- package/pageobject.js +1 -0
- package/tsconfig-consumer.json +12 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// This file is read by tools that parse documentation comments conforming to the TSDoc standard.
|
|
2
|
+
// It should be published with your NPM package. It should not be tracked by Git.
|
|
3
|
+
{
|
|
4
|
+
"tsdocVersion": "0.12",
|
|
5
|
+
"toolPackages": [
|
|
6
|
+
{
|
|
7
|
+
"packageName": "@microsoft/api-extractor",
|
|
8
|
+
"packageVersion": "7.47.7"
|
|
9
|
+
}
|
|
10
|
+
]
|
|
11
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
plugins: ["html-validate-vue"],
|
|
3
|
+
elements: [
|
|
4
|
+
"html5",
|
|
5
|
+
require.resolve("../elements/overrides"),
|
|
6
|
+
require.resolve("../elements/components"),
|
|
7
|
+
require.resolve("../elements/internal-components"),
|
|
8
|
+
],
|
|
9
|
+
rules: {
|
|
10
|
+
"fkui/button-group": "error",
|
|
11
|
+
"fkui/class-deprecated": "error",
|
|
12
|
+
"fkui/deprecated-validator": "error",
|
|
13
|
+
"fkui/prefer-ficon": "error",
|
|
14
|
+
"fkui/required-max-length": "error",
|
|
15
|
+
"fkui/ftextfield-formatter-validation": "error",
|
|
16
|
+
},
|
|
17
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
module.exports = [
|
|
2
|
+
/* file-selector uses aria-hidden on label in a "clever" way which works in
|
|
3
|
+
* practice but yields false positives */
|
|
4
|
+
".file-selector input",
|
|
5
|
+
|
|
6
|
+
/* file-selector uses a label with role="button" as a last resort to styling
|
|
7
|
+
* it properly */
|
|
8
|
+
".file-selector label",
|
|
9
|
+
|
|
10
|
+
/* FList uses a ul with role="select" */
|
|
11
|
+
"ul.list",
|
|
12
|
+
|
|
13
|
+
/* ICalendar misuses aria-label */
|
|
14
|
+
".calendar ul[aria-label]",
|
|
15
|
+
|
|
16
|
+
/* FWizardStep uses an anchor with role="button" for completed steps */
|
|
17
|
+
".wizard-step__header__title",
|
|
18
|
+
];
|