tycho-components 0.0.4 → 0.0.5-SNAPSHOT-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 (139) hide show
  1. package/dist/AppColorpicker/AppColorpicker.d.ts +10 -0
  2. package/dist/AppColorpicker/AppColorpicker.js +21 -0
  3. package/{src/AppColorpicker/index.tsx → dist/AppColorpicker/index.d.ts} +0 -1
  4. package/dist/AppColorpicker/index.js +2 -0
  5. package/dist/AppEditable/AppEditable.d.ts +14 -0
  6. package/dist/AppEditable/AppEditable.js +80 -0
  7. package/dist/AppEditable/AppEditableField.d.ts +7 -0
  8. package/dist/AppEditable/AppEditableField.js +1 -0
  9. package/dist/AppEditable/FormField.d.ts +14 -0
  10. package/dist/AppEditable/FormField.js +8 -0
  11. package/dist/AppEditable/FormFieldOption.d.ts +7 -0
  12. package/dist/AppEditable/FormFieldOption.js +20 -0
  13. package/{src/AppEditable/index.tsx → dist/AppEditable/index.d.ts} +0 -1
  14. package/dist/AppEditable/index.js +2 -0
  15. package/dist/AppModal/AppModal.d.ts +20 -0
  16. package/dist/AppModal/AppModal.js +22 -0
  17. package/dist/AppModal/AppModalConfirm.d.ts +11 -0
  18. package/dist/AppModal/AppModalConfirm.js +20 -0
  19. package/dist/AppModal/AppModalRemove.d.ts +9 -0
  20. package/dist/AppModal/AppModalRemove.js +20 -0
  21. package/{src/AppModal/index.tsx → dist/AppModal/index.d.ts} +0 -1
  22. package/dist/AppModal/index.js +2 -0
  23. package/dist/AppToast/AppToast.d.ts +2 -0
  24. package/dist/AppToast/AppToast.js +78 -0
  25. package/dist/AppToast/ToastMessage.d.ts +8 -0
  26. package/dist/AppToast/ToastMessage.js +4 -0
  27. package/{src/AppToast/index.tsx → dist/AppToast/index.d.ts} +0 -1
  28. package/dist/AppToast/index.js +2 -0
  29. package/dist/Dummy/Dummy.d.ts +9 -0
  30. package/dist/Dummy/Dummy.js +8 -0
  31. package/{src/Dummy/index.tsx → dist/Dummy/index.d.ts} +0 -1
  32. package/dist/Dummy/index.js +2 -0
  33. package/dist/Participants/ParticipantCreate/ParticipantCreate.d.ts +9 -0
  34. package/dist/Participants/ParticipantCreate/ParticipantCreate.js +41 -0
  35. package/{src/Participants/ParticipantCreate/index.tsx → dist/Participants/ParticipantCreate/index.d.ts} +0 -1
  36. package/dist/Participants/ParticipantCreate/index.js +2 -0
  37. package/dist/Participants/ParticipantRemove/ParticipantRemove.d.ts +11 -0
  38. package/dist/Participants/ParticipantRemove/ParticipantRemove.js +26 -0
  39. package/{src/Participants/ParticipantRemove/index.tsx → dist/Participants/ParticipantRemove/index.d.ts} +0 -1
  40. package/dist/Participants/ParticipantRemove/index.js +2 -0
  41. package/dist/Participants/Participants.d.ts +9 -0
  42. package/dist/Participants/Participants.js +57 -0
  43. package/{src/Participants/index.tsx → dist/Participants/index.d.ts} +0 -1
  44. package/dist/Participants/index.js +2 -0
  45. package/dist/Participants/types/Participant.d.ts +27 -0
  46. package/dist/Participants/types/Participant.js +17 -0
  47. package/dist/Participants/types/ParticipantService.d.ts +11 -0
  48. package/dist/Participants/types/ParticipantService.js +12 -0
  49. package/dist/configs/CommonContext.d.ts +10 -0
  50. package/dist/configs/CommonContext.js +10 -0
  51. package/dist/configs/CookieStorage.d.ts +10 -0
  52. package/dist/configs/CookieStorage.js +28 -0
  53. package/dist/configs/Localization.d.ts +64 -0
  54. package/dist/configs/Localization.js +28 -0
  55. package/dist/configs/MessageUtils.d.ts +20 -0
  56. package/dist/configs/MessageUtils.js +30 -0
  57. package/dist/configs/Storage.d.ts +9 -0
  58. package/dist/configs/Storage.js +16 -0
  59. package/dist/configs/api.d.ts +2 -0
  60. package/dist/configs/api.js +38 -0
  61. package/dist/configs/localization/CommonTexts.d.ts +27 -0
  62. package/dist/configs/localization/CommonTexts.js +27 -0
  63. package/dist/configs/localization/ParticipantsTexts.d.ts +34 -0
  64. package/dist/configs/localization/ParticipantsTexts.js +34 -0
  65. package/dist/configs/store/actions.d.ts +4 -0
  66. package/dist/configs/store/actions.js +9 -0
  67. package/dist/configs/store/reducer.d.ts +3 -0
  68. package/dist/configs/store/reducer.js +19 -0
  69. package/dist/configs/store/store.d.ts +3 -0
  70. package/dist/configs/store/store.js +6 -0
  71. package/dist/configs/store/types.d.ts +13 -0
  72. package/dist/configs/store/types.js +4 -0
  73. package/dist/index.js +9 -0
  74. package/package.json +33 -24
  75. package/.eslintignore +0 -2
  76. package/.eslintrc.cjs +0 -28
  77. package/.eslintrc.json +0 -31
  78. package/.gitlab-ci.yml +0 -14
  79. package/.storybook/main.ts +0 -32
  80. package/.storybook/preview-head.html +0 -4
  81. package/.storybook/preview.css +0 -6
  82. package/.storybook/preview.tsx +0 -29
  83. package/src/AppColorpicker/AppColorpicker.tsx +0 -69
  84. package/src/AppEditable/AppEditable.tsx +0 -280
  85. package/src/AppEditable/AppEditableField.ts +0 -7
  86. package/src/AppEditable/FormField.ts +0 -26
  87. package/src/AppEditable/FormFieldOption.ts +0 -38
  88. package/src/AppModal/AppModal.tsx +0 -93
  89. package/src/AppModal/AppModalConfirm.tsx +0 -62
  90. package/src/AppModal/AppModalRemove.tsx +0 -51
  91. package/src/AppToast/AppToast.tsx +0 -94
  92. package/src/AppToast/ToastMessage.ts +0 -9
  93. package/src/Dummy/Dummy.stories.tsx +0 -21
  94. package/src/Dummy/Dummy.tsx +0 -16
  95. package/src/Participants/ParticipantCreate/ParticipantCreate.tsx +0 -83
  96. package/src/Participants/ParticipantRemove/ParticipantRemove.tsx +0 -51
  97. package/src/Participants/Participants.stories.tsx +0 -45
  98. package/src/Participants/Participants.tsx +0 -145
  99. package/src/Participants/types/Participant.ts +0 -43
  100. package/src/Participants/types/ParticipantService.ts +0 -18
  101. package/src/configs/CommonContext.tsx +0 -23
  102. package/src/configs/CookieStorage.ts +0 -36
  103. package/src/configs/Localization.ts +0 -30
  104. package/src/configs/MessageUtils.ts +0 -60
  105. package/src/configs/Storage.ts +0 -21
  106. package/src/configs/api.ts +0 -49
  107. package/src/configs/localization/CommonTexts.ts +0 -27
  108. package/src/configs/localization/ParticipantsTexts.ts +0 -40
  109. package/src/configs/store/actions.ts +0 -12
  110. package/src/configs/store/reducer.ts +0 -22
  111. package/src/configs/store/store.ts +0 -9
  112. package/src/configs/store/types.ts +0 -16
  113. package/src/new-styles/base/_borders.scss +0 -30
  114. package/src/new-styles/base/_colors.scss +0 -100
  115. package/src/new-styles/base/_displays.scss +0 -207
  116. package/src/new-styles/base/_margins.css +0 -174
  117. package/src/new-styles/base/_spacing.scss +0 -26
  118. package/src/new-styles/base/_tokens.scss +0 -329
  119. package/src/new-styles/base/_typographs.scss +0 -348
  120. package/src/new-styles/main.scss +0 -27
  121. package/src/react-app-env.d.ts +0 -5
  122. package/src/vite-env.d.ts +0 -13
  123. package/stories/Configure.mdx +0 -171
  124. package/stories/StorybookUtils.tsx +0 -40
  125. package/tsconfig.json +0 -31
  126. package/tsconfig.node.json +0 -10
  127. package/vite.config.ts +0 -26
  128. /package/{src → dist}/AppColorpicker/style.scss +0 -0
  129. /package/{src → dist}/AppEditable/style.scss +0 -0
  130. /package/{src → dist}/AppModal/style.scss +0 -0
  131. /package/{src → dist}/AppToast/style.scss +0 -0
  132. /package/{src → dist}/Dummy/styles.scss +0 -0
  133. /package/{src → dist}/Participants/ParticipantCreate/style.scss +0 -0
  134. /package/{src → dist}/Participants/ParticipantRemove/style.scss +0 -0
  135. /package/{src → dist}/Participants/style.scss +0 -0
  136. /package/{src/index.ts → dist/index.d.ts} +0 -0
  137. /package/{src → dist}/styles/_variables.scss +0 -0
  138. /package/{src → dist}/styles/bootstrap.min.css +0 -0
  139. /package/{src → dist}/styles/main.scss +0 -0
