@ceed/ads 0.0.58 → 0.0.60
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/components/DataTable/DataTable.d.ts +8 -1
- package/dist/index.js +6 -25
- package/framer/index.js +216 -210
- package/package.json +1 -1
|
@@ -21,7 +21,13 @@ type DataTableProps<T extends Record<string, unknown>> = {
|
|
|
21
21
|
* 체크박스가 있는 경우, 체크박스를 클릭했을 때 선택된 row의 index를 지정한다.
|
|
22
22
|
*/
|
|
23
23
|
selectionModel?: string[];
|
|
24
|
-
onSelectionModelChange?: (newSelectionModel: string[]
|
|
24
|
+
onSelectionModelChange?: (newSelectionModel: string[],
|
|
25
|
+
/**
|
|
26
|
+
* Total Select를 클릭한 경우에만 값이 true/false로 들어온다.
|
|
27
|
+
* MUI에는 없는 인터페이스지만 Total Select 기능이 추가되었기 때문에 추가해야했다.
|
|
28
|
+
*/
|
|
29
|
+
isTotalSelected?: boolean) => void;
|
|
30
|
+
paginationMode?: "client" | "server";
|
|
25
31
|
paginationModel?: {
|
|
26
32
|
page: number;
|
|
27
33
|
pageSize: number;
|
|
@@ -33,6 +39,7 @@ type DataTableProps<T extends Record<string, unknown>> = {
|
|
|
33
39
|
/**
|
|
34
40
|
* Rows의 총 갯수를 직접 지정 할 수 있다.
|
|
35
41
|
* 기본적으로는 rows.length를 사용하지만, 이 값을 지정하면 rows.length를 사용하지 않는다.
|
|
42
|
+
* server mode를 사용할 때 유용하다.
|
|
36
43
|
*/
|
|
37
44
|
rowCount?: number;
|
|
38
45
|
slots?: {
|
package/dist/index.js
CHANGED
|
@@ -1231,11 +1231,11 @@ function useDataTableRenderer({
|
|
|
1231
1231
|
rows,
|
|
1232
1232
|
columns,
|
|
1233
1233
|
rowCount: totalRowsProp,
|
|
1234
|
+
paginationMode,
|
|
1234
1235
|
paginationModel,
|
|
1235
1236
|
onPaginationModelChange,
|
|
1236
1237
|
selectionModel = [],
|
|
1237
|
-
onSelectionModelChange
|
|
1238
|
-
stickyHeader
|
|
1238
|
+
onSelectionModelChange
|
|
1239
1239
|
}) {
|
|
1240
1240
|
const [page, setPage] = useState3(paginationModel?.page || 1);
|
|
1241
1241
|
const pageSize = paginationModel?.pageSize || 20;
|
|
@@ -1244,8 +1244,8 @@ function useDataTableRenderer({
|
|
|
1244
1244
|
[selectionModel]
|
|
1245
1245
|
);
|
|
1246
1246
|
const dataInPage = useMemo3(
|
|
1247
|
-
() => rows.slice((page - 1) * pageSize, (page - 1) * pageSize + pageSize),
|
|
1248
|
-
[rows, page, pageSize]
|
|
1247
|
+
() => paginationMode === "server" ? rows : rows.slice((page - 1) * pageSize, (page - 1) * pageSize + pageSize),
|
|
1248
|
+
[rows, page, pageSize, paginationMode]
|
|
1249
1249
|
);
|
|
1250
1250
|
const isAllSelected = useMemo3(
|
|
1251
1251
|
() => dataInPage.length > 0 && dataInPage.every(
|
|
@@ -1282,26 +1282,6 @@ function useDataTableRenderer({
|
|
|
1282
1282
|
pageSize,
|
|
1283
1283
|
onPaginationModelChange: handlePageChange,
|
|
1284
1284
|
HeadCell,
|
|
1285
|
-
// HeadCell: useCallback(
|
|
1286
|
-
// (column: Column<any>) => {
|
|
1287
|
-
// const ref = useRef<HTMLTableCellElement>(null);
|
|
1288
|
-
// const style = {
|
|
1289
|
-
// width: column.width,
|
|
1290
|
-
// minWidth: column.minWidth ?? "50px",
|
|
1291
|
-
// maxWidth: column.maxWidth,
|
|
1292
|
-
// textAlign: column.type === "number" ? "end" : "start",
|
|
1293
|
-
// position: stickyHeader ? undefined : "relative",
|
|
1294
|
-
// } as React.CSSProperties;
|
|
1295
|
-
// const resizer = column.resizable ?? true ? Resizer(ref) : null;
|
|
1296
|
-
// return (
|
|
1297
|
-
// <th ref={ref} key={column.field as string} style={style}>
|
|
1298
|
-
// {column.headerName ?? (column.field as string)}
|
|
1299
|
-
// {resizer}
|
|
1300
|
-
// </th>
|
|
1301
|
-
// );
|
|
1302
|
-
// },
|
|
1303
|
-
// [stickyHeader, columns]
|
|
1304
|
-
// ),
|
|
1305
1285
|
dataInPage,
|
|
1306
1286
|
isAllSelected,
|
|
1307
1287
|
// all rows are selected on this page
|
|
@@ -1338,7 +1318,8 @@ function useDataTableRenderer({
|
|
|
1338
1318
|
),
|
|
1339
1319
|
onTotalSelect: useCallback3(() => {
|
|
1340
1320
|
onSelectionModelChange?.(
|
|
1341
|
-
isTotalSelected ? [] : rows.map((_, i) => `${i}`)
|
|
1321
|
+
isTotalSelected ? [] : rows.map((_, i) => `${i}`),
|
|
1322
|
+
isTotalSelected
|
|
1342
1323
|
);
|
|
1343
1324
|
}, [isTotalSelected, rows, onSelectionModelChange])
|
|
1344
1325
|
};
|
package/framer/index.js
CHANGED
|
@@ -38104,11 +38104,11 @@ function useDataTableRenderer({
|
|
|
38104
38104
|
rows,
|
|
38105
38105
|
columns,
|
|
38106
38106
|
rowCount: totalRowsProp,
|
|
38107
|
+
paginationMode,
|
|
38107
38108
|
paginationModel,
|
|
38108
38109
|
onPaginationModelChange,
|
|
38109
38110
|
selectionModel = [],
|
|
38110
|
-
onSelectionModelChange
|
|
38111
|
-
stickyHeader
|
|
38111
|
+
onSelectionModelChange
|
|
38112
38112
|
}) {
|
|
38113
38113
|
const [page, setPage] = useState24((paginationModel == null ? void 0 : paginationModel.page) || 1);
|
|
38114
38114
|
const pageSize2 = (paginationModel == null ? void 0 : paginationModel.pageSize) || 20;
|
|
@@ -38117,8 +38117,8 @@ function useDataTableRenderer({
|
|
|
38117
38117
|
[selectionModel]
|
|
38118
38118
|
);
|
|
38119
38119
|
const dataInPage = useMemo35(
|
|
38120
|
-
() => rows.slice((page - 1) * pageSize2, (page - 1) * pageSize2 + pageSize2),
|
|
38121
|
-
[rows, page, pageSize2]
|
|
38120
|
+
() => paginationMode === "server" ? rows : rows.slice((page - 1) * pageSize2, (page - 1) * pageSize2 + pageSize2),
|
|
38121
|
+
[rows, page, pageSize2, paginationMode]
|
|
38122
38122
|
);
|
|
38123
38123
|
const isAllSelected = useMemo35(
|
|
38124
38124
|
() => dataInPage.length > 0 && dataInPage.every(
|
|
@@ -38155,26 +38155,6 @@ function useDataTableRenderer({
|
|
|
38155
38155
|
pageSize: pageSize2,
|
|
38156
38156
|
onPaginationModelChange: handlePageChange,
|
|
38157
38157
|
HeadCell,
|
|
38158
|
-
// HeadCell: useCallback(
|
|
38159
|
-
// (column: Column<any>) => {
|
|
38160
|
-
// const ref = useRef<HTMLTableCellElement>(null);
|
|
38161
|
-
// const style = {
|
|
38162
|
-
// width: column.width,
|
|
38163
|
-
// minWidth: column.minWidth ?? "50px",
|
|
38164
|
-
// maxWidth: column.maxWidth,
|
|
38165
|
-
// textAlign: column.type === "number" ? "end" : "start",
|
|
38166
|
-
// position: stickyHeader ? undefined : "relative",
|
|
38167
|
-
// } as React.CSSProperties;
|
|
38168
|
-
// const resizer = column.resizable ?? true ? Resizer(ref) : null;
|
|
38169
|
-
// return (
|
|
38170
|
-
// <th ref={ref} key={column.field as string} style={style}>
|
|
38171
|
-
// {column.headerName ?? (column.field as string)}
|
|
38172
|
-
// {resizer}
|
|
38173
|
-
// </th>
|
|
38174
|
-
// );
|
|
38175
|
-
// },
|
|
38176
|
-
// [stickyHeader, columns]
|
|
38177
|
-
// ),
|
|
38178
38158
|
dataInPage,
|
|
38179
38159
|
isAllSelected,
|
|
38180
38160
|
// all rows are selected on this page
|
|
@@ -38211,7 +38191,8 @@ function useDataTableRenderer({
|
|
|
38211
38191
|
),
|
|
38212
38192
|
onTotalSelect: useCallback26(() => {
|
|
38213
38193
|
onSelectionModelChange == null ? void 0 : onSelectionModelChange(
|
|
38214
|
-
isTotalSelected ? [] : rows.map((_4, i) => `${i}`)
|
|
38194
|
+
isTotalSelected ? [] : rows.map((_4, i) => `${i}`),
|
|
38195
|
+
isTotalSelected
|
|
38215
38196
|
);
|
|
38216
38197
|
}, [isTotalSelected, rows, onSelectionModelChange])
|
|
38217
38198
|
};
|
|
@@ -43054,8 +43035,32 @@ var badgePropertyControls = {
|
|
|
43054
43035
|
}
|
|
43055
43036
|
};
|
|
43056
43037
|
|
|
43057
|
-
// src/components/
|
|
43038
|
+
// src/components/Breadcrumbs/Breadcrumbs.framer.ts
|
|
43058
43039
|
import { ControlType as ControlType5 } from "framer";
|
|
43040
|
+
var breadcrumbsPropertyControls = {
|
|
43041
|
+
items: {
|
|
43042
|
+
title: "Items",
|
|
43043
|
+
type: ControlType5.Array,
|
|
43044
|
+
control: {
|
|
43045
|
+
// NOTE: 일단 framer에서는 string만 받는다
|
|
43046
|
+
type: ControlType5.String
|
|
43047
|
+
},
|
|
43048
|
+
defaultValue: []
|
|
43049
|
+
},
|
|
43050
|
+
separator: {
|
|
43051
|
+
title: "Separator",
|
|
43052
|
+
type: ControlType5.ComponentInstance
|
|
43053
|
+
},
|
|
43054
|
+
size: {
|
|
43055
|
+
title: "Size",
|
|
43056
|
+
type: ControlType5.Enum,
|
|
43057
|
+
options: ["sm", "md", "lg"],
|
|
43058
|
+
defaultValue: "md"
|
|
43059
|
+
}
|
|
43060
|
+
};
|
|
43061
|
+
|
|
43062
|
+
// src/components/Button/Button.framer.ts
|
|
43063
|
+
import { ControlType as ControlType6 } from "framer";
|
|
43059
43064
|
var buttonPropertyControls = {
|
|
43060
43065
|
// NOT working
|
|
43061
43066
|
// children: {
|
|
@@ -43063,109 +43068,109 @@ var buttonPropertyControls = {
|
|
|
43063
43068
|
// },
|
|
43064
43069
|
text: {
|
|
43065
43070
|
title: "Text",
|
|
43066
|
-
type:
|
|
43071
|
+
type: ControlType6.String,
|
|
43067
43072
|
defaultValue: "Press me"
|
|
43068
43073
|
},
|
|
43069
43074
|
onTap: {
|
|
43070
|
-
type:
|
|
43075
|
+
type: ControlType6.EventHandler
|
|
43071
43076
|
},
|
|
43072
43077
|
disabled: {
|
|
43073
43078
|
title: "Disabled",
|
|
43074
|
-
type:
|
|
43079
|
+
type: ControlType6.Boolean,
|
|
43075
43080
|
defaultValue: false
|
|
43076
43081
|
},
|
|
43077
43082
|
color: {
|
|
43078
43083
|
title: "Color",
|
|
43079
|
-
type:
|
|
43084
|
+
type: ControlType6.Enum,
|
|
43080
43085
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
43081
43086
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
43082
43087
|
},
|
|
43083
43088
|
variant: {
|
|
43084
43089
|
title: "Variant",
|
|
43085
|
-
type:
|
|
43090
|
+
type: ControlType6.Enum,
|
|
43086
43091
|
options: ["solid", "outlined", "soft", "plain"]
|
|
43087
43092
|
},
|
|
43088
43093
|
loading: {
|
|
43089
43094
|
title: "Loading",
|
|
43090
|
-
type:
|
|
43095
|
+
type: ControlType6.Boolean,
|
|
43091
43096
|
defaultValue: false
|
|
43092
43097
|
},
|
|
43093
43098
|
endDecorator: {
|
|
43094
43099
|
title: "End Decorator",
|
|
43095
|
-
type:
|
|
43100
|
+
type: ControlType6.ComponentInstance
|
|
43096
43101
|
},
|
|
43097
43102
|
startDecorator: {
|
|
43098
43103
|
title: "Start Decorator",
|
|
43099
|
-
type:
|
|
43104
|
+
type: ControlType6.ComponentInstance
|
|
43100
43105
|
},
|
|
43101
43106
|
size: {
|
|
43102
43107
|
title: "Size",
|
|
43103
|
-
type:
|
|
43108
|
+
type: ControlType6.Enum,
|
|
43104
43109
|
options: ["sm", "md", "lg"],
|
|
43105
43110
|
defaultValue: "md"
|
|
43106
43111
|
},
|
|
43107
43112
|
// for withModal
|
|
43108
43113
|
modalContents: {
|
|
43109
43114
|
title: "Modal Contents",
|
|
43110
|
-
type:
|
|
43115
|
+
type: ControlType6.Array,
|
|
43111
43116
|
control: {
|
|
43112
|
-
type:
|
|
43117
|
+
type: ControlType6.ComponentInstance
|
|
43113
43118
|
}
|
|
43114
43119
|
}
|
|
43115
43120
|
};
|
|
43116
43121
|
|
|
43117
43122
|
// src/components/Checkbox/Checkbox.framer.ts
|
|
43118
|
-
import { ControlType as
|
|
43123
|
+
import { ControlType as ControlType7 } from "framer";
|
|
43119
43124
|
var checkboxPropertyControls = {
|
|
43120
43125
|
onChange: {
|
|
43121
43126
|
title: "onChange",
|
|
43122
|
-
type:
|
|
43127
|
+
type: ControlType7.EventHandler
|
|
43123
43128
|
},
|
|
43124
43129
|
defaultChecked: {
|
|
43125
43130
|
title: "Checked",
|
|
43126
|
-
type:
|
|
43131
|
+
type: ControlType7.Boolean,
|
|
43127
43132
|
defaultValue: false
|
|
43128
43133
|
},
|
|
43129
43134
|
disabled: {
|
|
43130
43135
|
title: "Disabled",
|
|
43131
|
-
type:
|
|
43136
|
+
type: ControlType7.Boolean,
|
|
43132
43137
|
defaultValue: false
|
|
43133
43138
|
},
|
|
43134
43139
|
label: {
|
|
43135
43140
|
title: "Label",
|
|
43136
|
-
type:
|
|
43141
|
+
type: ControlType7.String,
|
|
43137
43142
|
defaultValue: "Label"
|
|
43138
43143
|
},
|
|
43139
43144
|
color: {
|
|
43140
43145
|
title: "Color",
|
|
43141
|
-
type:
|
|
43146
|
+
type: ControlType7.Enum,
|
|
43142
43147
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
43143
43148
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
43144
43149
|
},
|
|
43145
43150
|
size: {
|
|
43146
43151
|
title: "Size",
|
|
43147
|
-
type:
|
|
43152
|
+
type: ControlType7.Enum,
|
|
43148
43153
|
options: ["sm", "md", "lg"],
|
|
43149
43154
|
defaultValue: "md"
|
|
43150
43155
|
},
|
|
43151
43156
|
variant: {
|
|
43152
43157
|
title: "Variant",
|
|
43153
|
-
type:
|
|
43158
|
+
type: ControlType7.Enum,
|
|
43154
43159
|
options: ["outlined", "plain", "solid", "soft"],
|
|
43155
43160
|
defaultValue: void 0
|
|
43156
43161
|
}
|
|
43157
43162
|
};
|
|
43158
43163
|
|
|
43159
43164
|
// src/components/Calendar/Calendar.framer.ts
|
|
43160
|
-
import { ControlType as
|
|
43165
|
+
import { ControlType as ControlType8 } from "framer";
|
|
43161
43166
|
var calendarPropertyControls = {
|
|
43162
43167
|
onChange: {
|
|
43163
43168
|
title: "onChange",
|
|
43164
|
-
type:
|
|
43169
|
+
type: ControlType8.EventHandler
|
|
43165
43170
|
},
|
|
43166
43171
|
disabled: {
|
|
43167
43172
|
title: "Disabled",
|
|
43168
|
-
type:
|
|
43173
|
+
type: ControlType8.Boolean,
|
|
43169
43174
|
defaultValue: false
|
|
43170
43175
|
}
|
|
43171
43176
|
// color: {
|
|
@@ -43189,38 +43194,38 @@ var calendarPropertyControls = {
|
|
|
43189
43194
|
};
|
|
43190
43195
|
|
|
43191
43196
|
// src/components/Chip/Chip.framer.ts
|
|
43192
|
-
import { ControlType as
|
|
43197
|
+
import { ControlType as ControlType9 } from "framer";
|
|
43193
43198
|
var chipPropertyControls = {
|
|
43194
43199
|
text: {
|
|
43195
43200
|
title: "Text",
|
|
43196
|
-
type:
|
|
43201
|
+
type: ControlType9.String,
|
|
43197
43202
|
defaultValue: "Chip"
|
|
43198
43203
|
},
|
|
43199
43204
|
color: {
|
|
43200
43205
|
title: "Color",
|
|
43201
|
-
type:
|
|
43206
|
+
type: ControlType9.Enum,
|
|
43202
43207
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
43203
43208
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
43204
43209
|
},
|
|
43205
43210
|
variant: {
|
|
43206
43211
|
title: "Variant",
|
|
43207
|
-
type:
|
|
43212
|
+
type: ControlType9.Enum,
|
|
43208
43213
|
options: ["solid", "outlined", "soft", "plain"]
|
|
43209
43214
|
},
|
|
43210
43215
|
size: {
|
|
43211
43216
|
title: "Size",
|
|
43212
|
-
type:
|
|
43217
|
+
type: ControlType9.Enum,
|
|
43213
43218
|
options: ["sm", "md", "lg"],
|
|
43214
43219
|
defaultValue: "md"
|
|
43215
43220
|
}
|
|
43216
43221
|
};
|
|
43217
43222
|
|
|
43218
43223
|
// src/components/DataTable/DataTable.framer.ts
|
|
43219
|
-
import { ControlType as
|
|
43224
|
+
import { ControlType as ControlType10 } from "framer";
|
|
43220
43225
|
var dataTablePropertyControls = {
|
|
43221
43226
|
csvUrl: {
|
|
43222
43227
|
title: "CSV Data",
|
|
43223
|
-
type:
|
|
43228
|
+
type: ControlType10.File,
|
|
43224
43229
|
allowedFileTypes: ["csv"]
|
|
43225
43230
|
// NOT WORKING
|
|
43226
43231
|
// defaultValue:
|
|
@@ -43228,43 +43233,43 @@ var dataTablePropertyControls = {
|
|
|
43228
43233
|
},
|
|
43229
43234
|
checkboxSelection: {
|
|
43230
43235
|
title: "Show Checkbox",
|
|
43231
|
-
type:
|
|
43236
|
+
type: ControlType10.Boolean,
|
|
43232
43237
|
defaultValue: true
|
|
43233
43238
|
},
|
|
43234
43239
|
noWrap: {
|
|
43235
|
-
type:
|
|
43240
|
+
type: ControlType10.Boolean,
|
|
43236
43241
|
defaultValue: false
|
|
43237
43242
|
},
|
|
43238
43243
|
hoverRow: {
|
|
43239
|
-
type:
|
|
43244
|
+
type: ControlType10.Boolean,
|
|
43240
43245
|
defaultValue: true
|
|
43241
43246
|
},
|
|
43242
43247
|
stripe: {
|
|
43243
|
-
type:
|
|
43248
|
+
type: ControlType10.Enum,
|
|
43244
43249
|
options: [void 0, "odd", "even"],
|
|
43245
43250
|
optionTitles: ["None", "Odd", "Even"],
|
|
43246
43251
|
defaultValue: void 0
|
|
43247
43252
|
},
|
|
43248
43253
|
columns: {
|
|
43249
|
-
type:
|
|
43254
|
+
type: ControlType10.Array,
|
|
43250
43255
|
description: "Column\uC758 \uC0C1\uC138 \uC124\uC815\uC774 \uD544\uC694\uD55C \uACBD\uC6B0 \uC0AC\uC6A9",
|
|
43251
43256
|
control: {
|
|
43252
|
-
type:
|
|
43257
|
+
type: ControlType10.Object,
|
|
43253
43258
|
controls: {
|
|
43254
43259
|
field: {
|
|
43255
|
-
type:
|
|
43260
|
+
type: ControlType10.String,
|
|
43256
43261
|
description: "Column Name. CSV\uC5D0 \uC788\uB294 \uAC12\uC744 \uADF8\uB300\uB85C \uB123\uC5B4\uC57C \uD55C\uB2E4."
|
|
43257
43262
|
},
|
|
43258
43263
|
width: {
|
|
43259
|
-
type:
|
|
43264
|
+
type: ControlType10.String
|
|
43260
43265
|
},
|
|
43261
43266
|
type: {
|
|
43262
|
-
type:
|
|
43267
|
+
type: ControlType10.Enum,
|
|
43263
43268
|
defaultValue: "string",
|
|
43264
43269
|
options: ["string", "number"]
|
|
43265
43270
|
},
|
|
43266
43271
|
resizable: {
|
|
43267
|
-
type:
|
|
43272
|
+
type: ControlType10.Boolean,
|
|
43268
43273
|
defaultValue: true
|
|
43269
43274
|
}
|
|
43270
43275
|
}
|
|
@@ -43276,288 +43281,288 @@ var dataTablePropertyControls = {
|
|
|
43276
43281
|
// defaultValue: 20,
|
|
43277
43282
|
// },
|
|
43278
43283
|
stickyHeader: {
|
|
43279
|
-
type:
|
|
43284
|
+
type: ControlType10.Boolean,
|
|
43280
43285
|
defaultValue: false
|
|
43281
43286
|
},
|
|
43282
43287
|
stickyFooter: {
|
|
43283
|
-
type:
|
|
43288
|
+
type: ControlType10.Boolean,
|
|
43284
43289
|
defaultValue: false
|
|
43285
43290
|
},
|
|
43286
43291
|
onPaginationModelChange: {
|
|
43287
|
-
type:
|
|
43292
|
+
type: ControlType10.EventHandler
|
|
43288
43293
|
},
|
|
43289
43294
|
onSelectionModelChange: {
|
|
43290
|
-
type:
|
|
43295
|
+
type: ControlType10.EventHandler
|
|
43291
43296
|
},
|
|
43292
43297
|
toolbar: {
|
|
43293
|
-
type:
|
|
43298
|
+
type: ControlType10.ComponentInstance
|
|
43294
43299
|
}
|
|
43295
43300
|
};
|
|
43296
43301
|
|
|
43297
43302
|
// src/components/DatePicker/DatePicker.framer.ts
|
|
43298
|
-
import { ControlType as
|
|
43303
|
+
import { ControlType as ControlType11 } from "framer";
|
|
43299
43304
|
var datePickerPropertyControls = {
|
|
43300
43305
|
onChange: {
|
|
43301
43306
|
title: "onChange",
|
|
43302
|
-
type:
|
|
43307
|
+
type: ControlType11.EventHandler
|
|
43303
43308
|
},
|
|
43304
43309
|
disabled: {
|
|
43305
43310
|
title: "Disabled",
|
|
43306
|
-
type:
|
|
43311
|
+
type: ControlType11.Boolean,
|
|
43307
43312
|
defaultValue: false
|
|
43308
43313
|
},
|
|
43309
43314
|
value: {
|
|
43310
43315
|
title: "Value",
|
|
43311
|
-
type:
|
|
43316
|
+
type: ControlType11.String,
|
|
43312
43317
|
defaultValue: "2024/04/03"
|
|
43313
43318
|
},
|
|
43314
43319
|
label: {
|
|
43315
43320
|
title: "Label",
|
|
43316
|
-
type:
|
|
43321
|
+
type: ControlType11.String,
|
|
43317
43322
|
defaultValue: ""
|
|
43318
43323
|
},
|
|
43319
43324
|
error: {
|
|
43320
43325
|
title: "Error",
|
|
43321
|
-
type:
|
|
43326
|
+
type: ControlType11.Boolean,
|
|
43322
43327
|
defaultValue: false
|
|
43323
43328
|
},
|
|
43324
43329
|
helperText: {
|
|
43325
43330
|
title: "Helper Text",
|
|
43326
|
-
type:
|
|
43331
|
+
type: ControlType11.String,
|
|
43327
43332
|
defaultValue: ""
|
|
43328
43333
|
},
|
|
43329
43334
|
minDate: {
|
|
43330
43335
|
title: "Minimum Date",
|
|
43331
|
-
type:
|
|
43336
|
+
type: ControlType11.Date
|
|
43332
43337
|
},
|
|
43333
43338
|
maxDate: {
|
|
43334
43339
|
title: "Maximum Date",
|
|
43335
|
-
type:
|
|
43340
|
+
type: ControlType11.Date
|
|
43336
43341
|
},
|
|
43337
43342
|
disableFuture: {
|
|
43338
43343
|
title: "Disable Future",
|
|
43339
|
-
type:
|
|
43344
|
+
type: ControlType11.Boolean,
|
|
43340
43345
|
defaultValue: false
|
|
43341
43346
|
},
|
|
43342
43347
|
disablePast: {
|
|
43343
43348
|
title: "Disable Past",
|
|
43344
|
-
type:
|
|
43349
|
+
type: ControlType11.Boolean,
|
|
43345
43350
|
defaultValue: false
|
|
43346
43351
|
}
|
|
43347
43352
|
};
|
|
43348
43353
|
|
|
43349
43354
|
// src/components/DateRangePicker/DateRangePicker.framer.ts
|
|
43350
|
-
import { ControlType as
|
|
43355
|
+
import { ControlType as ControlType12 } from "framer";
|
|
43351
43356
|
var dateRangePickerPropertyControls = {
|
|
43352
43357
|
onChange: {
|
|
43353
43358
|
title: "onChange",
|
|
43354
|
-
type:
|
|
43359
|
+
type: ControlType12.EventHandler
|
|
43355
43360
|
},
|
|
43356
43361
|
disabled: {
|
|
43357
43362
|
title: "Disabled",
|
|
43358
|
-
type:
|
|
43363
|
+
type: ControlType12.Boolean,
|
|
43359
43364
|
defaultValue: false
|
|
43360
43365
|
},
|
|
43361
43366
|
value: {
|
|
43362
43367
|
title: "Value",
|
|
43363
|
-
type:
|
|
43368
|
+
type: ControlType12.String,
|
|
43364
43369
|
defaultValue: "2024/04/03 - 2024/04/20"
|
|
43365
43370
|
},
|
|
43366
43371
|
label: {
|
|
43367
43372
|
title: "Label",
|
|
43368
|
-
type:
|
|
43373
|
+
type: ControlType12.String,
|
|
43369
43374
|
defaultValue: ""
|
|
43370
43375
|
},
|
|
43371
43376
|
error: {
|
|
43372
43377
|
title: "Error",
|
|
43373
|
-
type:
|
|
43378
|
+
type: ControlType12.Boolean,
|
|
43374
43379
|
defaultValue: false
|
|
43375
43380
|
},
|
|
43376
43381
|
helperText: {
|
|
43377
43382
|
title: "Helper Text",
|
|
43378
|
-
type:
|
|
43383
|
+
type: ControlType12.String,
|
|
43379
43384
|
defaultValue: ""
|
|
43380
43385
|
},
|
|
43381
43386
|
minDate: {
|
|
43382
43387
|
title: "Minimum Date",
|
|
43383
|
-
type:
|
|
43388
|
+
type: ControlType12.Date
|
|
43384
43389
|
},
|
|
43385
43390
|
maxDate: {
|
|
43386
43391
|
title: "Maximum Date",
|
|
43387
|
-
type:
|
|
43392
|
+
type: ControlType12.Date
|
|
43388
43393
|
},
|
|
43389
43394
|
disableFuture: {
|
|
43390
43395
|
title: "Disable Future",
|
|
43391
|
-
type:
|
|
43396
|
+
type: ControlType12.Boolean,
|
|
43392
43397
|
defaultValue: false
|
|
43393
43398
|
},
|
|
43394
43399
|
disablePast: {
|
|
43395
43400
|
title: "Disable Past",
|
|
43396
|
-
type:
|
|
43401
|
+
type: ControlType12.Boolean,
|
|
43397
43402
|
defaultValue: false
|
|
43398
43403
|
}
|
|
43399
43404
|
};
|
|
43400
43405
|
|
|
43401
43406
|
// src/components/DialogFrame/DialogFrame.framer.ts
|
|
43402
|
-
import { ControlType as
|
|
43407
|
+
import { ControlType as ControlType13 } from "framer";
|
|
43403
43408
|
var dialogFramePropertyControls = {
|
|
43404
43409
|
title: {
|
|
43405
|
-
type:
|
|
43410
|
+
type: ControlType13.String,
|
|
43406
43411
|
defaultValue: "Title"
|
|
43407
43412
|
},
|
|
43408
43413
|
content: {
|
|
43409
43414
|
title: "Content",
|
|
43410
|
-
type:
|
|
43415
|
+
type: ControlType13.ComponentInstance
|
|
43411
43416
|
},
|
|
43412
43417
|
actions: {
|
|
43413
43418
|
title: "Actions",
|
|
43414
|
-
type:
|
|
43419
|
+
type: ControlType13.ComponentInstance
|
|
43415
43420
|
},
|
|
43416
43421
|
size: {
|
|
43417
43422
|
title: "Size",
|
|
43418
|
-
type:
|
|
43423
|
+
type: ControlType13.Enum,
|
|
43419
43424
|
options: ["sm", "md", "lg"],
|
|
43420
43425
|
defaultValue: "md"
|
|
43421
43426
|
}
|
|
43422
43427
|
};
|
|
43423
43428
|
|
|
43424
43429
|
// src/components/Divider/Divider.framer.ts
|
|
43425
|
-
import { ControlType as
|
|
43430
|
+
import { ControlType as ControlType14 } from "framer";
|
|
43426
43431
|
var dividerPropertyControls = {
|
|
43427
43432
|
text: {
|
|
43428
|
-
type:
|
|
43433
|
+
type: ControlType14.String,
|
|
43429
43434
|
defaultValue: void 0
|
|
43430
43435
|
},
|
|
43431
43436
|
orientation: {
|
|
43432
43437
|
title: "Orientation",
|
|
43433
|
-
type:
|
|
43438
|
+
type: ControlType14.Enum,
|
|
43434
43439
|
options: ["horizontal", "vertical"]
|
|
43435
43440
|
}
|
|
43436
43441
|
};
|
|
43437
43442
|
|
|
43438
43443
|
// src/components/IconButton/IconButton.framer.ts
|
|
43439
|
-
import { ControlType as
|
|
43444
|
+
import { ControlType as ControlType15 } from "framer";
|
|
43440
43445
|
var iconButtonPropertyControls = {
|
|
43441
43446
|
icon: {
|
|
43442
43447
|
title: "Icon",
|
|
43443
|
-
type:
|
|
43448
|
+
type: ControlType15.ComponentInstance
|
|
43444
43449
|
},
|
|
43445
43450
|
onClick: {
|
|
43446
43451
|
title: "onClick",
|
|
43447
|
-
type:
|
|
43452
|
+
type: ControlType15.EventHandler
|
|
43448
43453
|
},
|
|
43449
43454
|
disabled: {
|
|
43450
43455
|
title: "Disabled",
|
|
43451
|
-
type:
|
|
43456
|
+
type: ControlType15.Boolean,
|
|
43452
43457
|
defaultValue: false
|
|
43453
43458
|
},
|
|
43454
43459
|
color: {
|
|
43455
43460
|
title: "Color",
|
|
43456
|
-
type:
|
|
43461
|
+
type: ControlType15.Enum,
|
|
43457
43462
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
43458
43463
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
43459
43464
|
},
|
|
43460
43465
|
variant: {
|
|
43461
43466
|
title: "Variant",
|
|
43462
|
-
type:
|
|
43467
|
+
type: ControlType15.Enum,
|
|
43463
43468
|
options: ["solid", "outlined", "soft", "plain"]
|
|
43464
43469
|
},
|
|
43465
43470
|
size: {
|
|
43466
43471
|
title: "Size",
|
|
43467
|
-
type:
|
|
43472
|
+
type: ControlType15.Enum,
|
|
43468
43473
|
options: ["sm", "md", "lg"],
|
|
43469
43474
|
defaultValue: "md"
|
|
43470
43475
|
}
|
|
43471
43476
|
};
|
|
43472
43477
|
|
|
43473
43478
|
// src/components/Input/Input.framer.ts
|
|
43474
|
-
import { ControlType as
|
|
43479
|
+
import { ControlType as ControlType16 } from "framer";
|
|
43475
43480
|
var inputPropertyControls = {
|
|
43476
43481
|
label: {
|
|
43477
43482
|
title: "Label",
|
|
43478
|
-
type:
|
|
43483
|
+
type: ControlType16.String
|
|
43479
43484
|
},
|
|
43480
43485
|
helperText: {
|
|
43481
43486
|
title: "Helper Text",
|
|
43482
|
-
type:
|
|
43487
|
+
type: ControlType16.String
|
|
43483
43488
|
},
|
|
43484
43489
|
error: {
|
|
43485
43490
|
title: "Error",
|
|
43486
|
-
type:
|
|
43491
|
+
type: ControlType16.Boolean,
|
|
43487
43492
|
defaultValue: false
|
|
43488
43493
|
},
|
|
43489
43494
|
onChange: {
|
|
43490
|
-
type:
|
|
43495
|
+
type: ControlType16.EventHandler
|
|
43491
43496
|
},
|
|
43492
43497
|
disabled: {
|
|
43493
43498
|
title: "Disabled",
|
|
43494
|
-
type:
|
|
43499
|
+
type: ControlType16.Boolean,
|
|
43495
43500
|
defaultValue: false
|
|
43496
43501
|
},
|
|
43497
43502
|
color: {
|
|
43498
43503
|
title: "Color",
|
|
43499
|
-
type:
|
|
43504
|
+
type: ControlType16.Enum,
|
|
43500
43505
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
43501
43506
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"],
|
|
43502
43507
|
defaultValue: "neutral"
|
|
43503
43508
|
},
|
|
43504
43509
|
variant: {
|
|
43505
43510
|
title: "Variant",
|
|
43506
|
-
type:
|
|
43511
|
+
type: ControlType16.Enum,
|
|
43507
43512
|
options: ["solid", "outlined", "soft", "plain"],
|
|
43508
43513
|
defaultValue: "outlined"
|
|
43509
43514
|
},
|
|
43510
43515
|
defaultValue: {
|
|
43511
43516
|
title: "Value",
|
|
43512
|
-
type:
|
|
43517
|
+
type: ControlType16.String,
|
|
43513
43518
|
defaultValue: ""
|
|
43514
43519
|
},
|
|
43515
43520
|
placeholder: {
|
|
43516
43521
|
title: "Placeholder",
|
|
43517
|
-
type:
|
|
43522
|
+
type: ControlType16.String,
|
|
43518
43523
|
defaultValue: "Type in here..."
|
|
43519
43524
|
},
|
|
43520
43525
|
endDecorator: {
|
|
43521
43526
|
title: "End Decorator",
|
|
43522
|
-
type:
|
|
43527
|
+
type: ControlType16.ComponentInstance
|
|
43523
43528
|
},
|
|
43524
43529
|
startDecorator: {
|
|
43525
43530
|
title: "Start Decorator",
|
|
43526
|
-
type:
|
|
43531
|
+
type: ControlType16.ComponentInstance
|
|
43527
43532
|
},
|
|
43528
43533
|
size: {
|
|
43529
43534
|
title: "Size",
|
|
43530
|
-
type:
|
|
43535
|
+
type: ControlType16.Enum,
|
|
43531
43536
|
options: ["sm", "md", "lg"],
|
|
43532
43537
|
defaultValue: "md"
|
|
43533
43538
|
}
|
|
43534
43539
|
};
|
|
43535
43540
|
|
|
43536
43541
|
// src/components/MenuButton/MenuButton.framer.ts
|
|
43537
|
-
import { ControlType as
|
|
43542
|
+
import { ControlType as ControlType17 } from "framer";
|
|
43538
43543
|
var menuButtonPropertyControls = {
|
|
43539
43544
|
buttonText: {
|
|
43540
43545
|
title: "Button Text",
|
|
43541
|
-
type:
|
|
43546
|
+
type: ControlType17.String,
|
|
43542
43547
|
defaultValue: "text"
|
|
43543
43548
|
},
|
|
43544
43549
|
showIcon: {
|
|
43545
|
-
type:
|
|
43550
|
+
type: ControlType17.Boolean,
|
|
43546
43551
|
defaultValue: false
|
|
43547
43552
|
},
|
|
43548
43553
|
size: {
|
|
43549
|
-
type:
|
|
43554
|
+
type: ControlType17.Enum,
|
|
43550
43555
|
options: ["sm", "md", "lg"],
|
|
43551
43556
|
defaultValue: "sm"
|
|
43552
43557
|
},
|
|
43553
43558
|
items: {
|
|
43554
43559
|
title: "Items",
|
|
43555
|
-
type:
|
|
43560
|
+
type: ControlType17.Array,
|
|
43556
43561
|
control: {
|
|
43557
|
-
type:
|
|
43562
|
+
type: ControlType17.Object,
|
|
43558
43563
|
controls: {
|
|
43559
43564
|
text: {
|
|
43560
|
-
type:
|
|
43565
|
+
type: ControlType17.String
|
|
43561
43566
|
}
|
|
43562
43567
|
}
|
|
43563
43568
|
},
|
|
@@ -43566,104 +43571,104 @@ var menuButtonPropertyControls = {
|
|
|
43566
43571
|
};
|
|
43567
43572
|
|
|
43568
43573
|
// src/components/Modal/Modal.framer.ts
|
|
43569
|
-
import { ControlType as
|
|
43574
|
+
import { ControlType as ControlType18 } from "framer";
|
|
43570
43575
|
var modalFramePropertyControls = {
|
|
43571
43576
|
title: {
|
|
43572
|
-
type:
|
|
43577
|
+
type: ControlType18.String,
|
|
43573
43578
|
defaultValue: "Title"
|
|
43574
43579
|
},
|
|
43575
43580
|
content: {
|
|
43576
43581
|
title: "Content",
|
|
43577
|
-
type:
|
|
43582
|
+
type: ControlType18.ComponentInstance
|
|
43578
43583
|
},
|
|
43579
43584
|
size: {
|
|
43580
43585
|
title: "Size",
|
|
43581
|
-
type:
|
|
43586
|
+
type: ControlType18.Enum,
|
|
43582
43587
|
options: ["sm", "md", "lg"],
|
|
43583
43588
|
defaultValue: "md"
|
|
43584
43589
|
}
|
|
43585
43590
|
};
|
|
43586
43591
|
|
|
43587
43592
|
// src/components/MonthRangePicker/MonthRangePicker.framer.ts
|
|
43588
|
-
import { ControlType as
|
|
43593
|
+
import { ControlType as ControlType19 } from "framer";
|
|
43589
43594
|
var monthRangePickerPropertyControls = {
|
|
43590
43595
|
onChange: {
|
|
43591
43596
|
title: "onChange",
|
|
43592
|
-
type:
|
|
43597
|
+
type: ControlType19.EventHandler
|
|
43593
43598
|
},
|
|
43594
43599
|
disabled: {
|
|
43595
43600
|
title: "Disabled",
|
|
43596
|
-
type:
|
|
43601
|
+
type: ControlType19.Boolean,
|
|
43597
43602
|
defaultValue: false
|
|
43598
43603
|
},
|
|
43599
43604
|
value: {
|
|
43600
43605
|
title: "Value",
|
|
43601
|
-
type:
|
|
43606
|
+
type: ControlType19.String,
|
|
43602
43607
|
defaultValue: "2024/04 - 2024/07"
|
|
43603
43608
|
},
|
|
43604
43609
|
label: {
|
|
43605
43610
|
title: "Label",
|
|
43606
|
-
type:
|
|
43611
|
+
type: ControlType19.String,
|
|
43607
43612
|
defaultValue: ""
|
|
43608
43613
|
},
|
|
43609
43614
|
error: {
|
|
43610
43615
|
title: "Error",
|
|
43611
|
-
type:
|
|
43616
|
+
type: ControlType19.Boolean,
|
|
43612
43617
|
defaultValue: false
|
|
43613
43618
|
},
|
|
43614
43619
|
helperText: {
|
|
43615
43620
|
title: "Helper Text",
|
|
43616
|
-
type:
|
|
43621
|
+
type: ControlType19.String,
|
|
43617
43622
|
defaultValue: ""
|
|
43618
43623
|
},
|
|
43619
43624
|
minDate: {
|
|
43620
43625
|
title: "Minimum Date",
|
|
43621
|
-
type:
|
|
43626
|
+
type: ControlType19.Date
|
|
43622
43627
|
},
|
|
43623
43628
|
maxDate: {
|
|
43624
43629
|
title: "Maximum Date",
|
|
43625
|
-
type:
|
|
43630
|
+
type: ControlType19.Date
|
|
43626
43631
|
},
|
|
43627
43632
|
disableFuture: {
|
|
43628
43633
|
title: "Disable Future",
|
|
43629
|
-
type:
|
|
43634
|
+
type: ControlType19.Boolean,
|
|
43630
43635
|
defaultValue: false
|
|
43631
43636
|
},
|
|
43632
43637
|
disablePast: {
|
|
43633
43638
|
title: "Disable Past",
|
|
43634
|
-
type:
|
|
43639
|
+
type: ControlType19.Boolean,
|
|
43635
43640
|
defaultValue: false
|
|
43636
43641
|
}
|
|
43637
43642
|
};
|
|
43638
43643
|
|
|
43639
43644
|
// src/components/RadioList/RadioList.framer.ts
|
|
43640
|
-
import { ControlType as
|
|
43645
|
+
import { ControlType as ControlType20 } from "framer";
|
|
43641
43646
|
var radioListPropertyControls = {
|
|
43642
43647
|
orientation: {
|
|
43643
43648
|
title: "Orientation",
|
|
43644
|
-
type:
|
|
43649
|
+
type: ControlType20.Enum,
|
|
43645
43650
|
options: ["vertical", "horizontal"],
|
|
43646
43651
|
defaultValue: "vertical"
|
|
43647
43652
|
},
|
|
43648
43653
|
defaultValue: {
|
|
43649
43654
|
title: "Checked Value",
|
|
43650
|
-
type:
|
|
43655
|
+
type: ControlType20.String,
|
|
43651
43656
|
defaultValue: "value1"
|
|
43652
43657
|
},
|
|
43653
43658
|
items: {
|
|
43654
43659
|
title: "Items",
|
|
43655
|
-
type:
|
|
43660
|
+
type: ControlType20.Array,
|
|
43656
43661
|
control: {
|
|
43657
|
-
type:
|
|
43662
|
+
type: ControlType20.Object,
|
|
43658
43663
|
controls: {
|
|
43659
43664
|
displayName: {
|
|
43660
43665
|
title: "Display Name",
|
|
43661
|
-
type:
|
|
43666
|
+
type: ControlType20.String
|
|
43662
43667
|
},
|
|
43663
|
-
value: { title: "Value", type:
|
|
43668
|
+
value: { title: "Value", type: ControlType20.String },
|
|
43664
43669
|
color: {
|
|
43665
43670
|
title: "Color",
|
|
43666
|
-
type:
|
|
43671
|
+
type: ControlType20.Enum,
|
|
43667
43672
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
43668
43673
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
43669
43674
|
}
|
|
@@ -43681,73 +43686,73 @@ var radioListPropertyControls = {
|
|
|
43681
43686
|
};
|
|
43682
43687
|
|
|
43683
43688
|
// src/components/Select/Select.framer.ts
|
|
43684
|
-
import { ControlType as
|
|
43689
|
+
import { ControlType as ControlType21 } from "framer";
|
|
43685
43690
|
var selectPropertyControls = {
|
|
43686
43691
|
label: {
|
|
43687
43692
|
title: "Label",
|
|
43688
|
-
type:
|
|
43693
|
+
type: ControlType21.String
|
|
43689
43694
|
},
|
|
43690
43695
|
helperText: {
|
|
43691
43696
|
title: "Helper Text",
|
|
43692
|
-
type:
|
|
43697
|
+
type: ControlType21.String
|
|
43693
43698
|
},
|
|
43694
43699
|
error: {
|
|
43695
43700
|
title: "Error",
|
|
43696
|
-
type:
|
|
43701
|
+
type: ControlType21.Boolean,
|
|
43697
43702
|
defaultValue: false
|
|
43698
43703
|
},
|
|
43699
43704
|
onChange: {
|
|
43700
43705
|
title: "onChange",
|
|
43701
|
-
type:
|
|
43706
|
+
type: ControlType21.EventHandler
|
|
43702
43707
|
},
|
|
43703
43708
|
defaultListboxOpen: {
|
|
43704
43709
|
title: "Opened",
|
|
43705
|
-
type:
|
|
43710
|
+
type: ControlType21.Boolean,
|
|
43706
43711
|
defaultValue: false
|
|
43707
43712
|
},
|
|
43708
43713
|
defaultValue: {
|
|
43709
43714
|
title: "Selected Option",
|
|
43710
|
-
type:
|
|
43715
|
+
type: ControlType21.String
|
|
43711
43716
|
},
|
|
43712
43717
|
disabled: {
|
|
43713
43718
|
title: "Disabled",
|
|
43714
|
-
type:
|
|
43719
|
+
type: ControlType21.Boolean,
|
|
43715
43720
|
defaultValue: false
|
|
43716
43721
|
},
|
|
43717
43722
|
placeholder: {
|
|
43718
43723
|
title: "Placeholder",
|
|
43719
|
-
type:
|
|
43724
|
+
type: ControlType21.String,
|
|
43720
43725
|
defaultValue: "Choose one..."
|
|
43721
43726
|
},
|
|
43722
43727
|
color: {
|
|
43723
43728
|
title: "Color",
|
|
43724
|
-
type:
|
|
43729
|
+
type: ControlType21.Enum,
|
|
43725
43730
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
43726
43731
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
43727
43732
|
},
|
|
43728
43733
|
size: {
|
|
43729
43734
|
title: "Size",
|
|
43730
|
-
type:
|
|
43735
|
+
type: ControlType21.Enum,
|
|
43731
43736
|
options: ["sm", "md", "lg"],
|
|
43732
43737
|
defaultValue: "md"
|
|
43733
43738
|
},
|
|
43734
43739
|
variant: {
|
|
43735
43740
|
title: "Variant",
|
|
43736
|
-
type:
|
|
43741
|
+
type: ControlType21.Enum,
|
|
43737
43742
|
options: ["outlined", "plain", "solid", "soft"],
|
|
43738
43743
|
defaultValue: void 0
|
|
43739
43744
|
},
|
|
43740
43745
|
options: {
|
|
43741
43746
|
title: "Options",
|
|
43742
|
-
type:
|
|
43747
|
+
type: ControlType21.Array,
|
|
43743
43748
|
control: {
|
|
43744
|
-
type:
|
|
43749
|
+
type: ControlType21.Object,
|
|
43745
43750
|
controls: {
|
|
43746
43751
|
text: {
|
|
43747
43752
|
title: "Text",
|
|
43748
|
-
type:
|
|
43753
|
+
type: ControlType21.String
|
|
43749
43754
|
},
|
|
43750
|
-
value: { title: "Value", type:
|
|
43755
|
+
value: { title: "Value", type: ControlType21.String }
|
|
43751
43756
|
}
|
|
43752
43757
|
},
|
|
43753
43758
|
defaultValue: [
|
|
@@ -43758,126 +43763,126 @@ var selectPropertyControls = {
|
|
|
43758
43763
|
};
|
|
43759
43764
|
|
|
43760
43765
|
// src/components/Sheet/Sheet.framer.ts
|
|
43761
|
-
import { ControlType as
|
|
43766
|
+
import { ControlType as ControlType22 } from "framer";
|
|
43762
43767
|
var sheetPropertyControls = {
|
|
43763
43768
|
color: {
|
|
43764
43769
|
title: "Color",
|
|
43765
|
-
type:
|
|
43770
|
+
type: ControlType22.Enum,
|
|
43766
43771
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
43767
43772
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
43768
43773
|
},
|
|
43769
43774
|
variant: {
|
|
43770
43775
|
title: "Variant",
|
|
43771
|
-
type:
|
|
43776
|
+
type: ControlType22.Enum,
|
|
43772
43777
|
options: ["solid", "outlined", "soft", "plain"],
|
|
43773
43778
|
defaultValue: "outlined"
|
|
43774
43779
|
}
|
|
43775
43780
|
};
|
|
43776
43781
|
|
|
43777
43782
|
// src/components/Skeleton/Skeleton.framer.ts
|
|
43778
|
-
import { ControlType as
|
|
43783
|
+
import { ControlType as ControlType23 } from "framer";
|
|
43779
43784
|
var skeletonPropertyControls = {
|
|
43780
43785
|
animation: {
|
|
43781
43786
|
title: "Animation type",
|
|
43782
|
-
type:
|
|
43787
|
+
type: ControlType23.Enum,
|
|
43783
43788
|
options: ["wave", "pulse"]
|
|
43784
43789
|
},
|
|
43785
43790
|
variant: {
|
|
43786
43791
|
title: "Variant",
|
|
43787
|
-
type:
|
|
43792
|
+
type: ControlType23.Enum,
|
|
43788
43793
|
options: ["circular", "rectangular"],
|
|
43789
43794
|
defaultValue: "rectangular"
|
|
43790
43795
|
},
|
|
43791
43796
|
target: {
|
|
43792
43797
|
title: "Target",
|
|
43793
|
-
type:
|
|
43798
|
+
type: ControlType23.ComponentInstance
|
|
43794
43799
|
},
|
|
43795
43800
|
loading: {
|
|
43796
43801
|
title: "Loading",
|
|
43797
|
-
type:
|
|
43802
|
+
type: ControlType23.Boolean,
|
|
43798
43803
|
defaultValue: false
|
|
43799
43804
|
}
|
|
43800
43805
|
};
|
|
43801
43806
|
|
|
43802
43807
|
// src/components/Switch/Switch.framer.ts
|
|
43803
|
-
import { ControlType as
|
|
43808
|
+
import { ControlType as ControlType24 } from "framer";
|
|
43804
43809
|
var switchPropertyControls = {
|
|
43805
43810
|
onChange: {
|
|
43806
43811
|
title: "onChange",
|
|
43807
|
-
type:
|
|
43812
|
+
type: ControlType24.EventHandler
|
|
43808
43813
|
},
|
|
43809
43814
|
disabled: {
|
|
43810
43815
|
title: "Disabled",
|
|
43811
|
-
type:
|
|
43816
|
+
type: ControlType24.Boolean,
|
|
43812
43817
|
defaultValue: false
|
|
43813
43818
|
},
|
|
43814
43819
|
color: {
|
|
43815
43820
|
title: "Color",
|
|
43816
|
-
type:
|
|
43821
|
+
type: ControlType24.Enum,
|
|
43817
43822
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
43818
43823
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
43819
43824
|
},
|
|
43820
43825
|
variant: {
|
|
43821
43826
|
title: "Variant",
|
|
43822
|
-
type:
|
|
43827
|
+
type: ControlType24.Enum,
|
|
43823
43828
|
options: ["solid", "outlined", "soft", "plain"],
|
|
43824
43829
|
defaultValue: void 0
|
|
43825
43830
|
},
|
|
43826
43831
|
size: {
|
|
43827
43832
|
title: "Size",
|
|
43828
|
-
type:
|
|
43833
|
+
type: ControlType24.Enum,
|
|
43829
43834
|
options: ["sm", "md", "lg"],
|
|
43830
43835
|
defaultValue: "md"
|
|
43831
43836
|
}
|
|
43832
43837
|
};
|
|
43833
43838
|
|
|
43834
43839
|
// src/components/Tabs/Tabs.framer.ts
|
|
43835
|
-
import { ControlType as
|
|
43840
|
+
import { ControlType as ControlType25 } from "framer";
|
|
43836
43841
|
var tabsPropertyControls = {
|
|
43837
43842
|
color: {
|
|
43838
43843
|
title: "Color",
|
|
43839
|
-
type:
|
|
43844
|
+
type: ControlType25.Enum,
|
|
43840
43845
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
43841
43846
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"]
|
|
43842
43847
|
},
|
|
43843
43848
|
size: {
|
|
43844
43849
|
title: "Size",
|
|
43845
|
-
type:
|
|
43850
|
+
type: ControlType25.Enum,
|
|
43846
43851
|
options: ["sm", "md", "lg"],
|
|
43847
43852
|
defaultValue: "md"
|
|
43848
43853
|
},
|
|
43849
43854
|
variant: {
|
|
43850
43855
|
title: "Variant",
|
|
43851
|
-
type:
|
|
43856
|
+
type: ControlType25.Enum,
|
|
43852
43857
|
options: ["outlined", "plain", "solid", "soft"],
|
|
43853
43858
|
defaultValue: "plain"
|
|
43854
43859
|
},
|
|
43855
43860
|
orientation: {
|
|
43856
|
-
type:
|
|
43861
|
+
type: ControlType25.Enum,
|
|
43857
43862
|
options: ["horizontal", "vertical"]
|
|
43858
43863
|
},
|
|
43859
43864
|
disableUnderline: {
|
|
43860
|
-
type:
|
|
43865
|
+
type: ControlType25.Boolean,
|
|
43861
43866
|
defaultValue: false
|
|
43862
43867
|
},
|
|
43863
43868
|
disableIndicator: {
|
|
43864
|
-
type:
|
|
43869
|
+
type: ControlType25.Boolean,
|
|
43865
43870
|
defaultValue: false
|
|
43866
43871
|
},
|
|
43867
43872
|
indicatorInset: {
|
|
43868
|
-
type:
|
|
43873
|
+
type: ControlType25.Boolean,
|
|
43869
43874
|
defaultValue: false
|
|
43870
43875
|
},
|
|
43871
43876
|
tabs: {
|
|
43872
|
-
type:
|
|
43877
|
+
type: ControlType25.Array,
|
|
43873
43878
|
control: {
|
|
43874
|
-
type:
|
|
43879
|
+
type: ControlType25.Object,
|
|
43875
43880
|
controls: {
|
|
43876
43881
|
title: {
|
|
43877
|
-
type:
|
|
43882
|
+
type: ControlType25.String
|
|
43878
43883
|
},
|
|
43879
43884
|
disabled: {
|
|
43880
|
-
type:
|
|
43885
|
+
type: ControlType25.Boolean,
|
|
43881
43886
|
defaultValue: false
|
|
43882
43887
|
}
|
|
43883
43888
|
}
|
|
@@ -43885,65 +43890,65 @@ var tabsPropertyControls = {
|
|
|
43885
43890
|
},
|
|
43886
43891
|
contents: {
|
|
43887
43892
|
title: "Contents",
|
|
43888
|
-
type:
|
|
43893
|
+
type: ControlType25.Array,
|
|
43889
43894
|
control: {
|
|
43890
|
-
type:
|
|
43895
|
+
type: ControlType25.ComponentInstance
|
|
43891
43896
|
}
|
|
43892
43897
|
}
|
|
43893
43898
|
};
|
|
43894
43899
|
|
|
43895
43900
|
// src/components/Textarea/Textarea.framer.ts
|
|
43896
|
-
import { ControlType as
|
|
43901
|
+
import { ControlType as ControlType26 } from "framer";
|
|
43897
43902
|
var textareaPropertyControls = {
|
|
43898
43903
|
onChange: {
|
|
43899
|
-
type:
|
|
43904
|
+
type: ControlType26.EventHandler
|
|
43900
43905
|
},
|
|
43901
43906
|
disabled: {
|
|
43902
43907
|
title: "Disabled",
|
|
43903
|
-
type:
|
|
43908
|
+
type: ControlType26.Boolean,
|
|
43904
43909
|
defaultValue: false
|
|
43905
43910
|
},
|
|
43906
43911
|
color: {
|
|
43907
43912
|
title: "Color",
|
|
43908
|
-
type:
|
|
43913
|
+
type: ControlType26.Enum,
|
|
43909
43914
|
options: ["primary", "neutral", "danger", "success", "warning"],
|
|
43910
43915
|
optionTitles: ["Primary", "Neutral", "Danger", "Success", "Warning"],
|
|
43911
43916
|
defaultValue: "neutral"
|
|
43912
43917
|
},
|
|
43913
43918
|
variant: {
|
|
43914
43919
|
title: "Variant",
|
|
43915
|
-
type:
|
|
43920
|
+
type: ControlType26.Enum,
|
|
43916
43921
|
options: ["solid", "outlined", "soft", "plain"],
|
|
43917
43922
|
defaultValue: "outlined"
|
|
43918
43923
|
},
|
|
43919
43924
|
defaultValue: {
|
|
43920
43925
|
title: "Value",
|
|
43921
|
-
type:
|
|
43926
|
+
type: ControlType26.String,
|
|
43922
43927
|
defaultValue: ""
|
|
43923
43928
|
},
|
|
43924
43929
|
placeholder: {
|
|
43925
43930
|
title: "Placeholder",
|
|
43926
|
-
type:
|
|
43931
|
+
type: ControlType26.String,
|
|
43927
43932
|
defaultValue: "Type in here..."
|
|
43928
43933
|
},
|
|
43929
43934
|
endDecorator: {
|
|
43930
43935
|
title: "End Decorator",
|
|
43931
|
-
type:
|
|
43936
|
+
type: ControlType26.ComponentInstance
|
|
43932
43937
|
},
|
|
43933
43938
|
startDecorator: {
|
|
43934
43939
|
title: "Start Decorator",
|
|
43935
|
-
type:
|
|
43940
|
+
type: ControlType26.ComponentInstance
|
|
43936
43941
|
},
|
|
43937
43942
|
size: {
|
|
43938
43943
|
title: "Size",
|
|
43939
|
-
type:
|
|
43944
|
+
type: ControlType26.Enum,
|
|
43940
43945
|
options: ["sm", "md", "lg"],
|
|
43941
43946
|
defaultValue: "md"
|
|
43942
43947
|
}
|
|
43943
43948
|
};
|
|
43944
43949
|
|
|
43945
43950
|
// src/components/Typography/Typography.framer.ts
|
|
43946
|
-
import { ControlType as
|
|
43951
|
+
import { ControlType as ControlType27 } from "framer";
|
|
43947
43952
|
var typographyPropertyControls = {
|
|
43948
43953
|
// color: {
|
|
43949
43954
|
// title: "Color",
|
|
@@ -43953,7 +43958,7 @@ var typographyPropertyControls = {
|
|
|
43953
43958
|
// },
|
|
43954
43959
|
level: {
|
|
43955
43960
|
title: "Level",
|
|
43956
|
-
type:
|
|
43961
|
+
type: ControlType27.Enum,
|
|
43957
43962
|
options: [
|
|
43958
43963
|
"h1",
|
|
43959
43964
|
"h2",
|
|
@@ -43972,7 +43977,7 @@ var typographyPropertyControls = {
|
|
|
43972
43977
|
},
|
|
43973
43978
|
textColor: {
|
|
43974
43979
|
title: "Text Color",
|
|
43975
|
-
type:
|
|
43980
|
+
type: ControlType27.Enum,
|
|
43976
43981
|
options: [
|
|
43977
43982
|
"text.primary",
|
|
43978
43983
|
"text.secondary",
|
|
@@ -43986,17 +43991,17 @@ var typographyPropertyControls = {
|
|
|
43986
43991
|
},
|
|
43987
43992
|
text: {
|
|
43988
43993
|
title: "Text",
|
|
43989
|
-
type:
|
|
43994
|
+
type: ControlType27.String,
|
|
43990
43995
|
defaultValue: "Typography",
|
|
43991
43996
|
displayTextArea: true
|
|
43992
43997
|
},
|
|
43993
43998
|
endDecorator: {
|
|
43994
43999
|
title: "End Decorator",
|
|
43995
|
-
type:
|
|
44000
|
+
type: ControlType27.ComponentInstance
|
|
43996
44001
|
},
|
|
43997
44002
|
startDecorator: {
|
|
43998
44003
|
title: "Start Decorator",
|
|
43999
|
-
type:
|
|
44004
|
+
type: ControlType27.ComponentInstance
|
|
44000
44005
|
}
|
|
44001
44006
|
};
|
|
44002
44007
|
export {
|
|
@@ -44101,6 +44106,7 @@ export {
|
|
|
44101
44106
|
badgePropertyControls,
|
|
44102
44107
|
boxClasses_default as boxClasses,
|
|
44103
44108
|
breadcrumbsClasses_default as breadcrumbsClasses,
|
|
44109
|
+
breadcrumbsPropertyControls,
|
|
44104
44110
|
buttonClasses_default as buttonClasses,
|
|
44105
44111
|
buttonPropertyControls,
|
|
44106
44112
|
calendarPropertyControls,
|