@progress/kendo-react-common 8.4.0-develop.3 → 8.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/classNames.js +1 -1
- package/classNames.mjs +8 -7
- package/dist/cdn/js/kendo-react-common.js +1 -1
- package/index.d.mts +12 -6
- package/index.d.ts +12 -6
- package/index.js +1 -1
- package/index.mjs +205 -204
- package/package.json +1 -1
- package/unstyled/buttons.js +1 -1
- package/unstyled/buttons.mjs +115 -87
- package/unstyled/dateinputs.js +1 -1
- package/unstyled/dateinputs.mjs +99 -93
- package/unstyled/dropdowns.js +1 -1
- package/unstyled/dropdowns.mjs +94 -92
- package/unstyled/form.js +1 -1
- package/unstyled/form.mjs +20 -22
- package/unstyled/inputs.js +1 -1
- package/unstyled/inputs.mjs +77 -87
- package/unstyled/interfaces/common.js +1 -1
- package/unstyled/interfaces/common.mjs +1 -1
- package/unstyled/json-classes.js +1 -1
- package/unstyled/json-classes.mjs +7 -6
package/unstyled/inputs.mjs
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
"use client";
|
|
9
|
-
import { getClassByName as
|
|
9
|
+
import { getClassByName as g } from "./interfaces/common.mjs";
|
|
10
10
|
import { base as i, inputs as f, sizeMap as c, states as u, containers as z, elements as G, fillModeMap as x, roundedMap as v, orientationMap as b } from "./json-classes.mjs";
|
|
11
|
-
const
|
|
11
|
+
const s = `${i.prefix}-${f.input}`, y = `${i.prefix}-${f.maskedtextbox}`, m = `${i.prefix}-${f.radio}`, N = `${i.prefix}-${f.textbox}`, h = `${i.prefix}-${f.input}-${f.prefix}`, p = `${i.prefix}-${f.input}-${f.suffix}`, C = {
|
|
12
12
|
input: {
|
|
13
13
|
radio: m,
|
|
14
14
|
size: {
|
|
@@ -23,30 +23,30 @@ const d = `${i.prefix}-${f.input}`, y = `${i.prefix}-${f.maskedtextbox}`, m = `$
|
|
|
23
23
|
wrap: `${m}-${z.wrap}`,
|
|
24
24
|
label: `${m}-${G.label}`
|
|
25
25
|
}, j = {
|
|
26
|
-
input: (
|
|
27
|
-
var
|
|
28
|
-
const { size:
|
|
26
|
+
input: (d) => {
|
|
27
|
+
var $;
|
|
28
|
+
const { size: t, invalid: a, checked: l, c: o = C } = d, n = o.input;
|
|
29
29
|
return {
|
|
30
|
-
[
|
|
31
|
-
[
|
|
32
|
-
[`${(
|
|
33
|
-
[
|
|
34
|
-
[
|
|
30
|
+
[n == null ? void 0 : n.radio]: !0,
|
|
31
|
+
[n == null ? void 0 : n.size[t]]: n == null ? void 0 : n.size[t],
|
|
32
|
+
[`${($ = n == null ? void 0 : n.size) == null ? void 0 : $.prefix}${t}`]: t && !(n != null && n.size[t]),
|
|
33
|
+
[n == null ? void 0 : n.invalid]: a,
|
|
34
|
+
[n == null ? void 0 : n.checked]: l
|
|
35
35
|
};
|
|
36
36
|
},
|
|
37
|
-
label: (
|
|
38
|
-
const { c:
|
|
37
|
+
label: (d) => {
|
|
38
|
+
const { c: t = C } = d;
|
|
39
39
|
return {
|
|
40
|
-
[
|
|
40
|
+
[t == null ? void 0 : t.label]: !0
|
|
41
41
|
};
|
|
42
42
|
},
|
|
43
|
-
wrap: (
|
|
44
|
-
const { c:
|
|
43
|
+
wrap: (d) => {
|
|
44
|
+
const { c: t = C } = d;
|
|
45
45
|
return {
|
|
46
|
-
[
|
|
46
|
+
[t == null ? void 0 : t.wrap]: !0
|
|
47
47
|
};
|
|
48
48
|
}
|
|
49
|
-
},
|
|
49
|
+
}, B = {
|
|
50
50
|
ul: {
|
|
51
51
|
main: `${m}-${z.list}`,
|
|
52
52
|
horizontal: `${i.prefix}-${z.list}-${u.horizontal}`,
|
|
@@ -57,34 +57,34 @@ const d = `${i.prefix}-${f.input}`, y = `${i.prefix}-${f.maskedtextbox}`, m = `$
|
|
|
57
57
|
disabled: `${i.prefix}-${u.disabled}`
|
|
58
58
|
}
|
|
59
59
|
}, A = {
|
|
60
|
-
ul: (
|
|
61
|
-
const { horizontal:
|
|
60
|
+
ul: (d) => {
|
|
61
|
+
const { horizontal: t, vertical: a, c: l = B } = d, o = l.ul;
|
|
62
62
|
return {
|
|
63
63
|
[o == null ? void 0 : o.main]: !0,
|
|
64
|
-
[o == null ? void 0 : o.horizontal]:
|
|
64
|
+
[o == null ? void 0 : o.horizontal]: t,
|
|
65
65
|
[o == null ? void 0 : o.vertical]: a
|
|
66
66
|
};
|
|
67
67
|
},
|
|
68
|
-
item: (
|
|
69
|
-
const { disabled:
|
|
68
|
+
item: (d) => {
|
|
69
|
+
const { disabled: t, c: a = B } = d, l = a.item;
|
|
70
70
|
return {
|
|
71
|
-
[
|
|
72
|
-
[
|
|
71
|
+
[l == null ? void 0 : l.main]: !0,
|
|
72
|
+
[l == null ? void 0 : l.disabled]: t
|
|
73
73
|
};
|
|
74
74
|
}
|
|
75
|
-
},
|
|
75
|
+
}, R = {
|
|
76
76
|
wrapper: {
|
|
77
77
|
main: y,
|
|
78
|
-
input:
|
|
78
|
+
input: s,
|
|
79
79
|
size: {
|
|
80
|
-
small: `${
|
|
81
|
-
medium: `${
|
|
82
|
-
large: `${
|
|
80
|
+
small: `${s}-${c.small}`,
|
|
81
|
+
medium: `${s}-${c.medium}`,
|
|
82
|
+
large: `${s}-${c.large}`
|
|
83
83
|
},
|
|
84
84
|
fillMode: {
|
|
85
|
-
solid: `${
|
|
86
|
-
outline: `${
|
|
87
|
-
flat: `${
|
|
85
|
+
solid: `${s}-${x.solid}`,
|
|
86
|
+
outline: `${s}-${x.outline}`,
|
|
87
|
+
flat: `${s}-${x.flat}`
|
|
88
88
|
},
|
|
89
89
|
rounded: {
|
|
90
90
|
small: `${i.prefix}-${i.rounded}-${v.small}`,
|
|
@@ -95,41 +95,36 @@ const d = `${i.prefix}-${f.input}`, y = `${i.prefix}-${f.maskedtextbox}`, m = `$
|
|
|
95
95
|
invalid: `${i.prefix}-${u.invalid}`,
|
|
96
96
|
isRtl: `${i.prefix}-${i.rtl}`
|
|
97
97
|
},
|
|
98
|
-
|
|
98
|
+
inputInner: `${s}-${f.inner}`
|
|
99
99
|
}, D = {
|
|
100
|
-
wrapper: (
|
|
101
|
-
const { invalid:
|
|
100
|
+
wrapper: (d) => {
|
|
101
|
+
const { invalid: t, disabled: a, size: l, fillMode: o, rounded: n, c: $ = R } = d, r = $.wrapper;
|
|
102
102
|
return {
|
|
103
103
|
[r.main]: !0,
|
|
104
104
|
[r.input]: !0,
|
|
105
|
-
[r.size[
|
|
106
|
-
[`${
|
|
105
|
+
[r.size[l]]: r.size[l],
|
|
106
|
+
[`${s}-${l}`]: !r.size[l],
|
|
107
107
|
[r.fillMode[o]]: r.fillMode[o],
|
|
108
|
-
[r.rounded[
|
|
109
|
-
[`${i.prefix}-${i.rounded}-${
|
|
108
|
+
[r.rounded[n]]: r.rounded[n],
|
|
109
|
+
[`${i.prefix}-${i.rounded}-${n}`]: n && !r.rounded[n],
|
|
110
110
|
[r.disabled]: a,
|
|
111
|
-
[r.invalid]:
|
|
111
|
+
[r.invalid]: t
|
|
112
112
|
};
|
|
113
113
|
},
|
|
114
|
-
|
|
115
|
-
const { c: l = B } = $;
|
|
116
|
-
return {
|
|
117
|
-
[l.input]: !0
|
|
118
|
-
};
|
|
119
|
-
}
|
|
114
|
+
inputInner: g(R, "inputInner")
|
|
120
115
|
}, M = {
|
|
121
116
|
wrapper: {
|
|
122
117
|
main: N,
|
|
123
|
-
input:
|
|
118
|
+
input: s,
|
|
124
119
|
size: {
|
|
125
|
-
small: `${
|
|
126
|
-
medium: `${
|
|
127
|
-
large: `${
|
|
120
|
+
small: `${s}-${c.small}`,
|
|
121
|
+
medium: `${s}-${c.medium}`,
|
|
122
|
+
large: `${s}-${c.large}`
|
|
128
123
|
},
|
|
129
124
|
fillMode: {
|
|
130
|
-
solid: `${
|
|
131
|
-
outline: `${
|
|
132
|
-
flat: `${
|
|
125
|
+
solid: `${s}-${x.solid}`,
|
|
126
|
+
outline: `${s}-${x.outline}`,
|
|
127
|
+
flat: `${s}-${x.flat}`
|
|
133
128
|
},
|
|
134
129
|
rounded: {
|
|
135
130
|
small: `${i.prefix}-${i.rounded}-${v.small}`,
|
|
@@ -142,7 +137,7 @@ const d = `${i.prefix}-${f.input}`, y = `${i.prefix}-${f.maskedtextbox}`, m = `$
|
|
|
142
137
|
invalid: `${i.prefix}-${u.invalid}`,
|
|
143
138
|
isRtl: `${i.prefix}-${i.rtl}`
|
|
144
139
|
},
|
|
145
|
-
|
|
140
|
+
inputInner: `${s}-${f.inner}`,
|
|
146
141
|
prefix: {
|
|
147
142
|
main: h,
|
|
148
143
|
orientation: {
|
|
@@ -158,46 +153,41 @@ const d = `${i.prefix}-${f.input}`, y = `${i.prefix}-${f.maskedtextbox}`, m = `$
|
|
|
158
153
|
}
|
|
159
154
|
}
|
|
160
155
|
}, E = {
|
|
161
|
-
wrapper: (
|
|
162
|
-
const { disabled:
|
|
156
|
+
wrapper: (d) => {
|
|
157
|
+
const { disabled: t, invalid: a, focused: l, required: o, size: n, fillMode: $, rounded: r, isRtl: q, c: T = M } = d, e = T.wrapper;
|
|
163
158
|
return {
|
|
164
159
|
[e == null ? void 0 : e.main]: !0,
|
|
165
160
|
[e == null ? void 0 : e.input]: !0,
|
|
166
|
-
[e == null ? void 0 : e.size[
|
|
167
|
-
[`${
|
|
168
|
-
[e == null ? void 0 : e.fillMode[
|
|
161
|
+
[e == null ? void 0 : e.size[n]]: e == null ? void 0 : e.size[n],
|
|
162
|
+
[`${s}-${n}`]: n && !(e != null && e.size[n]),
|
|
163
|
+
[e == null ? void 0 : e.fillMode[$]]: e == null ? void 0 : e.fillMode[$],
|
|
169
164
|
[e == null ? void 0 : e.rounded[r]]: e == null ? void 0 : e.rounded[r],
|
|
170
165
|
[`${i.prefix}-${i.rounded}-${r}`]: r && !(e != null && e.rounded[r]),
|
|
171
|
-
[e == null ? void 0 : e.disabled]:
|
|
172
|
-
[e == null ? void 0 : e.focused]:
|
|
166
|
+
[e == null ? void 0 : e.disabled]: t,
|
|
167
|
+
[e == null ? void 0 : e.focused]: l,
|
|
173
168
|
[e == null ? void 0 : e.required]: o,
|
|
174
169
|
[e == null ? void 0 : e.invalid]: a,
|
|
175
|
-
[e == null ? void 0 : e.isRtl]:
|
|
170
|
+
[e == null ? void 0 : e.isRtl]: q
|
|
176
171
|
};
|
|
177
172
|
},
|
|
178
|
-
|
|
179
|
-
|
|
173
|
+
inputInner: g(M, "inputInner"),
|
|
174
|
+
prefix: (d) => {
|
|
175
|
+
const { orientation: t, c: a = M } = d, l = a.prefix;
|
|
180
176
|
return {
|
|
181
|
-
[l.
|
|
177
|
+
[l.main]: !0,
|
|
178
|
+
[l.orientation[t]]: l.orientation[t]
|
|
182
179
|
};
|
|
183
180
|
},
|
|
184
|
-
|
|
185
|
-
const { orientation:
|
|
181
|
+
suffix: (d) => {
|
|
182
|
+
const { orientation: t, c: a = M } = d, l = a.suffix;
|
|
186
183
|
return {
|
|
187
|
-
[
|
|
188
|
-
[
|
|
189
|
-
};
|
|
190
|
-
},
|
|
191
|
-
suffix: ($) => {
|
|
192
|
-
const { orientation: l, c: a = M } = $, n = a.suffix;
|
|
193
|
-
return {
|
|
194
|
-
[n == null ? void 0 : n.main]: !0,
|
|
195
|
-
[n == null ? void 0 : n.orientation[l]]: n == null ? void 0 : n.orientation[l]
|
|
184
|
+
[l == null ? void 0 : l.main]: !0,
|
|
185
|
+
[l == null ? void 0 : l.orientation[t]]: l == null ? void 0 : l.orientation[t]
|
|
196
186
|
};
|
|
197
187
|
}
|
|
198
|
-
},
|
|
188
|
+
}, k = {
|
|
199
189
|
input: {
|
|
200
|
-
main: `${
|
|
190
|
+
main: `${s} ${s}-${c.medium} ${i.prefix}-${i.rounded}-${v.medium} ${s}-${x.solid}`,
|
|
201
191
|
disabled: `${i.prefix}-${u.disabled}`,
|
|
202
192
|
required: `${i.prefix}-${u.required}`,
|
|
203
193
|
invalid: `${i.prefix}-${u.invalid}`,
|
|
@@ -205,21 +195,21 @@ const d = `${i.prefix}-${f.input}`, y = `${i.prefix}-${f.maskedtextbox}`, m = `$
|
|
|
205
195
|
},
|
|
206
196
|
clearButton: `${i.prefix}-${i.clear}-${i.value}`
|
|
207
197
|
}, F = {
|
|
208
|
-
input: (
|
|
209
|
-
const { disabled:
|
|
198
|
+
input: (d) => {
|
|
199
|
+
const { disabled: t, invalid: a, required: l, isRtl: o, c: n = k } = d, $ = n.input;
|
|
210
200
|
return {
|
|
211
|
-
[
|
|
212
|
-
[
|
|
213
|
-
[
|
|
214
|
-
[
|
|
215
|
-
[
|
|
201
|
+
[$ == null ? void 0 : $.main]: !0,
|
|
202
|
+
[$ == null ? void 0 : $.disabled]: t,
|
|
203
|
+
[$ == null ? void 0 : $.required]: l,
|
|
204
|
+
[$ == null ? void 0 : $.invalid]: a,
|
|
205
|
+
[$ == null ? void 0 : $.isRtl]: o
|
|
216
206
|
};
|
|
217
207
|
},
|
|
218
|
-
clearButton:
|
|
208
|
+
clearButton: g(k, "clearButton")
|
|
219
209
|
};
|
|
220
210
|
export {
|
|
221
211
|
C as radioButtonClasses,
|
|
222
|
-
|
|
212
|
+
B as radioGroupClasses,
|
|
223
213
|
F as uInput,
|
|
224
214
|
D as uMaskedTextBox,
|
|
225
215
|
j as uRadioButton,
|
|
@@ -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 client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=(e,t)=>r=>{const{c:s=e}=r;return{[s[t||""]
|
|
8
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=(e,t)=>r=>{const{c:s=e}=r;return{[s[t]||""]:!0}};exports.getClassByName=n;
|
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 client";"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",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"},m={height:"height",width:"width"},f={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"},x={increase:"increase",decrease:"decrease",cancel:"cancel",accept:"accept",split:"split"},h={active:"active",adaptive:"adaptive",first:"first",focus:"focus",pending:"pending",last:"last",draggable:"draggable",filterable:"filterable",grouping:"grouping",selected:"selected",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",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=`${e.prefix}-${i.input}`,$=`${e.prefix}-${t.calendar}`,M=`${e.prefix}-${t.maskedtextbox}`,z=`${e.prefix}-${i.radio}`,I=`${e.prefix}-${o.button}`,L=`${e.prefix}-${t.menu}`,D=`${e.prefix}-${r.picker}`,R=`${e.prefix}-${t.dropdownlist}`,S=`${e.prefix}-${t.combobox}`,U=`${e.prefix}-${a.prefix}`,j={base:e,actions:x,animation:b,sizeMap:l,components:t,cssUtils:n,directionMap:u,fillModeMap:s,themeColorMap:c,roundedMap:d,orientationMap:p,elements:o,states:h,dimensions:m,containers:r,cursor:f,inputs:i,dateInputs:g,labels:w,forms:k,popup:y,icon:v,grid:a};exports.actions=x;exports.animationStyles=b;exports.base=e;exports.buttonPrefix=I;exports.calendarPrefix=$;exports.comboBoxPrefix=S;exports.components=t;exports.containers=r;exports.cssUtils=n;exports.cursor=f;exports.dateInputs=g;exports.ddbPrefix=L;exports.dimensions=m;exports.directionMap=u;exports.dropDownListPrefix=R;exports.elements=o;exports.fillModeMap=s;exports.forms=k;exports.grid=a;exports.gridPrefix=U;exports.icon=v;exports.inputPrefix=P;exports.inputs=i;exports.jsonTheme=j;exports.labels=w;exports.maskedPrefix=M;exports.orientationMap=p;exports.pickerPrefix=D;exports.popup=y;exports.radioPrefix=z;exports.roundedMap=d;exports.sizeMap=l;exports.states=h;exports.themeColorMap=c;
|
|
8
|
+
"use client";"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"},m={height:"height",width:"width"},f={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"},x={increase:"increase",decrease:"decrease",cancel:"cancel",accept:"accept",split:"split"},h={active:"active",adaptive:"adaptive",first:"first",focus:"focus",pending:"pending",last:"last",draggable:"draggable",filterable:"filterable",grouping:"grouping",selected:"selected",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",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=`${e.prefix}-${i.input}`,$=`${e.prefix}-${t.calendar}`,M=`${e.prefix}-${t.maskedtextbox}`,z=`${e.prefix}-${i.radio}`,I=`${e.prefix}-${o.button}`,L=`${e.prefix}-${t.menu}`,D=`${e.prefix}-${r.picker}`,R=`${e.prefix}-${t.dropdownlist}`,S=`${e.prefix}-${t.combobox}`,U=`${e.prefix}-${a.prefix}`,j={base:e,actions:x,animation:b,sizeMap:l,components:t,cssUtils:n,directionMap:u,fillModeMap:s,themeColorMap:c,roundedMap:d,orientationMap:p,elements:o,states:h,dimensions:m,containers:r,cursor:f,inputs:i,dateInputs:g,labels:w,forms:k,popup:y,icon:v,grid:a};exports.actions=x;exports.animationStyles=b;exports.base=e;exports.buttonPrefix=I;exports.calendarPrefix=$;exports.comboBoxPrefix=S;exports.components=t;exports.containers=r;exports.cssUtils=n;exports.cursor=f;exports.dateInputs=g;exports.ddbPrefix=L;exports.dimensions=m;exports.directionMap=u;exports.dropDownListPrefix=R;exports.elements=o;exports.fillModeMap=s;exports.forms=k;exports.grid=a;exports.gridPrefix=U;exports.icon=v;exports.inputPrefix=P;exports.inputs=i;exports.jsonTheme=j;exports.labels=w;exports.maskedPrefix=M;exports.orientationMap=p;exports.pickerPrefix=D;exports.popup=y;exports.radioPrefix=z;exports.roundedMap=d;exports.sizeMap=l;exports.states=h;exports.themeColorMap=c;
|
|
@@ -25,6 +25,7 @@ const e = {
|
|
|
25
25
|
center: "center",
|
|
26
26
|
hbox: "hbox",
|
|
27
27
|
vstack: "vstack",
|
|
28
|
+
hstack: "hstack",
|
|
28
29
|
overflow: "overflow"
|
|
29
30
|
}, t = {
|
|
30
31
|
actionsheet: "actionsheet",
|
|
@@ -126,13 +127,13 @@ const e = {
|
|
|
126
127
|
label: "label",
|
|
127
128
|
ul: "ul",
|
|
128
129
|
caption: "caption"
|
|
129
|
-
},
|
|
130
|
+
}, h = {
|
|
130
131
|
increase: "increase",
|
|
131
132
|
decrease: "decrease",
|
|
132
133
|
cancel: "cancel",
|
|
133
134
|
accept: "accept",
|
|
134
135
|
split: "split"
|
|
135
|
-
},
|
|
136
|
+
}, x = {
|
|
136
137
|
active: "active",
|
|
137
138
|
adaptive: "adaptive",
|
|
138
139
|
first: "first",
|
|
@@ -259,7 +260,7 @@ const e = {
|
|
|
259
260
|
pager: "pager"
|
|
260
261
|
}, $ = `${e.prefix}-${i.input}`, z = `${e.prefix}-${t.calendar}`, P = `${e.prefix}-${t.maskedtextbox}`, M = `${e.prefix}-${i.radio}`, I = `${e.prefix}-${a.button}`, L = `${e.prefix}-${t.menu}`, R = `${e.prefix}-${r.picker}`, D = `${e.prefix}-${t.dropdownlist}`, H = `${e.prefix}-${t.combobox}`, U = `${e.prefix}-${o.prefix}`, V = {
|
|
261
262
|
base: e,
|
|
262
|
-
actions:
|
|
263
|
+
actions: h,
|
|
263
264
|
animation: b,
|
|
264
265
|
sizeMap: l,
|
|
265
266
|
components: t,
|
|
@@ -270,7 +271,7 @@ const e = {
|
|
|
270
271
|
roundedMap: d,
|
|
271
272
|
orientationMap: p,
|
|
272
273
|
elements: a,
|
|
273
|
-
states:
|
|
274
|
+
states: x,
|
|
274
275
|
dimensions: m,
|
|
275
276
|
containers: r,
|
|
276
277
|
cursor: u,
|
|
@@ -283,7 +284,7 @@ const e = {
|
|
|
283
284
|
grid: o
|
|
284
285
|
};
|
|
285
286
|
export {
|
|
286
|
-
|
|
287
|
+
h as actions,
|
|
287
288
|
b as animationStyles,
|
|
288
289
|
e as base,
|
|
289
290
|
I as buttonPrefix,
|
|
@@ -315,6 +316,6 @@ export {
|
|
|
315
316
|
M as radioPrefix,
|
|
316
317
|
d as roundedMap,
|
|
317
318
|
l as sizeMap,
|
|
318
|
-
|
|
319
|
+
x as states,
|
|
319
320
|
c as themeColorMap
|
|
320
321
|
};
|