@progress/kendo-theme-utils 8.2.0 → 9.0.0-dev.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (109) hide show
  1. package/dist/all.css +14057 -2649
  2. package/dist/all.scss +6505 -5328
  3. package/dist/meta/sassdoc-data.json +2964 -3040
  4. package/dist/meta/sassdoc-raw-data.json +2668 -2744
  5. package/dist/meta/variables.json +376 -243
  6. package/package.json +3 -3
  7. package/scss/_mixins.scss +24 -0
  8. package/scss/_variables.scss +41 -53
  9. package/scss/accessibility/_screen-readers.scss +32 -26
  10. package/scss/background/_background-clip.scss +9 -3
  11. package/scss/background/_background-color.scss +9 -3
  12. package/scss/background/_background-position.scss +9 -3
  13. package/scss/background/_background-size.scss +9 -3
  14. package/scss/border/_border-color.scss +8 -3
  15. package/scss/border/_border-radius.scss +18 -12
  16. package/scss/border/_border-style.scss +16 -11
  17. package/scss/border/_border-width.scss +23 -19
  18. package/scss/border/_outline-color.scss +9 -3
  19. package/scss/border/_outline-offset.scss +9 -3
  20. package/scss/border/_outline-style.scss +9 -3
  21. package/scss/border/_outline-width.scss +6 -0
  22. package/scss/effects/_opacity.scss +9 -3
  23. package/scss/elevation/index.import.scss +7 -1
  24. package/scss/filter/_backdrop.scss +9 -3
  25. package/scss/flex-grid/_align-content.scss +9 -3
  26. package/scss/flex-grid/_align-items.scss +9 -3
  27. package/scss/flex-grid/_align-self.scss +9 -3
  28. package/scss/flex-grid/_flex-basis.scss +10 -4
  29. package/scss/flex-grid/_flex-direction.scss +20 -6
  30. package/scss/flex-grid/_flex-grow.scss +10 -4
  31. package/scss/flex-grid/_flex-shrink.scss +10 -4
  32. package/scss/flex-grid/_flex-wrap.scss +9 -3
  33. package/scss/flex-grid/_flex.scss +9 -3
  34. package/scss/flex-grid/_gap.scss +20 -4
  35. package/scss/flex-grid/_grid-auto-columns.scss +9 -3
  36. package/scss/flex-grid/_grid-auto-flow.scss +9 -3
  37. package/scss/flex-grid/_grid-auto-rows.scss +9 -3
  38. package/scss/flex-grid/_grid-column-start-end.scss +26 -6
  39. package/scss/flex-grid/_grid-row-start-end.scss +31 -13
  40. package/scss/flex-grid/_grid-template-columns.scss +16 -2
  41. package/scss/flex-grid/_grid-template-rows.scss +9 -3
  42. package/scss/flex-grid/_justify-content.scss +12 -6
  43. package/scss/flex-grid/_justify-items.scss +9 -3
  44. package/scss/flex-grid/_justify-self.scss +9 -3
  45. package/scss/flex-grid/_order.scss +9 -3
  46. package/scss/flex-grid/_place-content.scss +9 -3
  47. package/scss/flex-grid/_place-items.scss +9 -3
  48. package/scss/flex-grid/_place-self.scss +9 -3
  49. package/scss/flex-grid/index.import.scss +8 -0
  50. package/scss/index.import.scss +11 -0
  51. package/scss/interactivity/_accent-color.scss +9 -3
  52. package/scss/interactivity/_appearance.scss +9 -3
  53. package/scss/interactivity/_caret-color.scss +9 -3
  54. package/scss/interactivity/_cursor.scss +9 -3
  55. package/scss/interactivity/_pointer-events.scss +9 -3
  56. package/scss/interactivity/_resize.scss +9 -3
  57. package/scss/interactivity/_scroll.scss +38 -34
  58. package/scss/interactivity/_touch-action.scss +9 -3
  59. package/scss/interactivity/_user-select.scss +9 -3
  60. package/scss/interactivity/_will-change.scss +9 -3
  61. package/scss/layout/_aspect-ratio.scss +11 -5
  62. package/scss/layout/_box-sizing.scss +9 -3
  63. package/scss/layout/_clear.scss +9 -3
  64. package/scss/layout/_columns.scss +9 -3
  65. package/scss/layout/_display.scss +23 -9
  66. package/scss/layout/_float.scss +9 -3
  67. package/scss/layout/_object-fit.scss +9 -3
  68. package/scss/layout/_object-position.scss +9 -3
  69. package/scss/layout/_overflow.scss +12 -5
  70. package/scss/layout/_placement.scss +29 -80
  71. package/scss/layout/_position.scss +25 -18
  72. package/scss/layout/_visibility.scss +14 -8
  73. package/scss/layout/_zindex.scss +9 -3
  74. package/scss/layout/index.import.scss +4 -0
  75. package/scss/responsive-layout/_col-gap.scss +28 -0
  76. package/scss/responsive-layout/_col.scss +48 -0
  77. package/scss/responsive-layout/_container.scss +22 -0
  78. package/scss/responsive-layout/_row.scss +21 -0
  79. package/scss/responsive-layout/index.import.scss +25 -0
  80. package/scss/sizing/_height.scss +15 -9
  81. package/scss/sizing/_width.scss +15 -9
  82. package/scss/spacing/_margin.scss +17 -11
  83. package/scss/spacing/_padding.scss +23 -8
  84. package/scss/spacing/_space-between.scss +16 -10
  85. package/scss/spacing/index.import.scss +4 -0
  86. package/scss/svg/_fill.scss +9 -3
  87. package/scss/svg/_stroke.scss +9 -3
  88. package/scss/table/_border-collapse.scss +9 -3
  89. package/scss/table/_table-layout.scss +10 -4
  90. package/scss/transform/_flip.scss +21 -15
  91. package/scss/transform/_origin.scss +9 -3
  92. package/scss/transform/_rotate.scss +9 -3
  93. package/scss/transform/_scale.scss +11 -5
  94. package/scss/transform/_skew.scss +10 -4
  95. package/scss/transform/_translate.scss +22 -16
  96. package/scss/typography/_font-family.scss +7 -2
  97. package/scss/typography/_font-size.scss +9 -4
  98. package/scss/typography/_font-style.scss +9 -3
  99. package/scss/typography/_font-weight.scss +9 -5
  100. package/scss/typography/_letter-spacing.scss +7 -2
  101. package/scss/typography/_line-height.scss +7 -2
  102. package/scss/typography/_list-style.scss +9 -3
  103. package/scss/typography/_text-align.scss +9 -3
  104. package/scss/typography/_text-color.scss +11 -6
  105. package/scss/typography/_text-decoration.scss +9 -3
  106. package/scss/typography/_text-overflow.scss +23 -17
  107. package/scss/typography/_text-transform.scss +9 -3
  108. package/scss/typography/_vertical-align.scss +9 -3
  109. package/scss/typography/_white-space.scss +12 -6
@@ -929,159 +929,159 @@
929
929
  },
930
930
  "kendo-enable-color-system": {
931
931
  "type": "Bool",
932
- "value": "false"
932
+ "value": "true"
933
933
  },
