@brightspace-ui/core 1.233.6 → 1.233.9

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.
@@ -93,10 +93,12 @@ export const ListItemMixin = superclass => class extends LocalizeCoreElement(Lis
93
93
  display: none;
94
94
  }
95
95
  :host([_tooltip-showing]),
96
- :host([_dropdown-open]),
97
- :host([_fullscreen-within]) {
96
+ :host([_dropdown-open]) {
98
97
  z-index: 10;
99
98
  }
99
+ :host([_fullscreen-within]) {
100
+ z-index: 1000; /* must be greater than floating workflow buttons */
101
+ }
100
102
  :host(:first-child) d2l-list-item-generic-layout[data-separators="between"] {
101
103
  border-top: 1px solid transparent;
102
104
  }
@@ -105,7 +105,7 @@ class Tooltip extends RtlMixin(LitElement) {
105
105
  */
106
106
  align: { type: String, reflect: true },
107
107
  /**
108
- * Announce the tooltip innerText when applicable (for use with custom elements)
108
+ * ADVANCED: Announce the tooltip innerText when applicable (for use with custom elements)
109
109
  * @type {boolean}
110
110
  */
111
111
  announced: { type: Boolean },
@@ -114,7 +114,7 @@ class Tooltip extends RtlMixin(LitElement) {
114
114
  */
115
115
  boundary: { type: Object },
116
116
  /**
117
- * Causes the tooltip to close when its target is clicked
117
+ * ADVANCED: Causes the tooltip to close when its target is clicked
118
118
  * @type {boolean}
119
119
  */
120
120
  closeOnClick: { type: Boolean, attribute: 'close-on-click' },
@@ -124,7 +124,7 @@ class Tooltip extends RtlMixin(LitElement) {
124
124
  */
125
125
  delay: { type: Number },
126
126
  /**
127
- * Disables focus lock so the tooltip will automatically close when no longer hovered even if it still has focus
127
+ * ADVANCED: Disables focus lock so the tooltip will automatically close when no longer hovered even if it still has focus
128
128
  * @type {boolean}
129
129
  */
130
130
  disableFocusLock: { type: Boolean, attribute: 'disable-focus-lock' },
@@ -134,12 +134,12 @@ class Tooltip extends RtlMixin(LitElement) {
134
134
  */
135
135
  for: { type: String },
136
136
  /**
137
- * Force the tooltip to stay open as long as it remains "true"
137
+ * ADVANCED: Force the tooltip to stay open as long as it remains "true"
138
138
  * @type {boolean}
139
139
  */
140
140
  forceShow: { type: Boolean, attribute: 'force-show' },
141
141
  /**
142
- * Accessibility type for the tooltip to specify whether it is the primary label for the target or a secondary descriptor.
142
+ * ADVANCED: Accessibility type for the tooltip to specify whether it is the primary label for the target or a secondary descriptor.
143
143
  * @type {'label'|'descriptor'}
144
144
  */
145
145
  forType: { type: String, attribute: 'for-type' },
@@ -149,7 +149,7 @@ class Tooltip extends RtlMixin(LitElement) {
149
149
  */
150
150
  offset: { type: Number }, /* tooltipOffset */
151
151
  /**
152
- * Force the tooltip to open in a certain direction. If no position is provided, the tooltip will open in the first position that has enough space for it in the order: bottom, top, right, left.
152
+ * ADVANCED: Force the tooltip to open in a certain direction. If no position is provided, the tooltip will open in the first position that has enough space for it in the order: bottom, top, right, left.
153
153
  * @type {'top'|'bottom'|'left'|'right'}
154
154
  */
155
155
  position: { type: String },
@@ -9759,18 +9759,18 @@
9759
9759
  },
9760
9760
  {
9761
9761
  "name": "position",
9762
- "description": "Force the tooltip to open in a certain direction. If no position is provided, the tooltip will open in the first position that has enough space for it in the order: bottom, top, right, left.",
9762
+ "description": "ADVANCED: Force the tooltip to open in a certain direction. If no position is provided, the tooltip will open in the first position that has enough space for it in the order: bottom, top, right, left.",
9763
9763
  "type": "'top'|'bottom'|'left'|'right'"
9764
9764
  },
9765
9765
  {
9766
9766
  "name": "announced",
9767
- "description": "Announce the tooltip innerText when applicable (for use with custom elements)",
9767
+ "description": "ADVANCED: Announce the tooltip innerText when applicable (for use with custom elements)",
9768
9768
  "type": "boolean",
9769
9769
  "default": "false"
9770
9770
  },
9771
9771
  {
9772
9772
  "name": "close-on-click",
9773
- "description": "Causes the tooltip to close when its target is clicked",
9773
+ "description": "ADVANCED: Causes the tooltip to close when its target is clicked",
9774
9774
  "type": "boolean",
9775
9775
  "default": "false"
9776
9776
  },
@@ -9782,19 +9782,19 @@
9782
9782
  },
9783
9783
  {
9784
9784
  "name": "disable-focus-lock",
9785
- "description": "Disables focus lock so the tooltip will automatically close when no longer hovered even if it still has focus",
9785
+ "description": "ADVANCED: Disables focus lock so the tooltip will automatically close when no longer hovered even if it still has focus",
9786
9786
  "type": "boolean",
9787
9787
  "default": "false"
9788
9788
  },
9789
9789
  {
9790
9790
  "name": "force-show",
9791
- "description": "Force the tooltip to stay open as long as it remains \"true\"",
9791
+ "description": "ADVANCED: Force the tooltip to stay open as long as it remains \"true\"",
9792
9792
  "type": "boolean",
9793
9793
  "default": "false"
9794
9794
  },
9795
9795
  {
9796
9796
  "name": "for-type",
9797
- "description": "Accessibility type for the tooltip to specify whether it is the primary label for the target or a secondary descriptor.",
9797
+ "description": "ADVANCED: Accessibility type for the tooltip to specify whether it is the primary label for the target or a secondary descriptor.",
9798
9798
  "type": "'label'|'descriptor'",
9799
9799
  "default": "\"descriptor\""
9800
9800
  },
@@ -9826,7 +9826,7 @@
9826
9826
  {
9827
9827
  "name": "position",
9828
9828
  "attribute": "position",
9829
- "description": "Force the tooltip to open in a certain direction. If no position is provided, the tooltip will open in the first position that has enough space for it in the order: bottom, top, right, left.",
9829
+ "description": "ADVANCED: Force the tooltip to open in a certain direction. If no position is provided, the tooltip will open in the first position that has enough space for it in the order: bottom, top, right, left.",
9830
9830
  "type": "'top'|'bottom'|'left'|'right'"
9831
9831
  },
9832
9832
  {
@@ -9835,14 +9835,14 @@
9835
9835
  {
9836
9836
  "name": "announced",
9837
9837
  "attribute": "announced",
9838
- "description": "Announce the tooltip innerText when applicable (for use with custom elements)",
9838
+ "description": "ADVANCED: Announce the tooltip innerText when applicable (for use with custom elements)",
9839
9839
  "type": "boolean",
9840
9840
  "default": "false"
9841
9841
  },
9842
9842
  {
9843
9843
  "name": "closeOnClick",
9844
9844
  "attribute": "close-on-click",
9845
- "description": "Causes the tooltip to close when its target is clicked",
9845
+ "description": "ADVANCED: Causes the tooltip to close when its target is clicked",
9846
9846
  "type": "boolean",
9847
9847
  "default": "false"
9848
9848
  },
@@ -9856,21 +9856,21 @@
9856
9856
  {
9857
9857
  "name": "disableFocusLock",
9858
9858
  "attribute": "disable-focus-lock",
9859
- "description": "Disables focus lock so the tooltip will automatically close when no longer hovered even if it still has focus",
9859
+ "description": "ADVANCED: Disables focus lock so the tooltip will automatically close when no longer hovered even if it still has focus",
9860
9860
  "type": "boolean",
9861
9861
  "default": "false"
9862
9862
  },
9863
9863
  {
9864
9864
  "name": "forceShow",
9865
9865
  "attribute": "force-show",
9866
- "description": "Force the tooltip to stay open as long as it remains \"true\"",
9866
+ "description": "ADVANCED: Force the tooltip to stay open as long as it remains \"true\"",
9867
9867
  "type": "boolean",
9868
9868
  "default": "false"
9869
9869
  },
9870
9870
  {
9871
9871
  "name": "forType",
9872
9872
  "attribute": "for-type",
9873
- "description": "Accessibility type for the tooltip to specify whether it is the primary label for the target or a secondary descriptor.",
9873
+ "description": "ADVANCED: Accessibility type for the tooltip to specify whether it is the primary label for the target or a secondary descriptor.",
9874
9874
  "type": "'label'|'descriptor'",
9875
9875
  "default": "\"descriptor\""
9876
9876
  },
package/lang/hi.js ADDED
@@ -0,0 +1,101 @@
1
+ /* eslint quotes: 0 */
2
+
3
+ export default {
4
+ "components.alert.close": "अलर्ट बंद करें",
5
+ "components.breadcrumbs.breadcrumb": "Breadcrumb",
6
+ "components.calendar.notSelected": "चयनित नहीं।",
7
+ "components.calendar.selected": "चयनित।",
8
+ "components.calendar.show": "{month} दिखाएँ",
9
+ "components.count-badge.plus" : "{number}+",
10
+ "components.dialog.close": "यह संवाद बंद करें",
11
+ "components.dropdown.close": "बंद करें",
12
+ "components.filter.clear": "साफ़ करें",
13
+ "components.filter.clearAll": "सभी साफ़ करें",
14
+ "components.filter.clearAllAnnounce": "सभी फिल्टर साफ़ किए जा रहे हैं",
15
+ "components.filter.clearAllDescription": "सभी फिल्टर साफ़ करें",
16
+ "components.filter.clearAnnounce": "इसके लिए फ़िल्टर साफ़ हो रहे हैं: {filterName}",
17
+ "components.filter.clearAnnounceSingle": "फ़िल्टर्स साफ़ किए जा रहे हैं",
18
+ "components.filter.clearDescription": "इसके लिए फ़िल्टर्स साफ़ करें: {filterName}",
19
+ "components.filter.clearDescriptionSingle": "फ़िल्टर साफ़ करें",
20
+ "components.filter.loading": "फिल्टर्स लोड किए जा रहे हैं",
21
+ "components.filter.filterCountDescription": "{number, plural, zero {कोई फ़िल्टर लागू नहीं किए गए} one {1 फ़िल्टर लागू किया गया।} other {{number} फ़िल्टर्स लागू किए गए।}}",
22
+ "components.filter.filters": "फ़िल्टर्स",
23
+ "components.filter.noFilters": "कोई उपलब्ध फ़िल्टर्स नहीं",
24
+ "components.filter.searchResults": "{number, plural, zero {कोई खोज परिणाम नहीं} one {1 खोज परिणाम} other {{number} खोज परिणाम}}",
25
+ "components.filter.singleDimensionDescription": "इसके अनुसार फ़िल्टर करें: {filterName}",
26
+ "components.form-element.defaultError": "{label} अमान्य है।",
27
+ "components.form-element.defaultFieldLabel": "फ़ील्ड",
28
+ "components.form-element.input.email.typeMismatch": "ईमेल मान्य नहीं है",
29
+ "components.form-element.input.number.rangeError": "संख्या को {minExclusive, select, true {इससे बड़ा} false {इससे बड़ा या इसके बराबर}} {min} and {maxExclusive, select, true {इससे कम} false {इससे कम या इसके बराबर}} {max} होना आवश्यक है।",
30
+ "components.form-element.input.number.rangeOverflow": "संख्या को {maxExclusive, select, true {इससे कम} false {इससे कम या इसके बराबर}} {max} होना आवश्यक है।",
31
+ "components.form-element.input.number.rangeUnderflow": "संख्या को {minExclusive, select, true {इससे बड़ा} false {इससे बड़ा है या इसके बराबर}} {min} होना आवश्यक है।",
32
+ "components.form-element.input.text.tooShort": "{label} कम से कम {minlength} वर्णों का होना चाहिए",
33
+ "components.form-element.input.url.typeMismatch": "URL मान्य नहीं है",
34
+ "components.form-element.valueMissing": "{label} आवश्यक है।",
35
+ "components.form-error-summary.errorSummary": "आपके द्वारा सबमिट की गई जानकारी में {count, plural, one { 1 त्रुटि } other { { count } त्रुटियाँ }} मिली थी",
36
+ "components.input-date-range.endDate": "समाप्ति तारीख़",
37
+ "components.input-date-range.errorBadInput": "{startLabel} {endLabel} से पहले का होना चाहिए",
38
+ "components.input-date-range.startDate": "प्रारंभ तारीख़",
39
+ "components.input-date-time-range-to.to": "प्रति",
40
+ "components.input-date-time-range.endDate": "समाप्ति तारीख़",
41
+ "components.input-date-time-range.errorBadInput": "{startLabel} {endLabel} से पहले का होना चाहिए",
42
+ "components.input-date-time-range.startDate": "प्रारंभ तारीख़",
43
+ "components.input-date-time.date": "तारीख़",
44
+ "components.input-date-time.errorMaxDateOnly": "तारीख़ {maxDate} से पहले की होनी चाहिए",
45
+ "components.input-date-time.errorMinDateOnly": "तारीख़ {minDate} के बाद की होनी चाहिए",
46
+ "components.input-date-time.errorOutsideRange": "तारीख़ {minDate} और {maxDate} के बीच होनी चाहिए",
47
+ "components.input-date-time.time": "समय",
48
+ "components.input-date.clear": "साफ़ करें",
49
+ "components.input-date.errorMaxDateOnly": "तारीख़ {maxDate} से पहले की होनी चाहिए",
50
+ "components.input-date.errorMinDateOnly": "तारीख़ {minDate} के बाद की होनी चाहिए",
51
+ "components.input-date.errorOutsideRange": "तारीख़ {minDate} और {maxDate} के बीच होनी चाहिए",
52
+ "components.input-date.openInstructions": "तारीख़ फ़ॉर्मेट {format} का उपयोग करें। लघु-कैलेंडर तक पहुँचने के लिए तीर नीचे या एंटर दबाएँ।",
53
+ "components.input-date.now": "अब",
54
+ "components.input-date.today": "आज",
55
+ "components.input-number.hintInteger": "यह फ़ील्ड केवल पूर्णांक मानों (कोई दशमलव नहीं) को स्वीकार करती है",
56
+ "components.input-number.hintDecimalDuplicate": "इस संख्या में पहले से ही कोई दशमलव है",
57
+ "components.input-number.hintDecimalIncorrectComma": "दशमलव जोड़ने के लिए, अल्पविराम \",\" वर्ण उपयोग करें",
58
+ "components.input-number.hintDecimalIncorrectPeriod": "कोई दशमलव जोड़ने के लिए, पीरियड \".\" वर्ण का उपयोग करें",
59
+ "components.input-search.clear": "खोज साफ़ करें",
60
+ "components.input-search.defaultPlaceholder": "खोजें...",
61
+ "components.input-search.search": "खोजें",
62
+ "components.input-time-range.endTime": "समाप्ति समय",
63
+ "components.input-time-range.errorBadInput": "{startLabel} {endLabel} से पहले का होना चाहिए",
64
+ "components.input-time-range.startTime": "प्रारंभ समय",
65
+ "components.list-item-drag-handle.default": "{name} के लिए आइटम कार्रवाई का क्रम बदलें",
66
+ "components.list-item-drag-handle.keyboard": "आइटम का क्रम बदलें, {size} में से वर्तमान स्थिति {currentPosition} इस आइटम को ले जाने के लिए, ऊपर या नीचे तीर दबाएँ।",
67
+ "components.list-item-tooltip.title": "Keyboard Navigation for Lists:",
68
+ "components.list-item-tooltip.enter-key": "Enter",
69
+ "components.list-item-tooltip.enter-desc": "Activate the focused option.",
70
+ "components.list-item-tooltip.up-down-key": "Up/Down",
71
+ "components.list-item-tooltip.up-down-desc": "Move focus between list items.",
72
+ "components.list-item-tooltip.left-right-key": "Left/Right",
73
+ "components.list-item-tooltip.left-right-desc": "Move focus within current item.",
74
+ "components.list-item-tooltip.page-up-down-key": "Page Up/Down",
75
+ "components.list-item-tooltip.page-up-down-desc": "Move focus 5 items at a time.",
76
+ "components.list-item-drag-handle-tooltip.title": "Keyboard Controls for Reordering:",
77
+ "components.list-item-drag-handle-tooltip.enter-key": "Enter",
78
+ "components.list-item-drag-handle-tooltip.enter-desc": "Toggle keyboard reorder mode.",
79
+ "components.list-item-drag-handle-tooltip.up-down-key": "Up/Down",
80
+ "components.list-item-drag-handle-tooltip.up-down-desc": "Move item up or down in the list.",
81
+ "components.list-item-drag-handle-tooltip.left-right-key": "Left/Right",
82
+ "components.list-item-drag-handle-tooltip.left-right-desc": "Change the nesting level.",
83
+ "components.menu-item-return.return": "पिछले मेनू पर वापस जाएँ।",
84
+ "components.menu-item-return.returnCurrentlyShowing": "पिछले मेनू पर वापस जाएँ। आप {menuTitle} देख रहे हैं।",
85
+ "components.meter-mixin.commaSeperatedAria": "{term1}, {term2}",
86
+ "components.meter-mixin.fraction": "{x}∕{y}",
87
+ "components.meter-mixin.progressIndicator": "प्रगति संकेतक",
88
+ "components.more-less.less": "कम",
89
+ "components.more-less.more": "अधिक",
90
+ "components.overflow-group.moreActions": "अधिक क्रियाएँ",
91
+ "components.selection.action-hint": "यह कार्रवाई निष्पादित करने के लिए कोई आइटम का चयन करें।",
92
+ "components.selection.select-all": "सभी का चयन करें",
93
+ "components.selection.select-all-items": "Select All {count} Items",
94
+ "components.selection.selected": "{count} चयनित",
95
+ "components.switch.visibility": "दृश्यता",
96
+ "components.tabs.next": "आगे स्क्रॉल करें",
97
+ "components.tabs.previous": "पीछे स्क्रॉल करें",
98
+ "templates.primary-secondary.adjustableSplitView": "समायोजन योग्य विभाजन दृश्य",
99
+ "templates.primary-secondary.keyboardHorizontal": "दृश्य पैनल्स का आकार समायोजित करने के लिए तीर बाएँ या दाएँ करें",
100
+ "templates.primary-secondary.keyboardVertical": "दृश्य पैनल्स का आकार समायोजित करने के लिए तीर ऊपर या नीचे करें"
101
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "1.233.6",
3
+ "version": "1.233.9",
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",