@@ -1,207 +0,0 @@
1
- /* Display none */
2
- .d-none {
3
- display: none !important;
4
- }
5
-
6
- /* Display block */
7
- .d-block {
8
- display: block !important;
9
- }
10
-
11
- /* Display inline */
12
- .d-inline {
13
- display: inline !important;
14
- }
15
-
16
- /* Display inline-block */
17
- .d-inline-block {
18
- display: inline-block !important;
19
- }
20
-
21
- /* Display flex */
22
- .d-flex {
23
- display: flex !important;
24
- }
25
-
26
- /* Display inline-flex */
27
- .d-inline-flex {
28
- display: inline-flex !important;
29
- }
30
-
31
- /* Display grid */
32
- .d-grid {
33
- display: grid !important;
34
- }
35
-
36
- /* Display inline-grid */
37
- .d-inline-grid {
38
- display: inline-grid !important;
39
- }
40
-
41
- /* Responsive display classes */
42
-
43
- /* Extra small (xs) */
44
- .d-xs-none {
45
- display: none !important;
46
- }
47
- .d-xs-block {
48
- display: block !important;
49
- }
50
- .d-xs-inline {
51
- display: inline !important;
52
- }
53
- .d-xs-inline-block {
54
- display: inline-block !important;
55
- }
56
- .d-xs-flex {
57
- display: flex !important;
58
- }
59
- .d-xs-inline-flex {
60
- display: inline-flex !important;
61
- }
62
- .d-xs-grid {
63
- display: grid !important;
64
- }
65
- .d-xs-inline-grid {
66
- display: inline-grid !important;
67
- }
68
-
69
- /* Small (sm) */
70
- @media (min-width: 576px) {
71
- .d-sm-none {
72
- display: none !important;
73
- }
74
- .d-sm-block {
75
- display: block !important;
76
- }
77
- .d-sm-inline {
78
- display: inline !important;
79
- }
80
- .d-sm-inline-block {
81
- display: inline-block !important;
82
- }
83
- .d-sm-flex {
84
- display: flex !important;
85
- }
86
- .d-sm-inline-flex {
87
- display: inline-flex !important;
88
- }
89
- .d-sm-grid {
90
- display: grid !important;
91
- }
92
- .d-sm-inline-grid {
93
- display: inline-grid !important;
94
- }
95
- }
96
-
97
- /* Medium (md) */
98
- @media (min-width: 768px) {
99
- .d-md-none {
100
- display: none !important;
101
- }
102
- .d-md-block {
103
- display: block !important;
104
- }
105
- .d-md-inline {
106
- display: inline !important;
107
- }
108
- .d-md-inline-block {
109
- display: inline-block !important;
110
- }
111
- .d-md-flex {
112
- display: flex !important;
113
- }
114
- .d-md-inline-flex {
115
- display: inline-flex !important;
116
- }
117
- .d-md-grid {
118
- display: grid !important;
119
- }
120
- .d-md-inline-grid {
121
- display: inline-grid !important;
122
- }
123
- }
124
-
125
- /* Large (lg) */
126
- @media (min-width: 992px) {
127
- .d-lg-none {
128
- display: none !important;
129
- }
130
- .d-lg-block {
131
- display: block !important;
132
- }
133
- .d-lg-inline {
134
- display: inline !important;
135
- }
136
- .d-lg-inline-block {
137
- display: inline-block !important;
138
- }
139
- .d-lg-flex {
140
- display: flex !important;
141
- }
142
- .d-lg-inline-flex {
143
- display: inline-flex !important;
144
- }
145
- .d-lg-grid {
146
- display: grid !important;
147
- }
148
- .d-lg-inline-grid {
149
- display: inline-grid !important;
150
- }
151
- }
152
-
153
- /* Extra Large (xl) */
154
- @media (min-width: 1200px) {
155
- .d-xl-none {
156
- display: none !important;
157
- }
158
- .d-xl-block {
159
- display: block !important;
160
- }
161
- .d-xl-inline {
162
- display: inline !important;
163
- }
164
- .d-xl-inline-block {
165
- display: inline-block !important;
166
- }
167
- .d-xl-flex {
168
- display: flex !important;
169
- }
170
- .d-xl-inline-flex {
171
- display: inline-flex !important;
172
- }
173
- .d-xl-grid {
174
- display: grid !important;
175
- }
176
- .d-xl-inline-grid {
177
- display: inline-grid !important;
178
- }
179
- }
180
-
181
- /* Extra Extra Large (xxl) */
182
- @media (min-width: 1400px) {
183
- .d-xxl-none {
184
- display: none !important;
185
- }
186
- .d-xxl-block {
187
- display: block !important;
188
- }
189
- .d-xxl-inline {
190
- display: inline !important;
191
- }
192
- .d-xxl-inline-block {
193
- display: inline-block !important;
194
- }
195
- .d-xxl-flex {
196
- display: flex !important;
197
- }
198
- .d-xxl-inline-flex {
199
- display: inline-flex !important;
200
- }
201
- .d-xxl-grid {
202
- display: grid !important;
203
- }
204
- .d-xxl-inline-grid {
205
- display: inline-grid !important;
206
- }
207
- }
@@ -1,174 +0,0 @@
1
- /* Margin for all sides */
2
- .m-0 {
3
- margin: 0 !important;
4
- }
5
- .m-1 {
6
- margin: 0.25rem !important;
7
- }
8
- .m-2 {
9
- margin: 0.5rem !important;
10
- }
11
- .m-3 {
12
- margin: 1rem !important;
13
- }
14
- .m-4 {
15
- margin: 1.5rem !important;
16
- }
17
- .m-5 {
18
- margin: 3rem !important;
19
- }
20
- .m-auto {
21
- margin: auto !important;
22
- }
23
-
24
- /* Margin-top */
25
- .mt-0 {
26
- margin-top: 0 !important;
27
- }
28
- .mt-1 {
29
- margin-top: 0.25rem !important;
30
- }
31
- .mt-2 {
32
- margin-top: 0.5rem !important;
33
- }
34
- .mt-3 {
35
- margin-top: 1rem !important;
36
- }
37
- .mt-4 {
38
- margin-top: 1.5rem !important;
39
- }
40
- .mt-5 {
41
- margin-top: 3rem !important;
42
- }
43
- .mt-auto {
44
- margin-top: auto !important;
45
- }
46
-
47
- /* Margin-right */
48
- .me-0 {
49
- margin-right: 0 !important;
50
- }
51
- .me-1 {
52
- margin-right: 0.25rem !important;
53
- }
54
- .me-2 {
55
- margin-right: 0.5rem !important;
56
- }
57
- .me-3 {
58
- margin-right: 1rem !important;
59
- }
60
- .me-4 {
61
- margin-right: 1.5rem !important;
62
- }
63
- .me-5 {
64
- margin-right: 3rem !important;
65
- }
66
- .me-auto {
67
- margin-right: auto !important;
68
- }
69
-
70
- /* Margin-bottom */
71
- .mb-0 {
72
- margin-bottom: 0 !important;
73
- }
74
- .mb-1 {
75
- margin-bottom: 0.25rem !important;
76
- }
77
- .mb-2 {
78
- margin-bottom: 0.5rem !important;
79
- }
80
- .mb-3 {
81
- margin-bottom: 1rem !important;
82
- }
83
- .mb-4 {
84
- margin-bottom: 1.5rem !important;
85
- }
86
- .mb-5 {
87
- margin-bottom: 3rem !important;
88
- }
89
- .mb-auto {
90
- margin-bottom: auto !important;
91
- }
92
-
93
- /* Margin-left */
94
- .ms-0 {
95
- margin-left: 0 !important;
96
- }
97
- .ms-1 {
98
- margin-left: 0.25rem !important;
99
- }
100
- .ms-2 {
101
- margin-left: 0.5rem !important;
102
- }
103
- .ms-3 {
104
- margin-left: 1rem !important;
105
- }
106
- .ms-4 {
107
- margin-left: 1.5rem !important;
108
- }
109
- .ms-5 {
110
- margin-left: 3rem !important;
111
- }
112
- .ms-auto {
113
- margin-left: auto !important;
114
- }
115
-
116
- /* Horizontal (left + right) margin */
117
- .mx-0 {
118
- margin-left: 0 !important;
119
- margin-right: 0 !important;
120
- }
121
- .mx-1 {
122
- margin-left: 0.25rem !important;
123
- margin-right: 0.25rem !important;
124
- }
125
- .mx-2 {
126
- margin-left: 0.5rem !important;
127
- margin-right: 0.5rem !important;
128
- }
129
- .mx-3 {
130
- margin-left: 1rem !important;
131
- margin-right: 1rem !important;
132
- }
133
- .mx-4 {
134
- margin-left: 1.5rem !important;
135
- margin-right: 1.5rem !important;
136
- }
137
- .mx-5 {
138
- margin-left: 3rem !important;
139
- margin-right: 3rem !important;
140
- }
141
- .mx-auto {
142
- margin-left: auto !important;
143
- margin-right: auto !important;
144
- }
145
-
146
- /* Vertical (top + bottom) margin */
147
- .my-0 {
148
- margin-top: 0 !important;
149
- margin-bottom: 0 !important;
150
- }
151
- .my-1 {
152
- margin-top: 0.25rem !important;
153
- margin-bottom: 0.25rem !important;
154
- }
155
- .my-2 {
156
- margin-top: 0.5rem !important;
157
- margin-bottom: 0.5rem !important;
158
- }
159
- .my-3 {
160
- margin-top: 1rem !important;
161
- margin-bottom: 1rem !important;
162
- }
163
- .my-4 {
164
- margin-top: 1.5rem !important;
165
- margin-bottom: 1.5rem !important;
166
- }
167
- .my-5 {
168
- margin-top: 3rem !important;
169
- margin-bottom: 3rem !important;
170
- }
171
- .my-auto {
172
- margin-top: auto !important;
173
- margin-bottom: auto !important;
174
- }
@@ -1,26 +0,0 @@
1
- // spaces
2
-
3
- :root {
4
- --spacing-0: 0px;
5
- --spacing-050: 4px;
6
- --spacing-075: 6px;
7
- --spacing-100: 8px;
8
- --spacing-125: 10px;
9
- --spacing-150: 12px;
10
- --spacing-200: 16px;
11
- --spacing-250: 20px;
12
- --spacing-300: 24px;
13
- --spacing-350: 28px;
14
- --spacing-400: 32px;
15
- --spacing-500: 40px;
16
- --spacing-600: 48px;
17
- --spacing-700: 56px;
18
- --spacing-800: 64px;
19
- --spacing-900: 72px;
20
- --spacing-1000: 80px;
21
- --spacing-1100: 88px;
22
- --spacing-1200: 96px;
23
- --spacing-1300: 104px;
24
- --spacing-1400: 112px;
25
- --spacing-1500: 120px;
26
- }