@optiaxiom/proteus 0.1.2 → 0.1.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.
- package/dist/esm/assets/src/proteus-chart/{ProteusChart.css.ts.vanilla-DWDlfc5R.css → ProteusChart.css.ts.vanilla-CK1fYTqC.css} +2 -2
- package/dist/esm/assets/src/proteus-chart/{ProteusChartTooltipContent.css.ts.vanilla-WrO00wrg.css → ProteusChartTooltipContent.css.ts.vanilla-BdDP4nOV.css} +2 -2
- package/dist/esm/assets/src/proteus-question/{ProteusQuestionItem.css.ts.vanilla-S1I3NGY4.css → ProteusQuestionItem.css.ts.vanilla-aFgg_KJM.css} +2 -2
- package/dist/esm/index.js +1 -1
- package/dist/esm/proteus-chart/ProteusChart-css.js +1 -1
- package/dist/esm/proteus-chart/ProteusChartTooltipContent-css.js +1 -1
- package/dist/esm/proteus-document/ProteusDocumentShell.js +37 -6
- package/dist/esm/proteus-element/ProteusElement.js +5 -0
- package/dist/esm/proteus-input/ProteusInput.js +1 -1
- package/dist/esm/proteus-map/ProteusMap.js +1 -1
- package/dist/esm/proteus-question/ProteusQuestionItem-css.js +1 -1
- package/dist/esm/proteus-select/ProteusSelect.js +1 -1
- package/dist/esm/proteus-switch/ProteusSwitch.js +41 -0
- package/dist/esm/proteus-textarea/ProteusTextarea.js +1 -1
- package/dist/esm/proteus-value/ProteusValue.js +1 -1
- package/dist/esm/schema/public-schema.json.js +439 -0
- package/dist/esm/schema/runtime-schema.json.js +436 -0
- package/dist/esm/{proteus-document → use-proteus-value}/useProteusValue.js +3 -3
- package/dist/index.d.ts +8 -5
- package/dist/spec.d.ts +2193 -1512
- package/package.json +2 -2
|
@@ -2616,6 +2616,10 @@ var definitions = {
|
|
|
2616
2616
|
title: {
|
|
2617
2617
|
$ref: "#/definitions/ProteusNode",
|
|
2618
2618
|
description: "A concise heading that encapsulates the essence of the Proteus document's content or intended action."
|
|
2619
|
+
},
|
|
2620
|
+
titleIcon: {
|
|
2621
|
+
description: "URL or data URI for an icon displayed alongside the title in a block-style header.",
|
|
2622
|
+
type: "string"
|
|
2619
2623
|
}
|
|
2620
2624
|
},
|
|
2621
2625
|
required: [
|
|
@@ -2662,6 +2666,9 @@ var definitions = {
|
|
|
2662
2666
|
{
|
|
2663
2667
|
$ref: "#/definitions/ProteusHeading"
|
|
2664
2668
|
},
|
|
2669
|
+
{
|
|
2670
|
+
$ref: "#/definitions/ProteusIcon"
|
|
2671
|
+
},
|
|
2665
2672
|
{
|
|
2666
2673
|
$ref: "#/definitions/ProteusIconCalendar"
|
|
2667
2674
|
},
|
|
@@ -2698,6 +2705,9 @@ var definitions = {
|
|
|
2698
2705
|
{
|
|
2699
2706
|
$ref: "#/definitions/ProteusShow"
|
|
2700
2707
|
},
|
|
2708
|
+
{
|
|
2709
|
+
$ref: "#/definitions/ProteusSwitch"
|
|
2710
|
+
},
|
|
2701
2711
|
{
|
|
2702
2712
|
$ref: "#/definitions/ProteusText"
|
|
2703
2713
|
},
|
|
@@ -2769,6 +2779,26 @@ var definitions = {
|
|
|
2769
2779
|
"url"
|
|
2770
2780
|
],
|
|
2771
2781
|
type: "object"
|
|
2782
|
+
},
|
|
2783
|
+
{
|
|
2784
|
+
additionalProperties: false,
|
|
2785
|
+
description: "Client-side component action - collects name/value pairs from a data array and sends as a message",
|
|
2786
|
+
properties: {
|
|
2787
|
+
action: {
|
|
2788
|
+
"const": "message-from",
|
|
2789
|
+
description: "The action type",
|
|
2790
|
+
type: "string"
|
|
2791
|
+
},
|
|
2792
|
+
path: {
|
|
2793
|
+
description: "JSON pointer to an array of objects with name and value fields",
|
|
2794
|
+
type: "string"
|
|
2795
|
+
}
|
|
2796
|
+
},
|
|
2797
|
+
required: [
|
|
2798
|
+
"action",
|
|
2799
|
+
"path"
|
|
2800
|
+
],
|
|
2801
|
+
type: "object"
|
|
2772
2802
|
}
|
|
2773
2803
|
],
|
|
2774
2804
|
description: "Handler for user interactions - a server-side tool call, client-side message, or client-side component action"
|
|
@@ -5221,6 +5251,200 @@ var definitions = {
|
|
|
5221
5251
|
],
|
|
5222
5252
|
type: "object"
|
|
5223
5253
|
},
|
|
5254
|
+
ProteusIcon: {
|
|
5255
|
+
additionalProperties: false,
|
|
5256
|
+
properties: {
|
|
5257
|
+
$type: {
|
|
5258
|
+
"const": "Icon"
|
|
5259
|
+
},
|
|
5260
|
+
alignItems: {
|
|
5261
|
+
$ref: "#/definitions/SprinkleProp_alignItems"
|
|
5262
|
+
},
|
|
5263
|
+
alignSelf: {
|
|
5264
|
+
$ref: "#/definitions/SprinkleProp_alignSelf"
|
|
5265
|
+
},
|
|
5266
|
+
animation: {
|
|
5267
|
+
$ref: "#/definitions/SprinkleProp_animation"
|
|
5268
|
+
},
|
|
5269
|
+
backgroundImage: {
|
|
5270
|
+
$ref: "#/definitions/SprinkleProp_backgroundImage"
|
|
5271
|
+
},
|
|
5272
|
+
bg: {
|
|
5273
|
+
$ref: "#/definitions/SprinkleProp_bg"
|
|
5274
|
+
},
|
|
5275
|
+
border: {
|
|
5276
|
+
$ref: "#/definitions/SprinkleProp_border"
|
|
5277
|
+
},
|
|
5278
|
+
borderB: {
|
|
5279
|
+
$ref: "#/definitions/SprinkleProp_borderB"
|
|
5280
|
+
},
|
|
5281
|
+
borderColor: {
|
|
5282
|
+
$ref: "#/definitions/SprinkleProp_borderColor"
|
|
5283
|
+
},
|
|
5284
|
+
borderL: {
|
|
5285
|
+
$ref: "#/definitions/SprinkleProp_borderL"
|
|
5286
|
+
},
|
|
5287
|
+
borderR: {
|
|
5288
|
+
$ref: "#/definitions/SprinkleProp_borderR"
|
|
5289
|
+
},
|
|
5290
|
+
borderT: {
|
|
5291
|
+
$ref: "#/definitions/SprinkleProp_borderT"
|
|
5292
|
+
},
|
|
5293
|
+
color: {
|
|
5294
|
+
$ref: "#/definitions/SprinkleProp_color"
|
|
5295
|
+
},
|
|
5296
|
+
cursor: {
|
|
5297
|
+
$ref: "#/definitions/SprinkleProp_cursor"
|
|
5298
|
+
},
|
|
5299
|
+
display: {
|
|
5300
|
+
$ref: "#/definitions/SprinkleProp_display"
|
|
5301
|
+
},
|
|
5302
|
+
flex: {
|
|
5303
|
+
$ref: "#/definitions/SprinkleProp_flex"
|
|
5304
|
+
},
|
|
5305
|
+
flexDirection: {
|
|
5306
|
+
$ref: "#/definitions/SprinkleProp_flexDirection"
|
|
5307
|
+
},
|
|
5308
|
+
flexWrap: {
|
|
5309
|
+
$ref: "#/definitions/SprinkleProp_flexWrap"
|
|
5310
|
+
},
|
|
5311
|
+
fontFamily: {
|
|
5312
|
+
$ref: "#/definitions/SprinkleProp_fontFamily"
|
|
5313
|
+
},
|
|
5314
|
+
fontSize: {
|
|
5315
|
+
$ref: "#/definitions/SprinkleProp_fontSize"
|
|
5316
|
+
},
|
|
5317
|
+
fontWeight: {
|
|
5318
|
+
$ref: "#/definitions/SprinkleProp_fontWeight"
|
|
5319
|
+
},
|
|
5320
|
+
gap: {
|
|
5321
|
+
$ref: "#/definitions/SprinkleProp_gap"
|
|
5322
|
+
},
|
|
5323
|
+
gridColumn: {
|
|
5324
|
+
$ref: "#/definitions/SprinkleProp_gridColumn"
|
|
5325
|
+
},
|
|
5326
|
+
gridTemplateColumns: {
|
|
5327
|
+
$ref: "#/definitions/SprinkleProp_gridTemplateColumns"
|
|
5328
|
+
},
|
|
5329
|
+
h: {
|
|
5330
|
+
$ref: "#/definitions/SprinkleProp_h"
|
|
5331
|
+
},
|
|
5332
|
+
justifyContent: {
|
|
5333
|
+
$ref: "#/definitions/SprinkleProp_justifyContent"
|
|
5334
|
+
},
|
|
5335
|
+
justifyItems: {
|
|
5336
|
+
$ref: "#/definitions/SprinkleProp_justifyItems"
|
|
5337
|
+
},
|
|
5338
|
+
m: {
|
|
5339
|
+
$ref: "#/definitions/SprinkleProp_m"
|
|
5340
|
+
},
|
|
5341
|
+
maxH: {
|
|
5342
|
+
$ref: "#/definitions/SprinkleProp_maxH"
|
|
5343
|
+
},
|
|
5344
|
+
maxW: {
|
|
5345
|
+
$ref: "#/definitions/SprinkleProp_maxW"
|
|
5346
|
+
},
|
|
5347
|
+
mb: {
|
|
5348
|
+
$ref: "#/definitions/SprinkleProp_mb"
|
|
5349
|
+
},
|
|
5350
|
+
ml: {
|
|
5351
|
+
$ref: "#/definitions/SprinkleProp_ml"
|
|
5352
|
+
},
|
|
5353
|
+
mr: {
|
|
5354
|
+
$ref: "#/definitions/SprinkleProp_mr"
|
|
5355
|
+
},
|
|
5356
|
+
mt: {
|
|
5357
|
+
$ref: "#/definitions/SprinkleProp_mt"
|
|
5358
|
+
},
|
|
5359
|
+
mx: {
|
|
5360
|
+
$ref: "#/definitions/SprinkleProp_mx"
|
|
5361
|
+
},
|
|
5362
|
+
my: {
|
|
5363
|
+
$ref: "#/definitions/SprinkleProp_my"
|
|
5364
|
+
},
|
|
5365
|
+
objectFit: {
|
|
5366
|
+
$ref: "#/definitions/SprinkleProp_objectFit"
|
|
5367
|
+
},
|
|
5368
|
+
overflow: {
|
|
5369
|
+
$ref: "#/definitions/SprinkleProp_overflow"
|
|
5370
|
+
},
|
|
5371
|
+
overflowX: {
|
|
5372
|
+
$ref: "#/definitions/SprinkleProp_overflowX"
|
|
5373
|
+
},
|
|
5374
|
+
overflowY: {
|
|
5375
|
+
$ref: "#/definitions/SprinkleProp_overflowY"
|
|
5376
|
+
},
|
|
5377
|
+
p: {
|
|
5378
|
+
$ref: "#/definitions/SprinkleProp_p"
|
|
5379
|
+
},
|
|
5380
|
+
pb: {
|
|
5381
|
+
$ref: "#/definitions/SprinkleProp_pb"
|
|
5382
|
+
},
|
|
5383
|
+
pl: {
|
|
5384
|
+
$ref: "#/definitions/SprinkleProp_pl"
|
|
5385
|
+
},
|
|
5386
|
+
placeItems: {
|
|
5387
|
+
$ref: "#/definitions/SprinkleProp_placeItems"
|
|
5388
|
+
},
|
|
5389
|
+
pointerEvents: {
|
|
5390
|
+
$ref: "#/definitions/SprinkleProp_pointerEvents"
|
|
5391
|
+
},
|
|
5392
|
+
pr: {
|
|
5393
|
+
$ref: "#/definitions/SprinkleProp_pr"
|
|
5394
|
+
},
|
|
5395
|
+
pt: {
|
|
5396
|
+
$ref: "#/definitions/SprinkleProp_pt"
|
|
5397
|
+
},
|
|
5398
|
+
px: {
|
|
5399
|
+
$ref: "#/definitions/SprinkleProp_px"
|
|
5400
|
+
},
|
|
5401
|
+
py: {
|
|
5402
|
+
$ref: "#/definitions/SprinkleProp_py"
|
|
5403
|
+
},
|
|
5404
|
+
rounded: {
|
|
5405
|
+
$ref: "#/definitions/SprinkleProp_rounded"
|
|
5406
|
+
},
|
|
5407
|
+
shadow: {
|
|
5408
|
+
$ref: "#/definitions/SprinkleProp_shadow"
|
|
5409
|
+
},
|
|
5410
|
+
size: {
|
|
5411
|
+
$ref: "#/definitions/SprinkleProp_size"
|
|
5412
|
+
},
|
|
5413
|
+
textAlign: {
|
|
5414
|
+
$ref: "#/definitions/SprinkleProp_textAlign"
|
|
5415
|
+
},
|
|
5416
|
+
textTransform: {
|
|
5417
|
+
$ref: "#/definitions/SprinkleProp_textTransform"
|
|
5418
|
+
},
|
|
5419
|
+
transition: {
|
|
5420
|
+
$ref: "#/definitions/SprinkleProp_transition"
|
|
5421
|
+
},
|
|
5422
|
+
w: {
|
|
5423
|
+
$ref: "#/definitions/SprinkleProp_w"
|
|
5424
|
+
},
|
|
5425
|
+
whiteSpace: {
|
|
5426
|
+
$ref: "#/definitions/SprinkleProp_whiteSpace"
|
|
5427
|
+
},
|
|
5428
|
+
z: {
|
|
5429
|
+
$ref: "#/definitions/SprinkleProp_z"
|
|
5430
|
+
},
|
|
5431
|
+
src: {
|
|
5432
|
+
anyOf: [
|
|
5433
|
+
{
|
|
5434
|
+
$ref: "#/definitions/ProteusValue"
|
|
5435
|
+
},
|
|
5436
|
+
{
|
|
5437
|
+
type: "string"
|
|
5438
|
+
}
|
|
5439
|
+
],
|
|
5440
|
+
description: "The icon source URL"
|
|
5441
|
+
}
|
|
5442
|
+
},
|
|
5443
|
+
required: [
|
|
5444
|
+
"$type"
|
|
5445
|
+
],
|
|
5446
|
+
type: "object"
|
|
5447
|
+
},
|
|
5224
5448
|
ProteusIconCalendar: {
|
|
5225
5449
|
additionalProperties: false,
|
|
5226
5450
|
properties: {
|
|
@@ -7117,6 +7341,221 @@ var definitions = {
|
|
|
7117
7341
|
],
|
|
7118
7342
|
type: "object"
|
|
7119
7343
|
},
|
|
7344
|
+
ProteusSwitch: {
|
|
7345
|
+
additionalProperties: false,
|
|
7346
|
+
examples: [
|
|
7347
|
+
{
|
|
7348
|
+
$type: "Switch",
|
|
7349
|
+
name: "field_name"
|
|
7350
|
+
}
|
|
7351
|
+
],
|
|
7352
|
+
properties: {
|
|
7353
|
+
$type: {
|
|
7354
|
+
"const": "Switch"
|
|
7355
|
+
},
|
|
7356
|
+
alignItems: {
|
|
7357
|
+
$ref: "#/definitions/SprinkleProp_alignItems"
|
|
7358
|
+
},
|
|
7359
|
+
alignSelf: {
|
|
7360
|
+
$ref: "#/definitions/SprinkleProp_alignSelf"
|
|
7361
|
+
},
|
|
7362
|
+
animation: {
|
|
7363
|
+
$ref: "#/definitions/SprinkleProp_animation"
|
|
7364
|
+
},
|
|
7365
|
+
backgroundImage: {
|
|
7366
|
+
$ref: "#/definitions/SprinkleProp_backgroundImage"
|
|
7367
|
+
},
|
|
7368
|
+
bg: {
|
|
7369
|
+
$ref: "#/definitions/SprinkleProp_bg"
|
|
7370
|
+
},
|
|
7371
|
+
border: {
|
|
7372
|
+
$ref: "#/definitions/SprinkleProp_border"
|
|
7373
|
+
},
|
|
7374
|
+
borderB: {
|
|
7375
|
+
$ref: "#/definitions/SprinkleProp_borderB"
|
|
7376
|
+
},
|
|
7377
|
+
borderColor: {
|
|
7378
|
+
$ref: "#/definitions/SprinkleProp_borderColor"
|
|
7379
|
+
},
|
|
7380
|
+
borderL: {
|
|
7381
|
+
$ref: "#/definitions/SprinkleProp_borderL"
|
|
7382
|
+
},
|
|
7383
|
+
borderR: {
|
|
7384
|
+
$ref: "#/definitions/SprinkleProp_borderR"
|
|
7385
|
+
},
|
|
7386
|
+
borderT: {
|
|
7387
|
+
$ref: "#/definitions/SprinkleProp_borderT"
|
|
7388
|
+
},
|
|
7389
|
+
children: {
|
|
7390
|
+
$ref: "#/definitions/ProteusNode"
|
|
7391
|
+
},
|
|
7392
|
+
color: {
|
|
7393
|
+
$ref: "#/definitions/SprinkleProp_color"
|
|
7394
|
+
},
|
|
7395
|
+
cursor: {
|
|
7396
|
+
$ref: "#/definitions/SprinkleProp_cursor"
|
|
7397
|
+
},
|
|
7398
|
+
description: {
|
|
7399
|
+
$ref: "#/definitions/ProteusNode",
|
|
7400
|
+
description: "Add secondary text after the label."
|
|
7401
|
+
},
|
|
7402
|
+
display: {
|
|
7403
|
+
$ref: "#/definitions/SprinkleProp_display"
|
|
7404
|
+
},
|
|
7405
|
+
flex: {
|
|
7406
|
+
$ref: "#/definitions/SprinkleProp_flex"
|
|
7407
|
+
},
|
|
7408
|
+
flexDirection: {
|
|
7409
|
+
$ref: "#/definitions/SprinkleProp_flexDirection"
|
|
7410
|
+
},
|
|
7411
|
+
flexWrap: {
|
|
7412
|
+
$ref: "#/definitions/SprinkleProp_flexWrap"
|
|
7413
|
+
},
|
|
7414
|
+
fontFamily: {
|
|
7415
|
+
$ref: "#/definitions/SprinkleProp_fontFamily"
|
|
7416
|
+
},
|
|
7417
|
+
fontSize: {
|
|
7418
|
+
$ref: "#/definitions/SprinkleProp_fontSize"
|
|
7419
|
+
},
|
|
7420
|
+
fontWeight: {
|
|
7421
|
+
$ref: "#/definitions/SprinkleProp_fontWeight"
|
|
7422
|
+
},
|
|
7423
|
+
gap: {
|
|
7424
|
+
$ref: "#/definitions/SprinkleProp_gap"
|
|
7425
|
+
},
|
|
7426
|
+
gridColumn: {
|
|
7427
|
+
$ref: "#/definitions/SprinkleProp_gridColumn"
|
|
7428
|
+
},
|
|
7429
|
+
gridTemplateColumns: {
|
|
7430
|
+
$ref: "#/definitions/SprinkleProp_gridTemplateColumns"
|
|
7431
|
+
},
|
|
7432
|
+
h: {
|
|
7433
|
+
$ref: "#/definitions/SprinkleProp_h"
|
|
7434
|
+
},
|
|
7435
|
+
justifyContent: {
|
|
7436
|
+
$ref: "#/definitions/SprinkleProp_justifyContent"
|
|
7437
|
+
},
|
|
7438
|
+
justifyItems: {
|
|
7439
|
+
$ref: "#/definitions/SprinkleProp_justifyItems"
|
|
7440
|
+
},
|
|
7441
|
+
m: {
|
|
7442
|
+
$ref: "#/definitions/SprinkleProp_m"
|
|
7443
|
+
},
|
|
7444
|
+
maxH: {
|
|
7445
|
+
$ref: "#/definitions/SprinkleProp_maxH"
|
|
7446
|
+
},
|
|
7447
|
+
maxW: {
|
|
7448
|
+
$ref: "#/definitions/SprinkleProp_maxW"
|
|
7449
|
+
},
|
|
7450
|
+
mb: {
|
|
7451
|
+
$ref: "#/definitions/SprinkleProp_mb"
|
|
7452
|
+
},
|
|
7453
|
+
ml: {
|
|
7454
|
+
$ref: "#/definitions/SprinkleProp_ml"
|
|
7455
|
+
},
|
|
7456
|
+
mr: {
|
|
7457
|
+
$ref: "#/definitions/SprinkleProp_mr"
|
|
7458
|
+
},
|
|
7459
|
+
mt: {
|
|
7460
|
+
$ref: "#/definitions/SprinkleProp_mt"
|
|
7461
|
+
},
|
|
7462
|
+
mx: {
|
|
7463
|
+
$ref: "#/definitions/SprinkleProp_mx"
|
|
7464
|
+
},
|
|
7465
|
+
my: {
|
|
7466
|
+
$ref: "#/definitions/SprinkleProp_my"
|
|
7467
|
+
},
|
|
7468
|
+
name: {
|
|
7469
|
+
anyOf: [
|
|
7470
|
+
{
|
|
7471
|
+
type: "string"
|
|
7472
|
+
},
|
|
7473
|
+
{
|
|
7474
|
+
$ref: "#/definitions/ProteusValue"
|
|
7475
|
+
}
|
|
7476
|
+
],
|
|
7477
|
+
description: "The name of the form control element."
|
|
7478
|
+
},
|
|
7479
|
+
objectFit: {
|
|
7480
|
+
$ref: "#/definitions/SprinkleProp_objectFit"
|
|
7481
|
+
},
|
|
7482
|
+
overflow: {
|
|
7483
|
+
$ref: "#/definitions/SprinkleProp_overflow"
|
|
7484
|
+
},
|
|
7485
|
+
overflowX: {
|
|
7486
|
+
$ref: "#/definitions/SprinkleProp_overflowX"
|
|
7487
|
+
},
|
|
7488
|
+
overflowY: {
|
|
7489
|
+
$ref: "#/definitions/SprinkleProp_overflowY"
|
|
7490
|
+
},
|
|
7491
|
+
p: {
|
|
7492
|
+
$ref: "#/definitions/SprinkleProp_p"
|
|
7493
|
+
},
|
|
7494
|
+
pb: {
|
|
7495
|
+
$ref: "#/definitions/SprinkleProp_pb"
|
|
7496
|
+
},
|
|
7497
|
+
pl: {
|
|
7498
|
+
$ref: "#/definitions/SprinkleProp_pl"
|
|
7499
|
+
},
|
|
7500
|
+
placeItems: {
|
|
7501
|
+
$ref: "#/definitions/SprinkleProp_placeItems"
|
|
7502
|
+
},
|
|
7503
|
+
pointerEvents: {
|
|
7504
|
+
$ref: "#/definitions/SprinkleProp_pointerEvents"
|
|
7505
|
+
},
|
|
7506
|
+
pr: {
|
|
7507
|
+
$ref: "#/definitions/SprinkleProp_pr"
|
|
7508
|
+
},
|
|
7509
|
+
pt: {
|
|
7510
|
+
$ref: "#/definitions/SprinkleProp_pt"
|
|
7511
|
+
},
|
|
7512
|
+
px: {
|
|
7513
|
+
$ref: "#/definitions/SprinkleProp_px"
|
|
7514
|
+
},
|
|
7515
|
+
py: {
|
|
7516
|
+
$ref: "#/definitions/SprinkleProp_py"
|
|
7517
|
+
},
|
|
7518
|
+
required: {
|
|
7519
|
+
anyOf: [
|
|
7520
|
+
{
|
|
7521
|
+
type: "boolean"
|
|
7522
|
+
},
|
|
7523
|
+
{
|
|
7524
|
+
$ref: "#/definitions/ProteusValue"
|
|
7525
|
+
}
|
|
7526
|
+
],
|
|
7527
|
+
description: "Whether selecting this input is required."
|
|
7528
|
+
},
|
|
7529
|
+
rounded: {
|
|
7530
|
+
$ref: "#/definitions/SprinkleProp_rounded"
|
|
7531
|
+
},
|
|
7532
|
+
shadow: {
|
|
7533
|
+
$ref: "#/definitions/SprinkleProp_shadow"
|
|
7534
|
+
},
|
|
7535
|
+
textAlign: {
|
|
7536
|
+
$ref: "#/definitions/SprinkleProp_textAlign"
|
|
7537
|
+
},
|
|
7538
|
+
textTransform: {
|
|
7539
|
+
$ref: "#/definitions/SprinkleProp_textTransform"
|
|
7540
|
+
},
|
|
7541
|
+
transition: {
|
|
7542
|
+
$ref: "#/definitions/SprinkleProp_transition"
|
|
7543
|
+
},
|
|
7544
|
+
w: {
|
|
7545
|
+
$ref: "#/definitions/SprinkleProp_w"
|
|
7546
|
+
},
|
|
7547
|
+
whiteSpace: {
|
|
7548
|
+
$ref: "#/definitions/SprinkleProp_whiteSpace"
|
|
7549
|
+
},
|
|
7550
|
+
z: {
|
|
7551
|
+
$ref: "#/definitions/SprinkleProp_z"
|
|
7552
|
+
}
|
|
7553
|
+
},
|
|
7554
|
+
required: [
|
|
7555
|
+
"$type"
|
|
7556
|
+
],
|
|
7557
|
+
type: "object"
|
|
7558
|
+
},
|
|
7120
7559
|
ProteusText: {
|
|
7121
7560
|
additionalProperties: false,
|
|
7122
7561
|
examples: [
|