@brightspace-ui/core 3.271.2 → 3.271.3
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/alert/README.md +1 -1
- package/components/button/floating-buttons.js +3 -3
- package/components/demo/demo-snippet.js +1 -1
- package/components/dialog/dialog.js +1 -1
- package/components/filter/filter.js +4 -4
- package/components/form/form-element-mixin.js +1 -1
- package/components/form/form-error-summary.js +1 -1
- package/components/inputs/input-date-time-range-to.js +1 -1
- package/components/inputs/input-text.js +1 -1
- package/components/selection/selection-observer-mixin.js +1 -1
- package/components/table/README.md +1 -1
- package/custom-elements.json +22 -22
- package/package.json +1 -1
- package/templates/primary-secondary/primary-secondary.js +5 -5
|
@@ -58,7 +58,7 @@ Use an inline alert if there is important information a user needs to know while
|
|
|
58
58
|
* Don't display more than one paragraph of text
|
|
59
59
|
* Avoid overusing them — the more commonly alerts appear, the less effective they will be
|
|
60
60
|
* Don't use them for promotional material or information that is not relevant to the user’s workflow
|
|
61
|
-
* Don’t use them for validation errors – instead, use the [Form](../../components/form) component for a consistent user experience
|
|
61
|
+
* Don’t use them for validation errors – instead, use the [Form](../../components/form-layout-validation/#d2l-form) component for a consistent user experience
|
|
62
62
|
<!-- docs: end donts -->
|
|
63
63
|
<!-- docs: end best practices -->
|
|
64
64
|
|
|
@@ -22,10 +22,10 @@ class FloatingButtons extends LoadingCompleteMixin(LitElement) {
|
|
|
22
22
|
* @type {boolean}
|
|
23
23
|
*/
|
|
24
24
|
alwaysFloat: { type: Boolean, attribute: 'always-float', reflect: true },
|
|
25
|
-
_containerMarginLeft: {
|
|
26
|
-
_containerMarginRight: {
|
|
25
|
+
_containerMarginLeft: { state: true },
|
|
26
|
+
_containerMarginRight: { state: true },
|
|
27
27
|
_floating: { type: Boolean, reflect: true },
|
|
28
|
-
_innerContainerLeft: {
|
|
28
|
+
_innerContainerLeft: { state: true }
|
|
29
29
|
};
|
|
30
30
|
|
|
31
31
|
static styles = css`
|
|
@@ -22,7 +22,7 @@ class DemoSnippet extends LitElement {
|
|
|
22
22
|
overflowHidden: { type: Boolean, reflect: true, attribute: 'overflow-hidden' },
|
|
23
23
|
_code: { type: String },
|
|
24
24
|
_fullscreen: { state: true },
|
|
25
|
-
_hasSkeleton: {
|
|
25
|
+
_hasSkeleton: { state: true },
|
|
26
26
|
_settingsPeek: { state: true },
|
|
27
27
|
_skeletonOn: { type: Boolean, reflect: false }
|
|
28
28
|
};
|
|
@@ -52,7 +52,7 @@ class Dialog extends PropertyRequiredMixin(LocalizeCoreElement(AsyncContainerMix
|
|
|
52
52
|
* The preferred width (unit-less) for the dialog
|
|
53
53
|
*/
|
|
54
54
|
width: { type: Number },
|
|
55
|
-
_hasFooterContent: {
|
|
55
|
+
_hasFooterContent: { state: true }
|
|
56
56
|
};
|
|
57
57
|
|
|
58
58
|
static styles = [_generateResetStyles(':host'), dialogStyles, heading3Styles, css`
|
|
@@ -88,12 +88,12 @@ class Filter extends FocusMixin(LocalizeCoreElement(LitElement)) {
|
|
|
88
88
|
* @type {string}
|
|
89
89
|
*/
|
|
90
90
|
text: { type: String },
|
|
91
|
-
_activeDimensionKey: {
|
|
92
|
-
_dimensions: {
|
|
91
|
+
_activeDimensionKey: { state: true },
|
|
92
|
+
_dimensions: { state: true },
|
|
93
93
|
_displayKeyboardTooltip: { state: true },
|
|
94
94
|
_ignoreSlotChanges: { type: Boolean },
|
|
95
|
-
_minWidth: {
|
|
96
|
-
_totalAppliedCount: {
|
|
95
|
+
_minWidth: { state: true },
|
|
96
|
+
_totalAppliedCount: { state: true }
|
|
97
97
|
};
|
|
98
98
|
|
|
99
99
|
static styles = [bodyCompactStyles, bodySmallStyles, bodyStandardStyles, heading4Styles, offscreenStyles, css`
|
|
@@ -108,7 +108,7 @@ export const FormElementMixin = superclass => class extends LocalizeCoreElement(
|
|
|
108
108
|
* @ignore
|
|
109
109
|
*/
|
|
110
110
|
childErrors: { type: Object, attribute: false },
|
|
111
|
-
_errors: {
|
|
111
|
+
_errors: { state: true }
|
|
112
112
|
};
|
|
113
113
|
|
|
114
114
|
constructor() {
|
|
@@ -9,7 +9,7 @@ class FormErrorSummary extends LocalizeCoreElement(LitElement) {
|
|
|
9
9
|
|
|
10
10
|
static properties = {
|
|
11
11
|
errors: { type: Object, attribute: false },
|
|
12
|
-
_expanded: {
|
|
12
|
+
_expanded: { state: true },
|
|
13
13
|
_hasTopMargin: { type: Boolean, attribute: '_has-top-margin', reflect: true },
|
|
14
14
|
_hasErrors: { type: Boolean, attribute: '_has-errors', reflect: true },
|
|
15
15
|
};
|
|
@@ -32,7 +32,7 @@ class InputDateTimeRangeTo extends SkeletonMixin(LocalizeCoreElement(LitElement)
|
|
|
32
32
|
* @type {boolean}
|
|
33
33
|
*/
|
|
34
34
|
topMargin: { attribute: 'top-margin', type: Boolean },
|
|
35
|
-
_blockDisplay: {
|
|
35
|
+
_blockDisplay: { state: true }
|
|
36
36
|
};
|
|
37
37
|
|
|
38
38
|
static styles = [super.styles, bodySmallStyles, css`
|
|
@@ -185,7 +185,7 @@ class InputText extends InputInlineHelpMixin(PropertyRequiredMixin(FocusMixin(La
|
|
|
185
185
|
*/
|
|
186
186
|
valueAlign: { attribute: 'value-align', type: String },
|
|
187
187
|
_firstSlotWidth: { type: Number },
|
|
188
|
-
_hasAfterContent: {
|
|
188
|
+
_hasAfterContent: { state: true },
|
|
189
189
|
_focused: { type: Boolean },
|
|
190
190
|
_hovered: { type: Boolean },
|
|
191
191
|
_lastSlotWidth: { type: Number }
|
package/custom-elements.json
CHANGED
|
@@ -692,8 +692,8 @@
|
|
|
692
692
|
"properties": [
|
|
693
693
|
{
|
|
694
694
|
"name": "properties",
|
|
695
|
-
"type": "{ alwaysFloat: boolean; _containerMarginLeft: {
|
|
696
|
-
"default": "{\"alwaysFloat\":{\"type\":\"Boolean\",\"attribute\":\"always-float\",\"reflect\":true},\"_containerMarginLeft\":{\"
|
|
695
|
+
"type": "{ alwaysFloat: boolean; _containerMarginLeft: { state: boolean; }; _containerMarginRight: { state: boolean; }; _floating: { type: BooleanConstructor; reflect: boolean; }; _innerContainerLeft: { ...; }; }",
|
|
696
|
+
"default": "{\"alwaysFloat\":{\"type\":\"Boolean\",\"attribute\":\"always-float\",\"reflect\":true},\"_containerMarginLeft\":{\"state\":true},\"_containerMarginRight\":{\"state\":true},\"_floating\":{\"type\":\"Boolean\",\"reflect\":true},\"_innerContainerLeft\":{\"state\":true}}"
|
|
697
697
|
},
|
|
698
698
|
{
|
|
699
699
|
"name": "styles",
|
|
@@ -1242,7 +1242,7 @@
|
|
|
1242
1242
|
{
|
|
1243
1243
|
"name": "properties",
|
|
1244
1244
|
"type": "{ codeViewHidden: { type: BooleanConstructor; reflect: boolean; attribute: string; }; fullWidth: { type: BooleanConstructor; reflect: boolean; attribute: string; }; ... 6 more ...; _skeletonOn: { ...; }; }",
|
|
1245
|
-
"default": "{\"codeViewHidden\":{\"type\":\"Boolean\",\"reflect\":true,\"attribute\":\"code-view-hidden\"},\"fullWidth\":{\"type\":\"Boolean\",\"reflect\":true,\"attribute\":\"full-width\"},\"noPadding\":{\"type\":\"Boolean\",\"reflect\":true,\"attribute\":\"no-padding\"},\"overflowHidden\":{\"type\":\"Boolean\",\"reflect\":true,\"attribute\":\"overflow-hidden\"},\"_code\":{\"type\":\"String\"},\"_fullscreen\":{\"state\":true},\"_hasSkeleton\":{\"
|
|
1245
|
+
"default": "{\"codeViewHidden\":{\"type\":\"Boolean\",\"reflect\":true,\"attribute\":\"code-view-hidden\"},\"fullWidth\":{\"type\":\"Boolean\",\"reflect\":true,\"attribute\":\"full-width\"},\"noPadding\":{\"type\":\"Boolean\",\"reflect\":true,\"attribute\":\"no-padding\"},\"overflowHidden\":{\"type\":\"Boolean\",\"reflect\":true,\"attribute\":\"overflow-hidden\"},\"_code\":{\"type\":\"String\"},\"_fullscreen\":{\"state\":true},\"_hasSkeleton\":{\"state\":true},\"_settingsPeek\":{\"state\":true},\"_skeletonOn\":{\"type\":\"Boolean\",\"reflect\":false}}"
|
|
1246
1246
|
},
|
|
1247
1247
|
{
|
|
1248
1248
|
"name": "styles",
|
|
@@ -1573,7 +1573,7 @@
|
|
|
1573
1573
|
{
|
|
1574
1574
|
"name": "properties",
|
|
1575
1575
|
"type": "{ async: { type: BooleanConstructor; }; critical: { type: BooleanConstructor; }; describeContent: { type: BooleanConstructor; attribute: string; }; fullHeight: { ...; }; titleText: { ...; }; width: { ...; }; _hasFooterContent: { ...; }; }",
|
|
1576
|
-
"default": "{\"async\":{\"type\":\"Boolean\"},\"critical\":{\"type\":\"Boolean\"},\"describeContent\":{\"type\":\"Boolean\",\"attribute\":\"describe-content\"},\"fullHeight\":{\"type\":\"Boolean\",\"attribute\":\"full-height\"},\"titleText\":{\"type\":\"String\",\"attribute\":\"title-text\",\"required\":true},\"width\":{\"type\":\"Number\"},\"_hasFooterContent\":{\"
|
|
1576
|
+
"default": "{\"async\":{\"type\":\"Boolean\"},\"critical\":{\"type\":\"Boolean\"},\"describeContent\":{\"type\":\"Boolean\",\"attribute\":\"describe-content\"},\"fullHeight\":{\"type\":\"Boolean\",\"attribute\":\"full-height\"},\"titleText\":{\"type\":\"String\",\"attribute\":\"title-text\",\"required\":true},\"width\":{\"type\":\"Number\"},\"_hasFooterContent\":{\"state\":true}}"
|
|
1577
1577
|
},
|
|
1578
1578
|
{
|
|
1579
1579
|
"name": "focusableContentElemPresent",
|
|
@@ -2648,8 +2648,8 @@
|
|
|
2648
2648
|
"properties": [
|
|
2649
2649
|
{
|
|
2650
2650
|
"name": "properties",
|
|
2651
|
-
"type": "{ disabled: boolean; opened: boolean; text: string; _activeDimensionKey: {
|
|
2652
|
-
"default": "{\"disabled\":{\"type\":\"Boolean\",\"reflect\":true},\"opened\":{\"type\":\"Boolean\",\"reflect\":true},\"text\":{\"type\":\"String\"},\"_activeDimensionKey\":{\"
|
|
2651
|
+
"type": "{ disabled: boolean; opened: boolean; text: string; _activeDimensionKey: { state: boolean; }; _dimensions: { state: boolean; }; _displayKeyboardTooltip: { state: boolean; }; _ignoreSlotChanges: { ...; }; _minWidth: { ...; }; _totalAppliedCount: { ...; }; }",
|
|
2652
|
+
"default": "{\"disabled\":{\"type\":\"Boolean\",\"reflect\":true},\"opened\":{\"type\":\"Boolean\",\"reflect\":true},\"text\":{\"type\":\"String\"},\"_activeDimensionKey\":{\"state\":true},\"_dimensions\":{\"state\":true},\"_displayKeyboardTooltip\":{\"state\":true},\"_ignoreSlotChanges\":{\"type\":\"Boolean\"},\"_minWidth\":{\"state\":true},\"_totalAppliedCount\":{\"state\":true}}"
|
|
2653
2653
|
},
|
|
2654
2654
|
{
|
|
2655
2655
|
"name": "styles",
|
|
@@ -2767,8 +2767,8 @@
|
|
|
2767
2767
|
"properties": [
|
|
2768
2768
|
{
|
|
2769
2769
|
"name": "properties",
|
|
2770
|
-
"type": "{ _expanded: {
|
|
2771
|
-
"default": "{\"_expanded\":{\"
|
|
2770
|
+
"type": "{ _expanded: { state: boolean; }; }",
|
|
2771
|
+
"default": "{\"_expanded\":{\"state\":true}}"
|
|
2772
2772
|
},
|
|
2773
2773
|
{
|
|
2774
2774
|
"name": "styles",
|
|
@@ -2783,8 +2783,8 @@
|
|
|
2783
2783
|
"properties": [
|
|
2784
2784
|
{
|
|
2785
2785
|
"name": "properties",
|
|
2786
|
-
"type": "{ errors: { type: ObjectConstructor; attribute: boolean; }; _expanded: {
|
|
2787
|
-
"default": "{\"errors\":{\"type\":\"Object\",\"attribute\":false},\"_expanded\":{\"
|
|
2786
|
+
"type": "{ errors: { type: ObjectConstructor; attribute: boolean; }; _expanded: { state: boolean; }; _hasTopMargin: { type: BooleanConstructor; attribute: string; reflect: boolean; }; _hasErrors: { ...; }; }",
|
|
2787
|
+
"default": "{\"errors\":{\"type\":\"Object\",\"attribute\":false},\"_expanded\":{\"state\":true},\"_hasTopMargin\":{\"type\":\"Boolean\",\"attribute\":\"_has-top-margin\",\"reflect\":true},\"_hasErrors\":{\"type\":\"Boolean\",\"attribute\":\"_has-errors\",\"reflect\":true}}"
|
|
2788
2788
|
},
|
|
2789
2789
|
{
|
|
2790
2790
|
"name": "styles",
|
|
@@ -3384,8 +3384,8 @@
|
|
|
3384
3384
|
},
|
|
3385
3385
|
{
|
|
3386
3386
|
"name": "properties",
|
|
3387
|
-
"type": "{ blockDisplay: boolean; displayTo: boolean; topMargin: boolean; _blockDisplay: {
|
|
3388
|
-
"default": "{\"blockDisplay\":{\"attribute\":\"block-display\",\"type\":\"Boolean\"},\"displayTo\":{\"attribute\":\"display-to\",\"type\":\"Boolean\"},\"topMargin\":{\"attribute\":\"top-margin\",\"type\":\"Boolean\"},\"_blockDisplay\":{\"
|
|
3387
|
+
"type": "{ blockDisplay: boolean; displayTo: boolean; topMargin: boolean; _blockDisplay: { state: boolean; }; }",
|
|
3388
|
+
"default": "{\"blockDisplay\":{\"attribute\":\"block-display\",\"type\":\"Boolean\"},\"displayTo\":{\"attribute\":\"display-to\",\"type\":\"Boolean\"},\"topMargin\":{\"attribute\":\"top-margin\",\"type\":\"Boolean\"},\"_blockDisplay\":{\"state\":true}}"
|
|
3389
3389
|
},
|
|
3390
3390
|
{
|
|
3391
3391
|
"name": "skeleton",
|
|
@@ -4105,7 +4105,7 @@
|
|
|
4105
4105
|
{
|
|
4106
4106
|
"name": "properties",
|
|
4107
4107
|
"type": "{ ariaHaspopup: string; ariaInvalid: string; autocomplete: string; autofocus: { type: BooleanConstructor; }; description: string; disabled: boolean; hideInvalidIcon: boolean; ... 26 more ...; _lastSlotWidth: { ...; }; }",
|
|
4108
|
-
"default": "{\"ariaHaspopup\":{\"type\":\"String\",\"attribute\":\"aria-haspopup\"},\"ariaInvalid\":{\"type\":\"String\",\"attribute\":\"aria-invalid\"},\"autocomplete\":{\"type\":\"String\"},\"autofocus\":{\"type\":\"Boolean\"},\"description\":{\"type\":\"String\",\"reflect\":true},\"disabled\":{\"type\":\"Boolean\",\"reflect\":true},\"hideInvalidIcon\":{\"attribute\":\"hide-invalid-icon\",\"type\":\"Boolean\",\"reflect\":true},\"hideInvalidTooltip\":{\"attribute\":\"hide-invalid-tooltip\",\"type\":\"Boolean\",\"reflect\":true},\"inputWidth\":{\"attribute\":\"input-width\",\"type\":\"String\"},\"instructions\":{\"type\":\"String\",\"attribute\":\"instructions\"},\"labelHidden\":{\"type\":\"Boolean\",\"attribute\":\"label-hidden\"},\"max\":{\"type\":\"String\"},\"maxlength\":{\"type\":\"Number\"},\"min\":{\"type\":\"String\"},\"minlength\":{\"type\":\"Number\"},\"pattern\":{\"type\":\"String\"},\"patternFailureText\":{\"type\":\"String\",\"attribute\":\"pattern-failure-text\"},\"placeholder\":{\"type\":\"String\"},\"preventSubmit\":{\"type\":\"Boolean\",\"attribute\":\"prevent-submit\"},\"readonly\":{\"type\":\"Boolean\"},\"required\":{\"type\":\"Boolean\",\"reflect\":true},\"size\":{\"type\":\"Number\"},\"step\":{\"type\":\"Number\"},\"title\":{\"type\":\"String\"},\"type\":{\"type\":\"String\"},\"unit\":{\"type\":\"String\"},\"unitLabel\":{\"attribute\":\"unit-label\",\"required\":{\"dependentProps\":[\"unit\"]},\"type\":\"String\"},\"value\":{\"type\":\"String\"},\"valueAlign\":{\"attribute\":\"value-align\",\"type\":\"String\"},\"_firstSlotWidth\":{\"type\":\"Number\"},\"_hasAfterContent\":{\"
|
|
4108
|
+
"default": "{\"ariaHaspopup\":{\"type\":\"String\",\"attribute\":\"aria-haspopup\"},\"ariaInvalid\":{\"type\":\"String\",\"attribute\":\"aria-invalid\"},\"autocomplete\":{\"type\":\"String\"},\"autofocus\":{\"type\":\"Boolean\"},\"description\":{\"type\":\"String\",\"reflect\":true},\"disabled\":{\"type\":\"Boolean\",\"reflect\":true},\"hideInvalidIcon\":{\"attribute\":\"hide-invalid-icon\",\"type\":\"Boolean\",\"reflect\":true},\"hideInvalidTooltip\":{\"attribute\":\"hide-invalid-tooltip\",\"type\":\"Boolean\",\"reflect\":true},\"inputWidth\":{\"attribute\":\"input-width\",\"type\":\"String\"},\"instructions\":{\"type\":\"String\",\"attribute\":\"instructions\"},\"labelHidden\":{\"type\":\"Boolean\",\"attribute\":\"label-hidden\"},\"max\":{\"type\":\"String\"},\"maxlength\":{\"type\":\"Number\"},\"min\":{\"type\":\"String\"},\"minlength\":{\"type\":\"Number\"},\"pattern\":{\"type\":\"String\"},\"patternFailureText\":{\"type\":\"String\",\"attribute\":\"pattern-failure-text\"},\"placeholder\":{\"type\":\"String\"},\"preventSubmit\":{\"type\":\"Boolean\",\"attribute\":\"prevent-submit\"},\"readonly\":{\"type\":\"Boolean\"},\"required\":{\"type\":\"Boolean\",\"reflect\":true},\"size\":{\"type\":\"Number\"},\"step\":{\"type\":\"Number\"},\"title\":{\"type\":\"String\"},\"type\":{\"type\":\"String\"},\"unit\":{\"type\":\"String\"},\"unitLabel\":{\"attribute\":\"unit-label\",\"required\":{\"dependentProps\":[\"unit\"]},\"type\":\"String\"},\"value\":{\"type\":\"String\"},\"valueAlign\":{\"attribute\":\"value-align\",\"type\":\"String\"},\"_firstSlotWidth\":{\"type\":\"Number\"},\"_hasAfterContent\":{\"state\":true},\"_focused\":{\"type\":\"Boolean\"},\"_hovered\":{\"type\":\"Boolean\"},\"_lastSlotWidth\":{\"type\":\"Number\"}}"
|
|
4109
4109
|
}
|
|
4110
4110
|
],
|
|
4111
4111
|
"events": [
|
|
@@ -6950,8 +6950,8 @@
|
|
|
6950
6950
|
},
|
|
6951
6951
|
{
|
|
6952
6952
|
"name": "properties",
|
|
6953
|
-
"type": "{ selectionFor: string; selectionInfo: any; _provider: {
|
|
6954
|
-
"default": "{\"selectionFor\":{\"type\":\"String\",\"reflect\":true,\"attribute\":\"selection-for\"},\"selectionInfo\":{\"type\":\"Object\"},\"_provider\":{\"
|
|
6953
|
+
"type": "{ selectionFor: string; selectionInfo: any; _provider: { state: boolean; }; }",
|
|
6954
|
+
"default": "{\"selectionFor\":{\"type\":\"String\",\"reflect\":true,\"attribute\":\"selection-for\"},\"selectionInfo\":{\"type\":\"Object\"},\"_provider\":{\"state\":true}}"
|
|
6955
6955
|
},
|
|
6956
6956
|
{
|
|
6957
6957
|
"name": "disabled",
|
|
@@ -7189,8 +7189,8 @@
|
|
|
7189
7189
|
},
|
|
7190
7190
|
{
|
|
7191
7191
|
"name": "properties",
|
|
7192
|
-
"type": "{ selectionFor: string; selectionInfo: any; _provider: {
|
|
7193
|
-
"default": "{\"selectionFor\":{\"type\":\"String\",\"reflect\":true,\"attribute\":\"selection-for\"},\"selectionInfo\":{\"type\":\"Object\"},\"_provider\":{\"
|
|
7192
|
+
"type": "{ selectionFor: string; selectionInfo: any; _provider: { state: boolean; }; }",
|
|
7193
|
+
"default": "{\"selectionFor\":{\"type\":\"String\",\"reflect\":true,\"attribute\":\"selection-for\"},\"selectionInfo\":{\"type\":\"Object\"},\"_provider\":{\"state\":true}}"
|
|
7194
7194
|
},
|
|
7195
7195
|
{
|
|
7196
7196
|
"name": "selectionInfo"
|
|
@@ -7292,8 +7292,8 @@
|
|
|
7292
7292
|
"properties": [
|
|
7293
7293
|
{
|
|
7294
7294
|
"name": "properties",
|
|
7295
|
-
"type": "{ selectionFor: string; selectionInfo: any; _provider: {
|
|
7296
|
-
"default": "{\"selectionFor\":{\"type\":\"String\",\"reflect\":true,\"attribute\":\"selection-for\"},\"selectionInfo\":{\"type\":\"Object\"},\"_provider\":{\"
|
|
7295
|
+
"type": "{ selectionFor: string; selectionInfo: any; _provider: { state: boolean; }; }",
|
|
7296
|
+
"default": "{\"selectionFor\":{\"type\":\"String\",\"reflect\":true,\"attribute\":\"selection-for\"},\"selectionInfo\":{\"type\":\"Object\"},\"_provider\":{\"state\":true}}"
|
|
7297
7297
|
},
|
|
7298
7298
|
{
|
|
7299
7299
|
"name": "selectionInfo"
|
|
@@ -7311,8 +7311,8 @@
|
|
|
7311
7311
|
"properties": [
|
|
7312
7312
|
{
|
|
7313
7313
|
"name": "properties",
|
|
7314
|
-
"type": "{ selectionFor: string; selectionInfo: any; _provider: {
|
|
7315
|
-
"default": "{\"selectionFor\":{\"type\":\"String\",\"reflect\":true,\"attribute\":\"selection-for\"},\"selectionInfo\":{\"type\":\"Object\"},\"_provider\":{\"
|
|
7314
|
+
"type": "{ selectionFor: string; selectionInfo: any; _provider: { state: boolean; }; }",
|
|
7315
|
+
"default": "{\"selectionFor\":{\"type\":\"String\",\"reflect\":true,\"attribute\":\"selection-for\"},\"selectionInfo\":{\"type\":\"Object\"},\"_provider\":{\"state\":true}}"
|
|
7316
7316
|
},
|
|
7317
7317
|
{
|
|
7318
7318
|
"name": "selectionInfo"
|
|
@@ -8771,7 +8771,7 @@
|
|
|
8771
8771
|
{
|
|
8772
8772
|
"name": "properties",
|
|
8773
8773
|
"type": "{ backgroundShading: \"none\" | \"primary\" | \"secondary\"; primaryOverflow: \"default\" | \"hidden\"; resizable: boolean; secondaryFirst: boolean; storageKey: string; widthType: \"normal\" | \"fullscreen\"; ... 7 more ...; _sizeAsPercent: { ...; }; }",
|
|
8774
|
-
"default": "{\"backgroundShading\":{\"type\":\"String\",\"attribute\":\"background-shading\"},\"primaryOverflow\":{\"attribute\":\"primary-overflow\",\"reflect\":true,\"type\":\"String\"},\"resizable\":{\"type\":\"Boolean\",\"reflect\":true},\"secondaryFirst\":{\"type\":\"Boolean\",\"attribute\":\"secondary-first\",\"reflect\":true},\"storageKey\":{\"type\":\"String\",\"attribute\":\"storage-key\"},\"widthType\":{\"type\":\"String\",\"attribute\":\"width-type\",\"reflect\":true},\"hasForm\":{\"type\":\"Boolean\",\"attribute\":\"has-form\"},\"_formErrorSummary\":{\"type\":\"Array\"},\"_hasFooter\":{\"
|
|
8774
|
+
"default": "{\"backgroundShading\":{\"type\":\"String\",\"attribute\":\"background-shading\"},\"primaryOverflow\":{\"attribute\":\"primary-overflow\",\"reflect\":true,\"type\":\"String\"},\"resizable\":{\"type\":\"Boolean\",\"reflect\":true},\"secondaryFirst\":{\"type\":\"Boolean\",\"attribute\":\"secondary-first\",\"reflect\":true},\"storageKey\":{\"type\":\"String\",\"attribute\":\"storage-key\"},\"widthType\":{\"type\":\"String\",\"attribute\":\"width-type\",\"reflect\":true},\"hasForm\":{\"type\":\"Boolean\",\"attribute\":\"has-form\"},\"_formErrorSummary\":{\"type\":\"Array\"},\"_hasFooter\":{\"state\":true},\"_isCollapsed\":{\"state\":true},\"_isExpanded\":{\"state\":true},\"_isMobile\":{\"state\":true},\"_size\":{\"state\":true},\"_sizeAsPercent\":{\"state\":true}}"
|
|
8775
8775
|
},
|
|
8776
8776
|
{
|
|
8777
8777
|
"name": "styles",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightspace-ui/core",
|
|
3
|
-
"version": "3.271.
|
|
3
|
+
"version": "3.271.3",
|
|
4
4
|
"description": "A collection of accessible, free, open-source web components for building Brightspace applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": "https://github.com/BrightspaceUI/core.git",
|
|
@@ -596,11 +596,11 @@ class TemplatePrimarySecondary extends LocalizeCoreElement(LitElement) {
|
|
|
596
596
|
*/
|
|
597
597
|
hasForm: { type: Boolean, attribute: 'has-form' },
|
|
598
598
|
_formErrorSummary: { type: Array },
|
|
599
|
-
_hasFooter: {
|
|
600
|
-
_isCollapsed: {
|
|
601
|
-
_isExpanded: {
|
|
602
|
-
_isMobile: {
|
|
603
|
-
_size: {
|
|
599
|
+
_hasFooter: { state: true },
|
|
600
|
+
_isCollapsed: { state: true },
|
|
601
|
+
_isExpanded: { state: true },
|
|
602
|
+
_isMobile: { state: true },
|
|
603
|
+
_size: { state: true },
|
|
604
604
|
_sizeAsPercent: { state: true }
|
|
605
605
|
};
|
|
606
606
|
|