@progress/kendo-theme-fluent 5.7.0

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 (427) hide show
  1. package/LICENSE.md +17 -0
  2. package/README.md +72 -0
  3. package/dist/all.scss +7 -0
  4. package/package.json +54 -0
  5. package/scss/action-buttons/_layout.scss +54 -0
  6. package/scss/action-buttons/_theme.scss +14 -0
  7. package/scss/action-buttons/_variables.scss +24 -0
  8. package/scss/action-buttons/index.scss +26 -0
  9. package/scss/action-sheet/_layout.scss +233 -0
  10. package/scss/action-sheet/_theme.scss +89 -0
  11. package/scss/action-sheet/_variables.scss +163 -0
  12. package/scss/action-sheet/index.scss +27 -0
  13. package/scss/all.scss +4 -0
  14. package/scss/appbar/_layout.scss +119 -0
  15. package/scss/appbar/_theme.scss +40 -0
  16. package/scss/appbar/_variables.scss +106 -0
  17. package/scss/appbar/index.scss +25 -0
  18. package/scss/autocomplete/_layout.scss +4 -0
  19. package/scss/autocomplete/_theme.scss +4 -0
  20. package/scss/autocomplete/_variables.scss +1 -0
  21. package/scss/autocomplete/index.scss +28 -0
  22. package/scss/avatar/_layout.scss +77 -0
  23. package/scss/avatar/_theme.scss +20 -0
  24. package/scss/avatar/_variables.scss +105 -0
  25. package/scss/avatar/index.scss +25 -0
  26. package/scss/badge/_layout.scss +155 -0
  27. package/scss/badge/_theme.scss +31 -0
  28. package/scss/badge/_variables.scss +159 -0
  29. package/scss/badge/index.scss +23 -0
  30. package/scss/bottom-navigation/_layout.scss +130 -0
  31. package/scss/bottom-navigation/_theme.scss +92 -0
  32. package/scss/bottom-navigation/_variables.scss +178 -0
  33. package/scss/bottom-navigation/index.scss +25 -0
  34. package/scss/breadcrumb/_layout.scss +132 -0
  35. package/scss/breadcrumb/_theme.scss +134 -0
  36. package/scss/breadcrumb/_variables.scss +170 -0
  37. package/scss/breadcrumb/index.scss +26 -0
  38. package/scss/button/_layout.scss +329 -0
  39. package/scss/button/_theme.scss +155 -0
  40. package/scss/button/_variables.scss +392 -0
  41. package/scss/button/index.scss +25 -0
  42. package/scss/calendar/_layout.scss +456 -0
  43. package/scss/calendar/_theme.scss +203 -0
  44. package/scss/calendar/_variables.scss +267 -0
  45. package/scss/calendar/index.scss +25 -0
  46. package/scss/captcha/_layout.scss +63 -0
  47. package/scss/captcha/_theme.scss +15 -0
  48. package/scss/captcha/_variables.scss +45 -0
  49. package/scss/captcha/index.scss +29 -0
  50. package/scss/card/_layout.scss +364 -0
  51. package/scss/card/_theme.scss +116 -0
  52. package/scss/card/_variables.scss +170 -0
  53. package/scss/card/index.scss +29 -0
  54. package/scss/checkbox/_layout.scss +248 -0
  55. package/scss/checkbox/_theme.scss +142 -0
  56. package/scss/checkbox/_variables.scss +234 -0
  57. package/scss/checkbox/index.scss +25 -0
  58. package/scss/chip/_layout.scss +156 -0
  59. package/scss/chip/_theme.scss +97 -0
  60. package/scss/chip/_variables.scss +210 -0
  61. package/scss/chip/index.scss +26 -0
  62. package/scss/color-preview/_layout.scss +78 -0
  63. package/scss/color-preview/_theme.scss +32 -0
  64. package/scss/color-preview/_variables.scss +36 -0
  65. package/scss/color-preview/index.scss +25 -0
  66. package/scss/coloreditor/_layout.scss +82 -0
  67. package/scss/coloreditor/_theme.scss +27 -0
  68. package/scss/coloreditor/_variables.scss +75 -0
  69. package/scss/coloreditor/index.scss +29 -0
  70. package/scss/colorgradient/_layout.scss +184 -0
  71. package/scss/colorgradient/_theme.scss +118 -0
  72. package/scss/colorgradient/_variables.scss +149 -0
  73. package/scss/colorgradient/index.scss +29 -0
  74. package/scss/colorpalette/_layout.scss +60 -0
  75. package/scss/colorpalette/_theme.scss +53 -0
  76. package/scss/colorpalette/_variables.scss +48 -0
  77. package/scss/colorpalette/index.scss +23 -0
  78. package/scss/colorpicker/_layout.scss +15 -0
  79. package/scss/colorpicker/_theme.scss +5 -0
  80. package/scss/colorpicker/_variables.scss +1 -0
  81. package/scss/colorpicker/index.scss +29 -0
  82. package/scss/combobox/_layout.scss +4 -0
  83. package/scss/combobox/_theme.scss +4 -0
  84. package/scss/combobox/_variables.scss +1 -0
  85. package/scss/combobox/index.scss +28 -0
  86. package/scss/core/_index.scss +33 -0
  87. package/scss/core/_layout.scss +13 -0
  88. package/scss/core/_theme.scss +9 -0
  89. package/scss/core/_variables.scss +132 -0
  90. package/scss/core/color-system/_index.scss +3 -0
  91. package/scss/core/color-system/_palettes.scss +316 -0
  92. package/scss/core/color-system/_variables.scss +169 -0
  93. package/scss/core/color-system/utils/_functions.scss +67 -0
  94. package/scss/core/color-system/utils/_index.scss +2 -0
  95. package/scss/core/color-system/utils/_mixins.scss +9 -0
  96. package/scss/core/functions/_index.scss +3 -0
  97. package/scss/core/functions/_strings.scss +35 -0
  98. package/scss/core/helpers/_animations.scss +708 -0
  99. package/scss/core/helpers/_asp-fallback.scss +4 -0
  100. package/scss/core/helpers/_base.scss +146 -0
  101. package/scss/core/helpers/_extra.scss +22 -0
  102. package/scss/core/helpers/_index.scss +11 -0
  103. package/scss/core/helpers/_layout.scss +64 -0
  104. package/scss/core/helpers/_loading.scss +120 -0
  105. package/scss/core/helpers/_normalize.scss +11 -0
  106. package/scss/core/helpers/_reset.scss +19 -0
  107. package/scss/core/helpers/_resizing.scss +120 -0
  108. package/scss/core/helpers/_selection.scss +27 -0
  109. package/scss/core/helpers/_spacer.scss +13 -0
  110. package/scss/core/mixins/_border-radius.scss +60 -0
  111. package/scss/core/mixins/_box-shadow.scss +7 -0
  112. package/scss/core/mixins/_decoration.scss +27 -0
  113. package/scss/core/mixins/_disabled.scss +10 -0
  114. package/scss/core/mixins/_hide-scrollbar.scss +13 -0
  115. package/scss/core/mixins/_index.scss +6 -0
  116. package/scss/core/mixins/_typography.scss +17 -0
  117. package/scss/core/module-system/_components.scss +144 -0
  118. package/scss/core/module-system/index.scss +38 -0
  119. package/scss/dataviz/_layout.scss +474 -0
  120. package/scss/dataviz/_theme.scss +150 -0
  121. package/scss/dataviz/_variables.scss +242 -0
  122. package/scss/dataviz/index.scss +27 -0
  123. package/scss/dateinput/_layout.scss +4 -0
  124. package/scss/dateinput/_theme.scss +4 -0
  125. package/scss/dateinput/_variables.scss +1 -0
  126. package/scss/dateinput/index.scss +24 -0
  127. package/scss/datepicker/_layout.scss +4 -0
  128. package/scss/datepicker/_theme.scss +4 -0
  129. package/scss/datepicker/_variables.scss +1 -0
  130. package/scss/datepicker/index.scss +28 -0
  131. package/scss/daterangepicker/_layout.scss +39 -0
  132. package/scss/daterangepicker/_theme.scss +28 -0
  133. package/scss/daterangepicker/_variables.scss +5 -0
  134. package/scss/daterangepicker/index.scss +28 -0
  135. package/scss/datetimepicker/_layout.scss +60 -0
  136. package/scss/datetimepicker/_theme.scss +4 -0
  137. package/scss/datetimepicker/_variables.scss +3 -0
  138. package/scss/datetimepicker/index.scss +30 -0
  139. package/scss/dialog/_layout.scss +71 -0
  140. package/scss/dialog/_theme.scss +21 -0
  141. package/scss/dialog/_variables.scss +46 -0
  142. package/scss/dialog/index.scss +25 -0
  143. package/scss/draggable/_layout.scss +66 -0
  144. package/scss/draggable/_theme.scss +21 -0
  145. package/scss/draggable/_variables.scss +72 -0
  146. package/scss/draggable/index.scss +23 -0
  147. package/scss/drawer/_layout.scss +271 -0
  148. package/scss/drawer/_theme.scss +94 -0
  149. package/scss/drawer/_variables.scss +132 -0
  150. package/scss/drawer/index.scss +26 -0
  151. package/scss/dropdowngrid/_layout.scss +13 -0
  152. package/scss/dropdowngrid/_theme.scss +5 -0
  153. package/scss/dropdowngrid/_variables.scss +1 -0
  154. package/scss/dropdowngrid/index.scss +33 -0
  155. package/scss/dropdownlist/_layout.scss +36 -0
  156. package/scss/dropdownlist/_theme.scss +9 -0
  157. package/scss/dropdownlist/_variables.scss +1 -0
  158. package/scss/dropdownlist/index.scss +29 -0
  159. package/scss/dropdowntree/_layout.scss +22 -0
  160. package/scss/dropdowntree/_theme.scss +6 -0
  161. package/scss/dropdowntree/_variables.scss +5 -0
  162. package/scss/dropdowntree/index.scss +28 -0
  163. package/scss/dropzone/_layout.scss +49 -0
  164. package/scss/dropzone/_theme.scss +35 -0
  165. package/scss/dropzone/_variables.scss +75 -0
  166. package/scss/dropzone/index.scss +25 -0
  167. package/scss/editor/_layout.scss +688 -0
  168. package/scss/editor/_theme.scss +101 -0
  169. package/scss/editor/_variables.scss +81 -0
  170. package/scss/editor/index.scss +32 -0
  171. package/scss/expansion-panel/_layout.scss +83 -0
  172. package/scss/expansion-panel/_theme.scss +69 -0
  173. package/scss/expansion-panel/_variables.scss +99 -0
  174. package/scss/expansion-panel/index.scss +24 -0
  175. package/scss/fab/_layout.scss +173 -0
  176. package/scss/fab/_theme.scss +201 -0
  177. package/scss/fab/_variables.scss +180 -0
  178. package/scss/fab/index.scss +28 -0
  179. package/scss/filemanager/_layout.scss +248 -0
  180. package/scss/filemanager/_theme.scss +110 -0
  181. package/scss/filemanager/_variables.scss +185 -0
  182. package/scss/filemanager/index.scss +35 -0
  183. package/scss/filter/_layout.scss +93 -0
  184. package/scss/filter/_theme.scss +25 -0
  185. package/scss/filter/_variables.scss +35 -0
  186. package/scss/filter/index.scss +31 -0
  187. package/scss/floating-label/_layout.scss +94 -0
  188. package/scss/floating-label/_theme.scss +31 -0
  189. package/scss/floating-label/_variables.scss +67 -0
  190. package/scss/floating-label/index.scss +24 -0
  191. package/scss/forms/_layout.scss +326 -0
  192. package/scss/forms/_theme.scss +44 -0
  193. package/scss/forms/_variables.scss +143 -0
  194. package/scss/forms/index.scss +30 -0
  195. package/scss/grid/_layout.scss +1268 -0
  196. package/scss/grid/_theme.scss +488 -0
  197. package/scss/grid/_variables.scss +476 -0
  198. package/scss/grid/index.scss +45 -0
  199. package/scss/icon/_layout.scss +60 -0
  200. package/scss/icon/_theme.scss +1 -0
  201. package/scss/icon/_variables.scss +18 -0
  202. package/scss/icon/index.scss +23 -0
  203. package/scss/imageeditor/_layout.scss +160 -0
  204. package/scss/imageeditor/_theme.scss +49 -0
  205. package/scss/imageeditor/_variables.scss +108 -0
  206. package/scss/imageeditor/index.scss +28 -0
  207. package/scss/index.scss +320 -0
  208. package/scss/input/_layout.scss +441 -0
  209. package/scss/input/_theme.scss +202 -0
  210. package/scss/input/_variables.scss +612 -0
  211. package/scss/input/index.scss +26 -0
  212. package/scss/list/_layout.scss +255 -0
  213. package/scss/list/_theme.scss +104 -0
  214. package/scss/list/_variables.scss +273 -0
  215. package/scss/list/index.scss +26 -0
  216. package/scss/listbox/_layout.scss +119 -0
  217. package/scss/listbox/_theme.scss +19 -0
  218. package/scss/listbox/_variables.scss +45 -0
  219. package/scss/listbox/index.scss +28 -0
  220. package/scss/listgroup/_layout.scss +189 -0
  221. package/scss/listgroup/_theme.scss +14 -0
  222. package/scss/listgroup/_variables.scss +36 -0
  223. package/scss/listgroup/index.scss +25 -0
  224. package/scss/listview/_layout.scss +149 -0
  225. package/scss/listview/_theme.scss +50 -0
  226. package/scss/listview/_variables.scss +91 -0
  227. package/scss/listview/index.scss +27 -0
  228. package/scss/loader/_layout.scss +458 -0
  229. package/scss/loader/_theme.scss +18 -0
  230. package/scss/loader/_variables.scss +143 -0
  231. package/scss/loader/index.scss +25 -0
  232. package/scss/map/_index.scss +26 -0
  233. package/scss/map/_layout.scss +134 -0
  234. package/scss/map/_theme.scss +32 -0
  235. package/scss/map/_variables.scss +88 -0
  236. package/scss/maskedtextbox/_layout.scss +6 -0
  237. package/scss/maskedtextbox/_theme.scss +6 -0
  238. package/scss/maskedtextbox/_variables.scss +1 -0
  239. package/scss/maskedtextbox/index.scss +26 -0
  240. package/scss/mediaplayer/_layout.scss +102 -0
  241. package/scss/mediaplayer/_theme.scss +29 -0
  242. package/scss/mediaplayer/_variables.scss +46 -0
  243. package/scss/mediaplayer/index.scss +27 -0
  244. package/scss/menu/_layout.scss +343 -0
  245. package/scss/menu/_theme.scss +97 -0
  246. package/scss/menu/_variables.scss +255 -0
  247. package/scss/menu/index.scss +29 -0
  248. package/scss/menu-button/_layout.scss +20 -0
  249. package/scss/menu-button/_theme.scss +1 -0
  250. package/scss/menu-button/_variables.scss +1 -0
  251. package/scss/menu-button/index.scss +26 -0
  252. package/scss/messagebox/_layout.scss +22 -0
  253. package/scss/messagebox/_theme.scss +44 -0
  254. package/scss/messagebox/_variables.scss +40 -0
  255. package/scss/messagebox/index.scss +23 -0
  256. package/scss/multiselect/_layout.scss +6 -0
  257. package/scss/multiselect/_theme.scss +6 -0
  258. package/scss/multiselect/_variables.scss +1 -0
  259. package/scss/multiselect/index.scss +31 -0
  260. package/scss/notification/_layout.scss +73 -0
  261. package/scss/notification/_theme.scss +55 -0
  262. package/scss/notification/_variables.scss +102 -0
  263. package/scss/notification/index.scss +26 -0
  264. package/scss/numerictextbox/_layout.scss +10 -0
  265. package/scss/numerictextbox/_theme.scss +6 -0
  266. package/scss/numerictextbox/_variables.scss +1 -0
  267. package/scss/numerictextbox/index.scss +27 -0
  268. package/scss/orgchart/_layout.scss +121 -0
  269. package/scss/orgchart/_theme.scss +60 -0
  270. package/scss/orgchart/_variables.scss +152 -0
  271. package/scss/orgchart/index.scss +34 -0
  272. package/scss/overlay/_layout.scss +15 -0
  273. package/scss/overlay/_theme.scss +14 -0
  274. package/scss/overlay/_variables.scss +12 -0
  275. package/scss/overlay/index.scss +23 -0
  276. package/scss/pager/_layout.scss +240 -0
  277. package/scss/pager/_theme.scss +130 -0
  278. package/scss/pager/_variables.scss +194 -0
  279. package/scss/pager/index.scss +29 -0
  280. package/scss/panelbar/_layout.scss +152 -0
  281. package/scss/panelbar/_theme.scss +245 -0
  282. package/scss/panelbar/_variables.scss +235 -0
  283. package/scss/panelbar/index.scss +26 -0
  284. package/scss/popover/_layout.scss +101 -0
  285. package/scss/popover/_theme.scss +41 -0
  286. package/scss/popover/_variables.scss +90 -0
  287. package/scss/popover/index.scss +27 -0
  288. package/scss/popup/_layout.scss +53 -0
  289. package/scss/popup/_theme.scss +14 -0
  290. package/scss/popup/_variables.scss +42 -0
  291. package/scss/popup/index.scss +23 -0
  292. package/scss/progressbar/_layout.scss +279 -0
  293. package/scss/progressbar/_theme.scss +93 -0
  294. package/scss/progressbar/_variables.scss +114 -0
  295. package/scss/progressbar/index.scss +23 -0
  296. package/scss/radio/_layout.scss +277 -0
  297. package/scss/radio/_theme.scss +125 -0
  298. package/scss/radio/_variables.scss +203 -0
  299. package/scss/radio/index.scss +26 -0
  300. package/scss/rating/_layout.scss +98 -0
  301. package/scss/rating/_theme.scss +46 -0
  302. package/scss/rating/_variables.scss +50 -0
  303. package/scss/rating/index.scss +25 -0
  304. package/scss/responsivepanel/_layout.scss +51 -0
  305. package/scss/responsivepanel/_theme.scss +5 -0
  306. package/scss/responsivepanel/_variables.scss +1 -0
  307. package/scss/responsivepanel/index.scss +25 -0
  308. package/scss/ripple/_layout.scss +53 -0
  309. package/scss/ripple/_theme.scss +5 -0
  310. package/scss/ripple/_variables.scss +1 -0
  311. package/scss/ripple/index.scss +23 -0
  312. package/scss/scheduler/_layout.scss +979 -0
  313. package/scss/scheduler/_theme.scss +249 -0
  314. package/scss/scheduler/_variables.scss +260 -0
  315. package/scss/scheduler/index.scss +34 -0
  316. package/scss/scroller/_layout.scss +84 -0
  317. package/scss/scroller/_theme.scss +8 -0
  318. package/scss/scroller/_variables.scss +1 -0
  319. package/scss/scroller/index.scss +23 -0
  320. package/scss/searchbox/_layout.scss +22 -0
  321. package/scss/searchbox/_theme.scss +9 -0
  322. package/scss/searchbox/_variables.scss +5 -0
  323. package/scss/searchbox/index.scss +27 -0
  324. package/scss/signature/_layout.scss +68 -0
  325. package/scss/signature/_theme.scss +13 -0
  326. package/scss/signature/_variables.scss +73 -0
  327. package/scss/signature/index.scss +26 -0
  328. package/scss/skeleton/_layout.scss +76 -0
  329. package/scss/skeleton/_theme.scss +22 -0
  330. package/scss/skeleton/_variables.scss +22 -0
  331. package/scss/skeleton/index.scss +23 -0
  332. package/scss/slider/_layout.scss +392 -0
  333. package/scss/slider/_theme.scss +76 -0
  334. package/scss/slider/_variables.scss +136 -0
  335. package/scss/slider/index.scss +27 -0
  336. package/scss/split-button/_layout.scss +58 -0
  337. package/scss/split-button/_theme.scss +5 -0
  338. package/scss/split-button/_variables.scss +24 -0
  339. package/scss/split-button/index.scss +26 -0
  340. package/scss/splitter/_layout.scss +208 -0
  341. package/scss/splitter/_theme.scss +36 -0
  342. package/scss/splitter/_variables.scss +66 -0
  343. package/scss/splitter/index.scss +25 -0
  344. package/scss/stepper/_layout.scss +251 -0
  345. package/scss/stepper/_theme.scss +189 -0
  346. package/scss/stepper/_variables.scss +200 -0
  347. package/scss/stepper/index.scss +26 -0
  348. package/scss/switch/_layout.scss +164 -0
  349. package/scss/switch/_theme.scss +171 -0
  350. package/scss/switch/_variables.scss +173 -0
  351. package/scss/switch/index.scss +23 -0
  352. package/scss/table/_layout.scss +289 -0
  353. package/scss/table/_theme.scss +106 -0
  354. package/scss/table/_variables.scss +169 -0
  355. package/scss/table/index.scss +30 -0
  356. package/scss/tabstrip/_layout.scss +428 -0
  357. package/scss/tabstrip/_theme.scss +102 -0
  358. package/scss/tabstrip/_variables.scss +145 -0
  359. package/scss/tabstrip/index.scss +27 -0
  360. package/scss/taskboard/_layout.scss +205 -0
  361. package/scss/taskboard/_theme.scss +83 -0
  362. package/scss/taskboard/_variables.scss +207 -0
  363. package/scss/taskboard/index.scss +31 -0
  364. package/scss/textarea/_layout.scss +6 -0
  365. package/scss/textarea/_theme.scss +6 -0
  366. package/scss/textarea/_variables.scss +0 -0
  367. package/scss/textarea/index.scss +25 -0
  368. package/scss/textbox/_layout.scss +6 -0
  369. package/scss/textbox/_theme.scss +6 -0
  370. package/scss/textbox/_variables.scss +1 -0
  371. package/scss/textbox/index.scss +25 -0
  372. package/scss/tilelayout/_layout.scss +39 -0
  373. package/scss/tilelayout/_theme.scss +18 -0
  374. package/scss/tilelayout/_variables.scss +24 -0
  375. package/scss/tilelayout/index.scss +25 -0
  376. package/scss/timepicker/_layout.scss +6 -0
  377. package/scss/timepicker/_theme.scss +6 -0
  378. package/scss/timepicker/_variables.scss +1 -0
  379. package/scss/timepicker/index.scss +28 -0
  380. package/scss/timeselector/_layout.scss +237 -0
  381. package/scss/timeselector/_theme.scss +66 -0
  382. package/scss/timeselector/_variables.scss +130 -0
  383. package/scss/timeselector/index.scss +27 -0
  384. package/scss/toolbar/_layout.scss +214 -0
  385. package/scss/toolbar/_theme.scss +66 -0
  386. package/scss/toolbar/_variables.scss +40 -0
  387. package/scss/toolbar/index.scss +28 -0
  388. package/scss/tooltip/_layout.scss +108 -0
  389. package/scss/tooltip/_theme.scss +42 -0
  390. package/scss/tooltip/_variables.scss +98 -0
  391. package/scss/tooltip/index.scss +26 -0
  392. package/scss/treelist/_layout.scss +92 -0
  393. package/scss/treelist/_theme.scss +14 -0
  394. package/scss/treelist/_variables.scss +9 -0
  395. package/scss/treelist/index.scss +26 -0
  396. package/scss/treeview/_layout.scss +160 -0
  397. package/scss/treeview/_theme.scss +102 -0
  398. package/scss/treeview/_variables.scss +164 -0
  399. package/scss/treeview/index.scss +26 -0
  400. package/scss/typography/_layout.scss +110 -0
  401. package/scss/typography/_theme.scss +15 -0
  402. package/scss/typography/_variables.scss +126 -0
  403. package/scss/typography/index.scss +23 -0
  404. package/scss/upload/_layout.scss +275 -0
  405. package/scss/upload/_theme.scss +111 -0
  406. package/scss/upload/_variables.scss +107 -0
  407. package/scss/upload/index.scss +29 -0
  408. package/scss/utils/_layout.scss +7 -0
  409. package/scss/utils/_theme.scss +1 -0
  410. package/scss/utils/_variables.scss +13 -0
  411. package/scss/utils/index.scss +23 -0
  412. package/scss/validator/_layout.scss +19 -0
  413. package/scss/validator/_theme.scss +5 -0
  414. package/scss/validator/_variables.scss +1 -0
  415. package/scss/validator/index.scss +26 -0
  416. package/scss/virtual-scroller/_layout.scss +37 -0
  417. package/scss/virtual-scroller/_theme.scss +5 -0
  418. package/scss/virtual-scroller/_variables.scss +1 -0
  419. package/scss/virtual-scroller/index.scss +23 -0
  420. package/scss/window/_layout.scss +162 -0
  421. package/scss/window/_theme.scss +31 -0
  422. package/scss/window/_variables.scss +107 -0
  423. package/scss/window/index.scss +28 -0
  424. package/scss/wizard/_layout.scss +128 -0
  425. package/scss/wizard/_theme.scss +21 -0
  426. package/scss/wizard/_variables.scss +54 -0
  427. package/scss/wizard/index.scss +27 -0
