@warp-ds/elements 2.3.0-next.29 → 2.3.0-next.30

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.
@@ -249,18 +249,9 @@
249
249
  "attribute": "variant",
250
250
  "reflects": true,
251
251
  "parsedType": {
252
- "text": "'negative' | 'primary' | 'secondary' | 'negativeQuiet' | 'utility' | 'pill' | 'link' | 'quiet' | 'utilityQuiet'"
252
+ "text": "'negative' | 'primary' | 'secondary' | 'negativeQuiet' | 'utility' | 'link' | 'quiet' | 'utilityQuiet' | 'overlay' | 'overlayInverted' | 'overlayQuiet' | 'overlayInvertedQuiet'"
253
253
  }
254
254
  },
255
- {
256
- "kind": "field",
257
- "name": "quiet",
258
- "type": {
259
- "text": "boolean"
260
- },
261
- "attribute": "quiet",
262
- "reflects": true
263
- },
264
255
  {
265
256
  "kind": "field",
266
257
  "name": "small",
@@ -314,31 +305,6 @@
314
305
  },
315
306
  "attribute": "full-width",
316
307
  "reflects": true
317
- },
318
- {
319
- "kind": "field",
320
- "name": "buttonClass",
321
- "type": {
322
- "text": "string"
323
- },
324
- "attribute": "button-class",
325
- "reflects": true
326
- },
327
- {
328
- "kind": "field",
329
- "name": "name",
330
- "type": {
331
- "text": "string"
332
- },
333
- "attribute": "name",
334
- "reflects": true
335
- },
336
- {
337
- "kind": "field",
338
- "name": "classes",
339
- "type": {
340
- "text": "string"
341
- }
342
308
  }
343
309
  ],
344
310
  "attributes": [
@@ -357,16 +323,9 @@
357
323
  "default": "'secondary'",
358
324
  "fieldName": "variant",
359
325
  "parsedType": {
360
- "text": "'negative' | 'primary' | 'secondary' | 'negativeQuiet' | 'utility' | 'pill' | 'link' | 'quiet' | 'utilityQuiet'"
326
+ "text": "'negative' | 'primary' | 'secondary' | 'negativeQuiet' | 'utility' | 'link' | 'quiet' | 'utilityQuiet' | 'overlay' | 'overlayInverted' | 'overlayQuiet' | 'overlayInvertedQuiet'"
361
327
  }
362
328
  },
363
- {
364
- "name": "quiet",
365
- "type": {
366
- "text": "boolean"
367
- },
368
- "fieldName": "quiet"
369
- },
370
329
  {
371
330
  "name": "small",
372
331
  "type": {
@@ -408,26 +367,6 @@
408
367
  "text": "boolean"
409
368
  },
410
369
  "fieldName": "fullWidth"
411
- },
412
- {
413
- "name": "button-class",
414
- "type": {
415
- "text": "string"
416
- },
417
- "fieldName": "buttonClass"
418
- },
419
- {
420
- "name": "name",
421
- "type": {
422
- "text": "string"
423
- },
424
- "fieldName": "name"
425
- }
426
- ],
427
- "mixins": [
428
- {
429
- "name": "FormControlMixin",
430
- "package": "@open-wc/form-control"
431
370
  }
432
371
  ],
433
372
  "superclass": {
@@ -509,7 +448,7 @@
509
448
  "attribute": "variant",
510
449
  "reflects": true,
511
450
  "parsedType": {
512
- "text": "'negative' | 'primary' | 'secondary' | 'utility' | 'pill' | 'link'"
451
+ "text": "'negative' | 'primary' | 'secondary' | 'utility' | 'link' | 'pill'"
513
452
  }
514
453
  },
515
454
  {
@@ -655,7 +594,7 @@
655
594
  "default": "'secondary'",
656
595
  "fieldName": "variant",
657
596
  "parsedType": {
658
- "text": "'negative' | 'primary' | 'secondary' | 'utility' | 'pill' | 'link'"
597
+ "text": "'negative' | 'primary' | 'secondary' | 'utility' | 'link' | 'pill'"
659
598
  }
660
599
  },
661
600
  {
package/dist/index.d.ts CHANGED
@@ -150,8 +150,6 @@ export type WarpLinkProps = {
150
150
  /** */
151
151
  "variant"?: WarpLink['variant'];
152
152
  /** */
153
- "quiet"?: WarpLink['quiet'];
154
- /** */
155
153
  "small"?: WarpLink['small'];
156
154
  /** */
157
155
  "href"?: WarpLink['href'];
@@ -165,14 +163,6 @@ export type WarpLinkProps = {
165
163
  "full-width"?: WarpLink['fullWidth'];
166
164
  /** */
167
165
  "fullWidth"?: WarpLink['fullWidth'];
168
- /** */
169
- "button-class"?: WarpLink['buttonClass'];
170
- /** */
171
- "buttonClass"?: WarpLink['buttonClass'];
172
- /** */
173
- "name"?: WarpLink['name'];
174
- /** */
175
- "classes"?: WarpLink['classes'];
176
166
 
177
167
 
178
168
  }
@@ -1048,16 +1038,12 @@ export type WarpTextareaProps = {
1048
1038
  *
1049
1039
  * - `autofocus`: undefined
1050
1040
  * - `variant`: undefined
1051
- * - `quiet`: undefined
1052
1041
  * - `small`: undefined
1053
1042
  * - `href`: undefined
1054
1043
  * - `disabled`: undefined
1055
1044
  * - `target`: undefined
1056
1045
  * - `rel`: undefined
1057
1046
  * - `full-width`/`fullWidth`: undefined
1058
- * - `button-class`/`buttonClass`: undefined
1059
- * - `name`: undefined
1060
- * - `classes`: undefined (property only)
1061
1047
  */
1062
1048
  "w-link": Partial<WarpLinkProps & BaseProps<WarpLink> & BaseEvents>;
1063
1049