kdpa-components 1.18.4 → 1.19.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 (20) hide show
  1. package/dist/index.css +3 -1
  2. package/dist/index.js +347 -37
  3. package/dist/types/components/Pickers/KdpaDatePicker/KdpaDatePicker.d.ts +5 -2
  4. package/dist/types/components/Pickers/KdpaDatePicker/KdpaDatePicker.d.ts.map +1 -1
  5. package/dist/types/components/Pickers/KdpaDatePicker/KdpaDatePicker.stories.d.ts.map +1 -1
  6. package/dist/types/designerKit/components/Stepper/KdStepper.stories.d.ts +7 -0
  7. package/dist/types/designerKit/components/Stepper/KdStepper.stories.d.ts.map +1 -0
  8. package/dist/types/designerKit/components/Stepper/StepContent/KdStepContent.d.ts +17 -0
  9. package/dist/types/designerKit/components/Stepper/StepContent/KdStepContent.d.ts.map +1 -0
  10. package/dist/types/designerKit/components/Stepper/StepList/KdStepList.d.ts +11 -0
  11. package/dist/types/designerKit/components/Stepper/StepList/KdStepList.d.ts.map +1 -0
  12. package/dist/types/designerKit/components/Stepper/StepRoot/KdStepRoot.d.ts +10 -0
  13. package/dist/types/designerKit/components/Stepper/StepRoot/KdStepRoot.d.ts.map +1 -0
  14. package/dist/types/designerKit/components/Stepper/StepTrigger/KdStepTrigger.d.ts +8 -0
  15. package/dist/types/designerKit/components/Stepper/StepTrigger/KdStepTrigger.d.ts.map +1 -0
  16. package/dist/types/designerKit/components/Stepper/index.d.ts +9 -0
  17. package/dist/types/designerKit/components/Stepper/index.d.ts.map +1 -0
  18. package/dist/types/designerKit/components/Tabs/KdTabs.stories.d.ts +3 -3
  19. package/dist/types/designerKit/components/Tabs/KdTabs.stories.d.ts.map +1 -1
  20. package/package.json +3 -3
package/dist/index.css CHANGED
@@ -25,4 +25,6 @@
25
25
  .ps{-ms-overflow-style:none;overflow:hidden!important;overflow-anchor:none;touch-action:auto;-ms-touch-action:auto}.ps__rail-x{bottom:0;height:15px}.ps__rail-x,.ps__rail-y{display:none;opacity:0;position:absolute;transition:background-color .2s linear,opacity .2s linear;-webkit-transition:background-color .2s linear,opacity .2s linear}.ps__rail-y{right:0;width:15px}.ps--active-x>.ps__rail-x,.ps--active-y>.ps__rail-y{background-color:transparent;display:block}.ps--focus>.ps__rail-x,.ps--focus>.ps__rail-y,.ps--scrolling-x>.ps__rail-x,.ps--scrolling-y>.ps__rail-y,.ps:hover>.ps__rail-x,.ps:hover>.ps__rail-y{opacity:.6}.ps .ps__rail-x.ps--clicking,.ps .ps__rail-x:focus,.ps .ps__rail-x:hover,.ps .ps__rail-y.ps--clicking,.ps .ps__rail-y:focus,.ps .ps__rail-y:hover{background-color:#eee;opacity:.9}.ps__thumb-x{bottom:2px;height:6px;transition:background-color .2s linear,height .2s ease-in-out;-webkit-transition:background-color .2s linear,height .2s ease-in-out}.ps__thumb-x,.ps__thumb-y{background-color:#aaa;border-radius:6px;position:absolute}.ps__thumb-y{right:2px;transition:background-color .2s linear,width .2s ease-in-out;-webkit-transition:background-color .2s linear,width .2s ease-in-out;width:6px}.ps__rail-x.ps--clicking .ps__thumb-x,.ps__rail-x:focus>.ps__thumb-x,.ps__rail-x:hover>.ps__thumb-x{background-color:#999;height:11px}.ps__rail-y.ps--clicking .ps__thumb-y,.ps__rail-y:focus>.ps__thumb-y,.ps__rail-y:hover>.ps__thumb-y{background-color:#999;width:11px}@supports (-ms-overflow-style:none){.ps{overflow:auto!important}}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.ps{overflow:auto!important}}.scrollbar-container{height:100%;position:relative}
26
26
  .KdTabsList{display:flex;flex-direction:row;gap:20px}
27
27
  .KdTabsContent{flex-grow:1;outline:none}
28
- .KdTabsTrigger{align-items:center;background-color:inherit;border:none;display:flex;flex:1;font-family:inherit;font-size:15px;gap:6px;height:45px;justify-content:center;line-height:1;padding:0 20px;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:50px}.KdTabsTrigger[data-state=active]{border-bottom:3px solid var(--bs-primary,#7367aa);color:var(--bs-primary,#7367aa)}
28
+ .KdTabsTrigger{align-items:center;background-color:inherit;border:none;display:flex;flex:1;font-family:inherit;font-size:15px;gap:6px;height:45px;justify-content:center;line-height:1;padding:0 20px;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:50px}.KdTabsTrigger[data-state=active]{border-bottom:3px solid var(--bs-primary,#7367aa);color:var(--bs-primary,#7367aa)}
29
+ .KdStepper{margin-bottom:8px}
30
+ .KdStepContent_Buttons{display:flex;flex-direction:row;justify-content:space-between;margin-top:8px}