@vitality-ds/components 4.4.2 → 4.4.3

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 (24) hide show
  1. package/dist/Input/Select/components/OptionValueContents/components/ValueText/index.js +8 -0
  2. package/dist/Input/Select/components/OptionValueContents/components/ValueText/styled.js +11 -0
  3. package/dist/Input/Select/components/OptionValueContents/components/ValueText/styles/BaseValueText.styles.js +14 -0
  4. package/dist/Input/Select/components/OptionValueContents/index.js +2 -4
  5. package/dist/components/src/Input/Select/components/OptionValueContents/components/ValueText/index.d.ts +3 -0
  6. package/dist/components/src/Input/Select/components/OptionValueContents/components/ValueText/index.d.ts.map +1 -0
  7. package/dist/components/src/Input/Select/components/OptionValueContents/components/ValueText/index.js +5 -0
  8. package/dist/components/src/Input/Select/components/OptionValueContents/components/ValueText/index.js.map +1 -0
  9. package/dist/components/src/Input/Select/components/OptionValueContents/components/ValueText/styled.d.ts +351 -0
  10. package/dist/components/src/Input/Select/components/OptionValueContents/components/ValueText/styled.d.ts.map +1 -0
  11. package/dist/components/src/Input/Select/components/OptionValueContents/components/ValueText/styled.js +11 -0
  12. package/dist/components/src/Input/Select/components/OptionValueContents/components/ValueText/styled.js.map +1 -0
  13. package/dist/components/src/Input/Select/components/OptionValueContents/components/ValueText/styles/BaseValueText.styles.d.ts +352 -0
  14. package/dist/components/src/Input/Select/components/OptionValueContents/components/ValueText/styles/BaseValueText.styles.d.ts.map +1 -0
  15. package/dist/components/src/Input/Select/components/OptionValueContents/components/ValueText/styles/BaseValueText.styles.js +11 -0
  16. package/dist/components/src/Input/Select/components/OptionValueContents/components/ValueText/styles/BaseValueText.styles.js.map +1 -0
  17. package/dist/components/src/Input/Select/components/OptionValueContents/index.js +2 -2
  18. package/dist/components/src/Input/Select/components/OptionValueContents/index.js.map +1 -1
  19. package/dist/esm/Input/Select/components/OptionValueContents/components/ValueText/index.js +2 -0
  20. package/dist/esm/Input/Select/components/OptionValueContents/components/ValueText/styled.js +5 -0
  21. package/dist/esm/Input/Select/components/OptionValueContents/components/ValueText/styles/BaseValueText.styles.js +8 -0
  22. package/dist/esm/Input/Select/components/OptionValueContents/index.js +2 -4
  23. package/dist/tsconfig.tsbuildinfo +1 -1
  24. package/package.json +5 -5
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _styled = require("./styled");
8
+ var _default = exports["default"] = _styled.BaseValueText;
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.BaseValueText = void 0;
8
+ var _system = require("@vitality-ds/system");
9
+ var _BaseValueText = _interopRequireDefault(require("./styles/BaseValueText.styles"));
10
+ // eslint-disable-next-line import/prefer-default-export
11
+ var BaseValueText = exports.BaseValueText = (0, _system.styled)("span", _BaseValueText["default"]);
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _system = require("@vitality-ds/system");
8
+ var _default = exports["default"] = (0, _system.css)({
9
+ color: "inherit",
10
+ fontSize: "$input",
11
+ lineHeight: "$input",
12
+ overflow: "hidden",
13
+ textOverflow: "ellipsis"
14
+ });
@@ -9,7 +9,7 @@ var _react = _interopRequireDefault(require("react"));
9
9
  var _Flex = _interopRequireDefault(require("../../../../Flex"));
10
10
  var _Stack = _interopRequireDefault(require("../../../../Stack"));
11
11
  var _StatusBadge = require("../../../../StatusBadge");
