@nocobase/client 0.7.0-alpha.82 → 0.7.1-alpha.4
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/.umirc.ts +24 -0
- package/es/antd-config-provider/index.js +5 -4
- package/es/api-client/APIClient.d.ts +2 -0
- package/es/api-client/APIClient.js +42 -2
- package/es/application/Application.d.ts +23 -0
- package/es/application/Application.js +176 -0
- package/es/application/index.d.ts +1 -0
- package/es/application/index.js +1 -0
- package/es/block-provider/BlockProvider.js +27 -11
- package/es/block-provider/TableBlockProvider.d.ts +2 -1
- package/es/block-provider/TableBlockProvider.js +90 -23
- package/es/block-provider/TableFieldProvider.d.ts +1 -0
- package/es/block-provider/TableFieldProvider.js +5 -2
- package/es/block-provider/hooks/index.d.ts +3 -0
- package/es/block-provider/hooks/index.js +307 -166
- package/es/collection-manager/CollectionField.js +8 -1
- package/es/collection-manager/Configuration/AddFieldAction.js +53 -24
- package/es/collection-manager/Configuration/AddSubFieldAction.js +3 -2
- package/es/collection-manager/Configuration/ConfigurationTable.js +32 -6
- package/es/collection-manager/Configuration/EditFieldAction.js +44 -15
- package/es/collection-manager/Configuration/EditSubFieldAction.js +3 -2
- package/es/collection-manager/Configuration/components/FieldSummary.d.ts +2 -0
- package/es/collection-manager/Configuration/components/FieldSummary.js +32 -0
- package/es/collection-manager/Configuration/components/index.d.ts +7 -0
- package/es/collection-manager/Configuration/components/index.js +121 -0
- package/es/collection-manager/Configuration/interfaces.js +1 -0
- package/es/collection-manager/Configuration/schemas/collectionFields.js +4 -0
- package/es/collection-manager/Configuration/schemas/collections.js +17 -1
- package/es/collection-manager/hooks/useCollectionManager.d.ts +2 -1
- package/es/collection-manager/hooks/useCollectionManager.js +42 -19
- package/es/collection-manager/index.d.ts +1 -0
- package/es/collection-manager/index.js +1 -0
- package/es/collection-manager/interfaces/attachment.js +1 -1
- package/es/collection-manager/interfaces/chinaRegion.js +2 -2
- package/es/collection-manager/interfaces/components/index.d.ts +6 -0
- package/es/collection-manager/interfaces/components/index.js +30 -0
- package/es/collection-manager/interfaces/datetime.js +10 -1
- package/es/collection-manager/interfaces/formula.d.ts +2 -0
- package/es/collection-manager/interfaces/formula.js +74 -0
- package/es/collection-manager/interfaces/index.d.ts +5 -0
- package/es/collection-manager/interfaces/index.js +6 -1
- package/es/collection-manager/interfaces/linkTo.js +12 -11
- package/es/collection-manager/interfaces/m2m.d.ts +2 -0
- package/es/collection-manager/interfaces/m2m.js +251 -0
- package/es/collection-manager/interfaces/m2o.d.ts +2 -0
- package/es/collection-manager/interfaces/m2o.js +174 -0
- package/es/collection-manager/interfaces/o2m.d.ts +2 -0
- package/es/collection-manager/interfaces/o2m.js +238 -0
- package/es/collection-manager/interfaces/o2o.d.ts +4 -0
- package/es/collection-manager/interfaces/o2o.js +518 -0
- package/es/collection-manager/interfaces/percent.js +7 -7
- package/es/collection-manager/interfaces/phone.js +4 -1
- package/es/collection-manager/interfaces/properties/index.d.ts +1 -0
- package/es/collection-manager/interfaces/properties/index.js +31 -2
- package/es/i18n/i18n.js +6 -6
- package/es/index.d.ts +1 -2
- package/es/index.js +1 -2
- package/es/locale/en_US.d.ts +293 -29
- package/es/locale/en_US.js +297 -34
- package/es/locale/index.d.ts +7 -751
- package/es/locale/index.js +20 -3
- package/es/locale/zh_CN.d.ts +107 -5
- package/es/locale/zh_CN.js +110 -7
- package/es/schema-component/antd/action/Action.Designer.js +34 -15
- package/es/schema-component/antd/action/Action.Drawer.js +1 -1
- package/es/schema-component/antd/action/utils.d.ts +2 -0
- package/es/schema-component/antd/action/utils.js +60 -0
- package/es/schema-component/antd/calendar/Calendar.Designer.js +5 -3
- package/es/schema-component/antd/cascader/Cascader.js +1 -1
- package/es/schema-component/antd/date-picker/ReadPretty.js +15 -5
- package/es/schema-component/antd/date-picker/util.d.ts +13 -1
- package/es/schema-component/antd/date-picker/util.js +110 -3
- package/es/schema-component/antd/filter/FilterItem.js +7 -7
- package/es/schema-component/antd/form-item/FormItem.js +80 -1
- package/es/schema-component/antd/form-v2/Form.Designer.js +20 -9
- package/es/schema-component/antd/form-v2/Form.js +2 -2
- package/es/schema-component/antd/formula-input/Compute.d.ts +3 -0
- package/es/schema-component/antd/formula-input/Compute.js +55 -0
- package/es/schema-component/antd/formula-input/FormulaInput.d.ts +3 -0
- package/es/schema-component/antd/formula-input/FormulaInput.js +173 -0
- package/es/schema-component/antd/formula-input/index.d.ts +1 -0
- package/es/schema-component/antd/formula-input/index.js +7 -0
- package/es/schema-component/antd/g2plot/G2Plot.d.ts +8 -0
- package/es/schema-component/antd/g2plot/G2Plot.js +123 -0
- package/es/schema-component/antd/g2plot/G2PlotDesigner.d.ts +1 -0
- package/es/schema-component/antd/g2plot/G2PlotDesigner.js +127 -0
- package/es/schema-component/antd/g2plot/index.d.ts +1 -0
- package/es/schema-component/antd/g2plot/index.js +1 -0
- package/es/schema-component/antd/grid/Grid.js +3 -3
- package/es/schema-component/antd/index.d.ts +3 -1
- package/es/schema-component/antd/index.js +3 -1
- package/es/schema-component/antd/input/EllipsisWithTooltip.d.ts +8 -1
- package/es/schema-component/antd/input/EllipsisWithTooltip.js +9 -3
- package/es/schema-component/antd/input/ReadPretty.js +5 -3
- package/es/schema-component/antd/kanban/Kanban.Card.Designer.js +1 -1
- package/es/schema-component/antd/kanban/Kanban.Designer.js +5 -3
- package/es/schema-component/antd/markdown/Markdown.d.ts +1 -0
- package/es/schema-component/antd/markdown/Markdown.js +3 -1
- package/es/schema-component/antd/markdown/style.less +4 -0
- package/es/schema-component/antd/percent/Percent.d.ts +2 -0
- package/es/{action-logs/ActionLogBlockInitializer.js → schema-component/antd/percent/Percent.js} +20 -25
- package/es/schema-component/antd/percent/index.d.ts +1 -0
- package/es/schema-component/antd/percent/index.js +1 -0
- package/es/schema-component/antd/record-picker/InputRecordPicker.js +7 -5
- package/es/schema-component/antd/record-picker/ReadPrettyRecordPicker.js +43 -26
- package/es/schema-component/antd/table-v2/Table.Column.Designer.js +18 -4
- package/es/schema-component/antd/table-v2/Table.js +16 -2
- package/es/schema-component/antd/table-v2/TableBlockDesigner.js +7 -4
- package/es/schema-initializer/SchemaInitializer.js +22 -16
- package/es/schema-initializer/SchemaInitializerProvider.d.ts +1 -0
- package/es/schema-initializer/SchemaInitializerProvider.js +1 -0
- package/es/schema-initializer/buttons/BlockInitializers.d.ts +184 -2
- package/es/schema-initializer/buttons/BlockInitializers.js +108 -2
- package/es/schema-initializer/buttons/CreateFormBlockInitializers.js +1 -1
- package/es/schema-initializer/buttons/FormActionInitializers.d.ts +84 -0
- package/es/schema-initializer/buttons/FormActionInitializers.js +66 -0
- package/es/schema-initializer/buttons/ReadPrettyFormActionInitializers.d.ts +28 -0
- package/es/schema-initializer/buttons/ReadPrettyFormActionInitializers.js +22 -0
- package/es/schema-initializer/buttons/RecordBlockInitializers.js +70 -5
- package/es/schema-initializer/buttons/RecordFormBlockInitializers.js +1 -1
- package/es/schema-initializer/buttons/TableActionColumnInitializers.js +21 -0
- package/es/schema-initializer/buttons/TableSelectorInitializers.js +1 -1
- package/es/schema-initializer/buttons/chart-config/area.d.ts +11 -0
- package/es/schema-initializer/buttons/chart-config/area.js +179 -0
- package/es/schema-initializer/buttons/chart-config/bar.d.ts +12 -0
- package/es/schema-initializer/buttons/chart-config/bar.js +24 -0
- package/es/schema-initializer/buttons/chart-config/column.d.ts +29 -0
- package/es/schema-initializer/buttons/chart-config/column.js +52 -0
- package/es/schema-initializer/buttons/chart-config/index.d.ts +5 -0
- package/es/schema-initializer/buttons/chart-config/index.js +5 -0
- package/es/schema-initializer/buttons/chart-config/line.d.ts +12 -0
- package/es/schema-initializer/buttons/chart-config/line.js +37 -0
- package/es/schema-initializer/buttons/chart-config/pie.d.ts +22 -0
- package/es/schema-initializer/buttons/chart-config/pie.js +37 -0
- package/es/schema-initializer/items/index.d.ts +5 -0
- package/es/schema-initializer/items/index.js +472 -46
- package/es/schema-initializer/utils.d.ts +6 -3
- package/es/schema-initializer/utils.js +23 -12
- package/es/schema-settings/SchemaSettings.js +114 -29
- package/es/schema-templates/SchemaTemplateManagerProvider.d.ts +1 -1
- package/es/schema-templates/SchemaTemplateManagerProvider.js +1 -0
- package/es/system-settings/SystemSettingsShortcut.js +19 -8
- package/es/user/ChangePassword.js +1 -0
- package/es/user/CurrentUser.js +25 -5
- package/es/user/EditProfile.js +1 -0
- package/es/user/LanguageSettings.js +24 -8
- package/es/user/SigninPage.d.ts +3 -0
- package/es/user/SigninPage.js +2 -4
- package/es/user/SignupPage.d.ts +3 -0
- package/es/user/SignupPage.js +2 -4
- package/es/user/SwitchRole.js +1 -0
- package/es/workflow/ExecutionResourceProvider.js +1 -1
- package/es/workflow/WorkflowCanvas.js +16 -15
- package/es/workflow/calculators.js +12 -6
- package/es/workflow/components/Duration.d.ts +5 -0
- package/es/workflow/components/Duration.js +61 -0
- package/es/workflow/nodes/condition.js +1 -1
- package/es/workflow/nodes/create.d.ts +3 -0
- package/es/workflow/nodes/delay.d.ts +35 -0
- package/es/workflow/nodes/delay.js +37 -0
- package/es/workflow/nodes/destroy.d.ts +3 -0
- package/es/workflow/nodes/index.d.ts +1 -1
- package/es/workflow/nodes/index.js +11 -8
- package/es/workflow/nodes/query.d.ts +3 -0
- package/es/workflow/nodes/update.d.ts +3 -0
- package/es/workflow/schemas/collection.d.ts +3 -0
- package/es/workflow/schemas/collection.js +4 -1
- package/es/workflow/schemas/executions.d.ts +15 -0
- package/es/workflow/schemas/executions.js +26 -1
- package/es/workflow/schemas/workflows.js +2 -2
- package/es/workflow/triggers/collection.d.ts +5 -0
- package/es/workflow/triggers/collection.js +13 -3
- package/es/workflow/triggers/index.d.ts +2 -2
- package/es/workflow/triggers/index.js +23 -11
- package/es/workflow/triggers/schedule/DateFieldsSelect.d.ts +2 -0
- package/es/workflow/triggers/schedule/DateFieldsSelect.js +39 -0
- package/es/workflow/triggers/schedule/EndsByField.d.ts +5 -0
- package/es/workflow/triggers/schedule/EndsByField.js +57 -0
- package/es/workflow/triggers/schedule/OnField.d.ts +5 -0
- package/es/workflow/triggers/schedule/OnField.js +87 -0
- package/es/workflow/triggers/schedule/RepeatField.d.ts +5 -0
- package/es/workflow/triggers/schedule/RepeatField.js +131 -0
- package/es/workflow/triggers/schedule/ScheduleConfig.d.ts +1 -0
- package/es/workflow/triggers/schedule/ScheduleConfig.js +225 -0
- package/es/workflow/triggers/schedule/index.d.ts +25 -0
- package/es/workflow/triggers/schedule/index.js +77 -0
- package/es/workflow/triggers/schedule/locale/Cron.zh-CN.d.ts +34 -0
- package/es/workflow/triggers/schedule/locale/Cron.zh-CN.js +37 -0
- package/lib/antd-config-provider/index.js +6 -6
- package/lib/api-client/APIClient.d.ts +2 -0
- package/lib/api-client/APIClient.js +46 -2
- package/lib/application/Application.d.ts +23 -0
- package/lib/application/Application.js +207 -0
- package/lib/application/index.d.ts +1 -0
- package/lib/application/index.js +13 -0
- package/lib/block-provider/BlockProvider.js +26 -10
- package/lib/block-provider/TableBlockProvider.d.ts +2 -1
- package/lib/block-provider/TableBlockProvider.js +94 -20
- package/lib/block-provider/TableFieldProvider.d.ts +1 -0
- package/lib/block-provider/TableFieldProvider.js +7 -3
- package/lib/block-provider/hooks/index.d.ts +3 -0
- package/lib/block-provider/hooks/index.js +316 -167
- package/lib/collection-manager/CollectionField.js +8 -1
- package/lib/collection-manager/Configuration/AddFieldAction.js +54 -24
- package/lib/collection-manager/Configuration/AddSubFieldAction.js +4 -2
- package/lib/collection-manager/Configuration/ConfigurationTable.js +34 -6
- package/lib/collection-manager/Configuration/EditFieldAction.js +44 -14
- package/lib/collection-manager/Configuration/EditSubFieldAction.js +4 -2
- package/lib/collection-manager/Configuration/components/FieldSummary.d.ts +2 -0
- package/lib/collection-manager/Configuration/components/FieldSummary.js +49 -0
- package/lib/collection-manager/Configuration/components/index.d.ts +7 -0
- package/lib/collection-manager/Configuration/components/index.js +142 -0
- package/lib/collection-manager/Configuration/interfaces.js +1 -0
- package/lib/collection-manager/Configuration/schemas/collectionFields.js +4 -0
- package/lib/collection-manager/Configuration/schemas/collections.js +18 -1
- package/lib/collection-manager/hooks/useCollectionManager.d.ts +2 -1
- package/lib/collection-manager/hooks/useCollectionManager.js +43 -20
- package/lib/collection-manager/index.d.ts +1 -0
- package/lib/collection-manager/index.js +28 -0
- package/lib/collection-manager/interfaces/attachment.js +1 -1
- package/lib/collection-manager/interfaces/chinaRegion.js +2 -2
- package/lib/collection-manager/interfaces/components/index.d.ts +6 -0
- package/lib/collection-manager/interfaces/components/index.js +58 -0
- package/lib/collection-manager/interfaces/datetime.js +10 -1
- package/lib/collection-manager/interfaces/formula.d.ts +2 -0
- package/lib/collection-manager/interfaces/formula.js +83 -0
- package/lib/collection-manager/interfaces/index.d.ts +5 -0
- package/lib/collection-manager/interfaces/index.js +65 -0
- package/lib/collection-manager/interfaces/linkTo.js +12 -11
- package/lib/collection-manager/interfaces/m2m.d.ts +2 -0
- package/lib/collection-manager/interfaces/m2m.js +262 -0
- package/lib/collection-manager/interfaces/m2o.d.ts +2 -0
- package/lib/collection-manager/interfaces/m2o.js +184 -0
- package/lib/collection-manager/interfaces/o2m.d.ts +2 -0
- package/lib/collection-manager/interfaces/o2m.js +247 -0
- package/lib/collection-manager/interfaces/o2o.d.ts +4 -0
- package/lib/collection-manager/interfaces/o2o.js +530 -0
- package/lib/collection-manager/interfaces/percent.js +7 -7
- package/lib/collection-manager/interfaces/phone.js +4 -1
- package/lib/collection-manager/interfaces/properties/index.d.ts +1 -0
- package/lib/collection-manager/interfaces/properties/index.js +34 -3
- package/lib/i18n/i18n.js +7 -7
- package/lib/index.d.ts +1 -2
- package/lib/index.js +2 -26
- package/lib/locale/en_US.d.ts +293 -29
- package/lib/locale/en_US.js +297 -34
- package/lib/locale/index.d.ts +7 -751
- package/lib/locale/index.js +26 -7
- package/lib/locale/zh_CN.d.ts +107 -5
- package/lib/locale/zh_CN.js +110 -7
- package/lib/schema-component/antd/action/Action.Designer.js +35 -16
- package/lib/schema-component/antd/action/Action.Drawer.js +1 -1
- package/lib/schema-component/antd/action/utils.d.ts +2 -0
- package/lib/schema-component/antd/action/utils.js +67 -0
- package/lib/schema-component/antd/calendar/Calendar.Designer.js +5 -3
- package/lib/schema-component/antd/cascader/Cascader.js +1 -1
- package/lib/schema-component/antd/date-picker/ReadPretty.js +13 -3
- package/lib/schema-component/antd/date-picker/util.d.ts +13 -1
- package/lib/schema-component/antd/date-picker/util.js +118 -4
- package/lib/schema-component/antd/filter/FilterItem.js +8 -7
- package/lib/schema-component/antd/form-item/FormItem.js +81 -1
- package/lib/schema-component/antd/form-v2/Form.Designer.js +20 -9
- package/lib/schema-component/antd/form-v2/Form.js +3 -3
- package/lib/schema-component/antd/formula-input/Compute.d.ts +3 -0
- package/lib/schema-component/antd/formula-input/Compute.js +79 -0
- package/lib/schema-component/antd/formula-input/FormulaInput.d.ts +3 -0
- package/lib/schema-component/antd/formula-input/FormulaInput.js +197 -0
- package/lib/schema-component/antd/formula-input/index.d.ts +1 -0
- package/lib/schema-component/antd/formula-input/index.js +18 -0
- package/lib/schema-component/antd/g2plot/G2Plot.d.ts +8 -0
- package/lib/schema-component/antd/g2plot/G2Plot.js +148 -0
- package/lib/schema-component/antd/g2plot/G2PlotDesigner.d.ts +1 -0
- package/lib/schema-component/antd/g2plot/G2PlotDesigner.js +145 -0
- package/lib/schema-component/antd/g2plot/index.d.ts +1 -0
- package/lib/schema-component/antd/{chart → g2plot}/index.js +4 -4
- package/lib/schema-component/antd/grid/Grid.js +3 -3
- package/lib/schema-component/antd/index.d.ts +3 -1
- package/lib/schema-component/antd/index.js +39 -13
- package/lib/schema-component/antd/input/EllipsisWithTooltip.d.ts +8 -1
- package/lib/schema-component/antd/input/EllipsisWithTooltip.js +8 -4
- package/lib/schema-component/antd/input/ReadPretty.js +5 -5
- package/lib/schema-component/antd/kanban/Kanban.Card.Designer.js +1 -1
- package/lib/schema-component/antd/kanban/Kanban.Designer.js +5 -3
- package/lib/schema-component/antd/markdown/Markdown.d.ts +1 -0
- package/lib/schema-component/antd/markdown/Markdown.js +4 -1
- package/lib/schema-component/antd/markdown/style.less +4 -0
- package/lib/schema-component/antd/percent/Percent.d.ts +2 -0
- package/lib/{action-logs/ActionLogProvider.js → schema-component/antd/percent/Percent.js} +29 -22
- package/lib/schema-component/antd/percent/index.d.ts +1 -0
- package/lib/{slate → schema-component/antd/percent}/index.js +4 -4
- package/lib/schema-component/antd/record-picker/InputRecordPicker.js +7 -5
- package/lib/schema-component/antd/record-picker/ReadPrettyRecordPicker.js +42 -25
- package/lib/schema-component/antd/table-v2/Table.Column.Designer.js +18 -4
- package/lib/schema-component/antd/table-v2/Table.js +16 -2
- package/lib/schema-component/antd/table-v2/TableBlockDesigner.js +7 -4
- package/lib/schema-initializer/SchemaInitializer.js +22 -16
- package/lib/schema-initializer/SchemaInitializerProvider.d.ts +1 -0
- package/lib/schema-initializer/SchemaInitializerProvider.js +3 -1
- package/lib/schema-initializer/buttons/BlockInitializers.d.ts +184 -2
- package/lib/schema-initializer/buttons/BlockInitializers.js +114 -1
- package/lib/schema-initializer/buttons/CreateFormBlockInitializers.js +1 -1
- package/lib/schema-initializer/buttons/FormActionInitializers.d.ts +84 -0
- package/lib/schema-initializer/buttons/FormActionInitializers.js +66 -0
- package/lib/schema-initializer/buttons/ReadPrettyFormActionInitializers.d.ts +28 -0
- package/lib/schema-initializer/buttons/ReadPrettyFormActionInitializers.js +22 -0
- package/lib/schema-initializer/buttons/RecordBlockInitializers.js +70 -5
- package/lib/schema-initializer/buttons/RecordFormBlockInitializers.js +1 -1
- package/lib/schema-initializer/buttons/TableActionColumnInitializers.js +21 -0
- package/lib/schema-initializer/buttons/TableSelectorInitializers.js +1 -1
- package/lib/schema-initializer/buttons/chart-config/area.d.ts +11 -0
- package/lib/schema-initializer/buttons/chart-config/area.js +186 -0
- package/lib/schema-initializer/buttons/chart-config/bar.d.ts +12 -0
- package/lib/schema-initializer/buttons/chart-config/bar.js +31 -0
- package/lib/schema-initializer/buttons/chart-config/column.d.ts +29 -0
- package/lib/schema-initializer/buttons/chart-config/column.js +59 -0
- package/lib/schema-initializer/buttons/chart-config/index.d.ts +5 -0
- package/lib/schema-initializer/buttons/chart-config/index.js +70 -0
- package/lib/schema-initializer/buttons/chart-config/line.d.ts +12 -0
- package/lib/schema-initializer/buttons/chart-config/line.js +44 -0
- package/lib/schema-initializer/buttons/chart-config/pie.d.ts +22 -0
- package/lib/schema-initializer/buttons/chart-config/pie.js +44 -0
- package/lib/schema-initializer/items/index.d.ts +5 -0
- package/lib/schema-initializer/items/index.js +488 -47
- package/lib/schema-initializer/utils.d.ts +6 -3
- package/lib/schema-initializer/utils.js +23 -12
- package/lib/schema-settings/SchemaSettings.js +113 -27
- package/lib/schema-templates/SchemaTemplateManagerProvider.d.ts +1 -1
- package/lib/schema-templates/SchemaTemplateManagerProvider.js +1 -0
- package/lib/system-settings/SystemSettingsShortcut.js +23 -8
- package/lib/user/ChangePassword.js +1 -0
- package/lib/user/CurrentUser.js +25 -5
- package/lib/user/EditProfile.js +1 -0
- package/lib/user/LanguageSettings.js +26 -7
- package/lib/user/SigninPage.d.ts +3 -0
- package/lib/user/SigninPage.js +4 -2
- package/lib/user/SignupPage.d.ts +3 -0
- package/lib/user/SignupPage.js +4 -2
- package/lib/user/SwitchRole.js +1 -0
- package/lib/workflow/ExecutionResourceProvider.js +1 -1
- package/lib/workflow/WorkflowCanvas.js +17 -14
- package/lib/workflow/calculators.js +12 -6
- package/lib/workflow/components/Duration.d.ts +5 -0
- package/lib/workflow/components/Duration.js +74 -0
- package/lib/workflow/nodes/condition.js +1 -1
- package/lib/workflow/nodes/create.d.ts +3 -0
- package/lib/workflow/nodes/delay.d.ts +35 -0
- package/lib/workflow/nodes/delay.js +48 -0
- package/lib/workflow/nodes/destroy.d.ts +3 -0
- package/lib/workflow/nodes/index.d.ts +1 -1
- package/lib/workflow/nodes/index.js +15 -11
- package/lib/workflow/nodes/query.d.ts +3 -0
- package/lib/workflow/nodes/update.d.ts +3 -0
- package/lib/workflow/schemas/collection.d.ts +3 -0
- package/lib/workflow/schemas/collection.js +4 -1
- package/lib/workflow/schemas/executions.d.ts +15 -0
- package/lib/workflow/schemas/executions.js +26 -1
- package/lib/workflow/schemas/workflows.js +2 -2
- package/lib/workflow/triggers/collection.d.ts +5 -0
- package/lib/workflow/triggers/collection.js +14 -3
- package/lib/workflow/triggers/index.d.ts +2 -2
- package/lib/workflow/triggers/index.js +32 -18
- package/lib/workflow/triggers/schedule/DateFieldsSelect.d.ts +2 -0
- package/lib/{action-logs/ActionLogBlockInitializer.js → workflow/triggers/schedule/DateFieldsSelect.js} +31 -25
- package/lib/workflow/triggers/schedule/EndsByField.d.ts +5 -0
- package/lib/workflow/triggers/schedule/EndsByField.js +73 -0
- package/lib/workflow/triggers/schedule/OnField.d.ts +5 -0
- package/lib/workflow/triggers/schedule/OnField.js +105 -0
- package/lib/workflow/triggers/schedule/RepeatField.d.ts +5 -0
- package/lib/workflow/triggers/schedule/RepeatField.js +146 -0
- package/lib/workflow/triggers/schedule/ScheduleConfig.d.ts +1 -0
- package/lib/workflow/triggers/schedule/ScheduleConfig.js +250 -0
- package/lib/workflow/triggers/schedule/index.d.ts +25 -0
- package/lib/workflow/triggers/schedule/index.js +94 -0
- package/lib/workflow/triggers/schedule/locale/Cron.zh-CN.d.ts +34 -0
- package/lib/workflow/triggers/schedule/locale/Cron.zh-CN.js +44 -0
- package/package.json +8 -7
- package/es/action-logs/ActionLog.Designer.d.ts +0 -1
- package/es/action-logs/ActionLog.Designer.js +0 -104
- package/es/action-logs/ActionLog.d.ts +0 -7
- package/es/action-logs/ActionLog.js +0 -63
- package/es/action-logs/ActionLogBlockInitializer.d.ts +0 -1
- package/es/action-logs/ActionLogProvider.d.ts +0 -1
- package/es/action-logs/ActionLogProvider.js +0 -24
- package/es/action-logs/index.d.ts +0 -3
- package/es/action-logs/index.js +0 -3
- package/es/action-logs/utils.d.ts +0 -363
- package/es/action-logs/utils.js +0 -313
- package/es/schema-component/antd/chart/Chart.d.ts +0 -1
- package/es/schema-component/antd/chart/Chart.js +0 -4
- package/es/schema-component/antd/chart/index.d.ts +0 -1
- package/es/schema-component/antd/chart/index.js +0 -1
- package/es/slate/RichText.d.ts +0 -1
- package/es/slate/RichText.js +0 -305
- package/es/slate/Slate.d.ts +0 -6
- package/es/slate/Slate.js +0 -40
- package/es/slate/components.d.ts +0 -20
- package/es/slate/components.js +0 -95
- package/es/slate/index.d.ts +0 -1
- package/es/slate/index.js +0 -1
- package/es/slate/index.less +0 -51
- package/es/slate/materialicons.woff2 +0 -0
- package/lib/action-logs/ActionLog.Designer.d.ts +0 -1
- package/lib/action-logs/ActionLog.Designer.js +0 -122
- package/lib/action-logs/ActionLog.d.ts +0 -7
- package/lib/action-logs/ActionLog.js +0 -80
- package/lib/action-logs/ActionLogBlockInitializer.d.ts +0 -1
- package/lib/action-logs/ActionLogProvider.d.ts +0 -1
- package/lib/action-logs/index.d.ts +0 -3
- package/lib/action-logs/index.js +0 -44
- package/lib/action-logs/utils.d.ts +0 -363
- package/lib/action-logs/utils.js +0 -323
- package/lib/schema-component/antd/chart/Chart.d.ts +0 -1
- package/lib/schema-component/antd/chart/Chart.js +0 -16
- package/lib/schema-component/antd/chart/index.d.ts +0 -1
- package/lib/slate/RichText.d.ts +0 -1
- package/lib/slate/RichText.js +0 -340
- package/lib/slate/Slate.d.ts +0 -6
- package/lib/slate/Slate.js +0 -56
- package/lib/slate/components.d.ts +0 -20
- package/lib/slate/components.js +0 -127
- package/lib/slate/index.d.ts +0 -1
- package/lib/slate/index.less +0 -51
- package/lib/slate/materialicons.woff2 +0 -0
- package/src/acl/ACLProvider.tsx +0 -167
- package/src/acl/ACLShortcut.tsx +0 -42
- package/src/acl/Configuration/MenuConfigure.tsx +0 -110
- package/src/acl/Configuration/RoleConfigure.tsx +0 -68
- package/src/acl/Configuration/RoleTable.tsx +0 -70
- package/src/acl/Configuration/RolesResourcesActions.tsx +0 -214
- package/src/acl/Configuration/ScopeSelect.tsx +0 -44
- package/src/acl/Configuration/StrategyActions.tsx +0 -117
- package/src/acl/Configuration/index.tsx +0 -6
- package/src/acl/Configuration/schemas/roleCollections.ts +0 -211
- package/src/acl/Configuration/schemas/roles.ts +0 -357
- package/src/acl/Configuration/schemas/scopes.ts +0 -358
- package/src/acl/Configuration/schemas/useRoleResourceValues.ts +0 -31
- package/src/acl/Configuration/schemas/useSaveRoleResourceAction.ts +0 -23
- package/src/acl/index.md +0 -12
- package/src/acl/index.tsx +0 -3
- package/src/action-logs/ActionLog.Designer.tsx +0 -86
- package/src/action-logs/ActionLog.tsx +0 -58
- package/src/action-logs/ActionLogBlockInitializer.tsx +0 -25
- package/src/action-logs/ActionLogProvider.tsx +0 -20
- package/src/action-logs/demos/demo1.tsx +0 -88
- package/src/action-logs/demos/mockData.ts +0 -285
- package/src/action-logs/index.md +0 -12
- package/src/action-logs/index.ts +0 -3
- package/src/action-logs/utils.ts +0 -303
- package/src/antd-config-provider/demos/demo1.tsx +0 -25
- package/src/antd-config-provider/index.md +0 -12
- package/src/antd-config-provider/index.tsx +0 -35
- package/src/api-client/APIClient.ts +0 -6
- package/src/api-client/APIClientProvider.tsx +0 -12
- package/src/api-client/__tests__/APIClient.test.tsx +0 -26
- package/src/api-client/context.ts +0 -4
- package/src/api-client/demos/demo1.tsx +0 -24
- package/src/api-client/demos/demo2.tsx +0 -23
- package/src/api-client/demos/demo3.tsx +0 -67
- package/src/api-client/hooks/assign.ts +0 -118
- package/src/api-client/hooks/index.ts +0 -4
- package/src/api-client/hooks/useAPIClient.ts +0 -6
- package/src/api-client/hooks/useRequest.ts +0 -63
- package/src/api-client/hooks/useResource.ts +0 -7
- package/src/api-client/index.md +0 -174
- package/src/api-client/index.tsx +0 -3
- package/src/application/__tests__/__snapshots__/compose.test.tsx.snap +0 -77
- package/src/application/__tests__/compose.test.tsx +0 -95
- package/src/application/compose.tsx +0 -18
- package/src/application/demos/demo1/Hello.tsx +0 -20
- package/src/application/demos/demo1/RouteSchemaComponent.tsx +0 -7
- package/src/application/demos/demo1/index.tsx +0 -23
- package/src/application/demos/demo1/routes.ts +0 -29
- package/src/application/demos/demo2/apiClient.ts +0 -10
- package/src/application/demos/demo2/index.tsx +0 -65
- package/src/application/demos/demo2/mock.ts +0 -198
- package/src/application/index.md +0 -14
- package/src/application/index.tsx +0 -1
- package/src/async-data-provider/demos/demo1.tsx +0 -22
- package/src/async-data-provider/demos/demo2.tsx +0 -50
- package/src/async-data-provider/demos/demo3.tsx +0 -85
- package/src/async-data-provider/index.md +0 -155
- package/src/async-data-provider/index.tsx +0 -25
- package/src/block-provider/BlockProvider.tsx +0 -193
- package/src/block-provider/BlockSchemaComponentProvider.tsx +0 -43
- package/src/block-provider/CalendarBlockProvider.tsx +0 -53
- package/src/block-provider/DetailsBlockProvider.tsx +0 -62
- package/src/block-provider/FormBlockProvider.tsx +0 -58
- package/src/block-provider/KanbanBlockProvider.tsx +0 -104
- package/src/block-provider/TableBlockProvider.tsx +0 -123
- package/src/block-provider/TableFieldProvider.tsx +0 -150
- package/src/block-provider/TableSelectorProvider.tsx +0 -100
- package/src/block-provider/hooks/index.ts +0 -333
- package/src/block-provider/index.tsx +0 -10
- package/src/board/Board.tsx +0 -294
- package/src/board/Card.tsx +0 -24
- package/src/board/CardAdder.tsx +0 -24
- package/src/board/CardForm.tsx +0 -44
- package/src/board/Column.tsx +0 -75
- package/src/board/ColumnAdder.tsx +0 -26
- package/src/board/ColumnForm.tsx +0 -27
- package/src/board/DefaultCard.tsx +0 -21
- package/src/board/DefaultColumnHeader.tsx +0 -72
- package/src/board/Kanban.tsx +0 -128
- package/src/board/demos/demo2.tsx +0 -122
- package/src/board/helpers.ts +0 -91
- package/src/board/index.md +0 -14
- package/src/board/index.ts +0 -2
- package/src/board/services.ts +0 -41
- package/src/board/style.less +0 -153
- package/src/board/utils.ts +0 -56
- package/src/board/withDroppable.tsx +0 -19
- package/src/china-region/index.tsx +0 -78
- package/src/collection-manager/CollectionField.tsx +0 -77
- package/src/collection-manager/CollectionFieldProvider.tsx +0 -19
- package/src/collection-manager/CollectionManagerProvider.tsx +0 -61
- package/src/collection-manager/CollectionManagerSchemaComponentProvider.tsx +0 -29
- package/src/collection-manager/CollectionManagerShortcut.tsx +0 -41
- package/src/collection-manager/CollectionProvider.tsx +0 -14
- package/src/collection-manager/Configuration/AddFieldAction.tsx +0 -148
- package/src/collection-manager/Configuration/AddSubFieldAction.tsx +0 -140
- package/src/collection-manager/Configuration/ConfigurationTable.tsx +0 -180
- package/src/collection-manager/Configuration/EditFieldAction.tsx +0 -120
- package/src/collection-manager/Configuration/EditSubFieldAction.tsx +0 -120
- package/src/collection-manager/Configuration/index.tsx +0 -4
- package/src/collection-manager/Configuration/interfaces.tsx +0 -48
- package/src/collection-manager/Configuration/schemas/collectionFields.ts +0 -204
- package/src/collection-manager/Configuration/schemas/collections.ts +0 -279
- package/src/collection-manager/ResourceActionProvider.tsx +0 -127
- package/src/collection-manager/action-hooks.ts +0 -325
- package/src/collection-manager/context.ts +0 -11
- package/src/collection-manager/demos/demo2.tsx +0 -124
- package/src/collection-manager/demos/demo3.tsx +0 -67
- package/src/collection-manager/demos/demo4.tsx +0 -164
- package/src/collection-manager/hooks/index.ts +0 -4
- package/src/collection-manager/hooks/useCollection.ts +0 -18
- package/src/collection-manager/hooks/useCollectionDataSource.ts +0 -17
- package/src/collection-manager/hooks/useCollectionField.ts +0 -24
- package/src/collection-manager/hooks/useCollectionManager.ts +0 -40
- package/src/collection-manager/index.md +0 -145
- package/src/collection-manager/index.tsx +0 -11
- package/src/collection-manager/interfaces/attachment.ts +0 -92
- package/src/collection-manager/interfaces/checkbox.ts +0 -24
- package/src/collection-manager/interfaces/checkboxGroup.ts +0 -27
- package/src/collection-manager/interfaces/chinaRegion.ts +0 -91
- package/src/collection-manager/interfaces/createdAt.ts +0 -30
- package/src/collection-manager/interfaces/createdBy.ts +0 -63
- package/src/collection-manager/interfaces/datetime.ts +0 -30
- package/src/collection-manager/interfaces/email.ts +0 -27
- package/src/collection-manager/interfaces/icon.ts +0 -22
- package/src/collection-manager/interfaces/id.ts +0 -47
- package/src/collection-manager/interfaces/index.ts +0 -27
- package/src/collection-manager/interfaces/input.ts +0 -32
- package/src/collection-manager/interfaces/linkTo.ts +0 -139
- package/src/collection-manager/interfaces/markdown.ts +0 -28
- package/src/collection-manager/interfaces/multipleSelect.ts +0 -31
- package/src/collection-manager/interfaces/number.ts +0 -45
- package/src/collection-manager/interfaces/password.ts +0 -22
- package/src/collection-manager/interfaces/percent.ts +0 -46
- package/src/collection-manager/interfaces/phone.ts +0 -27
- package/src/collection-manager/interfaces/properties/index.ts +0 -277
- package/src/collection-manager/interfaces/properties/operators.ts +0 -127
- package/src/collection-manager/interfaces/radioGroup.ts +0 -27
- package/src/collection-manager/interfaces/richText.ts +0 -29
- package/src/collection-manager/interfaces/select.ts +0 -28
- package/src/collection-manager/interfaces/subTable.ts +0 -209
- package/src/collection-manager/interfaces/textarea.ts +0 -29
- package/src/collection-manager/interfaces/time.ts +0 -42
- package/src/collection-manager/interfaces/types.ts +0 -14
- package/src/collection-manager/interfaces/updatedAt.ts +0 -30
- package/src/collection-manager/interfaces/updatedBy.ts +0 -62
- package/src/collection-manager/sub-table.tsx +0 -273
- package/src/collection-manager/types.ts +0 -38
- package/src/document-title/index.md +0 -21
- package/src/document-title/index.tsx +0 -54
- package/src/file-manager/FileStorageShortcut.tsx +0 -40
- package/src/file-manager/StorageOptions.tsx +0 -106
- package/src/file-manager/index.ts +0 -1
- package/src/file-manager/schemas/storage.ts +0 -348
- package/src/global.less +0 -27
- package/src/i18n/i18n.ts +0 -37
- package/src/i18n/index.md +0 -10
- package/src/i18n/index.ts +0 -1
- package/src/icon/Icon.tsx +0 -61
- package/src/icon/index.md +0 -76
- package/src/icon/index.ts +0 -1
- package/src/index.tsx +0 -30
- package/src/locale/en_US.ts +0 -305
- package/src/locale/index.ts +0 -15
- package/src/locale/zh_CN.ts +0 -512
- package/src/plugin-manager/PluginManager.tsx +0 -122
- package/src/plugin-manager/PluginManagerProvider.tsx +0 -7
- package/src/plugin-manager/context.ts +0 -3
- package/src/plugin-manager/demos/demo1.tsx +0 -34
- package/src/plugin-manager/demos/plugins/index.tsx +0 -5
- package/src/plugin-manager/demos/plugins/plugin1.tsx +0 -16
- package/src/plugin-manager/demos/plugins/plugin2.tsx +0 -65
- package/src/plugin-manager/demos/plugins/plugin3.tsx +0 -17
- package/src/plugin-manager/demos/plugins/plugin4.tsx +0 -65
- package/src/plugin-manager/demos/plugins/plugin5.tsx +0 -17
- package/src/plugin-manager/index.md +0 -59
- package/src/plugin-manager/index.ts +0 -3
- package/src/powered-by/index.tsx +0 -27
- package/src/record-provider/index.md +0 -30
- package/src/record-provider/index.tsx +0 -33
- package/src/route-switch/RouteSwitch.tsx +0 -59
- package/src/route-switch/RouteSwitchProvider.tsx +0 -20
- package/src/route-switch/__tests__/RouteSwitch.test.tsx +0 -33
- package/src/route-switch/__tests__/__snapshots__/RouteSwitch.test.tsx.snap +0 -9
- package/src/route-switch/antd/admin-layout/index.md +0 -27
- package/src/route-switch/antd/admin-layout/index.tsx +0 -206
- package/src/route-switch/antd/auth-layout/index.md +0 -9
- package/src/route-switch/antd/auth-layout/index.tsx +0 -31
- package/src/route-switch/antd/index.ts +0 -4
- package/src/route-switch/antd/route-schema-component/index.tsx +0 -8
- package/src/route-switch/context.ts +0 -9
- package/src/route-switch/demos/demo1.tsx +0 -31
- package/src/route-switch/hooks.ts +0 -23
- package/src/route-switch/index.md +0 -10
- package/src/route-switch/index.tsx +0 -7
- package/src/route-switch/types.ts +0 -34
- package/src/schema-component/antd/AntdSchemaComponentProvider.tsx +0 -10
- package/src/schema-component/antd/action/Action.Container.tsx +0 -26
- package/src/schema-component/antd/action/Action.Designer.tsx +0 -301
- package/src/schema-component/antd/action/Action.Drawer.tsx +0 -105
- package/src/schema-component/antd/action/Action.Link.tsx +0 -8
- package/src/schema-component/antd/action/Action.Modal.tsx +0 -94
- package/src/schema-component/antd/action/Action.Page.tsx +0 -74
- package/src/schema-component/antd/action/Action.Popover.tsx +0 -0
- package/src/schema-component/antd/action/Action.tsx +0 -178
- package/src/schema-component/antd/action/ActionBar.tsx +0 -52
- package/src/schema-component/antd/action/context.tsx +0 -13
- package/src/schema-component/antd/action/demos/demo1.tsx +0 -65
- package/src/schema-component/antd/action/demos/demo2.tsx +0 -66
- package/src/schema-component/antd/action/demos/demo3.tsx +0 -107
- package/src/schema-component/antd/action/demos/demo4.tsx +0 -53
- package/src/schema-component/antd/action/hooks.ts +0 -53
- package/src/schema-component/antd/action/index.md +0 -42
- package/src/schema-component/antd/action/index.tsx +0 -5
- package/src/schema-component/antd/action/types.ts +0 -17
- package/src/schema-component/antd/block-item/BlockItem.tsx +0 -63
- package/src/schema-component/antd/block-item/TestDesigner.tsx +0 -19
- package/src/schema-component/antd/block-item/demos/demo1.tsx +0 -46
- package/src/schema-component/antd/block-item/index.md +0 -12
- package/src/schema-component/antd/block-item/index.tsx +0 -3
- package/src/schema-component/antd/calendar/Calendar.Designer.tsx +0 -142
- package/src/schema-component/antd/calendar/Calendar.tsx +0 -156
- package/src/schema-component/antd/calendar/Event.tsx +0 -6
- package/src/schema-component/antd/calendar/Nav.tsx +0 -19
- package/src/schema-component/antd/calendar/Title.tsx +0 -15
- package/src/schema-component/antd/calendar/Today.tsx +0 -23
- package/src/schema-component/antd/calendar/ViewSelect.tsx +0 -25
- package/src/schema-component/antd/calendar/context.ts +0 -5
- package/src/schema-component/antd/calendar/demos/collections.ts +0 -1321
- package/src/schema-component/antd/calendar/demos/data.ts +0 -131
- package/src/schema-component/antd/calendar/demos/defaultValues.ts +0 -180
- package/src/schema-component/antd/calendar/demos/demo1.tsx +0 -67
- package/src/schema-component/antd/calendar/demos/demo2.tsx +0 -117
- package/src/schema-component/antd/calendar/index.md +0 -18
- package/src/schema-component/antd/calendar/index.ts +0 -21
- package/src/schema-component/antd/calendar/style.less +0 -767
- package/src/schema-component/antd/calendar/types.d.ts +0 -8
- package/src/schema-component/antd/calendar/utils.ts +0 -13
- package/src/schema-component/antd/card-item/CardItem.tsx +0 -13
- package/src/schema-component/antd/card-item/index.md +0 -10
- package/src/schema-component/antd/card-item/index.ts +0 -1
- package/src/schema-component/antd/cascader/Cascader.tsx +0 -99
- package/src/schema-component/antd/cascader/ReadPretty.tsx +0 -35
- package/src/schema-component/antd/cascader/defaultFieldNames.ts +0 -5
- package/src/schema-component/antd/cascader/demos/demo1.tsx +0 -83
- package/src/schema-component/antd/cascader/demos/demo2.tsx +0 -130
- package/src/schema-component/antd/cascader/index.md +0 -37
- package/src/schema-component/antd/cascader/index.ts +0 -1
- package/src/schema-component/antd/chart/Chart.tsx +0 -5
- package/src/schema-component/antd/chart/index.md +0 -8
- package/src/schema-component/antd/chart/index.ts +0 -1
- package/src/schema-component/antd/checkbox/Checkbox.tsx +0 -65
- package/src/schema-component/antd/checkbox/demos/demo1.tsx +0 -41
- package/src/schema-component/antd/checkbox/demos/demo2.tsx +0 -56
- package/src/schema-component/antd/checkbox/index.md +0 -18
- package/src/schema-component/antd/checkbox/index.ts +0 -1
- package/src/schema-component/antd/color-select/ColorSelect.tsx +0 -51
- package/src/schema-component/antd/color-select/demos/demo1.tsx +0 -41
- package/src/schema-component/antd/color-select/index.md +0 -14
- package/src/schema-component/antd/color-select/index.ts +0 -1
- package/src/schema-component/antd/date-picker/DatePicker.tsx +0 -27
- package/src/schema-component/antd/date-picker/ReadPretty.tsx +0 -43
- package/src/schema-component/antd/date-picker/demos/demo1.tsx +0 -49
- package/src/schema-component/antd/date-picker/demos/demo2.tsx +0 -41
- package/src/schema-component/antd/date-picker/index.md +0 -25
- package/src/schema-component/antd/date-picker/index.ts +0 -1
- package/src/schema-component/antd/date-picker/util.ts +0 -42
- package/src/schema-component/antd/filter/DynamicComponent.tsx +0 -56
- package/src/schema-component/antd/filter/Filter.Action.Designer.tsx +0 -120
- package/src/schema-component/antd/filter/Filter.tsx +0 -42
- package/src/schema-component/antd/filter/FilterAction.tsx +0 -121
- package/src/schema-component/antd/filter/FilterGroup.tsx +0 -103
- package/src/schema-component/antd/filter/FilterItem.tsx +0 -57
- package/src/schema-component/antd/filter/FilterItems.tsx +0 -21
- package/src/schema-component/antd/filter/SaveDefaultValue.tsx +0 -43
- package/src/schema-component/antd/filter/context.ts +0 -14
- package/src/schema-component/antd/filter/demos/demo2.tsx +0 -101
- package/src/schema-component/antd/filter/demos/demo3.tsx +0 -180
- package/src/schema-component/antd/filter/demos/demo4.tsx +0 -170
- package/src/schema-component/antd/filter/demos/demo5.tsx +0 -104
- package/src/schema-component/antd/filter/demos/demo6.tsx +0 -105
- package/src/schema-component/antd/filter/index.md +0 -30
- package/src/schema-component/antd/filter/index.ts +0 -3
- package/src/schema-component/antd/filter/style.less +0 -18
- package/src/schema-component/antd/filter/useFilterActionProps.ts +0 -120
- package/src/schema-component/antd/filter/useValues.ts +0 -83
- package/src/schema-component/antd/form/Form.Designer.tsx +0 -19
- package/src/schema-component/antd/form/Form.tsx +0 -125
- package/src/schema-component/antd/form/demos/apiClient.ts +0 -21
- package/src/schema-component/antd/form/demos/demo1.tsx +0 -62
- package/src/schema-component/antd/form/demos/demo2.tsx +0 -61
- package/src/schema-component/antd/form/demos/demo3.tsx +0 -60
- package/src/schema-component/antd/form/demos/demo4.tsx +0 -67
- package/src/schema-component/antd/form/demos/demo5.tsx +0 -106
- package/src/schema-component/antd/form/demos/demo6.tsx +0 -61
- package/src/schema-component/antd/form/demos/demo7.tsx +0 -68
- package/src/schema-component/antd/form/demos/demo8.tsx +0 -85
- package/src/schema-component/antd/form/index.md +0 -54
- package/src/schema-component/antd/form/index.tsx +0 -1
- package/src/schema-component/antd/form-item/FormItem.tsx +0 -213
- package/src/schema-component/antd/form-item/index.md +0 -10
- package/src/schema-component/antd/form-item/index.tsx +0 -1
- package/src/schema-component/antd/form-v2/Form.Designer.tsx +0 -217
- package/src/schema-component/antd/form-v2/Form.tsx +0 -106
- package/src/schema-component/antd/form-v2/demos/collections.ts +0 -1321
- package/src/schema-component/antd/form-v2/demos/demo1.tsx +0 -83
- package/src/schema-component/antd/form-v2/demos/demo2.tsx +0 -103
- package/src/schema-component/antd/form-v2/demos/demo3.tsx +0 -103
- package/src/schema-component/antd/form-v2/index.md +0 -30
- package/src/schema-component/antd/form-v2/index.ts +0 -7
- package/src/schema-component/antd/grid/Block.tsx +0 -13
- package/src/schema-component/antd/grid/Grid.tsx +0 -247
- package/src/schema-component/antd/grid/demos/demo1.tsx +0 -162
- package/src/schema-component/antd/grid/demos/demo2.tsx +0 -73
- package/src/schema-component/antd/grid/demos/demo3.tsx +0 -47
- package/src/schema-component/antd/grid/index.md +0 -14
- package/src/schema-component/antd/grid/index.tsx +0 -3
- package/src/schema-component/antd/icon-picker/IconPicker.tsx +0 -79
- package/src/schema-component/antd/icon-picker/demos/demo1.tsx +0 -41
- package/src/schema-component/antd/icon-picker/index.md +0 -14
- package/src/schema-component/antd/icon-picker/index.ts +0 -1
- package/src/schema-component/antd/index.less +0 -4
- package/src/schema-component/antd/index.ts +0 -35
- package/src/schema-component/antd/input/EllipsisWithTooltip.tsx +0 -47
- package/src/schema-component/antd/input/Input.tsx +0 -39
- package/src/schema-component/antd/input/ReadPretty.tsx +0 -116
- package/src/schema-component/antd/input/demos/demo1.tsx +0 -41
- package/src/schema-component/antd/input/demos/demo2.tsx +0 -66
- package/src/schema-component/antd/input/demos/demo3.tsx +0 -43
- package/src/schema-component/antd/input/index.md +0 -28
- package/src/schema-component/antd/input/index.ts +0 -2
- package/src/schema-component/antd/input/shared.ts +0 -7
- package/src/schema-component/antd/input-number/InputNumber.tsx +0 -8
- package/src/schema-component/antd/input-number/ReadPretty.tsx +0 -21
- package/src/schema-component/antd/input-number/demos/demo1.tsx +0 -41
- package/src/schema-component/antd/input-number/demos/demo2.tsx +0 -49
- package/src/schema-component/antd/input-number/demos/demo3.tsx +0 -51
- package/src/schema-component/antd/input-number/index.md +0 -22
- package/src/schema-component/antd/input-number/index.ts +0 -1
- package/src/schema-component/antd/kanban/Kanban.Card.Designer.tsx +0 -103
- package/src/schema-component/antd/kanban/Kanban.Card.tsx +0 -98
- package/src/schema-component/antd/kanban/Kanban.CardViewer.tsx +0 -5
- package/src/schema-component/antd/kanban/Kanban.Designer.tsx +0 -64
- package/src/schema-component/antd/kanban/Kanban.tsx +0 -146
- package/src/schema-component/antd/kanban/context.ts +0 -4
- package/src/schema-component/antd/kanban/demos/collections.ts +0 -1321
- package/src/schema-component/antd/kanban/demos/data.ts +0 -2145
- package/src/schema-component/antd/kanban/demos/demo1.tsx +0 -92
- package/src/schema-component/antd/kanban/index.less +0 -16
- package/src/schema-component/antd/kanban/index.md +0 -12
- package/src/schema-component/antd/kanban/index.ts +0 -16
- package/src/schema-component/antd/markdown/Markdown.Void.Designer.tsx +0 -26
- package/src/schema-component/antd/markdown/Markdown.Void.tsx +0 -78
- package/src/schema-component/antd/markdown/Markdown.tsx +0 -30
- package/src/schema-component/antd/markdown/demos/demo1.tsx +0 -41
- package/src/schema-component/antd/markdown/demos/demo2.tsx +0 -51
- package/src/schema-component/antd/markdown/index.md +0 -18
- package/src/schema-component/antd/markdown/index.ts +0 -1
- package/src/schema-component/antd/markdown/style.less +0 -12
- package/src/schema-component/antd/markdown/util.ts +0 -16
- package/src/schema-component/antd/menu/Menu.Designer.tsx +0 -342
- package/src/schema-component/antd/menu/Menu.tsx +0 -433
- package/src/schema-component/antd/menu/MenuItemInitializers/index.tsx +0 -229
- package/src/schema-component/antd/menu/demos/demo1.tsx +0 -93
- package/src/schema-component/antd/menu/demos/demo2.tsx +0 -93
- package/src/schema-component/antd/menu/demos/demo3.tsx +0 -118
- package/src/schema-component/antd/menu/index.md +0 -27
- package/src/schema-component/antd/menu/index.ts +0 -4
- package/src/schema-component/antd/menu/util.ts +0 -53
- package/src/schema-component/antd/page/Page.tsx +0 -21
- package/src/schema-component/antd/page/demos/demo1.tsx +0 -31
- package/src/schema-component/antd/page/index.md +0 -12
- package/src/schema-component/antd/page/index.ts +0 -1
- package/src/schema-component/antd/pagination/index.tsx +0 -12
- package/src/schema-component/antd/password/Password.tsx +0 -69
- package/src/schema-component/antd/password/PasswordStrength.tsx +0 -162
- package/src/schema-component/antd/password/demos/demo1.tsx +0 -41
- package/src/schema-component/antd/password/demos/demo2.tsx +0 -45
- package/src/schema-component/antd/password/index.md +0 -24
- package/src/schema-component/antd/password/index.ts +0 -1
- package/src/schema-component/antd/radio/Radio.tsx +0 -47
- package/src/schema-component/antd/radio/demos/demo1.tsx +0 -42
- package/src/schema-component/antd/radio/demos/demo2.tsx +0 -55
- package/src/schema-component/antd/radio/demos/demo3.tsx +0 -56
- package/src/schema-component/antd/radio/index.md +0 -22
- package/src/schema-component/antd/radio/index.ts +0 -1
- package/src/schema-component/antd/record-picker/InputRecordPicker.tsx +0 -112
- package/src/schema-component/antd/record-picker/ReadPrettyRecordPicker.tsx +0 -56
- package/src/schema-component/antd/record-picker/RecordPicker.tsx +0 -9
- package/src/schema-component/antd/record-picker/demos/demo1.tsx +0 -125
- package/src/schema-component/antd/record-picker/index.md +0 -82
- package/src/schema-component/antd/record-picker/index.tsx +0 -8
- package/src/schema-component/antd/record-picker/useFieldNames.ts +0 -7
- package/src/schema-component/antd/rich-text/RichText.tsx +0 -42
- package/src/schema-component/antd/rich-text/demos/demo1.tsx +0 -39
- package/src/schema-component/antd/rich-text/index.md +0 -12
- package/src/schema-component/antd/rich-text/index.ts +0 -1
- package/src/schema-component/antd/rich-text/style.less +0 -950
- package/src/schema-component/antd/select/ReadPretty.tsx +0 -33
- package/src/schema-component/antd/select/Select.tsx +0 -83
- package/src/schema-component/antd/select/demos/demo1.tsx +0 -60
- package/src/schema-component/antd/select/demos/demo2.tsx +0 -64
- package/src/schema-component/antd/select/demos/demo3.tsx +0 -77
- package/src/schema-component/antd/select/index.md +0 -38
- package/src/schema-component/antd/select/index.ts +0 -1
- package/src/schema-component/antd/select/shared.ts +0 -26
- package/src/schema-component/antd/space/index.tsx +0 -18
- package/src/schema-component/antd/table/Table.Array.Designer.tsx +0 -15
- package/src/schema-component/antd/table/Table.Array.tsx +0 -277
- package/src/schema-component/antd/table/Table.Column.ActionBar.tsx +0 -53
- package/src/schema-component/antd/table/Table.Column.Decorator.tsx +0 -59
- package/src/schema-component/antd/table/Table.Column.Designer.tsx +0 -147
- package/src/schema-component/antd/table/Table.Column.tsx +0 -7
- package/src/schema-component/antd/table/Table.Designer.tsx +0 -17
- package/src/schema-component/antd/table/Table.RowActionDesigner.tsx +0 -23
- package/src/schema-component/antd/table/Table.RowSelection.tsx +0 -28
- package/src/schema-component/antd/table/Table.Void.Designer.tsx +0 -208
- package/src/schema-component/antd/table/Table.Void.tsx +0 -118
- package/src/schema-component/antd/table/demos/demo1.tsx +0 -47
- package/src/schema-component/antd/table/demos/demo2.tsx +0 -47
- package/src/schema-component/antd/table/demos/demo3.tsx +0 -47
- package/src/schema-component/antd/table/demos/demo4.tsx +0 -228
- package/src/schema-component/antd/table/index.md +0 -29
- package/src/schema-component/antd/table/index.tsx +0 -27
- package/src/schema-component/antd/table-v2/Table.ActionColumnDesigner.tsx +0 -23
- package/src/schema-component/antd/table-v2/Table.Column.ActionBar.tsx +0 -53
- package/src/schema-component/antd/table-v2/Table.Column.Decorator.tsx +0 -59
- package/src/schema-component/antd/table-v2/Table.Column.Designer.tsx +0 -106
- package/src/schema-component/antd/table-v2/Table.Column.tsx +0 -7
- package/src/schema-component/antd/table-v2/Table.Designer.tsx +0 -17
- package/src/schema-component/antd/table-v2/Table.tsx +0 -283
- package/src/schema-component/antd/table-v2/TableBlockDesigner.tsx +0 -213
- package/src/schema-component/antd/table-v2/TableField.tsx +0 -27
- package/src/schema-component/antd/table-v2/TableSelector.tsx +0 -3
- package/src/schema-component/antd/table-v2/TableSelectorDesigner.tsx +0 -196
- package/src/schema-component/antd/table-v2/demos/collections.ts +0 -1321
- package/src/schema-component/antd/table-v2/demos/data.ts +0 -0
- package/src/schema-component/antd/table-v2/demos/demo1.tsx +0 -220
- package/src/schema-component/antd/table-v2/demos/demo2.tsx +0 -192
- package/src/schema-component/antd/table-v2/index.md +0 -16
- package/src/schema-component/antd/table-v2/index.ts +0 -20
- package/src/schema-component/antd/tabs/Tabs.Designer.tsx +0 -49
- package/src/schema-component/antd/tabs/Tabs.tsx +0 -91
- package/src/schema-component/antd/tabs/demos/demo1.tsx +0 -56
- package/src/schema-component/antd/tabs/index.md +0 -15
- package/src/schema-component/antd/tabs/index.ts +0 -1
- package/src/schema-component/antd/time-picker/ReadPretty.tsx +0 -19
- package/src/schema-component/antd/time-picker/TimePicker.tsx +0 -37
- package/src/schema-component/antd/time-picker/demos/demo1.tsx +0 -41
- package/src/schema-component/antd/time-picker/demos/demo2.tsx +0 -42
- package/src/schema-component/antd/time-picker/index.md +0 -18
- package/src/schema-component/antd/time-picker/index.ts +0 -1
- package/src/schema-component/antd/tree-select/ReadPretty.tsx +0 -56
- package/src/schema-component/antd/tree-select/TreeSelect.tsx +0 -23
- package/src/schema-component/antd/tree-select/demos/demo1.tsx +0 -85
- package/src/schema-component/antd/tree-select/index.md +0 -14
- package/src/schema-component/antd/tree-select/index.ts +0 -1
- package/src/schema-component/antd/upload/ReadPretty.tsx +0 -146
- package/src/schema-component/antd/upload/Upload.tsx +0 -209
- package/src/schema-component/antd/upload/demos/apiClient.ts +0 -43
- package/src/schema-component/antd/upload/demos/demo1.tsx +0 -51
- package/src/schema-component/antd/upload/demos/demo2.tsx +0 -115
- package/src/schema-component/antd/upload/index.md +0 -18
- package/src/schema-component/antd/upload/index.ts +0 -1
- package/src/schema-component/antd/upload/placeholder.ts +0 -62
- package/src/schema-component/antd/upload/shared.ts +0 -227
- package/src/schema-component/antd/upload/style.less +0 -61
- package/src/schema-component/antd/upload/type.d.ts +0 -26
- package/src/schema-component/common/dnd-context/index.md +0 -8
- package/src/schema-component/common/dnd-context/index.tsx +0 -74
- package/src/schema-component/common/index.ts +0 -3
- package/src/schema-component/common/sortable-item/SortableItem.tsx +0 -91
- package/src/schema-component/common/sortable-item/index.md +0 -9
- package/src/schema-component/common/sortable-item/index.ts +0 -1
- package/src/schema-component/context.ts +0 -4
- package/src/schema-component/core/DesignableSwitch.tsx +0 -25
- package/src/schema-component/core/FormProvider.tsx +0 -24
- package/src/schema-component/core/RemoteSchemaComponent.tsx +0 -64
- package/src/schema-component/core/SchemaComponent.tsx +0 -45
- package/src/schema-component/core/SchemaComponentOptions.tsx +0 -16
- package/src/schema-component/core/SchemaComponentProvider.tsx +0 -64
- package/src/schema-component/core/index.tsx +0 -7
- package/src/schema-component/demos/demo1.tsx +0 -83
- package/src/schema-component/demos/demo3.tsx +0 -65
- package/src/schema-component/hooks/__tests__/designable.test.ts +0 -491
- package/src/schema-component/hooks/__tests__/splitWrapSchema.test.ts +0 -87
- package/src/schema-component/hooks/index.ts +0 -8
- package/src/schema-component/hooks/useAttach.ts +0 -21
- package/src/schema-component/hooks/useCompile.ts +0 -13
- package/src/schema-component/hooks/useComponent.ts +0 -14
- package/src/schema-component/hooks/useDesignable.tsx +0 -589
- package/src/schema-component/hooks/useDesigner.ts +0 -11
- package/src/schema-component/hooks/useFieldProps.ts +0 -18
- package/src/schema-component/hooks/useProps.ts +0 -16
- package/src/schema-component/hooks/useSchemaComponentContext.ts +0 -6
- package/src/schema-component/index.md +0 -133
- package/src/schema-component/index.tsx +0 -7
- package/src/schema-component/types.ts +0 -34
- package/src/schema-initializer/SchemaInitializer.tsx +0 -224
- package/src/schema-initializer/SchemaInitializerProvider.tsx +0 -58
- package/src/schema-initializer/buttons/BlockInitializers.tsx +0 -60
- package/src/schema-initializer/buttons/CalendarActionInitializers.tsx +0 -79
- package/src/schema-initializer/buttons/CreateFormBlockInitializers.tsx +0 -42
- package/src/schema-initializer/buttons/CustomFormItemInitializers.tsx +0 -26
- package/src/schema-initializer/buttons/DetailsActionInitializers.tsx +0 -37
- package/src/schema-initializer/buttons/FormActionInitializers.tsx +0 -321
- package/src/schema-initializer/buttons/FormItemInitializers.tsx +0 -44
- package/src/schema-initializer/buttons/KanbanActionInitializers.tsx +0 -35
- package/src/schema-initializer/buttons/KanbanCardFormItemInitializers.tsx +0 -0
- package/src/schema-initializer/buttons/ReadPrettyFormActionInitializers.tsx +0 -119
- package/src/schema-initializer/buttons/ReadPrettyFormItemInitializers.tsx +0 -43
- package/src/schema-initializer/buttons/RecordBlockInitializers.tsx +0 -70
- package/src/schema-initializer/buttons/RecordFormBlockInitializers.tsx +0 -39
- package/src/schema-initializer/buttons/SubTableActionInitializers.tsx +0 -39
- package/src/schema-initializer/buttons/TabPaneInitializers.tsx +0 -106
- package/src/schema-initializer/buttons/TableActionColumnInitializers.tsx +0 -158
- package/src/schema-initializer/buttons/TableActionInitializers.tsx +0 -48
- package/src/schema-initializer/buttons/TableColumnInitializers.tsx +0 -52
- package/src/schema-initializer/buttons/TableSelectorInitializers.tsx +0 -50
- package/src/schema-initializer/buttons/index.ts +0 -18
- package/src/schema-initializer/components/assigned-field/AssignedField.tsx +0 -70
- package/src/schema-initializer/components/assigned-field/index.ts +0 -1
- package/src/schema-initializer/components/index.ts +0 -1
- package/src/schema-initializer/demos/demo1.tsx +0 -123
- package/src/schema-initializer/demos/demo2.tsx +0 -77
- package/src/schema-initializer/demos/demo3.tsx +0 -125
- package/src/schema-initializer/demos/demo4.tsx +0 -130
- package/src/schema-initializer/index.md +0 -121
- package/src/schema-initializer/index.ts +0 -4
- package/src/schema-initializer/items/index.tsx +0 -774
- package/src/schema-initializer/types.ts +0 -73
- package/src/schema-initializer/utils.ts +0 -835
- package/src/schema-settings/GeneralSchemaDesigner.tsx +0 -88
- package/src/schema-settings/SchemaSettings.tsx +0 -572
- package/src/schema-settings/index.ts +0 -3
- package/src/schema-templates/BlockTemplate.tsx +0 -26
- package/src/schema-templates/BlockTemplateDetails.tsx +0 -91
- package/src/schema-templates/BlockTemplatePage.tsx +0 -21
- package/src/schema-templates/SchemaTemplateManagerProvider.tsx +0 -154
- package/src/schema-templates/SchemaTemplateShortcut.tsx +0 -19
- package/src/schema-templates/collections/uiSchemaTemplates.ts +0 -20
- package/src/schema-templates/index.ts +0 -5
- package/src/schema-templates/schemas/uiSchemaTemplates.ts +0 -223
- package/src/settings-form/SettingsForm.tsx +0 -269
- package/src/settings-form/demos/demo1.tsx +0 -133
- package/src/settings-form/index.md +0 -10
- package/src/settings-form/index.ts +0 -1
- package/src/slate/RichText.tsx +0 -258
- package/src/slate/Slate.tsx +0 -32
- package/src/slate/components.tsx +0 -172
- package/src/slate/demos/demo1.tsx +0 -27
- package/src/slate/demos/demo2.tsx +0 -79
- package/src/slate/demos/demo3.tsx +0 -44
- package/src/slate/index.less +0 -51
- package/src/slate/index.md +0 -22
- package/src/slate/index.ts +0 -1
- package/src/slate/materialicons.woff2 +0 -0
- package/src/system-settings/SystemSettingsProvider.tsx +0 -20
- package/src/system-settings/SystemSettingsShortcut.tsx +0 -145
- package/src/system-settings/demos/demo1.tsx +0 -55
- package/src/system-settings/index.md +0 -22
- package/src/system-settings/index.tsx +0 -3
- package/src/user/ChangePassword.tsx +0 -134
- package/src/user/CurrentUser.tsx +0 -55
- package/src/user/CurrentUserProvider.tsx +0 -26
- package/src/user/EditProfile.tsx +0 -119
- package/src/user/LanguageSettings.tsx +0 -44
- package/src/user/SigninPage.tsx +0 -86
- package/src/user/SignupPage.tsx +0 -114
- package/src/user/SwitchRole.tsx +0 -55
- package/src/user/index.md +0 -23
- package/src/user/index.ts +0 -5
- package/src/workflow/ExecutionResourceProvider.tsx +0 -24
- package/src/workflow/WorkflowCanvas.tsx +0 -250
- package/src/workflow/WorkflowLink.tsx +0 -14
- package/src/workflow/WorkflowPage.tsx +0 -47
- package/src/workflow/WorkflowRouteProvider.tsx +0 -12
- package/src/workflow/WorkflowShortcut.tsx +0 -50
- package/src/workflow/calculators.tsx +0 -481
- package/src/workflow/index.tsx +0 -5
- package/src/workflow/nodes/calculation.tsx +0 -34
- package/src/workflow/nodes/condition.tsx +0 -226
- package/src/workflow/nodes/create.tsx +0 -60
- package/src/workflow/nodes/destroy.tsx +0 -31
- package/src/workflow/nodes/index.tsx +0 -269
- package/src/workflow/nodes/parallel.tsx +0 -134
- package/src/workflow/nodes/query.tsx +0 -66
- package/src/workflow/nodes/update.tsx +0 -27
- package/src/workflow/schemas/collection.ts +0 -56
- package/src/workflow/schemas/executions.ts +0 -132
- package/src/workflow/schemas/workflows.ts +0 -323
- package/src/workflow/style.tsx +0 -200
- package/src/workflow/triggers/collection.tsx +0 -102
- package/src/workflow/triggers/index.tsx +0 -135
|
@@ -1,950 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* Quill Editor v1.3.7
|
|
3
|
-
* https://quilljs.com/
|
|
4
|
-
* Copyright (c) 2014, Jason Chen
|
|
5
|
-
* Copyright (c) 2013, salesforce.com
|
|
6
|
-
*/
|
|
7
|
-
.ql-container {
|
|
8
|
-
box-sizing: border-box;
|
|
9
|
-
// font-family: Helvetica, Arial, sans-serif;
|
|
10
|
-
// font-size: 13px;
|
|
11
|
-
height: 100%;
|
|
12
|
-
margin: 0px;
|
|
13
|
-
position: relative;
|
|
14
|
-
}
|
|
15
|
-
.ql-container.ql-disabled .ql-tooltip {
|
|
16
|
-
visibility: hidden;
|
|
17
|
-
}
|
|
18
|
-
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
|
|
19
|
-
pointer-events: none;
|
|
20
|
-
}
|
|
21
|
-
.ql-clipboard {
|
|
22
|
-
left: -100000px;
|
|
23
|
-
height: 1px;
|
|
24
|
-
overflow-y: hidden;
|
|
25
|
-
position: absolute;
|
|
26
|
-
top: 50%;
|
|
27
|
-
}
|
|
28
|
-
.ql-clipboard p {
|
|
29
|
-
margin: 0;
|
|
30
|
-
padding: 0;
|
|
31
|
-
}
|
|
32
|
-
.ql-editor {
|
|
33
|
-
min-height: 10em;
|
|
34
|
-
box-sizing: border-box;
|
|
35
|
-
line-height: 1.42;
|
|
36
|
-
height: 100%;
|
|
37
|
-
outline: none;
|
|
38
|
-
overflow-y: auto;
|
|
39
|
-
padding: 12px 15px;
|
|
40
|
-
tab-size: 4;
|
|
41
|
-
-moz-tab-size: 4;
|
|
42
|
-
text-align: left;
|
|
43
|
-
white-space: pre-wrap;
|
|
44
|
-
word-wrap: break-word;
|
|
45
|
-
}
|
|
46
|
-
.ql-editor > * {
|
|
47
|
-
cursor: text;
|
|
48
|
-
}
|
|
49
|
-
.ql-editor p,
|
|
50
|
-
.ql-editor ol,
|
|
51
|
-
.ql-editor ul,
|
|
52
|
-
.ql-editor pre,
|
|
53
|
-
.ql-editor blockquote,
|
|
54
|
-
.ql-editor h1,
|
|
55
|
-
.ql-editor h2,
|
|
56
|
-
.ql-editor h3,
|
|
57
|
-
.ql-editor h4,
|
|
58
|
-
.ql-editor h5,
|
|
59
|
-
.ql-editor h6 {
|
|
60
|
-
margin: 0;
|
|
61
|
-
padding: 0;
|
|
62
|
-
counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
|
|
63
|
-
}
|
|
64
|
-
.ql-editor ol,
|
|
65
|
-
.ql-editor ul {
|
|
66
|
-
padding-left: 0;
|
|
67
|
-
}
|
|
68
|
-
.ql-editor ol > li,
|
|
69
|
-
.ql-editor ul > li {
|
|
70
|
-
list-style-type: none;
|
|
71
|
-
}
|
|
72
|
-
.ql-editor ul > li::before {
|
|
73
|
-
content: '\2022';
|
|
74
|
-
}
|
|
75
|
-
.ql-editor ul[data-checked='true'],
|
|
76
|
-
.ql-editor ul[data-checked='false'] {
|
|
77
|
-
pointer-events: none;
|
|
78
|
-
}
|
|
79
|
-
.ql-editor ul[data-checked='true'] > li *,
|
|
80
|
-
.ql-editor ul[data-checked='false'] > li * {
|
|
81
|
-
pointer-events: all;
|
|
82
|
-
}
|
|
83
|
-
.ql-editor ul[data-checked='true'] > li::before,
|
|
84
|
-
.ql-editor ul[data-checked='false'] > li::before {
|
|
85
|
-
color: #777;
|
|
86
|
-
cursor: pointer;
|
|
87
|
-
pointer-events: all;
|
|
88
|
-
}
|
|
89
|
-
.ql-editor ul[data-checked='true'] > li::before {
|
|
90
|
-
content: '\2611';
|
|
91
|
-
}
|
|
92
|
-
.ql-editor ul[data-checked='false'] > li::before {
|
|
93
|
-
content: '\2610';
|
|
94
|
-
}
|
|
95
|
-
.ql-editor li::before {
|
|
96
|
-
display: inline-block;
|
|
97
|
-
white-space: nowrap;
|
|
98
|
-
width: 1.2em;
|
|
99
|
-
}
|
|
100
|
-
.ql-editor li:not(.ql-direction-rtl)::before {
|
|
101
|
-
margin-left: -1.5em;
|
|
102
|
-
margin-right: 0.3em;
|
|
103
|
-
text-align: right;
|
|
104
|
-
}
|
|
105
|
-
.ql-editor li.ql-direction-rtl::before {
|
|
106
|
-
margin-left: 0.3em;
|
|
107
|
-
margin-right: -1.5em;
|
|
108
|
-
}
|
|
109
|
-
.ql-editor ol li:not(.ql-direction-rtl),
|
|
110
|
-
.ql-editor ul li:not(.ql-direction-rtl) {
|
|
111
|
-
padding-left: 1.5em;
|
|
112
|
-
}
|
|
113
|
-
.ql-editor ol li.ql-direction-rtl,
|
|
114
|
-
.ql-editor ul li.ql-direction-rtl {
|
|
115
|
-
padding-right: 1.5em;
|
|
116
|
-
}
|
|
117
|
-
.ql-editor ol li {
|
|
118
|
-
counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
|
|
119
|
-
counter-increment: list-0;
|
|
120
|
-
}
|
|
121
|
-
.ql-editor ol li:before {
|
|
122
|
-
content: counter(list-0, decimal) '. ';
|
|
123
|
-
}
|
|
124
|
-
.ql-editor ol li.ql-indent-1 {
|
|
125
|
-
counter-increment: list-1;
|
|
126
|
-
}
|
|
127
|
-
.ql-editor ol li.ql-indent-1:before {
|
|
128
|
-
content: counter(list-1, lower-alpha) '. ';
|
|
129
|
-
}
|
|
130
|
-
.ql-editor ol li.ql-indent-1 {
|
|
131
|
-
counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
|
|
132
|
-
}
|
|
133
|
-
.ql-editor ol li.ql-indent-2 {
|
|
134
|
-
counter-increment: list-2;
|
|
135
|
-
}
|
|
136
|
-
.ql-editor ol li.ql-indent-2:before {
|
|
137
|
-
content: counter(list-2, lower-roman) '. ';
|
|
138
|
-
}
|
|
139
|
-
.ql-editor ol li.ql-indent-2 {
|
|
140
|
-
counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
|
|
141
|
-
}
|
|
142
|
-
.ql-editor ol li.ql-indent-3 {
|
|
143
|
-
counter-increment: list-3;
|
|
144
|
-
}
|
|
145
|
-
.ql-editor ol li.ql-indent-3:before {
|
|
146
|
-
content: counter(list-3, decimal) '. ';
|
|
147
|
-
}
|
|
148
|
-
.ql-editor ol li.ql-indent-3 {
|
|
149
|
-
counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
|
|
150
|
-
}
|
|
151
|
-
.ql-editor ol li.ql-indent-4 {
|
|
152
|
-
counter-increment: list-4;
|
|
153
|
-
}
|
|
154
|
-
.ql-editor ol li.ql-indent-4:before {
|
|
155
|
-
content: counter(list-4, lower-alpha) '. ';
|
|
156
|
-
}
|
|
157
|
-
.ql-editor ol li.ql-indent-4 {
|
|
158
|
-
counter-reset: list-5 list-6 list-7 list-8 list-9;
|
|
159
|
-
}
|
|
160
|
-
.ql-editor ol li.ql-indent-5 {
|
|
161
|
-
counter-increment: list-5;
|
|
162
|
-
}
|
|
163
|
-
.ql-editor ol li.ql-indent-5:before {
|
|
164
|
-
content: counter(list-5, lower-roman) '. ';
|
|
165
|
-
}
|
|
166
|
-
.ql-editor ol li.ql-indent-5 {
|
|
167
|
-
counter-reset: list-6 list-7 list-8 list-9;
|
|
168
|
-
}
|
|
169
|
-
.ql-editor ol li.ql-indent-6 {
|
|
170
|
-
counter-increment: list-6;
|
|
171
|
-
}
|
|
172
|
-
.ql-editor ol li.ql-indent-6:before {
|
|
173
|
-
content: counter(list-6, decimal) '. ';
|
|
174
|
-
}
|
|
175
|
-
.ql-editor ol li.ql-indent-6 {
|
|
176
|
-
counter-reset: list-7 list-8 list-9;
|
|
177
|
-
}
|
|
178
|
-
.ql-editor ol li.ql-indent-7 {
|
|
179
|
-
counter-increment: list-7;
|
|
180
|
-
}
|
|
181
|
-
.ql-editor ol li.ql-indent-7:before {
|
|
182
|
-
content: counter(list-7, lower-alpha) '. ';
|
|
183
|
-
}
|
|
184
|
-
.ql-editor ol li.ql-indent-7 {
|
|
185
|
-
counter-reset: list-8 list-9;
|
|
186
|
-
}
|
|
187
|
-
.ql-editor ol li.ql-indent-8 {
|
|
188
|
-
counter-increment: list-8;
|
|
189
|
-
}
|
|
190
|
-
.ql-editor ol li.ql-indent-8:before {
|
|
191
|
-
content: counter(list-8, lower-roman) '. ';
|
|
192
|
-
}
|
|
193
|
-
.ql-editor ol li.ql-indent-8 {
|
|
194
|
-
counter-reset: list-9;
|
|
195
|
-
}
|
|
196
|
-
.ql-editor ol li.ql-indent-9 {
|
|
197
|
-
counter-increment: list-9;
|
|
198
|
-
}
|
|
199
|
-
.ql-editor ol li.ql-indent-9:before {
|
|
200
|
-
content: counter(list-9, decimal) '. ';
|
|
201
|
-
}
|
|
202
|
-
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
|
|
203
|
-
padding-left: 3em;
|
|
204
|
-
}
|
|
205
|
-
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
|
|
206
|
-
padding-left: 4.5em;
|
|
207
|
-
}
|
|
208
|
-
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
|
|
209
|
-
padding-right: 3em;
|
|
210
|
-
}
|
|
211
|
-
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
|
|
212
|
-
padding-right: 4.5em;
|
|
213
|
-
}
|
|
214
|
-
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
|
|
215
|
-
padding-left: 6em;
|
|
216
|
-
}
|
|
217
|
-
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
|
|
218
|
-
padding-left: 7.5em;
|
|
219
|
-
}
|
|
220
|
-
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
|
|
221
|
-
padding-right: 6em;
|
|
222
|
-
}
|
|
223
|
-
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
|
|
224
|
-
padding-right: 7.5em;
|
|
225
|
-
}
|
|
226
|
-
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
|
|
227
|
-
padding-left: 9em;
|
|
228
|
-
}
|
|
229
|
-
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
|
|
230
|
-
padding-left: 10.5em;
|
|
231
|
-
}
|
|
232
|
-
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
|
|
233
|
-
padding-right: 9em;
|
|
234
|
-
}
|
|
235
|
-
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
|
|
236
|
-
padding-right: 10.5em;
|
|
237
|
-
}
|
|
238
|
-
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
|
|
239
|
-
padding-left: 12em;
|
|
240
|
-
}
|
|
241
|
-
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
|
|
242
|
-
padding-left: 13.5em;
|
|
243
|
-
}
|
|
244
|
-
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
|
|
245
|
-
padding-right: 12em;
|
|
246
|
-
}
|
|
247
|
-
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
|
|
248
|
-
padding-right: 13.5em;
|
|
249
|
-
}
|
|
250
|
-
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
|
|
251
|
-
padding-left: 15em;
|
|
252
|
-
}
|
|
253
|
-
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
|
|
254
|
-
padding-left: 16.5em;
|
|
255
|
-
}
|
|
256
|
-
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
|
|
257
|
-
padding-right: 15em;
|
|
258
|
-
}
|
|
259
|
-
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
|
|
260
|
-
padding-right: 16.5em;
|
|
261
|
-
}
|
|
262
|
-
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
|
|
263
|
-
padding-left: 18em;
|
|
264
|
-
}
|
|
265
|
-
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
|
|
266
|
-
padding-left: 19.5em;
|
|
267
|
-
}
|
|
268
|
-
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
|
|
269
|
-
padding-right: 18em;
|
|
270
|
-
}
|
|
271
|
-
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
|
|
272
|
-
padding-right: 19.5em;
|
|
273
|
-
}
|
|
274
|
-
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
|
|
275
|
-
padding-left: 21em;
|
|
276
|
-
}
|
|
277
|
-
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
|
|
278
|
-
padding-left: 22.5em;
|
|
279
|
-
}
|
|
280
|
-
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
|
|
281
|
-
padding-right: 21em;
|
|
282
|
-
}
|
|
283
|
-
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
|
|
284
|
-
padding-right: 22.5em;
|
|
285
|
-
}
|
|
286
|
-
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
|
|
287
|
-
padding-left: 24em;
|
|
288
|
-
}
|
|
289
|
-
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
|
|
290
|
-
padding-left: 25.5em;
|
|
291
|
-
}
|
|
292
|
-
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
|
|
293
|
-
padding-right: 24em;
|
|
294
|
-
}
|
|
295
|
-
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
|
|
296
|
-
padding-right: 25.5em;
|
|
297
|
-
}
|
|
298
|
-
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
|
|
299
|
-
padding-left: 27em;
|
|
300
|
-
}
|
|
301
|
-
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
|
|
302
|
-
padding-left: 28.5em;
|
|
303
|
-
}
|
|
304
|
-
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
|
|
305
|
-
padding-right: 27em;
|
|
306
|
-
}
|
|
307
|
-
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
|
|
308
|
-
padding-right: 28.5em;
|
|
309
|
-
}
|
|
310
|
-
.ql-editor .ql-video {
|
|
311
|
-
display: block;
|
|
312
|
-
max-width: 100%;
|
|
313
|
-
}
|
|
314
|
-
.ql-editor .ql-video.ql-align-center {
|
|
315
|
-
margin: 0 auto;
|
|
316
|
-
}
|
|
317
|
-
.ql-editor .ql-video.ql-align-right {
|
|
318
|
-
margin: 0 0 0 auto;
|
|
319
|
-
}
|
|
320
|
-
.ql-editor .ql-bg-black {
|
|
321
|
-
background-color: #000;
|
|
322
|
-
}
|
|
323
|
-
.ql-editor .ql-bg-red {
|
|
324
|
-
background-color: #e60000;
|
|
325
|
-
}
|
|
326
|
-
.ql-editor .ql-bg-orange {
|
|
327
|
-
background-color: #f90;
|
|
328
|
-
}
|
|
329
|
-
.ql-editor .ql-bg-yellow {
|
|
330
|
-
background-color: #ff0;
|
|
331
|
-
}
|
|
332
|
-
.ql-editor .ql-bg-green {
|
|
333
|
-
background-color: #008a00;
|
|
334
|
-
}
|
|
335
|
-
.ql-editor .ql-bg-blue {
|
|
336
|
-
background-color: #06c;
|
|
337
|
-
}
|
|
338
|
-
.ql-editor .ql-bg-purple {
|
|
339
|
-
background-color: #93f;
|
|
340
|
-
}
|
|
341
|
-
.ql-editor .ql-color-white {
|
|
342
|
-
color: #fff;
|
|
343
|
-
}
|
|
344
|
-
.ql-editor .ql-color-red {
|
|
345
|
-
color: #e60000;
|
|
346
|
-
}
|
|
347
|
-
.ql-editor .ql-color-orange {
|
|
348
|
-
color: #f90;
|
|
349
|
-
}
|
|
350
|
-
.ql-editor .ql-color-yellow {
|
|
351
|
-
color: #ff0;
|
|
352
|
-
}
|
|
353
|
-
.ql-editor .ql-color-green {
|
|
354
|
-
color: #008a00;
|
|
355
|
-
}
|
|
356
|
-
.ql-editor .ql-color-blue {
|
|
357
|
-
color: #06c;
|
|
358
|
-
}
|
|
359
|
-
.ql-editor .ql-color-purple {
|
|
360
|
-
color: #93f;
|
|
361
|
-
}
|
|
362
|
-
.ql-editor .ql-font-serif {
|
|
363
|
-
font-family: Georgia, Times New Roman, serif;
|
|
364
|
-
}
|
|
365
|
-
.ql-editor .ql-font-monospace {
|
|
366
|
-
font-family: Monaco, Courier New, monospace;
|
|
367
|
-
}
|
|
368
|
-
.ql-editor .ql-size-small {
|
|
369
|
-
font-size: 0.75em;
|
|
370
|
-
}
|
|
371
|
-
.ql-editor .ql-size-large {
|
|
372
|
-
font-size: 1.5em;
|
|
373
|
-
}
|
|
374
|
-
.ql-editor .ql-size-huge {
|
|
375
|
-
font-size: 2.5em;
|
|
376
|
-
}
|
|
377
|
-
.ql-editor .ql-direction-rtl {
|
|
378
|
-
direction: rtl;
|
|
379
|
-
text-align: inherit;
|
|
380
|
-
}
|
|
381
|
-
.ql-editor .ql-align-center {
|
|
382
|
-
text-align: center;
|
|
383
|
-
}
|
|
384
|
-
.ql-editor .ql-align-justify {
|
|
385
|
-
text-align: justify;
|
|
386
|
-
}
|
|
387
|
-
.ql-editor .ql-align-right {
|
|
388
|
-
text-align: right;
|
|
389
|
-
}
|
|
390
|
-
.ql-editor.ql-blank::before {
|
|
391
|
-
color: rgba(0, 0, 0, 0.6);
|
|
392
|
-
content: attr(data-placeholder);
|
|
393
|
-
font-style: italic;
|
|
394
|
-
left: 15px;
|
|
395
|
-
pointer-events: none;
|
|
396
|
-
position: absolute;
|
|
397
|
-
right: 15px;
|
|
398
|
-
}
|
|
399
|
-
.ql-snow.ql-toolbar:after,
|
|
400
|
-
.ql-snow .ql-toolbar:after {
|
|
401
|
-
clear: both;
|
|
402
|
-
content: '';
|
|
403
|
-
display: table;
|
|
404
|
-
}
|
|
405
|
-
.ql-snow.ql-toolbar button,
|
|
406
|
-
.ql-snow .ql-toolbar button {
|
|
407
|
-
background: none;
|
|
408
|
-
border: none;
|
|
409
|
-
cursor: pointer;
|
|
410
|
-
display: inline-block;
|
|
411
|
-
float: left;
|
|
412
|
-
height: 24px;
|
|
413
|
-
padding: 3px 5px;
|
|
414
|
-
width: 28px;
|
|
415
|
-
}
|
|
416
|
-
.ql-snow.ql-toolbar button svg,
|
|
417
|
-
.ql-snow .ql-toolbar button svg {
|
|
418
|
-
float: left;
|
|
419
|
-
height: 100%;
|
|
420
|
-
}
|
|
421
|
-
.ql-snow.ql-toolbar button:active:hover,
|
|
422
|
-
.ql-snow .ql-toolbar button:active:hover {
|
|
423
|
-
outline: none;
|
|
424
|
-
}
|
|
425
|
-
.ql-snow.ql-toolbar input.ql-image[type='file'],
|
|
426
|
-
.ql-snow .ql-toolbar input.ql-image[type='file'] {
|
|
427
|
-
display: none;
|
|
428
|
-
}
|
|
429
|
-
.ql-snow.ql-toolbar button:hover,
|
|
430
|
-
.ql-snow .ql-toolbar button:hover,
|
|
431
|
-
.ql-snow.ql-toolbar button:focus,
|
|
432
|
-
.ql-snow .ql-toolbar button:focus,
|
|
433
|
-
.ql-snow.ql-toolbar button.ql-active,
|
|
434
|
-
.ql-snow .ql-toolbar button.ql-active,
|
|
435
|
-
.ql-snow.ql-toolbar .ql-picker-label:hover,
|
|
436
|
-
.ql-snow .ql-toolbar .ql-picker-label:hover,
|
|
437
|
-
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
|
|
438
|
-
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
|
|
439
|
-
.ql-snow.ql-toolbar .ql-picker-item:hover,
|
|
440
|
-
.ql-snow .ql-toolbar .ql-picker-item:hover,
|
|
441
|
-
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
|
|
442
|
-
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
|
|
443
|
-
color: #06c;
|
|
444
|
-
}
|
|
445
|
-
.ql-snow.ql-toolbar button:hover .ql-fill,
|
|
446
|
-
.ql-snow .ql-toolbar button:hover .ql-fill,
|
|
447
|
-
.ql-snow.ql-toolbar button:focus .ql-fill,
|
|
448
|
-
.ql-snow .ql-toolbar button:focus .ql-fill,
|
|
449
|
-
.ql-snow.ql-toolbar button.ql-active .ql-fill,
|
|
450
|
-
.ql-snow .ql-toolbar button.ql-active .ql-fill,
|
|
451
|
-
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
|
|
452
|
-
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
|
|
453
|
-
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
|
|
454
|
-
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
|
|
455
|
-
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
|
|
456
|
-
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
|
|
457
|
-
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
|
|
458
|
-
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
|
|
459
|
-
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
|
|
460
|
-
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
|
|
461
|
-
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
|
|
462
|
-
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
|
|
463
|
-
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
|
|
464
|
-
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
|
|
465
|
-
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
|
|
466
|
-
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
|
|
467
|
-
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
|
|
468
|
-
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
|
|
469
|
-
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
|
|
470
|
-
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
|
|
471
|
-
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
|
|
472
|
-
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
|
|
473
|
-
fill: #06c;
|
|
474
|
-
}
|
|
475
|
-
.ql-snow.ql-toolbar button:hover .ql-stroke,
|
|
476
|
-
.ql-snow .ql-toolbar button:hover .ql-stroke,
|
|
477
|
-
.ql-snow.ql-toolbar button:focus .ql-stroke,
|
|
478
|
-
.ql-snow .ql-toolbar button:focus .ql-stroke,
|
|
479
|
-
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
|
|
480
|
-
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
|
|
481
|
-
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
|
|
482
|
-
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
|
|
483
|
-
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
|
|
484
|
-
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
|
|
485
|
-
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
|
|
486
|
-
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
|
|
487
|
-
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
|
|
488
|
-
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
|
|
489
|
-
.ql-snow.ql-toolbar button:hover .ql-stroke-miter,
|
|
490
|
-
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
|
|
491
|
-
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
|
|
492
|
-
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
|
|
493
|
-
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
|
|
494
|
-
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
|
|
495
|
-
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
|
|
496
|
-
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
|
|
497
|
-
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
|
|
498
|
-
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
|
|
499
|
-
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
|
|
500
|
-
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
|
|
501
|
-
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
|
|
502
|
-
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
|
|
503
|
-
stroke: #06c;
|
|
504
|
-
}
|
|
505
|
-
@media (pointer: coarse) {
|
|
506
|
-
.ql-snow.ql-toolbar button:hover:not(.ql-active),
|
|
507
|
-
.ql-snow .ql-toolbar button:hover:not(.ql-active) {
|
|
508
|
-
color: #444;
|
|
509
|
-
}
|
|
510
|
-
.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
|
|
511
|
-
.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
|
|
512
|
-
.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
|
|
513
|
-
.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
|
|
514
|
-
fill: #444;
|
|
515
|
-
}
|
|
516
|
-
.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
|
|
517
|
-
.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
|
|
518
|
-
.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
|
|
519
|
-
.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
|
|
520
|
-
stroke: #444;
|
|
521
|
-
}
|
|
522
|
-
}
|
|
523
|
-
.ql-snow {
|
|
524
|
-
box-sizing: border-box;
|
|
525
|
-
}
|
|
526
|
-
.ql-snow * {
|
|
527
|
-
box-sizing: border-box;
|
|
528
|
-
}
|
|
529
|
-
.ql-snow .ql-hidden {
|
|
530
|
-
display: none;
|
|
531
|
-
}
|
|
532
|
-
.ql-snow .ql-out-bottom,
|
|
533
|
-
.ql-snow .ql-out-top {
|
|
534
|
-
visibility: hidden;
|
|
535
|
-
}
|
|
536
|
-
.ql-snow .ql-tooltip {
|
|
537
|
-
position: absolute;
|
|
538
|
-
transform: translateY(10px);
|
|
539
|
-
}
|
|
540
|
-
.ql-snow .ql-tooltip a {
|
|
541
|
-
cursor: pointer;
|
|
542
|
-
text-decoration: none;
|
|
543
|
-
}
|
|
544
|
-
.ql-snow .ql-tooltip.ql-flip {
|
|
545
|
-
transform: translateY(-10px);
|
|
546
|
-
}
|
|
547
|
-
.ql-snow .ql-formats {
|
|
548
|
-
display: inline-block;
|
|
549
|
-
vertical-align: middle;
|
|
550
|
-
}
|
|
551
|
-
.ql-snow .ql-formats:after {
|
|
552
|
-
clear: both;
|
|
553
|
-
content: '';
|
|
554
|
-
display: table;
|
|
555
|
-
}
|
|
556
|
-
.ql-snow .ql-stroke {
|
|
557
|
-
fill: none;
|
|
558
|
-
stroke: #444;
|
|
559
|
-
stroke-linecap: round;
|
|
560
|
-
stroke-linejoin: round;
|
|
561
|
-
stroke-width: 2;
|
|
562
|
-
}
|
|
563
|
-
.ql-snow .ql-stroke-miter {
|
|
564
|
-
fill: none;
|
|
565
|
-
stroke: #444;
|
|
566
|
-
stroke-miterlimit: 10;
|
|
567
|
-
stroke-width: 2;
|
|
568
|
-
}
|
|
569
|
-
.ql-snow .ql-fill,
|
|
570
|
-
.ql-snow .ql-stroke.ql-fill {
|
|
571
|
-
fill: #444;
|
|
572
|
-
}
|
|
573
|
-
.ql-snow .ql-empty {
|
|
574
|
-
fill: none;
|
|
575
|
-
}
|
|
576
|
-
.ql-snow .ql-even {
|
|
577
|
-
fill-rule: evenodd;
|
|
578
|
-
}
|
|
579
|
-
.ql-snow .ql-thin,
|
|
580
|
-
.ql-snow .ql-stroke.ql-thin {
|
|
581
|
-
stroke-width: 1;
|
|
582
|
-
}
|
|
583
|
-
.ql-snow .ql-transparent {
|
|
584
|
-
opacity: 0.4;
|
|
585
|
-
}
|
|
586
|
-
.ql-snow .ql-direction svg:last-child {
|
|
587
|
-
display: none;
|
|
588
|
-
}
|
|
589
|
-
.ql-snow .ql-direction.ql-active svg:last-child {
|
|
590
|
-
display: inline;
|
|
591
|
-
}
|
|
592
|
-
.ql-snow .ql-direction.ql-active svg:first-child {
|
|
593
|
-
display: none;
|
|
594
|
-
}
|
|
595
|
-
.ql-snow .ql-editor h1 {
|
|
596
|
-
font-size: 2em;
|
|
597
|
-
}
|
|
598
|
-
.ql-snow .ql-editor h2 {
|
|
599
|
-
font-size: 1.5em;
|
|
600
|
-
}
|
|
601
|
-
.ql-snow .ql-editor h3 {
|
|
602
|
-
font-size: 1.17em;
|
|
603
|
-
}
|
|
604
|
-
.ql-snow .ql-editor h4 {
|
|
605
|
-
font-size: 1em;
|
|
606
|
-
}
|
|
607
|
-
.ql-snow .ql-editor h5 {
|
|
608
|
-
font-size: 0.83em;
|
|
609
|
-
}
|
|
610
|
-
.ql-snow .ql-editor h6 {
|
|
611
|
-
font-size: 0.67em;
|
|
612
|
-
}
|
|
613
|
-
.ql-snow .ql-editor a {
|
|
614
|
-
text-decoration: underline;
|
|
615
|
-
}
|
|
616
|
-
.ql-snow .ql-editor blockquote {
|
|
617
|
-
border-left: 4px solid #ccc;
|
|
618
|
-
margin-bottom: 5px;
|
|
619
|
-
margin-top: 5px;
|
|
620
|
-
padding-left: 16px;
|
|
621
|
-
}
|
|
622
|
-
.ql-snow .ql-editor code,
|
|
623
|
-
.ql-snow .ql-editor pre {
|
|
624
|
-
background-color: #f0f0f0;
|
|
625
|
-
border-radius: 3px;
|
|
626
|
-
}
|
|
627
|
-
.ql-snow .ql-editor pre {
|
|
628
|
-
white-space: pre-wrap;
|
|
629
|
-
margin-bottom: 5px;
|
|
630
|
-
margin-top: 5px;
|
|
631
|
-
padding: 5px 10px;
|
|
632
|
-
}
|
|
633
|
-
.ql-snow .ql-editor code {
|
|
634
|
-
font-size: 85%;
|
|
635
|
-
padding: 2px 4px;
|
|
636
|
-
}
|
|
637
|
-
.ql-snow .ql-editor pre.ql-syntax {
|
|
638
|
-
background-color: #23241f;
|
|
639
|
-
color: #f8f8f2;
|
|
640
|
-
overflow: visible;
|
|
641
|
-
}
|
|
642
|
-
.ql-snow .ql-editor img {
|
|
643
|
-
max-width: 100%;
|
|
644
|
-
}
|
|
645
|
-
.ql-snow .ql-picker {
|
|
646
|
-
color: #444;
|
|
647
|
-
display: inline-block;
|
|
648
|
-
float: left;
|
|
649
|
-
font-size: 14px;
|
|
650
|
-
font-weight: 500;
|
|
651
|
-
height: 24px;
|
|
652
|
-
position: relative;
|
|
653
|
-
vertical-align: middle;
|
|
654
|
-
}
|
|
655
|
-
.ql-snow .ql-picker-label {
|
|
656
|
-
cursor: pointer;
|
|
657
|
-
display: inline-block;
|
|
658
|
-
height: 100%;
|
|
659
|
-
padding-left: 8px;
|
|
660
|
-
padding-right: 2px;
|
|
661
|
-
position: relative;
|
|
662
|
-
width: 100%;
|
|
663
|
-
}
|
|
664
|
-
.ql-snow .ql-picker-label::before {
|
|
665
|
-
display: inline-block;
|
|
666
|
-
line-height: 22px;
|
|
667
|
-
}
|
|
668
|
-
.ql-snow .ql-picker-options {
|
|
669
|
-
background-color: #fff;
|
|
670
|
-
display: none;
|
|
671
|
-
min-width: 100%;
|
|
672
|
-
padding: 4px 8px;
|
|
673
|
-
position: absolute;
|
|
674
|
-
white-space: nowrap;
|
|
675
|
-
}
|
|
676
|
-
.ql-snow .ql-picker-options .ql-picker-item {
|
|
677
|
-
cursor: pointer;
|
|
678
|
-
display: block;
|
|
679
|
-
padding-bottom: 5px;
|
|
680
|
-
padding-top: 5px;
|
|
681
|
-
}
|
|
682
|
-
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
|
|
683
|
-
color: #ccc;
|
|
684
|
-
z-index: 2;
|
|
685
|
-
}
|
|
686
|
-
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
|
|
687
|
-
fill: #ccc;
|
|
688
|
-
}
|
|
689
|
-
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
|
|
690
|
-
stroke: #ccc;
|
|
691
|
-
}
|
|
692
|
-
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
|
|
693
|
-
display: block;
|
|
694
|
-
margin-top: -1px;
|
|
695
|
-
top: 100%;
|
|
696
|
-
z-index: 1;
|
|
697
|
-
}
|
|
698
|
-
.ql-snow .ql-color-picker,
|
|
699
|
-
.ql-snow .ql-icon-picker {
|
|
700
|
-
width: 28px;
|
|
701
|
-
}
|
|
702
|
-
.ql-snow .ql-color-picker .ql-picker-label,
|
|
703
|
-
.ql-snow .ql-icon-picker .ql-picker-label {
|
|
704
|
-
padding: 2px 4px;
|
|
705
|
-
}
|
|
706
|
-
.ql-snow .ql-color-picker .ql-picker-label svg,
|
|
707
|
-
.ql-snow .ql-icon-picker .ql-picker-label svg {
|
|
708
|
-
right: 4px;
|
|
709
|
-
}
|
|
710
|
-
.ql-snow .ql-icon-picker .ql-picker-options {
|
|
711
|
-
padding: 4px 0px;
|
|
712
|
-
}
|
|
713
|
-
.ql-snow .ql-icon-picker .ql-picker-item {
|
|
714
|
-
height: 24px;
|
|
715
|
-
width: 24px;
|
|
716
|
-
padding: 2px 4px;
|
|
717
|
-
}
|
|
718
|
-
.ql-snow .ql-color-picker .ql-picker-options {
|
|
719
|
-
padding: 3px 5px;
|
|
720
|
-
width: 152px;
|
|
721
|
-
}
|
|
722
|
-
.ql-snow .ql-color-picker .ql-picker-item {
|
|
723
|
-
border: 1px solid transparent;
|
|
724
|
-
float: left;
|
|
725
|
-
height: 16px;
|
|
726
|
-
margin: 2px;
|
|
727
|
-
padding: 0px;
|
|
728
|
-
width: 16px;
|
|
729
|
-
}
|
|
730
|
-
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
|
|
731
|
-
position: absolute;
|
|
732
|
-
margin-top: -9px;
|
|
733
|
-
right: 0;
|
|
734
|
-
top: 50%;
|
|
735
|
-
width: 18px;
|
|
736
|
-
}
|
|
737
|
-
.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
|
|
738
|
-
.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
|
|
739
|
-
.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,
|
|
740
|
-
.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
|
|
741
|
-
.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
|
|
742
|
-
.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
|
|
743
|
-
content: attr(data-label);
|
|
744
|
-
}
|
|
745
|
-
.ql-snow .ql-picker.ql-header {
|
|
746
|
-
width: 98px;
|
|
747
|
-
}
|
|
748
|
-
.ql-snow .ql-picker.ql-header .ql-picker-label::before,
|
|
749
|
-
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
|
|
750
|
-
content: 'Normal';
|
|
751
|
-
}
|
|
752
|
-
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value='1']::before,
|
|
753
|
-
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='1']::before {
|
|
754
|
-
content: 'Heading 1';
|
|
755
|
-
}
|
|
756
|
-
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value='2']::before,
|
|
757
|
-
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='2']::before {
|
|
758
|
-
content: 'Heading 2';
|
|
759
|
-
}
|
|
760
|
-
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value='3']::before,
|
|
761
|
-
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='3']::before {
|
|
762
|
-
content: 'Heading 3';
|
|
763
|
-
}
|
|
764
|
-
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value='4']::before,
|
|
765
|
-
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='4']::before {
|
|
766
|
-
content: 'Heading 4';
|
|
767
|
-
}
|
|
768
|
-
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value='5']::before,
|
|
769
|
-
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='5']::before {
|
|
770
|
-
content: 'Heading 5';
|
|
771
|
-
}
|
|
772
|
-
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value='6']::before,
|
|
773
|
-
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='6']::before {
|
|
774
|
-
content: 'Heading 6';
|
|
775
|
-
}
|
|
776
|
-
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='1']::before {
|
|
777
|
-
font-size: 2em;
|
|
778
|
-
}
|
|
779
|
-
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='2']::before {
|
|
780
|
-
font-size: 1.5em;
|
|
781
|
-
}
|
|
782
|
-
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='3']::before {
|
|
783
|
-
font-size: 1.17em;
|
|
784
|
-
}
|
|
785
|
-
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='4']::before {
|
|
786
|
-
font-size: 1em;
|
|
787
|
-
}
|
|
788
|
-
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='5']::before {
|
|
789
|
-
font-size: 0.83em;
|
|
790
|
-
}
|
|
791
|
-
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='6']::before {
|
|
792
|
-
font-size: 0.67em;
|
|
793
|
-
}
|
|
794
|
-
.ql-snow .ql-picker.ql-font {
|
|
795
|
-
width: 108px;
|
|
796
|
-
}
|
|
797
|
-
.ql-snow .ql-picker.ql-font .ql-picker-label::before,
|
|
798
|
-
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
|
|
799
|
-
content: 'Sans Serif';
|
|
800
|
-
}
|
|
801
|
-
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value='serif']::before,
|
|
802
|
-
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value='serif']::before {
|
|
803
|
-
content: 'Serif';
|
|
804
|
-
}
|
|
805
|
-
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value='monospace']::before,
|
|
806
|
-
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value='monospace']::before {
|
|
807
|
-
content: 'Monospace';
|
|
808
|
-
}
|
|
809
|
-
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value='serif']::before {
|
|
810
|
-
font-family: Georgia, Times New Roman, serif;
|
|
811
|
-
}
|
|
812
|
-
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value='monospace']::before {
|
|
813
|
-
font-family: Monaco, Courier New, monospace;
|
|
814
|
-
}
|
|
815
|
-
.ql-snow .ql-picker.ql-size {
|
|
816
|
-
width: 98px;
|
|
817
|
-
}
|
|
818
|
-
.ql-snow .ql-picker.ql-size .ql-picker-label::before,
|
|
819
|
-
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
|
|
820
|
-
content: 'Normal';
|
|
821
|
-
}
|
|
822
|
-
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value='small']::before,
|
|
823
|
-
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='small']::before {
|
|
824
|
-
content: 'Small';
|
|
825
|
-
}
|
|
826
|
-
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value='large']::before,
|
|
827
|
-
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='large']::before {
|
|
828
|
-
content: 'Large';
|
|
829
|
-
}
|
|
830
|
-
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value='huge']::before,
|
|
831
|
-
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='huge']::before {
|
|
832
|
-
content: 'Huge';
|
|
833
|
-
}
|
|
834
|
-
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='small']::before {
|
|
835
|
-
font-size: 10px;
|
|
836
|
-
}
|
|
837
|
-
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='large']::before {
|
|
838
|
-
font-size: 18px;
|
|
839
|
-
}
|
|
840
|
-
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='huge']::before {
|
|
841
|
-
font-size: 32px;
|
|
842
|
-
}
|
|
843
|
-
.ql-snow .ql-color-picker.ql-background .ql-picker-item {
|
|
844
|
-
background-color: #fff;
|
|
845
|
-
}
|
|
846
|
-
.ql-snow .ql-color-picker.ql-color .ql-picker-item {
|
|
847
|
-
background-color: #000;
|
|
848
|
-
}
|
|
849
|
-
.ql-toolbar.ql-snow {
|
|
850
|
-
border: 1px solid #d9d9d9;
|
|
851
|
-
box-sizing: border-box;
|
|
852
|
-
padding: 8px;
|
|
853
|
-
border-top-left-radius: 2px;
|
|
854
|
-
border-top-right-radius: 2px;
|
|
855
|
-
line-height: 1.6;
|
|
856
|
-
}
|
|
857
|
-
.ql-toolbar.ql-snow .ql-formats {
|
|
858
|
-
margin-right: 15px;
|
|
859
|
-
}
|
|
860
|
-
.ql-toolbar.ql-snow .ql-picker-label {
|
|
861
|
-
border: 1px solid transparent;
|
|
862
|
-
}
|
|
863
|
-
.ql-toolbar.ql-snow .ql-picker-options {
|
|
864
|
-
border: 1px solid transparent;
|
|
865
|
-
box-shadow: rgba(0, 0, 0, 0.2) 0 2px 8px;
|
|
866
|
-
}
|
|
867
|
-
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
|
|
868
|
-
border-color: #d9d9d9;
|
|
869
|
-
}
|
|
870
|
-
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
|
|
871
|
-
border-color: #d9d9d9;
|
|
872
|
-
}
|
|
873
|
-
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
|
|
874
|
-
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
|
|
875
|
-
border-color: #000;
|
|
876
|
-
}
|
|
877
|
-
.ql-toolbar.ql-snow + .ql-container.ql-snow {
|
|
878
|
-
border-top: 0px;
|
|
879
|
-
}
|
|
880
|
-
.ql-snow .ql-tooltip {
|
|
881
|
-
background-color: #fff;
|
|
882
|
-
border: 1px solid #d9d9d9;
|
|
883
|
-
box-shadow: 0px 0px 5px #ddd;
|
|
884
|
-
color: #444;
|
|
885
|
-
padding: 5px 12px;
|
|
886
|
-
white-space: nowrap;
|
|
887
|
-
}
|
|
888
|
-
.ql-snow .ql-tooltip::before {
|
|
889
|
-
content: 'Visit URL:';
|
|
890
|
-
line-height: 26px;
|
|
891
|
-
margin-right: 8px;
|
|
892
|
-
}
|
|
893
|
-
.ql-snow .ql-tooltip input[type='text'] {
|
|
894
|
-
display: none;
|
|
895
|
-
border: 1px solid #d9d9d9;
|
|
896
|
-
font-size: 13px;
|
|
897
|
-
height: 26px;
|
|
898
|
-
margin: 0px;
|
|
899
|
-
padding: 3px 5px;
|
|
900
|
-
width: 170px;
|
|
901
|
-
}
|
|
902
|
-
.ql-snow .ql-tooltip a.ql-preview {
|
|
903
|
-
display: inline-block;
|
|
904
|
-
max-width: 200px;
|
|
905
|
-
overflow-x: hidden;
|
|
906
|
-
text-overflow: ellipsis;
|
|
907
|
-
vertical-align: top;
|
|
908
|
-
}
|
|
909
|
-
.ql-snow .ql-tooltip a.ql-action::after {
|
|
910
|
-
border-right: 1px solid #ccc;
|
|
911
|
-
content: 'Edit';
|
|
912
|
-
margin-left: 16px;
|
|
913
|
-
padding-right: 8px;
|
|
914
|
-
}
|
|
915
|
-
.ql-snow .ql-tooltip a.ql-remove::before {
|
|
916
|
-
content: 'Remove';
|
|
917
|
-
margin-left: 8px;
|
|
918
|
-
}
|
|
919
|
-
.ql-snow .ql-tooltip a {
|
|
920
|
-
line-height: 26px;
|
|
921
|
-
}
|
|
922
|
-
.ql-snow .ql-tooltip.ql-editing a.ql-preview,
|
|
923
|
-
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
|
|
924
|
-
display: none;
|
|
925
|
-
}
|
|
926
|
-
.ql-snow .ql-tooltip.ql-editing input[type='text'] {
|
|
927
|
-
display: inline-block;
|
|
928
|
-
}
|
|
929
|
-
.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
|
|
930
|
-
border-right: 0px;
|
|
931
|
-
content: 'Save';
|
|
932
|
-
padding-right: 0px;
|
|
933
|
-
}
|
|
934
|
-
.ql-snow .ql-tooltip[data-mode='link']::before {
|
|
935
|
-
content: 'Enter link:';
|
|
936
|
-
}
|
|
937
|
-
.ql-snow .ql-tooltip[data-mode='formula']::before {
|
|
938
|
-
content: 'Enter formula:';
|
|
939
|
-
}
|
|
940
|
-
.ql-snow .ql-tooltip[data-mode='video']::before {
|
|
941
|
-
content: 'Enter video:';
|
|
942
|
-
}
|
|
943
|
-
.ql-snow a {
|
|
944
|
-
color: #06c;
|
|
945
|
-
}
|
|
946
|
-
.ql-container.ql-snow {
|
|
947
|
-
border: 1px solid #d9d9d9;
|
|
948
|
-
border-bottom-left-radius: 2px;
|
|
949
|
-
border-bottom-right-radius: 2px;
|
|
950
|
-
}
|