934
934
  "kendo-colors": {
935
935
  "type": "Map",
936
- "value": "(app-surface: null, on-app-surface: null, subtle: null, surface: null, surface-alt: null, border: null, border-alt: null, base-subtle: null, base-subtle-hover: null, base-subtle-active: null, base: null, base-hover: null, base-active: null, base-emphasis: null, base-on-subtle: null, on-base: null, base-on-surface: null, primary-subtle: null, primary-subtle-hover: null, primary-subtle-active: null, primary: null, primary-hover: null, primary-active: null, primary-emphasis: null, primary-on-subtle: null, on-primary: null, primary-on-surface: null, secondary-subtle: null, secondary-subtle-hover: null, secondary-subtle-active: null, secondary: null, secondary-hover: null, secondary-active: null, secondary-emphasis: null, secondary-on-subtle: null, on-secondary: null, secondary-on-surface: null, tertiary-subtle: null, tertiary-subtle-hover: null, tertiary-subtle-active: null, tertiary: null, tertiary-hover: null, tertiary-active: null, tertiary-emphasis: null, tertiary-on-subtle: null, on-tertiary: null, tertiary-on-surface: null, info-subtle: null, info-subtle-hover: null, info-subtle-active: null, info: null, info-hover: null, info-active: null, info-emphasis: null, info-on-subtle: null, on-info: null, info-on-surface: null, success-subtle: null, success-subtle-hover: null, success-subtle-active: null, success: null, success-hover: null, success-active: null, success-emphasis: null, success-on-subtle: null, on-success: null, success-on-surface: null, warning-subtle: null, warning-subtle-hover: null, warning-subtle-active: null, warning: null, warning-hover: null, warning-active: null, warning-emphasis: null, warning-on-subtle: null, on-warning: null, warning-on-surface: null, error-subtle: null, error-subtle-hover: null, error-subtle-active: null, error: null, error-hover: null, error-active: null, error-emphasis: null, error-on-subtle: null, on-error: null, error-on-surface: null, light-subtle: null, light-subtle-hover: null, light-subtle-active: null, light: null, light-hover: null, light-active: null, light-emphasis: null, light-on-subtle: null, on-light: null, light-on-surface: null, dark-subtle: null, dark-subtle-hover: null, dark-subtle-active: null, dark: null, dark-hover: null, dark-active: null, dark-emphasis: null, dark-on-subtle: null, on-dark: null, dark-on-surface: null, inverse-subtle: null, inverse-subtle-hover: null, inverse-subtle-active: null, inverse: null, inverse-hover: null, inverse-active: null, inverse-emphasis: null, inverse-on-subtle: null, on-inverse: null, inverse-on-surface: null, series-a: null, series-a-bold: null, series-a-bolder: null, series-a-subtle: null, series-a-subtler: null, series-b: null, series-b-bold: null, series-b-bolder: null, series-b-subtle: null, series-b-subtler: null, series-c: null, series-c-bold: null, series-c-bolder: null, series-c-subtle: null, series-c-subtler: null, series-d: null, series-d-bold: null, series-d-bolder: null, series-d-subtle: null, series-d-subtler: null, series-e: null, series-e-bold: null, series-e-bolder: null, series-e-subtle: null, series-e-subtler: null, series-f: null, series-f-bold: null, series-f-bolder: null, series-f-subtle: null, series-f-subtler: null)",
936
+ "value": "(app-surface: #ffffff, on-app-surface: #3d3d3d, subtle: #666666, surface: #fafafa, surface-alt: #ffffff, border: rgba(0, 0, 0, 0.08), border-alt: rgba(0, 0, 0, 0.16), base-subtle: #ebebeb, base-subtle-hover: #e0e0e0, base-subtle-active: #d6d6d6, base: #f5f5f5, base-hover: #ebebeb, base-active: #d6d6d6, base-emphasis: #c2c2c2, base-on-subtle: #3d3d3d, on-base: #3d3d3d, base-on-surface: #3d3d3d, primary-subtle: #ffeceb, primary-subtle-hover: #ffdedb, primary-subtle-active: #ffc8c4, primary: #ff6358, primary-hover: #ea5a51, primary-active: #d45349, primary-emphasis: #ff9d97, primary-on-subtle: #5c201c, on-primary: #ffffff, primary-on-surface: #ff6358, secondary-subtle: #fafafa, secondary-subtle-hover: #f5f5f5, secondary-subtle-active: #ebebeb, secondary: #666666, secondary-hover: #525252, secondary-active: #3d3d3d, secondary-emphasis: #e0e0e0, secondary-on-subtle: #141414, on-secondary: #ffffff, secondary-on-surface: #292929, tertiary-subtle: #d8f1fd, tertiary-subtle-hover: #c5eafc, tertiary-subtle-active: #a3dffb, tertiary: #03a9f4, tertiary-hover: #039ae0, tertiary-active: #028ccb, tertiary-emphasis: #61c9f9, tertiary-on-subtle: #023f5c, on-tertiary: #ffffff, tertiary-on-surface: #028ccb, info-subtle: #d2e2fb, info-subtle-hover: #bdd4f8, info-subtle-active: #80acf4, info: #0058e9, info-hover: #0052d6, info-active: #004ac2, info-emphasis: #6098f2, info-on-subtle: #002259, on-info: #ffffff, info-on-surface: #004ac2, success-subtle: #dcf0d3, success-subtle-hover: #cbe9bf, success-subtle-active: #b7e1a5, success: #37b400, success-hover: #32a500, success-active: #2d9600, success-emphasis: #81d15f, success-on-subtle: #1c5a00, on-success: #ffffff, success-on-surface: #2d9600, warning-subtle: #fff4d3, warning-subtle-hover: #ffeebd, warning-subtle-active: #ffe79e, warning: #ffc000, warning-hover: #eaaf00, warning-active: #d49f00, warning-emphasis: #ffd760, warning-on-subtle: #5e4700, on-warning: #3d3d3d, warning-on-surface: #ffc000, error-subtle: #fcddda, error-subtle-hover: #fbc8c3, error-subtle-active: #f98b80, error: #f31700, error-hover: #df1600, error-active: #ca1400, error-emphasis: #f76f60, error-on-subtle: #7a0c00, on-error: #ffffff, error-on-surface: #ca1400, light-subtle: #fafafa, light-subtle-hover: #f5f5f5, light-subtle-active: #ebebeb, light: #ebebeb, light-hover: #e0e0e0, light-active: #d6d6d6, light-emphasis: #d6d6d6, light-on-subtle: #141414, on-light: #000000, light-on-surface: #e0e0e0, dark-subtle: #c2c2c2, dark-subtle-hover: #adadad, dark-subtle-active: #999999, dark: #3d3d3d, dark-hover: #292929, dark-active: #1f1f1f, dark-emphasis: #666666, dark-on-subtle: #1f1f1f, on-dark: #ffffff, dark-on-surface: #141414, inverse-subtle: #c2c2c2, inverse-subtle-hover: #adadad, inverse-subtle-active: #999999, inverse: #3d3d3d, inverse-hover: #292929, inverse-active: #1f1f1f, inverse-emphasis: #666666, inverse-on-subtle: #1f1f1f, on-inverse: #ffffff, inverse-on-surface: #141414, series-a: #ff6358, series-a-bold: #bf4a42, series-a-bolder: #80322c, series-a-subtle: #ffb1ac, series-a-subtler: #ff8a82, series-b: #ffe162, series-b-bold: #bfa94a, series-b-bolder: #807131, series-b-subtle: #fff0b1, series-b-subtler: #ffe989, series-c: #4cd180, series-c-bold: #399d60, series-c-bolder: #266940, series-c-subtle: #a6e8c0, series-c-subtler: #79dda0, series-d: #4b5ffa, series-d-bold: #3847bc, series-d-bolder: #26307d, series-d-subtle: #a5affd, series-d-subtler: #7887fb, series-e: #ac58ff, series-e-bold: #8142bf, series-e-bolder: #562c80, series-e-subtle: #d6acff, series-e-subtler: #c182ff, series-f: #ff5892, series-f-bold: #bf426e, series-f-bolder: #802c49, series-f-subtle: #ffacc9, series-f-subtler: #ff82ae)",
937
937
  "prettyValue": {
938
- "app-surface": null,
939
- "on-app-surface": null,
940
- "subtle": null,
941
- "surface": null,
942
- "surface-alt": null,
943
- "border": null,
944
- "border-alt": null,
945
- "base-subtle": null,
946
- "base-subtle-hover": null,
947
- "base-subtle-active": null,
948
- "base": null,
949
- "base-hover": null,
950
- "base-active": null,
951
- "base-emphasis": null,
952
- "base-on-subtle": null,
953
- "on-base": null,
954
- "base-on-surface": null,
955
- "primary-subtle": null,
956
- "primary-subtle-hover": null,
957
- "primary-subtle-active": null,
958
- "primary": null,
959
- "primary-hover": null,
960
- "primary-active": null,
961
- "primary-emphasis": null,
962
- "primary-on-subtle": null,
963
- "on-primary": null,
964
- "primary-on-surface": null,
965
- "secondary-subtle": null,
966
- "secondary-subtle-hover": null,
967
- "secondary-subtle-active": null,
968
- "secondary": null,
969
- "secondary-hover": null,
970
- "secondary-active": null,
971
- "secondary-emphasis": null,
972
- "secondary-on-subtle": null,
973
- "on-secondary": null,
974
- "secondary-on-surface": null,
975
- "tertiary-subtle": null,
976
- "tertiary-subtle-hover": null,
977
- "tertiary-subtle-active": null,
978
- "tertiary": null,
979
- "tertiary-hover": null,
980
- "tertiary-active": null,
981
- "tertiary-emphasis": null,
982
- "tertiary-on-subtle": null,
983
- "on-tertiary": null,
984
- "tertiary-on-surface": null,
985
- "info-subtle": null,
986
- "info-subtle-hover": null,
987
- "info-subtle-active": null,
988
- "info": null,
989
- "info-hover": null,
990
- "info-active": null,
991
- "info-emphasis": null,
992
- "info-on-subtle": null,
993
- "on-info": null,
994
- "info-on-surface": null,
995
- "success-subtle": null,
996
- "success-subtle-hover": null,
997
- "success-subtle-active": null,
998
- "success": null,
999
- "success-hover": null,
1000
- "success-active": null,
1001
- "success-emphasis": null,
1002
- "success-on-subtle": null,
1003
- "on-success": null,
1004
- "success-on-surface": null,
1005
- "warning-subtle": null,
1006
- "warning-subtle-hover": null,
1007
- "warning-subtle-active": null,
1008
- "warning": null,
1009
- "warning-hover": null,
1010
- "warning-active": null,
1011
- "warning-emphasis": null,
1012
- "warning-on-subtle": null,
1013
- "on-warning": null,
1014
- "warning-on-surface": null,
1015
- "error-subtle": null,
1016
- "error-subtle-hover": null,
1017
- "error-subtle-active": null,
1018
- "error": null,
1019
- "error-hover": null,
1020
- "error-active": null,
1021
- "error-emphasis": null,
1022
- "error-on-subtle": null,
1023
- "on-error": null,
1024
- "error-on-surface": null,
1025
- "light-subtle": null,
1026
- "light-subtle-hover": null,
1027
- "light-subtle-active": null,
1028
- "light": null,
1029
- "light-hover": null,
1030
- "light-active": null,
1031
- "light-emphasis": null,
1032
- "light-on-subtle": null,
1033
- "on-light": null,
1034
- "light-on-surface": null,
1035
- "dark-subtle": null,
1036
- "dark-subtle-hover": null,
1037
- "dark-subtle-active": null,
1038
- "dark": null,
1039
- "dark-hover": null,
1040
- "dark-active": null,
1041
- "dark-emphasis": null,
1042
- "dark-on-subtle": null,
1043
- "on-dark": null,
1044
- "dark-on-surface": null,
1045
- "inverse-subtle": null,
1046
- "inverse-subtle-hover": null,
1047
- "inverse-subtle-active": null,
1048
- "inverse": null,
1049
- "inverse-hover": null,
1050
- "inverse-active": null,
1051
- "inverse-emphasis": null,
1052
- "inverse-on-subtle": null,
1053
- "on-inverse": null,
1054
- "inverse-on-surface": null,
1055
- "series-a": null,
1056
- "series-a-bold": null,
1057
- "series-a-bolder": null,
1058
- "series-a-subtle": null,
1059
- "series-a-subtler": null,
1060
- "series-b": null,
1061
- "series-b-bold": null,
1062
- "series-b-bolder": null,
1063
- "series-b-subtle": null,
1064
- "series-b-subtler": null,
1065
- "series-c": null,
1066
- "series-c-bold": null,
1067
- "series-c-bolder": null,
1068
- "series-c-subtle": null,
1069
- "series-c-subtler": null,
1070
- "series-d": null,
1071
- "series-d-bold": null,
1072
- "series-d-bolder": null,
1073
- "series-d-subtle": null,
1074
- "series-d-subtler": null,
1075
- "series-e": null,
1076
- "series-e-bold": null,
1077
- "series-e-bolder": null,
1078
- "series-e-subtle": null,
1079
- "series-e-subtler": null,
1080
- "series-f": null,
1081
- "series-f-bold": null,
1082
- "series-f-bolder": null,
1083
- "series-f-subtle": null,
1084
- "series-f-subtler": null
938
+ "app-surface": "#ffffff",
939
+ "on-app-surface": "#3d3d3d",
940
+ "subtle": "#666666",
941
+ "surface": "#fafafa",
942
+ "surface-alt": "#ffffff",
943
+ "border": "rgba(0, 0, 0, 0.08)",
944
+ "border-alt": "rgba(0, 0, 0, 0.16)",
945
+ "base-subtle": "#ebebeb",
946
+ "base-subtle-hover": "#e0e0e0",
947
+ "base-subtle-active": "#d6d6d6",
948
+ "base": "#f5f5f5",
949
+ "base-hover": "#ebebeb",
950
+ "base-active": "#d6d6d6",
951
+ "base-emphasis": "#c2c2c2",
952
+ "base-on-subtle": "#3d3d3d",
953
+ "on-base": "#3d3d3d",
954
+ "base-on-surface": "#3d3d3d",
955
+ "primary-subtle": "#ffeceb",
956
+ "primary-subtle-hover": "#ffdedb",
957
+ "primary-subtle-active": "#ffc8c4",
958
+ "primary": "#ff6358",
959
+ "primary-hover": "#ea5a51",
960
+ "primary-active": "#d45349",
961
+ "primary-emphasis": "#ff9d97",
962
+ "primary-on-subtle": "#5c201c",
963
+ "on-primary": "#ffffff",
964
+ "primary-on-surface": "#ff6358",
965
+ "secondary-subtle": "#fafafa",
966
+ "secondary-subtle-hover": "#f5f5f5",
967
+ "secondary-subtle-active": "#ebebeb",
968
+ "secondary": "#666666",
969
+ "secondary-hover": "#525252",
970
+ "secondary-active": "#3d3d3d",
971
+ "secondary-emphasis": "#e0e0e0",
972
+ "secondary-on-subtle": "#141414",
973
+ "on-secondary": "#ffffff",
974
+ "secondary-on-surface": "#292929",
975
+ "tertiary-subtle": "#d8f1fd",
976
+ "tertiary-subtle-hover": "#c5eafc",
977
+ "tertiary-subtle-active": "#a3dffb",
978
+ "tertiary": "#03a9f4",
979
+ "tertiary-hover": "#039ae0",
980
+ "tertiary-active": "#028ccb",
981
+ "tertiary-emphasis": "#61c9f9",
982
+ "tertiary-on-subtle": "#023f5c",
983
+ "on-tertiary": "#ffffff",
984
+ "tertiary-on-surface": "#028ccb",
985
+ "info-subtle": "#d2e2fb",
986
+ "info-subtle-hover": "#bdd4f8",
987
+ "info-subtle-active": "#80acf4",
988
+ "info": "#0058e9",
989
+ "info-hover": "#0052d6",
990
+ "info-active": "#004ac2",
991
+ "info-emphasis": "#6098f2",
992
+ "info-on-subtle": "#002259",
993
+ "on-info": "#ffffff",
994
+ "info-on-surface": "#004ac2",
995
+ "success-subtle": "#dcf0d3",
996
+ "success-subtle-hover": "#cbe9bf",
997
+ "success-subtle-active": "#b7e1a5",
998
+ "success": "#37b400",
999
+ "success-hover": "#32a500",
1000
+ "success-active": "#2d9600",
1001
+ "success-emphasis": "#81d15f",
1002
+ "success-on-subtle": "#1c5a00",
1003
+ "on-success": "#ffffff",
1004
+ "success-on-surface": "#2d9600",
1005
+ "warning-subtle": "#fff4d3",
1006
+ "warning-subtle-hover": "#ffeebd",
1007
+ "warning-subtle-active": "#ffe79e",
1008
+ "warning": "#ffc000",
1009
+ "warning-hover": "#eaaf00",
1010
+ "warning-active": "#d49f00",
1011
+ "warning-emphasis": "#ffd760",
1012
+ "warning-on-subtle": "#5e4700",
1013
+ "on-warning": "#3d3d3d",
1014
+ "warning-on-surface": "#ffc000",
1015
+ "error-subtle": "#fcddda",
1016
+ "error-subtle-hover": "#fbc8c3",
1017
+ "error-subtle-active": "#f98b80",
1018
+ "error": "#f31700",
1019
+ "error-hover": "#df1600",
1020
+ "error-active": "#ca1400",
1021
+ "error-emphasis": "#f76f60",
1022
+ "error-on-subtle": "#7a0c00",
1023
+ "on-error": "#ffffff",
1024
+ "error-on-surface": "#ca1400",
1025
+ "light-subtle": "#fafafa",
1026
+ "light-subtle-hover": "#f5f5f5",
1027
+ "light-subtle-active": "#ebebeb",
1028
+ "light": "#ebebeb",
1029
+ "light-hover": "#e0e0e0",
1030
+ "light-active": "#d6d6d6",
1031
+ "light-emphasis": "#d6d6d6",
1032
+ "light-on-subtle": "#141414",
1033
+ "on-light": "#000000",
1034
+ "light-on-surface": "#e0e0e0",
1035
+ "dark-subtle": "#c2c2c2",
1036
+ "dark-subtle-hover": "#adadad",
1037
+ "dark-subtle-active": "#999999",
1038
+ "dark": "#3d3d3d",
1039
+ "dark-hover": "#292929",
1040
+ "dark-active": "#1f1f1f",
1041
+ "dark-emphasis": "#666666",
1042
+ "dark-on-subtle": "#1f1f1f",
1043
+ "on-dark": "#ffffff",
1044
+ "dark-on-surface": "#141414",
1045
+ "inverse-subtle": "#c2c2c2",
1046
+ "inverse-subtle-hover": "#adadad",
1047
+ "inverse-subtle-active": "#999999",
1048
+ "inverse": "#3d3d3d",
1049
+ "inverse-hover": "#292929",
1050
+ "inverse-active": "#1f1f1f",
1051
+ "inverse-emphasis": "#666666",
1052
+ "inverse-on-subtle": "#1f1f1f",
1053
+ "on-inverse": "#ffffff",
1054
+ "inverse-on-surface": "#141414",
1055
+ "series-a": "#ff6358",
1056
+ "series-a-bold": "#bf4a42",
1057
+ "series-a-bolder": "#80322c",
1058
+ "series-a-subtle": "#ffb1ac",
1059
+ "series-a-subtler": "#ff8a82",
1060
+ "series-b": "#ffe162",
1061
+ "series-b-bold": "#bfa94a",
1062
+ "series-b-bolder": "#807131",
1063
+ "series-b-subtle": "#fff0b1",
1064
+ "series-b-subtler": "#ffe989",
1065
+ "series-c": "#4cd180",
1066
+ "series-c-bold": "#399d60",
1067
+ "series-c-bolder": "#266940",
1068
+ "series-c-subtle": "#a6e8c0",
1069
+ "series-c-subtler": "#79dda0",
1070
+ "series-d": "#4b5ffa",
1071
+ "series-d-bold": "#3847bc",
1072
+ "series-d-bolder": "#26307d",
1073
+ "series-d-subtle": "#a5affd",
1074
+ "series-d-subtler": "#7887fb",
1075
+ "series-e": "#ac58ff",
1076
+ "series-e-bold": "#8142bf",
1077
+ "series-e-bolder": "#562c80",
1078
+ "series-e-subtle": "#d6acff",
1079
+ "series-e-subtler": "#c182ff",
1080
+ "series-f": "#ff5892",
1081
+ "series-f-bold": "#bf426e",
1082
+ "series-f-bolder": "#802c49",
1083
+ "series-f-subtle": "#ffacc9",
1084
+ "series-f-subtler": "#ff82ae"
1085
1085
  }
1086
1086
  },
