@sprinklrjs/spaceweb-themes 12.33.2 → 14.11.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 (91) hide show
  1. package/common-theme/theme.d.ts +26 -4
  2. package/common-theme/theme.js +53 -33
  3. package/common-theme/utilities.d.ts +1260 -1206
  4. package/common-theme/utilities.js +657 -639
  5. package/hyperspace/dark/index.d.ts +1879 -1535
  6. package/hyperspace/dark/index.js +4 -4
  7. package/hyperspace/dark/theme.d.ts +370 -270
  8. package/hyperspace/dark/theme.js +270 -191
  9. package/hyperspace/dark/utilities.d.ts +1509 -1265
  10. package/hyperspace/dark/utilities.js +130 -57
  11. package/hyperspace/light/index.d.ts +1944 -1600
  12. package/hyperspace/light/index.js +4 -4
  13. package/hyperspace/light/theme.d.ts +383 -283
  14. package/hyperspace/light/theme.js +273 -194
  15. package/hyperspace/light/utilities.d.ts +1522 -1278
  16. package/hyperspace/light/utilities.js +133 -62
  17. package/hyperspace/themeVars.css +228 -101
  18. package/hyperspace/themeVars.min.css +1 -1
  19. package/hyperspace-15/common-theme/theme.d.ts +369 -0
  20. package/hyperspace-15/common-theme/theme.js +333 -0
  21. package/hyperspace-15/common-theme/utilities.d.ts +5352 -0
  22. package/hyperspace-15/common-theme/utilities.js +1641 -0
  23. package/{space → hyperspace-15/hyperspace}/dark/index.d.ts +1935 -1537
  24. package/hyperspace-15/hyperspace/dark/index.js +8 -0
  25. package/{space/light → hyperspace-15/hyperspace/dark}/theme.d.ts +383 -232
  26. package/hyperspace-15/hyperspace/dark/theme.js +403 -0
  27. package/{space → hyperspace-15/hyperspace}/dark/utilities.d.ts +1522 -1275
  28. package/hyperspace-15/hyperspace/dark/utilities.js +225 -0
  29. package/{space → hyperspace-15/hyperspace}/light/index.d.ts +1903 -1505
  30. package/hyperspace-15/hyperspace/light/index.js +8 -0
  31. package/{space/dark → hyperspace-15/hyperspace/light}/theme.d.ts +386 -235
  32. package/hyperspace-15/hyperspace/light/theme.js +403 -0
  33. package/{space → hyperspace-15/hyperspace}/light/utilities.d.ts +1519 -1272
  34. package/hyperspace-15/hyperspace/light/utilities.js +225 -0
  35. package/hyperspace-15/hyperspace/themeVars.css +403 -0
  36. package/hyperspace-15/hyperspace/themeVars.min.css +1 -0
  37. package/hyperspace-15/styles/tailwind-media.css +2472 -0
  38. package/hyperspace-15/styles/tailwind-media.min.css +1 -0
  39. package/hyperspace-15/styles/tailwind.css +11504 -0
  40. package/hyperspace-15/styles/tailwind.min.css +1 -0
  41. package/hyperspace-16/common-theme/theme.d.ts +369 -0
  42. package/hyperspace-16/common-theme/theme.js +333 -0
  43. package/hyperspace-16/common-theme/utilities.d.ts +5352 -0
  44. package/hyperspace-16/common-theme/utilities.js +1641 -0
  45. package/hyperspace-16/hyperspace/dark/index.d.ts +6896 -0
  46. package/hyperspace-16/hyperspace/dark/index.js +8 -0
  47. package/hyperspace-16/hyperspace/dark/theme.d.ts +961 -0
  48. package/hyperspace-16/hyperspace/dark/theme.js +403 -0
  49. package/hyperspace-16/hyperspace/dark/utilities.d.ts +5934 -0
  50. package/hyperspace-16/hyperspace/dark/utilities.js +225 -0
  51. package/hyperspace-16/hyperspace/light/index.d.ts +6896 -0
  52. package/hyperspace-16/hyperspace/light/index.js +8 -0
  53. package/hyperspace-16/hyperspace/light/theme.d.ts +961 -0
  54. package/hyperspace-16/hyperspace/light/theme.js +403 -0
  55. package/hyperspace-16/hyperspace/light/utilities.d.ts +5934 -0
  56. package/hyperspace-16/hyperspace/light/utilities.js +225 -0
  57. package/hyperspace-16/hyperspace/themeVars.css +403 -0
  58. package/hyperspace-16/hyperspace/themeVars.min.css +1 -0
  59. package/hyperspace-16/styles/tailwind-media.css +2472 -0
  60. package/hyperspace-16/styles/tailwind-media.min.css +1 -0
  61. package/hyperspace-16/styles/tailwind.css +11504 -0
  62. package/hyperspace-16/styles/tailwind.min.css +1 -0
  63. package/package.json +11 -11
  64. package/polyfill/countryflagEmoji.ts +12 -0
  65. package/styles/additionals.css +1042 -0
  66. package/styles/additionals.min.css +1 -0
  67. package/styles/breakpoints.scss +34 -0
  68. package/styles/normalize.css +350 -69
  69. package/styles/normalize.min.css +1 -1
  70. package/styles/spaceweb.css +6 -0
  71. package/styles/tailwind-media.css +2472 -0
  72. package/styles/tailwind-media.min.css +1 -0
  73. package/styles/tailwind-rtl.css +79 -0
  74. package/styles/tailwind-rtl.min.css +1 -0
  75. package/styles/tailwind-test-classes.css +7789 -0
  76. package/styles/tailwind.css +8544 -6217
  77. package/styles/tailwind.min.css +1 -1
  78. package/styles/tokens.scss +6 -6
  79. package/types.d.ts +133 -83
  80. package/utilities.css +135 -54
  81. package/utilities.min.css +1 -1
  82. package/space/dark/index.js +0 -8
  83. package/space/dark/theme.js +0 -301
  84. package/space/dark/utilities.js +0 -149
  85. package/space/light/index.js +0 -8
  86. package/space/light/theme.js +0 -301
  87. package/space/light/utilities.js +0 -149
  88. package/space/themeVars.css +0 -274
  89. package/space/themeVars.min.css +0 -1
  90. package/styles/globals.css +0 -80
  91. package/styles/globals.min.css +0 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.