@progress/kendo-react-common 13.4.0-develop.3 → 13.4.0-develop.5
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/dist/cdn/js/kendo-react-common.js +1 -1
- package/index.d.mts +1 -0
- package/index.d.ts +1 -0
- package/index.js +1 -1
- package/index.mjs +140 -132
- package/kendopaste/KendoPasteEvent.d.ts +49 -0
- package/kendopaste/KendoPasteEvent.js +8 -0
- package/kendopaste/KendoPasteEvent.mjs +36 -0
- package/kendopaste/index.d.ts +9 -0
- package/kendopaste/useKendoPaste.d.ts +111 -0
- package/kendopaste/useKendoPaste.js +8 -0
- package/kendopaste/useKendoPaste.mjs +60 -0
- package/package.json +1 -1
- package/theme.js +1 -1
- package/theme.mjs +4 -3
- package/unstyled/json-classes.js +1 -1
- package/unstyled/json-classes.mjs +2 -1
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import * as React from 'react';
|
|
9
|
+
/**
|
|
10
|
+
* Options for the useKendoPaste hook.
|
|
11
|
+
*/
|
|
12
|
+
export interface UseKendoPasteOptions {
|
|
13
|
+
/**
|
|
14
|
+
* The field name to listen for in the smart paste event.
|
|
15
|
+
* This is typically the component's `name` or `id` prop.
|
|
16
|
+
* When the event contains a value for this field, the onValueChange callback is called.
|
|
17
|
+
*
|
|
18
|
+
* If undefined or empty, the hook will not subscribe to events.
|
|
19
|
+
*/
|
|
20
|
+
fieldName?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Callback fired when a value is received for this field from the smart paste event.
|
|
23
|
+
*
|
|
24
|
+
* @param value - The new value from the smart paste event
|
|
25
|
+
*/
|
|
26
|
+
onValueChange: (value: any) => void;
|
|
27
|
+
/**
|
|
28
|
+
* Whether the smart paste subscription is enabled.
|
|
29
|
+
* When false, the hook will not listen for smart paste events.
|
|
30
|
+
*
|
|
31
|
+
* @default true
|
|
32
|
+
*/
|
|
33
|
+
enabled?: boolean;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Options for subscribing to smart paste events in class components.
|
|
37
|
+
*/
|
|
38
|
+
export interface KendoPasteSubscriptionOptions {
|
|
39
|
+
/**
|
|
40
|
+
* The field name to listen for in the smart paste event.
|
|
41
|
+
*/
|
|
42
|
+
fieldName?: string;
|
|
43
|
+
/**
|
|
44
|
+
* Callback fired when a value is received for this field from the smart paste event.
|
|
45
|
+
*/
|
|
46
|
+
onValueChange: (value: any) => void;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Result of subscribing to smart paste events, used to unsubscribe later.
|
|
50
|
+
*/
|
|
51
|
+
export interface KendoPasteSubscription {
|
|
52
|
+
/**
|
|
53
|
+
* Unsubscribe from smart paste events.
|
|
54
|
+
* Call this in componentWillUnmount to clean up the event listener.
|
|
55
|
+
*/
|
|
56
|
+
unsubscribe: () => void;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* Subscribe to smart paste events for class components.
|
|
60
|
+
* Call this in componentDidMount and store the result.
|
|
61
|
+
* Call unsubscribe() in componentWillUnmount.
|
|
62
|
+
*
|
|
63
|
+
* @param element - The DOM element to use for finding the event target
|
|
64
|
+
* @param options - Configuration options for the smart paste subscription
|
|
65
|
+
* @returns A subscription object with an unsubscribe method
|
|
66
|
+
*
|
|
67
|
+
* @example
|
|
68
|
+
* ```tsx
|
|
69
|
+
* class MyComponent extends React.Component {
|
|
70
|
+
* private KendoPasteSubscription?: KendoPasteSubscription;
|
|
71
|
+
*
|
|
72
|
+
* componentDidMount() {
|
|
73
|
+
* this.KendoPasteSubscription = subscribeToKendoPaste(this.element, {
|
|
74
|
+
* fieldName: this.props.name,
|
|
75
|
+
* onValueChange: (value) => this.handleSmartPasteValue(value)
|
|
76
|
+
* });
|
|
77
|
+
* }
|
|
78
|
+
*
|
|
79
|
+
* componentWillUnmount() {
|
|
80
|
+
* this.KendoPasteSubscription?.unsubscribe();
|
|
81
|
+
* }
|
|
82
|
+
* }
|
|
83
|
+
* ```
|
|
84
|
+
*/
|
|
85
|
+
export declare function subscribeToKendoPaste(element: Element | null | undefined, options: KendoPasteSubscriptionOptions): KendoPasteSubscription;
|
|
86
|
+
/**
|
|
87
|
+
* A React hook that subscribes a component to smart paste events.
|
|
88
|
+
* When a SmartPasteButton dispatches a populate event, this hook will
|
|
89
|
+
* call the onValueChange callback if the event contains a value for the specified field.
|
|
90
|
+
*
|
|
91
|
+
* The field is identified by the `name` or `id` prop of the component.
|
|
92
|
+
* Works with both KendoReact Form components and native HTML form elements.
|
|
93
|
+
*
|
|
94
|
+
* @param elementRef - A ref to the DOM element that will be used to find the event target
|
|
95
|
+
* @param options - Configuration options for the smart paste subscription
|
|
96
|
+
*
|
|
97
|
+
* @example
|
|
98
|
+
* ```tsx
|
|
99
|
+
* const inputRef = React.useRef<HTMLInputElement>(null);
|
|
100
|
+
* const [value, setValue] = React.useState('');
|
|
101
|
+
*
|
|
102
|
+
* // Using name prop as field identifier
|
|
103
|
+
* useKendoPaste(inputRef, {
|
|
104
|
+
* fieldName: 'firstName', // matches the name prop
|
|
105
|
+
* onValueChange: (newValue) => setValue(newValue)
|
|
106
|
+
* });
|
|
107
|
+
*
|
|
108
|
+
* return <input ref={inputRef} name="firstName" value={value} onChange={(e) => setValue(e.target.value)} />;
|
|
109
|
+
* ```
|
|
110
|
+
*/
|
|
111
|
+
export declare function useKendoPaste(elementRef: React.RefObject<Element | null>, options: UseKendoPasteOptions): void;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const N=require("react"),i=require("./KendoPasteEvent.js");function T(t){const n=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(t){for(const e in t)if(e!=="default"){const o=Object.getOwnPropertyDescriptor(t,e);Object.defineProperty(n,e,o.get?o:{enumerable:!0,get:()=>t[e]})}}return n.default=t,Object.freeze(n)}const d=T(N);function _(t,n){const{fieldName:e,onValueChange:o}=n;if(!t||!e)return{unsubscribe:()=>{}};const s=l(t),c=u=>{const a=u,{fieldValues:r}=a.detail;if(r&&e in r){const f=r[e];o(f)}};return s.addEventListener(i.KENDO_PASTE_EVENT_NAME,c),{unsubscribe:()=>{s.removeEventListener(i.KENDO_PASTE_EVENT_NAME,c)}}}function g(t,n){const{fieldName:e,onValueChange:o,enabled:s=!0}=n,c=d.useRef(o);d.useEffect(()=>{c.current=o},[o]),d.useEffect(()=>{if(!s||!e)return;const u=t.current;if(!u)return;const a=l(u),r=f=>{const b=f,{fieldValues:E}=b.detail;if(E&&e in E){const v=E[e];c.current(v)}};return a.addEventListener(i.KENDO_PASTE_EVENT_NAME,r),()=>{a.removeEventListener(i.KENDO_PASTE_EVENT_NAME,r)}},[t,e,s])}function l(t){const n=t.closest("form");if(n)return n;const e=t.closest(".k-form");return e||document.body}exports.subscribeToKendoPaste=_;exports.useKendoPaste=g;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import * as l from "react";
|
|
9
|
+
import { KENDO_PASTE_EVENT_NAME as i } from "./KendoPasteEvent.mjs";
|
|
10
|
+
function g(n, t) {
|
|
11
|
+
const { fieldName: e, onValueChange: r } = t;
|
|
12
|
+
if (!n || !e)
|
|
13
|
+
return { unsubscribe: () => {
|
|
14
|
+
} };
|
|
15
|
+
const s = E(n), u = (c) => {
|
|
16
|
+
const a = c, { fieldValues: o } = a.detail;
|
|
17
|
+
if (o && e in o) {
|
|
18
|
+
const f = o[e];
|
|
19
|
+
r(f);
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
return s.addEventListener(i, u), {
|
|
23
|
+
unsubscribe: () => {
|
|
24
|
+
s.removeEventListener(i, u);
|
|
25
|
+
}
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
function T(n, t) {
|
|
29
|
+
const { fieldName: e, onValueChange: r, enabled: s = !0 } = t, u = l.useRef(r);
|
|
30
|
+
l.useEffect(() => {
|
|
31
|
+
u.current = r;
|
|
32
|
+
}, [r]), l.useEffect(() => {
|
|
33
|
+
if (!s || !e)
|
|
34
|
+
return;
|
|
35
|
+
const c = n.current;
|
|
36
|
+
if (!c)
|
|
37
|
+
return;
|
|
38
|
+
const a = E(c), o = (f) => {
|
|
39
|
+
const v = f, { fieldValues: d } = v.detail;
|
|
40
|
+
if (d && e in d) {
|
|
41
|
+
const m = d[e];
|
|
42
|
+
u.current(m);
|
|
43
|
+
}
|
|
44
|
+
};
|
|
45
|
+
return a.addEventListener(i, o), () => {
|
|
46
|
+
a.removeEventListener(i, o);
|
|
47
|
+
};
|
|
48
|
+
}, [n, e, s]);
|
|
49
|
+
}
|
|
50
|
+
function E(n) {
|
|
51
|
+
const t = n.closest("form");
|
|
52
|
+
if (t)
|
|
53
|
+
return t;
|
|
54
|
+
const e = n.closest(".k-form");
|
|
55
|
+
return e || document.body;
|
|
56
|
+
}
|
|
57
|
+
export {
|
|
58
|
+
g as subscribeToKendoPaste,
|
|
59
|
+
T as useKendoPaste
|
|
60
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-common",
|
|
3
|
-
"version": "13.4.0-develop.
|
|
3
|
+
"version": "13.4.0-develop.5",
|
|
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",
|
package/theme.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={sizeMap:{small:"sm",medium:"md",large:"lg"},roundedMap:{small:"sm",medium:"md",large:"lg",full:"full"},orientationMap:{vertical:"vstack",horizontal:"hstack"}};exports.kendoThemeMaps=e;
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={sizeMap:{small:"sm",medium:"md",large:"lg"},roundedMap:{small:"sm",medium:"md",large:"lg",full:"full",none:"none"},orientationMap:{vertical:"vstack",horizontal:"hstack"}};exports.kendoThemeMaps=e;
|
package/theme.mjs
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
|
-
const
|
|
8
|
+
const e = {
|
|
9
9
|
sizeMap: {
|
|
10
10
|
small: "sm",
|
|
11
11
|
medium: "md",
|
|
@@ -15,7 +15,8 @@ const l = {
|
|
|
15
15
|
small: "sm",
|
|
16
16
|
medium: "md",
|
|
17
17
|
large: "lg",
|
|
18
|
-
full: "full"
|
|
18
|
+
full: "full",
|
|
19
|
+
none: "none"
|
|
19
20
|
},
|
|
20
21
|
orientationMap: {
|
|
21
22
|
vertical: "vstack",
|
|
@@ -23,5 +24,5 @@ const l = {
|
|
|
23
24
|
}
|
|
24
25
|
};
|
|
25
26
|
export {
|
|
26
|
-
|
|
27
|
+
e as kendoThemeMaps
|
|
27
28
|
};
|
package/unstyled/json-classes.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={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"},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",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;
|