@@ -0,0 +1,612 @@
1
+ @use "../core/color-system/" as *;
2
+ @use "../core/_variables.scss" as *;
3
+ @use "../button/_variables.scss"as *;
4
+
5
+ /// Width of the input.
6
+ /// @group input
7
+ $kendo-input-width: 100% !default;
8
+
9
+ /// Width of the border around the input.
10
+ /// @group input
11
+ $kendo-input-border-width: 1px !default;
12
+
13
+ // Width of the border around the input when focused.
14
+ $kendo-input-focus-border-width: 2px !default;
15
+
16
+ /// Height of he border around the input.
17
+ /// @group input
18
+ $kendo-input-border-height: calc( $kendo-input-border-width * 2 ) !default;
19
+
20
+ /// Horizontal padding of the input.
21
+ /// @group input
22
+ $kendo-input-padding-x-sm: map-get( $kendo-spacing, 2 ) !default;
23
+ $kendo-input-padding-x-md: map-get( $kendo-spacing, 2 ) !default;
24
+ $kendo-input-padding-x-lg: map-get( $kendo-spacing, 2 ) !default;
25
+
26
+ /// Vertical padding of the input.
27
+ /// @group input
28
+ $kendo-input-padding-y-sm: map-get( $kendo-spacing, 1 ) !default;
29
+ $kendo-input-padding-y-md: map-get( $kendo-spacing, 1 ) + map-get( $kendo-spacing, thin ) !default;
30
+ $kendo-input-padding-y-lg: map-get( $kendo-spacing, 2 ) !default;
31
+
32
+ /// Font sizes of the input.
33
+ /// @group input
34
+ $kendo-input-font-size-sm: var( --kendo-font-size, inherit ) !default;
35
+ $kendo-input-font-size-md: var( --kendo-font-size, inherit ) !default;
36
+ $kendo-input-font-size-lg: var( --kendo-font-size, inherit ) !default;
37
+
38
+ /// Line heights of the input.
39
+ /// @group input
40
+ $kendo-input-line-height-sm: var( --kendo-line-height, normal ) !default;
41
+ $kendo-input-line-height-md: var( --kendo-line-height, normal ) !default;
42
+ $kendo-input-line-height-lg: var( --kendo-line-height, normal ) !default;
43
+
44
+ // Font family of the input.
45
+ $kendo-input-font-family: var( --kendo-font-family, inherit) !default;
46
+
47
+ // Font weight of the input.
48
+ $kendo-input-font-weight: var( --kendo-font-weight, normal ) !default;
49
+
50
+ // Input actions
51
+ $kendo-input-button-width-sm: calc( #{$kendo-button-line-height-sm} * 1em + #{$kendo-button-padding-y-sm} * 2 ) !default;
52
+ $kendo-input-button-width-md: calc( #{$kendo-button-line-height-md} * 1em + #{$kendo-button-padding-y-md} * 2 ) !default;
53
+ $kendo-input-button-width-lg: calc( #{$kendo-button-line-height-lg} * 1em + #{$kendo-button-padding-y-lg} * 2 ) !default;
54
+
55
+ $kendo-input-button-border-width: 1px !default;
56
+
57
+ $kendo-input-spinner-width-sm: $kendo-input-button-width-sm !default;
58
+ $kendo-input-spinner-width-md: $kendo-input-button-width-md !default;
59
+ $kendo-input-spinner-width-lg: $kendo-input-button-width-lg !default;
60
+
61
+ $kendo-input-spinner-icon-offset: null !default;
62
+
63
+ /// The text color of the solid input.
64
+ /// @group input
65
+ $kendo-input-solid-text: get-theme-color-var( neutral-160 ) !default;
66
+
67
+ /// The background color of the solid input.
68
+ /// @group input
69
+ $kendo-input-solid-bg: $white !default;
70
+
71
+ /// The border color of the solid input.
72
+ /// @group input
73
+ $kendo-input-solid-border: get-theme-color-var( neutral-130 ) !default;
74
+
75
+ /// The hover text color of the solid input.
76
+ /// @group input
77
+ $kendo-input-solid-hover-text: get-theme-color-var( neutral-190 ) !default;
78
+
79
+ /// The hover background color of the input.
80
+ /// @group input
81
+ $kendo-input-solid-hover-bg: $kendo-input-solid-bg !default;
82
+
83
+ /// The hover border color of the input.
84
+ /// @group input
85
+ $kendo-input-solid-hover-border: get-theme-color-var( neutral-160 ) !default;
86
+
87
+ /// The focus text color of the solid input.
88
+ /// @group input
89
+ $kendo-input-solid-focus-text: $kendo-input-solid-text !default;
90
+
91
+ /// The focus background color of the solid input.
92
+ /// @group input
93
+ $kendo-input-solid-focus-bg: $kendo-input-solid-bg !default;
94
+
95
+ /// The focus border color of the solid input.
96
+ /// @group input
97
+ $kendo-input-solid-focus-border: get-theme-color-var( primary-100 ) !default;
98
+
99
+ /// The hover-focus text color of the input.
100
+ /// @group input
101
+ $kendo-input-solid-hover-focus-text: $kendo-input-solid-focus-text !default;
102
+
103
+ /// The hover-focus background color of the input.
104
+ /// @group input
105
+ $kendo-input-solid-hover-focus-bg: $kendo-input-solid-focus-bg !default;
106
+
107
+ /// The hover-focus border color of the input.
108
+ /// @group input
109
+ $kendo-input-solid-hover-focus-border: $kendo-input-solid-focus-border !default;
110
+
111
+ /// The disabled text color of the input.
112
+ /// @group input
113
+ $kendo-input-solid-disabled-text: $kendo-disabled-text !default;
114
+
115
+ /// The disabled background color of the input.
116
+ /// @group input
117
+ $kendo-input-solid-disabled-bg: $kendo-disabled-bg !default;
118
+
119
+ /// The disabled border color of the input
120
+ /// @group input
121
+ $kendo-input-solid-disabled-border: $kendo-disabled-border !default;
122
+
123
+ /// The text color of the outline input.
124
+ /// @group input
125
+ $kendo-input-outline-text: get-theme-color-var( neutral-160 ) !default;
126
+
127
+ /// The background color of the outline input.
128
+ /// @group input
129
+ $kendo-input-outline-bg: $white !default;
130
+
131
+ /// The border color of the outline input.
132
+ /// @group input
133
+ $kendo-input-outline-border: get-theme-color-var( neutral-130 ) !default;
134
+
135
+ /// The hover text color of the outline input.
136
+ /// @group input
137
+ $kendo-input-outline-hover-text: get-theme-color-var( neutral-190 ) !default;
138
+
139
+ /// The hover background color of the outline input.
140
+ /// @group input
141
+ $kendo-input-outline-hover-bg: $white !default;
142
+
143
+ /// The hover border color of the outline input.
144
+ /// @group input
145
+ $kendo-input-outline-hover-border: get-theme-color-var( neutral-160 ) !default;
146
+
147
+ /// The focus text color of the outline input.
148
+ /// @group input
149
+ $kendo-input-outline-focus-text: get-theme-color-var( neutral-160 ) !default;
150
+
151
+ /// The focus background color of the outline input.
152
+ /// @group input
153
+ $kendo-input-outline-focus-bg: $white !default;
154
+
155
+ /// The focus border color of the outline input.
156
+ /// @group input
157
+ $kendo-input-outline-focus-border: get-theme-color-var( primary-100 ) !default;
158
+
159
+ /// The hover-focus text color of the outline input.
160
+ /// @group input
161
+ $kendo-input-outline-hover-focus-text: $kendo-input-outline-focus-text !default;
162
+
163
+ /// The hover-focus background color of the outline input.
164
+ /// @group input
165
+ $kendo-input-outline-hover-focus-bg: $kendo-input-outline-focus-bg !default;
166
+
167
+ /// The hover-focus border color of the outline input.
168
+ /// @group input
169
+ $kendo-input-outline-hover-focus-border: $kendo-input-outline-focus-border !default;
170
+
171
+ /// The disabled text color of the outline input.
172
+ /// @group input
173
+ $kendo-input-outline-disabled-text: $kendo-disabled-text !default;
174
+
175
+ /// The disabled background color of the outline input.
176
+ /// @group input
177
+ $kendo-input-outline-disabled-bg: none !default;
178
+
179
+ /// The disabled border color of the outline input.
180
+ /// @group input
181
+ $kendo-input-outline-disabled-border: $kendo-disabled-text !default;
182
+
183
+ /// The text color of the flat input.
184
+ /// @group input
185
+ $kendo-input-flat-text: get-theme-color-var( neutral-160 ) !default;
186
+
187
+ /// The background color of the flat input.
188
+ /// @group input
189
+ $kendo-input-flat-bg: $white !default;
190
+
191
+ /// The border color of the flat input.
192
+ /// @group input
193
+ $kendo-input-flat-border: get-theme-color-var( neutral-130 ) !default;
194
+
195
+ /// The hover text color of the flat input.
196
+ /// @group input
197
+ $kendo-input-flat-hover-text: get-theme-color-var( neutral-190 ) !default;
198
+
199
+ /// The hover background color of the flat input.
200
+ /// @group input
201
+ $kendo-input-flat-hover-bg: $white !default;
202
+
203
+ /// The hover border color of the flat input.
204
+ /// @group input
205
+ $kendo-input-flat-hover-border: get-theme-color-var( neutral-160 ) !default;
206
+
207
+ /// The focus text color of the flat input.
208
+ /// @group input
209
+ $kendo-input-flat-focus-text: get-theme-color-var( neutral-160 ) !default;
210
+
211
+ /// The focus background color of the flat input.
212
+ /// @group input
213
+ $kendo-input-flat-focus-bg: $white !default;
214
+
215
+ /// The focus border color of the flat input.
216
+ /// @group input
217
+ $kendo-input-flat-focus-border: get-theme-color-var( primary-100 ) !default;
218
+
219
+ /// The hover-focus text color of the flat input.
220
+ /// @group input
221
+ $kendo-input-flat-hover-focus-text: $kendo-input-flat-focus-text !default;
222
+
223
+ /// The hover-focus background color of the flat input.
224
+ /// @group input
225
+ $kendo-input-flat-hover-focus-bg: $kendo-input-flat-focus-bg !default;
226
+
227
+ /// The hover-focus border color of the flat input.
228
+ /// @group input
229
+ $kendo-input-flat-hover-focus-border: $kendo-input-flat-focus-border !default;
230
+
231
+ /// The disabled text color of the flat input.
232
+ /// @group input
233
+ $kendo-input-flat-disabled-text: $kendo-disabled-text !default;
234
+
235
+ /// The disabled background color of the flat input.
236
+ /// @group input
237
+ $kendo-input-flat-disabled-bg: none !default;
238
+
239
+ /// The disabled border color of the flat input.
240
+ /// @group input
241
+ $kendo-input-flat-disabled-border: $kendo-disabled-text !default;
242
+
243
+ /// The text color of the solid picker.
244
+ /// @group input
245
+ $kendo-picker-solid-text: get-theme-color-var( neutral-160 ) !default;
246
+
247
+ /// The background color of the solid picker.
248
+ /// @group input
249
+ $kendo-picker-solid-bg: $white !default;
250
+
251
+ /// The border color of the solid picker.
252
+ /// @group input
253
+ $kendo-picker-solid-border: get-theme-color-var( neutral-130 )!default;
254
+
255
+ /// The hover text color of the solid picker.
256
+ /// @group input
257
+ $kendo-picker-solid-hover-text: get-theme-color-var( neutral-190 ) !default;
258
+
259
+ /// The hover background color of the solid picker.
260
+ /// @group input
261
+ $kendo-picker-solid-hover-bg: $white !default;
262
+
263
+ /// The hover border color of the solid picker.
264
+ /// @group input
265
+ $kendo-picker-solid-hover-border: get-theme-color-var( neutral-160 ) !default;
266
+
267
+ /// The focus text color of the solid picker.
268
+ /// @group input
269
+ $kendo-picker-solid-focus-text: get-theme-color-var( neutral-160 ) !default;
270
+
271
+ /// The focus background color of the solid picker.
272
+ /// @group input
273
+ $kendo-picker-solid-focus-bg: $white !default;
274
+
275
+ /// The focus border color of the solid picker.
276
+ /// @group input
277
+ $kendo-picker-solid-focus-border: get-theme-color-var( primary-100 ) !default;
278
+
279
+ /// The hover-focus text color of the solid picker.
280
+ /// @group input
281
+ $kendo-picker-solid-hover-focus-text: $kendo-picker-solid-focus-text !default;
282
+
283
+ /// The hover-focus background color of the solid picker.
284
+ /// @group input
285
+ $kendo-picker-solid-hover-focus-bg: $kendo-picker-solid-focus-bg !default;
286
+
287
+ /// The hover-focus border color of the solid picker.
288
+ /// @group input
289
+ $kendo-picker-solid-hover-focus-border: $kendo-picker-solid-focus-border !default;
290
+
291
+ /// The disabled text color of the solid picker.
292
+ /// @group input
293
+ $kendo-picker-solid-disabled-text: $kendo-disabled-text !default;
294
+
295
+ /// The disabled background color of the solid picker.
296
+ /// @group input
297
+ $kendo-picker-solid-disabled-bg: get-theme-color-var( neutral-30 ) !default;
298
+
299
+ /// The disabled border color of the solid picker.
300
+ /// @group input
301
+ $kendo-picker-solid-disabled-border: $kendo-disabled-border !default;
302
+
303
+ /// The text color of the outline picker.
304
+ /// @group input
305
+ $kendo-picker-outline-text: get-theme-color-var( neutral-160 ) !default;
306
+
307
+ /// The background color of the outline picker.
308
+ /// @group input
309
+ $kendo-picker-outline-bg: none !default;
310
+
311
+ /// The border color of the outline picker.
312
+ /// @group input
313
+ $kendo-picker-outline-border: get-theme-color-var( neutral-160 ) !default;
314
+
315
+ /// The hover text color of the outline picker.
316
+ /// @group input
317
+ $kendo-picker-outline-hover-text: $white !default;
318
+
319
+ /// The hover background color of the outline picker.
320
+ /// @group input
321
+ $kendo-picker-outline-hover-bg: get-theme-color-var( neutral-190 ) !default;
322
+
323
+ /// The hover border color of the outline picker.
324
+ /// @group input
325
+ $kendo-picker-outline-hover-border: $kendo-picker-outline-hover-bg!default;
326
+
327
+ /// The focus text color of the outline picker.
328
+ /// @group input
329
+ $kendo-picker-outline-focus-text: get-theme-color-var( neutral-160 ) !default;
330
+
331
+ /// The focus background color of the outline picker.
332
+ /// @group input
333
+ $kendo-picker-outline-focus-bg: $white!default;
334
+
335
+ /// The focus border color of the outline picker.
336
+ /// @group input
337
+ $kendo-picker-outline-focus-border: get-theme-color-var( primary-100 ) !default;
338
+
339
+ /// The hover-focus text color of the outline picker.
340
+ /// @group input
341
+ $kendo-picker-outline-hover-focus-text: $white !default;
342
+
343
+ /// The hover-focus background color of the outline picker.
344
+ /// @group input
345
+ $kendo-picker-outline-hover-focus-bg: get-theme-color-var( neutral-190 ) !default;
346
+
347
+ /// The focus border color of the outline picker.
348
+ /// @group input
349
+ $kendo-picker-outline-hover-focus-border: get-theme-color-var( primary-100 ) !default;
350
+
351
+ /// The disabled text color of the outline picker.
352
+ /// @group input
353
+ $kendo-picker-outline-disabled-text: $kendo-disabled-text !default;
354
+
355
+ /// The disabled background color of the outline picker.
356
+ /// @group input
357
+ $kendo-picker-outline-disabled-bg: none !default;
358
+
359
+ /// The disabled border color of the outline picker.
360
+ /// @group input
361
+ $kendo-picker-outline-disabled-border: $kendo-picker-outline-disabled-text!default;
362
+
363
+ /// The text color of the flat picker.
364
+ /// @group input
365
+ $kendo-picker-flat-text: get-theme-color-var( neutral-160 ) !default;
366
+
367
+ /// The background color of the flat picker.
368
+ /// @group input
369
+ $kendo-picker-flat-bg: $white !default;
370
+
371
+ /// The border color of the flat picker.
372
+ /// @group input
373
+ $kendo-picker-flat-border: get-theme-color-var( neutral-130 ) !default;
374
+
375
+ /// The hover text color of the flat picker.
376
+ /// @group input
377
+ $kendo-picker-flat-hover-text: get-theme-color-var( neutral-190 ) !default;
378
+
379
+ /// The hover background color of the flat picker.
380
+ /// @group input
381
+ $kendo-picker-flat-hover-bg: get-theme-color-var( neutral-20 ) !default;
382
+
383
+ /// The hover border color of the flat picker.
384
+ /// @group input
385
+ $kendo-picker-flat-hover-border: get-theme-color-var( neutral-160 ) !default;
386
+
387
+ /// The focus text color of the flat picker.
388
+ /// @group input
389
+ $kendo-picker-flat-focus-text: get-theme-color-var( neutral-160 ) !default;
390
+
391
+ /// The focus background color of the flat picker.
392
+ /// @group input
393
+ $kendo-picker-flat-focus-bg: $white !default;
394
+
395
+ /// The focus border color of the flat picker.
396
+ /// @group input
397
+ $kendo-picker-flat-focus-border: get-theme-color-var( primary-100 ) !default;
398
+
399
+ /// The hover-focus text color of the flat picker.
400
+ /// @group input
401
+ $kendo-picker-flat-hover-focus-text: $kendo-picker-flat-hover-text !default;
402
+
403
+ /// The hover-focus background color of the flat picker.
404
+ /// @group input
405
+ $kendo-picker-flat-hover-focus-bg: $kendo-picker-flat-hover-bg !default;
406
+
407
+ /// The hover-focus border color of the flat picker.
408
+ /// @group input
409
+ $kendo-picker-flat-hover-focus-border: $kendo-picker-flat-border !default;
410
+
411
+ /// The disabled text color of the flat picker.
412
+ /// @group input
413
+ $kendo-picker-flat-disabled-text: $kendo-disabled-text !default;
414
+
415
+ /// The disabled background color of the flat picker.
416
+ /// @group input
417
+ $kendo-picker-flat-disabled-bg: none !default;
418
+
419
+ /// The disabled border color of the flat picker.
420
+ /// @group input
421
+ $kendo-picker-flat-disabled-border: $kendo-picker-flat-disabled-text !default;
422
+
423
+ /// Sizes map of the input.
424
+ /// @group input
425
+ $kendo-input-sizes: (
426
+ sm: (
427
+ padding-x: $kendo-input-padding-x-sm,
428
+ padding-y: $kendo-input-padding-y-sm,
429
+ font-size: $kendo-input-font-size-sm,
430
+ line-height: $kendo-input-line-height-sm,
431
+ icon-size: calc( var( --kendo-icon-size, 1rem ) + #{$kendo-input-padding-y-sm * 2} ),
432
+ button-padding-x: $kendo-input-padding-y-sm,
433
+ button-padding-y: $kendo-input-padding-y-sm,
434
+ button-width: $kendo-input-button-width-sm
435
+ ),
436
+ md: (
437
+ padding-x: $kendo-input-padding-x-md,
438
+ padding-y: $kendo-input-padding-y-md,
439
+ font-size: $kendo-input-font-size-md,
440
+ line-height: $kendo-input-line-height-md,
441
+ icon-size: calc( var( --kendo-icon-size, 1rem ) + #{$kendo-input-padding-y-md * 2} ),
442
+ button-padding-x: $kendo-input-padding-y-md,
443
+ button-padding-y: $kendo-input-padding-y-md,
444
+ button-width: $kendo-input-button-width-md
445
+ ),
446
+ lg: (
447
+ padding-x: $kendo-input-padding-x-lg,
448
+ padding-y: $kendo-input-padding-y-lg,
449
+ font-size: $kendo-input-font-size-lg,
450
+ line-height: $kendo-input-line-height-lg,
451
+ icon-size: calc( var( --kendo-icon-size, 1rem ) + #{$kendo-input-padding-y-lg * 2} ),
452
+ button-padding-x: $kendo-input-padding-y-lg,
453
+ button-padding-y: $kendo-input-padding-y-lg,
454
+ button-width: $kendo-input-button-width-lg
455
+ )
456
+ ) !default;
457
+
458
+ /// Colors map of the input.
459
+ /// @group input
460
+ $kendo-input-theme-colors: (
461
+ input: (
462
+ solid: (
463
+ text: $kendo-input-solid-text,
464
+ bg: $kendo-input-solid-bg,
465
+ border: $kendo-input-solid-border,
466
+
467
+ hover-text: $kendo-input-solid-hover-text,
468
+ hover-bg: $kendo-input-solid-hover-bg,
469
+ hover-border: $kendo-input-solid-hover-border,
470
+
471
+ focus-text: $kendo-input-solid-focus-text,
472
+ focus-bg: $kendo-input-solid-focus-bg,
473
+ focus-border: $kendo-input-solid-focus-border,
474
+
475
+ hover-focus-text: $kendo-input-solid-hover-focus-text,
476
+ hover-focus-bg: $kendo-input-solid-hover-focus-bg,
477
+ hover-focus-border: $kendo-input-solid-hover-focus-border,
478
+
479
+ disabled-text: $kendo-input-solid-disabled-text,
480
+ disabled-bg: $kendo-input-solid-disabled-bg,
481
+ disabled-border: $kendo-input-solid-disabled-border
482
+
483
+ ),
484
+ outline: (
485
+ text: $kendo-input-outline-text,
486
+ bg: $kendo-input-outline-bg,
487
+ border: $kendo-input-outline-border,
488
+
489
+ hover-text: $kendo-input-outline-hover-text,
490
+ hover-bg: $kendo-input-outline-hover-bg,
491
+ hover-border: $kendo-input-outline-hover-border,
492
+
493
+ focus-text: $kendo-input-outline-focus-text,
494
+ focus-bg: $kendo-input-outline-focus-bg,
495
+ focus-border: $kendo-input-outline-focus-border,
496
+
497
+ hover-focus-text: $kendo-input-outline-hover-focus-text,
498
+ hover-focus-bg: $kendo-input-outline-hover-focus-bg,
499
+ hover-focus-border: $kendo-input-outline-hover-focus-border,
500
+
501
+ disabled-text: $kendo-input-outline-disabled-text,
502
+ disabled-bg: $kendo-input-outline-disabled-bg,
503
+ disabled-border: $kendo-input-outline-disabled-border
504
+ ),
505
+ flat: (
506
+ text: $kendo-input-flat-text,
507
+ bg: $kendo-input-flat-bg,
508
+ border: $kendo-input-flat-border,
509
+
510
+ hover-text: $kendo-input-flat-hover-text,
511
+ hover-bg: $kendo-input-flat-hover-bg,
512
+ hover-border: $kendo-input-flat-hover-border,
513
+
514
+ focus-text: $kendo-input-flat-focus-text,
515
+ focus-bg: $kendo-input-flat-focus-bg,
516
+ focus-border: $kendo-input-flat-focus-border,
517
+
518
+ hover-focus-tex: $kendo-input-flat-hover-focus-text,
519
+ hover-focus-bg: $kendo-input-flat-hover-focus-bg,
520
+ hover-focus-border: $kendo-input-flat-hover-focus-border,
521
+
522
+ disabled-text: $kendo-input-flat-disabled-text,
523
+ disabled-bg: $kendo-input-flat-disabled-bg,
524
+ disabled-border: $kendo-input-flat-disabled-border
525
+ )
526
+ ),
527
+ picker: (
528
+ solid: (
529
+ text: $kendo-picker-solid-text,
530
+ bg: $kendo-picker-solid-bg,
531
+ border: $kendo-picker-solid-border,
532
+
533
+ hover-text: $kendo-picker-solid-hover-text,
534
+ hover-bg: $kendo-picker-solid-hover-bg,
535
+ hover-border: $kendo-picker-solid-hover-border,
536
+
537
+ focus-text: $kendo-picker-solid-focus-text,
538
+ focus-bg: $kendo-picker-solid-focus-bg,
539
+ focus-border: $kendo-picker-solid-focus-border,
540
+
541
+ hover-focus-tex: $kendo-picker-solid-hover-focus-text,
542
+ hover-focus-bg: $kendo-picker-solid-hover-focus-bg,
543
+ hover-focus-border: $kendo-picker-solid-hover-focus-border,
544
+
545
+ disabled-text: $kendo-picker-solid-disabled-text,
546
+ disabled-bg: $kendo-picker-solid-disabled-bg,
547
+ disabled-border: $kendo-picker-solid-disabled-border
548
+ ),
549
+ outline: (
550
+ text: $kendo-picker-outline-text,
551
+ bg: $kendo-picker-outline-bg,
552
+ border: $kendo-picker-outline-border,
553
+
554
+ hover-text: $kendo-picker-outline-hover-text,
555
+ hover-bg: $kendo-picker-outline-hover-bg,
556
+ hover-border: $kendo-picker-outline-hover-border,
557
+
558
+ focus-text: $kendo-picker-outline-focus-text,
559
+ focus-bg: $kendo-picker-outline-focus-bg,
560
+ focus-border: $kendo-picker-outline-focus-border,
561
+
562
+ hover-focus-text: $kendo-picker-outline-hover-focus-text,
563
+ hover-focus-bg: $kendo-picker-outline-hover-focus-bg,
564
+ hover-focus-border: $kendo-picker-outline-hover-focus-border,
565
+
566
+ disabled-text: $kendo-picker-outline-disabled-text,
567
+ disabled-bg: $kendo-picker-outline-disabled-bg,
568
+ disabled-border: $kendo-picker-outline-disabled-border
569
+ ),
570
+ flat: (
571
+ text: $kendo-picker-flat-text,
572
+ bg: $kendo-picker-flat-bg,
573
+ border: $kendo-picker-flat-border,
574
+
575
+ hover-text: $kendo-picker-flat-hover-text,
576
+ hover-bg: $kendo-picker-flat-hover-bg,
577
+ hover-border: $kendo-picker-flat-hover-border,
578
+
579
+ focus-text: $kendo-picker-flat-focus-text,
580
+ focus-bg: $kendo-picker-flat-focus-bg,
581
+ focus-border: $kendo-picker-flat-focus-border,
582
+
583
+ hover-focus-tex: $kendo-picker-flat-hover-focus-text,
584
+ hover-focus-bg: $kendo-picker-flat-hover-focus-bg,
585
+ hover-focus-border: $kendo-picker-flat-hover-focus-border,
586
+
587
+ disabled-text: $kendo-picker-flat-disabled-text,
588
+ disabled-bg: $kendo-picker-flat-disabled-bg,
589
+ disabled-border: $kendo-picker-flat-disabled-border
590
+ )
591
+ )
592
+ ) !default;
593
+
594
+ // Prefix background color
595
+ $kendo-input-prefix-bg: get-theme-color-var( neutral-20 ) !default;
596
+
597
+ // Suffix background color
598
+ $kendo-input-suffix-bg: get-theme-color-var( neutral-20 ) !default;
599
+
600
+ // Invalid
601
+ $kendo-input-invalid-border: var( --kendo-invalid-border, #{$kendo-invalid-border} ) !default;
602
+ $kendo-input-invalid-text: var( --kendo-invalid-text, #{$kendo-invalid-text} ) !default;
603
+
604
+ // Placeholder
605
+ $kendo-input-placeholder-text: get-theme-color-var( neutral-130 ) !default;
606
+ $kendo-input-placeholder-opacity: 1 !default;
607
+
608
+ // Clear value
609
+ $kendo-input-clear-value-text: get-theme-color-var( neutral-130 ) !default;
610
+ $kendo-input-clear-value-opacity: .6 !default;
611
+ $kendo-input-clear-value-hover-text: inherit !default;
612
+ $kendo-input-clear-value-hover-opacity: 1 !default;
@@ -0,0 +1,26 @@
1
+ // Module meta
2
+ $_kendo-module-meta: (
3
+ name: "input",
4
+ dependencies: (
5
+ "icon",
6
+ "button"
7
+ )
8
+ );
9
+
10
+
11
+ // Component
12
+ @forward "_variables.scss";
13
+ @use "_layout.scss" as *;
14
+ @use "_theme.scss" as *;
15
+
16
+ // Register
17
+ @use "../core/module-system/" as module;
18
+ @include module.register( $_kendo-module-meta... );
19
+
20
+ // Expose
21
+ @mixin styles() {
22
+ @include module.render( "input" ) {
23
+ @include kendo-input--layout();
24
+ @include kendo-input--theme();
25
+ }
26
+ }