@libxai/board 0.17.8 → 0.17.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/styles.css CHANGED
@@ -3022,6 +3022,155 @@
3022
3022
  }
3023
3023
 
3024
3024
 
3025
+ /* ============================================================================
3026
+ COVER IMAGE SECTION
3027
+ ============================================================================ */
3028
+
3029
+
3030
+ .modal-v2-cover-section {
3031
+ margin: 0;
3032
+ padding: 0;
3033
+ }
3034
+
3035
+
3036
+ /* Add Cover Button */
3037
+
3038
+
3039
+ .modal-v2-add-cover-button {
3040
+ display: flex;
3041
+ align-items: center;
3042
+ justify-content: center;
3043
+ gap: 8px;
3044
+ width: 100%;
3045
+ padding: 16px;
3046
+ margin: 0;
3047
+ border: 2px dashed var(--modal-v2-border);
3048
+ background: transparent;
3049
+ color: var(--modal-v2-text-secondary);
3050
+ font-size: 14px;
3051
+ font-weight: 500;
3052
+ border-radius: 0;
3053
+ cursor: pointer;
3054
+ transition: all 0.2s ease;
3055
+ }
3056
+
3057
+
3058
+ .modal-v2-add-cover-button:hover {
3059
+ border-color: var(--asakaa-accent, #3B82F6);
3060
+ color: var(--asakaa-accent, #3B82F6);
3061
+ background: var(--modal-v2-bg-secondary);
3062
+ }
3063
+
3064
+
3065
+ /* Cover Preview Wrapper */
3066
+
3067
+
3068
+ .modal-v2-cover-preview-wrapper {
3069
+ position: relative;
3070
+ width: 100%;
3071
+ margin: 0;
3072
+ overflow: hidden;
3073
+ }
3074
+
3075
+
3076
+ .modal-v2-cover-image {
3077
+ width: 100%;
3078
+ height: 240px;
3079
+ -o-object-fit: cover;
3080
+ object-fit: cover;
3081
+ display: block;
3082
+ }
3083
+
3084
+
3085
+ .modal-v2-cover-actions {
3086
+ display: flex;
3087
+ gap: 8px;
3088
+ padding: 12px 24px;
3089
+ background: var(--modal-v2-bg);
3090
+ border-bottom: 1px solid var(--modal-v2-border);
3091
+ }
3092
+
3093
+
3094
+ .modal-v2-cover-action-button {
3095
+ flex: 1;
3096
+ padding: 8px 16px;
3097
+ border: 1px solid var(--modal-v2-border);
3098
+ background: var(--modal-v2-bg-secondary);
3099
+ color: var(--modal-v2-text-primary);
3100
+ font-size: 14px;
3101
+ font-weight: 500;
3102
+ border-radius: 6px;
3103
+ cursor: pointer;
3104
+ transition: all 0.15s ease;
3105
+ }
3106
+
3107
+
3108
+ .modal-v2-cover-action-button:hover {
3109
+ background: var(--modal-v2-bg-tertiary);
3110
+ border-color: var(--modal-v2-border-hover);
3111
+ }
3112
+
3113
+
3114
+ .modal-v2-cover-action-button.danger {
3115
+ border-color: #EF4444;
3116
+ color: #EF4444;
3117
+ }
3118
+
3119
+
3120
+ .modal-v2-cover-action-button.danger:hover {
3121
+ background: #EF4444;
3122
+ color: white;
3123
+ }
3124
+
3125
+
3126
+ /* Cover Manager Wrapper */
3127
+
3128
+
3129
+ .modal-v2-cover-manager-wrapper {
3130
+ padding: 24px;
3131
+ border-bottom: 1px solid var(--modal-v2-border);
3132
+ background: var(--modal-v2-bg);
3133
+ }
3134
+
3135
+
3136
+ .modal-v2-cover-manager-header {
3137
+ display: flex;
3138
+ align-items: center;
3139
+ justify-content: space-between;
3140
+ margin-bottom: 16px;
3141
+ }
3142
+
3143
+
3144
+ .modal-v2-cover-manager-header h3 {
3145
+ font-size: 16px;
3146
+ font-weight: 600;
3147
+ color: var(--modal-v2-text-primary);
3148
+ margin: 0;
3149
+ }
3150
+
3151
+
3152
+ .modal-v2-cover-manager-close {
3153
+ display: flex;
3154
+ align-items: center;
3155
+ justify-content: center;
3156
+ width: 28px;
3157
+ height: 28px;
3158
+ padding: 0;
3159
+ border: none;
3160
+ background: transparent;
3161
+ color: var(--modal-v2-text-secondary);
3162
+ border-radius: 6px;
3163
+ cursor: pointer;
3164
+ transition: all 0.15s ease;
3165
+ }
3166
+
3167
+
3168
+ .modal-v2-cover-manager-close:hover {
3169
+ background: var(--modal-v2-bg-secondary);
3170
+ color: var(--modal-v2-text-primary);
3171
+ }
3172
+
3173
+
3025
3174
  /* ============================================================================
3026
3175
  THEME SPECIFIC OVERRIDES
3027
3176
  ============================================================================ */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libxai/board",
3
- "version": "0.17.8",
3
+ "version": "0.17.9",
4
4
  "type": "module",
5
5
  "description": "Professional Gantt Chart + Kanban Board + ListView + CalendarBoard for React - Part of LibXAI Suite - TypeScript - Production-Ready - Zero Config",
6
6
  "author": "LibXAI <hello@libxai.com>",