@vonage/vivid 3.14.0 → 3.16.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/checkbox/index.js +3 -0
- package/custom-elements.json +250 -27
- package/empty-state/index.js +14 -0
- package/fab/index.js +1 -1
- package/header/index.js +1 -1
- package/index.js +31 -29
- package/layout/index.js +1 -1
- package/lib/checkbox/checkbox.d.ts +6 -3
- package/lib/components.d.ts +2 -0
- package/lib/data-grid/data-grid-cell.d.ts +2 -0
- package/lib/data-grid/data-grid-row.d.ts +1 -0
- package/lib/data-grid/data-grid.d.ts +1 -1
- package/lib/empty-state/definition.d.ts +3 -0
- package/lib/empty-state/empty-state.d.ts +5 -0
- package/lib/empty-state/empty-state.template.d.ts +4 -0
- package/lib/empty-state/index.d.ts +1 -0
- package/listbox/index.js +1 -1
- package/menu/index.js +2 -2
- package/menu-item/index.js +1 -1
- package/nav/index.js +1 -1
- package/nav-disclosure/index.js +1 -1
- package/nav-item/index.js +1 -1
- package/note/index.js +1 -1
- package/number-field/index.js +1 -1
- package/package.json +1 -1
- package/pagination/index.js +14 -232
- package/progress/index.js +1 -1
- package/radio/index.js +1 -1
- package/radio-group/index.js +1 -1
- package/select/index.js +1 -1
- package/shared/definition.js +1 -1
- package/shared/definition10.js +1 -1
- package/shared/definition11.js +1 -1
- package/shared/definition12.js +1 -1
- package/shared/definition14.js +1 -1
- package/shared/definition15.js +1 -1
- package/shared/definition16.js +1 -1
- package/shared/definition17.js +1 -1
- package/shared/definition18.js +23 -8
- package/shared/definition19.js +1 -1
- package/shared/definition2.js +1 -1
- package/shared/definition21.js +1 -1
- package/shared/definition22.js +114 -40
- package/shared/definition23.js +1 -1
- package/shared/definition24.js +1 -1
- package/shared/definition25.js +39 -76
- package/shared/definition26.js +76 -47
- package/shared/definition27.js +46 -36
- package/shared/definition28.js +39 -49
- package/shared/definition29.js +48 -344
- package/shared/definition30.js +272 -291
- package/shared/definition31.js +366 -14
- package/shared/definition32.js +13 -67
- package/shared/definition33.js +66 -21
- package/shared/definition34.js +21 -39
- package/shared/definition35.js +31 -432
- package/shared/definition36.js +432 -76
- package/shared/definition37.js +223 -34
- package/shared/definition38.js +82 -425
- package/shared/definition39.js +30 -635
- package/shared/definition4.js +1 -1
- package/shared/definition40.js +420 -73
- package/shared/definition41.js +530 -484
- package/shared/definition42.js +76 -133
- package/shared/definition43.js +577 -40
- package/shared/definition44.js +135 -20
- package/shared/definition45.js +42 -423
- package/shared/definition46.js +22 -112
- package/shared/definition47.js +440 -18
- package/shared/definition48.js +92 -247
- package/shared/definition49.js +20 -112
- package/shared/definition5.js +1 -1
- package/shared/definition50.js +259 -590
- package/shared/definition51.js +110 -91
- package/shared/definition52.js +626 -67
- package/shared/definition53.js +111 -292
- package/shared/definition54.js +80 -0
- package/shared/definition55.js +305 -0
- package/shared/definition6.js +1 -1
- package/shared/definition7.js +1 -1
- package/shared/definition9.js +1 -1
- package/shared/form-elements.js +1 -1
- package/shared/icon.js +1 -1
- package/shared/patterns/form-elements/form-elements.d.ts +4 -4
- package/shared/text-field.js +1 -1
- package/side-drawer/index.js +1 -1
- package/slider/index.js +1 -1
- package/styles/core/all.css +1 -1
- package/styles/core/theme.css +1 -1
- package/styles/core/typography.css +1 -1
- package/styles/tokens/theme-dark.css +4 -4
- package/styles/tokens/theme-light.css +4 -4
- package/switch/index.js +1 -1
- package/tab/index.js +1 -1
- package/tab-panel/index.js +1 -1
- package/tabs/index.js +3 -3
- package/tag/index.js +1 -1
- package/tag-group/index.js +1 -1
- package/text-area/index.js +1 -1
- package/text-field/index.js +1 -1
- package/toggletip/index.js +1 -1
- package/tooltip/index.js +1 -1
- package/tree-item/index.js +1 -1
- package/tree-view/index.js +1 -1
- package/vivid.api.json +210 -0
package/checkbox/index.js
CHANGED
|
@@ -10,8 +10,11 @@ import '../shared/class-names.js';
|
|
|
10
10
|
import '../shared/when.js';
|
|
11
11
|
import '../shared/definition4.js';
|
|
12
12
|
import '../shared/focus.js';
|
|
13
|
+
import '../shared/affix.js';
|
|
14
|
+
import '../shared/form-elements.js';
|
|
13
15
|
import '../shared/form-associated.js';
|
|
14
16
|
import '../shared/key-codes.js';
|
|
17
|
+
import '../shared/apply-mixins.js';
|
|
15
18
|
import '../shared/focus2.js';
|
|
16
19
|
|
|
17
20
|
registerCheckbox();
|
package/custom-elements.json
CHANGED
|
@@ -2749,29 +2749,8 @@
|
|
|
2749
2749
|
"default": "var(--vvd-color-canvas-text)"
|
|
2750
2750
|
}
|
|
2751
2751
|
],
|
|
2752
|
-
"members": [
|
|
2753
|
-
{
|
|
2754
|
-
"kind": "field",
|
|
2755
|
-
"name": "label",
|
|
2756
|
-
"type": {
|
|
2757
|
-
"text": "string | undefined"
|
|
2758
|
-
},
|
|
2759
|
-
"description": "Indicates the checkbox's label.",
|
|
2760
|
-
"privacy": "public"
|
|
2761
|
-
}
|
|
2762
|
-
],
|
|
2763
|
-
"attributes": [
|
|
2764
|
-
{
|
|
2765
|
-
"name": "label",
|
|
2766
|
-
"type": {
|
|
2767
|
-
"text": "string | undefined"
|
|
2768
|
-
},
|
|
2769
|
-
"description": "Indicates the checkbox's label.",
|
|
2770
|
-
"fieldName": "label"
|
|
2771
|
-
}
|
|
2772
|
-
],
|
|
2773
2752
|
"superclass": {
|
|
2774
|
-
"name": "
|
|
2753
|
+
"name": "FoundationCheckbox",
|
|
2775
2754
|
"package": "@microsoft/fast-foundation"
|
|
2776
2755
|
}
|
|
2777
2756
|
}
|
|
@@ -3064,6 +3043,10 @@
|
|
|
3064
3043
|
}
|
|
3065
3044
|
}
|
|
3066
3045
|
]
|
|
3046
|
+
},
|
|
3047
|
+
{
|
|
3048
|
+
"kind": "field",
|
|
3049
|
+
"name": "updateCellStyle"
|
|
3067
3050
|
}
|
|
3068
3051
|
],
|
|
3069
3052
|
"attributes": [
|
|
@@ -3101,6 +3084,76 @@
|
|
|
3101
3084
|
"kind": "class",
|
|
3102
3085
|
"description": "Base class for data-grid",
|
|
3103
3086
|
"name": "DataGridRow",
|
|
3087
|
+
"cssProperties": [
|
|
3088
|
+
{
|
|
3089
|
+
"name": "--vvd-data-grid-row-cta-primary",
|
|
3090
|
+
"default": "var(--vvd-color-cta-500)"
|
|
3091
|
+
},
|
|
3092
|
+
{
|
|
3093
|
+
"name": "--vvd-data-grid-row-cta-primary-text",
|
|
3094
|
+
"default": "var(--vvd-color-canvas)"
|
|
3095
|
+
},
|
|
3096
|
+
{
|
|
3097
|
+
"name": "--vvd-data-grid-row-cta-primary-increment",
|
|
3098
|
+
"default": "var(--vvd-color-cta-600)"
|
|
3099
|
+
},
|
|
3100
|
+
{
|
|
3101
|
+
"name": "--vvd-data-grid-row-cta-faint",
|
|
3102
|
+
"default": "var(--vvd-color-cta-50)"
|
|
3103
|
+
},
|
|
3104
|
+
{
|
|
3105
|
+
"name": "--vvd-data-grid-row-cta-pale",
|
|
3106
|
+
"default": "var(--vvd-color-cta-300)"
|
|
3107
|
+
},
|
|
3108
|
+
{
|
|
3109
|
+
"name": "--vvd-data-grid-row-cta-dim",
|
|
3110
|
+
"default": "var(--vvd-color-cta-200)"
|
|
3111
|
+
},
|
|
3112
|
+
{
|
|
3113
|
+
"name": "--vvd-data-grid-row-accent-primary",
|
|
3114
|
+
"default": "var(--vvd-color-canvas-text)"
|
|
3115
|
+
},
|
|
3116
|
+
{
|
|
3117
|
+
"name": "--vvd-data-grid-row-accent-primary-text",
|
|
3118
|
+
"default": "var(--vvd-color-canvas)"
|
|
3119
|
+
},
|
|
3120
|
+
{
|
|
3121
|
+
"name": "--vvd-data-grid-row-accent-primary-increment",
|
|
3122
|
+
"default": "var(--vvd-color-neutral-800)"
|
|
3123
|
+
},
|
|
3124
|
+
{
|
|
3125
|
+
"name": "--vvd-data-grid-row-accent-faint",
|
|
3126
|
+
"default": "var(--vvd-color-neutral-50)"
|
|
3127
|
+
},
|
|
3128
|
+
{
|
|
3129
|
+
"name": "--vvd-data-grid-row-accent-pale",
|
|
3130
|
+
"default": "var(--vvd-color-neutral-300)"
|
|
3131
|
+
},
|
|
3132
|
+
{
|
|
3133
|
+
"name": "--vvd-data-grid-row-accent-dim",
|
|
3134
|
+
"default": "var(--vvd-color-neutral-200)"
|
|
3135
|
+
}
|
|
3136
|
+
],
|
|
3137
|
+
"members": [
|
|
3138
|
+
{
|
|
3139
|
+
"kind": "field",
|
|
3140
|
+
"name": "ariaSelected",
|
|
3141
|
+
"type": {
|
|
3142
|
+
"text": "string | null"
|
|
3143
|
+
},
|
|
3144
|
+
"default": "null"
|
|
3145
|
+
}
|
|
3146
|
+
],
|
|
3147
|
+
"attributes": [
|
|
3148
|
+
{
|
|
3149
|
+
"name": "aria-selected",
|
|
3150
|
+
"type": {
|
|
3151
|
+
"text": "string | null"
|
|
3152
|
+
},
|
|
3153
|
+
"default": "null",
|
|
3154
|
+
"fieldName": "ariaSelected"
|
|
3155
|
+
}
|
|
3156
|
+
],
|
|
3104
3157
|
"superclass": {
|
|
3105
3158
|
"name": "FoundationElement",
|
|
3106
3159
|
"package": "@microsoft/fast-foundation"
|
|
@@ -3246,6 +3299,15 @@
|
|
|
3246
3299
|
"text": "DataGridSelectionMode | undefined"
|
|
3247
3300
|
}
|
|
3248
3301
|
},
|
|
3302
|
+
{
|
|
3303
|
+
"kind": "field",
|
|
3304
|
+
"name": "#selectedRows",
|
|
3305
|
+
"privacy": "private",
|
|
3306
|
+
"type": {
|
|
3307
|
+
"text": "DataGridRow[]"
|
|
3308
|
+
},
|
|
3309
|
+
"readonly": true
|
|
3310
|
+
},
|
|
3249
3311
|
{
|
|
3250
3312
|
"kind": "field",
|
|
3251
3313
|
"name": "#selectedCells",
|
|
@@ -3257,7 +3319,15 @@
|
|
|
3257
3319
|
},
|
|
3258
3320
|
{
|
|
3259
3321
|
"kind": "method",
|
|
3260
|
-
"name": "selectionModeChanged"
|
|
3322
|
+
"name": "selectionModeChanged",
|
|
3323
|
+
"parameters": [
|
|
3324
|
+
{
|
|
3325
|
+
"name": "oldValue",
|
|
3326
|
+
"type": {
|
|
3327
|
+
"text": "DataGridSelectionMode"
|
|
3328
|
+
}
|
|
3329
|
+
}
|
|
3330
|
+
]
|
|
3261
3331
|
},
|
|
3262
3332
|
{
|
|
3263
3333
|
"kind": "field",
|
|
@@ -3271,17 +3341,28 @@
|
|
|
3271
3341
|
},
|
|
3272
3342
|
{
|
|
3273
3343
|
"kind": "field",
|
|
3274
|
-
"name": "#
|
|
3344
|
+
"name": "#handleCellSelection",
|
|
3275
3345
|
"privacy": "private"
|
|
3276
3346
|
},
|
|
3277
3347
|
{
|
|
3278
3348
|
"kind": "field",
|
|
3279
|
-
"name": "#
|
|
3349
|
+
"name": "#handleRowSelection",
|
|
3280
3350
|
"privacy": "private"
|
|
3281
3351
|
},
|
|
3282
3352
|
{
|
|
3283
|
-
"kind": "
|
|
3284
|
-
"name": "#
|
|
3353
|
+
"kind": "field",
|
|
3354
|
+
"name": "#setSelectedState",
|
|
3355
|
+
"privacy": "private"
|
|
3356
|
+
},
|
|
3357
|
+
{
|
|
3358
|
+
"kind": "field",
|
|
3359
|
+
"name": "#resetSelection",
|
|
3360
|
+
"privacy": "private"
|
|
3361
|
+
},
|
|
3362
|
+
{
|
|
3363
|
+
"kind": "field",
|
|
3364
|
+
"name": "#initSelections",
|
|
3365
|
+
"privacy": "private"
|
|
3285
3366
|
}
|
|
3286
3367
|
],
|
|
3287
3368
|
"attributes": [
|
|
@@ -3859,6 +3940,122 @@
|
|
|
3859
3940
|
}
|
|
3860
3941
|
]
|
|
3861
3942
|
},
|
|
3943
|
+
{
|
|
3944
|
+
"kind": "javascript-module",
|
|
3945
|
+
"path": "libs/components/src/lib/empty-state/definition.ts",
|
|
3946
|
+
"declarations": [
|
|
3947
|
+
{
|
|
3948
|
+
"kind": "variable",
|
|
3949
|
+
"name": "emptyStateDefinition"
|
|
3950
|
+
},
|
|
3951
|
+
{
|
|
3952
|
+
"kind": "variable",
|
|
3953
|
+
"name": "registerEmptyState",
|
|
3954
|
+
"description": "Registers the empty-state element with the design system.",
|
|
3955
|
+
"parameters": [
|
|
3956
|
+
{
|
|
3957
|
+
"description": "the prefix to use for the component name",
|
|
3958
|
+
"name": "prefix"
|
|
3959
|
+
}
|
|
3960
|
+
]
|
|
3961
|
+
}
|
|
3962
|
+
],
|
|
3963
|
+
"exports": [
|
|
3964
|
+
{
|
|
3965
|
+
"kind": "js",
|
|
3966
|
+
"name": "emptyStateDefinition",
|
|
3967
|
+
"declaration": {
|
|
3968
|
+
"name": "emptyStateDefinition",
|
|
3969
|
+
"module": "libs/components/src/lib/empty-state/definition.ts"
|
|
3970
|
+
}
|
|
3971
|
+
},
|
|
3972
|
+
{
|
|
3973
|
+
"kind": "js",
|
|
3974
|
+
"name": "registerEmptyState",
|
|
3975
|
+
"declaration": {
|
|
3976
|
+
"name": "registerEmptyState",
|
|
3977
|
+
"module": "libs/components/src/lib/empty-state/definition.ts"
|
|
3978
|
+
}
|
|
3979
|
+
}
|
|
3980
|
+
]
|
|
3981
|
+
},
|
|
3982
|
+
{
|
|
3983
|
+
"kind": "javascript-module",
|
|
3984
|
+
"path": "libs/components/src/lib/empty-state/empty-state.ts",
|
|
3985
|
+
"declarations": [
|
|
3986
|
+
{
|
|
3987
|
+
"kind": "class",
|
|
3988
|
+
"description": "An empty state element. Used when there is no data to display to the user.",
|
|
3989
|
+
"name": "EmptyState",
|
|
3990
|
+
"slots": [
|
|
3991
|
+
{
|
|
3992
|
+
"description": "The default slot controls the body text of the empty state",
|
|
3993
|
+
"name": ""
|
|
3994
|
+
},
|
|
3995
|
+
{
|
|
3996
|
+
"description": "The graphic slot allows overriding the icon with a custom illustration",
|
|
3997
|
+
"name": "graphic"
|
|
3998
|
+
},
|
|
3999
|
+
{
|
|
4000
|
+
"description": "Slot to add action items to the empty state",
|
|
4001
|
+
"name": "action-items"
|
|
4002
|
+
}
|
|
4003
|
+
],
|
|
4004
|
+
"members": [
|
|
4005
|
+
{
|
|
4006
|
+
"kind": "field",
|
|
4007
|
+
"name": "headline",
|
|
4008
|
+
"type": {
|
|
4009
|
+
"text": "string | undefined"
|
|
4010
|
+
},
|
|
4011
|
+
"description": "An optional headline for the empty state.",
|
|
4012
|
+
"privacy": "public"
|
|
4013
|
+
},
|
|
4014
|
+
{
|
|
4015
|
+
"kind": "field",
|
|
4016
|
+
"name": "icon",
|
|
4017
|
+
"type": {
|
|
4018
|
+
"text": "string | undefined"
|
|
4019
|
+
},
|
|
4020
|
+
"description": "Icon for the empty state.",
|
|
4021
|
+
"privacy": "public"
|
|
4022
|
+
}
|
|
4023
|
+
],
|
|
4024
|
+
"attributes": [
|
|
4025
|
+
{
|
|
4026
|
+
"name": "headline",
|
|
4027
|
+
"type": {
|
|
4028
|
+
"text": "string | undefined"
|
|
4029
|
+
},
|
|
4030
|
+
"description": "An optional headline for the empty state.",
|
|
4031
|
+
"fieldName": "headline"
|
|
4032
|
+
},
|
|
4033
|
+
{
|
|
4034
|
+
"name": "icon",
|
|
4035
|
+
"type": {
|
|
4036
|
+
"text": "string | undefined"
|
|
4037
|
+
},
|
|
4038
|
+
"description": "Icon for the empty state.",
|
|
4039
|
+
"fieldName": "icon"
|
|
4040
|
+
}
|
|
4041
|
+
],
|
|
4042
|
+
"superclass": {
|
|
4043
|
+
"name": "FoundationElement",
|
|
4044
|
+
"package": "@microsoft/fast-foundation"
|
|
4045
|
+
}
|
|
4046
|
+
}
|
|
4047
|
+
],
|
|
4048
|
+
"exports": [
|
|
4049
|
+
{
|
|
4050
|
+
"kind": "js",
|
|
4051
|
+
"name": "EmptyState",
|
|
4052
|
+
"declaration": {
|
|
4053
|
+
"name": "EmptyState",
|
|
4054
|
+
"module": "libs/components/src/lib/empty-state/empty-state.ts"
|
|
4055
|
+
}
|
|
4056
|
+
}
|
|
4057
|
+
]
|
|
4058
|
+
},
|
|
3862
4059
|
{
|
|
3863
4060
|
"kind": "javascript-module",
|
|
3864
4061
|
"path": "libs/components/src/lib/fab/definition.ts",
|
|
@@ -8856,6 +9053,14 @@
|
|
|
8856
9053
|
"description": "Base class for toggletip",
|
|
8857
9054
|
"name": "Toggletip",
|
|
8858
9055
|
"members": [
|
|
9056
|
+
{
|
|
9057
|
+
"kind": "field",
|
|
9058
|
+
"name": "#observer",
|
|
9059
|
+
"privacy": "private",
|
|
9060
|
+
"type": {
|
|
9061
|
+
"text": "MutationObserver | undefined"
|
|
9062
|
+
}
|
|
9063
|
+
},
|
|
8859
9064
|
{
|
|
8860
9065
|
"kind": "field",
|
|
8861
9066
|
"name": "#anchorEl",
|
|
@@ -8865,6 +9070,11 @@
|
|
|
8865
9070
|
},
|
|
8866
9071
|
"default": "null"
|
|
8867
9072
|
},
|
|
9073
|
+
{
|
|
9074
|
+
"kind": "field",
|
|
9075
|
+
"name": "#observeMissingAnchor",
|
|
9076
|
+
"privacy": "private"
|
|
9077
|
+
},
|
|
8868
9078
|
{
|
|
8869
9079
|
"kind": "field",
|
|
8870
9080
|
"name": "#ANCHOR_ARIA_LABEL_SUFFIX",
|
|
@@ -9152,6 +9362,14 @@
|
|
|
9152
9362
|
"text": "anchorType | undefined"
|
|
9153
9363
|
}
|
|
9154
9364
|
},
|
|
9365
|
+
{
|
|
9366
|
+
"kind": "field",
|
|
9367
|
+
"name": "#observer",
|
|
9368
|
+
"privacy": "private",
|
|
9369
|
+
"type": {
|
|
9370
|
+
"text": "MutationObserver | undefined"
|
|
9371
|
+
}
|
|
9372
|
+
},
|
|
9155
9373
|
{
|
|
9156
9374
|
"kind": "method",
|
|
9157
9375
|
"name": "anchorChanged",
|
|
@@ -9170,6 +9388,11 @@
|
|
|
9170
9388
|
}
|
|
9171
9389
|
]
|
|
9172
9390
|
},
|
|
9391
|
+
{
|
|
9392
|
+
"kind": "field",
|
|
9393
|
+
"name": "#observeMissingAnchor",
|
|
9394
|
+
"privacy": "private"
|
|
9395
|
+
},
|
|
9173
9396
|
{
|
|
9174
9397
|
"kind": "method",
|
|
9175
9398
|
"name": "#anchorUpdated",
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { r as registerEmptyState } from '../shared/definition25.js';
|
|
2
|
+
import '../shared/index.js';
|
|
3
|
+
import '../shared/definition3.js';
|
|
4
|
+
import '../shared/icon.js';
|
|
5
|
+
import '../shared/engine-is-node.js';
|
|
6
|
+
import '../shared/to-string.js';
|
|
7
|
+
import '../shared/string-trim.js';
|
|
8
|
+
import '../shared/_has.js';
|
|
9
|
+
import '../shared/class-names.js';
|
|
10
|
+
import '../shared/when.js';
|
|
11
|
+
import '../shared/slotted.js';
|
|
12
|
+
import '../shared/node-observation.js';
|
|
13
|
+
|
|
14
|
+
registerEmptyState();
|
package/fab/index.js
CHANGED
package/header/index.js
CHANGED
package/index.js
CHANGED
|
@@ -14,42 +14,44 @@ export { c as cardDefinition, a as cardRegistries, r as registerCard } from './s
|
|
|
14
14
|
export { c as checkboxDefinition, a as checkboxRegistries, r as registerCheckbox } from './shared/definition18.js';
|
|
15
15
|
export { c as combobox, a as comboboxRegistries, r as registerCombobox } from './shared/definition19.js';
|
|
16
16
|
export { a as elevationDefinition, e as elevationRegistries, r as registerElevation } from './shared/definition8.js';
|
|
17
|
+
export { e as emptyStateDefinition, a as emptyStateRegistries, r as registerEmptyState } from './shared/definition25.js';
|
|
17
18
|
export { d as dialogDefinition, a as dialogRegistries, r as registerDialog } from './shared/definition23.js';
|
|
18
19
|
export { a as dividerDefinition, d as dividerRegistries, r as registerDivider } from './shared/definition24.js';
|
|
19
20
|
export { d as dataGrid, b as dataGridCell, c as dataGridElements, a as dataGridRow, r as registerDataGrid } from './shared/definition22.js';
|
|
20
|
-
export { f as fabDefinition, a as fabRegistries, r as registerFab } from './shared/
|
|
21
|
-
export { h as headerDefinition, a as headerRegistries, r as registerHeader } from './shared/
|
|
21
|
+
export { f as fabDefinition, a as fabRegistries, r as registerFab } from './shared/definition26.js';
|
|
22
|
+
export { h as headerDefinition, a as headerRegistries, r as registerHeader } from './shared/definition27.js';
|
|
22
23
|
export { a as iconDefinition, i as iconRegistries, r as registerIcon } from './shared/definition3.js';
|
|
23
|
-
export { l as layoutDefinition, a as layoutRegistries, r as registerLayout } from './shared/
|
|
24
|
-
export { l as listboxDefinition, a as listboxRegistries, r as registerListbox } from './shared/
|
|
24
|
+
export { l as layoutDefinition, a as layoutRegistries, r as registerLayout } from './shared/definition28.js';
|
|
25
|
+
export { l as listboxDefinition, a as listboxRegistries, r as registerListbox } from './shared/definition29.js';
|
|
25
26
|
export { a as listboxOptionDefinition, l as listboxOptionRegistries, r as registerOption } from './shared/definition21.js';
|
|
26
|
-
export { m as menuDefinition, a as menuRegistries, r as registerMenu } from './shared/
|
|
27
|
-
export { c as menuItemDefinition, m as menuItemRegistries, b as registerMenuItem } from './shared/
|
|
28
|
-
export { n as navDefinition, a as navRegistries, r as registerNav } from './shared/
|
|
29
|
-
export { n as navDisclosureDefinition, a as navDisclosureRegistries, r as registerNavDisclosure } from './shared/
|
|
30
|
-
export { n as navItemDefinition, a as navItemRegistries, r as registerNavItem } from './shared/
|
|
31
|
-
export { n as noteDefinition, a as noteRegistries, r as registerNote } from './shared/
|
|
32
|
-
export { n as numberFieldDefinition, a as numberFieldRegistries, r as registerNumberField } from './shared/
|
|
27
|
+
export { m as menuDefinition, a as menuRegistries, r as registerMenu } from './shared/definition30.js';
|
|
28
|
+
export { c as menuItemDefinition, m as menuItemRegistries, b as registerMenuItem } from './shared/definition31.js';
|
|
29
|
+
export { n as navDefinition, a as navRegistries, r as registerNav } from './shared/definition32.js';
|
|
30
|
+
export { n as navDisclosureDefinition, a as navDisclosureRegistries, r as registerNavDisclosure } from './shared/definition33.js';
|
|
31
|
+
export { n as navItemDefinition, a as navItemRegistries, r as registerNavItem } from './shared/definition34.js';
|
|
32
|
+
export { n as noteDefinition, a as noteRegistries, r as registerNote } from './shared/definition35.js';
|
|
33
|
+
export { n as numberFieldDefinition, a as numberFieldRegistries, r as registerNumberField } from './shared/definition36.js';
|
|
34
|
+
export { p as paginationDefinition, a as paginationRegistries, r as registerPagination } from './shared/definition37.js';
|
|
33
35
|
export { a as popupDefinition, p as popupRegistries, r as registerPopup } from './shared/definition20.js';
|
|
34
|
-
export { p as progressDefinition, a as progressRegistries, r as registerProgress } from './shared/
|
|
36
|
+
export { p as progressDefinition, a as progressRegistries, r as registerProgress } from './shared/definition38.js';
|
|
35
37
|
export { a as progressRingDefinition, p as progressRingRegistries, r as registerProgressRing } from './shared/definition9.js';
|
|
36
|
-
export { a as radioDefinition, b as radioRegistries, r as registerRadio } from './shared/
|
|
37
|
-
export { a as radioGroupDefinition, b as radioGroupRegistries, r as registerRadioGroup } from './shared/
|
|
38
|
-
export { r as registerSelect, s as selectDefinition, a as selectRegistries } from './shared/
|
|
39
|
-
export { r as registerSideDrawer, s as sideDrawerDefinition, a as sideDrawerRegistries } from './shared/
|
|
40
|
-
export { r as registerSlider, s as sliderDefinition, a as sliderRegistries } from './shared/
|
|
41
|
-
export { r as registerSwitch, s as switchDefinition, a as switchRegistries } from './shared/
|
|
42
|
-
export { r as registerTextField, t as textFieldDefinition, a as textFieldRegistries } from './shared/
|
|
43
|
-
export { r as registerTextArea, t as textAreaDefinition, a as textAreaRegistries } from './shared/
|
|
44
|
-
export { r as registerToggletip, t as toggletipDefinition, a as toggletipRegistries } from './shared/
|
|
45
|
-
export { r as registerTooltip, t as tooltipDefinition, a as tooltipRegistries } from './shared/
|
|
46
|
-
export { r as registerTabs, t as tabsDefinition, a as tabsRegistries } from './shared/
|
|
47
|
-
export { r as registerTab, a as tabDefinition, t as tabRegistries } from './shared/
|
|
48
|
-
export { r as registerTabPanel, a as tabPanelDefinition, t as tabPanelRegistries } from './shared/
|
|
49
|
-
export { r as registerTreeView, t as treeViewDefinition, a as treeViewRegistries } from './shared/
|
|
50
|
-
export { r as registerTreeItem, t as treeItemDefinition, a as treeItemRegistries } from './shared/
|
|
51
|
-
export { r as registerTag, t as tagDefinition } from './shared/
|
|
52
|
-
export { r as registerTagGroup, t as tagGroupDefinition, a as tagGroupRegistries } from './shared/
|
|
38
|
+
export { a as radioDefinition, b as radioRegistries, r as registerRadio } from './shared/definition39.js';
|
|
39
|
+
export { a as radioGroupDefinition, b as radioGroupRegistries, r as registerRadioGroup } from './shared/definition40.js';
|
|
40
|
+
export { r as registerSelect, s as selectDefinition, a as selectRegistries } from './shared/definition41.js';
|
|
41
|
+
export { r as registerSideDrawer, s as sideDrawerDefinition, a as sideDrawerRegistries } from './shared/definition42.js';
|
|
42
|
+
export { r as registerSlider, s as sliderDefinition, a as sliderRegistries } from './shared/definition43.js';
|
|
43
|
+
export { r as registerSwitch, s as switchDefinition, a as switchRegistries } from './shared/definition44.js';
|
|
44
|
+
export { r as registerTextField, t as textFieldDefinition, a as textFieldRegistries } from './shared/definition51.js';
|
|
45
|
+
export { r as registerTextArea, t as textAreaDefinition, a as textAreaRegistries } from './shared/definition50.js';
|
|
46
|
+
export { r as registerToggletip, t as toggletipDefinition, a as toggletipRegistries } from './shared/definition52.js';
|
|
47
|
+
export { r as registerTooltip, t as tooltipDefinition, a as tooltipRegistries } from './shared/definition53.js';
|
|
48
|
+
export { r as registerTabs, t as tabsDefinition, a as tabsRegistries } from './shared/definition47.js';
|
|
49
|
+
export { r as registerTab, a as tabDefinition, t as tabRegistries } from './shared/definition45.js';
|
|
50
|
+
export { r as registerTabPanel, a as tabPanelDefinition, t as tabPanelRegistries } from './shared/definition46.js';
|
|
51
|
+
export { r as registerTreeView, t as treeViewDefinition, a as treeViewRegistries } from './shared/definition55.js';
|
|
52
|
+
export { r as registerTreeItem, t as treeItemDefinition, a as treeItemRegistries } from './shared/definition54.js';
|
|
53
|
+
export { r as registerTag, t as tagDefinition } from './shared/definition48.js';
|
|
54
|
+
export { r as registerTagGroup, t as tagGroupDefinition, a as tagGroupRegistries } from './shared/definition49.js';
|
|
53
55
|
export { A as Appearance, c as AriaLive, C as Connotation, b as ConnotationDecorative, L as LayoutSize, P as Position, R as Role, S as Shape, a as Size } from './shared/enums.js';
|
|
54
56
|
export { ae as designSystem, r as registerFactory } from './shared/index.js';
|
|
55
57
|
import './shared/key-codes.js';
|
package/layout/index.js
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
|
-
import { Checkbox as
|
|
1
|
+
import { Checkbox as FoundationCheckbox } from '@microsoft/fast-foundation';
|
|
2
|
+
import { FormElement, FormElementHelperText, FormElementSuccessText } from '../../shared/patterns';
|
|
3
|
+
import { ErrorText } from '../../shared/patterns';
|
|
2
4
|
export declare const keySpace: ' ';
|
|
3
|
-
export declare class Checkbox extends
|
|
4
|
-
|
|
5
|
+
export declare class Checkbox extends FoundationCheckbox {
|
|
6
|
+
}
|
|
7
|
+
export interface Checkbox extends FormElement, FormElementHelperText, ErrorText, FormElementSuccessText {
|
|
5
8
|
}
|
package/lib/components.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export * from './card/definition';
|
|
|
14
14
|
export * from './checkbox/definition';
|
|
15
15
|
export * from './combobox/definition';
|
|
16
16
|
export * from './elevation/definition';
|
|
17
|
+
export * from './empty-state/definition';
|
|
17
18
|
export * from './dialog/definition';
|
|
18
19
|
export * from './divider/definition';
|
|
19
20
|
export * from './data-grid/definition';
|
|
@@ -30,6 +31,7 @@ export * from './nav-disclosure/definition';
|
|
|
30
31
|
export * from './nav-item/definition';
|
|
31
32
|
export * from './note/definition';
|
|
32
33
|
export * from './number-field/definition';
|
|
34
|
+
export * from './pagination/definition';
|
|
33
35
|
export * from './popup/definition';
|
|
34
36
|
export * from './progress/definition';
|
|
35
37
|
export * from './progress-ring/definition';
|
|
@@ -2,6 +2,8 @@ import { DataGridCell as FoundationElement } from '@microsoft/fast-foundation';
|
|
|
2
2
|
export declare class DataGridCell extends FoundationElement {
|
|
3
3
|
ariaSelected: string | null;
|
|
4
4
|
ariaSelectedChanged(_: string | null, selectedState: string | null): void;
|
|
5
|
+
connectedCallback(): void;
|
|
5
6
|
handleFocusin(e: FocusEvent): void;
|
|
6
7
|
handleFocusout(e: FocusEvent): void;
|
|
8
|
+
constructor();
|
|
7
9
|
}
|
|
@@ -11,6 +11,6 @@ export declare type DataGridSelectionMode = ValueOf<typeof DataGridSelectionMode
|
|
|
11
11
|
export declare class DataGrid extends FoundationElement {
|
|
12
12
|
#private;
|
|
13
13
|
selectionMode?: DataGridSelectionMode;
|
|
14
|
-
selectionModeChanged(): void;
|
|
14
|
+
selectionModeChanged(oldValue: DataGridSelectionMode): void;
|
|
15
15
|
constructor();
|
|
16
16
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const emptyStateDefinition: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
|
|
3
|
+
export declare const registerEmptyState: (prefix?: string) => import("@microsoft/fast-foundation").DesignSystem;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ViewTemplate } from '@microsoft/fast-element';
|
|
2
|
+
import type { ElementDefinitionContext, FoundationElementDefinition } from '@microsoft/fast-foundation';
|
|
3
|
+
import type { EmptyState } from './empty-state';
|
|
4
|
+
export declare const EmptyStateTemplate: (context: ElementDefinitionContext, definition: FoundationElementDefinition) => ViewTemplate<EmptyState>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/listbox/index.js
CHANGED
package/menu/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as registerMenu } from '../shared/
|
|
1
|
+
import { r as registerMenu } from '../shared/definition30.js';
|
|
2
2
|
import '../shared/index.js';
|
|
3
3
|
import '../shared/definition20.js';
|
|
4
4
|
import '../shared/definition7.js';
|
|
@@ -25,7 +25,7 @@ import '../shared/ref.js';
|
|
|
25
25
|
import '../shared/focus2.js';
|
|
26
26
|
import '../shared/definition8.js';
|
|
27
27
|
import '../shared/es.object.assign.js';
|
|
28
|
-
import '../shared/
|
|
28
|
+
import '../shared/definition31.js';
|
|
29
29
|
import '../shared/direction.js';
|
|
30
30
|
import '../shared/slotted.js';
|
|
31
31
|
import '../shared/node-observation.js';
|
package/menu-item/index.js
CHANGED
package/nav/index.js
CHANGED
package/nav-disclosure/index.js
CHANGED
package/nav-item/index.js
CHANGED
package/note/index.js
CHANGED
package/number-field/index.js
CHANGED