@progress/kendo-react-common 11.0.0-develop.2 → 11.0.0-develop.21
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/deep-merge.js +8 -0
- package/deep-merge.mjs +25 -0
- package/dist/cdn/js/kendo-react-common.js +1 -1
- package/hooks/use-immediate-inherit-state.js +9 -0
- package/hooks/use-immediate-inherit-state.mjs +25 -0
- package/index.d.mts +26 -1
- package/index.d.ts +26 -1
- package/index.js +1 -1
- package/index.mjs +196 -189
- package/package.json +2 -2
- package/rowHeightService.js +1 -1
- package/rowHeightService.mjs +12 -7
- package/unstyled/dropdowns.js +1 -1
- package/unstyled/dropdowns.mjs +3 -3
- package/validate-package.js +3 -3
- package/validate-package.mjs +19 -18
- package/watermark/WatermarkOverlay.js +1 -1
- package/watermark/WatermarkOverlay.mjs +11 -34
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-common",
|
|
3
|
-
"version": "11.0.0-develop.
|
|
3
|
+
"version": "11.0.0-develop.21",
|
|
4
4
|
"description": "React Common package delivers common utilities that can be used with the KendoReact UI components. KendoReact Common Utilities package",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"sideEffects": false,
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@progress/kendo-licensing": "^1.
|
|
28
|
+
"@progress/kendo-licensing": "^1.6.0",
|
|
29
29
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
30
30
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
|
|
31
31
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
|
package/rowHeightService.js
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});class
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});class f{constructor(t=0,s){this.total=t,this.offsets=[],this.heights=[];let h=0;for(let e=0;e<t;e++)this.offsets.push(h),h+=s,this.heights.push(s)}height(t){return this.heights[t]}index(t){for(let s=0;s<this.offsets.length;s++){if(t===this.offsets[s])return s;if(t<this.offsets[s])return s-1}return this.total-1}offset(t){return this.offsets[t]}totalHeight(){const t=this.offsets[this.offsets.length-1],s=this.heights[this.heights.length-1];return t+s}update(t,s){let h=this.offsets[t];for(let e=t;e<this.heights.length;e++){this.offsets[e]=h;const i=s[e-t]||this.heights[e];h+=i,this.heights[e]=i}}}exports.RowHeightService=f;
|
package/rowHeightService.mjs
CHANGED
|
@@ -6,14 +6,11 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
class g {
|
|
9
|
-
constructor(t = 0, s
|
|
9
|
+
constructor(t = 0, s) {
|
|
10
10
|
this.total = t, this.offsets = [], this.heights = [];
|
|
11
|
-
let
|
|
12
|
-
for (let
|
|
13
|
-
this.offsets.push(
|
|
14
|
-
const f = h && h[e].expanded && h[e].rowType === "data" ? r : s;
|
|
15
|
-
i += f, this.heights.push(f);
|
|
16
|
-
}
|
|
11
|
+
let e = 0;
|
|
12
|
+
for (let h = 0; h < t; h++)
|
|
13
|
+
this.offsets.push(e), e += s, this.heights.push(s);
|
|
17
14
|
}
|
|
18
15
|
height(t) {
|
|
19
16
|
return this.heights[t];
|
|
@@ -34,6 +31,14 @@ class g {
|
|
|
34
31
|
const t = this.offsets[this.offsets.length - 1], s = this.heights[this.heights.length - 1];
|
|
35
32
|
return t + s;
|
|
36
33
|
}
|
|
34
|
+
update(t, s) {
|
|
35
|
+
let e = this.offsets[t];
|
|
36
|
+
for (let h = t; h < this.heights.length; h++) {
|
|
37
|
+
this.offsets[h] = e;
|
|
38
|
+
const i = s[h - t] || this.heights[h];
|
|
39
|
+
e += i, this.heights[h] = i;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
37
42
|
}
|
|
38
43
|
export {
|
|
39
44
|
g as RowHeightService
|
package/unstyled/dropdowns.js
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("./interfaces/common.js"),e=require("./json-classes.js"),o={clearButton:`${e.base.prefix}-${e.base.clear}-${e.base.value}`,groupStickyHeader:`${e.base.prefix}-${e.containers.list}-${e.containers.group}-${e.states.sticky}-${e.elements.header}`,listHeaderText:`${e.base.prefix}-${e.containers.list}-${e.elements.header}-${e.elements.text}`,ul:`${e.base.prefix}-${e.containers.list}-${e.elements.ul}`,li:{main:`${e.base.prefix}-${e.containers.list}-${e.containers.item}`,selected:`${e.base.prefix}-${e.states.selected}`,focused:`${e.base.prefix}-${e.states.focus}`,first:`${e.base.prefix}-${e.states.first}`,disabled:`${e.base.prefix}-${e.states.disabled}`},groupLi:{list:`${e.base.prefix}-${e.containers.list}-${e.containers.group}-${e.containers.item}`,table:`${e.base.prefix}-${e.elements.table}-${e.containers.group}-${e.containers.row}`},itemText:`${e.base.prefix}-${e.containers.list}-${e.containers.item}-${e.elements.text}`,groupItemText:{list:`${e.base.prefix}-${e.containers.list}-${e.containers.item}-${e.elements.text}`,table:`${e.base.prefix}-${e.elements.table}-${e.elements.th}`},itemGroupLabel:`${e.base.prefix}-${e.containers.list}-${e.containers.item}-${e.containers.group}-${e.elements.label}`,noData:`${e.base.prefix}-${e.base.nodata}`,heightContainer:`${e.base.prefix}-${e.dimensions.height}-${e.containers.container}`,optionLabel:{main:`${e.base.prefix}-${e.containers.list}-${e.containers.optionLabel}`,selected:`${e.base.prefix}-${e.states.selected}`},inputInner:`${e.inputPrefix}-${e.inputs.inner}`,inputIcon:`${e.base.prefix}-${e.inputs.input}-${e.icon.prefix}`,searchbox:`${e.base.prefix}-${e.components.searchbox}`,listFilter:`${e.base.prefix}-${e.containers.list}-${e.base.filter}`},h={clearButton:r.getClassByName(o,"clearButton"),groupStickyHeader:r.getClassByName(o,"groupStickyHeader"),listHeaderText:r.getClassByName(o,"listHeaderText"),ul:r.getClassByName(o,"ul"),li:n=>{const{c:a=o,selected:t,focused:i,first:$,disabled:c}=n,p=a.li;return{[p.main]:!0,[p.selected]:t,[p.focused]:i,[p.first]:$,[p.disabled]:c}},groupLi:n=>{const{c:a=o,isMultiColumn:t}=n,i=a.groupLi;return{[i.table]:t,[i.list]:!t}},itemText:r.getClassByName(o,"itemText"),groupItemText:n=>{const{c:a=o,isMultiColumn:t}=n,i=a.groupItemText;return{[i.table]:t,[i.list]:!t}},itemGroupLabel:r.getClassByName(o,"itemGroupLabel"),noData:r.getClassByName(o,"noData"),heightContainer:r.getClassByName(o,"heightContainer"),optionLabel:n=>{const{c:a=o,selected:t}=n,i=a.optionLabel;return{[i.main]:!0,[i.selected]:t}},inputInner:r.getClassByName(o,"inputInner"),inputIcon:r.getClassByName(o,"inputIcon"),searchbox:r.getClassByName(o,"searchbox"),listFilter:r.getClassByName(o,"listFilter")},b={wrapper:{main:`${e.base.prefix}-${e.states.adaptive}-${e.components.actionsheet}`,fullscreen:`${e.base.prefix}-${e.components.actionsheet}-${e.states.fullscreen}`,bottom:`${e.base.prefix}-${e.components.actionsheet}-${e.states.bottom}`},header:`${e.base.prefix}-${e.elements.text}-${e.cssUtils.center}`,titleBar:{main:`${e.base.prefix}-${e.components.actionsheet}-${e.containers.titlebar}-${e.containers.group}`,position:`${e.base.prefix}-${e.cssUtils.hbox}`},title:`${e.base.prefix}-${e.components.actionsheet}-${e.elements.title}`,subtitle:{main:`${e.base.prefix}-${e.components.actionsheet}-${e.elements.subtitle}`,textCenter:`${e.base.prefix}-${e.elements.text}-${e.cssUtils.center}`},actions:`${e.base.prefix}-${e.components.actionsheet}-${e.containers.actions}`,titleBarGroup:{main:`${e.base.prefix}-${e.components.actionsheet}-${e.containers.titlebar}-${e.containers.group}`,filter:`${e.base.prefix}-${e.components.actionsheet}-${e.base.filter}`}},y={wrapper:n=>{const{c:a=b,isFullScreen:t}=n,i=a.wrapper;return{[i.main]:!0,[i.fullscreen]:t,[i.bottom]:!t}},header:r.getClassByName(b,"header"),titleBar:n=>{const{c:a=b}=n,t=a.titleBar;return{[t.main]:!0,[t.position]:!0}},title:r.getClassByName(b,"title"),subtitle:n=>{const{c:a=b}=n,t=a.subtitle;return{[t.main]:!0,[t.textCenter]:!0}},actions:r.getClassByName(b,"actions"),titleBarGroup:n=>{const{c:a=b}=n,t=a.titleBarGroup;return{[t.main]:!0,[t.filter]:!0}}},u={wrapper:{main:e.dropDownListPrefix,picker:e.pickerPrefix,size:{small:`${e.pickerPrefix}-${e.sizeMap.small}`,medium:`${e.pickerPrefix}-${e.sizeMap.medium}`,large:`${e.pickerPrefix}-${e.sizeMap.large}`},fillMode:{solid:`${e.pickerPrefix}-${e.fillModeMap.solid}`,outline:`${e.pickerPrefix}-${e.fillModeMap.outline}`,flat:`${e.pickerPrefix}-${e.fillModeMap.flat}`,link:`${e.pickerPrefix}-${e.fillModeMap.link}`,clear:`${e.pickerPrefix}-${e.fillModeMap.clear}`},rounded:{small:`${e.base.prefix}-${e.base.rounded}-${e.roundedMap.small}`,medium:`${e.base.prefix}-${e.base.rounded}-${e.roundedMap.medium}`,large:`${e.base.prefix}-${e.base.rounded}-${e.roundedMap.large}`},disabled:`${e.base.prefix}-${e.states.disabled}`,focused:`${e.base.prefix}-${e.states.focus}`,invalid:`${e.base.prefix}-${e.states.invalid}`,loading:`${e.base.prefix}-${e.states.loading}`,required:`${e.base.prefix}-${e.states.required}`},loadingIcon:`${e.inputPrefix}-${e.states.loading}-${e.icon.prefix}`,inputButton:`${e.inputPrefix}-${e.elements.button}`,listContainer:{main:`${e.base.prefix}-${e.containers.list}-${e.containers.container}`,popup:`${e.base.prefix}-${e.components.dropdownlist}-${e.containers.popup}`},inputInner:`${e.inputPrefix}-${e.inputs.inner}`,inputText:`${e.inputPrefix}-${e.base.value}-${e.elements.text}`,listHeader:`${e.base.prefix}-${e.containers.list}-${e.elements.header}`,list:{main:`${e.base.prefix}-${e.containers.list}`,size:{small:`${e.base.prefix}-${e.containers.list}-${e.sizeMap.small}`,medium:`${e.base.prefix}-${e.containers.list}-${e.sizeMap.medium}`,large:`${e.base.prefix}-${e.containers.list}-${e.sizeMap.large}`},virtual:`${e.base.prefix}-${e.base.virtual}-${e.containers.list}`},listContent:`${e.base.prefix}-${e.containers.list}-${e.containers.content}`,listFooter:`${e.base.prefix}-${e.containers.list}-${e.elements.footer}`},P={wrapper:n=>{const{c:a=u,size:t,rounded:i,fillMode:$,focused:c,disabled:p,invalid:m,loading:f,required:s}=n,l=a.wrapper;return{[l.main]:!0,[l.picker]:!0,[l.size[t]]:l.size[t],[`${e.pickerPrefix}-${t}`]:t&&!l.size[t],[l.fillMode[$]]:l.fillMode[$],[l.rounded[i]]:l.rounded[i],[`${e.base.prefix}-${e.base.rounded}-${i}`]:i&&!l.rounded[i],[l.focused]:c,[l.disabled]:p,[l.loading]:f,[l.invalid]:m,[l.required]:s}},loadingIcon:r.getClassByName(u,"loadingIcon"),inputButton:r.getClassByName(u,"inputButton"),listContainer:n=>{const{c:a=u}=n,t=a.listContainer;return{[t.main]:!0,[t.popup]:!0}},inputInner:r.getClassByName(u,"inputInner"),inputText:r.getClassByName(u,"inputText"),listHeader:r.getClassByName(u,"listHeader"),list:n=>{const{c:a=u,size:t,virtual:i}=n,$=a.list;return{[$.main]:!0,[$.size[t]]:$.size[t],[`${e.base.prefix}-${e.containers.list}-${t}`]:t&&!$.size[t],[$.virtual]:i}},listContent:r.getClassByName(u,"listContent"),listFooter:r.getClassByName(u,"listFooter")},d={wrapper:{main:e.comboBoxPrefix,input:e.inputPrefix,size:{small:`${e.inputPrefix}-${e.sizeMap.small}`,medium:`${e.inputPrefix}-${e.sizeMap.medium}`,large:`${e.inputPrefix}-${e.sizeMap.large}`},fillMode:{solid:`${e.inputPrefix}-${e.fillModeMap.solid}`,outline:`${e.inputPrefix}-${e.fillModeMap.outline}`,flat:`${e.inputPrefix}-${e.fillModeMap.flat}`,link:`${e.inputPrefix}-${e.fillModeMap.link}`,clear:`${e.inputPrefix}-${e.fillModeMap.clear}`},rounded:{small:`${e.base.prefix}-${e.base.rounded}-${e.roundedMap.small}`,medium:`${e.base.prefix}-${e.base.rounded}-${e.roundedMap.medium}`,large:`${e.base.prefix}-${e.base.rounded}-${e.roundedMap.large}`},disabled:`${e.base.prefix}-${e.states.disabled}`,invalid:`${e.base.prefix}-${e.states.invalid}`,loading:`${e.base.prefix}-${e.states.loading}`,required:`${e.base.prefix}-${e.states.required}`},loadingIcon:`${e.inputPrefix}-${e.states.loading}-${e.icon.prefix}`,inputButton:`${e.inputPrefix}-${e.elements.button}`,listContainer:{main:`${e.base.prefix}-${e.containers.list}-${e.containers.container}`,popup:`${e.base.prefix}-${e.components.combobox}-${e.containers.popup}`},listHeader:`${e.base.prefix}-${e.elements.table}-${e.elements.header}`,list:{list:`${e.base.prefix}-${e.containers.list}`,table:`${e.base.prefix}-${e.base.data}-${e.elements.table}`,size:{prefix:`${e.base.prefix}-${e.containers.list}-`,small:`${e.base.prefix}-${e.containers.list}-${e.sizeMap.small}`,medium:`${e.base.prefix}-${e.containers.list}-${e.sizeMap.medium}`,large:`${e.base.prefix}-${e.containers.list}-${e.sizeMap.large}`},tableSize:{prefix:`${e.base.prefix}-${e.elements.table}-`,small:`${e.base.prefix}-${e.elements.table}-${e.sizeMap.small}`,medium:`${e.base.prefix}-${e.elements.table}-${e.sizeMap.medium}`,large:`${e.base.prefix}-${e.elements.table}-${e.sizeMap.large}`},virtual:`${e.base.prefix}-${e.base.virtual}-${e.containers.list}`},listContent:{main:`${e.base.prefix}-${e.containers.list}-${e.containers.content}`,scroller:`${e.base.prefix}-${e.containers.list}-${e.base.scroller}`},listFooter:`${e.base.prefix}-${e.containers.list}-${e.elements.footer}`},N={wrapper:n=>{var l,x;const{c:a=d,size:t,rounded:i,fillMode:$,disabled:c,invalid:p,loading:m,required:f}=n,s=a.wrapper;return{[s==null?void 0:s.main]:!0,[s==null?void 0:s.input]:!0,[s==null?void 0:s.size[t]]:s==null?void 0:s.size[t],[`${e.pickerPrefix}-${t}`]:t&&!(s!=null&&s.size[t]),[s==null?void 0:s.fillMode[$]]:s==null?void 0:s.fillMode[$],[s==null?void 0:s.rounded[i]]:s==null?void 0:s.rounded[i],[`${(l=e.base)==null?void 0:l.prefix}-${(x=e.base)==null?void 0:x.rounded}-${i}`]:i&&!(s!=null&&s.rounded[i]),[s==null?void 0:s.disabled]:c,[s==null?void 0:s.loading]:m,[s==null?void 0:s.invalid]:p,[s==null?void 0:s.required]:f}},loadingIcon:r.getClassByName(d,"loadingIcon"),inputButton:r.getClassByName(d,"inputButton"),listContainer:n=>{const{c:a=d,popup:t}=n,i=a.listContainer;return{[i==null?void 0:i.main]:!0,[i==null?void 0:i.popup]:t}},listHeader:r.getClassByName(d,"listHeader"),list:n=>{var p,m,f,s,l,x,g,M,B,C,z;const{c:a=d,size:t,tableSize:i,virtual:$,list:c}=n;return{[(p=a.list)==null?void 0:p.list]:!c,[(m=a.list)==null?void 0:m.table]:c,[(f=a.list)==null?void 0:f.size[t]]:!c&&((s=a.list)==null?void 0:s.size[t]),[`${(l=a.list)==null?void 0:l.size.prefix}${t}`]:!c&&t&&!((x=a.list)!=null&&x.size[t]),[(g=a.list)==null?void 0:g.tableSize[i]]:c&&((M=a.list)==null?void 0:M.tableSize[i]),[`${(B=a.list)==null?void 0:B.tableSize.prefix}${i}`]:c&&i&&!((C=a.list)!=null&&C.tableSize[i]),[(z=a.list)==null?void 0:z.virtual]:$}},listContent:n=>{const{c:a=d,virtual:t}=n,i=a.listContent;return{[i==null?void 0:i.main]:!0,[i==null?void 0:i.scroller]:!t}},listFooter:r.getClassByName(d,"listFooter")};exports.uComboBox=N;exports.uDropDownList=P;exports.uDropDownsActionSheet=y;exports.uDropDownsBase=h;
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("./interfaces/common.js"),e=require("./json-classes.js"),o={clearButton:`${e.base.prefix}-${e.base.clear}-${e.base.value}`,groupStickyHeader:`${e.base.prefix}-${e.containers.list}-${e.containers.group}-${e.states.sticky}-${e.elements.header}`,listHeaderText:`${e.base.prefix}-${e.containers.list}-${e.elements.header}-${e.elements.text}`,ul:`${e.base.prefix}-${e.containers.list}-${e.elements.ul}`,li:{main:`${e.base.prefix}-${e.containers.list}-${e.containers.item}`,selected:`${e.base.prefix}-${e.states.selected}`,focused:`${e.base.prefix}-${e.states.focus}`,first:`${e.base.prefix}-${e.states.first}`,disabled:`${e.base.prefix}-${e.states.disabled}`},groupLi:{list:`${e.base.prefix}-${e.containers.list}-${e.containers.group}-${e.containers.item}`,table:`${e.base.prefix}-${e.elements.table}-${e.containers.group}-${e.containers.row}`},itemText:`${e.base.prefix}-${e.containers.list}-${e.containers.item}-${e.elements.text}`,groupItemText:{list:`${e.base.prefix}-${e.containers.list}-${e.containers.item}-${e.elements.text}`,table:`${e.base.prefix}-${e.elements.table}-${e.elements.th}`},itemGroupLabel:`${e.base.prefix}-${e.containers.list}-${e.containers.item}-${e.containers.group}-${e.elements.label}`,noData:`${e.base.prefix}-${e.base.nodata}`,heightContainer:`${e.base.prefix}-${e.dimensions.height}-${e.containers.container}`,optionLabel:{main:`${e.base.prefix}-${e.containers.list}-${e.containers.optionLabel}`,selected:`${e.base.prefix}-${e.states.selected}`},inputInner:`${e.inputPrefix}-${e.inputs.inner}`,inputIcon:`${e.base.prefix}-${e.inputs.input}-${e.icon.prefix}`,searchbox:`${e.base.prefix}-${e.components.searchbox}`,listFilter:`${e.base.prefix}-${e.containers.list}-${e.base.filter}`},h={clearButton:r.getClassByName(o,"clearButton"),groupStickyHeader:r.getClassByName(o,"groupStickyHeader"),listHeaderText:r.getClassByName(o,"listHeaderText"),ul:r.getClassByName(o,"ul"),li:n=>{const{c:a=o,selected:t,focused:i,first:$,disabled:p}=n,c=a.li;return{[c.main]:!0,[c.selected]:t,[c.focused]:i,[c.first]:$,[c.disabled]:p}},groupLi:n=>{const{c:a=o,isMultiColumn:t}=n,i=a.groupLi;return{[i.table]:t,[i.list]:!t}},itemText:r.getClassByName(o,"itemText"),groupItemText:n=>{const{c:a=o,isMultiColumn:t}=n,i=a.groupItemText;return{[i.table]:t,[i.list]:!t}},itemGroupLabel:r.getClassByName(o,"itemGroupLabel"),noData:r.getClassByName(o,"noData"),heightContainer:r.getClassByName(o,"heightContainer"),optionLabel:n=>{const{c:a=o,selected:t}=n,i=a.optionLabel;return{[i.main]:!0,[i.selected]:t}},inputInner:r.getClassByName(o,"inputInner"),inputIcon:r.getClassByName(o,"inputIcon"),searchbox:r.getClassByName(o,"searchbox"),listFilter:r.getClassByName(o,"listFilter")},b={wrapper:{main:`${e.base.prefix}-${e.states.adaptive}-${e.components.actionsheet}`,fullscreen:`${e.base.prefix}-${e.components.actionsheet}-${e.states.fullscreen}`,bottom:`${e.base.prefix}-${e.components.actionsheet}-${e.states.bottom}`},header:`${e.base.prefix}-${e.elements.text}-${e.cssUtils.center}`,titleBar:{main:`${e.base.prefix}-${e.components.actionsheet}-${e.containers.titlebar}-${e.containers.group}`,position:`${e.base.prefix}-${e.cssUtils.hbox}`},title:`${e.base.prefix}-${e.components.actionsheet}-${e.elements.title}`,subtitle:{main:`${e.base.prefix}-${e.components.actionsheet}-${e.elements.subtitle}`,textCenter:`${e.base.prefix}-${e.elements.text}-${e.cssUtils.center}`},actions:`${e.base.prefix}-${e.components.actionsheet}-${e.containers.actions}`,titleBarGroup:{main:`${e.base.prefix}-${e.components.actionsheet}-${e.containers.titlebar}-${e.containers.group}`,filter:`${e.base.prefix}-${e.components.actionsheet}-${e.base.filter}`}},y={wrapper:n=>{const{c:a=b,isFullScreen:t}=n,i=a.wrapper;return{[i.main]:!0,[i.fullscreen]:t,[i.bottom]:!t}},header:r.getClassByName(b,"header"),titleBar:n=>{const{c:a=b}=n,t=a.titleBar;return{[t.main]:!0,[t.position]:!0}},title:r.getClassByName(b,"title"),subtitle:n=>{const{c:a=b}=n,t=a.subtitle;return{[t.main]:!0,[t.textCenter]:!0}},actions:r.getClassByName(b,"actions"),titleBarGroup:n=>{const{c:a=b}=n,t=a.titleBarGroup;return{[t.main]:!0,[t.filter]:!0}}},u={wrapper:{main:e.dropDownListPrefix,picker:e.pickerPrefix,size:{small:`${e.pickerPrefix}-${e.sizeMap.small}`,medium:`${e.pickerPrefix}-${e.sizeMap.medium}`,large:`${e.pickerPrefix}-${e.sizeMap.large}`},fillMode:{solid:`${e.pickerPrefix}-${e.fillModeMap.solid}`,outline:`${e.pickerPrefix}-${e.fillModeMap.outline}`,flat:`${e.pickerPrefix}-${e.fillModeMap.flat}`,link:`${e.pickerPrefix}-${e.fillModeMap.link}`,clear:`${e.pickerPrefix}-${e.fillModeMap.clear}`},rounded:{small:`${e.base.prefix}-${e.base.rounded}-${e.roundedMap.small}`,medium:`${e.base.prefix}-${e.base.rounded}-${e.roundedMap.medium}`,large:`${e.base.prefix}-${e.base.rounded}-${e.roundedMap.large}`},disabled:`${e.base.prefix}-${e.states.disabled}`,focused:`${e.base.prefix}-${e.states.focus}`,invalid:`${e.base.prefix}-${e.states.invalid}`,loading:`${e.base.prefix}-${e.states.loading}`,required:`${e.base.prefix}-${e.states.required}`},loadingIcon:`${e.inputPrefix}-${e.states.loading}-${e.icon.prefix}`,inputButton:`${e.inputPrefix}-${e.elements.button}`,listContainer:{main:`${e.base.prefix}-${e.containers.list}-${e.containers.container}`,popup:`${e.base.prefix}-${e.components.dropdownlist}-${e.containers.popup}`},inputInner:`${e.inputPrefix}-${e.inputs.inner}`,inputText:`${e.inputPrefix}-${e.base.value}-${e.elements.text}`,listHeader:`${e.base.prefix}-${e.containers.list}-${e.elements.header}`,list:{main:`${e.base.prefix}-${e.containers.list}`,size:{small:`${e.base.prefix}-${e.containers.list}-${e.sizeMap.small}`,medium:`${e.base.prefix}-${e.containers.list}-${e.sizeMap.medium}`,large:`${e.base.prefix}-${e.containers.list}-${e.sizeMap.large}`},virtual:`${e.base.prefix}-${e.base.virtual}-${e.containers.list}`},listContent:`${e.base.prefix}-${e.containers.list}-${e.containers.content}`,listFooter:`${e.base.prefix}-${e.containers.list}-${e.elements.footer}`},P={wrapper:n=>{const{c:a=u,size:t,rounded:i,fillMode:$,focused:p,disabled:c,invalid:m,loading:f,required:s}=n,l=a.wrapper;return{[l.main]:!0,[l.picker]:!0,[l.size[t]]:l.size[t],[`${e.pickerPrefix}-${t}`]:t&&!l.size[t],[l.fillMode[$]]:l.fillMode[$],[l.rounded[i]]:l.rounded[i],[`${e.base.prefix}-${e.base.rounded}-${i}`]:i&&!l.rounded[i],[l.focused]:p,[l.disabled]:c,[l.loading]:f,[l.invalid]:m,[l.required]:s}},loadingIcon:r.getClassByName(u,"loadingIcon"),inputButton:r.getClassByName(u,"inputButton"),listContainer:n=>{const{c:a=u,popup:t}=n,i=a.listContainer;return{[i.main]:!0,[i.popup]:t}},inputInner:r.getClassByName(u,"inputInner"),inputText:r.getClassByName(u,"inputText"),listHeader:r.getClassByName(u,"listHeader"),list:n=>{const{c:a=u,size:t,virtual:i}=n,$=a.list;return{[$.main]:!0,[$.size[t]]:$.size[t],[`${e.base.prefix}-${e.containers.list}-${t}`]:t&&!$.size[t],[$.virtual]:i}},listContent:r.getClassByName(u,"listContent"),listFooter:r.getClassByName(u,"listFooter")},d={wrapper:{main:e.comboBoxPrefix,input:e.inputPrefix,size:{small:`${e.inputPrefix}-${e.sizeMap.small}`,medium:`${e.inputPrefix}-${e.sizeMap.medium}`,large:`${e.inputPrefix}-${e.sizeMap.large}`},fillMode:{solid:`${e.inputPrefix}-${e.fillModeMap.solid}`,outline:`${e.inputPrefix}-${e.fillModeMap.outline}`,flat:`${e.inputPrefix}-${e.fillModeMap.flat}`,link:`${e.inputPrefix}-${e.fillModeMap.link}`,clear:`${e.inputPrefix}-${e.fillModeMap.clear}`},rounded:{small:`${e.base.prefix}-${e.base.rounded}-${e.roundedMap.small}`,medium:`${e.base.prefix}-${e.base.rounded}-${e.roundedMap.medium}`,large:`${e.base.prefix}-${e.base.rounded}-${e.roundedMap.large}`},disabled:`${e.base.prefix}-${e.states.disabled}`,invalid:`${e.base.prefix}-${e.states.invalid}`,loading:`${e.base.prefix}-${e.states.loading}`,required:`${e.base.prefix}-${e.states.required}`},loadingIcon:`${e.inputPrefix}-${e.states.loading}-${e.icon.prefix}`,inputButton:`${e.inputPrefix}-${e.elements.button}`,listContainer:{main:`${e.base.prefix}-${e.containers.list}-${e.containers.container}`,popup:`${e.base.prefix}-${e.components.combobox}-${e.containers.popup}`},listHeader:`${e.base.prefix}-${e.elements.table}-${e.elements.header}`,list:{list:`${e.base.prefix}-${e.containers.list}`,table:`${e.base.prefix}-${e.base.data}-${e.elements.table}`,size:{prefix:`${e.base.prefix}-${e.containers.list}-`,small:`${e.base.prefix}-${e.containers.list}-${e.sizeMap.small}`,medium:`${e.base.prefix}-${e.containers.list}-${e.sizeMap.medium}`,large:`${e.base.prefix}-${e.containers.list}-${e.sizeMap.large}`},tableSize:{prefix:`${e.base.prefix}-${e.elements.table}-`,small:`${e.base.prefix}-${e.elements.table}-${e.sizeMap.small}`,medium:`${e.base.prefix}-${e.elements.table}-${e.sizeMap.medium}`,large:`${e.base.prefix}-${e.elements.table}-${e.sizeMap.large}`},virtual:`${e.base.prefix}-${e.base.virtual}-${e.containers.list}`},listContent:{main:`${e.base.prefix}-${e.containers.list}-${e.containers.content}`,scroller:`${e.base.prefix}-${e.containers.list}-${e.base.scroller}`},listFooter:`${e.base.prefix}-${e.containers.list}-${e.elements.footer}`},N={wrapper:n=>{var l,x;const{c:a=d,size:t,rounded:i,fillMode:$,disabled:p,invalid:c,loading:m,required:f}=n,s=a.wrapper;return{[s==null?void 0:s.main]:!0,[s==null?void 0:s.input]:!0,[s==null?void 0:s.size[t]]:s==null?void 0:s.size[t],[`${e.pickerPrefix}-${t}`]:t&&!(s!=null&&s.size[t]),[s==null?void 0:s.fillMode[$]]:s==null?void 0:s.fillMode[$],[s==null?void 0:s.rounded[i]]:s==null?void 0:s.rounded[i],[`${(l=e.base)==null?void 0:l.prefix}-${(x=e.base)==null?void 0:x.rounded}-${i}`]:i&&!(s!=null&&s.rounded[i]),[s==null?void 0:s.disabled]:p,[s==null?void 0:s.loading]:m,[s==null?void 0:s.invalid]:c,[s==null?void 0:s.required]:f}},loadingIcon:r.getClassByName(d,"loadingIcon"),inputButton:r.getClassByName(d,"inputButton"),listContainer:n=>{const{c:a=d,popup:t}=n,i=a.listContainer;return{[i==null?void 0:i.main]:!0,[i==null?void 0:i.popup]:t}},listHeader:r.getClassByName(d,"listHeader"),list:n=>{var c,m,f,s,l,x,g,M,B,C,z;const{c:a=d,size:t,tableSize:i,virtual:$,list:p}=n;return{[(c=a.list)==null?void 0:c.list]:!p,[(m=a.list)==null?void 0:m.table]:p,[(f=a.list)==null?void 0:f.size[t]]:!p&&((s=a.list)==null?void 0:s.size[t]),[`${(l=a.list)==null?void 0:l.size.prefix}${t}`]:!p&&t&&!((x=a.list)!=null&&x.size[t]),[(g=a.list)==null?void 0:g.tableSize[i]]:p&&((M=a.list)==null?void 0:M.tableSize[i]),[`${(B=a.list)==null?void 0:B.tableSize.prefix}${i}`]:p&&i&&!((C=a.list)!=null&&C.tableSize[i]),[(z=a.list)==null?void 0:z.virtual]:$}},listContent:n=>{const{c:a=d,virtual:t}=n,i=a.listContent;return{[i==null?void 0:i.main]:!0,[i==null?void 0:i.scroller]:!t}},listFooter:r.getClassByName(d,"listFooter")};exports.uComboBox=N;exports.uDropDownList=P;exports.uDropDownsActionSheet=y;exports.uDropDownsBase=h;
|
package/unstyled/dropdowns.mjs
CHANGED
|
@@ -215,10 +215,10 @@ const d = {
|
|
|
215
215
|
loadingIcon: s(h, "loadingIcon"),
|
|
216
216
|
inputButton: s(h, "inputButton"),
|
|
217
217
|
listContainer: (n) => {
|
|
218
|
-
const { c: $ = h } = n,
|
|
218
|
+
const { c: $ = h, popup: t } = n, l = $.listContainer;
|
|
219
219
|
return {
|
|
220
|
-
[
|
|
221
|
-
[
|
|
220
|
+
[l.main]: !0,
|
|
221
|
+
[l.popup]: t
|
|
222
222
|
};
|
|
223
223
|
},
|
|
224
224
|
inputInner: s(h, "inputInner"),
|
package/validate-package.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("@progress/kendo-licensing"),i=require("./canUseDOM.js"),m=["telerik.com","progress.com","stackblitz.io","csb.app"],u="https://www.telerik.com/kendo-react-ui/components/free?utm_medium=product&utm_source=console&utm_campaign=dt_kendoreact_freemium",t=new Map,l=()=>{const s=Array.from(t,([e,n])=>`- ${e}: ${Array.from(n).join(", ")||"all"}`).join(`
|
|
9
9
|
`);console.group("[WARN][Telerik and Kendo UI Licensing] KendoReact"),console.warn(`License check was triggered by these premium KendoReact components/features
|
|
10
|
-
${
|
|
11
|
-
See the full list of free and premium components here: ${u}`),console.groupEnd(),t.clear()},p=(
|
|
10
|
+
${s}
|
|
11
|
+
See the full list of free and premium components here: ${u}`),console.groupEnd(),t.clear()},p=(s,e)=>{const n=r.validatePackage(s),a=m.some(c=>{var o;return(o=globalThis.document)==null?void 0:o.location.hostname.endsWith(c)});if(!n&&i.canUseDOM&&e)if(t.size===0&&setTimeout(l,1e3),t.has(e.component)){const c=t.get(e.component)||[];t.set(e.component,new Set([...e.features||[],...c]))}else t.set(e.component,e.features||[]);return n||a},g=s=>r.getLicenseStatus(s).isLicenseValid;exports.hasValidLicense=g;exports.validatePackage=p;
|
package/validate-package.mjs
CHANGED
|
@@ -5,31 +5,32 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { validatePackage as m } from "@progress/kendo-licensing";
|
|
9
|
-
import { canUseDOM as
|
|
10
|
-
const
|
|
11
|
-
const
|
|
8
|
+
import { validatePackage as a, getLicenseStatus as m } from "@progress/kendo-licensing";
|
|
9
|
+
import { canUseDOM as i } from "./canUseDOM.mjs";
|
|
10
|
+
const u = ["telerik.com", "progress.com", "stackblitz.io", "csb.app"], p = "https://www.telerik.com/kendo-react-ui/components/free?utm_medium=product&utm_source=console&utm_campaign=dt_kendoreact_freemium", t = /* @__PURE__ */ new Map(), l = () => {
|
|
11
|
+
const s = Array.from(t, ([e, o]) => `- ${e}: ${Array.from(o).join(", ") || "all"}`).join(`
|
|
12
12
|
`);
|
|
13
13
|
console.group("[WARN][Telerik and Kendo UI Licensing] KendoReact"), console.warn(
|
|
14
14
|
`License check was triggered by these premium KendoReact components/features
|
|
15
|
-
${
|
|
15
|
+
${s}
|
|
16
16
|
See the full list of free and premium components here: ${p}`
|
|
17
|
-
), console.groupEnd(),
|
|
18
|
-
},
|
|
19
|
-
const
|
|
20
|
-
(
|
|
17
|
+
), console.groupEnd(), t.clear();
|
|
18
|
+
}, d = (s, e) => {
|
|
19
|
+
const o = a(s), r = u.some(
|
|
20
|
+
(c) => {
|
|
21
21
|
var n;
|
|
22
|
-
return (n = globalThis.document) == null ? void 0 : n.location.hostname.endsWith(
|
|
22
|
+
return (n = globalThis.document) == null ? void 0 : n.location.hostname.endsWith(c);
|
|
23
23
|
}
|
|
24
24
|
);
|
|
25
|
-
if (!
|
|
26
|
-
if (
|
|
27
|
-
const
|
|
28
|
-
|
|
25
|
+
if (!o && i && e)
|
|
26
|
+
if (t.size === 0 && setTimeout(l, 1e3), t.has(e.component)) {
|
|
27
|
+
const c = t.get(e.component) || [];
|
|
28
|
+
t.set(e.component, /* @__PURE__ */ new Set([...e.features || [], ...c]));
|
|
29
29
|
} else
|
|
30
|
-
|
|
31
|
-
return
|
|
32
|
-
};
|
|
30
|
+
t.set(e.component, e.features || []);
|
|
31
|
+
return o || r;
|
|
32
|
+
}, k = (s) => m(s).isLicenseValid;
|
|
33
33
|
export {
|
|
34
|
-
|
|
34
|
+
k as hasValidLicense,
|
|
35
|
+
d as validatePackage
|
|
35
36
|
};
|
|
@@ -6,4 +6,4 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
"use client";
|
|
9
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const f=require("react"),v=require("react-dom");function i(n){const o=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(n){for(const t in n)if(t!=="default"){const r=Object.getOwnPropertyDescriptor(n,t);Object.defineProperty(o,t,r.get?r:{enumerable:!0,get:()=>n[t]})}}return o.default=n,Object.freeze(o)}const e=i(f),a=i(v),s="https://www.telerik.com/kendo-react-ui/components/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-banner";let A=!1;const c=()=>{const[n,o]=e.useState(!0),[t,r]=e.useState(!1);e.useEffect(()=>{A||(r(!0),A=!0)},[]);const l=()=>{o(!1)},g=e.createElement("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",position:"fixed",top:"16px",right:"16px",padding:"12px",borderRadius:"4px",boxShadow:"0px 4px 5px 0px rgba(0, 0, 0, 0.04), 0px 2px 4px 0px rgba(0, 0, 0, 0.03)",fontSize:"14px",fontWeight:400,lineHeight:"20px",backgroundColor:"#FFC000",color:"#1E1E1E",zIndex:2e3}},e.createElement("span",{style:{display:"flex",alignSelf:"center",marginRight:"8px"}},e.createElement("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none"},e.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 1L0 15H16L8 1ZM7 6V11H9V6H7ZM7 14V12H9V14H7Z",fill:"#1E1E1E"}))),e.createElement("span",null,"No valid license found for KendoReact. Learn how to activate your license."),e.createElement("div",{style:{display:"flex",alignItems:"center",marginLeft:"24px"}},e.createElement("a",{href:s,style:{marginRight:"8px",display:"flex"}},e.createElement("button",{title:"Learn More",style:{display:"inline-flex",position:"relative",border:"none",borderRadius:"4px",padding:"5px",backgroundColor:"transparent",transition:"color 0.2s ease-in-out",outline:"none",cursor:"pointer"}},e.createElement("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none"},e.createElement("path",{d:"M15 8C15 11.8656 11.8656 15 8 15C4.13437 15 1 11.8656 1 8C1 4.13437 4.13437 1 8 1C11.8656 1 15 4.13437 15 8ZM14 8C14 4.6875 11.3125 2 8 2C4.6875 2 2 4.6875 2 8C2 11.3125 4.6875 14 8 14C11.3125 14 14 11.3125 14 8ZM11 6C11 7.4125 10.2687 8.05937 9.73125 8.53125C9.25937 8.94688 9 9.17813 9 10H7C7 8.275 7.84688 7.525 8.40938 7.03125C8.84062 6.65312 9 6.50938 9 6C9 5.45 8.55 5 8 5C7.45 5 7 5.45 7 6H5C5 4.34375 6.34375 3 8 3C9.65625 3 11 4.34375 11 6ZM9 13V11H7V13H9Z",fill:"#1E1E1E"})))),e.createElement("button",{title:"Close",style:{display:"inline-flex",position:"relative",border:"none",borderRadius:"4px",padding:"5px",backgroundColor:"transparent",transition:"color 0.2s ease-in-out",outline:"none",cursor:"pointer"},onClick:l},e.createElement("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none"},e.createElement("path",{d:"M13 4.41562L9.41563 8L13 11.5844L11.5844 13L8 9.41563L4.41562 13L3 11.5844L6.58437 8L3 4.41562L4.41562 3L8 6.58437L11.5844 3L13 4.41562Z",fill:"#1E1E1E"})))));return e.createElement(e.Fragment,null,e.createElement("div",{style:{position:"absolute",width:"100%",height:"100%",top:0,left:0,right:0,bottom:0,opacity:.12,zIndex:101,pointerEvents:"none",backgroundImage:"url('data:image/png;base64,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')"}}),t&&n&&a.createPortal(g,document.body))};exports.WatermarkOverlay=c;
|
|
9
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const i=require("react"),l=require("react-dom");function f(n){const o=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(n){for(const t in n)if(t!=="default"){const r=Object.getOwnPropertyDescriptor(n,t);Object.defineProperty(o,t,r.get?r:{enumerable:!0,get:()=>n[t]})}}return o.default=n,Object.freeze(o)}const e=f(i),s=f(l),P="https://www.telerik.com/kendo-react-ui/components/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-banner";let A=!1;const c=()=>{const[n,o]=e.useState(!0),[t,r]=e.useState(!1);e.useEffect(()=>{A||(r(!0),A=!0)},[]);const g=()=>{o(!1)},v=e.createElement("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",position:"fixed",top:"16px",right:"16px",padding:"12px",borderRadius:"4px",boxShadow:"0px 4px 5px 0px rgba(0, 0, 0, 0.04), 0px 2px 4px 0px rgba(0, 0, 0, 0.03)",fontSize:"14px",fontWeight:400,lineHeight:"20px",backgroundColor:"#FFC000",color:"#1E1E1E",zIndex:2e3}},e.createElement("span",{style:{display:"flex",alignSelf:"center",marginRight:"8px"}},e.createElement("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none"},e.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 1L0 15H16L8 1ZM7 6V11H9V6H7ZM7 14V12H9V14H7Z",fill:"#1E1E1E"}))),e.createElement("span",null,"We couldn't verify your ",e.createElement("a",{href:P},"license key")," for KendoReact. Please see the browser console for details and resolution steps."),e.createElement("div",{style:{display:"flex",alignItems:"center",marginLeft:"24px"}},e.createElement("button",{title:"Close",style:{display:"inline-flex",position:"relative",border:"none",borderRadius:"4px",padding:"5px",backgroundColor:"transparent",transition:"color 0.2s ease-in-out",outline:"none",cursor:"pointer"},onClick:g},e.createElement("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none"},e.createElement("path",{d:"M13 4.41562L9.41563 8L13 11.5844L11.5844 13L8 9.41563L4.41562 13L3 11.5844L6.58437 8L3 4.41562L4.41562 3L8 6.58437L11.5844 3L13 4.41562Z",fill:"#1E1E1E"})))));return e.createElement(e.Fragment,null,e.createElement("div",{style:{position:"absolute",width:"100%",height:"100%",top:0,left:0,right:0,bottom:0,opacity:.12,zIndex:101,pointerEvents:"none",backgroundImage:"url('data:image/png;base64,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')"}}),t&&n&&s.createPortal(v,document.body))};exports.WatermarkOverlay=c;
|
|
@@ -7,16 +7,16 @@
|
|
|
7
7
|
*/
|
|
8
8
|
"use client";
|
|
9
9
|
import * as e from "react";
|
|
10
|
-
import * as
|
|
11
|
-
const
|
|
10
|
+
import * as v from "react-dom";
|
|
11
|
+
const i = "https://www.telerik.com/kendo-react-ui/components/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-banner";
|
|
12
12
|
let n = !1;
|
|
13
|
-
const
|
|
14
|
-
const [
|
|
13
|
+
const P = () => {
|
|
14
|
+
const [A, t] = e.useState(!0), [o, r] = e.useState(!1);
|
|
15
15
|
e.useEffect(() => {
|
|
16
16
|
n || (r(!0), n = !0);
|
|
17
17
|
}, []);
|
|
18
|
-
const
|
|
19
|
-
|
|
18
|
+
const f = () => {
|
|
19
|
+
t(!1);
|
|
20
20
|
}, g = /* @__PURE__ */ e.createElement(
|
|
21
21
|
"div",
|
|
22
22
|
{
|
|
@@ -47,31 +47,8 @@ const l = () => {
|
|
|
47
47
|
fill: "#1E1E1E"
|
|
48
48
|
}
|
|
49
49
|
))),
|
|
50
|
-
/* @__PURE__ */ e.createElement("span", null, "
|
|
51
|
-
/* @__PURE__ */ e.createElement("div", { style: { display: "flex", alignItems: "center", marginLeft: "24px" } }, /* @__PURE__ */ e.createElement(
|
|
52
|
-
"button",
|
|
53
|
-
{
|
|
54
|
-
title: "Learn More",
|
|
55
|
-
style: {
|
|
56
|
-
display: "inline-flex",
|
|
57
|
-
position: "relative",
|
|
58
|
-
border: "none",
|
|
59
|
-
borderRadius: "4px",
|
|
60
|
-
padding: "5px",
|
|
61
|
-
backgroundColor: "transparent",
|
|
62
|
-
transition: "color 0.2s ease-in-out",
|
|
63
|
-
outline: "none",
|
|
64
|
-
cursor: "pointer"
|
|
65
|
-
}
|
|
66
|
-
},
|
|
67
|
-
/* @__PURE__ */ e.createElement("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none" }, /* @__PURE__ */ e.createElement(
|
|
68
|
-
"path",
|
|
69
|
-
{
|
|
70
|
-
d: "M15 8C15 11.8656 11.8656 15 8 15C4.13437 15 1 11.8656 1 8C1 4.13437 4.13437 1 8 1C11.8656 1 15 4.13437 15 8ZM14 8C14 4.6875 11.3125 2 8 2C4.6875 2 2 4.6875 2 8C2 11.3125 4.6875 14 8 14C11.3125 14 14 11.3125 14 8ZM11 6C11 7.4125 10.2687 8.05937 9.73125 8.53125C9.25937 8.94688 9 9.17813 9 10H7C7 8.275 7.84688 7.525 8.40938 7.03125C8.84062 6.65312 9 6.50938 9 6C9 5.45 8.55 5 8 5C7.45 5 7 5.45 7 6H5C5 4.34375 6.34375 3 8 3C9.65625 3 11 4.34375 11 6ZM9 13V11H7V13H9Z",
|
|
71
|
-
fill: "#1E1E1E"
|
|
72
|
-
}
|
|
73
|
-
))
|
|
74
|
-
)), /* @__PURE__ */ e.createElement(
|
|
50
|
+
/* @__PURE__ */ e.createElement("span", null, "We couldn't verify your ", /* @__PURE__ */ e.createElement("a", { href: i }, "license key"), " for KendoReact. Please see the browser console for details and resolution steps."),
|
|
51
|
+
/* @__PURE__ */ e.createElement("div", { style: { display: "flex", alignItems: "center", marginLeft: "24px" } }, /* @__PURE__ */ e.createElement(
|
|
75
52
|
"button",
|
|
76
53
|
{
|
|
77
54
|
title: "Close",
|
|
@@ -86,7 +63,7 @@ const l = () => {
|
|
|
86
63
|
outline: "none",
|
|
87
64
|
cursor: "pointer"
|
|
88
65
|
},
|
|
89
|
-
onClick:
|
|
66
|
+
onClick: f
|
|
90
67
|
},
|
|
91
68
|
/* @__PURE__ */ e.createElement("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none" }, /* @__PURE__ */ e.createElement(
|
|
92
69
|
"path",
|
|
@@ -117,8 +94,8 @@ const l = () => {
|
|
|
117
94
|
)
|
|
118
95
|
}
|
|
119
96
|
}
|
|
120
|
-
),
|
|
97
|
+
), o && A && v.createPortal(g, document.body));
|
|
121
98
|
};
|
|
122
99
|
export {
|
|
123
|
-
|
|
100
|
+
P as WatermarkOverlay
|
|
124
101
|
};
|