@ceed/ads 0.0.33-1 → 0.0.33-2
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/framer/index.js +182 -147
- package/package.json +1 -1
package/framer/index.js
CHANGED
|
@@ -35318,112 +35318,146 @@ var Tooltip3 = (props) => {
|
|
|
35318
35318
|
};
|
|
35319
35319
|
Tooltip3.displayName = "Tooltip";
|
|
35320
35320
|
|
|
35321
|
-
// src/components/
|
|
35321
|
+
// src/components/Autocomplete/Autocomplete.framer.ts
|
|
35322
35322
|
import { ControlType } from "framer";
|
|
35323
|
-
var
|
|
35323
|
+
var autocompletePropertyControls = {
|
|
35324
|
+
options: {
|
|
35325
|
+
title: "Options",
|
|
35326
|
+
type: ControlType.Array,
|
|
35327
|
+
control: {
|
|
35328
|
+
type: ControlType.String
|
|
35329
|
+
},
|
|
35330
|
+
defaultValue: ["Option 1", "Option 2", "Option 3"]
|
|
35331
|
+
},
|
|
35332
|
+
placeholder: {
|
|
35333
|
+
title: "Placeholder",
|
|
35334
|
+
type: ControlType.String,
|
|
35335
|
+
defaultValue: "Select an option"
|
|
35336
|
+
},
|
|
35324
35337
|
variant: {
|
|
35325
35338
|
title: "Variant",
|
|
35326
35339
|
type: ControlType.Enum,
|
|
35327
35340
|
options: ["outlined", "plain", "solid", "soft"],
|
|
35341
|
+
defaultValue: "outlined"
|
|
35342
|
+
},
|
|
35343
|
+
size: {
|
|
35344
|
+
title: "Size",
|
|
35345
|
+
type: ControlType.Enum,
|
|
35346
|
+
options: ["sm", "md", "lg"],
|
|
35347
|
+
defaultValue: "md"
|
|
35348
|
+
},
|
|
35349
|
+
startDecorator: {
|
|
35350
|
+
title: "Start Decorator",
|
|
35351
|
+
type: ControlType.ComponentInstance
|
|
35352
|
+
}
|
|
35353
|
+
};
|
|
35354
|
+
|
|
35355
|
+
// src/components/Accordions/Accordions.framer.ts
|
|
35356
|
+
import { ControlType as ControlType2 } from "framer";
|
|
35357
|
+
var accordionsPropertyControls = {
|
|
35358
|
+
variant: {
|
|
35359
|
+
title: "Variant",
|
|
35360
|
+
type: ControlType2.Enum,
|
|
35361
|
+
options: ["outlined", "plain", "solid", "soft"],
|
|
35328
35362
|
defaultValue: "plain"
|
|
35329
35363
|
},
|
|
35330
35364
|
color: {
|
|
35331
35365
|
title: "Color",
|
|
35332
|
-
type:
|
|
35366
|
+
type: ControlType2.Enum,
|
|
35333
35367
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
35334
35368
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"],
|
|
35335
35369
|
defaultValue: "neutral"
|
|
35336
35370
|
},
|
|
35337
35371
|
size: {
|
|
35338
35372
|
title: "Size",
|
|
35339
|
-
type:
|
|
35373
|
+
type: ControlType2.Enum,
|
|
35340
35374
|
options: ["sm", "md", "lg"],
|
|
35341
35375
|
defaultValue: "md"
|
|
35342
35376
|
},
|
|
35343
35377
|
disableDivider: {
|
|
35344
35378
|
title: "Disable Divider",
|
|
35345
|
-
type:
|
|
35379
|
+
type: ControlType2.Boolean,
|
|
35346
35380
|
defaultValue: false
|
|
35347
35381
|
},
|
|
35348
35382
|
summaries: {
|
|
35349
35383
|
title: "Summaries",
|
|
35350
|
-
type:
|
|
35384
|
+
type: ControlType2.Array,
|
|
35351
35385
|
control: {
|
|
35352
|
-
type:
|
|
35386
|
+
type: ControlType2.String
|
|
35353
35387
|
},
|
|
35354
35388
|
defaultValue: []
|
|
35355
35389
|
},
|
|
35356
35390
|
details: {
|
|
35357
35391
|
title: "Details",
|
|
35358
|
-
type:
|
|
35392
|
+
type: ControlType2.Array,
|
|
35359
35393
|
control: {
|
|
35360
|
-
type:
|
|
35394
|
+
type: ControlType2.ComponentInstance
|
|
35361
35395
|
},
|
|
35362
35396
|
defaultValue: []
|
|
35363
35397
|
}
|
|
35364
35398
|
};
|
|
35365
35399
|
|
|
35366
35400
|
// src/components/Avatar/Avatar.framer.ts
|
|
35367
|
-
import { ControlType as
|
|
35401
|
+
import { ControlType as ControlType3 } from "framer";
|
|
35368
35402
|
var avatarPropertyControls = {
|
|
35369
35403
|
text: {
|
|
35370
35404
|
title: "Text",
|
|
35371
|
-
type:
|
|
35405
|
+
type: ControlType3.String,
|
|
35372
35406
|
defaultValue: "Tim"
|
|
35373
35407
|
},
|
|
35374
35408
|
image: {
|
|
35375
35409
|
title: "Image",
|
|
35376
|
-
type:
|
|
35410
|
+
type: ControlType3.ResponsiveImage
|
|
35377
35411
|
},
|
|
35378
35412
|
color: {
|
|
35379
35413
|
title: "Color",
|
|
35380
|
-
type:
|
|
35414
|
+
type: ControlType3.Enum,
|
|
35381
35415
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
35382
35416
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"],
|
|
35383
35417
|
defaultValue: "neutral"
|
|
35384
35418
|
},
|
|
35385
35419
|
size: {
|
|
35386
35420
|
title: "Size",
|
|
35387
|
-
type:
|
|
35421
|
+
type: ControlType3.Enum,
|
|
35388
35422
|
options: ["sm", "md", "lg"],
|
|
35389
35423
|
defaultValue: "md"
|
|
35390
35424
|
},
|
|
35391
35425
|
variant: {
|
|
35392
35426
|
title: "Variant",
|
|
35393
|
-
type:
|
|
35427
|
+
type: ControlType3.Enum,
|
|
35394
35428
|
options: ["outlined", "plain", "solid", "soft"],
|
|
35395
35429
|
defaultValue: void 0
|
|
35396
35430
|
}
|
|
35397
35431
|
};
|
|
35398
35432
|
|
|
35399
35433
|
// src/components/Badge/Badge.framer.ts
|
|
35400
|
-
import { ControlType as
|
|
35434
|
+
import { ControlType as ControlType4 } from "framer";
|
|
35401
35435
|
var badgePropertyControls = {
|
|
35402
35436
|
badgeContent: {
|
|
35403
|
-
type:
|
|
35437
|
+
type: ControlType4.String
|
|
35404
35438
|
},
|
|
35405
35439
|
color: {
|
|
35406
35440
|
title: "Color",
|
|
35407
|
-
type:
|
|
35441
|
+
type: ControlType4.Enum,
|
|
35408
35442
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
35409
35443
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
35410
35444
|
},
|
|
35411
35445
|
variant: {
|
|
35412
35446
|
title: "Variant",
|
|
35413
|
-
type:
|
|
35447
|
+
type: ControlType4.Enum,
|
|
35414
35448
|
options: ["solid", "outlined", "soft", "plain"],
|
|
35415
35449
|
defaultValue: "outlined"
|
|
35416
35450
|
},
|
|
35417
35451
|
size: {
|
|
35418
35452
|
title: "Size",
|
|
35419
|
-
type:
|
|
35453
|
+
type: ControlType4.Enum,
|
|
35420
35454
|
options: ["sm", "md", "lg"],
|
|
35421
35455
|
defaultValue: "md"
|
|
35422
35456
|
}
|
|
35423
35457
|
};
|
|
35424
35458
|
|
|
35425
35459
|
// src/components/Button/Button.framer.ts
|
|
35426
|
-
import { ControlType as
|
|
35460
|
+
import { ControlType as ControlType5 } from "framer";
|
|
35427
35461
|
var buttonPropertyControls = {
|
|
35428
35462
|
// NOT working
|
|
35429
35463
|
// children: {
|
|
@@ -35431,132 +35465,132 @@ var buttonPropertyControls = {
|
|
|
35431
35465
|
// },
|
|
35432
35466
|
text: {
|
|
35433
35467
|
title: "Text",
|
|
35434
|
-
type:
|
|
35468
|
+
type: ControlType5.String,
|
|
35435
35469
|
defaultValue: "Press me"
|
|
35436
35470
|
},
|
|
35437
35471
|
onTap: {
|
|
35438
|
-
type:
|
|
35472
|
+
type: ControlType5.EventHandler
|
|
35439
35473
|
},
|
|
35440
35474
|
disabled: {
|
|
35441
35475
|
title: "Disabled",
|
|
35442
|
-
type:
|
|
35476
|
+
type: ControlType5.Boolean,
|
|
35443
35477
|
defaultValue: false
|
|
35444
35478
|
},
|
|
35445
35479
|
color: {
|
|
35446
35480
|
title: "Color",
|
|
35447
|
-
type:
|
|
35481
|
+
type: ControlType5.Enum,
|
|
35448
35482
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
35449
35483
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
35450
35484
|
},
|
|
35451
35485
|
variant: {
|
|
35452
35486
|
title: "Variant",
|
|
35453
|
-
type:
|
|
35487
|
+
type: ControlType5.Enum,
|
|
35454
35488
|
options: ["solid", "outlined", "soft", "plain"]
|
|
35455
35489
|
},
|
|
35456
35490
|
loading: {
|
|
35457
35491
|
title: "Loading",
|
|
35458
|
-
type:
|
|
35492
|
+
type: ControlType5.Boolean,
|
|
35459
35493
|
defaultValue: false
|
|
35460
35494
|
},
|
|
35461
35495
|
endDecorator: {
|
|
35462
35496
|
title: "End Decorator",
|
|
35463
|
-
type:
|
|
35497
|
+
type: ControlType5.ComponentInstance
|
|
35464
35498
|
},
|
|
35465
35499
|
startDecorator: {
|
|
35466
35500
|
title: "Start Decorator",
|
|
35467
|
-
type:
|
|
35501
|
+
type: ControlType5.ComponentInstance
|
|
35468
35502
|
},
|
|
35469
35503
|
size: {
|
|
35470
35504
|
title: "Size",
|
|
35471
|
-
type:
|
|
35505
|
+
type: ControlType5.Enum,
|
|
35472
35506
|
options: ["sm", "md", "lg"],
|
|
35473
35507
|
defaultValue: "md"
|
|
35474
35508
|
},
|
|
35475
35509
|
// for withModal
|
|
35476
35510
|
modalContents: {
|
|
35477
35511
|
title: "Modal Contents",
|
|
35478
|
-
type:
|
|
35512
|
+
type: ControlType5.Array,
|
|
35479
35513
|
control: {
|
|
35480
|
-
type:
|
|
35514
|
+
type: ControlType5.ComponentInstance
|
|
35481
35515
|
}
|
|
35482
35516
|
}
|
|
35483
35517
|
};
|
|
35484
35518
|
|
|
35485
35519
|
// src/components/Checkbox/Checkbox.framer.ts
|
|
35486
|
-
import { ControlType as
|
|
35520
|
+
import { ControlType as ControlType6 } from "framer";
|
|
35487
35521
|
var checkboxPropertyControls = {
|
|
35488
35522
|
onChange: {
|
|
35489
35523
|
title: "onChange",
|
|
35490
|
-
type:
|
|
35524
|
+
type: ControlType6.EventHandler
|
|
35491
35525
|
},
|
|
35492
35526
|
defaultChecked: {
|
|
35493
35527
|
title: "Checked",
|
|
35494
|
-
type:
|
|
35528
|
+
type: ControlType6.Boolean,
|
|
35495
35529
|
defaultValue: false
|
|
35496
35530
|
},
|
|
35497
35531
|
disabled: {
|
|
35498
35532
|
title: "Disabled",
|
|
35499
|
-
type:
|
|
35533
|
+
type: ControlType6.Boolean,
|
|
35500
35534
|
defaultValue: false
|
|
35501
35535
|
},
|
|
35502
35536
|
label: {
|
|
35503
35537
|
title: "Label",
|
|
35504
|
-
type:
|
|
35538
|
+
type: ControlType6.String,
|
|
35505
35539
|
defaultValue: "Label"
|
|
35506
35540
|
},
|
|
35507
35541
|
color: {
|
|
35508
35542
|
title: "Color",
|
|
35509
|
-
type:
|
|
35543
|
+
type: ControlType6.Enum,
|
|
35510
35544
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
35511
35545
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
35512
35546
|
},
|
|
35513
35547
|
size: {
|
|
35514
35548
|
title: "Size",
|
|
35515
|
-
type:
|
|
35549
|
+
type: ControlType6.Enum,
|
|
35516
35550
|
options: ["sm", "md", "lg"],
|
|
35517
35551
|
defaultValue: "md"
|
|
35518
35552
|
},
|
|
35519
35553
|
variant: {
|
|
35520
35554
|
title: "Variant",
|
|
35521
|
-
type:
|
|
35555
|
+
type: ControlType6.Enum,
|
|
35522
35556
|
options: ["outlined", "plain", "solid", "soft"],
|
|
35523
35557
|
defaultValue: void 0
|
|
35524
35558
|
}
|
|
35525
35559
|
};
|
|
35526
35560
|
|
|
35527
35561
|
// src/components/Chip/Chip.framer.ts
|
|
35528
|
-
import { ControlType as
|
|
35562
|
+
import { ControlType as ControlType7 } from "framer";
|
|
35529
35563
|
var chipPropertyControls = {
|
|
35530
35564
|
text: {
|
|
35531
35565
|
title: "Text",
|
|
35532
|
-
type:
|
|
35566
|
+
type: ControlType7.String,
|
|
35533
35567
|
defaultValue: "Chip"
|
|
35534
35568
|
},
|
|
35535
35569
|
color: {
|
|
35536
35570
|
title: "Color",
|
|
35537
|
-
type:
|
|
35571
|
+
type: ControlType7.Enum,
|
|
35538
35572
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
35539
35573
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
35540
35574
|
},
|
|
35541
35575
|
variant: {
|
|
35542
35576
|
title: "Variant",
|
|
35543
|
-
type:
|
|
35577
|
+
type: ControlType7.Enum,
|
|
35544
35578
|
options: ["solid", "outlined", "soft", "plain"]
|
|
35545
35579
|
},
|
|
35546
35580
|
size: {
|
|
35547
35581
|
title: "Size",
|
|
35548
|
-
type:
|
|
35582
|
+
type: ControlType7.Enum,
|
|
35549
35583
|
options: ["sm", "md", "lg"],
|
|
35550
35584
|
defaultValue: "md"
|
|
35551
35585
|
}
|
|
35552
35586
|
};
|
|
35553
35587
|
|
|
35554
35588
|
// src/components/DataTable/DataTable.framer.ts
|
|
35555
|
-
import { ControlType as
|
|
35589
|
+
import { ControlType as ControlType8 } from "framer";
|
|
35556
35590
|
var dataTablePropertyControls = {
|
|
35557
35591
|
csvUrl: {
|
|
35558
35592
|
title: "CSV Data",
|
|
35559
|
-
type:
|
|
35593
|
+
type: ControlType8.File,
|
|
35560
35594
|
allowedFileTypes: ["csv"]
|
|
35561
35595
|
// NOT WORKING
|
|
35562
35596
|
// defaultValue:
|
|
@@ -35564,43 +35598,43 @@ var dataTablePropertyControls = {
|
|
|
35564
35598
|
},
|
|
35565
35599
|
checkboxSelection: {
|
|
35566
35600
|
title: "Show Checkbox",
|
|
35567
|
-
type:
|
|
35601
|
+
type: ControlType8.Boolean,
|
|
35568
35602
|
defaultValue: true
|
|
35569
35603
|
},
|
|
35570
35604
|
noWrap: {
|
|
35571
|
-
type:
|
|
35605
|
+
type: ControlType8.Boolean,
|
|
35572
35606
|
defaultValue: false
|
|
35573
35607
|
},
|
|
35574
35608
|
hoverRow: {
|
|
35575
|
-
type:
|
|
35609
|
+
type: ControlType8.Boolean,
|
|
35576
35610
|
defaultValue: true
|
|
35577
35611
|
},
|
|
35578
35612
|
stripe: {
|
|
35579
|
-
type:
|
|
35613
|
+
type: ControlType8.Enum,
|
|
35580
35614
|
options: [void 0, "odd", "even"],
|
|
35581
35615
|
optionTitles: ["None", "Odd", "Even"],
|
|
35582
35616
|
defaultValue: void 0
|
|
35583
35617
|
},
|
|
35584
35618
|
columns: {
|
|
35585
|
-
type:
|
|
35619
|
+
type: ControlType8.Array,
|
|
35586
35620
|
description: "Column\uC758 \uC0C1\uC138 \uC124\uC815\uC774 \uD544\uC694\uD55C \uACBD\uC6B0 \uC0AC\uC6A9",
|
|
35587
35621
|
control: {
|
|
35588
|
-
type:
|
|
35622
|
+
type: ControlType8.Object,
|
|
35589
35623
|
controls: {
|
|
35590
35624
|
field: {
|
|
35591
|
-
type:
|
|
35625
|
+
type: ControlType8.String,
|
|
35592
35626
|
description: "Column Name. CSV\uC5D0 \uC788\uB294 \uAC12\uC744 \uADF8\uB300\uB85C \uB123\uC5B4\uC57C \uD55C\uB2E4."
|
|
35593
35627
|
},
|
|
35594
35628
|
width: {
|
|
35595
|
-
type:
|
|
35629
|
+
type: ControlType8.String
|
|
35596
35630
|
},
|
|
35597
35631
|
type: {
|
|
35598
|
-
type:
|
|
35632
|
+
type: ControlType8.Enum,
|
|
35599
35633
|
defaultValue: "string",
|
|
35600
35634
|
options: ["string", "number"]
|
|
35601
35635
|
},
|
|
35602
35636
|
resizable: {
|
|
35603
|
-
type:
|
|
35637
|
+
type: ControlType8.Boolean,
|
|
35604
35638
|
defaultValue: true
|
|
35605
35639
|
}
|
|
35606
35640
|
}
|
|
@@ -35612,166 +35646,166 @@ var dataTablePropertyControls = {
|
|
|
35612
35646
|
// defaultValue: 20,
|
|
35613
35647
|
// },
|
|
35614
35648
|
stickyHeader: {
|
|
35615
|
-
type:
|
|
35649
|
+
type: ControlType8.Boolean,
|
|
35616
35650
|
defaultValue: false
|
|
35617
35651
|
},
|
|
35618
35652
|
stickyFooter: {
|
|
35619
|
-
type:
|
|
35653
|
+
type: ControlType8.Boolean,
|
|
35620
35654
|
defaultValue: false
|
|
35621
35655
|
},
|
|
35622
35656
|
onPaginationModelChange: {
|
|
35623
|
-
type:
|
|
35657
|
+
type: ControlType8.EventHandler
|
|
35624
35658
|
},
|
|
35625
35659
|
onSelectionModelChange: {
|
|
35626
|
-
type:
|
|
35660
|
+
type: ControlType8.EventHandler
|
|
35627
35661
|
},
|
|
35628
35662
|
toolbar: {
|
|
35629
|
-
type:
|
|
35663
|
+
type: ControlType8.ComponentInstance
|
|
35630
35664
|
}
|
|
35631
35665
|
};
|
|
35632
35666
|
|
|
35633
35667
|
// src/components/DialogFrame/DialogFrame.framer.ts
|
|
35634
|
-
import { ControlType as
|
|
35668
|
+
import { ControlType as ControlType9 } from "framer";
|
|
35635
35669
|
var dialogFramePropertyControls = {
|
|
35636
35670
|
title: {
|
|
35637
|
-
type:
|
|
35671
|
+
type: ControlType9.String,
|
|
35638
35672
|
defaultValue: "Title"
|
|
35639
35673
|
},
|
|
35640
35674
|
content: {
|
|
35641
35675
|
title: "Content",
|
|
35642
|
-
type:
|
|
35676
|
+
type: ControlType9.ComponentInstance
|
|
35643
35677
|
},
|
|
35644
35678
|
actions: {
|
|
35645
35679
|
title: "Actions",
|
|
35646
|
-
type:
|
|
35680
|
+
type: ControlType9.ComponentInstance
|
|
35647
35681
|
},
|
|
35648
35682
|
size: {
|
|
35649
35683
|
title: "Size",
|
|
35650
|
-
type:
|
|
35684
|
+
type: ControlType9.Enum,
|
|
35651
35685
|
options: ["sm", "md", "lg"],
|
|
35652
35686
|
defaultValue: "md"
|
|
35653
35687
|
}
|
|
35654
35688
|
};
|
|
35655
35689
|
|
|
35656
35690
|
// src/components/Divider/Divider.framer.ts
|
|
35657
|
-
import { ControlType as
|
|
35691
|
+
import { ControlType as ControlType10 } from "framer";
|
|
35658
35692
|
var dividerPropertyControls = {
|
|
35659
35693
|
text: {
|
|
35660
|
-
type:
|
|
35694
|
+
type: ControlType10.String,
|
|
35661
35695
|
defaultValue: void 0
|
|
35662
35696
|
},
|
|
35663
35697
|
orientation: {
|
|
35664
35698
|
title: "Orientation",
|
|
35665
|
-
type:
|
|
35699
|
+
type: ControlType10.Enum,
|
|
35666
35700
|
options: ["horizontal", "vertical"]
|
|
35667
35701
|
}
|
|
35668
35702
|
};
|
|
35669
35703
|
|
|
35670
35704
|
// src/components/IconButton/IconButton.framer.ts
|
|
35671
|
-
import { ControlType as
|
|
35705
|
+
import { ControlType as ControlType11 } from "framer";
|
|
35672
35706
|
var iconButtonPropertyControls = {
|
|
35673
35707
|
icon: {
|
|
35674
35708
|
title: "Icon",
|
|
35675
|
-
type:
|
|
35709
|
+
type: ControlType11.ComponentInstance
|
|
35676
35710
|
},
|
|
35677
35711
|
onClick: {
|
|
35678
35712
|
title: "onClick",
|
|
35679
|
-
type:
|
|
35713
|
+
type: ControlType11.EventHandler
|
|
35680
35714
|
},
|
|
35681
35715
|
disabled: {
|
|
35682
35716
|
title: "Disabled",
|
|
35683
|
-
type:
|
|
35717
|
+
type: ControlType11.Boolean,
|
|
35684
35718
|
defaultValue: false
|
|
35685
35719
|
},
|
|
35686
35720
|
color: {
|
|
35687
35721
|
title: "Color",
|
|
35688
|
-
type:
|
|
35722
|
+
type: ControlType11.Enum,
|
|
35689
35723
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
35690
35724
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
35691
35725
|
},
|
|
35692
35726
|
variant: {
|
|
35693
35727
|
title: "Variant",
|
|
35694
|
-
type:
|
|
35728
|
+
type: ControlType11.Enum,
|
|
35695
35729
|
options: ["solid", "outlined", "soft", "plain"]
|
|
35696
35730
|
},
|
|
35697
35731
|
size: {
|
|
35698
35732
|
title: "Size",
|
|
35699
|
-
type:
|
|
35733
|
+
type: ControlType11.Enum,
|
|
35700
35734
|
options: ["sm", "md", "lg"],
|
|
35701
35735
|
defaultValue: "md"
|
|
35702
35736
|
}
|
|
35703
35737
|
};
|
|
35704
35738
|
|
|
35705
35739
|
// src/components/Input/Input.framer.ts
|
|
35706
|
-
import { ControlType as
|
|
35740
|
+
import { ControlType as ControlType12 } from "framer";
|
|
35707
35741
|
var inputPropertyControls = {
|
|
35708
35742
|
onChange: {
|
|
35709
|
-
type:
|
|
35743
|
+
type: ControlType12.EventHandler
|
|
35710
35744
|
},
|
|
35711
35745
|
disabled: {
|
|
35712
35746
|
title: "Disabled",
|
|
35713
|
-
type:
|
|
35747
|
+
type: ControlType12.Boolean,
|
|
35714
35748
|
defaultValue: false
|
|
35715
35749
|
},
|
|
35716
35750
|
color: {
|
|
35717
35751
|
title: "Color",
|
|
35718
|
-
type:
|
|
35752
|
+
type: ControlType12.Enum,
|
|
35719
35753
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
35720
35754
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"],
|
|
35721
35755
|
defaultValue: "neutral"
|
|
35722
35756
|
},
|
|
35723
35757
|
variant: {
|
|
35724
35758
|
title: "Variant",
|
|
35725
|
-
type:
|
|
35759
|
+
type: ControlType12.Enum,
|
|
35726
35760
|
options: ["solid", "outlined", "soft", "plain"],
|
|
35727
35761
|
defaultValue: "outlined"
|
|
35728
35762
|
},
|
|
35729
35763
|
defaultValue: {
|
|
35730
35764
|
title: "Value",
|
|
35731
|
-
type:
|
|
35765
|
+
type: ControlType12.String,
|
|
35732
35766
|
defaultValue: ""
|
|
35733
35767
|
},
|
|
35734
35768
|
placeholder: {
|
|
35735
35769
|
title: "Placeholder",
|
|
35736
|
-
type:
|
|
35770
|
+
type: ControlType12.String,
|
|
35737
35771
|
defaultValue: "Type in here..."
|
|
35738
35772
|
},
|
|
35739
35773
|
endDecorator: {
|
|
35740
35774
|
title: "End Decorator",
|
|
35741
|
-
type:
|
|
35775
|
+
type: ControlType12.ComponentInstance
|
|
35742
35776
|
},
|
|
35743
35777
|
startDecorator: {
|
|
35744
35778
|
title: "Start Decorator",
|
|
35745
|
-
type:
|
|
35779
|
+
type: ControlType12.ComponentInstance
|
|
35746
35780
|
},
|
|
35747
35781
|
size: {
|
|
35748
35782
|
title: "Size",
|
|
35749
|
-
type:
|
|
35783
|
+
type: ControlType12.Enum,
|
|
35750
35784
|
options: ["sm", "md", "lg"],
|
|
35751
35785
|
defaultValue: "md"
|
|
35752
35786
|
}
|
|
35753
35787
|
};
|
|
35754
35788
|
|
|
35755
35789
|
// src/components/MenuButton/MenuButton.framer.ts
|
|
35756
|
-
import { ControlType as
|
|
35790
|
+
import { ControlType as ControlType13 } from "framer";
|
|
35757
35791
|
var menuButtonPropertyControls = {
|
|
35758
35792
|
buttonText: {
|
|
35759
35793
|
title: "Button Text",
|
|
35760
|
-
type:
|
|
35794
|
+
type: ControlType13.String,
|
|
35761
35795
|
defaultValue: "text"
|
|
35762
35796
|
},
|
|
35763
35797
|
showIcon: {
|
|
35764
|
-
type:
|
|
35798
|
+
type: ControlType13.Boolean,
|
|
35765
35799
|
defaultValue: false
|
|
35766
35800
|
},
|
|
35767
35801
|
items: {
|
|
35768
35802
|
title: "Items",
|
|
35769
|
-
type:
|
|
35803
|
+
type: ControlType13.Array,
|
|
35770
35804
|
control: {
|
|
35771
|
-
type:
|
|
35805
|
+
type: ControlType13.Object,
|
|
35772
35806
|
controls: {
|
|
35773
35807
|
text: {
|
|
35774
|
-
type:
|
|
35808
|
+
type: ControlType13.String
|
|
35775
35809
|
}
|
|
35776
35810
|
}
|
|
35777
35811
|
},
|
|
@@ -35780,52 +35814,52 @@ var menuButtonPropertyControls = {
|
|
|
35780
35814
|
};
|
|
35781
35815
|
|
|
35782
35816
|
// src/components/Modal/Modal.framer.ts
|
|
35783
|
-
import { ControlType as
|
|
35817
|
+
import { ControlType as ControlType14 } from "framer";
|
|
35784
35818
|
var modalFramePropertyControls = {
|
|
35785
35819
|
title: {
|
|
35786
|
-
type:
|
|
35820
|
+
type: ControlType14.String,
|
|
35787
35821
|
defaultValue: "Title"
|
|
35788
35822
|
},
|
|
35789
35823
|
content: {
|
|
35790
35824
|
title: "Content",
|
|
35791
|
-
type:
|
|
35825
|
+
type: ControlType14.ComponentInstance
|
|
35792
35826
|
},
|
|
35793
35827
|
size: {
|
|
35794
35828
|
title: "Size",
|
|
35795
|
-
type:
|
|
35829
|
+
type: ControlType14.Enum,
|
|
35796
35830
|
options: ["sm", "md", "lg"],
|
|
35797
35831
|
defaultValue: "md"
|
|
35798
35832
|
}
|
|
35799
35833
|
};
|
|
35800
35834
|
|
|
35801
35835
|
// src/components/RadioList/RadioList.framer.ts
|
|
35802
|
-
import { ControlType as
|
|
35836
|
+
import { ControlType as ControlType15 } from "framer";
|
|
35803
35837
|
var radioListPropertyControls = {
|
|
35804
35838
|
orientation: {
|
|
35805
35839
|
title: "Orientation",
|
|
35806
|
-
type:
|
|
35840
|
+
type: ControlType15.Enum,
|
|
35807
35841
|
options: ["vertical", "horizontal"],
|
|
35808
35842
|
defaultValue: "vertical"
|
|
35809
35843
|
},
|
|
35810
35844
|
defaultValue: {
|
|
35811
35845
|
title: "Checked Value",
|
|
35812
|
-
type:
|
|
35846
|
+
type: ControlType15.String,
|
|
35813
35847
|
defaultValue: "value1"
|
|
35814
35848
|
},
|
|
35815
35849
|
items: {
|
|
35816
35850
|
title: "Items",
|
|
35817
|
-
type:
|
|
35851
|
+
type: ControlType15.Array,
|
|
35818
35852
|
control: {
|
|
35819
|
-
type:
|
|
35853
|
+
type: ControlType15.Object,
|
|
35820
35854
|
controls: {
|
|
35821
35855
|
displayName: {
|
|
35822
35856
|
title: "Display Name",
|
|
35823
|
-
type:
|
|
35857
|
+
type: ControlType15.String
|
|
35824
35858
|
},
|
|
35825
|
-
value: { title: "Value", type:
|
|
35859
|
+
value: { title: "Value", type: ControlType15.String },
|
|
35826
35860
|
color: {
|
|
35827
35861
|
title: "Color",
|
|
35828
|
-
type:
|
|
35862
|
+
type: ControlType15.Enum,
|
|
35829
35863
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
35830
35864
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
35831
35865
|
}
|
|
@@ -35843,60 +35877,60 @@ var radioListPropertyControls = {
|
|
|
35843
35877
|
};
|
|
35844
35878
|
|
|
35845
35879
|
// src/components/Select/Select.framer.ts
|
|
35846
|
-
import { ControlType as
|
|
35880
|
+
import { ControlType as ControlType16 } from "framer";
|
|
35847
35881
|
var selectPropertyControls = {
|
|
35848
35882
|
onChange: {
|
|
35849
35883
|
title: "onChange",
|
|
35850
|
-
type:
|
|
35884
|
+
type: ControlType16.EventHandler
|
|
35851
35885
|
},
|
|
35852
35886
|
defaultListboxOpen: {
|
|
35853
35887
|
title: "Opened",
|
|
35854
|
-
type:
|
|
35888
|
+
type: ControlType16.Boolean,
|
|
35855
35889
|
defaultValue: false
|
|
35856
35890
|
},
|
|
35857
35891
|
defaultValue: {
|
|
35858
35892
|
title: "Selected Option",
|
|
35859
|
-
type:
|
|
35893
|
+
type: ControlType16.String
|
|
35860
35894
|
},
|
|
35861
35895
|
disabled: {
|
|
35862
35896
|
title: "Disabled",
|
|
35863
|
-
type:
|
|
35897
|
+
type: ControlType16.Boolean,
|
|
35864
35898
|
defaultValue: false
|
|
35865
35899
|
},
|
|
35866
35900
|
placeholder: {
|
|
35867
35901
|
title: "Placeholder",
|
|
35868
|
-
type:
|
|
35902
|
+
type: ControlType16.String,
|
|
35869
35903
|
defaultValue: "Choose one..."
|
|
35870
35904
|
},
|
|
35871
35905
|
color: {
|
|
35872
35906
|
title: "Color",
|
|
35873
|
-
type:
|
|
35907
|
+
type: ControlType16.Enum,
|
|
35874
35908
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
35875
35909
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
35876
35910
|
},
|
|
35877
35911
|
size: {
|
|
35878
35912
|
title: "Size",
|
|
35879
|
-
type:
|
|
35913
|
+
type: ControlType16.Enum,
|
|
35880
35914
|
options: ["sm", "md", "lg"],
|
|
35881
35915
|
defaultValue: "md"
|
|
35882
35916
|
},
|
|
35883
35917
|
variant: {
|
|
35884
35918
|
title: "Variant",
|
|
35885
|
-
type:
|
|
35919
|
+
type: ControlType16.Enum,
|
|
35886
35920
|
options: ["outlined", "plain", "solid", "soft"],
|
|
35887
35921
|
defaultValue: void 0
|
|
35888
35922
|
},
|
|
35889
35923
|
options: {
|
|
35890
35924
|
title: "Options",
|
|
35891
|
-
type:
|
|
35925
|
+
type: ControlType16.Array,
|
|
35892
35926
|
control: {
|
|
35893
|
-
type:
|
|
35927
|
+
type: ControlType16.Object,
|
|
35894
35928
|
controls: {
|
|
35895
35929
|
text: {
|
|
35896
35930
|
title: "Text",
|
|
35897
|
-
type:
|
|
35931
|
+
type: ControlType16.String
|
|
35898
35932
|
},
|
|
35899
|
-
value: { title: "Value", type:
|
|
35933
|
+
value: { title: "Value", type: ControlType16.String }
|
|
35900
35934
|
}
|
|
35901
35935
|
},
|
|
35902
35936
|
defaultValue: [
|
|
@@ -35907,101 +35941,101 @@ var selectPropertyControls = {
|
|
|
35907
35941
|
};
|
|
35908
35942
|
|
|
35909
35943
|
// src/components/Sheet/Sheet.framer.ts
|
|
35910
|
-
import { ControlType as
|
|
35944
|
+
import { ControlType as ControlType17 } from "framer";
|
|
35911
35945
|
var sheetPropertyControls = {
|
|
35912
35946
|
color: {
|
|
35913
35947
|
title: "Color",
|
|
35914
|
-
type:
|
|
35948
|
+
type: ControlType17.Enum,
|
|
35915
35949
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
35916
35950
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
35917
35951
|
},
|
|
35918
35952
|
variant: {
|
|
35919
35953
|
title: "Variant",
|
|
35920
|
-
type:
|
|
35954
|
+
type: ControlType17.Enum,
|
|
35921
35955
|
options: ["solid", "outlined", "soft", "plain"],
|
|
35922
35956
|
defaultValue: "outlined"
|
|
35923
35957
|
}
|
|
35924
35958
|
};
|
|
35925
35959
|
|
|
35926
35960
|
// src/components/Switch/Switch.framer.ts
|
|
35927
|
-
import { ControlType as
|
|
35961
|
+
import { ControlType as ControlType18 } from "framer";
|
|
35928
35962
|
var switchPropertyControls = {
|
|
35929
35963
|
onChange: {
|
|
35930
35964
|
title: "onChange",
|
|
35931
|
-
type:
|
|
35965
|
+
type: ControlType18.EventHandler
|
|
35932
35966
|
},
|
|
35933
35967
|
disabled: {
|
|
35934
35968
|
title: "Disabled",
|
|
35935
|
-
type:
|
|
35969
|
+
type: ControlType18.Boolean,
|
|
35936
35970
|
defaultValue: false
|
|
35937
35971
|
},
|
|
35938
35972
|
color: {
|
|
35939
35973
|
title: "Color",
|
|
35940
|
-
type:
|
|
35974
|
+
type: ControlType18.Enum,
|
|
35941
35975
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
35942
35976
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
35943
35977
|
},
|
|
35944
35978
|
variant: {
|
|
35945
35979
|
title: "Variant",
|
|
35946
|
-
type:
|
|
35980
|
+
type: ControlType18.Enum,
|
|
35947
35981
|
options: ["solid", "outlined", "soft", "plain"],
|
|
35948
35982
|
defaultValue: void 0
|
|
35949
35983
|
},
|
|
35950
35984
|
size: {
|
|
35951
35985
|
title: "Size",
|
|
35952
|
-
type:
|
|
35986
|
+
type: ControlType18.Enum,
|
|
35953
35987
|
options: ["sm", "md", "lg"],
|
|
35954
35988
|
defaultValue: "md"
|
|
35955
35989
|
}
|
|
35956
35990
|
};
|
|
35957
35991
|
|
|
35958
35992
|
// src/components/Tabs/Tabs.framer.ts
|
|
35959
|
-
import { ControlType as
|
|
35993
|
+
import { ControlType as ControlType19 } from "framer";
|
|
35960
35994
|
var tabsPropertyControls = {
|
|
35961
35995
|
color: {
|
|
35962
35996
|
title: "Color",
|
|
35963
|
-
type:
|
|
35997
|
+
type: ControlType19.Enum,
|
|
35964
35998
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
35965
35999
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
35966
36000
|
},
|
|
35967
36001
|
size: {
|
|
35968
36002
|
title: "Size",
|
|
35969
|
-
type:
|
|
36003
|
+
type: ControlType19.Enum,
|
|
35970
36004
|
options: ["sm", "md", "lg"],
|
|
35971
36005
|
defaultValue: "md"
|
|
35972
36006
|
},
|
|
35973
36007
|
variant: {
|
|
35974
36008
|
title: "Variant",
|
|
35975
|
-
type:
|
|
36009
|
+
type: ControlType19.Enum,
|
|
35976
36010
|
options: ["outlined", "plain", "solid", "soft"],
|
|
35977
36011
|
defaultValue: "plain"
|
|
35978
36012
|
},
|
|
35979
36013
|
orientation: {
|
|
35980
|
-
type:
|
|
36014
|
+
type: ControlType19.Enum,
|
|
35981
36015
|
options: ["horizontal", "vertical"]
|
|
35982
36016
|
},
|
|
35983
36017
|
disableUnderline: {
|
|
35984
|
-
type:
|
|
36018
|
+
type: ControlType19.Boolean,
|
|
35985
36019
|
defaultValue: false
|
|
35986
36020
|
},
|
|
35987
36021
|
disableIndicator: {
|
|
35988
|
-
type:
|
|
36022
|
+
type: ControlType19.Boolean,
|
|
35989
36023
|
defaultValue: false
|
|
35990
36024
|
},
|
|
35991
36025
|
indicatorInset: {
|
|
35992
|
-
type:
|
|
36026
|
+
type: ControlType19.Boolean,
|
|
35993
36027
|
defaultValue: false
|
|
35994
36028
|
},
|
|
35995
36029
|
tabs: {
|
|
35996
|
-
type:
|
|
36030
|
+
type: ControlType19.Array,
|
|
35997
36031
|
control: {
|
|
35998
|
-
type:
|
|
36032
|
+
type: ControlType19.Object,
|
|
35999
36033
|
controls: {
|
|
36000
36034
|
title: {
|
|
36001
|
-
type:
|
|
36035
|
+
type: ControlType19.String
|
|
36002
36036
|
},
|
|
36003
36037
|
disabled: {
|
|
36004
|
-
type:
|
|
36038
|
+
type: ControlType19.Boolean,
|
|
36005
36039
|
defaultValue: false
|
|
36006
36040
|
}
|
|
36007
36041
|
}
|
|
@@ -36009,15 +36043,15 @@ var tabsPropertyControls = {
|
|
|
36009
36043
|
},
|
|
36010
36044
|
contents: {
|
|
36011
36045
|
title: "Contents",
|
|
36012
|
-
type:
|
|
36046
|
+
type: ControlType19.Array,
|
|
36013
36047
|
control: {
|
|
36014
|
-
type:
|
|
36048
|
+
type: ControlType19.ComponentInstance
|
|
36015
36049
|
}
|
|
36016
36050
|
}
|
|
36017
36051
|
};
|
|
36018
36052
|
|
|
36019
36053
|
// src/components/Typography/Typography.framer.ts
|
|
36020
|
-
import { ControlType as
|
|
36054
|
+
import { ControlType as ControlType20 } from "framer";
|
|
36021
36055
|
var typographyPropertyControls = {
|
|
36022
36056
|
// color: {
|
|
36023
36057
|
// title: "Color",
|
|
@@ -36027,7 +36061,7 @@ var typographyPropertyControls = {
|
|
|
36027
36061
|
// },
|
|
36028
36062
|
level: {
|
|
36029
36063
|
title: "Level",
|
|
36030
|
-
type:
|
|
36064
|
+
type: ControlType20.Enum,
|
|
36031
36065
|
options: [
|
|
36032
36066
|
"h1",
|
|
36033
36067
|
"h2",
|
|
@@ -36046,23 +36080,23 @@ var typographyPropertyControls = {
|
|
|
36046
36080
|
},
|
|
36047
36081
|
textColor: {
|
|
36048
36082
|
title: "Text Color",
|
|
36049
|
-
type:
|
|
36083
|
+
type: ControlType20.Enum,
|
|
36050
36084
|
options: ["text.tertiary", "inherit"],
|
|
36051
36085
|
defaultValue: "inherit"
|
|
36052
36086
|
},
|
|
36053
36087
|
text: {
|
|
36054
36088
|
title: "Text",
|
|
36055
|
-
type:
|
|
36089
|
+
type: ControlType20.String,
|
|
36056
36090
|
defaultValue: "Typography",
|
|
36057
36091
|
displayTextArea: true
|
|
36058
36092
|
},
|
|
36059
36093
|
endDecorator: {
|
|
36060
36094
|
title: "End Decorator",
|
|
36061
|
-
type:
|
|
36095
|
+
type: ControlType20.ComponentInstance
|
|
36062
36096
|
},
|
|
36063
36097
|
startDecorator: {
|
|
36064
36098
|
title: "Start Decorator",
|
|
36065
|
-
type:
|
|
36099
|
+
type: ControlType20.ComponentInstance
|
|
36066
36100
|
}
|
|
36067
36101
|
};
|
|
36068
36102
|
export {
|
|
@@ -36155,6 +36189,7 @@ export {
|
|
|
36155
36189
|
autocompleteClasses_default as autocompleteClasses,
|
|
36156
36190
|
autocompleteListboxClasses_default as autocompleteListboxClasses,
|
|
36157
36191
|
autocompleteOptionClasses_default as autocompleteOptionClasses,
|
|
36192
|
+
autocompletePropertyControls,
|
|
36158
36193
|
avatarClasses_default as avatarClasses,
|
|
36159
36194
|
avatarGroupClasses_default as avatarGroupClasses,
|
|
36160
36195
|
avatarPropertyControls,
|