@aurodesignsystem-dev/auro-formkit 0.0.0-pr1318.3 → 0.0.0-pr1318.5
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/components/checkbox/demo/api.min.js +1 -1
- package/components/checkbox/demo/index.min.js +1 -1
- package/components/checkbox/dist/index.js +1 -1
- package/components/checkbox/dist/registered.js +1 -1
- package/components/combobox/demo/api.min.js +52 -6
- package/components/combobox/demo/index.min.js +52 -6
- package/components/combobox/dist/auro-combobox.d.ts +1 -1
- package/components/combobox/dist/index.js +52 -6
- package/components/combobox/dist/registered.js +52 -6
- package/components/counter/demo/api.min.js +17 -3
- package/components/counter/demo/index.min.js +17 -3
- package/components/counter/dist/index.js +17 -3
- package/components/counter/dist/registered.js +17 -3
- package/components/datepicker/demo/api.min.js +32 -4
- package/components/datepicker/demo/index.min.js +32 -4
- package/components/datepicker/dist/index.js +32 -4
- package/components/datepicker/dist/registered.js +32 -4
- package/components/dropdown/demo/api.min.js +16 -2
- package/components/dropdown/demo/index.min.js +16 -2
- package/components/dropdown/dist/auro-dropdown.d.ts +9 -0
- package/components/dropdown/dist/index.js +16 -2
- package/components/dropdown/dist/registered.js +16 -2
- package/components/input/demo/api.min.js +15 -1
- package/components/input/demo/index.min.js +15 -1
- package/components/input/dist/base-input.d.ts +9 -0
- package/components/input/dist/index.js +15 -1
- package/components/input/dist/registered.js +15 -1
- package/components/radio/demo/api.min.js +1 -1
- package/components/radio/demo/index.min.js +1 -1
- package/components/radio/dist/index.js +1 -1
- package/components/radio/dist/registered.js +1 -1
- package/components/select/demo/api.min.js +56 -11
- package/components/select/demo/index.min.js +56 -11
- package/components/select/dist/auro-select.d.ts +7 -0
- package/components/select/dist/index.js +56 -11
- package/components/select/dist/registered.js +56 -11
- package/custom-elements.json +83 -1
- package/package.json +9 -3
package/custom-elements.json
CHANGED
|
@@ -1925,7 +1925,7 @@
|
|
|
1925
1925
|
"type": {
|
|
1926
1926
|
"text": "object"
|
|
1927
1927
|
},
|
|
1928
|
-
"description": "Specifies the currently active
|
|
1928
|
+
"description": "Specifies the currently active/highlighted `auro-menuoption`."
|
|
1929
1929
|
},
|
|
1930
1930
|
{
|
|
1931
1931
|
"kind": "field",
|
|
@@ -7689,6 +7689,26 @@
|
|
|
7689
7689
|
"name": "focus",
|
|
7690
7690
|
"description": "When bib is open, focus on the first element inside of bib.\nIf not, trigger element will get focus."
|
|
7691
7691
|
},
|
|
7692
|
+
{
|
|
7693
|
+
"kind": "method",
|
|
7694
|
+
"name": "setActiveDescendant",
|
|
7695
|
+
"parameters": [
|
|
7696
|
+
{
|
|
7697
|
+
"name": "element",
|
|
7698
|
+
"description": "The element to set as the active descendant, or null to clear.",
|
|
7699
|
+
"type": {
|
|
7700
|
+
"text": "HTMLElement|null"
|
|
7701
|
+
}
|
|
7702
|
+
}
|
|
7703
|
+
],
|
|
7704
|
+
"description": "Sets the active descendant element for accessibility.\nUses ariaActiveDescendantElement to cross shadow DOM boundaries.\nThis function is used in components that contain `auro-dropdown` to set the active descendant.",
|
|
7705
|
+
"privacy": "private",
|
|
7706
|
+
"return": {
|
|
7707
|
+
"type": {
|
|
7708
|
+
"text": "void"
|
|
7709
|
+
}
|
|
7710
|
+
}
|
|
7711
|
+
},
|
|
7692
7712
|
{
|
|
7693
7713
|
"kind": "method",
|
|
7694
7714
|
"name": "register",
|
|
@@ -10254,6 +10274,30 @@
|
|
|
10254
10274
|
"module": "components/input/src/base-input.js"
|
|
10255
10275
|
}
|
|
10256
10276
|
},
|
|
10277
|
+
{
|
|
10278
|
+
"kind": "method",
|
|
10279
|
+
"name": "setActiveDescendant",
|
|
10280
|
+
"parameters": [
|
|
10281
|
+
{
|
|
10282
|
+
"name": "element",
|
|
10283
|
+
"description": "The element to set as the active descendant, or null to clear.",
|
|
10284
|
+
"type": {
|
|
10285
|
+
"text": "HTMLElement|null"
|
|
10286
|
+
}
|
|
10287
|
+
}
|
|
10288
|
+
],
|
|
10289
|
+
"description": "Sets the active descendant element for accessibility.\nUses ariaActiveDescendantElement to cross shadow DOM boundaries.\nThis function is used in components that contain `auro-input` to set the active descendant.",
|
|
10290
|
+
"privacy": "private",
|
|
10291
|
+
"return": {
|
|
10292
|
+
"type": {
|
|
10293
|
+
"text": "void"
|
|
10294
|
+
}
|
|
10295
|
+
},
|
|
10296
|
+
"inheritedFrom": {
|
|
10297
|
+
"name": "BaseInput",
|
|
10298
|
+
"module": "components/input/src/base-input.js"
|
|
10299
|
+
}
|
|
10300
|
+
},
|
|
10257
10301
|
{
|
|
10258
10302
|
"kind": "method",
|
|
10259
10303
|
"name": "validate",
|
|
@@ -12112,6 +12156,26 @@
|
|
|
12112
12156
|
}
|
|
12113
12157
|
}
|
|
12114
12158
|
},
|
|
12159
|
+
{
|
|
12160
|
+
"kind": "method",
|
|
12161
|
+
"name": "setActiveDescendant",
|
|
12162
|
+
"parameters": [
|
|
12163
|
+
{
|
|
12164
|
+
"name": "element",
|
|
12165
|
+
"description": "The element to set as the active descendant, or null to clear.",
|
|
12166
|
+
"type": {
|
|
12167
|
+
"text": "HTMLElement|null"
|
|
12168
|
+
}
|
|
12169
|
+
}
|
|
12170
|
+
],
|
|
12171
|
+
"description": "Sets the active descendant element for accessibility.\nUses ariaActiveDescendantElement to cross shadow DOM boundaries.\nThis function is used in components that contain `auro-input` to set the active descendant.",
|
|
12172
|
+
"privacy": "private",
|
|
12173
|
+
"return": {
|
|
12174
|
+
"type": {
|
|
12175
|
+
"text": "void"
|
|
12176
|
+
}
|
|
12177
|
+
}
|
|
12178
|
+
},
|
|
12115
12179
|
{
|
|
12116
12180
|
"kind": "method",
|
|
12117
12181
|
"name": "validate",
|
|
@@ -17628,6 +17692,16 @@
|
|
|
17628
17692
|
"description": "Specifies the current selected menuOption. Default type is `HTMLElement`, changing to `Array<HTMLElement>` when `multiSelect` is true.",
|
|
17629
17693
|
"attribute": "optionSelected"
|
|
17630
17694
|
},
|
|
17695
|
+
{
|
|
17696
|
+
"kind": "field",
|
|
17697
|
+
"name": "optionActive",
|
|
17698
|
+
"privacy": "private",
|
|
17699
|
+
"type": {
|
|
17700
|
+
"text": "HTMLElement"
|
|
17701
|
+
},
|
|
17702
|
+
"description": "Specifies the current active/highlighted `auro-menuoption`.",
|
|
17703
|
+
"attribute": "optionActive"
|
|
17704
|
+
},
|
|
17631
17705
|
{
|
|
17632
17706
|
"kind": "field",
|
|
17633
17707
|
"name": "placeholder",
|
|
@@ -17989,6 +18063,14 @@
|
|
|
17989
18063
|
"description": "Specifies the current selected menuOption. Default type is `HTMLElement`, changing to `Array<HTMLElement>` when `multiSelect` is true.",
|
|
17990
18064
|
"fieldName": "optionSelected"
|
|
17991
18065
|
},
|
|
18066
|
+
{
|
|
18067
|
+
"name": "optionActive",
|
|
18068
|
+
"type": {
|
|
18069
|
+
"text": "HTMLElement"
|
|
18070
|
+
},
|
|
18071
|
+
"description": "Specifies the current active/highlighted `auro-menuoption`.",
|
|
18072
|
+
"fieldName": "optionActive"
|
|
18073
|
+
},
|
|
17992
18074
|
{
|
|
17993
18075
|
"name": "placeholder",
|
|
17994
18076
|
"type": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aurodesignsystem-dev/auro-formkit",
|
|
3
|
-
"version": "0.0.0-pr1318.
|
|
3
|
+
"version": "0.0.0-pr1318.5",
|
|
4
4
|
"description": "A collection of web components used to build forms.",
|
|
5
5
|
"homepage": "https://github.com/AlaskaAirlines/auro-formkit#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -89,15 +89,18 @@
|
|
|
89
89
|
"@open-wc/testing": "^4.0.0",
|
|
90
90
|
"@semantic-release/changelog": "^6.0.3",
|
|
91
91
|
"@semantic-release/git": "^10.0.1",
|
|
92
|
-
"@semantic-release/npm": "^
|
|
92
|
+
"@semantic-release/npm": "^13.1.1",
|
|
93
93
|
"@storybook/addon-a11y": "^10.2.0",
|
|
94
94
|
"@storybook/addon-designs": "^11.1.1",
|
|
95
95
|
"@storybook/addon-docs": "^10.2.0",
|
|
96
96
|
"@storybook/addon-themes": "^10.2.1",
|
|
97
|
+
"@storybook/addon-vitest": "^10.2.6",
|
|
97
98
|
"@storybook/web-components": "^10.2.0",
|
|
98
99
|
"@storybook/web-components-vite": "^10.2.0",
|
|
99
100
|
"@types/chai": "^5.2.2",
|
|
100
101
|
"@types/mocha": "^10.0.10",
|
|
102
|
+
"@vitest/browser-playwright": "^4.0.18",
|
|
103
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
101
104
|
"@wc-toolkit/storybook-helpers": "^10.0.0",
|
|
102
105
|
"@web/dev-server": "^0.4.6",
|
|
103
106
|
"@web/dev-server-hmr": "^0.4.1",
|
|
@@ -118,15 +121,17 @@
|
|
|
118
121
|
"mockdate": "^3.0.5",
|
|
119
122
|
"nodemon": "^3.1.10",
|
|
120
123
|
"npm-run-all": "^4.1.5",
|
|
124
|
+
"playwright": "^1.58.1",
|
|
121
125
|
"postcss": "^8.5.6",
|
|
122
126
|
"postcss-custom-properties": "^14.0.6",
|
|
123
127
|
"postcss-discard-comments": "^7.0.4",
|
|
124
128
|
"prettier": "^3.6.2",
|
|
125
129
|
"remark-gfm": "^4.0.1",
|
|
126
130
|
"sass": "^1.93.2",
|
|
127
|
-
"semantic-release": "^
|
|
131
|
+
"semantic-release": "^25.0.1",
|
|
128
132
|
"shadow-dom-testing-library": "^1.13.1",
|
|
129
133
|
"storybook": "^10.2.0",
|
|
134
|
+
"storybook-addon-tag-badges": "^3.0.5",
|
|
130
135
|
"stylelint": "^16.25.0",
|
|
131
136
|
"stylelint-config-idiomatic-order": "^10.0.0",
|
|
132
137
|
"stylelint-config-standard": "^39.0.1",
|
|
@@ -135,6 +140,7 @@
|
|
|
135
140
|
"stylelint-scss": "^6.12.1",
|
|
136
141
|
"turbo": "^2.5.8",
|
|
137
142
|
"typescript": "^5.9.3",
|
|
143
|
+
"vitest": "^4.0.18",
|
|
138
144
|
"whatwg-fetch": "^3.6.20",
|
|
139
145
|
"yaml-lint": "^1.7.0"
|
|
140
146
|
},
|