@sentropic/design-system-vue 0.4.0 → 0.6.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.
package/dist/styles.css CHANGED
@@ -6800,3 +6800,193 @@
6800
6800
  gap: 0.5rem;
6801
6801
  }
6802
6802
 
6803
+ /* Layout system — Flex / Stack / Inline / Container / Row / Col / Hidden / Divider */
6804
+ .st-flex {
6805
+ box-sizing: border-box;
6806
+ min-width: 0;
6807
+ }
6808
+
6809
+ /* Container */
6810
+ .st-container {
6811
+ box-sizing: border-box;
6812
+ inline-size: 100%;
6813
+ margin-inline: auto;
6814
+ }
6815
+
6816
+ .st-container--sm {
6817
+ max-inline-size: var(--st-container-sm, 40rem);
6818
+ }
6819
+
6820
+ .st-container--md {
6821
+ max-inline-size: var(--st-container-md, 48rem);
6822
+ }
6823
+
6824
+ .st-container--lg {
6825
+ max-inline-size: var(--st-container-lg, 64rem);
6826
+ }
6827
+
6828
+ .st-container--xl {
6829
+ max-inline-size: var(--st-container-xl, 80rem);
6830
+ }
6831
+
6832
+ .st-container--full {
6833
+ max-inline-size: none;
6834
+ }
6835
+
6836
+ .st-container--padded {
6837
+ padding-inline: var(--st-spacing-4, 1rem);
6838
+ }
6839
+
6840
+ /* Row */
6841
+ .st-row {
6842
+ box-sizing: border-box;
6843
+ display: flex;
6844
+ flex-direction: row;
6845
+ inline-size: 100%;
6846
+ min-width: 0;
6847
+ }
6848
+
6849
+ /* Col */
6850
+ .st-col {
6851
+ box-sizing: border-box;
6852
+ flex-shrink: 1;
6853
+ min-width: 0;
6854
+ }
6855
+
6856
+ .st-col--auto {
6857
+ flex-basis: auto;
6858
+ }
6859
+
6860
+ @media (min-width: 640px) {
6861
+ .st-col--has-sm {
6862
+ flex-basis: var(--st-col-sm);
6863
+ max-inline-size: var(--st-col-sm);
6864
+ flex-grow: 0;
6865
+ }
6866
+ }
6867
+
6868
+ @media (min-width: 768px) {
6869
+ .st-col--has-md {
6870
+ flex-basis: var(--st-col-md);
6871
+ max-inline-size: var(--st-col-md);
6872
+ flex-grow: 0;
6873
+ }
6874
+ }
6875
+
6876
+ @media (min-width: 1024px) {
6877
+ .st-col--has-lg {
6878
+ flex-basis: var(--st-col-lg);
6879
+ max-inline-size: var(--st-col-lg);
6880
+ flex-grow: 0;
6881
+ }
6882
+ }
6883
+
6884
+ /* Hidden — breakpoints: sm 640 / md 768 / lg 1024 / xl 1280. */
6885
+ .st-hidden {
6886
+ display: contents;
6887
+ }
6888
+
6889
+ /* below: hidden when viewport < breakpoint */
6890
+ @media (max-width: 639.98px) {
6891
+ .st-hidden--below-sm {
6892
+ display: none !important;
6893
+ }
6894
+ }
6895
+ @media (max-width: 767.98px) {
6896
+ .st-hidden--below-md {
6897
+ display: none !important;
6898
+ }
6899
+ }
6900
+ @media (max-width: 1023.98px) {
6901
+ .st-hidden--below-lg {
6902
+ display: none !important;
6903
+ }
6904
+ }
6905
+ @media (max-width: 1279.98px) {
6906
+ .st-hidden--below-xl {
6907
+ display: none !important;
6908
+ }
6909
+ }
6910
+
6911
+ /* above: hidden when viewport >= breakpoint */
6912
+ @media (min-width: 640px) {
6913
+ .st-hidden--above-sm {
6914
+ display: none !important;
6915
+ }
6916
+ }
6917
+ @media (min-width: 768px) {
6918
+ .st-hidden--above-md {
6919
+ display: none !important;
6920
+ }
6921
+ }
6922
+ @media (min-width: 1024px) {
6923
+ .st-hidden--above-lg {
6924
+ display: none !important;
6925
+ }
6926
+ }
6927
+ @media (min-width: 1280px) {
6928
+ .st-hidden--above-xl {
6929
+ display: none !important;
6930
+ }
6931
+ }
6932
+
6933
+ /* Divider */
6934
+ .st-divider {
6935
+ border: 0;
6936
+ box-sizing: border-box;
6937
+ color: var(--st-semantic-border-subtle, #e2e8f0);
6938
+ }
6939
+
6940
+ .st-divider--horizontal:not(.st-divider--labeled) {
6941
+ block-size: 0;
6942
+ border-block-start-width: 1px;
6943
+ border-block-start-style: solid;
6944
+ border-block-start-color: currentColor;
6945
+ inline-size: 100%;
6946
+ }
6947
+
6948
+ .st-divider--vertical {
6949
+ align-self: stretch;
6950
+ border-inline-start-width: 1px;
6951
+ border-inline-start-style: solid;
6952
+ border-inline-start-color: currentColor;
6953
+ display: inline-block;
6954
+ inline-size: 0;
6955
+ min-block-size: 1em;
6956
+ }
6957
+
6958
+ .st-divider--dashed.st-divider--horizontal:not(.st-divider--labeled) {
6959
+ border-block-start-style: dashed;
6960
+ }
6961
+
6962
+ .st-divider--dashed.st-divider--vertical {
6963
+ border-inline-start-style: dashed;
6964
+ }
6965
+
6966
+ .st-divider--labeled {
6967
+ align-items: center;
6968
+ display: flex;
6969
+ gap: var(--st-spacing-3, 0.75rem);
6970
+ inline-size: 100%;
6971
+ }
6972
+
6973
+ .st-divider__line {
6974
+ block-size: 0;
6975
+ border-block-start-width: 1px;
6976
+ border-block-start-style: solid;
6977
+ border-block-start-color: currentColor;
6978
+ flex: 1 1 0;
6979
+ }
6980
+
6981
+ .st-divider--dashed .st-divider__line {
6982
+ border-block-start-style: dashed;
6983
+ }
6984
+
6985
+ .st-divider__label {
6986
+ color: var(--st-semantic-text-secondary, inherit);
6987
+ flex: 0 0 auto;
6988
+ font-size: var(--st-font-size-sm, 0.875rem);
6989
+ line-height: 1;
6990
+ white-space: nowrap;
6991
+ }
6992
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentropic/design-system-vue",
3
- "version": "0.4.0",
3
+ "version": "0.6.0",
4
4
  "description": "Vue 3 components for the Sentropic design system.",
5
5
  "type": "module",
6
6
  "publishConfig": {