@progress/kendo-react-common 14.5.0-develop.8 → 15.0.0-develop.1

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.
Files changed (42) hide show
  1. package/README.md +4 -4
  2. package/WebMcpProvider.d.ts +108 -0
  3. package/WebMcpProvider.js +9 -0
  4. package/WebMcpProvider.mjs +41 -0
  5. package/dist/cdn/js/kendo-react-common.js +1 -1
  6. package/hooks/index.d.ts +1 -0
  7. package/hooks/useMergedRef.d.ts +16 -0
  8. package/hooks/useMergedRef.js +8 -0
  9. package/hooks/useMergedRef.mjs +20 -0
  10. package/hooks/usePaidChildrenWatermark.d.ts +37 -0
  11. package/hooks/usePaidChildrenWatermark.js +9 -0
  12. package/hooks/usePaidChildrenWatermark.mjs +29 -0
  13. package/icons/BaseIconProps.d.ts +0 -2
  14. package/icons/Icon.js +1 -1
  15. package/icons/Icon.mjs +11 -13
  16. package/icons/SvgIcon.d.ts +18 -0
  17. package/icons/SvgIcon.js +1 -1
  18. package/icons/SvgIcon.mjs +73 -71
  19. package/icons/models/theme-color.d.ts +1 -3
  20. package/icons/models/variant.d.ts +18 -0
  21. package/index.d.mts +4 -0
  22. package/index.d.ts +4 -0
  23. package/index.js +1 -1
  24. package/index.mjs +178 -169
  25. package/package.json +7 -2
  26. package/theme.js +1 -1
  27. package/theme.mjs +4 -2
  28. package/typography/Typography.js +1 -1
  29. package/typography/Typography.mjs +6 -8
  30. package/typography/TypographyProps.d.ts +1 -3
  31. package/unstyled/buttons.d.ts +2 -4
  32. package/unstyled/buttons.js +1 -1
  33. package/unstyled/buttons.mjs +70 -72
  34. package/unstyled/icons.d.ts +2 -4
  35. package/unstyled/icons.js +1 -1
  36. package/unstyled/icons.mjs +10 -11
  37. package/unstyled/json-classes.js +1 -1
  38. package/unstyled/json-classes.mjs +13 -15
  39. package/validate-package.js +2 -2
  40. package/validate-package.mjs +10 -10
  41. package/watermark/WatermarkOverlay.js +1 -1
  42. package/watermark/WatermarkOverlay.mjs +30 -29
@@ -6,21 +6,22 @@
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
8
  import { getClassByName as z } from "./interfaces/common.mjs";