1087
1087
  "kendo-color-white": {
@@ -1366,6 +1366,10 @@
1366
1366
  "fit": "fit-content"
1367
1367
  }
1368
1368
  },
1369
+ "kendo-components": {
1370
+ "type": "List",
1371
+ "value": "\"utils\", \"utils-accessibility-screen-readers\", \"utils-background-clip\", \"utils-background-color\", \"utils-background-position\", \"utils-background-size\", \"utils-border-color\", \"utils-border-radius\", \"utils-border-style\", \"utils-border-width\", \"utils-outline-color\", \"utils-outline-offset\", \"utils-outline-style\", \"utils-outline-width\", \"utils-effects-opacity\", \"utils-elevation\", \"utils-filter-backdrop\", \"utils-flex-grid-align-content\", \"utils-flex-grid-align-items\", \"utils-flex-grid-align-self\", \"utils-flex-grid-flex-basis\", \"utils-flex-grid-flex-direction\", \"utils-flex-grid-flex-grow\", \"utils-flex-grid-flex-shrink\", \"utils-flex-grid-flex-wrap\", \"utils-flex-grid-flex\", \"utils-flex-grid-gap\", \"utils-flex-grid-grid-auto-columns\", \"utils-flex-grid-grid-auto-flow\", \"utils-flex-grid-grid-auto-rows\", \"utils-flex-grid-grid-column-start-end\", \"utils-flex-grid-grid-row-start-end\", \"utils-flex-grid-grid-template-columns\", \"utils-flex-grid-grid-template-rows\", \"utils-flex-grid-justify-content\", \"utils-flex-grid-justify-items\", \"utils-flex-grid-justify-self\", \"utils-flex-grid-order\", \"utils-flex-grid-place-content\", \"utils-flex-grid-place-items\", \"utils-flex-grid-place-self\", \"utils-interactivity-accent-color\", \"utils-interactivity-appearance\", \"utils-interactivity-caret-color\", \"utils-interactivity-cursor\", \"utils-interactivity-pointer-events\", \"utils-interactivity-resize\", \"utils-interactivity-scroll\", \"utils-interactivity-touch-action\", \"utils-interactivity-user-select\", \"utils-interactivity-will-change\", \"utils-layout-aspect-ratio\", \"utils-layout-box-sizing\", \"utils-layout-clear\", \"utils-layout-columns\", \"utils-layout-display\", \"utils-layout-float\", \"utils-layout-object-fit\", \"utils-layout-object-position\", \"utils-layout-overflow\", \"utils-layout-placement\", \"utils-layout-position\", \"utils-layout-visibility\", \"utils-layout-zindex\", \"utils-sizing-height\", \"utils-sizing-width\", \"utils-spacing-margin\", \"utils-spacing-padding\", \"utils-spacing-space-between\", \"utils-svg-fill\", \"utils-svg-stroke\", \"utils-table-border-collapse\", \"utils-table-table-layout\", \"utils-transform-flip\", \"utils-transform-origin\", \"utils-transform-rotate\", \"utils-transform-scale\", \"utils-transform-skew\", \"utils-transform-translate\", \"utils-typography-font-family\", \"utils-typography-font-size\", \"utils-typography-font-style\", \"utils-typography-font-weight\", \"utils-typography-letter-spacing\", \"utils-typography-line-height\", \"utils-typography-list-style\", \"utils-typography-text-align\", \"utils-typography-text-color\", \"utils-typography-text-decoration\", \"utils-typography-text-overflow\", \"utils-typography-text-transform\", \"utils-typography-vertical-align\", \"utils-typography-white-space\", \"typography\", \"draggable\", \"table\", \"icon\", \"chip\", \"messagebox\", \"input\", \"list\", \"listgroup\", \"overlay\", \"ripple\", \"virtual-scroller\", \"avatar\", \"badge\", \"color-preview\", \"loader\", \"skeleton\", \"tooltip\", \"time-marker\", \"button\", \"split-button\", \"menu-button\", \"textbox\", \"textarea\", \"checkbox\", \"listbox\", \"progressbar\", \"radio\", \"slider\", \"form\", \"validator\", \"floating-label\", \"calendar\", \"popup\", \"time-selector\", \"autocomplete\", \"captcha\", \"color-palette\", \"color-gradient\", \"color-editor\", \"color-picker\", \"combobox\", \"date-input\", \"date-picker\", \"time-picker\", \"date-time-picker\", \"date-range-picker\", \"dropdown-grid\", \"dropdown-list\", \"dropdown-tree\", \"masked-textbox\", \"multiselect\", \"numeric-textbox\", \"rating\", \"searchbox\", \"switch\", \"upload\", \"dropzone\", \"actions\", \"appbar\", \"fab\", \"menu\", \"toolbar\", \"action-sheet\", \"dialog\", \"drawer\", \"notification\", \"popover\", \"responsive-panel\", \"window\", \"bottom-navigation\", \"breadcrumb\", \"pager\", \"stepper\", \"tabstrip\", \"treeview\", \"wizard\", \"card\", \"expander\", \"panel\", \"panelbar\", \"splitter\", \"tile-layout\", \"dock-manager\", \"chart-wizard\", \"grid\", \"listview\", \"spreadsheet\", \"pivotgrid\", \"treelist\", \"filter\", \"file-manager\", \"task-board\", \"editor\", \"image-editor\", \"gantt\", \"scheduler\", \"adaptive\", \"chat\", \"media-player\", \"timeline\", \"pdf-viewer\", \"scroller\", \"scrollview\", \"prompt\", \"dataviz\", \"map\", \"orgchart\", \"signature\""
1372
+ },
1369
1373
  "kendo-prefix": {
1370
1374
  "type": "String",
1371
1375
  "value": "k-"
@@ -1392,44 +1396,44 @@
1392
1396
  },
