@daikin-oss/design-system-web-components 2.0.0-next.2 → 2.0.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/custom-elements.json
CHANGED
|
@@ -2160,6 +2160,257 @@
|
|
|
2160
2160
|
}
|
|
2161
2161
|
]
|
|
2162
2162
|
},
|
|
2163
|
+
{
|
|
2164
|
+
"kind": "javascript-module",
|
|
2165
|
+
"path": "dist/es/components/accordion/daikin-accordion.js",
|
|
2166
|
+
"declarations": [
|
|
2167
|
+
{
|
|
2168
|
+
"kind": "class",
|
|
2169
|
+
"description": "The accordion component serves as the parent element that organizes and manages the overall structure of the accordion.\nCurrently it only provides appropriate styles for individual accordion items.\n\nHierarchy:\n- `daikin-accordion` > `daikin-accordion-item`",
|
|
2170
|
+
"name": "DaikinAccordion",
|
|
2171
|
+
"slots": [
|
|
2172
|
+
{
|
|
2173
|
+
"description": "A slot for the accordion items. Place `daikin-accordion-item` elements here.",
|
|
2174
|
+
"name": ""
|
|
2175
|
+
}
|
|
2176
|
+
],
|
|
2177
|
+
"members": [
|
|
2178
|
+
{
|
|
2179
|
+
"kind": "field",
|
|
2180
|
+
"name": "border",
|
|
2181
|
+
"type": {
|
|
2182
|
+
"text": "\"vertical\" | \"all\" | \"none\""
|
|
2183
|
+
},
|
|
2184
|
+
"default": "\"vertical\"",
|
|
2185
|
+
"description": "The border type of the accordion.\n- `vertical`: Display the top and bottom border style.\n- `all`: Box border style.\n- `none`: No border style.",
|
|
2186
|
+
"attribute": "border",
|
|
2187
|
+
"reflects": true
|
|
2188
|
+
},
|
|
2189
|
+
{
|
|
2190
|
+
"kind": "field",
|
|
2191
|
+
"name": "openItems",
|
|
2192
|
+
"type": {
|
|
2193
|
+
"text": "string[]"
|
|
2194
|
+
},
|
|
2195
|
+
"default": "[]",
|
|
2196
|
+
"description": "A list of the names of the open items.\nIf `exclusive` is true, the number of elements is 0 or 1.\nWhen the user toggles an accordion item, this property is updated and a `change` event is emitted.\nWhen controlling this property externally, listen to the `change` event and read the updated `openItems` from the component to keep your state in sync."
|
|
2197
|
+
},
|
|
2198
|
+
{
|
|
2199
|
+
"kind": "field",
|
|
2200
|
+
"name": "exclusive",
|
|
2201
|
+
"type": {
|
|
2202
|
+
"text": "boolean"
|
|
2203
|
+
},
|
|
2204
|
+
"default": "false",
|
|
2205
|
+
"description": "Whether or not to make the accordion exclusive.\nIf true, the number of items that can be open at once is limited to one.",
|
|
2206
|
+
"attribute": "exclusive",
|
|
2207
|
+
"reflects": true
|
|
2208
|
+
},
|
|
2209
|
+
{
|
|
2210
|
+
"kind": "field",
|
|
2211
|
+
"name": "_items",
|
|
2212
|
+
"type": {
|
|
2213
|
+
"text": "readonly DaikinAccordionItem[]"
|
|
2214
|
+
},
|
|
2215
|
+
"privacy": "private",
|
|
2216
|
+
"readonly": true
|
|
2217
|
+
},
|
|
2218
|
+
{
|
|
2219
|
+
"kind": "method",
|
|
2220
|
+
"name": "_handleMoveFocus",
|
|
2221
|
+
"privacy": "private",
|
|
2222
|
+
"return": {
|
|
2223
|
+
"type": {
|
|
2224
|
+
"text": "void"
|
|
2225
|
+
}
|
|
2226
|
+
},
|
|
2227
|
+
"parameters": [
|
|
2228
|
+
{
|
|
2229
|
+
"name": "event",
|
|
2230
|
+
"type": {
|
|
2231
|
+
"text": "CustomEvent<{ direction: \"up\" | \"down\" }>"
|
|
2232
|
+
}
|
|
2233
|
+
}
|
|
2234
|
+
]
|
|
2235
|
+
},
|
|
2236
|
+
{
|
|
2237
|
+
"kind": "method",
|
|
2238
|
+
"name": "_handleToggle",
|
|
2239
|
+
"privacy": "private",
|
|
2240
|
+
"parameters": [
|
|
2241
|
+
{
|
|
2242
|
+
"name": "event",
|
|
2243
|
+
"type": {
|
|
2244
|
+
"text": "Event"
|
|
2245
|
+
}
|
|
2246
|
+
}
|
|
2247
|
+
]
|
|
2248
|
+
},
|
|
2249
|
+
{
|
|
2250
|
+
"kind": "method",
|
|
2251
|
+
"name": "_reflectItemOpen",
|
|
2252
|
+
"privacy": "private"
|
|
2253
|
+
},
|
|
2254
|
+
{
|
|
2255
|
+
"kind": "field",
|
|
2256
|
+
"name": "version",
|
|
2257
|
+
"type": {
|
|
2258
|
+
"text": "string"
|
|
2259
|
+
},
|
|
2260
|
+
"static": true,
|
|
2261
|
+
"readonly": true,
|
|
2262
|
+
"default": "VERSION",
|
|
2263
|
+
"description": "The version of the DDS library",
|
|
2264
|
+
"inheritedFrom": {
|
|
2265
|
+
"name": "DDSElement",
|
|
2266
|
+
"module": "dist/es/base/dds-element.js"
|
|
2267
|
+
}
|
|
2268
|
+
},
|
|
2269
|
+
{
|
|
2270
|
+
"kind": "method",
|
|
2271
|
+
"name": "getPropertyDescriptor",
|
|
2272
|
+
"static": true,
|
|
2273
|
+
"return": {
|
|
2274
|
+
"type": {
|
|
2275
|
+
"text": ""
|
|
2276
|
+
}
|
|
2277
|
+
},
|
|
2278
|
+
"parameters": [
|
|
2279
|
+
{
|
|
2280
|
+
"name": "name",
|
|
2281
|
+
"type": {
|
|
2282
|
+
"text": "PropertyKey"
|
|
2283
|
+
},
|
|
2284
|
+
"description": "The property name (e.g., \"value\", \"disabled\")"
|
|
2285
|
+
},
|
|
2286
|
+
{
|
|
2287
|
+
"name": "key",
|
|
2288
|
+
"type": {
|
|
2289
|
+
"text": "string | symbol"
|
|
2290
|
+
},
|
|
2291
|
+
"description": "The backing property key used for internal storage (generated by Lit)"
|
|
2292
|
+
},
|
|
2293
|
+
{
|
|
2294
|
+
"name": "{ fallbackValue, isAllowedValue, ...options }",
|
|
2295
|
+
"type": {
|
|
2296
|
+
"text": "DDSPropertyDeclaration"
|
|
2297
|
+
}
|
|
2298
|
+
},
|
|
2299
|
+
{
|
|
2300
|
+
"description": "DDS property declaration options including fallbackValue and isAllowedValue",
|
|
2301
|
+
"name": "options"
|
|
2302
|
+
}
|
|
2303
|
+
],
|
|
2304
|
+
"description": "Override of LitElement's getPropertyDescriptor to add support for fallback values\nand property validation.",
|
|
2305
|
+
"inheritedFrom": {
|
|
2306
|
+
"name": "DDSElement",
|
|
2307
|
+
"module": "dist/es/base/dds-element.js"
|
|
2308
|
+
}
|
|
2309
|
+
},
|
|
2310
|
+
{
|
|
2311
|
+
"kind": "method",
|
|
2312
|
+
"name": "getBackingProperty",
|
|
2313
|
+
"privacy": "protected",
|
|
2314
|
+
"return": {
|
|
2315
|
+
"type": {
|
|
2316
|
+
"text": ""
|
|
2317
|
+
}
|
|
2318
|
+
},
|
|
2319
|
+
"parameters": [
|
|
2320
|
+
{
|
|
2321
|
+
"name": "name",
|
|
2322
|
+
"type": {
|
|
2323
|
+
"text": "T"
|
|
2324
|
+
},
|
|
2325
|
+
"description": "The property name to retrieve the backing value for"
|
|
2326
|
+
}
|
|
2327
|
+
],
|
|
2328
|
+
"description": "Retrieves the backing property value for a given property name.\nThis allows access to the underlying stored value before any fallback logic is applied.\n\nWhy is this needed?\n- The public property getter may return a fallback value when the actual value is undefined.\n- Sometimes we need to know if the property was explicitly set or if we're using a fallback.\n- This method provides access to the raw backing value stored by Lit.",
|
|
2329
|
+
"inheritedFrom": {
|
|
2330
|
+
"name": "DDSElement",
|
|
2331
|
+
"module": "dist/es/base/dds-element.js"
|
|
2332
|
+
}
|
|
2333
|
+
}
|
|
2334
|
+
],
|
|
2335
|
+
"events": [
|
|
2336
|
+
{
|
|
2337
|
+
"name": "change",
|
|
2338
|
+
"type": {
|
|
2339
|
+
"text": "Event"
|
|
2340
|
+
},
|
|
2341
|
+
"description": "A custom event emitted when the open state of the accordion changes. The updated `openItems` can be read from the event target."
|
|
2342
|
+
}
|
|
2343
|
+
],
|
|
2344
|
+
"attributes": [
|
|
2345
|
+
{
|
|
2346
|
+
"name": "border",
|
|
2347
|
+
"type": {
|
|
2348
|
+
"text": "\"vertical\" | \"all\" | \"none\""
|
|
2349
|
+
},
|
|
2350
|
+
"default": "\"vertical\"",
|
|
2351
|
+
"description": "The border type of the accordion.\n- `vertical`: Display the top and bottom border style.\n- `all`: Box border style.\n- `none`: No border style.",
|
|
2352
|
+
"fieldName": "border"
|
|
2353
|
+
},
|
|
2354
|
+
{
|
|
2355
|
+
"name": "exclusive",
|
|
2356
|
+
"type": {
|
|
2357
|
+
"text": "boolean"
|
|
2358
|
+
},
|
|
2359
|
+
"default": "false",
|
|
2360
|
+
"description": "Whether or not to make the accordion exclusive.\nIf true, the number of items that can be open at once is limited to one.",
|
|
2361
|
+
"fieldName": "exclusive"
|
|
2362
|
+
}
|
|
2363
|
+
],
|
|
2364
|
+
"superclass": {
|
|
2365
|
+
"name": "DDSElement",
|
|
2366
|
+
"module": "/src/base"
|
|
2367
|
+
},
|
|
2368
|
+
"tagName": "daikin-accordion",
|
|
2369
|
+
"customElement": true
|
|
2370
|
+
}
|
|
2371
|
+
],
|
|
2372
|
+
"exports": [
|
|
2373
|
+
{
|
|
2374
|
+
"kind": "js",
|
|
2375
|
+
"name": "DaikinAccordion",
|
|
2376
|
+
"declaration": {
|
|
2377
|
+
"name": "DaikinAccordion",
|
|
2378
|
+
"module": "src/components/accordion/daikin-accordion.ts"
|
|
2379
|
+
}
|
|
2380
|
+
},
|
|
2381
|
+
{
|
|
2382
|
+
"kind": "custom-element-definition",
|
|
2383
|
+
"name": "daikin-accordion",
|
|
2384
|
+
"declaration": {
|
|
2385
|
+
"name": "DaikinAccordion",
|
|
2386
|
+
"module": "src/components/accordion/daikin-accordion.ts"
|
|
2387
|
+
}
|
|
2388
|
+
},
|
|
2389
|
+
{
|
|
2390
|
+
"kind": "js",
|
|
2391
|
+
"name": "default",
|
|
2392
|
+
"declaration": {
|
|
2393
|
+
"name": "DaikinAccordion",
|
|
2394
|
+
"module": "src/components/accordion/daikin-accordion.ts"
|
|
2395
|
+
}
|
|
2396
|
+
}
|
|
2397
|
+
]
|
|
2398
|
+
},
|
|
2399
|
+
{
|
|
2400
|
+
"kind": "javascript-module",
|
|
2401
|
+
"path": "dist/es/components/accordion/index.js",
|
|
2402
|
+
"declarations": [],
|
|
2403
|
+
"exports": [
|
|
2404
|
+
{
|
|
2405
|
+
"kind": "js",
|
|
2406
|
+
"name": "*",
|
|
2407
|
+
"declaration": {
|
|
2408
|
+
"name": "*",
|
|
2409
|
+
"module": "src/components/accordion/daikin-accordion"
|
|
2410
|
+
}
|
|
2411
|
+
}
|
|
2412
|
+
]
|
|
2413
|
+
},
|
|
2163
2414
|
{
|
|
2164
2415
|
"kind": "javascript-module",
|
|
2165
2416
|
"path": "dist/es/utils/calendar-common.js",
|
|
@@ -3021,258 +3272,7 @@
|
|
|
3021
3272
|
},
|
|
3022
3273
|
{
|
|
3023
3274
|
"kind": "javascript-module",
|
|
3024
|
-
"path": "dist/es/components/accordion/daikin-accordion.js",
|
|
3025
|
-
"declarations": [
|
|
3026
|
-
{
|
|
3027
|
-
"kind": "class",
|
|
3028
|
-
"description": "The accordion component serves as the parent element that organizes and manages the overall structure of the accordion.\nCurrently it only provides appropriate styles for individual accordion items.\n\nHierarchy:\n- `daikin-accordion` > `daikin-accordion-item`",
|
|
3029
|
-
"name": "DaikinAccordion",
|
|
3030
|
-
"slots": [
|
|
3031
|
-
{
|
|
3032
|
-
"description": "A slot for the accordion items. Place `daikin-accordion-item` elements here.",
|
|
3033
|
-
"name": ""
|
|
3034
|
-
}
|
|
3035
|
-
],
|
|
3036
|
-
"members": [
|
|
3037
|
-
{
|
|
3038
|
-
"kind": "field",
|
|
3039
|
-
"name": "border",
|
|
3040
|
-
"type": {
|
|
3041
|
-
"text": "\"vertical\" | \"all\" | \"none\""
|
|
3042
|
-
},
|
|
3043
|
-
"default": "\"vertical\"",
|
|
3044
|
-
"description": "The border type of the accordion.\n- `vertical`: Display the top and bottom border style.\n- `all`: Box border style.\n- `none`: No border style.",
|
|
3045
|
-
"attribute": "border",
|
|
3046
|
-
"reflects": true
|
|
3047
|
-
},
|
|
3048
|
-
{
|
|
3049
|
-
"kind": "field",
|
|
3050
|
-
"name": "openItems",
|
|
3051
|
-
"type": {
|
|
3052
|
-
"text": "string[]"
|
|
3053
|
-
},
|
|
3054
|
-
"default": "[]",
|
|
3055
|
-
"description": "A list of the names of the open items.\nIf `exclusive` is true, the number of elements is 0 or 1.\nWhen the user toggles an accordion item, this property is updated and a `change` event is emitted.\nWhen controlling this property externally, listen to the `change` event and read the updated `openItems` from the component to keep your state in sync."
|
|
3056
|
-
},
|
|
3057
|
-
{
|
|
3058
|
-
"kind": "field",
|
|
3059
|
-
"name": "exclusive",
|
|
3060
|
-
"type": {
|
|
3061
|
-
"text": "boolean"
|
|
3062
|
-
},
|
|
3063
|
-
"default": "false",
|
|
3064
|
-
"description": "Whether or not to make the accordion exclusive.\nIf true, the number of items that can be open at once is limited to one.",
|
|
3065
|
-
"attribute": "exclusive",
|
|
3066
|
-
"reflects": true
|
|
3067
|
-
},
|
|
3068
|
-
{
|
|
3069
|
-
"kind": "field",
|
|
3070
|
-
"name": "_items",
|
|
3071
|
-
"type": {
|
|
3072
|
-
"text": "readonly DaikinAccordionItem[]"
|
|
3073
|
-
},
|
|
3074
|
-
"privacy": "private",
|
|
3075
|
-
"readonly": true
|
|
3076
|
-
},
|
|
3077
|
-
{
|
|
3078
|
-
"kind": "method",
|
|
3079
|
-
"name": "_handleMoveFocus",
|
|
3080
|
-
"privacy": "private",
|
|
3081
|
-
"return": {
|
|
3082
|
-
"type": {
|
|
3083
|
-
"text": "void"
|
|
3084
|
-
}
|
|
3085
|
-
},
|
|
3086
|
-
"parameters": [
|
|
3087
|
-
{
|
|
3088
|
-
"name": "event",
|
|
3089
|
-
"type": {
|
|
3090
|
-
"text": "CustomEvent<{ direction: \"up\" | \"down\" }>"
|
|
3091
|
-
}
|
|
3092
|
-
}
|
|
3093
|
-
]
|
|
3094
|
-
},
|
|
3095
|
-
{
|
|
3096
|
-
"kind": "method",
|
|
3097
|
-
"name": "_handleToggle",
|
|
3098
|
-
"privacy": "private",
|
|
3099
|
-
"parameters": [
|
|
3100
|
-
{
|
|
3101
|
-
"name": "event",
|
|
3102
|
-
"type": {
|
|
3103
|
-
"text": "Event"
|
|
3104
|
-
}
|
|
3105
|
-
}
|
|
3106
|
-
]
|
|
3107
|
-
},
|
|
3108
|
-
{
|
|
3109
|
-
"kind": "method",
|
|
3110
|
-
"name": "_reflectItemOpen",
|
|
3111
|
-
"privacy": "private"
|
|
3112
|
-
},
|
|
3113
|
-
{
|
|
3114
|
-
"kind": "field",
|
|
3115
|
-
"name": "version",
|
|
3116
|
-
"type": {
|
|
3117
|
-
"text": "string"
|
|
3118
|
-
},
|
|
3119
|
-
"static": true,
|
|
3120
|
-
"readonly": true,
|
|
3121
|
-
"default": "VERSION",
|
|
3122
|
-
"description": "The version of the DDS library",
|
|
3123
|
-
"inheritedFrom": {
|
|
3124
|
-
"name": "DDSElement",
|
|
3125
|
-
"module": "dist/es/base/dds-element.js"
|
|
3126
|
-
}
|
|
3127
|
-
},
|
|
3128
|
-
{
|
|
3129
|
-
"kind": "method",
|
|
3130
|
-
"name": "getPropertyDescriptor",
|
|
3131
|
-
"static": true,
|
|
3132
|
-
"return": {
|
|
3133
|
-
"type": {
|
|
3134
|
-
"text": ""
|
|
3135
|
-
}
|
|
3136
|
-
},
|
|
3137
|
-
"parameters": [
|
|
3138
|
-
{
|
|
3139
|
-
"name": "name",
|
|
3140
|
-
"type": {
|
|
3141
|
-
"text": "PropertyKey"
|
|
3142
|
-
},
|
|
3143
|
-
"description": "The property name (e.g., \"value\", \"disabled\")"
|
|
3144
|
-
},
|
|
3145
|
-
{
|
|
3146
|
-
"name": "key",
|
|
3147
|
-
"type": {
|
|
3148
|
-
"text": "string | symbol"
|
|
3149
|
-
},
|
|
3150
|
-
"description": "The backing property key used for internal storage (generated by Lit)"
|
|
3151
|
-
},
|
|
3152
|
-
{
|
|
3153
|
-
"name": "{ fallbackValue, isAllowedValue, ...options }",
|
|
3154
|
-
"type": {
|
|
3155
|
-
"text": "DDSPropertyDeclaration"
|
|
3156
|
-
}
|
|
3157
|
-
},
|
|
3158
|
-
{
|
|
3159
|
-
"description": "DDS property declaration options including fallbackValue and isAllowedValue",
|
|
3160
|
-
"name": "options"
|
|
3161
|
-
}
|
|
3162
|
-
],
|
|
3163
|
-
"description": "Override of LitElement's getPropertyDescriptor to add support for fallback values\nand property validation.",
|
|
3164
|
-
"inheritedFrom": {
|
|
3165
|
-
"name": "DDSElement",
|
|
3166
|
-
"module": "dist/es/base/dds-element.js"
|
|
3167
|
-
}
|
|
3168
|
-
},
|
|
3169
|
-
{
|
|
3170
|
-
"kind": "method",
|
|
3171
|
-
"name": "getBackingProperty",
|
|
3172
|
-
"privacy": "protected",
|
|
3173
|
-
"return": {
|
|
3174
|
-
"type": {
|
|
3175
|
-
"text": ""
|
|
3176
|
-
}
|
|
3177
|
-
},
|
|
3178
|
-
"parameters": [
|
|
3179
|
-
{
|
|
3180
|
-
"name": "name",
|
|
3181
|
-
"type": {
|
|
3182
|
-
"text": "T"
|
|
3183
|
-
},
|
|
3184
|
-
"description": "The property name to retrieve the backing value for"
|
|
3185
|
-
}
|
|
3186
|
-
],
|
|
3187
|
-
"description": "Retrieves the backing property value for a given property name.\nThis allows access to the underlying stored value before any fallback logic is applied.\n\nWhy is this needed?\n- The public property getter may return a fallback value when the actual value is undefined.\n- Sometimes we need to know if the property was explicitly set or if we're using a fallback.\n- This method provides access to the raw backing value stored by Lit.",
|
|
3188
|
-
"inheritedFrom": {
|
|
3189
|
-
"name": "DDSElement",
|
|
3190
|
-
"module": "dist/es/base/dds-element.js"
|
|
3191
|
-
}
|
|
3192
|
-
}
|
|
3193
|
-
],
|
|
3194
|
-
"events": [
|
|
3195
|
-
{
|
|
3196
|
-
"name": "change",
|
|
3197
|
-
"type": {
|
|
3198
|
-
"text": "Event"
|
|
3199
|
-
},
|
|
3200
|
-
"description": "A custom event emitted when the open state of the accordion changes. The updated `openItems` can be read from the event target."
|
|
3201
|
-
}
|
|
3202
|
-
],
|
|
3203
|
-
"attributes": [
|
|
3204
|
-
{
|
|
3205
|
-
"name": "border",
|
|
3206
|
-
"type": {
|
|
3207
|
-
"text": "\"vertical\" | \"all\" | \"none\""
|
|
3208
|
-
},
|
|
3209
|
-
"default": "\"vertical\"",
|
|
3210
|
-
"description": "The border type of the accordion.\n- `vertical`: Display the top and bottom border style.\n- `all`: Box border style.\n- `none`: No border style.",
|
|
3211
|
-
"fieldName": "border"
|
|
3212
|
-
},
|
|
3213
|
-
{
|
|
3214
|
-
"name": "exclusive",
|
|
3215
|
-
"type": {
|
|
3216
|
-
"text": "boolean"
|
|
3217
|
-
},
|
|
3218
|
-
"default": "false",
|
|
3219
|
-
"description": "Whether or not to make the accordion exclusive.\nIf true, the number of items that can be open at once is limited to one.",
|
|
3220
|
-
"fieldName": "exclusive"
|
|
3221
|
-
}
|
|
3222
|
-
],
|
|
3223
|
-
"superclass": {
|
|
3224
|
-
"name": "DDSElement",
|
|
3225
|
-
"module": "/src/base"
|
|
3226
|
-
},
|
|
3227
|
-
"tagName": "daikin-accordion",
|
|
3228
|
-
"customElement": true
|
|
3229
|
-
}
|
|
3230
|
-
],
|
|
3231
|
-
"exports": [
|
|
3232
|
-
{
|
|
3233
|
-
"kind": "js",
|
|
3234
|
-
"name": "DaikinAccordion",
|
|
3235
|
-
"declaration": {
|
|
3236
|
-
"name": "DaikinAccordion",
|
|
3237
|
-
"module": "src/components/accordion/daikin-accordion.ts"
|
|
3238
|
-
}
|
|
3239
|
-
},
|
|
3240
|
-
{
|
|
3241
|
-
"kind": "custom-element-definition",
|
|
3242
|
-
"name": "daikin-accordion",
|
|
3243
|
-
"declaration": {
|
|
3244
|
-
"name": "DaikinAccordion",
|
|
3245
|
-
"module": "src/components/accordion/daikin-accordion.ts"
|
|
3246
|
-
}
|
|
3247
|
-
},
|
|
3248
|
-
{
|
|
3249
|
-
"kind": "js",
|
|
3250
|
-
"name": "default",
|
|
3251
|
-
"declaration": {
|
|
3252
|
-
"name": "DaikinAccordion",
|
|
3253
|
-
"module": "src/components/accordion/daikin-accordion.ts"
|
|
3254
|
-
}
|
|
3255
|
-
}
|
|
3256
|
-
]
|
|
3257
|
-
},
|
|
3258
|
-
{
|
|
3259
|
-
"kind": "javascript-module",
|
|
3260
|
-
"path": "dist/es/components/accordion/index.js",
|
|
3261
|
-
"declarations": [],
|
|
3262
|
-
"exports": [
|
|
3263
|
-
{
|
|
3264
|
-
"kind": "js",
|
|
3265
|
-
"name": "*",
|
|
3266
|
-
"declaration": {
|
|
3267
|
-
"name": "*",
|
|
3268
|
-
"module": "src/components/accordion/daikin-accordion"
|
|
3269
|
-
}
|
|
3270
|
-
}
|
|
3271
|
-
]
|
|
3272
|
-
},
|
|
3273
|
-
{
|
|
3274
|
-
"kind": "javascript-module",
|
|
3275
|
-
"path": "dist/es/components/accordion-item/daikin-accordion-item.js",
|
|
3275
|
+
"path": "dist/es/components/accordion-item/daikin-accordion-item.js",
|
|
3276
3276
|
"declarations": [
|
|
3277
3277
|
{
|
|
3278
3278
|
"kind": "class",
|
|
@@ -17292,173 +17292,155 @@
|
|
|
17292
17292
|
},
|
|
17293
17293
|
{
|
|
17294
17294
|
"kind": "javascript-module",
|
|
17295
|
-
"path": "dist/es/components/radio/daikin-radio.js",
|
|
17295
|
+
"path": "dist/es/components/radio-group/daikin-radio-group.js",
|
|
17296
17296
|
"declarations": [
|
|
17297
17297
|
{
|
|
17298
17298
|
"kind": "class",
|
|
17299
|
-
"description": "
|
|
17300
|
-
"name": "
|
|
17299
|
+
"description": "Radio groups are used to group multiple radio buttons so that make sure that only one will be selected in the group\n\nHierarchies:\n- `daikin-radio-group` > `daikin-radio`\n- `daikin-input-group` > `daikin-radio-group` > `daikin-radio`",
|
|
17300
|
+
"name": "DaikinRadioGroup",
|
|
17301
17301
|
"slots": [
|
|
17302
17302
|
{
|
|
17303
|
-
"description": "A slot for
|
|
17303
|
+
"description": "A slot for radio buttons. Place `daikin-radio` elements here.",
|
|
17304
17304
|
"name": ""
|
|
17305
17305
|
}
|
|
17306
17306
|
],
|
|
17307
17307
|
"members": [
|
|
17308
17308
|
{
|
|
17309
17309
|
"kind": "field",
|
|
17310
|
-
"name": "
|
|
17310
|
+
"name": "_radios",
|
|
17311
17311
|
"type": {
|
|
17312
|
-
"text": "
|
|
17312
|
+
"text": "Array<DaikinRadio>"
|
|
17313
17313
|
},
|
|
17314
|
-
"
|
|
17315
|
-
"
|
|
17316
|
-
"reflects": true
|
|
17314
|
+
"privacy": "private",
|
|
17315
|
+
"readonly": true
|
|
17317
17316
|
},
|
|
17318
17317
|
{
|
|
17319
17318
|
"kind": "field",
|
|
17320
|
-
"name": "
|
|
17319
|
+
"name": "orientation",
|
|
17321
17320
|
"type": {
|
|
17322
|
-
"text": "\"
|
|
17321
|
+
"text": "RadioGroupProps[\"orientation\"]"
|
|
17323
17322
|
},
|
|
17324
|
-
"description": "
|
|
17325
|
-
"default": "\"
|
|
17326
|
-
"attribute": "
|
|
17323
|
+
"description": "Specify the radio group orientation",
|
|
17324
|
+
"default": "\"vertical\"",
|
|
17325
|
+
"attribute": "orientation",
|
|
17327
17326
|
"reflects": true
|
|
17328
17327
|
},
|
|
17329
17328
|
{
|
|
17330
17329
|
"kind": "field",
|
|
17331
|
-
"name": "
|
|
17330
|
+
"name": "name",
|
|
17332
17331
|
"type": {
|
|
17333
|
-
"text": "
|
|
17332
|
+
"text": "string"
|
|
17334
17333
|
},
|
|
17335
|
-
"
|
|
17336
|
-
"
|
|
17337
|
-
"attribute": "checked",
|
|
17334
|
+
"description": "The form name, submitted as a name/value pair when submitting the form.\nWhen this value is set, all `daikin-radio` child components under it will be assigned this name.",
|
|
17335
|
+
"attribute": "name",
|
|
17338
17336
|
"reflects": true
|
|
17339
17337
|
},
|
|
17340
17338
|
{
|
|
17341
17339
|
"kind": "field",
|
|
17342
|
-
"name": "
|
|
17340
|
+
"name": "value",
|
|
17343
17341
|
"type": {
|
|
17344
|
-
"text": "
|
|
17342
|
+
"text": "string"
|
|
17345
17343
|
},
|
|
17346
|
-
"default": "
|
|
17347
|
-
"description": "
|
|
17348
|
-
"attribute": "
|
|
17349
|
-
"reflects": true
|
|
17344
|
+
"default": "\"\"",
|
|
17345
|
+
"description": "`value` of the currently selected radio.\nSee the `value` property of `daikin-radio`.\nTo keep external state in sync, listen to the `change` event.",
|
|
17346
|
+
"attribute": "value"
|
|
17350
17347
|
},
|
|
17351
17348
|
{
|
|
17352
17349
|
"kind": "field",
|
|
17353
|
-
"name": "
|
|
17350
|
+
"name": "required",
|
|
17354
17351
|
"type": {
|
|
17355
17352
|
"text": "boolean"
|
|
17356
17353
|
},
|
|
17357
17354
|
"default": "false",
|
|
17358
|
-
"description": "
|
|
17359
|
-
"attribute": "
|
|
17355
|
+
"description": "Whether the radio group is required.\nControlled by `daikin-input-group` when used within `daikin-input-group`.",
|
|
17356
|
+
"attribute": "required",
|
|
17360
17357
|
"reflects": true
|
|
17361
17358
|
},
|
|
17362
17359
|
{
|
|
17363
17360
|
"kind": "field",
|
|
17364
|
-
"name": "
|
|
17361
|
+
"name": "disabled",
|
|
17365
17362
|
"type": {
|
|
17366
17363
|
"text": "boolean"
|
|
17367
17364
|
},
|
|
17368
17365
|
"default": "false",
|
|
17369
|
-
"description": "
|
|
17370
|
-
"
|
|
17366
|
+
"description": "Whether the radio group is disabled.\nControlled by `daikin-input-group` when used within `daikin-input-group`.",
|
|
17367
|
+
"attribute": "disabled",
|
|
17368
|
+
"reflects": true
|
|
17371
17369
|
},
|
|
17372
17370
|
{
|
|
17373
17371
|
"kind": "field",
|
|
17374
|
-
"name": "
|
|
17372
|
+
"name": "readonly",
|
|
17375
17373
|
"type": {
|
|
17376
17374
|
"text": "boolean"
|
|
17377
17375
|
},
|
|
17378
17376
|
"default": "false",
|
|
17379
|
-
"description": "
|
|
17380
|
-
"
|
|
17377
|
+
"description": "Whether the radio group is readonly.",
|
|
17378
|
+
"attribute": "readonly",
|
|
17379
|
+
"reflects": true
|
|
17381
17380
|
},
|
|
17382
17381
|
{
|
|
17383
17382
|
"kind": "field",
|
|
17384
|
-
"name": "
|
|
17383
|
+
"name": "_label",
|
|
17385
17384
|
"type": {
|
|
17386
|
-
"text": "
|
|
17385
|
+
"text": "string | null"
|
|
17387
17386
|
},
|
|
17388
17387
|
"privacy": "private",
|
|
17389
|
-
"
|
|
17390
|
-
"
|
|
17388
|
+
"default": "null",
|
|
17389
|
+
"description": "The label text used as the value of aria-label.\nSet automatically by `reflectInputGroup` method."
|
|
17391
17390
|
},
|
|
17392
17391
|
{
|
|
17393
|
-
"kind": "
|
|
17394
|
-
"name": "
|
|
17395
|
-
"type": {
|
|
17396
|
-
"text": "boolean"
|
|
17397
|
-
},
|
|
17392
|
+
"kind": "method",
|
|
17393
|
+
"name": "_reflectSlotProperties",
|
|
17398
17394
|
"privacy": "private",
|
|
17399
|
-
"
|
|
17400
|
-
|
|
17401
|
-
|
|
17402
|
-
|
|
17403
|
-
|
|
17404
|
-
"name": "skipTab",
|
|
17405
|
-
"type": {
|
|
17406
|
-
"text": "boolean"
|
|
17407
|
-
},
|
|
17408
|
-
"default": "false",
|
|
17409
|
-
"description": "Whether the radio button can be focused.\nAutomatically set by `daikin-radio-group` component."
|
|
17395
|
+
"return": {
|
|
17396
|
+
"type": {
|
|
17397
|
+
"text": "void"
|
|
17398
|
+
}
|
|
17399
|
+
}
|
|
17410
17400
|
},
|
|
17411
17401
|
{
|
|
17412
|
-
"kind": "
|
|
17413
|
-
"name": "
|
|
17414
|
-
"type": {
|
|
17415
|
-
"text": "HTMLInputElement | null"
|
|
17416
|
-
},
|
|
17402
|
+
"kind": "method",
|
|
17403
|
+
"name": "_updateRadios",
|
|
17417
17404
|
"privacy": "private"
|
|
17418
17405
|
},
|
|
17419
17406
|
{
|
|
17420
17407
|
"kind": "field",
|
|
17421
|
-
"name": "
|
|
17422
|
-
"type": {
|
|
17423
|
-
"text": "boolean"
|
|
17424
|
-
},
|
|
17408
|
+
"name": "_handleRadioChange",
|
|
17425
17409
|
"privacy": "private",
|
|
17426
17410
|
"readonly": true
|
|
17427
17411
|
},
|
|
17428
17412
|
{
|
|
17429
17413
|
"kind": "method",
|
|
17430
|
-
"name": "
|
|
17431
|
-
"privacy": "private"
|
|
17432
|
-
},
|
|
17433
|
-
{
|
|
17434
|
-
"kind": "method",
|
|
17435
|
-
"name": "_handleClick",
|
|
17414
|
+
"name": "_handleSlotChange",
|
|
17436
17415
|
"privacy": "private",
|
|
17437
|
-
"
|
|
17438
|
-
{
|
|
17439
|
-
"
|
|
17440
|
-
"type": {
|
|
17441
|
-
"text": "MouseEvent"
|
|
17442
|
-
}
|
|
17416
|
+
"return": {
|
|
17417
|
+
"type": {
|
|
17418
|
+
"text": "void"
|
|
17443
17419
|
}
|
|
17444
|
-
|
|
17420
|
+
}
|
|
17445
17421
|
},
|
|
17446
17422
|
{
|
|
17447
17423
|
"kind": "method",
|
|
17448
|
-
"name": "
|
|
17424
|
+
"name": "_handleKeyDown",
|
|
17449
17425
|
"privacy": "private",
|
|
17426
|
+
"return": {
|
|
17427
|
+
"type": {
|
|
17428
|
+
"text": "void"
|
|
17429
|
+
}
|
|
17430
|
+
},
|
|
17450
17431
|
"parameters": [
|
|
17451
17432
|
{
|
|
17452
17433
|
"name": "event",
|
|
17453
17434
|
"type": {
|
|
17454
|
-
"text": "
|
|
17435
|
+
"text": "KeyboardEvent"
|
|
17455
17436
|
}
|
|
17456
17437
|
}
|
|
17457
|
-
]
|
|
17438
|
+
],
|
|
17439
|
+
"description": "Handles keyboard interactions in the radio list.\nhttps://www.w3.org/WAI/ARIA/apg/patterns/radio/"
|
|
17458
17440
|
},
|
|
17459
17441
|
{
|
|
17460
17442
|
"kind": "method",
|
|
17461
|
-
"name": "
|
|
17443
|
+
"name": "reflectInputGroup",
|
|
17462
17444
|
"return": {
|
|
17463
17445
|
"type": {
|
|
17464
17446
|
"text": "void"
|
|
@@ -17466,172 +17448,14 @@
|
|
|
17466
17448
|
},
|
|
17467
17449
|
"parameters": [
|
|
17468
17450
|
{
|
|
17469
|
-
"name": "
|
|
17470
|
-
"optional": true,
|
|
17471
|
-
"type": {
|
|
17472
|
-
"text": "FocusOptions"
|
|
17473
|
-
},
|
|
17474
|
-
"description": "focus options"
|
|
17475
|
-
}
|
|
17476
|
-
],
|
|
17477
|
-
"description": "Focuses on the inner radio."
|
|
17478
|
-
},
|
|
17479
|
-
{
|
|
17480
|
-
"kind": "field",
|
|
17481
|
-
"name": "formAttr",
|
|
17482
|
-
"type": {
|
|
17483
|
-
"text": "string"
|
|
17484
|
-
},
|
|
17485
|
-
"description": "The form the component belongs to.",
|
|
17486
|
-
"attribute": "form",
|
|
17487
|
-
"reflects": true,
|
|
17488
|
-
"inheritedFrom": {
|
|
17489
|
-
"name": "DDSFormElement",
|
|
17490
|
-
"module": "dist/es/base/dds-form-element.js"
|
|
17491
|
-
}
|
|
17492
|
-
},
|
|
17493
|
-
{
|
|
17494
|
-
"kind": "field",
|
|
17495
|
-
"name": "name",
|
|
17496
|
-
"type": {
|
|
17497
|
-
"text": "string"
|
|
17498
|
-
},
|
|
17499
|
-
"description": "The form name, submitted as a name/value pair when submitting the form.",
|
|
17500
|
-
"attribute": "name",
|
|
17501
|
-
"reflects": true,
|
|
17502
|
-
"inheritedFrom": {
|
|
17503
|
-
"name": "DDSFormElement",
|
|
17504
|
-
"module": "dist/es/base/dds-form-element.js"
|
|
17505
|
-
}
|
|
17506
|
-
},
|
|
17507
|
-
{
|
|
17508
|
-
"kind": "field",
|
|
17509
|
-
"name": "value",
|
|
17510
|
-
"type": {
|
|
17511
|
-
"text": "string"
|
|
17512
|
-
},
|
|
17513
|
-
"default": "\"\"",
|
|
17514
|
-
"description": "The form value, submitted as a name/value pair when submitting the form.",
|
|
17515
|
-
"attribute": "value",
|
|
17516
|
-
"inheritedFrom": {
|
|
17517
|
-
"name": "DDSFormElement",
|
|
17518
|
-
"module": "dist/es/base/dds-form-element.js"
|
|
17519
|
-
}
|
|
17520
|
-
},
|
|
17521
|
-
{
|
|
17522
|
-
"kind": "field",
|
|
17523
|
-
"name": "formAssociated",
|
|
17524
|
-
"type": {
|
|
17525
|
-
"text": "boolean"
|
|
17526
|
-
},
|
|
17527
|
-
"static": true,
|
|
17528
|
-
"readonly": true,
|
|
17529
|
-
"default": "true",
|
|
17530
|
-
"inheritedFrom": {
|
|
17531
|
-
"name": "DDSFormElement",
|
|
17532
|
-
"module": "dist/es/base/dds-form-element.js"
|
|
17533
|
-
}
|
|
17534
|
-
},
|
|
17535
|
-
{
|
|
17536
|
-
"kind": "field",
|
|
17537
|
-
"name": "internals",
|
|
17538
|
-
"type": {
|
|
17539
|
-
"text": "ElementInternals | null | undefined"
|
|
17540
|
-
},
|
|
17541
|
-
"privacy": "protected",
|
|
17542
|
-
"inheritedFrom": {
|
|
17543
|
-
"name": "DDSFormElement",
|
|
17544
|
-
"module": "dist/es/base/dds-form-element.js"
|
|
17545
|
-
}
|
|
17546
|
-
},
|
|
17547
|
-
{
|
|
17548
|
-
"kind": "field",
|
|
17549
|
-
"name": "form",
|
|
17550
|
-
"type": {
|
|
17551
|
-
"text": "HTMLFormElement | null"
|
|
17552
|
-
},
|
|
17553
|
-
"description": "Returns the form object associated with the element, or null if none exists.",
|
|
17554
|
-
"privacy": "private",
|
|
17555
|
-
"readonly": true,
|
|
17556
|
-
"inheritedFrom": {
|
|
17557
|
-
"name": "DDSFormElement",
|
|
17558
|
-
"module": "dist/es/base/dds-form-element.js"
|
|
17559
|
-
}
|
|
17560
|
-
},
|
|
17561
|
-
{
|
|
17562
|
-
"kind": "method",
|
|
17563
|
-
"name": "setFormValue",
|
|
17564
|
-
"parameters": [
|
|
17565
|
-
{
|
|
17566
|
-
"name": "value",
|
|
17567
|
-
"type": {
|
|
17568
|
-
"text": "FormValueType"
|
|
17569
|
-
}
|
|
17570
|
-
},
|
|
17571
|
-
{
|
|
17572
|
-
"name": "state",
|
|
17573
|
-
"optional": true,
|
|
17451
|
+
"name": "inputGroup",
|
|
17574
17452
|
"type": {
|
|
17575
|
-
"text": "
|
|
17453
|
+
"text": "DaikinInputGroup"
|
|
17576
17454
|
}
|
|
17577
|
-
}
|
|
17578
|
-
],
|
|
17579
|
-
"description": "
|
|
17580
|
-
"privacy": "private"
|
|
17581
|
-
"inheritedFrom": {
|
|
17582
|
-
"name": "DDSFormElement",
|
|
17583
|
-
"module": "dist/es/base/dds-form-element.js"
|
|
17584
|
-
}
|
|
17585
|
-
},
|
|
17586
|
-
{
|
|
17587
|
-
"kind": "method",
|
|
17588
|
-
"name": "reportValidity",
|
|
17589
|
-
"description": "A function that maps to the form control's `reportValidity()` function.\nReference: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/reportValidity",
|
|
17590
|
-
"privacy": "private",
|
|
17591
|
-
"inheritedFrom": {
|
|
17592
|
-
"name": "DDSFormElement",
|
|
17593
|
-
"module": "dist/es/base/dds-form-element.js"
|
|
17594
|
-
}
|
|
17595
|
-
},
|
|
17596
|
-
{
|
|
17597
|
-
"kind": "method",
|
|
17598
|
-
"name": "checkValidity",
|
|
17599
|
-
"description": "A function that maps to the form control's `checkValidity()` function.\nReference: https://developer.mozilla.org/en-US/docs/Web/API/HTMLSelectElement/checkValidity",
|
|
17600
|
-
"privacy": "private",
|
|
17601
|
-
"inheritedFrom": {
|
|
17602
|
-
"name": "DDSFormElement",
|
|
17603
|
-
"module": "dist/es/base/dds-form-element.js"
|
|
17604
|
-
}
|
|
17605
|
-
},
|
|
17606
|
-
{
|
|
17607
|
-
"kind": "method",
|
|
17608
|
-
"name": "hostConnected",
|
|
17609
|
-
"description": "TODO Enhance these functions to bring our components closer to native form components.",
|
|
17610
|
-
"privacy": "private",
|
|
17611
|
-
"inheritedFrom": {
|
|
17612
|
-
"name": "DDSFormElement",
|
|
17613
|
-
"module": "dist/es/base/dds-form-element.js"
|
|
17614
|
-
}
|
|
17615
|
-
},
|
|
17616
|
-
{
|
|
17617
|
-
"kind": "method",
|
|
17618
|
-
"name": "hostDisconnected",
|
|
17619
|
-
"description": "TODO Enhance these functions to bring our components closer to native form components.",
|
|
17620
|
-
"privacy": "private",
|
|
17621
|
-
"inheritedFrom": {
|
|
17622
|
-
"name": "DDSFormElement",
|
|
17623
|
-
"module": "dist/es/base/dds-form-element.js"
|
|
17624
|
-
}
|
|
17625
|
-
},
|
|
17626
|
-
{
|
|
17627
|
-
"kind": "method",
|
|
17628
|
-
"name": "hostUpdated",
|
|
17629
|
-
"description": "TODO Enhance these functions to bring our components closer to native form components.",
|
|
17630
|
-
"privacy": "private",
|
|
17631
|
-
"inheritedFrom": {
|
|
17632
|
-
"name": "DDSFormElement",
|
|
17633
|
-
"module": "dist/es/base/dds-form-element.js"
|
|
17634
|
-
}
|
|
17455
|
+
}
|
|
17456
|
+
],
|
|
17457
|
+
"description": "This method is used by `daikin-input-group` to reflect it's attributes to this component.",
|
|
17458
|
+
"privacy": "private"
|
|
17635
17459
|
},
|
|
17636
17460
|
{
|
|
17637
17461
|
"kind": "field",
|
|
@@ -17720,33 +17544,26 @@
|
|
|
17720
17544
|
"type": {
|
|
17721
17545
|
"text": "Event"
|
|
17722
17546
|
},
|
|
17723
|
-
"description": "A
|
|
17547
|
+
"description": "A custom event emitted when current checked radio changed."
|
|
17724
17548
|
}
|
|
17725
17549
|
],
|
|
17726
17550
|
"attributes": [
|
|
17727
17551
|
{
|
|
17728
|
-
"name": "
|
|
17552
|
+
"name": "orientation",
|
|
17729
17553
|
"type": {
|
|
17730
|
-
"text": "
|
|
17554
|
+
"text": "RadioGroupProps[\"orientation\"]"
|
|
17731
17555
|
},
|
|
17732
|
-
"description": "
|
|
17733
|
-
"
|
|
17734
|
-
"
|
|
17735
|
-
"name": "DDSFormElement",
|
|
17736
|
-
"module": "dist/es/base/dds-form-element.js"
|
|
17737
|
-
}
|
|
17556
|
+
"description": "Specify the radio group orientation",
|
|
17557
|
+
"default": "\"vertical\"",
|
|
17558
|
+
"fieldName": "orientation"
|
|
17738
17559
|
},
|
|
17739
17560
|
{
|
|
17740
17561
|
"name": "name",
|
|
17741
17562
|
"type": {
|
|
17742
17563
|
"text": "string"
|
|
17743
17564
|
},
|
|
17744
|
-
"description": "The form name, submitted as a name/value pair when submitting the form.",
|
|
17745
|
-
"fieldName": "name"
|
|
17746
|
-
"inheritedFrom": {
|
|
17747
|
-
"name": "DDSFormElement",
|
|
17748
|
-
"module": "dist/es/base/dds-form-element.js"
|
|
17749
|
-
}
|
|
17565
|
+
"description": "The form name, submitted as a name/value pair when submitting the form.\nWhen this value is set, all `daikin-radio` child components under it will be assigned this name.",
|
|
17566
|
+
"fieldName": "name"
|
|
17750
17567
|
},
|
|
17751
17568
|
{
|
|
17752
17569
|
"name": "value",
|
|
@@ -17754,38 +17571,17 @@
|
|
|
17754
17571
|
"text": "string"
|
|
17755
17572
|
},
|
|
17756
17573
|
"default": "\"\"",
|
|
17757
|
-
"description": "
|
|
17758
|
-
"fieldName": "value"
|
|
17759
|
-
"inheritedFrom": {
|
|
17760
|
-
"name": "DDSFormElement",
|
|
17761
|
-
"module": "dist/es/base/dds-form-element.js"
|
|
17762
|
-
}
|
|
17763
|
-
},
|
|
17764
|
-
{
|
|
17765
|
-
"name": "label",
|
|
17766
|
-
"type": {
|
|
17767
|
-
"text": "string"
|
|
17768
|
-
},
|
|
17769
|
-
"description": "Label text for the radio button.",
|
|
17770
|
-
"fieldName": "label"
|
|
17771
|
-
},
|
|
17772
|
-
{
|
|
17773
|
-
"name": "label-position",
|
|
17774
|
-
"type": {
|
|
17775
|
-
"text": "\"right\" | \"hidden\""
|
|
17776
|
-
},
|
|
17777
|
-
"description": "Label position.\n- `right` (default): The label will be placed to the right of the radio button.\n- `hidden`: The label will not be shown.",
|
|
17778
|
-
"default": "\"right\"",
|
|
17779
|
-
"fieldName": "labelPosition"
|
|
17574
|
+
"description": "`value` of the currently selected radio.\nSee the `value` property of `daikin-radio`.\nTo keep external state in sync, listen to the `change` event.",
|
|
17575
|
+
"fieldName": "value"
|
|
17780
17576
|
},
|
|
17781
17577
|
{
|
|
17782
|
-
"name": "
|
|
17578
|
+
"name": "required",
|
|
17783
17579
|
"type": {
|
|
17784
17580
|
"text": "boolean"
|
|
17785
17581
|
},
|
|
17786
17582
|
"default": "false",
|
|
17787
|
-
"description": "
|
|
17788
|
-
"fieldName": "
|
|
17583
|
+
"description": "Whether the radio group is required.\nControlled by `daikin-input-group` when used within `daikin-input-group`.",
|
|
17584
|
+
"fieldName": "required"
|
|
17789
17585
|
},
|
|
17790
17586
|
{
|
|
17791
17587
|
"name": "disabled",
|
|
@@ -17793,7 +17589,7 @@
|
|
|
17793
17589
|
"text": "boolean"
|
|
17794
17590
|
},
|
|
17795
17591
|
"default": "false",
|
|
17796
|
-
"description": "
|
|
17592
|
+
"description": "Whether the radio group is disabled.\nControlled by `daikin-input-group` when used within `daikin-input-group`.",
|
|
17797
17593
|
"fieldName": "disabled"
|
|
17798
17594
|
},
|
|
17799
17595
|
{
|
|
@@ -17802,40 +17598,40 @@
|
|
|
17802
17598
|
"text": "boolean"
|
|
17803
17599
|
},
|
|
17804
17600
|
"default": "false",
|
|
17805
|
-
"description": "
|
|
17601
|
+
"description": "Whether the radio group is readonly.",
|
|
17806
17602
|
"fieldName": "readonly"
|
|
17807
17603
|
}
|
|
17808
17604
|
],
|
|
17809
17605
|
"superclass": {
|
|
17810
|
-
"name": "
|
|
17606
|
+
"name": "DDSElement",
|
|
17811
17607
|
"module": "/src/base"
|
|
17812
17608
|
},
|
|
17813
|
-
"tagName": "daikin-radio",
|
|
17609
|
+
"tagName": "daikin-radio-group",
|
|
17814
17610
|
"customElement": true
|
|
17815
17611
|
}
|
|
17816
17612
|
],
|
|
17817
17613
|
"exports": [
|
|
17818
17614
|
{
|
|
17819
17615
|
"kind": "js",
|
|
17820
|
-
"name": "
|
|
17616
|
+
"name": "DaikinRadioGroup",
|
|
17821
17617
|
"declaration": {
|
|
17822
|
-
"name": "
|
|
17823
|
-
"module": "src/components/radio/daikin-radio.ts"
|
|
17618
|
+
"name": "DaikinRadioGroup",
|
|
17619
|
+
"module": "src/components/radio-group/daikin-radio-group.ts"
|
|
17824
17620
|
}
|
|
17825
17621
|
},
|
|
17826
17622
|
{
|
|
17827
17623
|
"kind": "custom-element-definition",
|
|
17828
|
-
"name": "daikin-radio",
|
|
17624
|
+
"name": "daikin-radio-group",
|
|
17829
17625
|
"declaration": {
|
|
17830
|
-
"name": "
|
|
17831
|
-
"module": "src/components/radio/daikin-radio.ts"
|
|
17626
|
+
"name": "DaikinRadioGroup",
|
|
17627
|
+
"module": "src/components/radio-group/daikin-radio-group.ts"
|
|
17832
17628
|
}
|
|
17833
17629
|
}
|
|
17834
17630
|
]
|
|
17835
17631
|
},
|
|
17836
17632
|
{
|
|
17837
17633
|
"kind": "javascript-module",
|
|
17838
|
-
"path": "dist/es/components/radio/index.js",
|
|
17634
|
+
"path": "dist/es/components/radio-group/index.js",
|
|
17839
17635
|
"declarations": [],
|
|
17840
17636
|
"exports": [
|
|
17841
17637
|
{
|
|
@@ -17843,45 +17639,210 @@
|
|
|
17843
17639
|
"name": "*",
|
|
17844
17640
|
"declaration": {
|
|
17845
17641
|
"name": "*",
|
|
17846
|
-
"module": "src/components/radio/daikin-radio"
|
|
17642
|
+
"module": "src/components/radio-group/daikin-radio-group"
|
|
17847
17643
|
}
|
|
17848
17644
|
}
|
|
17849
17645
|
]
|
|
17850
17646
|
},
|
|
17851
17647
|
{
|
|
17852
17648
|
"kind": "javascript-module",
|
|
17853
|
-
"path": "dist/es/components/radio
|
|
17649
|
+
"path": "dist/es/components/radio/daikin-radio.js",
|
|
17854
17650
|
"declarations": [
|
|
17855
17651
|
{
|
|
17856
17652
|
"kind": "class",
|
|
17857
|
-
"description": "
|
|
17858
|
-
"name": "
|
|
17653
|
+
"description": "The radio button component is a UI element that allows users to select one options from a set of choices.\nIt functions similarly to the HTML `<input type=\"radio\">` tag. \\\nPlease note that **a radio group component is not yet available**, so you'll need to manually group radio buttons when using multiple instances.\n\nHierarchies:\n- `daikin-radio-group` > `daikin-radio`",
|
|
17654
|
+
"name": "DaikinRadio",
|
|
17859
17655
|
"slots": [
|
|
17860
17656
|
{
|
|
17861
|
-
"description": "A slot for
|
|
17657
|
+
"description": "A slot for the radio label content.",
|
|
17862
17658
|
"name": ""
|
|
17863
17659
|
}
|
|
17864
17660
|
],
|
|
17865
17661
|
"members": [
|
|
17866
17662
|
{
|
|
17867
17663
|
"kind": "field",
|
|
17868
|
-
"name": "
|
|
17664
|
+
"name": "label",
|
|
17869
17665
|
"type": {
|
|
17870
|
-
"text": "
|
|
17666
|
+
"text": "string"
|
|
17667
|
+
},
|
|
17668
|
+
"description": "Label text for the radio button.",
|
|
17669
|
+
"attribute": "label",
|
|
17670
|
+
"reflects": true
|
|
17671
|
+
},
|
|
17672
|
+
{
|
|
17673
|
+
"kind": "field",
|
|
17674
|
+
"name": "labelPosition",
|
|
17675
|
+
"type": {
|
|
17676
|
+
"text": "\"right\" | \"hidden\""
|
|
17677
|
+
},
|
|
17678
|
+
"description": "Label position.\n- `right` (default): The label will be placed to the right of the radio button.\n- `hidden`: The label will not be shown.",
|
|
17679
|
+
"default": "\"right\"",
|
|
17680
|
+
"attribute": "label-position",
|
|
17681
|
+
"reflects": true
|
|
17682
|
+
},
|
|
17683
|
+
{
|
|
17684
|
+
"kind": "field",
|
|
17685
|
+
"name": "checked",
|
|
17686
|
+
"type": {
|
|
17687
|
+
"text": "boolean"
|
|
17688
|
+
},
|
|
17689
|
+
"default": "false",
|
|
17690
|
+
"description": "Specify the radio button checked state.\nTo keep external state in sync, listen to the `change` event.",
|
|
17691
|
+
"attribute": "checked",
|
|
17692
|
+
"reflects": true
|
|
17693
|
+
},
|
|
17694
|
+
{
|
|
17695
|
+
"kind": "field",
|
|
17696
|
+
"name": "disabled",
|
|
17697
|
+
"type": {
|
|
17698
|
+
"text": "boolean"
|
|
17699
|
+
},
|
|
17700
|
+
"default": "false",
|
|
17701
|
+
"description": "Specify the radio button disabled state.",
|
|
17702
|
+
"attribute": "disabled",
|
|
17703
|
+
"reflects": true
|
|
17704
|
+
},
|
|
17705
|
+
{
|
|
17706
|
+
"kind": "field",
|
|
17707
|
+
"name": "readonly",
|
|
17708
|
+
"type": {
|
|
17709
|
+
"text": "boolean"
|
|
17710
|
+
},
|
|
17711
|
+
"default": "false",
|
|
17712
|
+
"description": "Specify the radio button readonly state.\nWhen readonly, the user cannot change the checked state.",
|
|
17713
|
+
"attribute": "readonly",
|
|
17714
|
+
"reflects": true
|
|
17715
|
+
},
|
|
17716
|
+
{
|
|
17717
|
+
"kind": "field",
|
|
17718
|
+
"name": "disabledByParent",
|
|
17719
|
+
"type": {
|
|
17720
|
+
"text": "boolean"
|
|
17721
|
+
},
|
|
17722
|
+
"default": "false",
|
|
17723
|
+
"description": "Specify the radio disabled state controlled by the parent component.\nControlled by `daikin-radio-group`.",
|
|
17724
|
+
"privacy": "private"
|
|
17725
|
+
},
|
|
17726
|
+
{
|
|
17727
|
+
"kind": "field",
|
|
17728
|
+
"name": "readonlyByParent",
|
|
17729
|
+
"type": {
|
|
17730
|
+
"text": "boolean"
|
|
17731
|
+
},
|
|
17732
|
+
"default": "false",
|
|
17733
|
+
"description": "Specify the radio readonly state controlled by the parent component.\nControlled by `daikin-radio-group`.",
|
|
17734
|
+
"privacy": "private"
|
|
17735
|
+
},
|
|
17736
|
+
{
|
|
17737
|
+
"kind": "field",
|
|
17738
|
+
"name": "_disabled",
|
|
17739
|
+
"type": {
|
|
17740
|
+
"text": "boolean"
|
|
17741
|
+
},
|
|
17742
|
+
"privacy": "private",
|
|
17743
|
+
"description": "The effective disabled state of the radio button.\nReturns `true` if either `disabled` or `disabledByParent` is `true`.",
|
|
17744
|
+
"readonly": true
|
|
17745
|
+
},
|
|
17746
|
+
{
|
|
17747
|
+
"kind": "field",
|
|
17748
|
+
"name": "_readonly",
|
|
17749
|
+
"type": {
|
|
17750
|
+
"text": "boolean"
|
|
17751
|
+
},
|
|
17752
|
+
"privacy": "private",
|
|
17753
|
+
"description": "The effective readonly state of the radio button.\nReturns `true` if either `readonly` or `readonlyByParent` is `true`.",
|
|
17754
|
+
"readonly": true
|
|
17755
|
+
},
|
|
17756
|
+
{
|
|
17757
|
+
"kind": "field",
|
|
17758
|
+
"name": "skipTab",
|
|
17759
|
+
"type": {
|
|
17760
|
+
"text": "boolean"
|
|
17761
|
+
},
|
|
17762
|
+
"default": "false",
|
|
17763
|
+
"description": "Whether the radio button can be focused.\nAutomatically set by `daikin-radio-group` component."
|
|
17764
|
+
},
|
|
17765
|
+
{
|
|
17766
|
+
"kind": "field",
|
|
17767
|
+
"name": "_radio",
|
|
17768
|
+
"type": {
|
|
17769
|
+
"text": "HTMLInputElement | null"
|
|
17770
|
+
},
|
|
17771
|
+
"privacy": "private"
|
|
17772
|
+
},
|
|
17773
|
+
{
|
|
17774
|
+
"kind": "field",
|
|
17775
|
+
"name": "_labelHidden",
|
|
17776
|
+
"type": {
|
|
17777
|
+
"text": "boolean"
|
|
17871
17778
|
},
|
|
17872
17779
|
"privacy": "private",
|
|
17873
17780
|
"readonly": true
|
|
17874
17781
|
},
|
|
17782
|
+
{
|
|
17783
|
+
"kind": "method",
|
|
17784
|
+
"name": "_updateFormValue",
|
|
17785
|
+
"privacy": "private"
|
|
17786
|
+
},
|
|
17787
|
+
{
|
|
17788
|
+
"kind": "method",
|
|
17789
|
+
"name": "_handleClick",
|
|
17790
|
+
"privacy": "private",
|
|
17791
|
+
"parameters": [
|
|
17792
|
+
{
|
|
17793
|
+
"name": "event",
|
|
17794
|
+
"type": {
|
|
17795
|
+
"text": "MouseEvent"
|
|
17796
|
+
}
|
|
17797
|
+
}
|
|
17798
|
+
]
|
|
17799
|
+
},
|
|
17800
|
+
{
|
|
17801
|
+
"kind": "method",
|
|
17802
|
+
"name": "_handleChange",
|
|
17803
|
+
"privacy": "private",
|
|
17804
|
+
"parameters": [
|
|
17805
|
+
{
|
|
17806
|
+
"name": "event",
|
|
17807
|
+
"type": {
|
|
17808
|
+
"text": "Event"
|
|
17809
|
+
}
|
|
17810
|
+
}
|
|
17811
|
+
]
|
|
17812
|
+
},
|
|
17813
|
+
{
|
|
17814
|
+
"kind": "method",
|
|
17815
|
+
"name": "focus",
|
|
17816
|
+
"return": {
|
|
17817
|
+
"type": {
|
|
17818
|
+
"text": "void"
|
|
17819
|
+
}
|
|
17820
|
+
},
|
|
17821
|
+
"parameters": [
|
|
17822
|
+
{
|
|
17823
|
+
"name": "options",
|
|
17824
|
+
"optional": true,
|
|
17825
|
+
"type": {
|
|
17826
|
+
"text": "FocusOptions"
|
|
17827
|
+
},
|
|
17828
|
+
"description": "focus options"
|
|
17829
|
+
}
|
|
17830
|
+
],
|
|
17831
|
+
"description": "Focuses on the inner radio."
|
|
17832
|
+
},
|
|
17875
17833
|
{
|
|
17876
17834
|
"kind": "field",
|
|
17877
|
-
"name": "
|
|
17835
|
+
"name": "formAttr",
|
|
17878
17836
|
"type": {
|
|
17879
|
-
"text": "
|
|
17837
|
+
"text": "string"
|
|
17880
17838
|
},
|
|
17881
|
-
"description": "
|
|
17882
|
-
"
|
|
17883
|
-
"
|
|
17884
|
-
"
|
|
17839
|
+
"description": "The form the component belongs to.",
|
|
17840
|
+
"attribute": "form",
|
|
17841
|
+
"reflects": true,
|
|
17842
|
+
"inheritedFrom": {
|
|
17843
|
+
"name": "DDSFormElement",
|
|
17844
|
+
"module": "dist/es/base/dds-form-element.js"
|
|
17845
|
+
}
|
|
17885
17846
|
},
|
|
17886
17847
|
{
|
|
17887
17848
|
"kind": "field",
|
|
@@ -17889,9 +17850,13 @@
|
|
|
17889
17850
|
"type": {
|
|
17890
17851
|
"text": "string"
|
|
17891
17852
|
},
|
|
17892
|
-
"description": "The form name, submitted as a name/value pair when submitting the form
|
|
17853
|
+
"description": "The form name, submitted as a name/value pair when submitting the form.",
|
|
17893
17854
|
"attribute": "name",
|
|
17894
|
-
"reflects": true
|
|
17855
|
+
"reflects": true,
|
|
17856
|
+
"inheritedFrom": {
|
|
17857
|
+
"name": "DDSFormElement",
|
|
17858
|
+
"module": "dist/es/base/dds-form-element.js"
|
|
17859
|
+
}
|
|
17895
17860
|
},
|
|
17896
17861
|
{
|
|
17897
17862
|
"kind": "field",
|
|
@@ -17900,120 +17865,127 @@
|
|
|
17900
17865
|
"text": "string"
|
|
17901
17866
|
},
|
|
17902
17867
|
"default": "\"\"",
|
|
17903
|
-
"description": "
|
|
17904
|
-
"attribute": "value"
|
|
17905
|
-
|
|
17906
|
-
|
|
17907
|
-
|
|
17908
|
-
|
|
17909
|
-
"type": {
|
|
17910
|
-
"text": "boolean"
|
|
17911
|
-
},
|
|
17912
|
-
"default": "false",
|
|
17913
|
-
"description": "Whether the radio group is required.\nControlled by `daikin-input-group` when used within `daikin-input-group`.",
|
|
17914
|
-
"attribute": "required",
|
|
17915
|
-
"reflects": true
|
|
17868
|
+
"description": "The form value, submitted as a name/value pair when submitting the form.",
|
|
17869
|
+
"attribute": "value",
|
|
17870
|
+
"inheritedFrom": {
|
|
17871
|
+
"name": "DDSFormElement",
|
|
17872
|
+
"module": "dist/es/base/dds-form-element.js"
|
|
17873
|
+
}
|
|
17916
17874
|
},
|
|
17917
17875
|
{
|
|
17918
17876
|
"kind": "field",
|
|
17919
|
-
"name": "
|
|
17877
|
+
"name": "formAssociated",
|
|
17920
17878
|
"type": {
|
|
17921
17879
|
"text": "boolean"
|
|
17922
17880
|
},
|
|
17923
|
-
"
|
|
17924
|
-
"
|
|
17925
|
-
"
|
|
17926
|
-
"
|
|
17881
|
+
"static": true,
|
|
17882
|
+
"readonly": true,
|
|
17883
|
+
"default": "true",
|
|
17884
|
+
"inheritedFrom": {
|
|
17885
|
+
"name": "DDSFormElement",
|
|
17886
|
+
"module": "dist/es/base/dds-form-element.js"
|
|
17887
|
+
}
|
|
17927
17888
|
},
|
|
17928
17889
|
{
|
|
17929
17890
|
"kind": "field",
|
|
17930
|
-
"name": "
|
|
17891
|
+
"name": "internals",
|
|
17931
17892
|
"type": {
|
|
17932
|
-
"text": "
|
|
17893
|
+
"text": "ElementInternals | null | undefined"
|
|
17933
17894
|
},
|
|
17934
|
-
"
|
|
17935
|
-
"
|
|
17936
|
-
|
|
17937
|
-
|
|
17895
|
+
"privacy": "protected",
|
|
17896
|
+
"inheritedFrom": {
|
|
17897
|
+
"name": "DDSFormElement",
|
|
17898
|
+
"module": "dist/es/base/dds-form-element.js"
|
|
17899
|
+
}
|
|
17938
17900
|
},
|
|
17939
17901
|
{
|
|
17940
17902
|
"kind": "field",
|
|
17941
|
-
"name": "
|
|
17903
|
+
"name": "form",
|
|
17942
17904
|
"type": {
|
|
17943
|
-
"text": "
|
|
17905
|
+
"text": "HTMLFormElement | null"
|
|
17944
17906
|
},
|
|
17907
|
+
"description": "Returns the form object associated with the element, or null if none exists.",
|
|
17945
17908
|
"privacy": "private",
|
|
17946
|
-
"
|
|
17947
|
-
"
|
|
17909
|
+
"readonly": true,
|
|
17910
|
+
"inheritedFrom": {
|
|
17911
|
+
"name": "DDSFormElement",
|
|
17912
|
+
"module": "dist/es/base/dds-form-element.js"
|
|
17913
|
+
}
|
|
17948
17914
|
},
|
|
17949
17915
|
{
|
|
17950
17916
|
"kind": "method",
|
|
17951
|
-
"name": "
|
|
17952
|
-
"
|
|
17953
|
-
|
|
17954
|
-
|
|
17955
|
-
"
|
|
17917
|
+
"name": "setFormValue",
|
|
17918
|
+
"parameters": [
|
|
17919
|
+
{
|
|
17920
|
+
"name": "value",
|
|
17921
|
+
"type": {
|
|
17922
|
+
"text": "FormValueType"
|
|
17923
|
+
}
|
|
17924
|
+
},
|
|
17925
|
+
{
|
|
17926
|
+
"name": "state",
|
|
17927
|
+
"optional": true,
|
|
17928
|
+
"type": {
|
|
17929
|
+
"text": "FormValueType"
|
|
17930
|
+
}
|
|
17956
17931
|
}
|
|
17932
|
+
],
|
|
17933
|
+
"description": "Set the element's name and value within the current form.",
|
|
17934
|
+
"privacy": "private",
|
|
17935
|
+
"inheritedFrom": {
|
|
17936
|
+
"name": "DDSFormElement",
|
|
17937
|
+
"module": "dist/es/base/dds-form-element.js"
|
|
17957
17938
|
}
|
|
17958
17939
|
},
|
|
17959
17940
|
{
|
|
17960
17941
|
"kind": "method",
|
|
17961
|
-
"name": "
|
|
17962
|
-
"
|
|
17942
|
+
"name": "reportValidity",
|
|
17943
|
+
"description": "A function that maps to the form control's `reportValidity()` function.\nReference: https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/reportValidity",
|
|
17944
|
+
"privacy": "private",
|
|
17945
|
+
"inheritedFrom": {
|
|
17946
|
+
"name": "DDSFormElement",
|
|
17947
|
+
"module": "dist/es/base/dds-form-element.js"
|
|
17948
|
+
}
|
|
17963
17949
|
},
|
|
17964
17950
|
{
|
|
17965
|
-
"kind": "
|
|
17966
|
-
"name": "
|
|
17951
|
+
"kind": "method",
|
|
17952
|
+
"name": "checkValidity",
|
|
17953
|
+
"description": "A function that maps to the form control's `checkValidity()` function.\nReference: https://developer.mozilla.org/en-US/docs/Web/API/HTMLSelectElement/checkValidity",
|
|
17967
17954
|
"privacy": "private",
|
|
17968
|
-
"
|
|
17955
|
+
"inheritedFrom": {
|
|
17956
|
+
"name": "DDSFormElement",
|
|
17957
|
+
"module": "dist/es/base/dds-form-element.js"
|
|
17958
|
+
}
|
|
17969
17959
|
},
|
|
17970
17960
|
{
|
|
17971
17961
|
"kind": "method",
|
|
17972
|
-
"name": "
|
|
17962
|
+
"name": "hostConnected",
|
|
17963
|
+
"description": "TODO Enhance these functions to bring our components closer to native form components.",
|
|
17973
17964
|
"privacy": "private",
|
|
17974
|
-
"
|
|
17975
|
-
"
|
|
17976
|
-
|
|
17977
|
-
}
|
|
17965
|
+
"inheritedFrom": {
|
|
17966
|
+
"name": "DDSFormElement",
|
|
17967
|
+
"module": "dist/es/base/dds-form-element.js"
|
|
17978
17968
|
}
|
|
17979
17969
|
},
|
|
17980
17970
|
{
|
|
17981
17971
|
"kind": "method",
|
|
17982
|
-
"name": "
|
|
17972
|
+
"name": "hostDisconnected",
|
|
17973
|
+
"description": "TODO Enhance these functions to bring our components closer to native form components.",
|
|
17983
17974
|
"privacy": "private",
|
|
17984
|
-
"
|
|
17985
|
-
"
|
|
17986
|
-
|
|
17987
|
-
|
|
17988
|
-
},
|
|
17989
|
-
"parameters": [
|
|
17990
|
-
{
|
|
17991
|
-
"name": "event",
|
|
17992
|
-
"type": {
|
|
17993
|
-
"text": "KeyboardEvent"
|
|
17994
|
-
}
|
|
17995
|
-
}
|
|
17996
|
-
],
|
|
17997
|
-
"description": "Handles keyboard interactions in the radio list.\nhttps://www.w3.org/WAI/ARIA/apg/patterns/radio/"
|
|
17975
|
+
"inheritedFrom": {
|
|
17976
|
+
"name": "DDSFormElement",
|
|
17977
|
+
"module": "dist/es/base/dds-form-element.js"
|
|
17978
|
+
}
|
|
17998
17979
|
},
|
|
17999
17980
|
{
|
|
18000
17981
|
"kind": "method",
|
|
18001
|
-
"name": "
|
|
18002
|
-
"
|
|
18003
|
-
|
|
18004
|
-
|
|
18005
|
-
|
|
18006
|
-
|
|
18007
|
-
|
|
18008
|
-
{
|
|
18009
|
-
"name": "inputGroup",
|
|
18010
|
-
"type": {
|
|
18011
|
-
"text": "DaikinInputGroup"
|
|
18012
|
-
}
|
|
18013
|
-
}
|
|
18014
|
-
],
|
|
18015
|
-
"description": "This method is used by `daikin-input-group` to reflect it's attributes to this component.",
|
|
18016
|
-
"privacy": "private"
|
|
17982
|
+
"name": "hostUpdated",
|
|
17983
|
+
"description": "TODO Enhance these functions to bring our components closer to native form components.",
|
|
17984
|
+
"privacy": "private",
|
|
17985
|
+
"inheritedFrom": {
|
|
17986
|
+
"name": "DDSFormElement",
|
|
17987
|
+
"module": "dist/es/base/dds-form-element.js"
|
|
17988
|
+
}
|
|
18017
17989
|
},
|
|
18018
17990
|
{
|
|
18019
17991
|
"kind": "field",
|
|
@@ -18102,26 +18074,33 @@
|
|
|
18102
18074
|
"type": {
|
|
18103
18075
|
"text": "Event"
|
|
18104
18076
|
},
|
|
18105
|
-
"description": "A
|
|
18077
|
+
"description": "A cloned event of a [change event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/change_event) emitted from the inner `<input type=\"radio\">` element."
|
|
18106
18078
|
}
|
|
18107
18079
|
],
|
|
18108
18080
|
"attributes": [
|
|
18109
18081
|
{
|
|
18110
|
-
"name": "
|
|
18082
|
+
"name": "form",
|
|
18111
18083
|
"type": {
|
|
18112
|
-
"text": "
|
|
18084
|
+
"text": "string"
|
|
18113
18085
|
},
|
|
18114
|
-
"description": "
|
|
18115
|
-
"
|
|
18116
|
-
"
|
|
18086
|
+
"description": "The form the component belongs to.",
|
|
18087
|
+
"fieldName": "formAttr",
|
|
18088
|
+
"inheritedFrom": {
|
|
18089
|
+
"name": "DDSFormElement",
|
|
18090
|
+
"module": "dist/es/base/dds-form-element.js"
|
|
18091
|
+
}
|
|
18117
18092
|
},
|
|
18118
18093
|
{
|
|
18119
18094
|
"name": "name",
|
|
18120
18095
|
"type": {
|
|
18121
18096
|
"text": "string"
|
|
18122
18097
|
},
|
|
18123
|
-
"description": "The form name, submitted as a name/value pair when submitting the form
|
|
18124
|
-
"fieldName": "name"
|
|
18098
|
+
"description": "The form name, submitted as a name/value pair when submitting the form.",
|
|
18099
|
+
"fieldName": "name",
|
|
18100
|
+
"inheritedFrom": {
|
|
18101
|
+
"name": "DDSFormElement",
|
|
18102
|
+
"module": "dist/es/base/dds-form-element.js"
|
|
18103
|
+
}
|
|
18125
18104
|
},
|
|
18126
18105
|
{
|
|
18127
18106
|
"name": "value",
|
|
@@ -18129,17 +18108,38 @@
|
|
|
18129
18108
|
"text": "string"
|
|
18130
18109
|
},
|
|
18131
18110
|
"default": "\"\"",
|
|
18132
|
-
"description": "
|
|
18133
|
-
"fieldName": "value"
|
|
18111
|
+
"description": "The initial form value, submitted as a name/value pair when submitting the form.",
|
|
18112
|
+
"fieldName": "value",
|
|
18113
|
+
"inheritedFrom": {
|
|
18114
|
+
"name": "DDSFormElement",
|
|
18115
|
+
"module": "dist/es/base/dds-form-element.js"
|
|
18116
|
+
}
|
|
18134
18117
|
},
|
|
18135
18118
|
{
|
|
18136
|
-
"name": "
|
|
18119
|
+
"name": "label",
|
|
18120
|
+
"type": {
|
|
18121
|
+
"text": "string"
|
|
18122
|
+
},
|
|
18123
|
+
"description": "Label text for the radio button.",
|
|
18124
|
+
"fieldName": "label"
|
|
18125
|
+
},
|
|
18126
|
+
{
|
|
18127
|
+
"name": "label-position",
|
|
18128
|
+
"type": {
|
|
18129
|
+
"text": "\"right\" | \"hidden\""
|
|
18130
|
+
},
|
|
18131
|
+
"description": "Label position.\n- `right` (default): The label will be placed to the right of the radio button.\n- `hidden`: The label will not be shown.",
|
|
18132
|
+
"default": "\"right\"",
|
|
18133
|
+
"fieldName": "labelPosition"
|
|
18134
|
+
},
|
|
18135
|
+
{
|
|
18136
|
+
"name": "checked",
|
|
18137
18137
|
"type": {
|
|
18138
18138
|
"text": "boolean"
|
|
18139
18139
|
},
|
|
18140
18140
|
"default": "false",
|
|
18141
|
-
"description": "
|
|
18142
|
-
"fieldName": "
|
|
18141
|
+
"description": "Specify the radio button checked state.\nTo keep external state in sync, listen to the `change` event.",
|
|
18142
|
+
"fieldName": "checked"
|
|
18143
18143
|
},
|
|
18144
18144
|
{
|
|
18145
18145
|
"name": "disabled",
|
|
@@ -18147,7 +18147,7 @@
|
|
|
18147
18147
|
"text": "boolean"
|
|
18148
18148
|
},
|
|
18149
18149
|
"default": "false",
|
|
18150
|
-
"description": "
|
|
18150
|
+
"description": "Specify the radio button disabled state.",
|
|
18151
18151
|
"fieldName": "disabled"
|
|
18152
18152
|
},
|
|
18153
18153
|
{
|
|
@@ -18156,40 +18156,40 @@
|
|
|
18156
18156
|
"text": "boolean"
|
|
18157
18157
|
},
|
|
18158
18158
|
"default": "false",
|
|
18159
|
-
"description": "
|
|
18159
|
+
"description": "Specify the radio button readonly state.\nWhen readonly, the user cannot change the checked state.",
|
|
18160
18160
|
"fieldName": "readonly"
|
|
18161
18161
|
}
|
|
18162
18162
|
],
|
|
18163
18163
|
"superclass": {
|
|
18164
|
-
"name": "
|
|
18164
|
+
"name": "DDSFormElement",
|
|
18165
18165
|
"module": "/src/base"
|
|
18166
18166
|
},
|
|
18167
|
-
"tagName": "daikin-radio
|
|
18167
|
+
"tagName": "daikin-radio",
|
|
18168
18168
|
"customElement": true
|
|
18169
18169
|
}
|
|
18170
18170
|
],
|
|
18171
18171
|
"exports": [
|
|
18172
18172
|
{
|
|
18173
18173
|
"kind": "js",
|
|
18174
|
-
"name": "
|
|
18174
|
+
"name": "DaikinRadio",
|
|
18175
18175
|
"declaration": {
|
|
18176
|
-
"name": "
|
|
18177
|
-
"module": "src/components/radio
|
|
18176
|
+
"name": "DaikinRadio",
|
|
18177
|
+
"module": "src/components/radio/daikin-radio.ts"
|
|
18178
18178
|
}
|
|
18179
18179
|
},
|
|
18180
18180
|
{
|
|
18181
18181
|
"kind": "custom-element-definition",
|
|
18182
|
-
"name": "daikin-radio
|
|
18182
|
+
"name": "daikin-radio",
|
|
18183
18183
|
"declaration": {
|
|
18184
|
-
"name": "
|
|
18185
|
-
"module": "src/components/radio
|
|
18184
|
+
"name": "DaikinRadio",
|
|
18185
|
+
"module": "src/components/radio/daikin-radio.ts"
|
|
18186
18186
|
}
|
|
18187
18187
|
}
|
|
18188
18188
|
]
|
|
18189
18189
|
},
|
|
18190
18190
|
{
|
|
18191
18191
|
"kind": "javascript-module",
|
|
18192
|
-
"path": "dist/es/components/radio
|
|
18192
|
+
"path": "dist/es/components/radio/index.js",
|
|
18193
18193
|
"declarations": [],
|
|
18194
18194
|
"exports": [
|
|
18195
18195
|
{
|
|
@@ -18197,7 +18197,7 @@
|
|
|
18197
18197
|
"name": "*",
|
|
18198
18198
|
"declaration": {
|
|
18199
18199
|
"name": "*",
|
|
18200
|
-
"module": "src/components/radio
|
|
18200
|
+
"module": "src/components/radio/daikin-radio"
|
|
18201
18201
|
}
|
|
18202
18202
|
}
|
|
18203
18203
|
]
|