12
- var _Typography = _interopRequireDefault(require("../../../../Typography"));
12
+ var _ValueText = _interopRequireDefault(require("./components/ValueText"));
13
13
  function OptionValueContents(_ref) {
14
14
  var label = _ref.label,
15
15
  statusBadgeProps = _ref.statusBadgeProps;
@@ -17,9 +17,7 @@ function OptionValueContents(_ref) {
17
17
  direction: "horizontal",
18
18
  align: "center",
19
19
  justify: "between"
20
- }, /*#__PURE__*/_react["default"].createElement(_Typography["default"], {
21
- textOverflow: "ellipsis"
22
- }, label), statusBadgeProps && /*#__PURE__*/_react["default"].createElement(_Flex["default"], {
20
+ }, /*#__PURE__*/_react["default"].createElement(_ValueText["default"], null, label), statusBadgeProps && /*#__PURE__*/_react["default"].createElement(_Flex["default"], {
23
21
  shouldShrink: false
24
22
  }, /*#__PURE__*/_react["default"].createElement(_StatusBadge.StatusBadge, statusBadgeProps)));
25
23
  }
@@ -0,0 +1,3 @@
1
+ import { BaseValueText } from "./styled";
2
+ export default BaseValueText;
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/Input/Select/components/OptionValueContents/components/ValueText/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,eAAe,aAAa,CAAC"}
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var styled_1 = require("./styled");
4
+ exports.default = styled_1.BaseValueText;
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../../src/Input/Select/components/OptionValueContents/components/ValueText/index.tsx"],"names":[],"mappings":";;AAAA,mCAAyC;AAEzC,kBAAe,sBAAa,CAAC"}
@@ -0,0 +1,351 @@
1
+ export declare const BaseValueText: import("@stitches/react/types/styled-component").StyledComponent<"span", {}, {
2
+ bp1: "(min-width: 48rem)";
3
+ bp2: "(min-width: 69rem)";
4
+ bp3: "(min-width: 85rem)";
5
+ }, import("@stitches/react/types/css-util").CSS<{
6
+ bp1: "(min-width: 48rem)";
7
+ bp2: "(min-width: 69rem)";
8
+ bp3: "(min-width: 85rem)";
9
+ }, {
10
+ colors: {
11
+ blue2: string;
12
+ cyan2: string;
13
+ green2: string;
14
+ grey2: string;
15
+ greyA2: string;
16
+ orange2: string;
17
+ pink2: string;
18
+ red2: string;
19
+ yellow2: string;
20
+ blue1: string;
21
+ cyan1: string;
22
+ green1: string;
23
+ grey1: string;
24
+ greyA1: string;
25
+ orange1: string;
26
+ pink1: string;
27
+ red1: string;
28
+ yellow1: string;
29
+ blue7: string;
30
+ cyan7: string;
31
+ green7: string;
32
+ grey7: string;
33
+ greyA7: string;
34
+ orange7: string;
35
+ pink7: string;
36
+ red7: string;
37
+ yellow7: string;
38
+ blue12: string;
39
+ cyan12: string;
40
+ green12: string;
41
+ grey12: string;
42
+ greyA12: string;
43
+ orange12: string;
44
+ pink12: string;
45
+ red12: string;
46
+ yellow12: string;
47
+ blue3: string;
48
+ cyan3: string;
49
+ green3: string;
50
+ grey3: string;
51
+ greyA3: string;
52
+ orange3: string;
53
+ pink3: string;
54
+ red3: string;
55
+ yellow3: string;
56
+ blue4: string;
57
+ cyan4: string;
58
+ green4: string;
59
+ grey4: string;
60
+ greyA4: string;
61
+ orange4: string;
62
+ pink4: string;
63
+ red4: string;
64
+ yellow4: string;
65
+ blue5: string;
66
+ cyan5: string;
67
+ green5: string;
68
+ grey5: string;
69
+ greyA5: string;
70
+ orange5: string;
71
+ pink5: string;
72
+ red5: string;
73
+ yellow5: string;
74
+ blue9: string;
75
+ cyan9: string;
76
+ green9: string;
77
+ grey9: string;
78
+ greyA9: string;
79
+ orange9: string;
80
+ pink9: string;
81
+ red9: string;
82
+ yellow9: string;
83
+ blue10: string;
84
+ cyan10: string;
85
+ green10: string;
86
+ grey10: string;
87
+ greyA10: string;
88
+ orange10: string;
89
+ pink10: string;
90
+ red10: string;
91
+ yellow10: string;
92
+ blue11: string;
93
+ cyan11: string;
94
+ green11: string;
95
+ grey11: string;
96
+ greyA11: string;
97
+ orange11: string;
98
+ pink11: string;
99
+ red11: string;
100
+ yellow11: string;
101
+ blue6: string;
102
+ cyan6: string;
103
+ green6: string;
104
+ grey6: string;
105
+ greyA6: string;
106
+ orange6: string;
107
+ pink6: string;
108
+ red6: string;
109
+ yellow6: string;
110
+ blue8: string;
111
+ cyan8: string;
112
+ green8: string;
113
+ grey8: string;
114
+ greyA8: string;
115
+ orange8: string;
116
+ pink8: string;
117
+ red8: string;
118
+ yellow8: string;
119
+ blue13: string;
120
+ cyan13: string;
121
+ green13: string;
122
+ grey13: string;
123
+ greyA13: string;
124
+ orange13: string;
125
+ pink13: string;
126
+ red13: string;
127
+ yellow13: string;
128
+ neutral2: string;
129
+ neutralA2: string;
130
+ primary2: string;
131
+ accent2: string;
132
+ success2: string;
133
+ info2: string;
134
+ warning2: string;
135
+ critical2: string;
136
+ neutral1: string;
137
+ neutralA1: string;
138
+ primary1: string;
139
+ accent1: string;
140
+ success1: string;
141
+ info1: string;
142
+ warning1: string;
143
+ critical1: string;
144
+ neutral7: string;
145
+ neutralA7: string;
146
+ primary7: string;
147
+ accent7: string;
148
+ success7: string;
149
+ info7: string;
150
+ warning7: string;
151
+ critical7: string;
152
+ neutral12: string;
153
+ neutralA12: string;
154
+ primary12: string;
155
+ accent12: string;
156
+ success12: string;
157
+ info12: string;
158
+ warning12: string;
159
+ critical12: string;
160
+ neutral3: string;
161
+ neutralA3: string;
162
+ primary3: string;
163
+ accent3: string;
164
+ success3: string;
165
+ info3: string;
166
+ warning3: string;
167
+ critical3: string;
168
+ neutral4: string;
169
+ neutralA4: string;
170
+ primary4: string;
171
+ accent4: string;
172
+ success4: string;
173
+ info4: string;
174
+ warning4: string;
175
+ critical4: string;
176
+ neutral5: string;
177
+ neutralA5: string;
178
+ primary5: string;
179
+ accent5: string;
180
+ success5: string;
181
+ info5: string;
182
+ warning5: string;
183
+ critical5: string;
184
+ neutral9: string;
185
+ neutralA9: string;
186
+ primary9: string;
187
+ accent9: string;
188
+ success9: string;
189
+ info9: string;
190
+ warning9: string;
191
+ critical9: string;
192
+ neutral10: string;
193
+ neutralA10: string;
194
+ primary10: string;
195
+ accent10: string;
196
+ success10: string;
197
+ info10: string;
198
+ warning10: string;
199
+ critical10: string;
200
+ neutral11: string;
201
+ neutralA11: string;
202
+ primary11: string;
203
+ accent11: string;
204
+ success11: string;
205
+ info11: string;
206
+ warning11: string;
207
+ critical11: string;
208
+ neutral6: string;
209
+ neutralA6: string;
210
+ primary6: string;
211
+ accent6: string;
212
+ success6: string;
213
+ info6: string;
214
+ warning6: string;
215
+ critical6: string;
216
+ neutral8: string;
217
+ neutralA8: string;
218
+ primary8: string;
219
+ accent8: string;
220
+ success8: string;
221
+ info8: string;
222
+ warning8: string;
223
+ critical8: string;
224
+ neutral13: string;
225
+ neutralA13: string;
226
+ primary13: string;
227
+ accent13: string;
228
+ success13: string;
229
+ info13: string;
230
+ warning13: string;
231
+ critical13: string;
232
+ };
233
+ fonts: {
234
+ display100: any;
235
+ display200: any;
236
+ display300: any;
237
+ display400: any;
238
+ display500: any;
239
+ display600: any;
240
+ display700: any;
241
+ display800: any;
242
+ display900: any;
243
+ body: any;
244
+ caption: any;
245
+ pageTitle: any;
246
+ sectionTitle: any;
247
+ sectionSubtitle: any;
248
+ button: any;
249
+ textInput: any;
250
+ default: any;
251
+ };
252
+ fontSizes: {
253
+ display100: any;
254
+ display200: any;
255
+ display300: any;
256
+ display400: any;
257
+ display500: any;
258
+ display600: any;
259
+ display700: any;
260
+ display800: any;
261
+ display900: any;
262
+ body: any;
263
+ caption: any;
264
+ pageTitle: any;
265
+ sectionTitle: any;
266
+ sectionSubtitle: any;
267
+ button: any;
268
+ textInput: any;
269
+ };
270
+ fontWeights: {
271
+ display100: any;
272
+ display200: any;
273
+ display300: any;
274
+ display400: any;
275
+ display500: any;
276
+ display600: any;
277
+ display700: any;
278
+ display800: any;
279
+ display900: any;
280
+ body: any;
281
+ caption: any;
282
+ pageTitle: any;
283
+ sectionTitle: any;
284
+ sectionSubtitle: any;
285
+ button: any;
286
+ textInput: any;
287
+ };
288
+ letterSpacings: {
289
+ display100: any;
290
+ display200: any;
291
+ display300: any;
292
+ display400: any;
293
+ display500: any;
294
+ display600: any;
295
+ display700: any;
296
+ display800: any;
297
+ display900: any;
298
+ body: any;
299
+ caption: any;
300
+ pageTitle: any;
301
+ sectionTitle: any;
302
+ sectionSubtitle: any;
303
+ button: any;
304
+ textInput: any;
305
+ };
306
+ lineHeights: {
307
+ display100: any;
308
+ display200: any;
309
+ display300: any;
310
+ display400: any;
311
+ display500: any;
312
+ display600: any;
313
+ display700: any;
314
+ display800: any;
315
+ display900: any;
316
+ body: any;
317
+ caption: any;
318
+ pageTitle: any;
319
+ sectionTitle: any;
320
+ sectionSubtitle: any;
321
+ button: any;
322
+ textInput: any;
323
+ };
324
+ radii: {
325
+ default: any;
326
+ large: any;
327
+ rounded: any;
328
+ };
329
+ shadows: {
330
+ sm: any;
331
+ md: any;
332
+ lg: any;
333
+ };
334
+ space: {
335
+ sm: any;
336
+ md: any;
337
+ lg: any;
338
+ xs: any;
339
+ xl: any;
340
+ xxl: any;
341
+ };
342
+ zIndices: {
343
+ floatingElements: number;
344
+ blanket: number;
345
+ dialog: number;
346
+ toast: number;
347
+ tooltip: number;
348
+ portalElement: number;
349
+ };
350
+ }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
351
+ //# sourceMappingURL=styled.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"styled.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/Input/Select/components/OptionValueContents/components/ValueText/styled.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAAsC,CAAC"}
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.BaseValueText = void 0;
7
+ var system_1 = require("@vitality-ds/system");
8
+ var BaseValueText_styles_1 = __importDefault(require("./styles/BaseValueText.styles"));
9
+ // eslint-disable-next-line import/prefer-default-export
10
+ exports.BaseValueText = (0, system_1.styled)("span", BaseValueText_styles_1.default);
11
+ //# sourceMappingURL=styled.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"styled.js","sourceRoot":"","sources":["../../../../../../../../../src/Input/Select/components/OptionValueContents/components/ValueText/styled.ts"],"names":[],"mappings":";;;;;;AAAA,8CAA6C;AAE7C,uFAAgE;AAEhE,wDAAwD;AAC3C,QAAA,aAAa,GAAG,IAAA,eAAM,EAAC,MAAM,EAAE,8BAAmB,CAAC,CAAC"}