1393
1397
  "kendo-util-colors": {
1394
1398
  "type": "Map",
1395
- "value": "(app-surface: null, on-app-surface: null, subtle: null, surface: null, surface-alt: null, border: null, border-alt: null, base-subtle: null, base-emphasis: null, primary-subtle: null, primary: null, primary-emphasis: null, secondary-subtle: null, secondary: null, secondary-emphasis: null, tertiary-subtle: null, tertiary: null, tertiary-emphasis: null, info-subtle: null, info: null, info-emphasis: null, success-subtle: null, success: null, success-emphasis: null, warning-subtle: null, warning: null, warning-emphasis: null, error-subtle: null, error: null, error-emphasis: null, light-subtle: null, light: null, light-emphasis: null, dark-subtle: null, dark: null, dark-emphasis: null)",
1399
+ "value": "(app-surface: #ffffff, on-app-surface: #3d3d3d, subtle: #666666, surface: #fafafa, surface-alt: #ffffff, border: rgba(0, 0, 0, 0.08), border-alt: rgba(0, 0, 0, 0.16), base-subtle: #ebebeb, base-emphasis: #c2c2c2, primary-subtle: #ffeceb, primary: #ff6358, primary-emphasis: #ff9d97, secondary-subtle: #fafafa, secondary: #666666, secondary-emphasis: #e0e0e0, tertiary-subtle: #d8f1fd, tertiary: #03a9f4, tertiary-emphasis: #61c9f9, info-subtle: #d2e2fb, info: #0058e9, info-emphasis: #6098f2, success-subtle: #dcf0d3, success: #37b400, success-emphasis: #81d15f, warning-subtle: #fff4d3, warning: #ffc000, warning-emphasis: #ffd760, error-subtle: #fcddda, error: #f31700, error-emphasis: #f76f60, light-subtle: #fafafa, light: #ebebeb, light-emphasis: #d6d6d6, dark-subtle: #c2c2c2, dark: #3d3d3d, dark-emphasis: #666666)",
1396
1400
  "prettyValue": {
1397
- "app-surface": null,
1398
- "on-app-surface": null,
1399
- "subtle": null,
1400
- "surface": null,
1401
- "surface-alt": null,
1402
- "border": null,
1403
- "border-alt": null,
1404
- "base-subtle": null,
1405
- "base-emphasis": null,
1406
- "primary-subtle": null,
1407
- "primary": null,
1408
- "primary-emphasis": null,
1409
- "secondary-subtle": null,
1410
- "secondary": null,
1411
- "secondary-emphasis": null,
1412
- "tertiary-subtle": null,
1413
- "tertiary": null,
1414
- "tertiary-emphasis": null,
1415
- "info-subtle": null,
1416
- "info": null,
1417
- "info-emphasis": null,
1418
- "success-subtle": null,
1419
- "success": null,
1420
- "success-emphasis": null,
1421
- "warning-subtle": null,
1422
- "warning": null,
1423
- "warning-emphasis": null,
1424
- "error-subtle": null,
1425
- "error": null,
1426
- "error-emphasis": null,
1427
- "light-subtle": null,
1428
- "light": null,
1429
- "light-emphasis": null,
1430
- "dark-subtle": null,
1431
- "dark": null,
1432
- "dark-emphasis": null
1401
+ "app-surface": "#ffffff",
1402
+ "on-app-surface": "#3d3d3d",
1403
+ "subtle": "#666666",
1404
+ "surface": "#fafafa",
1405
+ "surface-alt": "#ffffff",
1406
+ "border": "rgba(0, 0, 0, 0.08)",
1407
+ "border-alt": "rgba(0, 0, 0, 0.16)",
1408
+ "base-subtle": "#ebebeb",
1409
+ "base-emphasis": "#c2c2c2",
1410
+ "primary-subtle": "#ffeceb",
1411
+ "primary": "#ff6358",
1412
+ "primary-emphasis": "#ff9d97",
1413
+ "secondary-subtle": "#fafafa",
1414
+ "secondary": "#666666",
1415
+ "secondary-emphasis": "#e0e0e0",
1416
+ "tertiary-subtle": "#d8f1fd",
1417
+ "tertiary": "#03a9f4",
1418
+ "tertiary-emphasis": "#61c9f9",
1419
+ "info-subtle": "#d2e2fb",
1420
+ "info": "#0058e9",
1421
+ "info-emphasis": "#6098f2",
1422
+ "success-subtle": "#dcf0d3",
1423
+ "success": "#37b400",
1424
+ "success-emphasis": "#81d15f",
1425
+ "warning-subtle": "#fff4d3",
1426
+ "warning": "#ffc000",
1427
+ "warning-emphasis": "#ffd760",
1428
+ "error-subtle": "#fcddda",
1429
+ "error": "#f31700",
1430
+ "error-emphasis": "#f76f60",
1431
+ "light-subtle": "#fafafa",
1432
+ "light": "#ebebeb",
1433
+ "light-emphasis": "#d6d6d6",
1434
+ "dark-subtle": "#c2c2c2",
1435
+ "dark": "#3d3d3d",
1436
+ "dark-emphasis": "#666666"
1433
1437
  }
1434
1438
  },
1435
1439
  "kendo-border-radii": {
@@ -1447,9 +1451,50 @@
1447
1451
  "full": "9999px"
1448
1452
  }
1449
1453
  },
