@public-ui/sample-react 2.0.0-rc.9 → 2.0.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 (121) hide show
  1. package/README.md +18 -0
  2. package/dist/1130.js +2 -0
  3. package/dist/1474.js +1 -1
  4. package/dist/{2597.js → 1644.js} +2 -2
  5. package/dist/183.js +1 -1
  6. package/dist/2337.js +1 -1
  7. package/dist/2412.js +1 -1
  8. package/dist/{5327.js → 2738.js} +2 -2
  9. package/dist/3303.js +1 -1
  10. package/dist/3325.js +1 -1
  11. package/dist/3429.js +1 -1
  12. package/dist/3459.js +1 -1
  13. package/dist/3932.js +1 -1
  14. package/dist/4022.js +1 -1
  15. package/dist/4164.js +1 -1
  16. package/dist/4195.js +1 -1
  17. package/dist/4291.js +1 -1
  18. package/dist/4323.js +1 -1
  19. package/dist/4355.js +1 -1
  20. package/dist/4564.js +1 -1
  21. package/dist/4891.js +1 -1
  22. package/dist/5183.js +1 -1
  23. package/dist/5369.js +1 -1
  24. package/dist/5382.js +2 -0
  25. package/dist/5390.js +1 -1
  26. package/dist/540.js +1 -1
  27. package/dist/5717.js +1 -1
  28. package/dist/{8026.js → 5860.js} +2 -2
  29. package/dist/5862.js +1 -1
  30. package/dist/5866.js +1 -1
  31. package/dist/589.js +2 -0
  32. package/dist/6012.js +1 -1
  33. package/dist/6068.js +1 -1
  34. package/dist/6210.js +1 -1
  35. package/dist/6320.js +1 -1
  36. package/dist/6558.js +1 -1
  37. package/dist/6813.js +1 -1
  38. package/dist/6908.js +1 -1
  39. package/dist/7029.js +1 -1
  40. package/dist/7255.js +1 -1
  41. package/dist/{9598.js → 7380.js} +2 -2
  42. package/dist/7447.js +1 -1
  43. package/dist/7535.js +1 -1
  44. package/dist/7715.js +1 -1
  45. package/dist/7722.js +1 -1
  46. package/dist/7734.js +1 -1
  47. package/dist/7801.js +1 -1
  48. package/dist/7858.js +1 -1
  49. package/dist/7955.js +1 -1
  50. package/dist/7995.js +1 -1
  51. package/dist/8061.js +1 -1
  52. package/dist/8065.js +1 -1
  53. package/dist/8073.js +1 -1
  54. package/dist/8111.js +1 -1
  55. package/dist/8255.js +1 -1
  56. package/dist/8291.js +1 -1
  57. package/dist/8709.js +1 -1
  58. package/dist/8761.js +1 -1
  59. package/dist/9734.js +1 -1
  60. package/dist/9747.js +1 -1
  61. package/dist/979.js +2 -0
  62. package/dist/9792.js +1 -1
  63. package/dist/9895.js +1 -1
  64. package/dist/9963.js +1 -1
  65. package/dist/9972.js +1 -1
  66. package/dist/main.css +1 -1
  67. package/dist/main.js +680 -3419
  68. package/dist/main.js.LICENSE.txt +2 -2
  69. package/package.json +14 -14
  70. package/src/App.tsx +3 -1
  71. package/src/components/FocusInput.tsx +9 -8
  72. package/src/components/avatar/basic.tsx +3 -1
  73. package/src/components/badge/basic.tsx +5 -9
  74. package/src/components/badge/button.tsx +16 -12
  75. package/src/components/button-link/basic.tsx +3 -0
  76. package/src/components/button-link/image.tsx +1 -1
  77. package/src/components/card/flex.tsx +1 -1
  78. package/src/components/card/selection.tsx +3 -3
  79. package/src/components/handout/basic.tsx +19 -7
  80. package/src/components/heading/badged.tsx +5 -5
  81. package/src/components/image/basic.tsx +1 -1
  82. package/src/components/input-checkbox/partials/cases.tsx +2 -0
  83. package/src/components/input-radio/partials/cases.tsx +1 -2
  84. package/src/components/kolibri/basic.tsx +16 -2
  85. package/src/components/kolibri/routes.ts +0 -4
  86. package/src/components/link/basic.tsx +1 -3
  87. package/src/components/link/image.tsx +2 -2
  88. package/src/components/nav/aria-current.tsx +25 -15
  89. package/src/components/nav/basic.tsx +1 -3
  90. package/src/components/nav/horizontal.tsx +0 -3
  91. package/src/components/nav/routes.ts +0 -6
  92. package/src/components/split-button/basic.tsx +13 -2
  93. package/src/components/table/formatter.ts +5 -0
  94. package/src/components/table/render-cell.tsx +16 -8
  95. package/src/components/table/test-data.ts +340 -0
  96. package/src/components/table/with-pagination.tsx +4 -3
  97. package/src/components/tabs/basic.tsx +21 -6
  98. package/src/components/toast/basic.tsx +11 -1
  99. package/src/hooks/useSetCurrentLocation.ts +7 -0
  100. package/src/react.main.tsx +13 -7
  101. package/src/scenarios/appointment-form/ErrorList.tsx +1 -1
  102. package/src/scenarios/complex-form/component.tsx +23 -23
  103. package/src/scenarios/custom-tooltip-width.tsx +6 -0
  104. package/src/scenarios/inputs-get-value.tsx +160 -0
  105. package/src/scenarios/routes.ts +4 -0
  106. package/src/shares/theme.ts +4 -4
  107. package/dist/3961.js +0 -2
  108. package/dist/4446.js +0 -2
  109. package/dist/7052.js +0 -2
  110. package/dist/9091.js +0 -2
  111. package/src/components/kolibri/animated.tsx +0 -4
  112. package/src/components/kolibri/no-label.tsx +0 -4
  113. package/src/components/nav/active.tsx +0 -87
  114. /package/dist/{2597.js.LICENSE.txt → 1130.js.LICENSE.txt} +0 -0
  115. /package/dist/{3961.js.LICENSE.txt → 1644.js.LICENSE.txt} +0 -0
  116. /package/dist/{4446.js.LICENSE.txt → 2738.js.LICENSE.txt} +0 -0
  117. /package/dist/{5327.js.LICENSE.txt → 5382.js.LICENSE.txt} +0 -0
  118. /package/dist/{7052.js.LICENSE.txt → 5860.js.LICENSE.txt} +0 -0
  119. /package/dist/{8026.js.LICENSE.txt → 589.js.LICENSE.txt} +0 -0
  120. /package/dist/{9091.js.LICENSE.txt → 7380.js.LICENSE.txt} +0 -0
  121. /package/dist/{9598.js.LICENSE.txt → 979.js.LICENSE.txt} +0 -0

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.