@ceed/ads 0.0.47 → 0.0.48
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 +57 -6
- package/package.json +1 -1
package/framer/index.js
CHANGED
|
@@ -42095,8 +42095,58 @@ var tabsPropertyControls = {
|
|
|
42095
42095
|
}
|
|
42096
42096
|
};
|
|
42097
42097
|
|
|
42098
|
-
// src/components/
|
|
42098
|
+
// src/components/Textarea/Textarea.framer.ts
|
|
42099
42099
|
import { ControlType as ControlType24 } from "framer";
|
|
42100
|
+
var textareaPropertyControls = {
|
|
42101
|
+
onChange: {
|
|
42102
|
+
type: ControlType24.EventHandler
|
|
42103
|
+
},
|
|
42104
|
+
disabled: {
|
|
42105
|
+
title: "Disabled",
|
|
42106
|
+
type: ControlType24.Boolean,
|
|
42107
|
+
defaultValue: false
|
|
42108
|
+
},
|
|
42109
|
+
color: {
|
|
42110
|
+
title: "Color",
|
|
42111
|
+
type: ControlType24.Enum,
|
|
42112
|
+
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
42113
|
+
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"],
|
|
42114
|
+
defaultValue: "neutral"
|
|
42115
|
+
},
|
|
42116
|
+
variant: {
|
|
42117
|
+
title: "Variant",
|
|
42118
|
+
type: ControlType24.Enum,
|
|
42119
|
+
options: ["solid", "outlined", "soft", "plain"],
|
|
42120
|
+
defaultValue: "outlined"
|
|
42121
|
+
},
|
|
42122
|
+
defaultValue: {
|
|
42123
|
+
title: "Value",
|
|
42124
|
+
type: ControlType24.String,
|
|
42125
|
+
defaultValue: ""
|
|
42126
|
+
},
|
|
42127
|
+
placeholder: {
|
|
42128
|
+
title: "Placeholder",
|
|
42129
|
+
type: ControlType24.String,
|
|
42130
|
+
defaultValue: "Type in here..."
|
|
42131
|
+
},
|
|
42132
|
+
endDecorator: {
|
|
42133
|
+
title: "End Decorator",
|
|
42134
|
+
type: ControlType24.ComponentInstance
|
|
42135
|
+
},
|
|
42136
|
+
startDecorator: {
|
|
42137
|
+
title: "Start Decorator",
|
|
42138
|
+
type: ControlType24.ComponentInstance
|
|
42139
|
+
},
|
|
42140
|
+
size: {
|
|
42141
|
+
title: "Size",
|
|
42142
|
+
type: ControlType24.Enum,
|
|
42143
|
+
options: ["sm", "md", "lg"],
|
|
42144
|
+
defaultValue: "md"
|
|
42145
|
+
}
|
|
42146
|
+
};
|
|
42147
|
+
|
|
42148
|
+
// src/components/Typography/Typography.framer.ts
|
|
42149
|
+
import { ControlType as ControlType25 } from "framer";
|
|
42100
42150
|
var typographyPropertyControls = {
|
|
42101
42151
|
// color: {
|
|
42102
42152
|
// title: "Color",
|
|
@@ -42106,7 +42156,7 @@ var typographyPropertyControls = {
|
|
|
42106
42156
|
// },
|
|
42107
42157
|
level: {
|
|
42108
42158
|
title: "Level",
|
|
42109
|
-
type:
|
|
42159
|
+
type: ControlType25.Enum,
|
|
42110
42160
|
options: [
|
|
42111
42161
|
"h1",
|
|
42112
42162
|
"h2",
|
|
@@ -42125,23 +42175,23 @@ var typographyPropertyControls = {
|
|
|
42125
42175
|
},
|
|
42126
42176
|
textColor: {
|
|
42127
42177
|
title: "Text Color",
|
|
42128
|
-
type:
|
|
42178
|
+
type: ControlType25.Enum,
|
|
42129
42179
|
options: ["text.tertiary", "inherit"],
|
|
42130
42180
|
defaultValue: "inherit"
|
|
42131
42181
|
},
|
|
42132
42182
|
text: {
|
|
42133
42183
|
title: "Text",
|
|
42134
|
-
type:
|
|
42184
|
+
type: ControlType25.String,
|
|
42135
42185
|
defaultValue: "Typography",
|
|
42136
42186
|
displayTextArea: true
|
|
42137
42187
|
},
|
|
42138
42188
|
endDecorator: {
|
|
42139
42189
|
title: "End Decorator",
|
|
42140
|
-
type:
|
|
42190
|
+
type: ControlType25.ComponentInstance
|
|
42141
42191
|
},
|
|
42142
42192
|
startDecorator: {
|
|
42143
42193
|
title: "Start Decorator",
|
|
42144
|
-
type:
|
|
42194
|
+
type: ControlType25.ComponentInstance
|
|
42145
42195
|
}
|
|
42146
42196
|
};
|
|
42147
42197
|
export {
|
|
@@ -42317,6 +42367,7 @@ export {
|
|
|
42317
42367
|
tabsClasses_default as tabsClasses,
|
|
42318
42368
|
tabsPropertyControls,
|
|
42319
42369
|
textareaClasses_default as textareaClasses,
|
|
42370
|
+
textareaPropertyControls,
|
|
42320
42371
|
tooltipClasses_default as tooltipClasses,
|
|
42321
42372
|
typographyClasses_default as typographyClasses,
|
|
42322
42373
|
typographyPropertyControls
|