1454
+ "kendo-fraction-classes": {
1455
+ "type": "Map",
1456
+ "value": "(\"91-6\": 91.6666%, \"83-3\": 83.3333%, \"66-6\": 66.6666%, \"58-3\": 58.3333%, \"41-6\": 41.6666%, \"33-3\": 33.3333%, \"16-7\": 16.6666%, \"14-3\": 14.2857%, \"12-5\": 12.5%, \"11-1\": 11.1111%, \"9-1\": 9.0909%, \"8-3\": 8.3333%)",
1457
+ "prettyValue": {
1458
+ "91-6": "91.6666%",
1459
+ "83-3": "83.3333%",
1460
+ "66-6": "66.6666%",
1461
+ "58-3": "58.3333%",
1462
+ "41-6": "41.6666%",
1463
+ "33-3": "33.3333%",
1464
+ "16-7": "16.6666%",
1465
+ "14-3": "14.2857%",
1466
+ "12-5": "12.5%",
1467
+ "11-1": "11.1111%",
1468
+ "9-1": "9.0909%",
1469
+ "8-3": "8.3333%"
1470
+ }
1471
+ },
1472
+ "kendo-breakpoints": {
1473
+ "type": "Map",
1474
+ "value": "(xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)",
1475
+ "prettyValue": {
1476
+ "xs": 0,
1477
+ "sm": "576px",
1478
+ "md": "768px",
1479
+ "lg": "992px",
1480
+ "xl": "1200px",
1481
+ "xxl": "1400px"
1482
+ }
1483
+ },
1484
+ "kendo-container-max-widths": {
1485
+ "type": "Map",
1486
+ "value": "(sm: 540px, md: 720px, lg: 960px, xl: 1140px, xxl: 1320px)",
1487
+ "prettyValue": {
1488
+ "sm": "540px",
1489
+ "md": "720px",
1490
+ "lg": "960px",
1491
+ "xl": "1140px",
1492
+ "xxl": "1320px"
1493
+ }
1494
+ },
1450
1495
  "kendo-utils": {
1451
1496
  "type": "Map",
1452
- "value": "(\"screen-readers\": true, \"aspect-ratio\": (auto: auto, 1: 1, square: 1 / 1, video: 16 / 9), \"container\": (), \"columns\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, auto: auto), \"break-after\": (), \"break-before\": (), \"break-inside\": (), \"box-decoration-break\": (), \"box-sizing\": (border: border-box, content: content-box), \"display\": (none, contents, block, inline, inline-block, flex, inline-flex, grid, inline-grid, table, inline-table, table-row, table-cell, list-item), \"float\": (left, right, none), \"clear\": (left, right, both, none), \"isolation\": (), \"object-fit\": (contain, cover, fill, scale-down, initial, none), \"object-position\": (center: center, top: top, right: right, bottom: bottom, left: left, top-left: top left, top-right: top right, bottom-left: bottom left, bottom-right: bottom right), \"overflow\": (auto: auto, hidden: hidden, visible: visible, scroll: scroll, clip: clip), \"overscroll\": (), \"placement\": (0: 0px, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, 25: 7rem, 26: 8rem, 27: 9rem, 28: 10rem, 29: 11rem, 30: 12rem, -1: -1px), \"position\": (static, relative, absolute, fixed, sticky), \"inset\": (0: 0, 1: 1px, -1: -1px), \"visibility\": (visible: visible, invisible: hidden, collapse: collapse), \"zindex\": (0: 0, 10: 10, 20: 20, 30: 30, 40: 40, 50: 50, auto: auto), \"flex-direction\": (row: row, row-reverse: row-reverse, col: column, col-reverse: column-reverse), \"flex-wrap\": (wrap, wrap-reverse, nowrap), \"flex\": (1: 1 1 0%, auto: 1 1 auto, initial: 0 1 auto, none: none), \"flex-grow\": (DEFAULT: 1, 0: 0), \"flex-shrink\": (DEFAULT: 1, 0: 0), \"flex-basis\": (0: 0px, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, 25: 7rem, 26: 8rem, 27: 9rem, 28: 10rem, 29: 11rem, 30: 12rem, \"auto\": auto, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%, \"min\": min-content, \"max\": max-content, \"fit\": fit-content), \"order\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, first: -9999, last: 9999, none: 0), \"grid-template-columns\": (1: repeat(1, minmax(0, 1fr)), 2: repeat(2, minmax(0, 1fr)), 3: repeat(3, minmax(0, 1fr)), 4: repeat(4, minmax(0, 1fr)), 5: repeat(5, minmax(0, 1fr)), 6: repeat(6, minmax(0, 1fr)), 7: repeat(7, minmax(0, 1fr)), 8: repeat(8, minmax(0, 1fr)), 9: repeat(9, minmax(0, 1fr)), 10: repeat(10, minmax(0, 1fr)), 11: repeat(11, minmax(0, 1fr)), 12: repeat(12, minmax(0, 1fr)), none: none), \"grid-template-rows\": (1: repeat(1, minmax(0, 1fr)), 2: repeat(2, minmax(0, 1fr)), 3: repeat(3, minmax(0, 1fr)), 4: repeat(4, minmax(0, 1fr)), 5: repeat(5, minmax(0, 1fr)), 6: repeat(6, minmax(0, 1fr)), 7: repeat(7, minmax(0, 1fr)), 8: repeat(8, minmax(0, 1fr)), 9: repeat(9, minmax(0, 1fr)), 10: repeat(10, minmax(0, 1fr)), 11: repeat(11, minmax(0, 1fr)), 12: repeat(12, minmax(0, 1fr)), none: none), \"grid-column-start\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, -1: -1, -2: -2, -3: -3, -4: -4, -5: -5, -6: -6, -7: -7, -8: -8, -9: -9, -10: -10, -11: -11, -12: -12, -13: -13, auto: auto), \"grid-column-end\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, -1: -1, -2: -2, -3: -3, -4: -4, -5: -5, -6: -6, -7: -7, -8: -8, -9: -9, -10: -10, -11: -11, -12: -12, -13: -13, auto: auto), \"grid-column-span\": (1: span 1/span 1, 2: span 2/span 2, 3: span 3/span 3, 4: span 4/span 4, 5: span 5/span 5, 6: span 6/span 6, 7: span 7/span 7, 8: span 8/span 8, 9: span 9/span 9, 10: span 10/span 10, 11: span 11/span 11, 12: span 12/span 12, full: 1 / -1, auto: auto), \"grid-row-start\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, -1: -1, -2: -2, -3: -3, -4: -4, -5: -5, -6: -6, -7: -7, -8: -8, -9: -9, -10: -10, -11: -11, -12: -12, -13: -13, auto: auto), \"grid-row-end\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, -1: -1, -2: -2, -3: -3, -4: -4, -5: -5, -6: -6, -7: -7, -8: -8, -9: -9, -10: -10, -11: -11, -12: -12, -13: -13, auto: auto), \"grid-row-span\": (1: span 1/span 1, 2: span 2/span 2, 3: span 3/span 3, 4: span 4/span 4, 5: span 5/span 5, 6: span 6/span 6, 7: span 7/span 7, 8: span 8/span 8, 9: span 9/span 9, 10: span 10/span 10, 11: span 11/span 11, 12: span 12/span 12, full: span 1/span -1, auto: auto), \"grid-auto-flow\": (row: row, col: column, dense: dense, row-dense: row dense, col-dense: column dense, unset: unset), \"grid-auto-columns\": (auto: auto, min: min-content, max: max-content, fr: minmax(0, 1fr)), \"grid-auto-rows\": (auto: auto, min: min-content, max: max-content, fr: minmax(0, 1fr)), \"gap\": (0: 0px, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, 25: 7rem, 26: 8rem, 27: 9rem, 28: 10rem, 29: 11rem, 30: 12rem, xs: var(--kendo-spacing-1, 0.25rem), sm: var(--kendo-spacing-2, 0.5rem), md: var(--kendo-spacing-3, 0.75rem), lg: var(--kendo-spacing-4, 1rem), xl: var(--kendo-spacing-6, 1.5rem), thin: var(--kendo-spacing-0\\.5, 0.125rem), hair: var(--kendo-spacing-1px, 1px)), \"align-content\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline, between: space-between, around: space-around, evenly: space-evenly), \"align-items\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline, self-start: self-start, self-end: self-end), \"align-self\": (auto: auto, normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline, self-start: self-start, self-end: self-end), \"justify-content\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, left: left, right: right, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline, between: space-between, around: space-around, evenly: space-evenly), \"justify-items\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, self-start: self-start, self-end: self-end, left: left, right: right, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline), \"justify-self\": (auto: auto, normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, self-start: self-start, self-end: self-end, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline), \"place-content\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, baseline: baseline, between: space-between, around: space-around, evenly: space-evenly), \"place-items\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, self-start: self-start, self-end: self-end, baseline: baseline), \"place-self\": (auto: auto, normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, self-start: self-start, self-end: self-end, baseline: baseline), \"margin\": (0: 0px, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, 25: 7rem, 26: 8rem, 27: 9rem, 28: 10rem, 29: 11rem, 30: 12rem, \"-0\": 0px, \"-1px\": -1px, \"-0.5\": -0.125rem, \"-1\": -0.25rem, \"-1.5\": -0.375rem, \"-2\": -0.5rem, \"-2.5\": -0.625rem, \"-3\": -0.75rem, \"-3.5\": -0.875rem, \"-4\": -1rem, \"-4.5\": -1.125rem, \"-5\": -1.25rem, \"-5.5\": -1.375rem, \"-6\": -1.5rem, \"-6.5\": -1.625rem, \"-7\": -1.75rem, \"-7.5\": -1.875rem, \"-8\": -2rem, \"-9\": -2.25rem, \"-10\": -2.5rem, \"-11\": -2.75rem, \"-12\": -3rem, \"-13\": -3.25rem, \"-14\": -3.5rem, \"-15\": -3.75rem, \"-16\": -4rem, \"-17\": -4.25rem, \"-18\": -4.5rem, \"-19\": -4.75rem, \"-20\": -5rem, \"-21\": -5.25rem, \"-22\": -5.5rem, \"-23\": -5.75rem, \"-24\": -6rem, \"-25\": -7rem, \"-26\": -8rem, \"-27\": -9rem, \"-28\": -10rem, \"-29\": -11rem, \"-30\": -12rem, xs: var(--kendo-spacing-1, 0.25rem), sm: var(--kendo-spacing-2, 0.5rem), md: var(--kendo-spacing-3, 0.75rem), lg: var(--kendo-spacing-4, 1rem), xl: var(--kendo-spacing-6, 1.5rem), thin: var(--kendo-spacing-0\\.5, 0.125rem), hair: var(--kendo-spacing-1px, 1px), auto: auto), \"padding\": (0: 0px, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, 25: 7rem, 26: 8rem, 27: 9rem, 28: 10rem, 29: 11rem, 30: 12rem, xs: var(--kendo-spacing-1, 0.25rem), sm: var(--kendo-spacing-2, 0.5rem), md: var(--kendo-spacing-3, 0.75rem), lg: var(--kendo-spacing-4, 1rem), xl: var(--kendo-spacing-6, 1.5rem), thin: var(--kendo-spacing-0\\.5, 0.125rem), hair: var(--kendo-spacing-1px, 1px)), \"space-between\": (), \"width\": (0: 0px, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, 25: 7rem, 26: 8rem, 27: 9rem, 28: 10rem, 29: 11rem, 30: 12rem, \"auto\": auto, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%, \"min\": min-content, \"max\": max-content, \"fit\": fit-content, screen: 100vw), \"min-width\": (0: 0, full: 100%, screen: 100vw, min: min-content, max: max-content, fit: fit-content), \"max-width\": (none: none, 0: 0, full: 100%, screen: 100vw, min: min-content, max: max-content, fit: fit-content), \"height\": (0: 0px, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, 25: 7rem, 26: 8rem, 27: 9rem, 28: 10rem, 29: 11rem, 30: 12rem, \"auto\": auto, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%, \"min\": min-content, \"max\": max-content, \"fit\": fit-content, screen: 100vh), \"min-height\": (0: 0, full: 100%, screen: 100vh, min: min-content, max: max-content, fit: fit-content), \"max-height\": (none: none, 0: 0, full: 100%, screen: 100vh, min: min-content, max: max-content, fit: fit-content), \"font-family\": (), \"font-size\": (), \"font-smoothing\": (), \"font-style\": (italic: italic, non-italic: normal, oblique: oblique), \"font-weight\": (), \"font-variant-numeric\": (), \"letter-spacing\": (), \"line-height\": (), \"list-style-type\": (none, disc, decimal), \"list-style-position\": (), \"text-align\": (left, right, center, justify, start, end), \"text-color\": (\"inherit\": inherit, \"current\": currentColor, \"transparent\": transparent, \"black\": black, \"white\": white), \"text-decoration\": (underline: underline, overline: overline, line-through: line-through, no-underline: none), \"text-decoration-width\": (), \"text-decoration-style\": (), \"text-decoration-color\": (), \"text-decoration-offset\": (), \"text-transform\": (uppercase: uppercase, lowercase: lowercase, capitalize: capitalize, normal-case: none), \"text-overflow\": (clip: clip, ellipsis: ellipsis), \"text-indent\": (), \"vertical-align\": (baseline, top, middle, bottom, text-top, text-bottom, sub, super), \"white-space\": (normal, nowrap, pre, pre-line, pre-wrap, break-spaces), \"word-break\": (), \"background-clip\": (border: border-box, padding: padding-box, content: content-box, text: text), \"background-color\": (\"inherit\": inherit, \"transparent\": transparent, \"black\": black, \"white\": white), \"background-position\": (center: center, top: top, right: right, bottom: bottom, left: left, top-left: top left, top-right: top right, bottom-left: bottom left, bottom-right: bottom right), \"background-size\": (auto, cover, contain), \"border-width\": (DEFAULT: 1px, 0: 0, 2: 2px, 4: 4px, 8: 8px), \"border-style\": (solid, dashed, dotted, double, inset, outset, hidden, none), \"border-color\": (\"inherit\": inherit, \"current\": currentColor, \"transparent\": transparent, \"black\": black, \"white\": white), \"border-radius\": (), \"outline-width\": (DEFAULT: 1px, 0: 0, 2: 2px, 4: 4px, 8: 8px), \"outline-style\": (solid, dashed, dotted, double, inset, outset, none), \"outline-color\": (\"inherit\": inherit, \"current\": currentColor, \"transparent\": transparent, \"black\": black, \"white\": white), \"outline-offset\": (0: 0, 1: 1px, 2: 2px, 4: 4px, 8: 8px), \"box-shadow\": (), \"box-shadow-color\": (), \"opacity\": (0: 0, 5: 0.05, 10: 0.1, 20: 0.2, 30: 0.3, 40: 0.4, 50: 0.5, 60: 0.6, 70: 0.7, 80: 0.8, 90: 0.9, 100: 1), \"backdrop-blur\": (DEFAULT: blur(8px), none: blur(0), sm: blur(4px), md: blur(6px), lg: blur(12px)), \"border-collapse\": (collapse, separate), \"table-layout\": (auto, fixed), \"flip\": true, \"scale\": (0: 0, 0.25: 0.25, 0.5: 0.5, 0.75: 0.75, 1: 1, 1.25: 1.25, 1.5: 1.5, 2: 2), \"rotate\": (0: 0deg, 45: 45deg, 90: 90deg, 135: 135deg, 180: 180deg, 225: 225deg, 270: 270deg, 315: 315deg), \"translate\": (0: 0px, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, 25: 7rem, 26: 8rem, 27: 9rem, 28: 10rem, 29: 11rem, 30: 12rem, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%), \"skew\": (0: 0deg, 1: 1deg, 2: 2deg, 3: 3deg, 4: 4deg, 5: 5deg, 6: 6deg, 7: 7deg, 8: 8deg, 9: 9deg, 10: 10deg, 11: 11deg, 12: 12deg), \"origin\": (center: center, top: top, right: right, bottom: bottom, left: left, top-left: top left, top-right: top right, bottom-left: bottom left, bottom-right: bottom right), \"accent-color\": (), \"appearance\": (none, auto), \"cursor\": (none, auto, default, context-menu, help, pointer, progress, wait, cell, crosshair, text, vertical-text, alias, copy, move, no-drop, not-allowed, e-resize, n-resize, ne-resize, nw-resize, s-resize, se-resize, sw-resize, w-resize, ew-resize, ns-resize, nesw-resize, nwse-resize, col-resize, row-resize, all-scroll, zoom-in, zoom-out, grab, grabbing), \"caret-color\": (), \"pointer-events\": (none, auto), \"resize\": (DEFAULT: both, none: none, x: horizontal, y: vertical), \"scroll-behavior\": (auto, smooth), \"scroll-snap-type\": (none: none, snap-x: x var(--k-scroll-snap-strictness), snap-y: y var(--k-scroll-snap-strictness), snap-both: both var(--k-scroll-snap-strictness)), \"scroll-snap-align\": (start, end, center, none), \"scroll-snap-stop\": (normal, always), \"scroll-margin\": (0: 0px, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, 25: 7rem, 26: 8rem, 27: 9rem, 28: 10rem, 29: 11rem, 30: 12rem), \"scroll-padding\": (0: 0px, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, 25: 7rem, 26: 8rem, 27: 9rem, 28: 10rem, 29: 11rem, 30: 12rem), \"touch-action\": (none, auto, pan-x, pan-left, pan-right, pan-y, pan-up, pan-down, pinch-zoom, manipulation), \"user-select\": (none, auto, text, all, contain), \"will-change\": (auto: auto, scroll: scroll-position, contents: contents, transform: transform), \"fill-stroke\": (none: none, inherit: inherit, current: currentColor, \"transparent\": transparent, \"black\": black, \"white\": white))",
1497
+ "value": "(\"screen-readers\": true, \"aspect-ratio\": (auto: auto, 1: 1, square: 1 / 1, video: 16 / 9), \"container\": (), \"columns\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, auto: auto), \"break-after\": (), \"break-before\": (), \"break-inside\": (), \"box-decoration-break\": (), \"box-sizing\": (border: border-box, content: content-box), \"display\": (none, contents, block, inline, inline-block, flex, inline-flex, grid, inline-grid, table, inline-table, table-row, table-cell, list-item), \"float\": (left, right, none), \"clear\": (left, right, both, none), \"isolation\": (), \"object-fit\": (contain, cover, fill, scale-down, initial, none), \"object-position\": (center: center, top: top, right: right, bottom: bottom, left: left, top-left: top left, top-right: top right, bottom-left: bottom left, bottom-right: bottom right), \"overflow\": (auto: auto, hidden: hidden, visible: visible, scroll: scroll, clip: clip), \"overscroll\": (), \"placement\": (0: 0px, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, 25: 7rem, 26: 8rem, 27: 9rem, 28: 10rem, 29: 11rem, 30: 12rem, -1: -1px), \"position\": (static, relative, absolute, fixed, sticky), \"inset\": (0: 0, 1: 1px, -1: -1px), \"visibility\": (visible: visible, invisible: hidden, collapse: collapse), \"zindex\": (0: 0, 10: 10, 20: 20, 30: 30, 40: 40, 50: 50, auto: auto), \"flex-direction\": (row: row, row-reverse: row-reverse, col: column, col-reverse: column-reverse), \"flex-wrap\": (wrap, wrap-reverse, nowrap), \"flex\": (1: 1 1 0%, auto: 1 1 auto, initial: 0 1 auto, none: none), \"flex-grow\": (DEFAULT: 1, 0: 0), \"flex-shrink\": (DEFAULT: 1, 0: 0), \"flex-basis\": (0: 0px, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, 25: 7rem, 26: 8rem, 27: 9rem, 28: 10rem, 29: 11rem, 30: 12rem, \"auto\": auto, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%, \"min\": min-content, \"max\": max-content, \"fit\": fit-content), \"order\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, first: -9999, last: 9999, none: 0), \"grid-template-columns\": (1: repeat(1, minmax(0, 1fr)), 2: repeat(2, minmax(0, 1fr)), 3: repeat(3, minmax(0, 1fr)), 4: repeat(4, minmax(0, 1fr)), 5: repeat(5, minmax(0, 1fr)), 6: repeat(6, minmax(0, 1fr)), 7: repeat(7, minmax(0, 1fr)), 8: repeat(8, minmax(0, 1fr)), 9: repeat(9, minmax(0, 1fr)), 10: repeat(10, minmax(0, 1fr)), 11: repeat(11, minmax(0, 1fr)), 12: repeat(12, minmax(0, 1fr)), none: none), \"grid-template-rows\": (1: repeat(1, minmax(0, 1fr)), 2: repeat(2, minmax(0, 1fr)), 3: repeat(3, minmax(0, 1fr)), 4: repeat(4, minmax(0, 1fr)), 5: repeat(5, minmax(0, 1fr)), 6: repeat(6, minmax(0, 1fr)), 7: repeat(7, minmax(0, 1fr)), 8: repeat(8, minmax(0, 1fr)), 9: repeat(9, minmax(0, 1fr)), 10: repeat(10, minmax(0, 1fr)), 11: repeat(11, minmax(0, 1fr)), 12: repeat(12, minmax(0, 1fr)), none: none), \"grid-column-start\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, auto: auto), \"grid-column-end\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, auto: auto), \"grid-column-span\": (1: span 1/span 1, 2: span 2/span 2, 3: span 3/span 3, 4: span 4/span 4, 5: span 5/span 5, 6: span 6/span 6, 7: span 7/span 7, 8: span 8/span 8, 9: span 9/span 9, 10: span 10/span 10, 11: span 11/span 11, 12: span 12/span 12, full: 1 / -1, auto: auto), \"grid-row-start\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, auto: auto), \"grid-row-end\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, auto: auto), \"grid-row-span\": (1: span 1/span 1, 2: span 2/span 2, 3: span 3/span 3, 4: span 4/span 4, 5: span 5/span 5, 6: span 6/span 6, 7: span 7/span 7, 8: span 8/span 8, 9: span 9/span 9, 10: span 10/span 10, 11: span 11/span 11, 12: span 12/span 12, full: span 1/span -1, auto: auto), \"grid-auto-flow\": (row: row, col: column, dense: dense, row-dense: row dense, col-dense: column dense, unset: unset), \"grid-auto-columns\": (auto: auto, min: min-content, max: max-content, fr: minmax(0, 1fr)), \"grid-auto-rows\": (auto: auto, min: min-content, max: max-content, fr: minmax(0, 1fr)), \"gap\": (0: 0px, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, 25: 7rem, 26: 8rem, 27: 9rem, 28: 10rem, 29: 11rem, 30: 12rem, xs: var(--kendo-spacing-1, 0.25rem), sm: var(--kendo-spacing-2, 0.5rem), md: var(--kendo-spacing-3, 0.75rem), lg: var(--kendo-spacing-4, 1rem), xl: var(--kendo-spacing-6, 1.5rem), thin: var(--kendo-spacing-0\\.5, 0.125rem), hair: var(--kendo-spacing-1px, 1px)), \"align-content\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline, between: space-between, around: space-around, evenly: space-evenly), \"align-items\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline, self-start: self-start, self-end: self-end), \"align-self\": (auto: auto, normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline, self-start: self-start, self-end: self-end), \"justify-content\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, left: left, right: right, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline, between: space-between, around: space-around, evenly: space-evenly), \"justify-items\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, self-start: self-start, self-end: self-end, left: left, right: right, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline), \"justify-self\": (auto: auto, normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, self-start: self-start, self-end: self-end, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline), \"place-content\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, baseline: baseline, between: space-between, around: space-around, evenly: space-evenly), \"place-items\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, self-start: self-start, self-end: self-end, baseline: baseline), \"place-self\": (auto: auto, normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, self-start: self-start, self-end: self-end, baseline: baseline), \"margin\": (0: 0px, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, 25: 7rem, 26: 8rem, 27: 9rem, 28: 10rem, 29: 11rem, 30: 12rem, \"-0\": 0px, \"-1px\": -1px, \"-0.5\": -0.125rem, \"-1\": -0.25rem, \"-1.5\": -0.375rem, \"-2\": -0.5rem, \"-2.5\": -0.625rem, \"-3\": -0.75rem, \"-3.5\": -0.875rem, \"-4\": -1rem, \"-4.5\": -1.125rem, \"-5\": -1.25rem, \"-5.5\": -1.375rem, \"-6\": -1.5rem, \"-6.5\": -1.625rem, \"-7\": -1.75rem, \"-7.5\": -1.875rem, \"-8\": -2rem, \"-9\": -2.25rem, \"-10\": -2.5rem, \"-11\": -2.75rem, \"-12\": -3rem, \"-13\": -3.25rem, \"-14\": -3.5rem, \"-15\": -3.75rem, \"-16\": -4rem, \"-17\": -4.25rem, \"-18\": -4.5rem, \"-19\": -4.75rem, \"-20\": -5rem, \"-21\": -5.25rem, \"-22\": -5.5rem, \"-23\": -5.75rem, \"-24\": -6rem, \"-25\": -7rem, \"-26\": -8rem, \"-27\": -9rem, \"-28\": -10rem, \"-29\": -11rem, \"-30\": -12rem, xs: var(--kendo-spacing-1, 0.25rem), sm: var(--kendo-spacing-2, 0.5rem), md: var(--kendo-spacing-3, 0.75rem), lg: var(--kendo-spacing-4, 1rem), xl: var(--kendo-spacing-6, 1.5rem), thin: var(--kendo-spacing-0\\.5, 0.125rem), hair: var(--kendo-spacing-1px, 1px), auto: auto), \"padding\": (0: 0px, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, 25: 7rem, 26: 8rem, 27: 9rem, 28: 10rem, 29: 11rem, 30: 12rem, xs: var(--kendo-spacing-1, 0.25rem), sm: var(--kendo-spacing-2, 0.5rem), md: var(--kendo-spacing-3, 0.75rem), lg: var(--kendo-spacing-4, 1rem), xl: var(--kendo-spacing-6, 1.5rem), thin: var(--kendo-spacing-0\\.5, 0.125rem), hair: var(--kendo-spacing-1px, 1px)), \"space-between\": (), \"width\": (0: 0px, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, 25: 7rem, 26: 8rem, 27: 9rem, 28: 10rem, 29: 11rem, 30: 12rem, \"auto\": auto, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%, \"min\": min-content, \"max\": max-content, \"fit\": fit-content, screen: 100vw), \"min-width\": (0: 0, full: 100%, screen: 100vw, min: min-content, max: max-content, fit: fit-content), \"max-width\": (none: none, 0: 0, full: 100%, screen: 100vw, min: min-content, max: max-content, fit: fit-content), \"height\": (0: 0px, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, 25: 7rem, 26: 8rem, 27: 9rem, 28: 10rem, 29: 11rem, 30: 12rem, \"auto\": auto, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%, \"min\": min-content, \"max\": max-content, \"fit\": fit-content, screen: 100vh), \"min-height\": (0: 0, full: 100%, screen: 100vh, min: min-content, max: max-content, fit: fit-content), \"max-height\": (none: none, 0: 0, full: 100%, screen: 100vh, min: min-content, max: max-content, fit: fit-content), \"font-family\": (), \"font-size\": (), \"font-smoothing\": (), \"font-style\": (italic: italic, non-italic: normal, oblique: oblique), \"font-weight\": (), \"font-variant-numeric\": (), \"letter-spacing\": (), \"line-height\": (), \"list-style-type\": (none, disc, decimal), \"list-style-position\": (), \"text-align\": (left, right, center, justify, start, end), \"text-color\": (app-surface: #ffffff, on-app-surface: #3d3d3d, subtle: #666666, surface: #fafafa, surface-alt: #ffffff, border: rgba(0, 0, 0, 0.08), border-alt: rgba(0, 0, 0, 0.16), base-subtle: #ebebeb, base-emphasis: #c2c2c2, primary-subtle: #ffeceb, primary: #ff6358, primary-emphasis: #ff9d97, secondary-subtle: #fafafa, secondary: #666666, secondary-emphasis: #e0e0e0, tertiary-subtle: #d8f1fd, tertiary: #03a9f4, tertiary-emphasis: #61c9f9, info-subtle: #d2e2fb, info: #0058e9, info-emphasis: #6098f2, success-subtle: #dcf0d3, success: #37b400, success-emphasis: #81d15f, warning-subtle: #fff4d3, warning: #ffc000, warning-emphasis: #ffd760, error-subtle: #fcddda, error: #f31700, error-emphasis: #f76f60, light-subtle: #fafafa, light: #ebebeb, light-emphasis: #d6d6d6, dark-subtle: #c2c2c2, dark: #3d3d3d, dark-emphasis: #666666, \"inherit\": inherit, \"current\": currentColor, \"transparent\": transparent, \"black\": black, \"white\": white), \"text-decoration\": (underline: underline, overline: overline, line-through: line-through, no-underline: none), \"text-decoration-width\": (), \"text-decoration-style\": (), \"text-decoration-color\": (), \"text-decoration-offset\": (), \"text-transform\": (uppercase: uppercase, lowercase: lowercase, capitalize: capitalize, normal-case: none), \"text-overflow\": (clip: clip, ellipsis: ellipsis), \"text-indent\": (), \"vertical-align\": (baseline, top, middle, bottom, text-top, text-bottom, sub, super), \"white-space\": (normal, nowrap, pre, pre-line, pre-wrap, break-spaces), \"word-break\": (), \"background-clip\": (border: border-box, padding: padding-box, content: content-box, text: text), \"background-color\": (app-surface: #ffffff, on-app-surface: #3d3d3d, subtle: #666666, surface: #fafafa, surface-alt: #ffffff, border: rgba(0, 0, 0, 0.08), border-alt: rgba(0, 0, 0, 0.16), base-subtle: #ebebeb, base-emphasis: #c2c2c2, primary-subtle: #ffeceb, primary: #ff6358, primary-emphasis: #ff9d97, secondary-subtle: #fafafa, secondary: #666666, secondary-emphasis: #e0e0e0, tertiary-subtle: #d8f1fd, tertiary: #03a9f4, tertiary-emphasis: #61c9f9, info-subtle: #d2e2fb, info: #0058e9, info-emphasis: #6098f2, success-subtle: #dcf0d3, success: #37b400, success-emphasis: #81d15f, warning-subtle: #fff4d3, warning: #ffc000, warning-emphasis: #ffd760, error-subtle: #fcddda, error: #f31700, error-emphasis: #f76f60, light-subtle: #fafafa, light: #ebebeb, light-emphasis: #d6d6d6, dark-subtle: #c2c2c2, dark: #3d3d3d, dark-emphasis: #666666, \"inherit\": inherit, \"transparent\": transparent, \"black\": black, \"white\": white), \"background-position\": (center: center, top: top, right: right, bottom: bottom, left: left, top-left: top left, top-right: top right, bottom-left: bottom left, bottom-right: bottom right), \"background-size\": (auto, cover, contain), \"border-width\": (DEFAULT: 1px, 0: 0, 2: 2px, 4: 4px, 8: 8px), \"border-style\": (solid, dashed, dotted, double, inset, outset, hidden, none), \"border-color\": (app-surface: #ffffff, on-app-surface: #3d3d3d, subtle: #666666, surface: #fafafa, surface-alt: #ffffff, border: rgba(0, 0, 0, 0.08), border-alt: rgba(0, 0, 0, 0.16), base-subtle: #ebebeb, base-emphasis: #c2c2c2, primary-subtle: #ffeceb, primary: #ff6358, primary-emphasis: #ff9d97, secondary-subtle: #fafafa, secondary: #666666, secondary-emphasis: #e0e0e0, tertiary-subtle: #d8f1fd, tertiary: #03a9f4, tertiary-emphasis: #61c9f9, info-subtle: #d2e2fb, info: #0058e9, info-emphasis: #6098f2, success-subtle: #dcf0d3, success: #37b400, success-emphasis: #81d15f, warning-subtle: #fff4d3, warning: #ffc000, warning-emphasis: #ffd760, error-subtle: #fcddda, error: #f31700, error-emphasis: #f76f60, light-subtle: #fafafa, light: #ebebeb, light-emphasis: #d6d6d6, dark-subtle: #c2c2c2, dark: #3d3d3d, dark-emphasis: #666666, \"inherit\": inherit, \"current\": currentColor, \"transparent\": transparent, \"black\": black, \"white\": white), \"border-radius\": (), \"outline-width\": (DEFAULT: 1px, 0: 0, 2: 2px, 4: 4px, 8: 8px), \"outline-style\": (solid, dashed, dotted, double, inset, outset, none), \"outline-color\": (app-surface: #ffffff, on-app-surface: #3d3d3d, subtle: #666666, surface: #fafafa, surface-alt: #ffffff, border: rgba(0, 0, 0, 0.08), border-alt: rgba(0, 0, 0, 0.16), base-subtle: #ebebeb, base-emphasis: #c2c2c2, primary-subtle: #ffeceb, primary: #ff6358, primary-emphasis: #ff9d97, secondary-subtle: #fafafa, secondary: #666666, secondary-emphasis: #e0e0e0, tertiary-subtle: #d8f1fd, tertiary: #03a9f4, tertiary-emphasis: #61c9f9, info-subtle: #d2e2fb, info: #0058e9, info-emphasis: #6098f2, success-subtle: #dcf0d3, success: #37b400, success-emphasis: #81d15f, warning-subtle: #fff4d3, warning: #ffc000, warning-emphasis: #ffd760, error-subtle: #fcddda, error: #f31700, error-emphasis: #f76f60, light-subtle: #fafafa, light: #ebebeb, light-emphasis: #d6d6d6, dark-subtle: #c2c2c2, dark: #3d3d3d, dark-emphasis: #666666, \"inherit\": inherit, \"current\": currentColor, \"transparent\": transparent, \"black\": black, \"white\": white), \"outline-offset\": (0: 0, 1: 1px, 2: 2px, 4: 4px, 8: 8px), \"box-shadow\": (), \"box-shadow-color\": (), \"opacity\": (0: 0, 5: 0.05, 10: 0.1, 20: 0.2, 30: 0.3, 40: 0.4, 50: 0.5, 60: 0.6, 70: 0.7, 80: 0.8, 90: 0.9, 100: 1), \"backdrop-blur\": (DEFAULT: blur(8px), none: blur(0), sm: blur(4px), md: blur(6px), lg: blur(12px)), \"border-collapse\": (collapse, separate), \"table-layout\": (auto, fixed), \"flip\": true, \"scale\": (0: 0, 0.25: 0.25, 0.5: 0.5, 0.75: 0.75, 1: 1, 1.25: 1.25, 1.5: 1.5, 2: 2), \"rotate\": (0: 0deg, 45: 45deg, 90: 90deg, 135: 135deg, 180: 180deg, 225: 225deg, 270: 270deg, 315: 315deg), \"translate\": (0: 0px, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, 25: 7rem, 26: 8rem, 27: 9rem, 28: 10rem, 29: 11rem, 30: 12rem, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%), \"skew\": (0: 0deg, 1: 1deg, 2: 2deg, 3: 3deg, 4: 4deg, 5: 5deg, 6: 6deg, 7: 7deg, 8: 8deg, 9: 9deg, 10: 10deg, 11: 11deg, 12: 12deg), \"origin\": (center: center, top: top, right: right, bottom: bottom, left: left, top-left: top left, top-right: top right, bottom-left: bottom left, bottom-right: bottom right), \"accent-color\": (), \"appearance\": (none, auto), \"cursor\": (none, auto, default, context-menu, help, pointer, progress, wait, cell, crosshair, text, vertical-text, alias, copy, move, no-drop, not-allowed, e-resize, n-resize, ne-resize, nw-resize, s-resize, se-resize, sw-resize, w-resize, ew-resize, ns-resize, nesw-resize, nwse-resize, col-resize, row-resize, all-scroll, zoom-in, zoom-out, grab, grabbing), \"caret-color\": (), \"pointer-events\": (none, auto), \"resize\": (DEFAULT: both, none: none, x: horizontal, y: vertical), \"scroll-behavior\": (auto, smooth), \"scroll-snap-type\": (none: none, snap-x: x var(--k-scroll-snap-strictness), snap-y: y var(--k-scroll-snap-strictness), snap-both: both var(--k-scroll-snap-strictness)), \"scroll-snap-align\": (start, end, center, none), \"scroll-snap-stop\": (normal, always), \"scroll-margin\": (0: 0px, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, 25: 7rem, 26: 8rem, 27: 9rem, 28: 10rem, 29: 11rem, 30: 12rem), \"scroll-padding\": (0: 0px, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, 25: 7rem, 26: 8rem, 27: 9rem, 28: 10rem, 29: 11rem, 30: 12rem), \"touch-action\": (none, auto, pan-x, pan-left, pan-right, pan-y, pan-up, pan-down, pinch-zoom, manipulation), \"user-select\": (none, auto, text, all, contain), \"will-change\": (auto: auto, scroll: scroll-position, contents: contents, transform: transform), \"fill-stroke\": (none: none, inherit: inherit, current: currentColor, \"transparent\": transparent, \"black\": black, \"white\": white))",
1453
1498
  "prettyValue": {
1454
1499
  "screen-readers": true,
1455
1500
  "aspect-ratio": {
@@ -1724,19 +1769,6 @@
1724
1769
  "11": 11,
1725
1770
  "12": 12,
1726
1771
  "13": 13,
1727
- "-1": -1,
1728
- "-2": -2,
1729
- "-3": -3,
1730
- "-4": -4,
1731
- "-5": -5,
1732
- "-6": -6,
1733
- "-7": -7,
1734
- "-8": -8,
1735
- "-9": -9,
1736
- "-10": -10,
1737
- "-11": -11,
1738
- "-12": -12,
1739
- "-13": -13,
1740
1772
  "auto": "auto"
1741
1773
  },
1742
1774
  "grid-column-end": {
@@ -1753,19 +1785,6 @@
1753
1785
  "11": 11,
1754
1786
  "12": 12,
1755
1787
  "13": 13,
1756
- "-1": -1,
1757
- "-2": -2,
1758
- "-3": -3,
1759
- "-4": -4,
1760
- "-5": -5,
1761
- "-6": -6,
1762
- "-7": -7,
1763
- "-8": -8,
1764
- "-9": -9,
1765
- "-10": -10,
1766
- "-11": -11,
1767
- "-12": -12,
1768
- "-13": -13,
1769
1788
  "auto": "auto"
1770
1789
  },
1771
1790
  "grid-column-span": {
@@ -1798,19 +1817,6 @@
1798
1817
  "11": 11,
1799
1818
  "12": 12,
1800
1819
  "13": 13,
1801
- "-1": -1,
1802
- "-2": -2,
1803
- "-3": -3,
1804
- "-4": -4,
1805
- "-5": -5,
1806
- "-6": -6,
1807
- "-7": -7,
1808
- "-8": -8,
1809
- "-9": -9,
1810
- "-10": -10,
1811
- "-11": -11,
1812
- "-12": -12,
1813
- "-13": -13,
1814
1820
  "auto": "auto"
1815
1821
  },
1816
1822
  "grid-row-end": {
@@ -1827,19 +1833,6 @@
1827
1833
  "11": 11,
1828
1834
  "12": 12,
1829
1835
  "13": 13,
1830
- "-1": -1,
1831
- "-2": -2,
1832
- "-3": -3,
1833
- "-4": -4,
1834
- "-5": -5,
1835
- "-6": -6,
1836
- "-7": -7,
1837
- "-8": -8,
1838
- "-9": -9,
1839
- "-10": -10,
1840
- "-11": -11,
1841
- "-12": -12,
1842
- "-13": -13,
1843
1836
  "auto": "auto"
1844
1837
  },
1845
1838
  "grid-row-span": {
@@ -2395,6 +2388,42 @@
2395
2388
  "list-style-position": "()",
2396
2389
  "text-align": "left, right, center, justify, start, end",
2397
2390
  "text-color": {
2391
+ "app-surface": "#ffffff",
2392
+ "on-app-surface": "#3d3d3d",
2393
+ "subtle": "#666666",
2394
+ "surface": "#fafafa",
2395
+ "surface-alt": "#ffffff",
2396
+ "border": "rgba(0, 0, 0, 0.08)",
2397
+ "border-alt": "rgba(0, 0, 0, 0.16)",
2398
+ "base-subtle": "#ebebeb",
2399
+ "base-emphasis": "#c2c2c2",
2400
+ "primary-subtle": "#ffeceb",
2401
+ "primary": "#ff6358",
2402
+ "primary-emphasis": "#ff9d97",
2403
+ "secondary-subtle": "#fafafa",
2404
+ "secondary": "#666666",
2405
+ "secondary-emphasis": "#e0e0e0",
2406
+ "tertiary-subtle": "#d8f1fd",
2407
+ "tertiary": "#03a9f4",
2408
+ "tertiary-emphasis": "#61c9f9",
2409
+ "info-subtle": "#d2e2fb",
2410
+ "info": "#0058e9",
2411
+ "info-emphasis": "#6098f2",
2412
+ "success-subtle": "#dcf0d3",
2413
+ "success": "#37b400",
2414
+ "success-emphasis": "#81d15f",
2415
+ "warning-subtle": "#fff4d3",
2416
+ "warning": "#ffc000",
2417
+ "warning-emphasis": "#ffd760",
2418
+ "error-subtle": "#fcddda",
2419
+ "error": "#f31700",
2420
+ "error-emphasis": "#f76f60",
2421
+ "light-subtle": "#fafafa",
2422
+ "light": "#ebebeb",
2423
+ "light-emphasis": "#d6d6d6",
2424
+ "dark-subtle": "#c2c2c2",
2425
+ "dark": "#3d3d3d",
2426
+ "dark-emphasis": "#666666",
2398
2427
  "inherit": "inherit",
2399
2428
  "current": "currentColor",
2400
2429
  "transparent": "transparent",
@@ -2432,6 +2461,42 @@
2432
2461
  "text": "text"
2433
2462
  },
2434
2463
  "background-color": {
2464
+ "app-surface": "#ffffff",
2465
+ "on-app-surface": "#3d3d3d",
2466
+ "subtle": "#666666",
2467
+ "surface": "#fafafa",
2468
+ "surface-alt": "#ffffff",
2469
+ "border": "rgba(0, 0, 0, 0.08)",
2470
+ "border-alt": "rgba(0, 0, 0, 0.16)",
2471
+ "base-subtle": "#ebebeb",
2472
+ "base-emphasis": "#c2c2c2",
2473
+ "primary-subtle": "#ffeceb",
2474
+ "primary": "#ff6358",
2475
+ "primary-emphasis": "#ff9d97",
2476
+ "secondary-subtle": "#fafafa",
2477
+ "secondary": "#666666",
2478
+ "secondary-emphasis": "#e0e0e0",
2479
+ "tertiary-subtle": "#d8f1fd",
2480
+ "tertiary": "#03a9f4",
2481
+ "tertiary-emphasis": "#61c9f9",
2482
+ "info-subtle": "#d2e2fb",
2483
+ "info": "#0058e9",
2484
+ "info-emphasis": "#6098f2",
2485
+ "success-subtle": "#dcf0d3",
2486
+ "success": "#37b400",
2487
+ "success-emphasis": "#81d15f",
2488
+ "warning-subtle": "#fff4d3",
2489
+ "warning": "#ffc000",
2490
+ "warning-emphasis": "#ffd760",
2491
+ "error-subtle": "#fcddda",
2492
+ "error": "#f31700",
2493
+ "error-emphasis": "#f76f60",
2494
+ "light-subtle": "#fafafa",
2495
+ "light": "#ebebeb",
2496
+ "light-emphasis": "#d6d6d6",
2497
+ "dark-subtle": "#c2c2c2",
2498
+ "dark": "#3d3d3d",
2499
+ "dark-emphasis": "#666666",
2435
2500
  "inherit": "inherit",
2436
2501
  "transparent": "transparent",
2437
2502
  "black": "black",
@@ -2458,6 +2523,42 @@
2458
2523
  },
2459
2524
  "border-style": "solid, dashed, dotted, double, inset, outset, hidden, none",
2460
2525
  "border-color": {
2526
+ "app-surface": "#ffffff",
2527
+ "on-app-surface": "#3d3d3d",
2528
+ "subtle": "#666666",
2529
+ "surface": "#fafafa",
2530
+ "surface-alt": "#ffffff",
2531
+ "border": "rgba(0, 0, 0, 0.08)",
2532
+ "border-alt": "rgba(0, 0, 0, 0.16)",
2533
+ "base-subtle": "#ebebeb",
2534
+ "base-emphasis": "#c2c2c2",
2535
+ "primary-subtle": "#ffeceb",
2536
+ "primary": "#ff6358",
2537
+ "primary-emphasis": "#ff9d97",
2538
+ "secondary-subtle": "#fafafa",
2539
+ "secondary": "#666666",
2540
+ "secondary-emphasis": "#e0e0e0",
2541
+ "tertiary-subtle": "#d8f1fd",
2542
+ "tertiary": "#03a9f4",
2543
+ "tertiary-emphasis": "#61c9f9",
2544
+ "info-subtle": "#d2e2fb",
2545
+ "info": "#0058e9",
2546
+ "info-emphasis": "#6098f2",
2547
+ "success-subtle": "#dcf0d3",
2548
+ "success": "#37b400",
2549
+ "success-emphasis": "#81d15f",
2550
+ "warning-subtle": "#fff4d3",
2551
+ "warning": "#ffc000",
2552
+ "warning-emphasis": "#ffd760",
2553
+ "error-subtle": "#fcddda",
2554
+ "error": "#f31700",
2555
+ "error-emphasis": "#f76f60",
2556
+ "light-subtle": "#fafafa",
2557
+ "light": "#ebebeb",
2558
+ "light-emphasis": "#d6d6d6",
2559
+ "dark-subtle": "#c2c2c2",
2560
+ "dark": "#3d3d3d",
2561
+ "dark-emphasis": "#666666",
2461
2562
  "inherit": "inherit",
2462
2563
  "current": "currentColor",
2463
2564
  "transparent": "transparent",
@@ -2474,6 +2575,42 @@
2474
2575
  },
2475
2576
  "outline-style": "solid, dashed, dotted, double, inset, outset, none",
2476
2577
  "outline-color": {
2578
+ "app-surface": "#ffffff",
2579
+ "on-app-surface": "#3d3d3d",
2580
+ "subtle": "#666666",
2581
+ "surface": "#fafafa",
2582
+ "surface-alt": "#ffffff",
2583
+ "border": "rgba(0, 0, 0, 0.08)",
2584
+ "border-alt": "rgba(0, 0, 0, 0.16)",
2585
+ "base-subtle": "#ebebeb",
2586
+ "base-emphasis": "#c2c2c2",
2587
+ "primary-subtle": "#ffeceb",
2588
+ "primary": "#ff6358",
2589
+ "primary-emphasis": "#ff9d97",
2590
+ "secondary-subtle": "#fafafa",
2591
+ "secondary": "#666666",
2592
+ "secondary-emphasis": "#e0e0e0",
2593
+ "tertiary-subtle": "#d8f1fd",
2594
+ "tertiary": "#03a9f4",
2595
+ "tertiary-emphasis": "#61c9f9",
2596
+ "info-subtle": "#d2e2fb",
2597
+ "info": "#0058e9",
2598
+ "info-emphasis": "#6098f2",
2599
+ "success-subtle": "#dcf0d3",
2600
+ "success": "#37b400",
2601
+ "success-emphasis": "#81d15f",
2602
+ "warning-subtle": "#fff4d3",
2603
+ "warning": "#ffc000",
2604
+ "warning-emphasis": "#ffd760",
2605
+ "error-subtle": "#fcddda",
2606
+ "error": "#f31700",
2607
+ "error-emphasis": "#f76f60",
2608
+ "light-subtle": "#fafafa",
2609
+ "light": "#ebebeb",
2610
+ "light-emphasis": "#d6d6d6",
2611
+ "dark-subtle": "#c2c2c2",
2612
+ "dark": "#3d3d3d",
2613
+ "dark-emphasis": "#666666",
2477
2614
  "inherit": "inherit",
2478
2615
  "current": "currentColor",
2479
2616
  "transparent": "transparent",
@@ -2754,10 +2891,6 @@
2754
2891
  "type": "Number",
2755
2892
  "value": "17px"
2756
2893
  },
2757
- "kendo-components": {
2758
- "type": "List",
2759
- "value": "\"typography\", \"utils\", \"draggable\", \"table\", \"icon\", \"chip\", \"messagebox\", \"input\", \"list\", \"listgroup\", \"overlay\", \"ripple\", \"virtual-scroller\", \"avatar\", \"badge\", \"color-preview\", \"loader\", \"skeleton\", \"tooltip\", \"time-marker\", \"button\", \"split-button\", \"menu-button\", \"textbox\", \"textarea\", \"checkbox\", \"listbox\", \"progressbar\", \"radio\", \"slider\", \"form\", \"validator\", \"floating-label\", \"calendar\", \"popup\", \"time-selector\", \"autocomplete\", \"captcha\", \"color-palette\", \"color-gradient\", \"color-editor\", \"color-picker\", \"combobox\", \"date-input\", \"date-picker\", \"time-picker\", \"date-time-picker\", \"date-range-picker\", \"dropdown-grid\", \"dropdown-list\", \"dropdown-tree\", \"masked-textbox\", \"multiselect\", \"numeric-textbox\", \"rating\", \"searchbox\", \"switch\", \"upload\", \"dropzone\", \"actions\", \"appbar\", \"fab\", \"menu\", \"toolbar\", \"action-sheet\", \"dialog\", \"drawer\", \"notification\", \"popover\", \"responsive-panel\", \"window\", \"bottom-navigation\", \"breadcrumb\", \"pager\", \"stepper\", \"tabstrip\", \"treeview\", \"wizard\", \"card\", \"expander\", \"panel\", \"panelbar\", \"splitter\", \"tile-layout\", \"dock-manager\", \"chart-wizard\", \"grid\", \"listview\", \"spreadsheet\", \"pivotgrid\", \"treelist\", \"filter\", \"file-manager\", \"task-board\", \"editor\", \"image-editor\", \"gantt\", \"scheduler\", \"adaptive\", \"chat\", \"media-player\", \"timeline\", \"pdf-viewer\", \"scroller\", \"scrollview\", \"prompt\", \"dataviz\", \"map\", \"orgchart\", \"signature\""
2760
- },
2761
2894
  "kendo-elevation": {
2762
2895
  "type": "Map",
2763
2896
  "value": "(1: (0 2px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.12)), 2: (0 4px 6px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.12)), 3: (0 6px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.12)), 4: (0 8px 10px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.12)), 5: (0 10px 12px rgba(0, 0, 0, 0.16), 0 4px 16px rgba(0, 0, 0, 0.12)), 6: (0 12px 14px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.12)), 7: (0 14px 16px rgba(0, 0, 0, 0.24), 0 4px 16px rgba(0, 0, 0, 0.12)), 8: (0 16px 18px rgba(0, 0, 0, 0.28), 0 4px 16px rgba(0, 0, 0, 0.12)), 9: (0 32px 34px rgba(0, 0, 0, 0.32), 0 4px 16px rgba(0, 0, 0, 0.12)))",