9
- import { buttonPrefix as e, elements as u, base as r, states as a, roundedMap as g, themeColorMap as d, fillModeMap as b, sizeMap as f, containers as l, directionMap as C, ddbPrefix as p } from "./json-classes.mjs";
9
+ import { buttonPrefix as e, elements as u, base as r, states as a, roundedMap as g, themeColorMap as d, fillModeMap as x, sizeMap as c, containers as l, directionMap as M, ddbPrefix as p } from "./json-classes.mjs";
10
10
  const w = {
11
11
  wrapper: {
12
12
  main: e,
13
13
  size: {
14
- small: `${e}-${f.small}`,
15
- medium: `${e}-${f.medium}`,
16
- large: `${e}-${f.large}`
14
+ xs: `${e}-${c.xsmall}`,
15
+ small: `${e}-${c.small}`,
16
+ medium: `${e}-${c.medium}`,
17
+ large: `${e}-${c.large}`
17
18
  },
18
19
  fillMode: {
19
- solid: `${e}-${b.solid}`,
20
- outline: `${e}-${b.outline}`,
21
- flat: `${e}-${b.flat}`,
22
- link: `${e}-${b.link}`,
23
- clear: `${e}-${b.clear}`
20
+ solid: `${e}-${x.solid}`,
21
+ outline: `${e}-${x.outline}`,
22
+ flat: `${e}-${x.flat}`,
23
+ link: `${e}-${x.link}`,
24
+ clear: `${e}-${x.clear}`
24
25
  },
25
26
  themeColor: {
26
27
  base: `${e}-${d.base}`,
@@ -31,8 +32,6 @@ const w = {
31
32
  success: `${e}-${d.success}`,
32
33
  warning: `${e}-${d.warning}`,
33
34
  error: `${e}-${d.error}`,
34
- dark: `${e}-${d.dark}`,
35
- light: `${e}-${d.light}`,
36
35
  inverse: `${e}-${d.inverse}`
37
36
  },
38
37
  rounded: {
@@ -47,62 +46,61 @@ const w = {
47
46
  },
48
47
  text: `${e}-${u.text}`,
49
48
  icon: `${e}-${u.icon}`
50
- }, R = {
51
- wrapper: (o) => {
52
- const { isRtl: i, selected: n, disabled: s, size: t, fillMode: x, rounded: c, themeColor: h, iconButton: B, c: y = w } = o, $ = y.wrapper, k = h && $.themeColor ? $.themeColor[h] : void 0;
49
+ }, G = {
50
+ wrapper: (i) => {
51
+ const { isRtl: t, selected: $, disabled: s, size: o, fillMode: b, rounded: m, themeColor: C, iconButton: y, c: v = w } = i, n = v.wrapper, h = C && n.themeColor ? n.themeColor[C] : void 0, k = o ? n.size[o] || `${e}-${o}` : void 0;
53
52
  return {
54
- [$.main]: !0,
55
- [$.size[t]]: t && $.size[t],
56
- [`${e}-${t}`]: t && !$.size[t],
57
- [$.fillMode[x]]: x && $.fillMode[x],
58
- [k]: k,
59
- [$.rounded[c]]: c && $.rounded[c],
60
- [`${r.prefix}-${r.rounded}-${c}`]: c && !$.rounded[c],
61
- [$.iconButton]: B,
62
- [$.disabled]: s,
63
- [$.selected]: n,
64
- [$.isRtl]: i
53
+ [n.main]: !0,
54
+ [k]: !!k,
55
+ [n.fillMode[b]]: b && n.fillMode[b],
56
+ [h]: h,
57
+ [n.rounded[m]]: m && n.rounded[m],
58
+ [`${r.prefix}-${r.rounded}-${m}`]: m && !n.rounded[m],
59
+ [n.iconButton]: y,
60
+ [n.disabled]: s,
61
+ [n.selected]: $,
62
+ [n.isRtl]: t
65
63
  };
66
64
  },
67
- text: (o) => {
68
- const { c: i = w } = o;
65
+ text: (i) => {
66
+ const { c: t = w } = i;
69
67
  return {
70
- [i.text]: !0
68
+ [t.text]: !0
71
69
  };
72
70
  },
73
- icon: (o) => {
74
- const { c: i = w } = o;
71
+ icon: (i) => {
72
+ const { c: t = w } = i;
75
73
  return {
76
- [i.icon]: !0
74
+ [t.icon]: !0
77
75
  };
78
76
  }
79
- }, M = {
77
+ }, B = {
80
78
  wrapper: {
81
79
  main: `${e}-${l.group}`,
82
80
  stretched: `${e}-${l.group}-${a.stretched}`,
83
81
  disabled: `${r.prefix}-${a.disabled}`
84
82
  },
85
83
  position: {
86
- start: `${r.prefix}-${l.group}-${C.start}`,
87
- end: `${r.prefix}-${l.group}-${C.end}`
84
+ start: `${r.prefix}-${l.group}-${M.start}`,
85
+ end: `${r.prefix}-${l.group}-${M.end}`
88
86
  }
89
- }, G = {
90
- wrapper: (o) => {
91
- const { stretched: i, disabled: n, c: s = M } = o, t = s.wrapper;
87
+ }, P = {
88
+ wrapper: (i) => {
89
+ const { stretched: t, disabled: $, c: s = B } = i, o = s.wrapper;
92
90
  return {
93
- [t.main]: !0,
94
- [t.stretched]: i,
95
- [t.disabled]: n
91
+ [o.main]: !0,
92
+ [o.stretched]: t,
93
+ [o.disabled]: $
96
94
  };
97
95
  },
98
- position: (o) => {
99
- const { start: i, end: n, c: s = M } = o, t = s.position;
96
+ position: (i) => {
97
+ const { start: t, end: $, c: s = B } = i, o = s.position;
100
98
  return {
101
- [t.start]: i,
102
- [t.end]: n
99
+ [o.start]: t,
100
+ [o.end]: $
103
101
  };
104
102
  }
105
- }, m = {
103
+ }, f = {
106
104
  wrapper: {
107
105
  main: `${p}-${u.button}`,
108
106
  focus: `${r.prefix}-${a.focus}`,
@@ -111,9 +109,9 @@ const w = {
111
109
  ul: {
112
110
  group: `${p}-${l.group}`,
113
111
  size: {
114
- small: `${p}-${l.group}-${f.small}`,
115
- medium: `${p}-${l.group}-${f.medium}`,
116
- large: `${p}-${l.group}-${f.large}`
112
+ small: `${p}-${l.group}-${c.small}`,
113
+ medium: `${p}-${l.group}-${c.medium}`,
114
+ large: `${p}-${l.group}-${c.large}`
117
115
  }
118
116
  },
119
117
  li: {
@@ -128,44 +126,44 @@ const w = {
128
126
  disabled: `${r.prefix}-${a.disabled}`
129
127
  },
130
128
  popup: `${p}-${l.popup}`
131
- }, P = {
132
- wrapper: (o) => {
133
- const { focused: i, disabled: n, c: s = m } = o, t = s.wrapper;
129
+ }, N = {
130
+ wrapper: (i) => {
131
+ const { focused: t, disabled: $, c: s = f } = i, o = s.wrapper;
134
132
  return {
135
- [t.main]: !0,
136
- [t.focus]: i,
137
- [t.disabled]: n
133
+ [o.main]: !0,
134
+ [o.focus]: t,
135
+ [o.disabled]: $
138
136
  };
139
137
  },
140
- ul: (o) => {
141
- const { size: i, c: n = m } = o, s = n.ul;
138
+ ul: (i) => {
139
+ const { size: t, c: $ = f } = i, s = $.ul;
142
140
  return {
143
141
  [s.group]: !0,
144
- [s.size[i]]: s.size[i],
145
- [`${p}-${l.group}-${i}`]: i && !s.size[i]
142
+ [s.size[t]]: s.size[t],
143
+ [`${p}-${l.group}-${t}`]: t && !s.size[t]
146
144
  };
147
145
  },
148
- li: (o) => {
149
- const { focused: i, c: n = m } = o, s = n.li;
146
+ li: (i) => {
147
+ const { focused: t, c: $ = f } = i, s = $.li;
150
148
  return {
151
149
  [s.item]: !0,
152
- [s.focus]: i
150
+ [s.focus]: t
153
151
  };
154
152
  },
155
- item: z(m, "item"),
156
- link: (o) => {
157
- const { selected: i, disabled: n, c: s = m } = o, t = s.link;
153
+ item: z(f, "item"),
154
+ link: (i) => {
155
+ const { selected: t, disabled: $, c: s = f } = i, o = s.link;
158
156
  return {
159
- [t.main]: !0,
160
- [t.link]: !0,
161
- [t.selected]: i,
162
- [t.disabled]: n
157
+ [o.main]: !0,
158
+ [o.link]: !0,
159
+ [o.selected]: t,
160
+ [o.disabled]: $
163
161
  };
164
162
  },
165
- popup: z(m, "popup")
163
+ popup: z(f, "popup")
166
164
  };
167
165
  export {
168
- R as uButton,
169
- G as uButtonGroup,
170
- P as uDropDownButton
166
+ G as uButton,
167
+ P as uButtonGroup,
168
+ N as uDropDownButton
171
169
  };
@@ -24,10 +24,8 @@ export interface ThemeColorClasses {
24
24
  warning?: string;
25
25
  /** Text color indicating errors */
26
26
  error?: string;
27
- /** Text color for dark theme */
28
- dark?: string;
29
- /** Text color for light theme */
30
- light?: string;
27
+ /** Text color for inverse theme */
28
+ inverse?: string;
31
29
  }
32
30
  /** Size options */
33
31
  export interface SizeClasses {
package/unstyled/icons.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 e=require("./json-classes.js"),l={wrapper:{main:`${e.base.prefix}-${e.icon.prefix}`,svgPrefix:`${e.base.prefix}-${e.icon.svg}-${e.icon.prefix}`,namePrefix:`${e.base.prefix}-${e.icon.svg}-${e.icon.i}-`,flipH:`${e.base.prefix}-${e.icon.flipH}`,flipV:`${e.base.prefix}-${e.icon.flipV}`,themeColor:{inherit:`${e.base.prefix}-${e.icon.color}-${e.themeColorMap.inherit}`,primary:`${e.base.prefix}-${e.icon.color}-${e.themeColorMap.primary}`,secondary:`${e.base.prefix}-${e.icon.color}-${e.themeColorMap.secondary}`,tertiary:`${e.base.prefix}-${e.icon.color}-${e.themeColorMap.tertiary}`,info:`${e.base.prefix}-${e.icon.color}-${e.themeColorMap.info}`,success:`${e.base.prefix}-${e.icon.color}-${e.themeColorMap.success}`,warning:`${e.base.prefix}-${e.icon.color}-${e.themeColorMap.warning}`,error:`${e.base.prefix}-${e.icon.color}-${e.themeColorMap.error}`,dark:`${e.base.prefix}-${e.icon.color}-${e.themeColorMap.dark}`,light:`${e.base.prefix}-${e.icon.color}-${e.themeColorMap.light}`},size:{default:"",xsmall:`${e.base.prefix}-${e.icon.prefix}-${e.sizeMap.xsmall}`,small:`${e.base.prefix}-${e.icon.prefix}-${e.sizeMap.small}`,medium:`${e.base.prefix}-${e.icon.prefix}-${e.sizeMap.medium}`,large:`${e.base.prefix}-${e.icon.prefix}-${e.sizeMap.large}`,xlarge:`${e.base.prefix}-${e.icon.prefix}-${e.sizeMap.xlarge}`,xxlarge:`${e.base.prefix}-${e.icon.prefix}-${e.sizeMap.xxlarge}`,xxxlarge:`${e.base.prefix}-${e.icon.prefix}-${e.sizeMap.xxxlarge}`}},svg:{main:"",flipH:"",flipV:""}},c={wrapper:p=>{const{iconNameProp:o,themeColor:a,flipH:s,flipV:r,size:$,c:n=l}=p,i=n.wrapper||{};return{[i.main||""]:!0,[i.svgPrefix||""]:!0,[`${i.namePrefix||""}${o}`]:o,[i.themeColor[a]||""]:a,[i.flipH||""]:s,[i.flipV||""]:r,[i.size[$]||""]:i.size[$]}},svg:p=>{const{flipH:o,flipV:a,c:s=l}=p,r=s.svg;return{[r.main||""]:!0,[r.flipH||""]:o,[r.flipV||""]:a}}};exports.uSvgIcon=c;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./json-classes.js"),l={wrapper:{main:`${e.base.prefix}-${e.icon.prefix}`,svgPrefix:`${e.base.prefix}-${e.icon.svg}-${e.icon.prefix}`,namePrefix:`${e.base.prefix}-${e.icon.svg}-${e.icon.i}-`,flipH:`${e.base.prefix}-${e.icon.flipH}`,flipV:`${e.base.prefix}-${e.icon.flipV}`,themeColor:{inherit:`${e.base.prefix}-${e.icon.color}-${e.themeColorMap.inherit}`,primary:`${e.base.prefix}-${e.icon.color}-${e.themeColorMap.primary}`,secondary:`${e.base.prefix}-${e.icon.color}-${e.themeColorMap.secondary}`,tertiary:`${e.base.prefix}-${e.icon.color}-${e.themeColorMap.tertiary}`,info:`${e.base.prefix}-${e.icon.color}-${e.themeColorMap.info}`,success:`${e.base.prefix}-${e.icon.color}-${e.themeColorMap.success}`,warning:`${e.base.prefix}-${e.icon.color}-${e.themeColorMap.warning}`,error:`${e.base.prefix}-${e.icon.color}-${e.themeColorMap.error}`,inverse:`${e.base.prefix}-${e.icon.color}-${e.themeColorMap.inverse}`},size:{default:"",xsmall:`${e.base.prefix}-${e.icon.prefix}-${e.sizeMap.xsmall}`,small:`${e.base.prefix}-${e.icon.prefix}-${e.sizeMap.small}`,medium:`${e.base.prefix}-${e.icon.prefix}-${e.sizeMap.medium}`,large:`${e.base.prefix}-${e.icon.prefix}-${e.sizeMap.large}`,xlarge:`${e.base.prefix}-${e.icon.prefix}-${e.sizeMap.xlarge}`,xxlarge:`${e.base.prefix}-${e.icon.prefix}-${e.sizeMap.xxlarge}`,xxxlarge:`${e.base.prefix}-${e.icon.prefix}-${e.sizeMap.xxxlarge}`}},svg:{main:"",flipH:"",flipV:""}},c={wrapper:p=>{const{iconNameProp:o,themeColor:a,flipH:s,flipV:r,size:$,c:n=l}=p,i=n.wrapper||{};return{[i.main||""]:!0,[i.svgPrefix||""]:!0,[`${i.namePrefix||""}${o}`]:o,[i.themeColor[a]||""]:a,[i.flipH||""]:s,[i.flipV||""]:r,[i.size[$]||""]:i.size[$]}},svg:p=>{const{flipH:o,flipV:a,c:s=l}=p,r=s.svg;return{[r.main||""]:!0,[r.flipH||""]:o,[r.flipV||""]:a}}};exports.uSvgIcon=c;
@@ -6,7 +6,7 @@
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
8
  import { base as e, icon as r, sizeMap as p, themeColorMap as i } from "./json-classes.mjs";
9
- const c = {
9
+ const n = {
10
10
  wrapper: {
11
11
  main: `${e.prefix}-${r.prefix}`,
12
12
  svgPrefix: `${e.prefix}-${r.svg}-${r.prefix}`,
@@ -22,8 +22,7 @@ const c = {
22
22
  success: `${e.prefix}-${r.color}-${i.success}`,
23
23
  warning: `${e.prefix}-${r.color}-${i.warning}`,
24
24
  error: `${e.prefix}-${r.color}-${i.error}`,
25
- dark: `${e.prefix}-${r.color}-${i.dark}`,
26
- light: `${e.prefix}-${r.color}-${i.light}`
25
+ inverse: `${e.prefix}-${r.color}-${i.inverse}`
27
26
  },
28
27
  size: {
29
28
  default: "",
@@ -42,24 +41,24 @@ const c = {
42
41
  flipV: ""
43
42
  }
44
43
  }, m = {
45
- wrapper: (o) => {
46
- const { iconNameProp: x, themeColor: l, flipH: a, flipV: f, size: s, c: n = c } = o, $ = n.wrapper || {};
44
+ wrapper: (l) => {
45
+ const { iconNameProp: x, themeColor: o, flipH: s, flipV: f, size: a, c = n } = l, $ = c.wrapper || {};
47
46
  return {
48
47
  [$.main || ""]: !0,
49
48
  [$.svgPrefix || ""]: !0,
50
49
  [`${$.namePrefix || ""}${x}`]: x,
51
- [$.themeColor[l] || ""]: l,
52
- [$.flipH || ""]: a,
50
+ [$.themeColor[o] || ""]: o,
51
+ [$.flipH || ""]: s,
53
52
  [$.flipV || ""]: f,
54
- [$.size[s] || ""]: $.size[s]
53
+ [$.size[a] || ""]: $.size[a]
55
54
  };
56
55
  },
57
- svg: (o) => {
58
- const { flipH: x, flipV: l, c: a = c } = o, f = a.svg;
56
+ svg: (l) => {
57
+ const { flipH: x, flipV: o, c: s = n } = l, f = s.svg;
59
58
  return {
60
59
  [f.main || ""]: !0,
61
60
  [f.flipH || ""]: x,
62
- [f.flipV || ""]: l
61
+ [f.flipV || ""]: o
63
62
  };
64
63
  }
65
64
  };
@@ -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 e={prefix:"k",important:"!",rtl:"rtl",rounded:"rounded",value:"value",state:"state",filter:"filter",virtual:"virtual",infinite:"infinite",clear:"clear",reset:"reset",data:"data",nodata:"nodata",scroller:"scroller"},n={center:"center",hbox:"hbox",vstack:"vstack",hstack:"hstack",overflow:"overflow"},t={actionsheet:"actionsheet",calendar:"calendar",buttongroup:"buttongroup",dateinput:"dateinput",datetime:"datetime",datetimepicker:"datetimepicker",dropdownlist:"dropdownlist",combobox:"combobox",maskedtextbox:"maskedtextbox",menu:"menu",searchbox:"searchbox",timepicker:"timepicker"},l={xsmall:"xs",small:"sm",medium:"md",large:"lg",xlarge:"xl",xxlarge:"xxl",xxxlarge:"xxxl"},s={solid:"solid",outline:"outline",flat:"flat",link:"link",clear:"clear"},c={base:"base",primary:"primary",secondary:"secondary",tertiary:"tertiary",info:"info",success:"success",warning:"warning",error:"error",dark:"dark",light:"light",inherit:"inherit",inverse:"inverse"},d={small:"sm",medium:"md",large:"lg",full:"full",none:"none"},p={vertical:"vertical",horizontal:"horizontal"},f={height:"height",width:"width"},m={default:"cursor-default"},u={up:"up",down:"down",left:"left",right:"right",start:"start",mid:"mid",end:"end"},r={actions:"actions",container:"container",content:"content",group:"group",row:"row",nav:"nav",wrap:"wrap",wrapper:"wrapper",list:"list",placeholder:"placeholder",popup:"popup",item:"item",part:"part",picker:"picker",separator:"separator",spacer:"spacer",tab:"tab",titlebar:"titlebar",optionLabel:"optionlabel",view:"view"},o={table:"table",text:"text",button:"button",tbody:"tbody",thead:"thead",tr:"tr",th:"th",td:"td",header:"header",footer:"footer",icon:"icon",title:"title",subtitle:"subtitle",link:"link",label:"label",ul:"ul",caption:"caption"},h={increase:"increase",decrease:"decrease",cancel:"cancel",accept:"accept",split:"split"},x={active:"active",adaptive:"adaptive",first:"first",focus:"focus",pending:"pending",last:"last",draggable:"draggable",filterable:"filterable",grouping:"grouping",selected:"selected",highlighted:"highlighted",disabled:"disabled",hidden:"hidden",highlight:"highlight",invalid:"invalid",loading:"loading",required:"required",checked:"checked",empty:"empty",scrollable:"scrollable",sorted:"sorted",sort:"sort",sticky:"sticky",stretched:"stretched",order:"order",alt:"alt",edit:"edit",template:"template",shown:"shown",horizontal:"horizontal",vertical:"vertical",fullscreen:"fullscreen",bottom:"bottom"},b={prefix:"animation",child:"child",relative:"relative",slide:"slide",appear:"appear",active:"active",enter:"enter",exit:"exit",pushRight:"push-right",pushLeft:"push-left",pushDown:"push-down",pushUp:"push-up",expandVertical:"expand-vertical",expandHorizontal:"expand-horizontal",fade:"fade",zoomIn:"zoom-in",zoomOut:"zoom-out",slideIn:"slide-in",slideDown:"slide-down",slideUp:"slide-up",slideRight:"slide-right",slideLeft:"slide-left",revealVertical:"reveal-vertical",revealHorizontal:"reveal-horizontal","animation-container":"animation-container","animation-container-shown":"animation-container-shown","animation-container-relative":"animation-container-relative","animation-container-fixed":"animation-container-fixed","child-animation-container":"child-animation-container"},i={input:"input",inner:"inner",spin:"spin",spinner:"spinner",maskedtextbox:"maskedtextbox",radio:"radio",textbox:"textbox",prefix:"prefix",suffix:"suffix"},g={week:"week",weekdays:"weekdays",weekend:"weekend",month:"month",year:"year",decade:"decade",century:"century",number:"number",navigation:"navigation",marker:"marker",now:"now",range:"range",today:"today",other:"other",date:"date",time:"time",selector:"selector",timeselector:"timeselector"},v={prefix:"icon",svg:"svg",i:"i",color:"color",flipH:"flip-h",flipV:"flip-v"},w={label:"label",text:"text",floatingLabel:"floating-label",container:"container",hint:"form-hint",error:"form-error"},k={form:"form",fieldset:"fieldset",legend:"legend",separator:"separator",field:"field"},y={prefix:"popup"},a={prefix:"grid",ariaRoot:"aria-root",tableWrap:"table-wrap",master:"master",column:"column",cell:"cell",cellInner:"cell-inner",row:"row",group:"group",hierarchy:"hierarchy",detail:"detail",noRecords:"norecords",pager:"pager"},P={drop:"drop",drag:"drag",hint:"hint",vertical:"v",horizontal:"h",clue:"clue",reorder:"reorder"},$=`${e.prefix}-${i.input}`,z=`${e.prefix}-${t.calendar}`,M=`${e.prefix}-${t.maskedtextbox}`,R=`${e.prefix}-${i.radio}`,L=`${e.prefix}-${o.button}`,I=`${e.prefix}-${t.menu}`,D=`${e.prefix}-${r.picker}`,S=`${e.prefix}-${t.dropdownlist}`,U=`${e.prefix}-${t.combobox}`,j=`${e.prefix}-${a.prefix}`,H={base:e,actions:h,animation:b,sizeMap:l,components:t,cssUtils:n,directionMap:u,fillModeMap:s,themeColorMap:c,roundedMap:d,orientationMap:p,elements:o,states:x,dimensions:f,containers:r,cursor:m,inputs:i,dateInputs:g,labels:w,forms:k,popup:y,icon:v,grid:a};exports.actions=h;exports.animationStyles=b;exports.base=e;exports.buttonPrefix=L;exports.calendarPrefix=z;exports.comboBoxPrefix=U;exports.components=t;exports.containers=r;exports.cssUtils=n;exports.cursor=m;exports.dateInputs=g;exports.ddbPrefix=I;exports.dimensions=f;exports.directionMap=u;exports.dropDownListPrefix=S;exports.elements=o;exports.fillModeMap=s;exports.forms=k;exports.grid=a;exports.gridPrefix=j;exports.gridRowReorder=P;exports.icon=v;exports.inputPrefix=$;exports.inputs=i;exports.jsonTheme=H;exports.labels=w;exports.maskedPrefix=M;exports.orientationMap=p;exports.pickerPrefix=D;exports.popup=y;exports.radioPrefix=R;exports.roundedMap=d;exports.sizeMap=l;exports.states=x;exports.themeColorMap=c;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={prefix:"k",important:"!",rtl:"rtl",rounded:"rounded",value:"value",state:"state",filter:"filter",virtual:"virtual",infinite:"infinite",clear:"clear",reset:"reset",data:"data",nodata:"nodata",scroller:"scroller"},n={center:"center",hbox:"hbox",vstack:"vstack",hstack:"hstack",overflow:"overflow"},t={actionsheet:"actionsheet",calendar:"calendar",buttongroup:"buttongroup",dateinput:"dateinput",datetime:"datetime",datetimepicker:"datetimepicker",dropdownlist:"dropdownlist",combobox:"combobox",maskedtextbox:"maskedtextbox",menu:"menu",searchbox:"searchbox",timepicker:"timepicker"},l={xsmall:"xs",small:"sm",medium:"md",large:"lg",xlarge:"xl",xxlarge:"xxl",xxxlarge:"xxxl"},s={solid:"solid",outline:"outline",flat:"flat",link:"link",clear:"clear"},c={base:"base",primary:"primary",secondary:"secondary",tertiary:"tertiary",info:"info",success:"success",warning:"warning",error:"error",inherit:"inherit",inverse:"inverse"},d={small:"sm",medium:"md",large:"lg",full:"full",none:"none"},p={vertical:"vertical",horizontal:"horizontal"},f={height:"height",width:"width"},m={default:"cursor-default"},u={up:"up",down:"down",left:"left",right:"right",start:"start",mid:"mid",end:"end"},r={actions:"actions",container:"container",content:"content",group:"group",row:"row",nav:"nav",wrap:"wrap",wrapper:"wrapper",list:"list",placeholder:"placeholder",popup:"popup",item:"item",part:"part",picker:"picker",separator:"separator",spacer:"spacer",tab:"tab",titlebar:"titlebar",optionLabel:"optionlabel",view:"view"},o={table:"table",text:"text",button:"button",tbody:"tbody",thead:"thead",tr:"tr",th:"th",td:"td",header:"header",footer:"footer",icon:"icon",title:"title",subtitle:"subtitle",link:"link",label:"label",ul:"ul",caption:"caption"},h={increase:"increase",decrease:"decrease",cancel:"cancel",accept:"accept",split:"split"},x={active:"active",adaptive:"adaptive",first:"first",focus:"focus",pending:"pending",last:"last",draggable:"draggable",filterable:"filterable",grouping:"grouping",selected:"selected",highlighted:"highlighted",disabled:"disabled",hidden:"hidden",highlight:"highlight",invalid:"invalid",loading:"loading",required:"required",checked:"checked",empty:"empty",scrollable:"scrollable",sorted:"sorted",sort:"sort",sticky:"sticky",stretched:"stretched",order:"order",alt:"alt",edit:"edit",template:"template",shown:"shown",horizontal:"horizontal",vertical:"vertical",fullscreen:"fullscreen",bottom:"bottom"},b={prefix:"animation",child:"child",relative:"relative",slide:"slide",appear:"appear",active:"active",enter:"enter",exit:"exit",pushRight:"push-right",pushLeft:"push-left",pushDown:"push-down",pushUp:"push-up",expandVertical:"expand-vertical",expandHorizontal:"expand-horizontal",fade:"fade",zoomIn:"zoom-in",zoomOut:"zoom-out",slideIn:"slide-in",slideDown:"slide-down",slideUp:"slide-up",slideRight:"slide-right",slideLeft:"slide-left",revealVertical:"reveal-vertical",revealHorizontal:"reveal-horizontal","animation-container":"animation-container","animation-container-shown":"animation-container-shown","animation-container-relative":"animation-container-relative","animation-container-fixed":"animation-container-fixed","child-animation-container":"child-animation-container"},i={input:"input",inner:"inner",spin:"spin",spinner:"spinner",maskedtextbox:"maskedtextbox",radio:"radio",textbox:"textbox",prefix:"prefix",suffix:"suffix"},g={week:"week",weekdays:"weekdays",weekend:"weekend",month:"month",year:"year",decade:"decade",century:"century",number:"number",navigation:"navigation",marker:"marker",now:"now",range:"range",today:"today",other:"other",date:"date",time:"time",selector:"selector",timeselector:"timeselector"},v={prefix:"icon",svg:"svg",i:"i",color:"color",flipH:"flip-h",flipV:"flip-v"},w={label:"label",text:"text",floatingLabel:"floating-label",container:"container",hint:"form-hint",error:"form-error"},k={form:"form",fieldset:"fieldset",legend:"legend",separator:"separator",field:"field"},y={prefix:"popup"},a={prefix:"grid",ariaRoot:"aria-root",tableWrap:"table-wrap",master:"master",column:"column",cell:"cell",cellInner:"cell-inner",row:"row",group:"group",hierarchy:"hierarchy",detail:"detail",noRecords:"norecords",pager:"pager"},P={drop:"drop",drag:"drag",hint:"hint",vertical:"v",horizontal:"h",clue:"clue",reorder:"reorder"},$=`${e.prefix}-${i.input}`,z=`${e.prefix}-${t.calendar}`,M=`${e.prefix}-${t.maskedtextbox}`,R=`${e.prefix}-${i.radio}`,L=`${e.prefix}-${o.button}`,I=`${e.prefix}-${t.menu}`,D=`${e.prefix}-${r.picker}`,S=`${e.prefix}-${t.dropdownlist}`,U=`${e.prefix}-${t.combobox}`,j=`${e.prefix}-${a.prefix}`,H={base:e,actions:h,animation:b,sizeMap:l,components:t,cssUtils:n,directionMap:u,fillModeMap:s,themeColorMap:c,roundedMap:d,orientationMap:p,elements:o,states:x,dimensions:f,containers:r,cursor:m,inputs:i,dateInputs:g,labels:w,forms:k,popup:y,icon:v,grid:a};exports.actions=h;exports.animationStyles=b;exports.base=e;exports.buttonPrefix=L;exports.calendarPrefix=z;exports.comboBoxPrefix=U;exports.components=t;exports.containers=r;exports.cssUtils=n;exports.cursor=m;exports.dateInputs=g;exports.ddbPrefix=I;exports.dimensions=f;exports.directionMap=u;exports.dropDownListPrefix=S;exports.elements=o;exports.fillModeMap=s;exports.forms=k;exports.grid=a;exports.gridPrefix=j;exports.gridRowReorder=P;exports.icon=v;exports.inputPrefix=$;exports.inputs=i;exports.jsonTheme=H;exports.labels=w;exports.maskedPrefix=M;exports.orientationMap=p;exports.pickerPrefix=D;exports.popup=y;exports.radioPrefix=R;exports.roundedMap=d;exports.sizeMap=l;exports.states=x;exports.themeColorMap=c;
@@ -62,8 +62,6 @@ const e = {
62
62
  success: "success",
63
63
  warning: "warning",
64
64
  error: "error",
65
- dark: "dark",
66
- light: "light",
67
65
  inherit: "inherit",
68
66
  inverse: "inverse"
69
67
  }, d = {
@@ -109,7 +107,7 @@ const e = {
109
107
  titlebar: "titlebar",
110
108
  optionLabel: "optionlabel",
111
109
  view: "view"
112
- }, a = {
110
+ }, o = {
113
111
  table: "table",
114
112
  text: "text",
115
113
  button: "button",
@@ -167,7 +165,7 @@ const e = {
167
165
  vertical: "vertical",
168
166
  fullscreen: "fullscreen",
169
167
  bottom: "bottom"
170
- }, g = {
168
+ }, b = {
171
169
  prefix: "animation",
172
170
  child: "child",
173
171
  relative: "relative",
@@ -207,7 +205,7 @@ const e = {
207
205
  textbox: "textbox",
208
206
  prefix: "prefix",
209
207
  suffix: "suffix"
210
- }, b = {
208
+ }, g = {
211
209
  week: "week",
212
210
  weekdays: "weekdays",
213
211
  weekend: "weekend",
@@ -249,7 +247,7 @@ const e = {
249
247
  field: "field"
250
248
  }, y = {
251
249
  prefix: "popup"
252
- }, o = {
250
+ }, a = {
253
251
  prefix: "grid",
254
252
  ariaRoot: "aria-root",
255
253
  tableWrap: "table-wrap",
@@ -271,10 +269,10 @@ const e = {
271
269
  horizontal: "h",
272
270
  clue: "clue",
273
271
  reorder: "reorder"
274
- }, z = `${e.prefix}-${i.input}`, P = `${e.prefix}-${t.calendar}`, M = `${e.prefix}-${t.maskedtextbox}`, R = `${e.prefix}-${i.radio}`, L = `${e.prefix}-${a.button}`, I = `${e.prefix}-${t.menu}`, D = `${e.prefix}-${r.picker}`, H = `${e.prefix}-${t.dropdownlist}`, U = `${e.prefix}-${t.combobox}`, V = `${e.prefix}-${o.prefix}`, q = {
272
+ }, z = `${e.prefix}-${i.input}`, P = `${e.prefix}-${t.calendar}`, M = `${e.prefix}-${t.maskedtextbox}`, R = `${e.prefix}-${i.radio}`, L = `${e.prefix}-${o.button}`, I = `${e.prefix}-${t.menu}`, D = `${e.prefix}-${r.picker}`, H = `${e.prefix}-${t.dropdownlist}`, U = `${e.prefix}-${t.combobox}`, V = `${e.prefix}-${a.prefix}`, q = {
275
273
  base: e,
276
274
  actions: u,
277
- animation: g,
275
+ animation: b,
278
276
  sizeMap: l,
279
277
  components: t,
280
278
  cssUtils: n,
@@ -283,22 +281,22 @@ const e = {
283
281
  themeColorMap: c,
284
282
  roundedMap: d,
285
283
  orientationMap: p,
286
- elements: a,
284
+ elements: o,
287
285
  states: x,
288
286
  dimensions: h,
289
287
  containers: r,
290
288
  cursor: m,
291
289
  inputs: i,
292
- dateInputs: b,
290
+ dateInputs: g,
293
291
  labels: w,
294
292
  forms: k,
295
293
  popup: y,
296
294
  icon: v,
297
- grid: o
295
+ grid: a
298
296
  };
299
297
  export {
300
298
  u as actions,
301
- g as animationStyles,
299
+ b as animationStyles,
302
300
  e as base,
303
301
  L as buttonPrefix,
304
302
  P as calendarPrefix,
@@ -307,15 +305,15 @@ export {
307
305
  r as containers,
308
306
  n as cssUtils,
309
307
  m as cursor,
310
- b as dateInputs,
308
+ g as dateInputs,
311
309
  I as ddbPrefix,
312
310
  h as dimensions,
313
311
  f as directionMap,
314
312
  H as dropDownListPrefix,
315
- a as elements,
313
+ o as elements,
316
314
  s as fillModeMap,
317
315
  k as forms,
318
- o as grid,
316
+ a as grid,
319
317
  V as gridPrefix,
320
318
  $ as gridRowReorder,
321
319
  v as icon,
@@ -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 i=require("@progress/kendo-licensing"),g=require("./canUseDOM.js"),d=["telerik.com","progress.com","stackblitz.io","csb.app"],h="https://www.telerik.com/kendo-react-ui/components/free?utm_medium=product&utm_source=console&utm_campaign=dt_kendoreact_freemium",n=new Map,k=()=>{const t=Array.from(n,([e,c])=>`- ${e}: ${Array.from(c).join(", ")||"all"}`).join(`
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const i=require("@progress/kendo-licensing"),g=require("./canUseDOM.js"),d=["telerik.com","progress.com","stackblitz.io","csb.app"],h="https://www.telerik.com/kendo-react-ui/components/getting-started/free-vs-premium?utm_medium=product&utm_source=console&utm_campaign=dt_kendoreact_freemium",n=new Map,k=()=>{const t=Array.from(n,([e,c])=>`- ${e}: ${Array.from(c).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
10
  ${t}
11
- See the full list of free and premium components here: ${h}`),console.groupEnd(),n.clear()},L=(t,e)=>{const c=i.validatePackage(t),o=d.some(s=>{var a;return(a=globalThis.document)==null?void 0:a.location.hostname.endsWith(s)});if(!c&&g.canUseDOM&&e)if(n.size===0&&setTimeout(k,1e3),n.has(e.component)){const s=n.get(e.component)||[];n.set(e.component,new Set([...e.features||[],...s]))}else n.set(e.component,e.features||[]);return c||o},f=t=>i.getLicenseStatus(t).isLicenseValid,r=new WeakMap,w=t=>{var m;if(r.has(t))return r.get(t);const{version:e,productName:c}=t,o=i.getLicenseStatus(t),s=o.message,a=o.licenseType,l=(m=o.expiration)==null?void 0:m.toDateString(),p=s&&"code"in s?s.code:void 0,u={...s,code:p,licenseType:a,version:e,productName:(s==null?void 0:s.productName)||c,expiration:l};return r.set(t,u),u};exports.getLicenseMessage=w;exports.hasValidLicense=f;exports.validatePackage=L;
11
+ See the full list of free and premium components here: ${h}`),console.groupEnd(),n.clear()},L=(t,e)=>{const c=i.validatePackage(t),o=d.some(s=>{var r;return(r=globalThis.document)==null?void 0:r.location.hostname.endsWith(s)});if(!c&&g.canUseDOM&&e)if(n.size===0&&setTimeout(k,1e3),n.has(e.component)){const s=n.get(e.component)||[];n.set(e.component,new Set([...e.features||[],...s]))}else n.set(e.component,e.features||[]);return c||o},f=t=>i.getLicenseStatus(t).isLicenseValid,a=new WeakMap,w=t=>{var m;if(a.has(t))return a.get(t);const{version:e,productName:c}=t,o=i.getLicenseStatus(t),s=o.message,r=o.licenseType,p=(m=o.expiration)==null?void 0:m.toDateString(),l=s&&"code"in s?s.code:void 0,u={...s,code:l,licenseType:r,version:e,productName:(s==null?void 0:s.productName)||c,expiration:p};return a.set(t,u),u};exports.getLicenseMessage=w;exports.hasValidLicense=f;exports.validatePackage=L;
@@ -7,8 +7,8 @@
7
7
  */
8
8
  import { getLicenseStatus as u, validatePackage as d } from "@progress/kendo-licensing";
9
9
  import { canUseDOM as g } from "./canUseDOM.mjs";
10
- const h = ["telerik.com", "progress.com", "stackblitz.io", "csb.app"], k = "https://www.telerik.com/kendo-react-ui/components/free?utm_medium=product&utm_source=console&utm_campaign=dt_kendoreact_freemium", o = /* @__PURE__ */ new Map(), f = () => {
11
- const t = Array.from(o, ([e, c]) => `- ${e}: ${Array.from(c).join(", ") || "all"}`).join(`
10
+ const h = ["telerik.com", "progress.com", "stackblitz.io", "csb.app"], k = "https://www.telerik.com/kendo-react-ui/components/getting-started/free-vs-premium?utm_medium=product&utm_source=console&utm_campaign=dt_kendoreact_freemium", o = /* @__PURE__ */ new Map(), f = () => {
11
+ const t = Array.from(o, ([e, n]) => `- ${e}: ${Array.from(n).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
@@ -16,35 +16,35 @@ ${t}
16
16
  See the full list of free and premium components here: ${k}`
17
17
  ), console.groupEnd(), o.clear();
18
18
  }, _ = (t, e) => {
19
- const c = d(t), n = h.some(
19
+ const n = d(t), c = h.some(
20
20
  (s) => {
21
21
  var r;
22
22
  return (r = globalThis.document) == null ? void 0 : r.location.hostname.endsWith(s);
23
23
  }
24
24
  );
25
- if (!c && g && e)
25
+ if (!n && g && e)
26
26
  if (o.size === 0 && setTimeout(f, 1e3), o.has(e.component)) {
27
27
  const s = o.get(e.component) || [];
28
28
  o.set(e.component, /* @__PURE__ */ new Set([...e.features || [], ...s]));
29
29
  } else
30
30
  o.set(e.component, e.features || []);
31
- return c || n;
32
- }, M = (t) => u(t).isLicenseValid, a = /* @__PURE__ */ new WeakMap(), v = (t) => {
31
+ return n || c;
32
+ }, v = (t) => u(t).isLicenseValid, a = /* @__PURE__ */ new WeakMap(), M = (t) => {
33
33
  var m;
34
34
  if (a.has(t))
35
35
  return a.get(t);
36
- const { version: e, productName: c } = t, n = u(t), s = n.message, r = n.licenseType, p = (m = n.expiration) == null ? void 0 : m.toDateString(), l = s && "code" in s ? s.code : void 0, i = {
36
+ const { version: e, productName: n } = t, c = u(t), s = c.message, r = c.licenseType, p = (m = c.expiration) == null ? void 0 : m.toDateString(), l = s && "code" in s ? s.code : void 0, i = {
37
37
  ...s,
38
38
  code: l,
39
39
  licenseType: r,
40
40
  version: e,
41
- productName: (s == null ? void 0 : s.productName) || c,
41
+ productName: (s == null ? void 0 : s.productName) || n,
42
42
  expiration: p
43
43
  };
44
44
  return a.set(t, i), i;
45
45
  };
46
46
  export {
47
- v as getLicenseMessage,
48
- M as hasValidLicense,
47
+ M as getLicenseMessage,
48
+ v as hasValidLicense,
49
49
  _ as validatePackage
50
50
  };
@@ -6,4 +6,4 @@
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
8
  "use client";
9
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const y=require("react"),I=require("react-dom");function C(t){const n=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(t){for(const i in t)if(i!=="default"){const s=Object.getOwnPropertyDescriptor(t,i);Object.defineProperty(n,i,s.get?s:{enumerable:!0,get:()=>t[i]})}}return n.default=t,Object.freeze(n)}const e=C(y),Q=C(I),v={current:!0},x='system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Noto Sans", "Liberation Sans", sans-serif',f={TKL201:{title:(t,n)=>`License key missing for ${t} v${n}.`,description:"A license key is required for both paid and trial usage.",buttonText:"Start Free Trial",buttonLink:"https://prgress.co/NoLicenseWatermarkKendoReact"},TKL202:{title:(t,n)=>`No license found for ${t} v${n}.`,description:"To use this product and access updates and support you need to buy and install a valid license.",buttonText:"Buy Now",buttonLink:"https://prgress.co/4pB2YK7"},TKL203:{title:t=>`Your trial for ${t} has expired.`,description:"To continue using the product you need to buy a subscription.",buttonText:"Buy Now",buttonLink:"https://prgress.co/45QUSG7"},"TKL204:subscription":{title:t=>`Your ${t} subscription has expired.`,description:"To continue using the product you need to renew your subscription.",buttonText:"Renew Now",buttonLink:"https://prgress.co/4pw28OH"},"TKL204:perpetual":{title:(t,n)=>`Your license doesn't cover ${t} v${n}.`,description:"To access the latest version and updates you need to renew your license.",buttonText:"Renew Now",buttonLink:"https://prgress.co/4pw28OH"},default:{title:(t,n)=>`License issue for ${t} v${n}.`,description:"To acquire a commercial license, visit https://prgress.co/3PyHIoH",buttonText:"Buy Now",buttonLink:"https://prgress.co/3PyHIoH"}},T=t=>{const{code:n,licenseType:i,productName:s="",version:d="",notificationTitle:p,notificationBody:u,notificationMessage:c,notificationIcon:a,callToAction:r}=t||{};let o="default";n&&(`${n}:${i}`in f?o=`${n}:${i}`:n in f&&(o=n));const l=f[o]||f.default;return{icon:a==null?void 0:a.content,title:p||l.title(s,d),description:u||l.description,descriptionHtml:c&&!u?c:void 0,buttonText:(r==null?void 0:r.message)||l.buttonText,buttonLink:(r==null?void 0:r.link)||l.buttonLink}},D=t=>{const[n,i]=e.useState(!0),[s]=e.useState(()=>v.current?(v.current=!1,!0):!1),[d,p]=e.useState(!1),[u,c]=e.useState(!1),[a,r]=e.useState(!1),[o,l]=e.useState(!1),[g,E]=e.useState(!1);e.useEffect(()=>{p(!0);const A=()=>{l(window.innerWidth<500),E(window.innerWidth>=768)};return A(),window.addEventListener("resize",A),()=>{window.removeEventListener("resize",A),s&&(v.current=!0)}},[s]);const h=()=>{i(!1)},{icon:b,title:w,description:m,descriptionHtml:H,buttonText:P,buttonLink:B}=T(t.message),L=e.createElement("div",{style:{position:"fixed",top:g?"16px":"0",left:"50%",transform:"translateX(-50%)",display:"flex",flexDirection:o?"column":"row",justifyContent:"center",alignItems:o?"flex-start":"center",borderRadius:g?"6px":"0",borderLeft:"6px solid rgba(255, 192, 0, 1)",borderTop:"1px solid #00000029",borderRight:"1px solid #00000029",borderBottom:"1px solid #00000029",fontSize:"14px",fontWeight:400,lineHeight:"20px",color:"#1E1E1E",zIndex:2e3,boxShadow:"0px 4px 5px 0px #0000000A, 0px 2px 4px 0px #00000008",maxWidth:g?"768px":"none",width:"100%",backgroundColor:"#ffffff",padding:o?"12px":"0"}},o&&e.createElement("button",{title:"Close",className:"k-watermark-close-button",style:{position:"absolute",top:"12px",right:"12px",display:"inline-flex",border:"none",borderRadius:"4px",padding:"4px",backgroundColor:a?"#3d3d3d14":"transparent",transition:"background-color 0.2s ease-in-out",outline:"none",cursor:"pointer"},onMouseLeave:()=>r(!1),onMouseEnter:()=>r(!0),onClick:h},e.createElement("svg",{width:"20",height:"20",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},e.createElement("path",{d:"M11.9309 3.1838C12.1754 2.93933 12.5712 2.93937 12.8157 3.1838C13.0601 3.4283 13.0601 3.82407 12.8157 4.06857L8.885 7.99923L12.8166 11.9309C13.0611 12.1754 13.0611 12.5721 12.8166 12.8166C12.5721 13.0611 12.1754 13.0611 11.9309 12.8166L7.99925 8.88497L4.06859 12.8166C3.8241 13.0611 3.42732 13.0611 3.18285 12.8166C2.93862 12.5721 2.93851 12.1753 3.18285 11.9309L7.11449 7.99923L3.18382 4.06857C2.93947 3.82413 2.93955 3.42829 3.18382 3.1838C3.42831 2.9393 3.82508 2.9393 4.06957 3.1838L7.99925 7.11349L11.9309 3.1838Z",fill:"#212529"}))),b&&e.createElement("span",{style:{display:"flex",alignSelf:o?"flex-start":"center",padding:o?"0 0 12px 0":"9px 12px"}},e.createElement("span",{dangerouslySetInnerHTML:{__html:b}})),e.createElement("div",{style:{display:"flex",flexDirection:"column",gap:"4px",padding:o?"0 0 12px 0":"12px",flex:o?"none":"1"}},e.createElement("span",{style:{fontFamily:x,fontWeight:"700",fontSize:"14px",lineHeight:"142%",letterSpacing:"0px",verticalAlign:"middle",textAlign:"left"}},w),e.createElement("span",{style:{fontFamily:x,fontWeight:400,fontSize:"14px",lineHeight:"20px",letterSpacing:"0px",verticalAlign:"middle",textAlign:"left"},dangerouslySetInnerHTML:{__html:H||m}})),e.createElement("div",{style:{display:"flex",alignItems:"center",padding:o?"0":"9px 12px",gap:"16px",marginLeft:o?"0":"auto",width:o?"100%":"auto"}},e.createElement("a",{title:P,className:"k-watermark-trial-button",style:{display:"inline-flex",position:"relative",border:"none",borderRadius:"4px",backgroundColor:u?"#b90138":"#eb0249",color:"#ffffff",transition:"background-color 0.2s ease-in-out",outline:"none",cursor:"pointer",padding:"4px 8px",whiteSpace:"nowrap",textDecoration:"none",fontFamily:x},href:B,target:"_blank",rel:"noopener noreferrer",onMouseLeave:()=>c(!1),onMouseEnter:()=>c(!0)},P),!o&&e.createElement("button",{title:"Close",className:"k-watermark-close-button",style:{display:"inline-flex",position:"relative",border:"none",borderRadius:"4px",padding:"4px",backgroundColor:a?"#3d3d3d14":"transparent",transition:"background-color 0.2s ease-in-out",outline:"none",cursor:"pointer"},onMouseLeave:()=>r(!1),onMouseEnter:()=>r(!0),onClick:h},e.createElement("svg",{width:"20",height:"20",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},e.createElement("path",{d:"M11.9309 3.1838C12.1754 2.93933 12.5712 2.93937 12.8157 3.1838C13.0601 3.4283 13.0601 3.82407 12.8157 4.06857L8.885 7.99923L12.8166 11.9309C13.0611 12.1754 13.0611 12.5721 12.8166 12.8166C12.5721 13.0611 12.1754 13.0611 11.9309 12.8166L7.99925 8.88497L4.06859 12.8166C3.8241 13.0611 3.42732 13.0611 3.18285 12.8166C2.93862 12.5721 2.93851 12.1753 3.18285 11.9309L7.11449 7.99923L3.18382 4.06857C2.93947 3.82413 2.93955 3.42829 3.18382 3.1838C3.42831 2.9393 3.82508 2.9393 4.06957 3.1838L7.99925 7.11349L11.9309 3.1838Z",fill:"#212529"})))));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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')"}}),d&&s&&n&&Q.createPortal(L,document.body))};exports.WatermarkOverlay=D;
9
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const I=require("react"),y=require("react-dom");function C(t){const n=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(t){for(const i in t)if(i!=="default"){const s=Object.getOwnPropertyDescriptor(t,i);Object.defineProperty(n,i,s.get?s:{enumerable:!0,get:()=>t[i]})}}return n.default=t,Object.freeze(n)}const e=C(I),Q=C(y),v={current:!0},x='system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Noto Sans", "Liberation Sans", sans-serif',f={TKL201:{title:(t,n)=>`Premium feature detected in ${t} v${n}.`,description:"Use Premium components without watermark. Start Free Trial or check the browser console for a list of premium features currently in use.",buttonText:"Start Free Trial",buttonLink:"https://prgress.co/NoLicenseWatermarkKendoReact"},TKL202:{title:(t,n)=>`No license found for ${t} v${n}.`,description:"To use this product and access updates and support you need to buy and install a valid license.",buttonText:"Buy Now",buttonLink:"https://prgress.co/4pB2YK7"},TKL203:{title:t=>`Your trial for ${t} has expired.`,description:"To continue using the product you need to buy a subscription.",buttonText:"Buy Now",buttonLink:"https://prgress.co/45QUSG7"},"TKL204:subscription":{title:t=>`Your ${t} subscription has expired.`,description:"To continue using the product you need to renew your subscription.",buttonText:"Renew Now",buttonLink:"https://prgress.co/4pw28OH"},"TKL204:perpetual":{title:(t,n)=>`Your license doesn't cover ${t} v${n}.`,description:"To access the latest version and updates you need to renew your license.",buttonText:"Renew Now",buttonLink:"https://prgress.co/4pw28OH"},default:{title:(t,n)=>`License issue for ${t} v${n}.`,description:"To acquire a commercial license, visit https://prgress.co/3PyHIoH",buttonText:"Buy Now",buttonLink:"https://prgress.co/3PyHIoH"}},T=t=>{const{code:n,licenseType:i,productName:s="",version:d="",notificationTitle:p,notificationBody:c,notificationMessage:u,notificationIcon:a,callToAction:r}=t||{};let o="default";n&&(`${n}:${i}`in f?o=`${n}:${i}`:n in f&&(o=n));const l=f[o]||f.default;return{icon:a==null?void 0:a.content,title:p||l.title(s,d),description:c||l.description,descriptionHtml:u&&!c?u:void 0,buttonText:(r==null?void 0:r.message)||l.buttonText,buttonLink:(r==null?void 0:r.link)||l.buttonLink}},D=t=>{const[n,i]=e.useState(!0),[s]=e.useState(()=>v.current?(v.current=!1,!0):!1),[d,p]=e.useState(!1),[c,u]=e.useState(!1),[a,r]=e.useState(!1),[o,l]=e.useState(!1),[g,E]=e.useState(!1);e.useEffect(()=>{p(!0);const A=()=>{l(window.innerWidth<500),E(window.innerWidth>=768)};return A(),window.addEventListener("resize",A),()=>{window.removeEventListener("resize",A),s&&(v.current=!0)}},[s]);const h=()=>{i(!1)},{icon:b,title:w,description:m,descriptionHtml:H,buttonText:P,buttonLink:B}=T(t.message),L=e.createElement("div",{style:{position:"fixed",top:g?"16px":"0",left:"50%",transform:"translateX(-50%)",display:"flex",flexDirection:o?"column":"row",justifyContent:"center",alignItems:o?"flex-start":"center",borderRadius:g?"6px":"0",borderLeft:"6px solid rgba(255, 192, 0, 1)",borderTop:"1px solid #00000029",borderRight:"1px solid #00000029",borderBottom:"1px solid #00000029",fontSize:"14px",fontWeight:400,lineHeight:"20px",color:"#1E1E1E",zIndex:2e3,boxShadow:"0px 4px 5px 0px #0000000A, 0px 2px 4px 0px #00000008",maxWidth:g?"768px":"none",width:"100%",backgroundColor:"#ffffff",padding:o?"12px":"0"}},o&&e.createElement("button",{title:"Close",className:"k-watermark-close-button",style:{position:"absolute",top:"12px",right:"12px",display:"inline-flex",border:"none",borderRadius:"4px",padding:"4px",backgroundColor:a?"#3d3d3d14":"transparent",transition:"background-color 0.2s ease-in-out",outline:"none",cursor:"pointer"},onMouseLeave:()=>r(!1),onMouseEnter:()=>r(!0),onClick:h},e.createElement("svg",{width:"20",height:"20",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},e.createElement("path",{d:"M11.9309 3.1838C12.1754 2.93933 12.5712 2.93937 12.8157 3.1838C13.0601 3.4283 13.0601 3.82407 12.8157 4.06857L8.885 7.99923L12.8166 11.9309C13.0611 12.1754 13.0611 12.5721 12.8166 12.8166C12.5721 13.0611 12.1754 13.0611 11.9309 12.8166L7.99925 8.88497L4.06859 12.8166C3.8241 13.0611 3.42732 13.0611 3.18285 12.8166C2.93862 12.5721 2.93851 12.1753 3.18285 11.9309L7.11449 7.99923L3.18382 4.06857C2.93947 3.82413 2.93955 3.42829 3.18382 3.1838C3.42831 2.9393 3.82508 2.9393 4.06957 3.1838L7.99925 7.11349L11.9309 3.1838Z",fill:"#212529"}))),b&&e.createElement("span",{style:{display:"flex",alignSelf:o?"flex-start":"center",padding:o?"0 0 12px 0":"9px 12px"}},e.createElement("span",{dangerouslySetInnerHTML:{__html:b}})),e.createElement("div",{style:{display:"flex",flexDirection:"column",gap:"4px",padding:o?"0 0 12px 0":"12px",flex:o?"none":"1"}},e.createElement("span",{style:{fontFamily:x,fontWeight:"700",fontSize:"14px",lineHeight:"142%",letterSpacing:"0px",verticalAlign:"middle",textAlign:"left"}},w),e.createElement("span",{style:{fontFamily:x,fontWeight:400,fontSize:"14px",lineHeight:"20px",letterSpacing:"0px",verticalAlign:"middle",textAlign:"left"},dangerouslySetInnerHTML:{__html:H||m}})),e.createElement("div",{style:{display:"flex",alignItems:"center",padding:o?"0":"9px 12px",gap:"16px",marginLeft:o?"0":"auto",width:o?"100%":"auto"}},e.createElement("a",{title:P,className:"k-watermark-trial-button",style:{display:"inline-flex",position:"relative",border:"none",borderRadius:"4px",backgroundColor:c?"#b90138":"#eb0249",color:"#ffffff",transition:"background-color 0.2s ease-in-out",outline:"none",cursor:"pointer",padding:"4px 8px",whiteSpace:"nowrap",textDecoration:"none",fontFamily:x},href:B,target:"_blank",rel:"noopener noreferrer",onMouseLeave:()=>u(!1),onMouseEnter:()=>u(!0)},P),!o&&e.createElement("button",{title:"Close",className:"k-watermark-close-button",style:{display:"inline-flex",position:"relative",border:"none",borderRadius:"4px",padding:"4px",backgroundColor:a?"#3d3d3d14":"transparent",transition:"background-color 0.2s ease-in-out",outline:"none",cursor:"pointer"},onMouseLeave:()=>r(!1),onMouseEnter:()=>r(!0),onClick:h},e.createElement("svg",{width:"20",height:"20",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},e.createElement("path",{d:"M11.9309 3.1838C12.1754 2.93933 12.5712 2.93937 12.8157 3.1838C13.0601 3.4283 13.0601 3.82407 12.8157 4.06857L8.885 7.99923L12.8166 11.9309C13.0611 12.1754 13.0611 12.5721 12.8166 12.8166C12.5721 13.0611 12.1754 13.0611 11.9309 12.8166L7.99925 8.88497L4.06859 12.8166C3.8241 13.0611 3.42732 13.0611 3.18285 12.8166C2.93862 12.5721 2.93851 12.1753 3.18285 11.9309L7.11449 7.99923L3.18382 4.06857C2.93947 3.82413 2.93955 3.42829 3.18382 3.1838C3.42831 2.9393 3.82508 2.9393 4.06957 3.1838L7.99925 7.11349L11.9309 3.1838Z",fill:"#212529"})))));return e.createElement(e.Fragment,null,e.createElement("div",{"data-kendo-watermark":!0,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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')"}}),d&&s&&n&&Q.createPortal(L,document.body))};exports.WatermarkOverlay=D;